update tax year to 2023
continuous-integration/drone/push Build was killed Details

master
unknown 2024-01-06 14:25:31 -07:00
parent 98ca74cadf
commit da33858642
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ export class ContributorAllReportsComponent implements OnInit {
constructor(private printService: PrintService, private userService: UserService, private transactionService: TransactionService) { }
ngOnInit() {
const taxYear = 2022;
const taxYear = 2023;
const query = forkJoin([this.userService.getAll(), this.transactionService.getByYear(taxYear), this.transactionService.getByYear(taxYear - 1)]);

View File

@ -34,7 +34,7 @@ export class ContributorYearlyReportComponent implements OnInit {
public contributorCity: string = 'Butte';
public contributorState: string = 'MT';
public contributorZip: string = '59701';
public taxYear: number = 2022;
public taxYear: number = 2023;
public rowsFirstPage: number = 28;