feat: Enhance outbound and receiving functionalities

- Updated inventory history insertion logic in both outbound and receiving controllers to use consistent field names and types.
- Added a new endpoint for retrieving warehouse locations, improving the ability to manage inventory locations.
- Enhanced the outbound page to include location selection based on the selected warehouse, improving user experience and data accuracy.
- Implemented validation for warehouse code duplication during new warehouse registration in the warehouse management page.

These changes aim to streamline inventory management processes and enhance the overall functionality of the logistics module.
This commit is contained in:
kjs
2026-04-03 17:38:14 +09:00
parent b3498677ab
commit e25ca7beca
8 changed files with 354 additions and 140 deletions

View File

@@ -19,6 +19,9 @@ router.get("/generate-number", outboundController.generateNumber);
// 창고 목록 조회
router.get("/warehouses", outboundController.getWarehouses);
// 위치 목록 조회
router.get("/locations", outboundController.getLocations);
// 소스 데이터: 출하지시 (판매출고)
router.get("/source/shipment-instructions", outboundController.getShipmentInstructions);