mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-22 06:15:47 +00:00
feat(FE-212): add manager approval requisition type and service with nullable notes
This commit is contained in:
Vendored
+5
-1
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user