From 7739d487411dc0cd780e663bb9a9f425bc7cca13 Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Mon, 30 Mar 2026 11:44:38 -0700 Subject: [PATCH 1/2] IO-3356 Add CSR and Shop values per Grant @ RC Ford. --- server/accounting/pbs/pbs-job-export.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/accounting/pbs/pbs-job-export.js b/server/accounting/pbs/pbs-job-export.js index ee6360682..7e0499023 100644 --- a/server/accounting/pbs/pbs-job-export.js +++ b/server/accounting/pbs/pbs-job-export.js @@ -787,7 +787,8 @@ async function RepairOrderChange(socket) { // "DatePromisedUTC": "0001-01-01T00:00:00.0000000Z", DateVehicleCompleted: socket.JobData.actual_completion, // "DateCustomerNotified": "0001-01-01T00:00:00.0000000Z", - // "CSR": "String", + "CSR": "IMEX", //Hardcoded for now as the only shop that uses this RO posting is RC and they paid for a custom build. + Shop: "RB", // "CSRRef": "00000000000000000000000000000000", // "BookingUser": "String", // "BookingUserRef": "00000000000000000000000000000000", From 1ea7798eeb299060ed7e297d3a7c844a48c45036 Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Mon, 30 Mar 2026 11:59:08 -0700 Subject: [PATCH 2/2] IO-3515 Retain discount application when AI vendor added. --- client/src/components/bill-form/bill-form.component.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/components/bill-form/bill-form.component.jsx b/client/src/components/bill-form/bill-form.component.jsx index 86d4e0265..7b324b3d1 100644 --- a/client/src/components/bill-form/bill-form.component.jsx +++ b/client/src/components/bill-form/bill-form.component.jsx @@ -52,6 +52,7 @@ export function BillFormComponent({ const [discount, setDiscount] = useState(0); const notification = useNotification(); const jobIdFormWatch = Form.useWatch("jobid", form); + const vendorIdFormWatch = Form.useWatch("vendorid", form); const { treatments: { Extended_Bill_Posting, ClosingPeriod } @@ -118,6 +119,7 @@ export function BillFormComponent({ } }, [ form, + vendorIdFormWatch, billEdit, loadOutstandingReturns, loadInventory,