diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2024-11-12 07:36:02 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2024-11-12 07:36:02 +0000 |
| commit | efc1ab22528dac05d3ad89a7506349eb3b553539 (patch) | |
| tree | 31a7b3583fd41058d75f46efb66fb40087347e3a /src-migrate/types | |
| parent | bf668785232e2d7abba1660dfdb6eb2746adc09a (diff) | |
| parent | 584e3fd7f4d33992046557ba18ee8eeac993e650 (diff) | |
Merged in CR/new_product_detail (pull request #378)
CR/new product detail
Diffstat (limited to 'src-migrate/types')
| -rw-r--r-- | src-migrate/types/cart.ts | 1 | ||||
| -rw-r--r-- | src-migrate/types/product.ts | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src-migrate/types/cart.ts b/src-migrate/types/cart.ts index a3115103..05fdcadb 100644 --- a/src-migrate/types/cart.ts +++ b/src-migrate/types/cart.ts @@ -34,6 +34,7 @@ export type CartItem = { stock: number; is_in_bu: boolean; on_hand_qty: number; + available_quantity: number; weight: number; attributes: string[]; parent: { diff --git a/src-migrate/types/product.ts b/src-migrate/types/product.ts index 31ea0ce1..fb9c888c 100644 --- a/src-migrate/types/product.ts +++ b/src-migrate/types/product.ts @@ -31,7 +31,9 @@ export interface IProduct { manufacture: { id: number; name: string; + logo: string; }; + voucher_pasti_hemat : any; } export interface IProductDetail extends IProduct { |
