|
|
@ -1386,7 +1386,7 @@ namespace Win.Sfs.SettleAccount.Entities.WMS |
|
|
|
{ |
|
|
|
} |
|
|
|
|
|
|
|
public WmsSharePartOutPutDetial(Guid id, string wmsBillNum, string orderBillNum, string materialCode, string materialDesc, string materialGroup, string outPut, string inPut, int state, string extend1, string extend2, string extend3, string parentMaterialCode, string billNum, Guid taskId, string remark, decimal qty) |
|
|
|
public WmsSharePartOutPutDetial(Guid id, string wmsBillNum, string orderBillNum, string materialCode, string materialDesc, string materialGroup, string outPut, string inPut, int state, string extend1, string extend2, string extend3, string parentMaterialCode, string billNum, Guid taskId, string remark, decimal qty, decimal stockQty, decimal outputQty) |
|
|
|
{ |
|
|
|
Id = id; |
|
|
|
WmsBillNum = wmsBillNum; |
|
|
@ -1405,6 +1405,8 @@ namespace Win.Sfs.SettleAccount.Entities.WMS |
|
|
|
TaskId = taskId; |
|
|
|
Remark = remark; |
|
|
|
Qty = qty; |
|
|
|
StockQty = stockQty; |
|
|
|
OutPutQty = outputQty; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -1466,6 +1468,12 @@ namespace Win.Sfs.SettleAccount.Entities.WMS |
|
|
|
[ImporterHeader(Name = "任务代码", IsIgnore = true)] |
|
|
|
public Guid TaskId { set; get; } |
|
|
|
|
|
|
|
[ImporterHeader(Name = "寄销库数量", IsIgnore = true)] |
|
|
|
public decimal StockQty { set; get; } |
|
|
|
|
|
|
|
[ImporterHeader(Name = "出库数量", IsIgnore = true)] |
|
|
|
public decimal OutPutQty { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|