IO-2506 Federal Tax Exempt on Bill Entry

Will Toggle Federal Tax off on any new line or retroactively toggle it off on all lines when switch is enabled. Limited to PBS or CDK setups.
This commit is contained in:
Allan Carr
2023-12-18 12:36:46 -08:00
parent 92c8b54f85
commit 661bedbe5b
5 changed files with 31 additions and 5 deletions

View File

@@ -79,6 +79,18 @@ export function BillFormComponent({
});
};
const handleFederalTaxExemptSwitchToggle = (checked) => {
if (checked) {
const values = form.getFieldsValue("billlines");
if (values && values.billlines && values.billlines.length > 0) {
values.billlines.forEach((b) => {
b.applicable_taxes.federal = false;
});
}
form.setFieldsValue({ billlines: values.billlines });
}
};
useEffect(() => {
if (job) form.validateFields(["is_credit_memo"]);
}, [job, form]);
@@ -387,7 +399,16 @@ export function BillFormComponent({
>
<CurrencyInput min={0} />
</Form.Item>
<Form.Item shouldUpdate span={15}>
{bodyshop.pbs_serialnumber || bodyshop.cdk_dealerid ? (
<Form.Item
span={2}
label={t("bills.labels.federal_tax_exempt")}
name="federal_tax_exempt"
>
<Switch onChange={handleFederalTaxExemptSwitchToggle} />
</Form.Item>
) : null}
<Form.Item shouldUpdate span={13}>
{() => {
const values = form.getFieldsValue([
"billlines",
@@ -405,7 +426,7 @@ export function BillFormComponent({
totals = CalculateBillTotal(values);
if (!!totals)
return (
<div>
<div align="right">
<Space wrap>
<Statistic
title={t("bills.labels.subtotal")}