仓库-批量出库功能实现
This commit is contained in:
@@ -104,7 +104,25 @@ namespace ZR.Admin.WebApi.Controllers
|
||||
return ToResponse(response);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 按批次出库
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[HttpPost("doPatchOutProduction")]
|
||||
[Log(Title = "按批次出库", BusinessType = BusinessType.INSERT)]
|
||||
public IActionResult DoPatchOutProduction([FromBody] WmBatchGoodsOutProductionDto parm)
|
||||
{
|
||||
string response = _WmGoodsOutProductionService.DoPatchOutProduction(parm);
|
||||
if(response == "ok")
|
||||
{
|
||||
return ToResponse(new ApiResult(200, response, response));
|
||||
}
|
||||
else
|
||||
{
|
||||
return ToResponse(new ApiResult(500, response, response));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user