fixed
This commit is contained in:
11
lib/types.ts
11
lib/types.ts
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user