feature/IO-3357-Reynolds-and-Reynolds-DMS-API-Integration / RRScratch2 / Checkpoint
This commit is contained in:
@@ -1,4 +1,11 @@
|
||||
// server/rr/rr-calculate-allocations.js
|
||||
/**
|
||||
* THIS IS A COPY of CDKCalculateAllocations, modified to:
|
||||
* - Only calculate allocations needed for Reynolds & RR exports
|
||||
* - Keep sales broken down into buckets (parts, taxable labor, non-taxable labor, extras)
|
||||
* - Add extra logging for easier debugging
|
||||
*
|
||||
* Original comments follow.
|
||||
*/
|
||||
|
||||
const { GraphQLClient } = require("graphql-request");
|
||||
const Dinero = require("dinero.js");
|
||||
|
||||
@@ -81,6 +81,9 @@ const asN2 = (dineroLike) => {
|
||||
* - <OpCodeLaborInfo> (ROLABOR)
|
||||
* match 1:1, and ensures taxable/non-taxable flags line up by JobNo.
|
||||
*
|
||||
* We now also attach segmentKind/segmentIndex/segmentCount metadata on each op
|
||||
* for UI/debug purposes. The XML templates can safely ignore these.
|
||||
*
|
||||
* @param {Array} allocations
|
||||
* @param {Object} opts
|
||||
* @param {string} opts.opCode - RR OpCode for the job (global, overridable)
|
||||
@@ -93,10 +96,41 @@ const buildRogogFromAllocations = (allocations, { opCode, payType = "Cust", roNo
|
||||
|
||||
const ops = [];
|
||||
|
||||
const cents = (money) => {
|
||||
if (!money) return 0;
|
||||
if (typeof money.getAmount === "function") return money.getAmount();
|
||||
if (typeof money === "object" && typeof money.amount === "number") return money.amount;
|
||||
/**
|
||||
* Normalize various "money-like" shapes to integer cents.
|
||||
* Supports:
|
||||
* - Dinero instances (getAmount / toUnit)
|
||||
* - { cents }
|
||||
* - { amount, precision }
|
||||
* - plain numbers (treated as units, e.g. dollars)
|
||||
*/
|
||||
const toCents = (value) => {
|
||||
if (!value) return 0;
|
||||
|
||||
if (typeof value.getAmount === "function") {
|
||||
return value.getAmount();
|
||||
}
|
||||
|
||||
if (typeof value.toUnit === "function") {
|
||||
const unit = value.toUnit();
|
||||
return Number.isFinite(unit) ? Math.round(unit * 100) : 0;
|
||||
}
|
||||
|
||||
if (typeof value.cents === "number") {
|
||||
return value.cents;
|
||||
}
|
||||
|
||||
if (typeof value.amount === "number") {
|
||||
const precision = typeof value.precision === "number" ? value.precision : 2;
|
||||
if (precision === 2) return value.amount;
|
||||
const factor = Math.pow(10, 2 - precision);
|
||||
return Math.round(value.amount * factor);
|
||||
}
|
||||
|
||||
if (typeof value === "number") {
|
||||
return Math.round(value * 100);
|
||||
}
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
@@ -105,16 +139,6 @@ const buildRogogFromAllocations = (allocations, { opCode, payType = "Cust", roNo
|
||||
precision: 2
|
||||
});
|
||||
|
||||
const addMoney = (...ms) => {
|
||||
let acc = null;
|
||||
for (const m of ms) {
|
||||
if (!m) continue;
|
||||
if (!acc) acc = m;
|
||||
else if (typeof acc.add === "function") acc = acc.add(m);
|
||||
}
|
||||
return acc;
|
||||
};
|
||||
|
||||
for (const alloc of allocations) {
|
||||
const pc = alloc?.profitCenter || {};
|
||||
const breakOut = pc.rr_gogcode;
|
||||
@@ -123,40 +147,40 @@ const buildRogogFromAllocations = (allocations, { opCode, payType = "Cust", roNo
|
||||
// Only centers configured for RR GOG are included
|
||||
if (!breakOut || !itemType) continue;
|
||||
|
||||
const partsSale = alloc.partsSale || null;
|
||||
const extrasSale = alloc.extrasSale || null;
|
||||
const laborTaxableSale = alloc.laborTaxableSale || null;
|
||||
const laborNonTaxableSale = alloc.laborNonTaxableSale || null;
|
||||
const costMoney = alloc.cost || null;
|
||||
const partsCents = toCents(alloc.partsSale);
|
||||
const extrasCents = toCents(alloc.extrasSale);
|
||||
const laborTaxableCents = toCents(alloc.laborTaxableSale);
|
||||
const laborNonTaxableCents = toCents(alloc.laborNonTaxableSale);
|
||||
const costCents = toCents(alloc.cost);
|
||||
|
||||
// Parts + extras share a single segment
|
||||
const partsExtrasSale = addMoney(partsSale, extrasSale);
|
||||
const partsExtrasCents = partsCents + extrasCents;
|
||||
|
||||
const segments = [];
|
||||
|
||||
// 1) Parts + extras segment (respect center's default tax flag)
|
||||
if (partsExtrasSale && typeof partsExtrasSale.isZero === "function" && !partsExtrasSale.isZero()) {
|
||||
if (partsExtrasCents !== 0) {
|
||||
segments.push({
|
||||
kind: "partsExtras",
|
||||
sale: partsExtrasSale,
|
||||
txFlag: pc.rr_cust_txbl_flag || "T"
|
||||
saleCents: partsExtrasCents,
|
||||
txFlag: pc.rr_cust_txbl_flag || "N"
|
||||
});
|
||||
}
|
||||
|
||||
// 2) Taxable labor segment -> "T"
|
||||
if (laborTaxableSale && typeof laborTaxableSale.isZero === "function" && !laborTaxableSale.isZero()) {
|
||||
if (laborTaxableCents !== 0) {
|
||||
segments.push({
|
||||
kind: "laborTaxable",
|
||||
sale: laborTaxableSale,
|
||||
saleCents: laborTaxableCents,
|
||||
txFlag: "T"
|
||||
});
|
||||
}
|
||||
|
||||
// 3) Non-taxable labor segment -> "N"
|
||||
if (laborNonTaxableSale && typeof laborNonTaxableSale.isZero === "function" && !laborNonTaxableSale.isZero()) {
|
||||
if (laborNonTaxableCents !== 0) {
|
||||
segments.push({
|
||||
kind: "laborNonTaxable",
|
||||
sale: laborNonTaxableSale,
|
||||
saleCents: laborNonTaxableCents,
|
||||
txFlag: "N"
|
||||
});
|
||||
}
|
||||
@@ -164,32 +188,32 @@ const buildRogogFromAllocations = (allocations, { opCode, payType = "Cust", roNo
|
||||
if (!segments.length) continue;
|
||||
|
||||
// Proportionally split cost across segments based on their sale amounts
|
||||
const totalCostCents = cents(costMoney);
|
||||
const totalSaleCents = segments.reduce((sum, seg) => sum + cents(seg.sale), 0);
|
||||
const totalCostCents = costCents;
|
||||
const totalSaleCents = segments.reduce((sum, seg) => sum + seg.saleCents, 0);
|
||||
|
||||
let remainingCostCents = totalCostCents;
|
||||
|
||||
segments.forEach((seg, idx) => {
|
||||
let costCents = 0;
|
||||
let segCost = 0;
|
||||
|
||||
if (totalCostCents > 0 && totalSaleCents > 0) {
|
||||
if (idx === segments.length - 1) {
|
||||
// Last segment gets the remainder to avoid rounding drift
|
||||
costCents = remainingCostCents;
|
||||
segCost = remainingCostCents;
|
||||
} else {
|
||||
const segSaleCents = cents(seg.sale);
|
||||
costCents = Math.round((segSaleCents / totalSaleCents) * totalCostCents);
|
||||
remainingCostCents -= costCents;
|
||||
segCost = Math.round((seg.saleCents / totalSaleCents) * totalCostCents);
|
||||
remainingCostCents -= segCost;
|
||||
}
|
||||
}
|
||||
|
||||
seg.costCents = costCents;
|
||||
seg.costCents = segCost;
|
||||
});
|
||||
|
||||
const itemDescBase = pc.accountdesc || pc.accountname || alloc.center || "";
|
||||
const segmentCount = segments.length;
|
||||
|
||||
// NEW: each segment becomes its own op / JobNo with a single line
|
||||
segments.forEach((seg) => {
|
||||
// Each segment becomes its own op / JobNo with a single line
|
||||
segments.forEach((seg, idx) => {
|
||||
const jobNo = String(ops.length + 1); // global, 1-based JobNo across all centers/segments
|
||||
|
||||
const line = {
|
||||
@@ -198,11 +222,11 @@ const buildRogogFromAllocations = (allocations, { opCode, payType = "Cust", roNo
|
||||
itemDesc: itemDescBase,
|
||||
custQty: "1.0",
|
||||
custPayTypeFlag: "C",
|
||||
custTxblNTxblFlag: seg.txFlag || "T",
|
||||
custTxblNtxblFlag: seg.txFlag || "N",
|
||||
amount: {
|
||||
payType,
|
||||
amtType: "Unit",
|
||||
custPrice: asN2(seg.sale),
|
||||
custPrice: asN2(asMoneyLike(seg.saleCents)),
|
||||
dlrCost: asN2(asMoneyLike(seg.costCents))
|
||||
}
|
||||
};
|
||||
@@ -210,7 +234,11 @@ const buildRogogFromAllocations = (allocations, { opCode, payType = "Cust", roNo
|
||||
ops.push({
|
||||
opCode,
|
||||
jobNo,
|
||||
lines: [line] // exactly one AllGogLineItmInfo per AllGogOpCodeInfo
|
||||
lines: [line], // exactly one AllGogLineItmInfo per AllGogOpCodeInfo
|
||||
// Extra metadata for UI / debugging
|
||||
segmentKind: seg.kind,
|
||||
segmentIndex: idx,
|
||||
segmentCount
|
||||
});
|
||||
});
|
||||
}
|
||||
@@ -240,7 +268,7 @@ const buildRolaborFromRogog = (rogg, { payType = "Cust" } = {}) => {
|
||||
// Pull tax flag from the GOG line.
|
||||
// Prefer the property we set in buildRogogFromAllocations (custTxblNTxblFlag),
|
||||
// but also accept custTxblNtxblFlag in case we ever change naming.
|
||||
const txFlag = firstLine.custTxblNTxblFlag ?? firstLine.custTxblNtxblFlag ?? "N";
|
||||
const txFlag = firstLine.custTxblNtxblFlag ?? "N";
|
||||
|
||||
const linePayType = firstLine.custPayTypeFlag || "C";
|
||||
|
||||
@@ -248,7 +276,6 @@ const buildRolaborFromRogog = (rogg, { payType = "Cust" } = {}) => {
|
||||
opCode: op.opCode,
|
||||
jobNo: op.jobNo,
|
||||
custPayTypeFlag: linePayType,
|
||||
// This is the property the Mustache template uses for <CustTxblNTxblFlag>
|
||||
custTxblNtxblFlag: txFlag,
|
||||
bill: {
|
||||
payType,
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
const CreateRRLogEvent = require("./rr-logger-event");
|
||||
const { rrCombinedSearch, rrGetAdvisors, buildClientAndOpts } = require("./rr-lookup");
|
||||
const { QueryJobData } = require("./rr-job-helpers");
|
||||
const { QueryJobData, buildRogogFromAllocations, buildRolaborFromRogog } = require("./rr-job-helpers");
|
||||
const { exportJobToRR, finalizeRRRepairOrder } = require("./rr-job-export");
|
||||
const CdkCalculateAllocations = require("./rr-calculate-allocations").default;
|
||||
const RRCalculateAllocations = require("./rr-calculate-allocations").default;
|
||||
const { createRRCustomer } = require("./rr-customers");
|
||||
const { ensureRRServiceVehicle } = require("./rr-service-vehicles");
|
||||
const { classifyRRVendorError } = require("./rr-errors");
|
||||
@@ -898,10 +898,73 @@ const registerRREvents = ({ socket, redisHelpers }) => {
|
||||
socket.on("rr-calculate-allocations", async (jobid, cb) => {
|
||||
try {
|
||||
CreateRRLogEvent(socket, "DEBUG", "rr-calculate-allocations: begin", { jobid });
|
||||
const allocations = await CdkCalculateAllocations(socket, jobid);
|
||||
cb?.(allocations);
|
||||
socket.emit("rr-calculate-allocations:result", allocations);
|
||||
CreateRRLogEvent(socket, "DEBUG", "rr-calculate-allocations: success", { items: allocations?.length });
|
||||
|
||||
const raw = await RRCalculateAllocations(socket, jobid);
|
||||
|
||||
// If the helper returns an explicit error shape, just pass it through.
|
||||
if (raw && raw.ok === false) {
|
||||
cb?.(raw);
|
||||
socket.emit("rr-calculate-allocations:result", raw);
|
||||
CreateRRLogEvent(socket, "DEBUG", "rr-calculate-allocations: helper returned error", {
|
||||
jobid,
|
||||
error: raw.error
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
let ack;
|
||||
let jobAllocations;
|
||||
|
||||
if (Array.isArray(raw)) {
|
||||
// Legacy shape: plain allocations array
|
||||
jobAllocations = raw;
|
||||
ack = { jobAllocations: raw };
|
||||
} else {
|
||||
ack = raw || {};
|
||||
jobAllocations = Array.isArray(ack.jobAllocations) ? ack.jobAllocations : [];
|
||||
}
|
||||
|
||||
// Try to derive OpCode from bodyshop; fall back to default
|
||||
let opCode = "28TOZ";
|
||||
|
||||
try {
|
||||
const { bodyshopId } = await getSessionOrSocket(redisHelpers, socket);
|
||||
const bodyshop = await getBodyshopForSocket({ bodyshopId, socket });
|
||||
opCode = bodyshop?.rr_configuration?.baseOpCode || opCode;
|
||||
} catch (e) {
|
||||
CreateRRLogEvent(socket, "WARN", "rr-calculate-allocations: bodyshop lookup failed, using default OpCode", {
|
||||
error: e.message
|
||||
});
|
||||
}
|
||||
|
||||
let rogg = null;
|
||||
let rolabor = null;
|
||||
|
||||
try {
|
||||
rogg = buildRogogFromAllocations(jobAllocations, { opCode, payType: "Cust" });
|
||||
if (rogg) {
|
||||
rolabor = buildRolaborFromRogog(rogg, { payType: "Cust" });
|
||||
}
|
||||
} catch (e) {
|
||||
CreateRRLogEvent(socket, "WARN", "rr-calculate-allocations: failed to build ROGOG/ROLABOR preview", {
|
||||
error: e.message
|
||||
});
|
||||
}
|
||||
|
||||
const enriched = {
|
||||
...ack,
|
||||
rogg,
|
||||
rolabor
|
||||
};
|
||||
|
||||
cb?.(enriched);
|
||||
socket.emit("rr-calculate-allocations:result", enriched);
|
||||
CreateRRLogEvent(socket, "DEBUG", "rr-calculate-allocations: success", {
|
||||
jobid,
|
||||
jobAllocations: jobAllocations.length,
|
||||
hasRogg: !!rogg,
|
||||
hasRolabor: !!rolabor
|
||||
});
|
||||
} catch (e) {
|
||||
CreateRRLogEvent(socket, "ERROR", "rr-calculate-allocations: failed", { error: e.message, jobid });
|
||||
cb?.({ ok: false, error: e.message });
|
||||
|
||||
Reference in New Issue
Block a user