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) <noreply@anthropic.com>
This commit is contained in:
justin 2026-05-29 15:02:31 -05:00
parent 79fb4722f1
commit 4e7493b088
2 changed files with 3 additions and 3 deletions

View file

@ -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",

View file

@ -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;