| | |
| | | return _taskService.MaterielCarry(startPoint); |
| | | } |
| | | |
| | | [HttpPost, Route("MaterielGroup")] |
| | | public WebResponseContent MaterielGroup([FromBody] MaterielGroupDTO materielGroupDTO) |
| | | { |
| | | return _inboundService.InbounOrderService.MaterielGroup(materielGroupDTO); |
| | | } |
| | | |
| | | |
| | | [HttpPost, Route("QueryOrderInfo")] |
| | | public WebResponseContent QueryOrderInfo(int pageNo, string orderNo) |
| | |
| | | var ext = Path.GetExtension(filePath).ToLowerInvariant(); |
| | | return File(memory, new Dictionary<string, string>{{ ".apk", "application/vnd.android.package-archive" }}[ext], Path.GetFileName(filePath)); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 空æå
¥åº |
| | | /// </summary> |
| | | /// <param name="PalletCode">æçå·</param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("EmptyInBound"), AllowAnonymous] |
| | | public WebResponseContent EmptyInBound(string PalletCode) |
| | | { |
| | | return _taskService.PalletInboundRequest("R01-001-023-001",PalletCode); |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 空æåºåº |
| | | /// </summary> |
| | | /// <param name="PalletCode">æçå·</param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("EmptyOutBound"), AllowAnonymous] |
| | | public WebResponseContent EmptyOutBound() |
| | | { |
| | | return _taskService.PalletOutboundTask("R01", "R01-001-023-001"); |
| | | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// ç»ç |
| | | /// </summary> |
| | | /// <param name="materielGroupDTO"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("MaterielGroup"), AllowAnonymous] |
| | | public WebResponseContent MaterielGroup([FromBody] MaterielGroupDTO materielGroupDTO) |
| | | { |
| | | return _inboundService.InbounOrderService.MaterielGroup(materielGroupDTO); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// åæå
¥åºç¡®è®¤ |
| | | /// </summary> |
| | | /// <param name="PalletCode">æçå·</param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("MaterielInBoundConfirm"), AllowAnonymous] |
| | | public WebResponseContent MaterielInBoundConfirm(string palletCode) |
| | | { |
| | | return _taskService.InboundRequest("R01-001-023-001", palletCode); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// ç»çæ¤é |
| | | /// </summary> |
| | | /// <param name="PalletCode">æçå·</param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("MaterielGroupRevoke"), AllowAnonymous] |
| | | public WebResponseContent MaterielGroupRevoke(string PalletCode) |
| | | { |
| | | return _inboundService.InbounOrderService.MaterielGroupRevoke(PalletCode); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 使åéå
¥åºç¡®è®¤ |
| | | /// </summary> |
| | | /// <param name="PalletCode">æçå·</param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("MaterielInBoundReturnConfirm"), AllowAnonymous] |
| | | public WebResponseContent MaterielInBoundReturnConfirm([FromBody] string PalletCode) |
| | | { |
| | | return null; |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |
| | | } |