mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
refactor(FE): Add ProductPrice and SellingPrice fields to types
This commit is contained in:
Vendored
+2
@@ -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;
|
||||||
|
|||||||
Vendored
+2
@@ -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;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user