盘点库存
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
using System.Reflection.Metadata;
|
||||
using ZR.Admin.WebApi.Extensions;
|
||||
using ZR.Admin.WebApi.Filters;
|
||||
using ZR.Model.MES.wms;
|
||||
@@ -137,7 +137,22 @@ namespace ZR.Admin.WebApi.Controllers
|
||||
return ToResponse(response);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 修改库存数量
|
||||
/// </summary>
|
||||
/// <param name="id"></param>
|
||||
/// <param name="stack_num"></param>
|
||||
/// <returns></returns>
|
||||
[HttpGet("modifyInventoryQuantity")]
|
||||
public IActionResult ModifyInventoryQuantity(string id,int stack_num)
|
||||
{
|
||||
if(string.IsNullOrEmpty(id))
|
||||
{
|
||||
return SUCCESS(null);
|
||||
}
|
||||
var response= _WmGoodsNowProductionService.ModifyInventoryQuantity(id, stack_num);
|
||||
return SUCCESS(response);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user