summaryrefslogtreecommitdiff
path: root/src-migrate/common/types/promotion.ts
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-12-15 17:15:32 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-12-15 17:15:32 +0700
commitc9366090153e8aba3a673b2b77cbc8acc24e59a5 (patch)
tree9bad672e511d5585bb4be5b4e3190aca7c4a16af /src-migrate/common/types/promotion.ts
parenta5321d82f4b5e8404f575f1d62e92d0322d78db9 (diff)
Update promotion program feature
Diffstat (limited to 'src-migrate/common/types/promotion.ts')
-rw-r--r--src-migrate/common/types/promotion.ts28
1 files changed, 28 insertions, 0 deletions
diff --git a/src-migrate/common/types/promotion.ts b/src-migrate/common/types/promotion.ts
new file mode 100644
index 00000000..9e62cc3f
--- /dev/null
+++ b/src-migrate/common/types/promotion.ts
@@ -0,0 +1,28 @@
+import { IProductVariant } from './productVariant';
+
+export interface IPromotion {
+ id: number;
+ program_id: number;
+ name: string;
+ type: {
+ value: string;
+ label: string;
+ };
+ limit: number;
+ limit_user: number;
+ limit_trx: number;
+ price: number;
+ total_qty: number;
+ products: {
+ product_id: number;
+ qty: number;
+ }[];
+ free_products: {
+ product_id: number;
+ qty: number;
+ }[];
+}
+
+export interface IProductVariantPromo extends IProductVariant {
+ qty: number;
+}