erp材料出库单同步接口,材料出库与抽检业务编写,采购收货收货质检逻辑、采购订单同步接口完善、erp成品调拨入库同步

This commit is contained in:
2024-08-20 14:51:36 +08:00
parent 29fd420bb2
commit 6bac8c73b7
19 changed files with 1201 additions and 230 deletions

View File

@@ -0,0 +1,34 @@
using Tnb.WarehouseMgr.Entities.Consts;
namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class RawmatOutstockInput
{
/// <summary>
/// 组织ID
/// </summary>
public string org_id { get; set; } = WmsWareHouseConst.AdministratorOrgId;
/// <summary>
/// 创建用户
/// </summary>
public string create_id { get; set; }
/// <summary>
/// 来源单据id
/// </summary>
public string? source_id { get; set; }
/// <summary>
/// 载具
/// </summary>
public List<RawmatOutstockDetailInput> carrys { get; set; }
}
public class RawmatOutstockDetailInput
{
public string carry_code { get; set; }
}
}