Supplier based pricing added

This commit is contained in:
2026-03-18 18:00:35 -05:00
parent 41803f4efa
commit 6780d80d10
8 changed files with 210 additions and 47 deletions
+2 -1
View File
@@ -13,6 +13,7 @@ export interface Scope {
useDeliveryLogic: 'percent' | 'simple';
estimatorNotes?: string;
bidDescription?: string;
supplier?: string;
}
export type ModifierType = 'tax' | 'man-hours' | 'custom';
@@ -81,5 +82,5 @@ export interface StandardPrice {
category: string;
name: string;
price: number;
priceRange?: string;
supplier?: string;
}