其他出库记录、原材料到中储仓入库接口变更

This commit is contained in:
2024-09-20 08:59:07 +08:00
parent 4ea75cc677
commit 28742d05d0
11 changed files with 448 additions and 6 deletions

View File

@@ -21,6 +21,14 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
public decimal codeqty { get; set; }
public int is_out { get; set; }
public string? unit_id { get; set; }
/// <summary>
/// 辅助属性(供应商)
/// </summary>
public string? auxprop_gys { get; set; }
/// <summary>
/// 辅助属性(小批号)
/// </summary>
public string? auxprop_xph { get; set; }
}
}

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class OtherOutstockAddDetailInput
{
public string? department { get; set; }
public string? salesman { get; set; }
public string? warehouse_code { get; set; }
public string source_id { get; set; }
public string source_detail_id { get; set; }
public string source_bill_code { get; set; }
public List<OtherOutstockAddDetailDetail> details { get; set; }
}
public class OtherOutstockAddDetailDetail
{
public string? material_id { get; set; }
public string? material_code { get; set; }
public string? material_name { get; set; }
public string? unit { get; set; }
public decimal? qty { get; set; }
public decimal? actual_outstock_qty { get; set; }
public string batchno { get; set; }
public string auxprop_xph { get; set; }
public string auxprop_gys { get; set; }
}
}

View File

@@ -0,0 +1,24 @@
namespace Tnb.WarehouseMgr.Entities.Dto
{
/// <summary>
/// 库房业务更新输入参数
/// </summary>
public class QueryQTCKInput
{
/// <summary>
/// 组织ID
/// </summary>
public string org_id { get; set; }
/// <summary>
/// 入库仓库
/// </summary>
public string warehouse_instock { get; set; }
/// <summary>
/// 出库仓库
/// </summary>
public string warehouse_outstock { get; set; }
}
}