import type { Decimal } from "decimal.js"; // Standard costing keeps inventory at standard, so an invoice price variance // never restates a layer: the whole delta is a purchase price variance. export function restateStandardLayer(delta: Decimal) { return [{ role: "PPV" as const, amount: delta }]; }