| | |
| | | |
| | | |
| | | /// <summary> |
| | | /// Wcs放货有货 需要改道 取货无货 取消任务 |
| | | /// Wcs放货有货 需要改道 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost] |
| | | [Route("api/ZcInChangeBit")] |
| | | public WcsWarningReurn ZcInChangeBit(changeBitParme model) |
| | | { |
| | | LogHelper.Info("ZcInChangeBit 放货有货或取货无货参数:" + JsonConvert.SerializeObject(model), "放货有货"); |
| | | LogHelper.Info("ZcInChangeBit 放货有货参数:" + JsonConvert.SerializeObject(model), "放货有货"); |
| | | var res = WcsTask.ZcInChangeBit(model); |
| | | LogHelper.Info("ZcInChangeBit 放货有货或取货无货返回:" + JsonConvert.SerializeObject(res), "放货有货"); |
| | | LogHelper.Info("ZcInChangeBit 放货有货返回:" + JsonConvert.SerializeObject(res), "放货有货"); |
| | | return res; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// Wcs取货无货 取消任务 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost] |
| | | [Route("api/ZcOutChangeBit")] |
| | | public WcsWarningReurn ZcOutChangeBit(changeBitParme model) |
| | | { |
| | | LogHelper.Info("ZcOutChangeBit 取货无货参数:" + JsonConvert.SerializeObject(model), "取货无货"); |
| | | var res = WcsTask.ZcOutChangeBit(model); |
| | | LogHelper.Info("ZcOutChangeBit 取货无货返回:" + JsonConvert.SerializeObject(res), "取货无货"); |
| | | return res; |
| | | } |
| | | |