Skip to content

Commit

Permalink
use financial code instead of id in generated h120. (#3316)
Browse files Browse the repository at this point in the history
Co-authored-by: Alejandro Sanchez <[email protected]>
  • Loading branch information
devinleighsmith and asanchezr authored Jul 12, 2023
1 parent 67b3c13 commit b4a1e96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class Api_GenerateCompensationFinancial {
this.pretax_amount = formatMoney(compensation.pretaxAmount) ?? '';
this.tax_amount = formatMoney(compensation.taxAmount) ?? '';
this.total_amount = formatMoney(compensation.totalAmount) ?? '';
this.financial_activity_code = compensation.financialActivityCode?.id?.toString() ?? '';
this.financial_activity_code = compensation.financialActivityCode?.code?.toString() ?? '';
this.financial_activity_description = compensation.financialActivityCode?.description ?? '';
}
}

0 comments on commit b4a1e96

Please sign in to comment.