mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-21 05:45:46 +00:00
feat(FE-33): create customers table and details
This commit is contained in:
+2
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user