refactor(FE): Add ProductPrice and SellingPrice fields to types

This commit is contained in:
rstubryan
2026-01-06 20:12:47 +07:00
parent 8dfccf25d8
commit fd868eaa0c
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -10,6 +10,8 @@ export type BaseInventoryProduct = {
name: string; name: string;
brand: string; brand: string;
sku: string; sku: string;
ProductPrice: number;
SellingPrice?: number;
product_price: number; product_price: number;
selling_price?: number; selling_price?: number;
tax?: number; tax?: number;
+2
View File
@@ -10,6 +10,8 @@ export type PurchaseItemProduct = {
id: number; id: number;
name: string; name: string;
flags?: string[]; flags?: string[];
ProductPrice?: number;
SellingPrice?: number;
uom?: { uom?: {
name: string; name: string;
}; };