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;