From da33858642d51490c49dbd2bd2a59845e4fd0a90 Mon Sep 17 00:00:00 2001 From: unknown <34411636+Dandevmt@users.noreply.github.com> Date: Sat, 6 Jan 2024 14:25:31 -0700 Subject: [PATCH] update tax year to 2023 --- .../contributor-all-reports.component.ts | 2 +- .../contributor-yearly-report.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Client/src/app/components/contributor-all-reports/contributor-all-reports.component.ts b/Client/src/app/components/contributor-all-reports/contributor-all-reports.component.ts index 567105b..e81a4f5 100644 --- a/Client/src/app/components/contributor-all-reports/contributor-all-reports.component.ts +++ b/Client/src/app/components/contributor-all-reports/contributor-all-reports.component.ts @@ -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)]); diff --git a/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts b/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts index 21cad48..8c78855 100644 --- a/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts +++ b/Client/src/app/components/contributor-yearly-report/contributor-yearly-report.component.ts @@ -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;