feat(1099): frontend models, API services, and permission module entry

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Chris Chen
2026-06-25 17:26:57 -07:00
parent 8cb6245560
commit bf247726e1
4 changed files with 126 additions and 0 deletions
@@ -0,0 +1,40 @@
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import { ApiConfigService } from '../../../core/services/api-config.service';
import {
Form1099Box, Form1099Summary, Form1099RecipientDetail,
} from '../models/payee1099.model';
@Injectable({ providedIn: 'root' })
export class Form1099ReportApiService {
private readonly endpoint: string;
constructor(private http: HttpClient, apiConfig: ApiConfigService) {
this.endpoint = apiConfig.getApiUrl('form1099-report');
}
getBoxes(): Observable<Form1099Box[]> {
return this.http.get<Form1099Box[]>(`${this.endpoint}/boxes`);
}
getSummary(taxYear: number): Observable<Form1099Summary> {
return this.http.get<Form1099Summary>(`${this.endpoint}/summary`, {
params: { taxYear: String(taxYear) },
});
}
getRecipient(payeeId: number, taxYear: number): Observable<Form1099RecipientDetail> {
return this.http.get<Form1099RecipientDetail>(`${this.endpoint}/recipient/${payeeId}`, {
params: { taxYear: String(taxYear) },
});
}
copyBUrl(payeeId: number, taxYear: number): string {
return `${this.endpoint}/recipient/${payeeId}/copy-b?taxYear=${taxYear}`;
}
exportCsvUrl(taxYear: number): string {
return `${this.endpoint}/export-csv?taxYear=${taxYear}`;
}
}