盘点单对接金蝶
This commit is contained in:
@@ -35,16 +35,16 @@ namespace WMS.Web.Core.Dto.Erp.TakeStock
|
||||
/// 单据类型(标准盘亏单; 标准盘盈单 PY01_SYS) 盘亏 PK01_SYS
|
||||
/// </summary>
|
||||
[JsonProperty("FBillTypeID")]
|
||||
public string Type { get; set; }
|
||||
public ErpNumberDto Type { get; set; }
|
||||
/// <summary>
|
||||
/// 库存组织 (取仓库对应的库存组织)
|
||||
/// </summary>
|
||||
[JsonProperty("FStockOrgId")]
|
||||
public string StockOrgId { get; set; }
|
||||
public ErpNumberDto StockOrgId { get; set; }
|
||||
/// <summary>
|
||||
/// 货主类型: 默认为业务组织 BD_OwnerOrg
|
||||
/// </summary>
|
||||
[JsonProperty("FBillTypeID")]
|
||||
[JsonProperty("FOwnerTypeIdHead")]
|
||||
public string FOwnerTypeIdHead { get; set; } = "BD_OwnerOrg";
|
||||
/// <summary>
|
||||
/// 单据编号
|
||||
@@ -68,7 +68,7 @@ namespace WMS.Web.Core.Dto.Erp.TakeStock
|
||||
/// 库存状态 KCZT001
|
||||
/// </summary>
|
||||
[JsonProperty("FStockStatusId")]
|
||||
public string FStockStatusId { get; set; } = "KCZT001";
|
||||
public ErpNumberDto FStockStatusId { get; set; } = new ErpNumberDto("KCZT001");
|
||||
/// <summary>
|
||||
/// 货主类型: 默认为业务组织 BD_OwnerOrg
|
||||
/// </summary>
|
||||
@@ -78,7 +78,7 @@ namespace WMS.Web.Core.Dto.Erp.TakeStock
|
||||
/// 取仓库对应的货主信息 货主: 等于库存组织
|
||||
/// </summary>
|
||||
[JsonProperty("FOwnerid")]
|
||||
public string FOwnerid { get; set; }
|
||||
public ErpNumberDto FOwnerid { get; set; }
|
||||
/// <summary>
|
||||
/// 保管者类型
|
||||
/// </summary>
|
||||
@@ -88,22 +88,22 @@ namespace WMS.Web.Core.Dto.Erp.TakeStock
|
||||
/// 保管者 仓库”库存组织”
|
||||
/// </summary>
|
||||
[JsonProperty("FKeeperId")]
|
||||
public string FKeeperId { get; set; }
|
||||
public ErpNumberDto FKeeperId { get; set; }
|
||||
/// <summary>
|
||||
/// 物料ID
|
||||
/// </summary>
|
||||
[JsonProperty("FMaterialId")]
|
||||
public string MaterialId { get; set; }
|
||||
public ErpNumberDto MaterialId { get; set; }
|
||||
/// <summary>
|
||||
/// 单位ID
|
||||
/// </summary>
|
||||
[JsonProperty("FUnitID")]
|
||||
public string UnitId { get; set; }
|
||||
public ErpNumberDto UnitId { get; set; }
|
||||
/// <summary>
|
||||
/// 仓库ID
|
||||
/// </summary>
|
||||
[JsonProperty("FStockId")]
|
||||
public string StockId { get; set; }
|
||||
public ErpNumberDto StockId { get; set; }
|
||||
/// <summary>
|
||||
/// 仓位ID
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user