feature/IO-3255-simplified-parts-management Bug Fixes

This commit is contained in:
Dave
2025-08-14 13:29:49 -04:00
parent a3122a59b1
commit 284d25eeb9
2 changed files with 17 additions and 2 deletions

View File

@@ -406,8 +406,8 @@ const extractJobLines = (rq) => {
jobLine.part_type = "SUB"; // Custom code for sublet
jobLine.part_qty = 1; // Default
jobLine.act_price = parseFloat(subletInfo.SubletAmount || 0);
jobLine.sublet_vendor = subletInfo.SubletVendorName || null;
jobLine.lbr_hrs = parseFloat(subletInfo.SubletLaborHours || 0);
// jobLine.sublet_vendor = subletInfo.SubletVendorName || null; // TODO: Clarify
// jobLine.lbr_hrs = parseFloat(subletInfo.SubletLaborHours || 0); // TODO: Clarify
} // Labor-only already handled
jobLine.mod_lbr_ty = laborInfo.LaborType || null;