| | |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost,HttpGet,Route("ReceiveMaterial"),AllowAnonymous] |
| | | |
| | | public WebResponseContent AddMaterial([FromBody]List<BSTMaterialDTO> bSTMaterialDTOs) |
| | | { |
| | | return _basicService.MaterielInfoService.AddMaterial(bSTMaterialDTOs); |
| | |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("ReceiveSupplier"), AllowAnonymous] |
| | | |
| | | public WebResponseContent AddSupplier([FromBody] List<BSTSupplierDTO> bSTSupplierDTOs) |
| | | { |
| | | return _basicService.SupplierInfoService.AddSupplier(bSTSupplierDTOs); |
| | |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("ReceivePicking"), AllowAnonymous] |
| | | public WebResponseContent ReceivePicking(BSTPickInfoDTO bSTPickInfoDTO) |
| | | public WebResponseContent ReceivePicking([FromBody] List<BSTPickInfoDTO> bSTPickInfoDTOs) |
| | | { |
| | | return _taskService.ReceivePicking(bSTPickInfoDTO); |
| | | return _taskService.ReceivePicking(bSTPickInfoDTOs); |
| | | } |
| | | |
| | | /// <summary> |