|
|
@ -257,10 +257,16 @@ namespace Win.Sfs.SettleAccount.Entities.WMS |
|
|
|
Remark = remark; |
|
|
|
Qty = qty; |
|
|
|
} |
|
|
|
public void SetId(Guid id,string remark) |
|
|
|
public void SetData(Guid id,string remark,string wmsbillnum,string version,Guid taskId) |
|
|
|
{ |
|
|
|
Id = id; |
|
|
|
Remark = remark; |
|
|
|
WmsBillNum = wmsbillnum; |
|
|
|
Version = version; |
|
|
|
TaskId = taskId; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -269,7 +275,7 @@ namespace Win.Sfs.SettleAccount.Entities.WMS |
|
|
|
|
|
|
|
//交货单号
|
|
|
|
|
|
|
|
[ImporterHeader(Name = "组件组物料")] |
|
|
|
[ImporterHeader(Name = "组件组物料",IsIgnore =true)] |
|
|
|
public string ParentMaterialCode { set; get; } |
|
|
|
[ImporterHeader(Name = "交货单号")] |
|
|
|
public string WmsBillNum { set; get; } |
|
|
@ -292,7 +298,7 @@ namespace Win.Sfs.SettleAccount.Entities.WMS |
|
|
|
[ImporterHeader(Name = "入库库位", IsIgnore = true)] |
|
|
|
//入库库位
|
|
|
|
public string InPut { set; get; } |
|
|
|
[ImporterHeader(Name = "状态")] |
|
|
|
[ImporterHeader(Name = "状态",IsIgnore =true)] |
|
|
|
public int State { get; set; } |
|
|
|
[ImporterHeader(Name = "客户物料")] |
|
|
|
/// <summary>
|
|
|
@ -309,13 +315,13 @@ namespace Win.Sfs.SettleAccount.Entities.WMS |
|
|
|
/// </summary>
|
|
|
|
[ImporterHeader(Name = "版本号", IsIgnore = true)] |
|
|
|
public string Version { set; get; } |
|
|
|
[ImporterHeader(Name = "结算数量",IsIgnore =true)] |
|
|
|
public decimal? Qty { set; get; } |
|
|
|
[ImporterHeader(Name = "结算数量")] |
|
|
|
public decimal Qty { set; get; } |
|
|
|
|
|
|
|
[ImporterHeader(Name = "单据", IsIgnore = true)] |
|
|
|
public string BillNum { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
[ImporterHeader(Name = "任务", IsIgnore = true)] |
|
|
|
public Guid TaskId { set; get; } |
|
|
|
|
|
|
|
|
|
|
|