diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2024-08-08 10:10:56 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2024-08-08 10:10:56 +0000 |
| commit | c9090a89b775a1e3c2f1e707021e6375eb9f92e3 (patch) | |
| tree | 85bb4be978ff65714e395a2a58772e098e67fd3f /src-migrate/types | |
| parent | fecff2431477d08d166c34f116972aa090cf463f (diff) | |
| parent | 616d8ffc973eba673069243ec8981b5234234fe5 (diff) | |
Merged in Feature/template-switch (pull request #227)
Feature/template switch
Diffstat (limited to 'src-migrate/types')
| -rw-r--r-- | src-migrate/types/product.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src-migrate/types/product.ts b/src-migrate/types/product.ts index 681cdc8e..75d55002 100644 --- a/src-migrate/types/product.ts +++ b/src-migrate/types/product.ts @@ -1,6 +1,8 @@ import { IProductVariantDetail } from './productVariant'; export interface IProduct { + qtySold: number; + stockTotal: number; id: number; image: string; code: string; @@ -18,11 +20,13 @@ export interface IProduct { name: string; }[]; flash_sale: { - id: string; + id: number; remaining_time: number; tag: string; }; lowest_price: { + priceDiscount: number; + discountPercentage: number; price: number; price_discount: number; discount_percentage: number; |
