This commit is contained in:
2026-03-23 16:56:23 -05:00
parent 1f0986a94d
commit ee26ffe75c
6 changed files with 128 additions and 38 deletions

View File

@@ -41,6 +41,17 @@ export type ContactRow = {
phone: string | null;
};
export type OrderItemOption = {
id: number;
sku: string;
name: string;
kind: "part" | "assembly";
quantityOnHand: number;
salePrice: number;
unitCost: number;
unitOfMeasure: string;
};
export type SalesOrderListRow = {
id: number;
orderNumber: string;