From 566798e35a17ff91665fe1e28b8c81215b9ea3ec Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Tue, 11 Jun 2024 15:02:58 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B9=81=E0=B8=81=E0=B9=89=20type=20=20?= =?UTF-8?q?=E0=B8=82=E0=B8=AD=E0=B8=87=20status?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/product-service/types.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/stores/product-service/types.ts b/src/stores/product-service/types.ts index c6cf40c5..cef426f2 100644 --- a/src/stores/product-service/types.ts +++ b/src/stores/product-service/types.ts @@ -1,10 +1,12 @@ +import { Status } from '../types'; + export type ProductGroup = { id: string; code: string; name: string; detail: string; remark: string; - status: string; + status: Status; createdBy: string; createdAt: string; updateBy: string; @@ -15,6 +17,7 @@ export interface ProductGroupCreate { remark: string; detail: string; name: string; + code: string; } export interface ProductGroupUpdate {