diff --git a/src/components/03_customer-management/BranchCardCustomer.vue b/src/components/03_customer-management/BranchCardCustomer.vue index 3f5926ae..1a45c605 100644 --- a/src/components/03_customer-management/BranchCardCustomer.vue +++ b/src/components/03_customer-management/BranchCardCustomer.vue @@ -5,69 +5,169 @@ import { CustomerBranch } from 'src/stores/customer/types'; withDefaults( defineProps<{ - data: CustomerBranch; + inactive?: boolean; + color?: 'none' | 'CORP' | 'PERS'; + + metadata?: unknown; + badgeField?: string[]; + fieldSelected?: string[]; + footer?: boolean; + + data: { + customerBranchFormTab: number; + branchName: string; + address: string; + telephone: string; + businessTypePure: string; + status: string; + totalEmployee: number; + }; }>(), {}, ); - +