fix bug in user, employee, institution,requestList

This commit is contained in:
Kanjana 2025-04-04 14:35:28 +07:00 committed by Methapon Metanipat
parent 116fa02bd9
commit 709c21082a
9 changed files with 230 additions and 17 deletions

View file

@ -120,6 +120,9 @@ type UserCreate = {
selectedImage?: string;
branchId: string | string[];
remark?: string;
agencyStatus?: string;
};
type UserUpdate = {
@ -176,6 +179,9 @@ type UserUpdate = {
provinceId?: string | null;
branchId?: string | string[];
remark?: string;
agencyStatus?: string;
};
const permissionCondCompany = createPermCondition((_) => true);