From 4e7493b088e896f439c2295e99d779c05f12975b Mon Sep 17 00:00:00 2001 From: justin Date: Fri, 29 May 2026 15:02:31 -0500 Subject: [PATCH] Mark MC Authority as non-discountable ($300 FMCSA gov fee) Non-discountable services: BOC-3 ($25 vendor), D&A (~$100 provider), MC Authority ($300 gov fee). All other DOT services are pure labor. Co-Authored-By: Claude Opus 4.6 (1M context) --- api/src/routes/compliance-orders.ts | 4 ++-- site/public/order/dot-compliance/index.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api/src/routes/compliance-orders.ts b/api/src/routes/compliance-orders.ts index c5e232f..a7daf28 100644 --- a/api/src/routes/compliance-orders.ts +++ b/api/src/routes/compliance-orders.ts @@ -245,11 +245,11 @@ const COMPLIANCE_SERVICES: Record< }, "mc-authority": { name: "MC Operating Authority Application", - price_cents: 34900, + price_cents: 34900, // + $300 FMCSA gov fee gov_fee_cents: 30000, // $300 FMCSA application fee gov_fee_label: "FMCSA operating authority application fee", erpnext_item: "MC-AUTHORITY", - discountable: true, + discountable: false, // $300 FMCSA gov fee makes this non-discountable }, "dot-drug-alcohol": { name: "DOT Drug & Alcohol Compliance Program", diff --git a/site/public/order/dot-compliance/index.html b/site/public/order/dot-compliance/index.html index b02bc64..dbce69b 100644 --- a/site/public/order/dot-compliance/index.html +++ b/site/public/order/dot-compliance/index.html @@ -443,7 +443,7 @@ var totalSection = document.getElementById("pw-total-section"); var totalRows = document.getElementById("pw-total-rows"); // Non-discountable slugs (passthrough costs) -var nonDiscountable = {"dot-drug-alcohol": true, "boc3-filing": true}; +var nonDiscountable = {"dot-drug-alcohol": true, "boc3-filing": true, "mc-authority": true}; // Cached discount info var activeDiscount = null;