修复bug

This commit is contained in:
18942506660
2024-01-06 10:50:45 +08:00
parent 9d0966470f
commit 69c913b2b7
2 changed files with 99 additions and 93 deletions

View File

@@ -31,31 +31,6 @@ namespace WMS.Web.Core.Dto.OutStockTask
[Column("出库状态")]
public string Status { get; set; }
/// <summary>
/// 单据类型
/// </summary>
[Column("出库类型")]
public string Type { get; set; }
/// <summary>
/// 操作人(出库人)
/// </summary>
[Column("出库人")]
public string Operator { get; set; }
/// <summary>
/// 操作时间(出库时间)
/// </summary>
[Column("出库时间")]
public string OperateTime { get; set; }
/// <summary>
/// 出库人
/// </summary>
[Column("出库人")]
public string OutStock { get; set; }
/// <summary>
/// 出库时间
/// </summary>
[Column("出库时间")]
public string OutStockTime { get; set; }
/// <summary>
/// 来源单号
///</summary>
[Column("来源单号")]
@@ -66,16 +41,6 @@ namespace WMS.Web.Core.Dto.OutStockTask
[Column("销售订单号")]
public string SaleBillNo { get; set; }
/// <summary>
/// 来源单号(集合)
///</summary>
[Ignore]
public List<string> SourceBillNoList { get; set; } = new List<string>();
/// <summary>
/// 销售订单号(集合)
///</summary>
[Ignore]
public List<string> SaleBillNoList { get; set; } = new List<string>();
/// <summary>
/// 发货组织
///</summary>
[Column("发货组织")]
@@ -86,20 +51,30 @@ namespace WMS.Web.Core.Dto.OutStockTask
[Column("收货客户")]
public string ReceiptCustomer { get; set; }
/// <summary>
/// 物料名称
/// 单据类型
/// </summary>
[Column("物料名称")]
public string MaterialName { get; set; }
[Column("出库类型")]
public string Type { get; set; }
/// <summary>
/// 物料规格型号
/// </summary>
[Column("规格型号")]
public string Specifications { get; set; }
/// <summary>
/// 物料编码
/// </summary>
[Column("物料编码")]
public string MaterialNumber { get; set; }
/// <summary>
/// 物料规格型号
/// 物料名称
/// </summary>
[Column("规格型号")]
public string Specifications { get; set; }
[Column("物料名称")]
public string MaterialName { get; set; }
/// <summary>
/// 单位
/// </summary>
[Column("单位")]
public string Unit { get; set; }
/// <summary>
/// 仓库
///</summary>
@@ -116,21 +91,6 @@ namespace WMS.Web.Core.Dto.OutStockTask
[Column("已出库数量")]
public decimal RealityQty { get; set; }
/// <summary>
/// 订单明细备注
///</summary>
[Column("订单明细备注")]
public string Remark { get; set; }
/// <summary>
/// 创建时间erp那边的创建时间
///</summary>
[Column("创建时间")]
public string CreateTime { get; set; }
/// <summary>
/// 单位
/// </summary>
[Column("单位")]
public string Unit { get; set; }
/// <summary>
/// 出库开始时间
///</summary>
[Column("出库开始时间")]
@@ -140,5 +100,49 @@ namespace WMS.Web.Core.Dto.OutStockTask
///</summary>
[Column("出库结束时间")]
public string OutStockEndTime { get; set; }
/// <summary>
/// 操作人
/// </summary>
[Ignore]
public string Operator { get; set; }
/// <summary>
/// 操作时间
/// </summary>
[Ignore]
public string OperateTime { get; set; }
/// <summary>
/// 出库人
/// </summary>
[Column("出库人")]
public string OutStock { get; set; }
/// <summary>
/// 出库时间
/// </summary>
[Column("出库时间")]
public string OutStockTime { get; set; }
/// <summary>
/// 来源单号(集合)
///</summary>
[Ignore]
public List<string> SourceBillNoList { get; set; } = new List<string>();
/// <summary>
/// 销售订单号(集合)
///</summary>
[Ignore]
public List<string> SaleBillNoList { get; set; } = new List<string>();
/// <summary>
/// 订单明细备注
///</summary>
[Column("订单明细备注")]
public string Remark { get; set; }
/// <summary>
/// 创建时间erp那边的创建时间
///</summary>
[Column("创建时间")]
public string CreateTime { get; set; }
}
}