refactor(FE-212): add DeletePurchaseRequestItemPayload and implement PurchaseDeleteItemsService

This commit is contained in:
rstubryan
2025-11-17 10:13:30 +07:00
parent 69a8899cac
commit 30ed70b669
6 changed files with 82 additions and 20 deletions
+4
View File
@@ -87,4 +87,8 @@ export type CreateAcceptApprovalRequestPayload = {
}[];
};
export type DeletePurchaseRequestItemPayload = {
item_ids: number[];
};
export type UpdatePurchaseRequestPayload = CreatePurchaseRequestPayload;