From e295b08f2a014e1e68f44465ab10d2de1bee2ce5 Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Tue, 22 Oct 2024 16:20:32 +0700 Subject: [PATCH] refactor: add type installmentNo --- src/stores/product-service/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/product-service/types.ts b/src/stores/product-service/types.ts index ab4717c3..096015f3 100644 --- a/src/stores/product-service/types.ts +++ b/src/stores/product-service/types.ts @@ -129,6 +129,7 @@ export interface ProductOnWork { productId: string; workId: string; order: number; + installmentNo: number; } export interface WorkItems { @@ -159,6 +160,7 @@ export interface Product { code: string; id: string; imageUrl: string; + installmentNo: number; } export interface ProductCreate {