feat(FE-212): rename purchasing files and update validation schemas for purchase requests

This commit is contained in:
rstubryan
2025-10-29 21:12:24 +07:00
parent 3daf1a518e
commit 7ba7b884a4
3 changed files with 10 additions and 66 deletions
@@ -26,7 +26,7 @@ export type CreatePurchaseRequestPayload = {
notes?: string | null;
purchase_items: {
product_id: number;
product_warehouse_id?: number | null;
product_warehouse_id: number;
total_qty: number;
price: number;
}[];