|
|
@ -72,8 +72,14 @@ namespace Win.Sfs.SettleAccount.Entities.Wms.WmsSumOutput |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Display(Name = "行号")] |
|
|
|
public int LineNumber { set; get; } |
|
|
|
|
|
|
|
[Display(Name = "版本号")] |
|
|
|
public string Version { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
[Display(Name = "客户")] |
|
|
|
public string Client { set; get; } |
|
|
|
[Display(Name = "出库类型")] |
|
|
@ -86,10 +92,10 @@ namespace Win.Sfs.SettleAccount.Entities.Wms.WmsSumOutput |
|
|
|
public string ClientCode { set; get; } |
|
|
|
[Display(Name = "结算单")] |
|
|
|
public string BillNum { set; get; } |
|
|
|
[Display(Name = "结算单")] |
|
|
|
[Display(Name = "物料号")] |
|
|
|
public string MaterialCode { set; get; } |
|
|
|
[Display(Name = "寄售类别")] |
|
|
|
public string SaleType { set; get; } |
|
|
|
//[Display(Name = "寄售类别")]
|
|
|
|
//public string SaleType { set; get; }
|
|
|
|
[Display(Name = "结算数量")] |
|
|
|
public decimal Qty { set; get; } |
|
|
|
[Display(Name = "实际出库数量")] |
|
|
@ -112,9 +118,69 @@ namespace Win.Sfs.SettleAccount.Entities.Wms.WmsSumOutput |
|
|
|
public string MaterialDesc { set; get; } |
|
|
|
[Display(Name = "备注")] |
|
|
|
public string Remark1 { set; get; } |
|
|
|
[Display(Name = "状态")] |
|
|
|
public int State { set; get; } |
|
|
|
|
|
|
|
[Display(Name = "过账日期")] |
|
|
|
public DateTime AccountDate { set; get; } |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public class WmsDetailDiffReportDto |
|
|
|
{ |
|
|
|
public WmsDetailDiffReportDto() |
|
|
|
{ |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Display(Name = "版本号")] |
|
|
|
public string Version { set; get; } |
|
|
|
|
|
|
|
[Display(Name = "客户")] |
|
|
|
public string Client { set; get; } |
|
|
|
[Display(Name = "出库类型")] |
|
|
|
public string Type { set; get; } |
|
|
|
//[Display(Name = "结算编码")]
|
|
|
|
//public string SettleCode { set; get; }
|
|
|
|
//[Display(Name = "销售渠道")]
|
|
|
|
//public string SaleCode { set; get; }
|
|
|
|
//[Display(Name = "客户代码")]
|
|
|
|
//public string ClientCode { set; get; }
|
|
|
|
[Display(Name = "结算单")] |
|
|
|
public string BillNum { set; get; } |
|
|
|
[Display(Name = "交货编码")] |
|
|
|
public string SwitchCode { set; get; } |
|
|
|
|
|
|
|
[Display(Name = "物料号")] |
|
|
|
public string MaterialCode { set; get; } |
|
|
|
//[Display(Name = "寄售类别")]
|
|
|
|
//public string SaleType { set; get; }
|
|
|
|
[Display(Name = "结算数量")] |
|
|
|
public decimal Qty { set; get; } |
|
|
|
[Display(Name = "实际出库数量")] |
|
|
|
public decimal OutputQty { set; get; } |
|
|
|
[Display(Name = "差异数量")] |
|
|
|
public decimal DiffQty { set; get; } |
|
|
|
//[Display(Name = "开票单价")]
|
|
|
|
//public decimal Price { set; get; }
|
|
|
|
//[Display(Name = "结算金额")]
|
|
|
|
//public decimal Amt { set; get; }
|
|
|
|
//[Display(Name = "已出库金额")]
|
|
|
|
//public decimal OutPutAmt { set; get; }
|
|
|
|
//[Display(Name = "WMS待出库金额")]
|
|
|
|
//public decimal DiffAmt { set; get; }
|
|
|
|
[Display(Name = "物料组编码")] |
|
|
|
public string MaterialGroupCode { set; get; } |
|
|
|
[Display(Name = "物料组(车型)")] |
|
|
|
public string MaterialGroup { set; get; } |
|
|
|
[Display(Name = "物料组描述")] |
|
|
|
public string MaterialDesc { set; get; } |
|
|
|
[Display(Name = "备注")] |
|
|
|
public string Remark1 { set; get; } |
|
|
|
[Display(Name = "状态")] |
|
|
|
public int State { set; get; } |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|