feat(FE-33): create customers table and details

This commit is contained in:
randy-ar
2025-10-09 04:34:56 +07:00
parent 21b9396323
commit 21cc01fe68
7 changed files with 418 additions and 243 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ export type BaseCustomer = {
name: string;
pic_id: number;
pic: CreatedUser;
type: 'INDIVIDUAL' | 'BISNIS';
type: string;
address: string;
phone: string;
email: string;
@@ -17,7 +17,7 @@ export type Customer = BaseMetadata & BaseCustomer;
export type CreateCustomerPayload = {
name: string;
pic_id: number;
type: 'INDIVIDUAL' | 'BISNIS';
type: string;
address: string;
phone: string;
email: string;