feat(warehouse): add receipt, issue, reservation, inventory, and report routes
- Receipts: CRUD + confirm/cancel + multipart attachment upload/delete - Issues: CRUD + confirm/cancel with auto-FIFO batch selection - Reservations: list + create + cancel - Inventory sessions: CRUD + confirm with auto system_qty calculation - Reports: stock-status, project-consumption, movement-log, below-minimum - Add confirm/cancel/upload audit actions and warehouse_receipt_attachment entity type Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -111,6 +111,9 @@ export type AuditAction =
|
||||
| "delete"
|
||||
| "activate"
|
||||
| "deactivate"
|
||||
| "confirm"
|
||||
| "cancel"
|
||||
| "upload"
|
||||
| "password_change"
|
||||
| "permission_change"
|
||||
| "access_denied";
|
||||
@@ -139,4 +142,5 @@ export type EntityType =
|
||||
| "warehouse_inventory"
|
||||
| "warehouse_supplier"
|
||||
| "warehouse_category"
|
||||
| "warehouse_location";
|
||||
| "warehouse_location"
|
||||
| "warehouse_receipt_attachment";
|
||||
|
||||
Reference in New Issue
Block a user