Merge branch 'release/2023-07-07' into feature/payroll

This commit is contained in:
Patrick Fic
2023-07-06 13:23:25 -07:00
16 changed files with 564 additions and 30 deletions

View File

@@ -140,7 +140,10 @@ const generateBillLine = (billLine, responsibilityCenters, jobClass) => {
const findTaxCode = (billLine, taxcode) => {
const {
applicable_taxes: { local, state, federal },
} = billLine;
} =
billLine.applicable_taxes === null
? { applicable_taxes: { local: false, state: false, federal: false } }
: billLine;
const t = taxcode.filter(
(t) =>
!!t.local === !!local &&