feat: business type is now from api
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 6s

This commit is contained in:
Methapon2001 2025-07-11 10:45:33 +07:00
parent 30d2126161
commit 577da39cf0
6 changed files with 35 additions and 104 deletions

View file

@ -34,7 +34,12 @@ export type CustomerBranch = {
payDate: string;
jobDescription: string;
jobPosition: string;
businessType: string;
businessTypeId: string;
businessType?: {
id: string;
name: string;
nameEN: string;
};
agentUserId: string;
contactName: string;
@ -107,7 +112,7 @@ export type CustomerBranchCreate = {
telephoneNo?: string;
gender?: string;
birthDate?: string;
businessType: string;
businessTypeId: string;
jobPosition: string;
jobDescription: string;
payDate?: string;