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:
parent
79fb4722f1
commit
4e7493b088
2 changed files with 3 additions and 3 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue