feat(FE-212): add manager approval requisition type and service with nullable notes

This commit is contained in:
rstubryan
2025-11-14 10:52:21 +07:00
parent 1ab72b8637
commit 3d49947c1e
3 changed files with 59 additions and 3 deletions
+5 -1
View File
@@ -58,7 +58,7 @@ export type CreatePurchaseRequisitionsPayload = {
};
export type CreateStaffApprovalRequisitionsPayload = {
notes: string;
notes?: string | null;
items: {
purchase_item_id: number;
price: number;
@@ -66,6 +66,10 @@ export type CreateStaffApprovalRequisitionsPayload = {
}[];
};
export type CreateManagerApprovalRequisitionsPayload = {
notes?: string | null;
};
export type CreateAcceptApprovalRequisitionsPayload = {
notes?: string;
items: {