|
|
@ -16,109 +16,107 @@ public class PubSaSeCompareDiff |
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "Wms发货单号")] |
|
|
|
public string WmsBillNum { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 发货日期
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "发货日期")] |
|
|
|
public DateTime ShippingDate { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 日顺序号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "日顺序号")] |
|
|
|
public string SeqNumber { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// PJIS日顺序号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "PJIS日顺序号")] |
|
|
|
public string PJISSeqNumber { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料号")] |
|
|
|
public string MaterialNumber { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料描述
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料描述")] |
|
|
|
public string MaterialDes { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 结算数据中的过账日期
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "客户下线时间")] |
|
|
|
public DateTime CustomerOfflineTime { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 结算数量
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "结算数量")] |
|
|
|
public decimal SAQty { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 发货数量
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "发货数量")] |
|
|
|
public decimal SEQty { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 差异数量
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "差异数量")] |
|
|
|
public decimal DiffQty => SAQty - SEQty; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 匹配类型
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "匹配类型")] |
|
|
|
public string MateType { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 定价
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "定价")] |
|
|
|
public decimal FixPrice { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 原始零件号
|
|
|
|
/// 生产号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "原始零件号")] |
|
|
|
public string PrimitiveLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "生产号")] |
|
|
|
public string PN { set; get; } |
|
|
|
/// <summary>
|
|
|
|
/// 替换零件号
|
|
|
|
/// WMS目标库位
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "替换零件号")] |
|
|
|
public string ReplaceLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "WMS目标库位")] |
|
|
|
public string ToLocCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 零件号
|
|
|
|
/// ERP目标库位
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "零件号")] |
|
|
|
public string SeLU { set; get; } |
|
|
|
|
|
|
|
[Display(Name = "ERP目标库位")] |
|
|
|
public string ToErpLocCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 零件号
|
|
|
|
/// 类型
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "零件号")] |
|
|
|
public string SaLU { set; get; } |
|
|
|
|
|
|
|
[Display(Name = "类型")] |
|
|
|
public EnumPubSaSeCompareCategory Category { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 生产号
|
|
|
|
/// 发运客户物料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "生产号")] |
|
|
|
public string PN { set; get; } |
|
|
|
|
|
|
|
public string SeCustomerPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 类型
|
|
|
|
/// 发运厂内物料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "类型")] |
|
|
|
public EnumPubSaSeCompareCategory Category { get; set; } |
|
|
|
|
|
|
|
public string SeFactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 结算客户物料号
|
|
|
|
/// </summary>
|
|
|
|
public string SaCustomerPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 结算厂内物料号
|
|
|
|
/// </summary>
|
|
|
|
public string SaFactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 客户物料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "客户物料号")] |
|
|
|
public string CustomerPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 物料描述
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料描述")] |
|
|
|
public string PartCodeDesc { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 厂内物料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "厂内物料号")] |
|
|
|
public string FactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 替换厂内物料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "替换厂内物料号")] |
|
|
|
public string ReplaceFactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 是否已经移除
|
|
|
|
/// </summary>
|
|
|
@ -172,35 +170,30 @@ public class PubSaSeCompareDetailExport2 |
|
|
|
[Display(Name = "生产码")] |
|
|
|
[ExporterHeader(DisplayName = "ASN发货单号")] |
|
|
|
public string PN { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料号
|
|
|
|
/// 客户零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内物料号")] |
|
|
|
public string MaterialNumber { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "客户零件号")] |
|
|
|
[ExporterHeader(DisplayName = "客户零件号")] |
|
|
|
public string CustomerPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 物料描述
|
|
|
|
/// 零件描述
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料描述")] |
|
|
|
[ExporterHeader(DisplayName = "物料描述")] |
|
|
|
public string MaterialDes { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "零件描述")] |
|
|
|
[ExporterHeader(DisplayName = "零件描述")] |
|
|
|
public string PartCodeDesc { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 原始LU
|
|
|
|
/// 厂内零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "原始LU")] |
|
|
|
[ExporterHeader(DisplayName = "原始LU")] |
|
|
|
public string PrimitiveLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "厂内零件号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内零件号")] |
|
|
|
public string FactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///替换LU
|
|
|
|
/// 替换厂内零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "替换LU")] |
|
|
|
[ExporterHeader(DisplayName = "替换LU")] |
|
|
|
public string ReplaceLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "替换厂内零件号")] |
|
|
|
[ExporterHeader(DisplayName = "替换厂内零件号")] |
|
|
|
public string ReplaceFactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 结算数据中的过账日期
|
|
|
|
/// </summary>
|
|
|
@ -288,21 +281,18 @@ public interface IPubSaSeCompareDetailExport |
|
|
|
[ValueMapping("有结算无发运", 2)] |
|
|
|
[ValueMapping("无结算有发运", 3)] |
|
|
|
public EnumPubSaSeCompareCategory Category { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料描述
|
|
|
|
/// 零件描述
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料描述")] |
|
|
|
[Display(Name = "零件描述")] |
|
|
|
[ExporterHeader(DisplayName = "物料描述")] |
|
|
|
public string MaterialDes { get; set; } |
|
|
|
|
|
|
|
public string PartCodeDesc { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///替换LU
|
|
|
|
/// 替换厂内零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "替换LU")] |
|
|
|
[ExporterHeader(DisplayName = "替换LU")] |
|
|
|
public string ReplaceLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "替换厂内零件号")] |
|
|
|
[ExporterHeader(DisplayName = "替换厂内零件号")] |
|
|
|
public string ReplaceFactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 结算数量
|
|
|
|
/// </summary>
|
|
|
@ -325,18 +315,18 @@ public interface IPubSaSeCompareDetailExport |
|
|
|
public class PubSaSeCompareSumExport |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
/// LU
|
|
|
|
/// 厂内物料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "LU")] |
|
|
|
[Display(Name = "厂内物料号")] |
|
|
|
[ExporterHeader(DisplayName = "LU")] |
|
|
|
public string LU { get; set; } |
|
|
|
public string FactoryPartCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料描述
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料描述")] |
|
|
|
[ExporterHeader(DisplayName = "物料描述")] |
|
|
|
public string MaterialDes { get; set; } |
|
|
|
public string PartCodeDesc { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 结算数量
|
|
|
@ -398,35 +388,30 @@ public class PubSaSeCompareDetailExportZhiGongJianBBAC : PubSaSeCompareDetailExp |
|
|
|
[Display(Name = "生产码")] |
|
|
|
[ExporterHeader(DisplayName = "ASN发货单号")] |
|
|
|
public string PN { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料号
|
|
|
|
/// 客户零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内物料号")] |
|
|
|
public string MaterialNumber { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "客户零件号")] |
|
|
|
[ExporterHeader(DisplayName = "客户零件号")] |
|
|
|
public string CustomerPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 物料描述
|
|
|
|
/// 零件描述
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料描述")] |
|
|
|
[ExporterHeader(DisplayName = "物料描述")] |
|
|
|
public string MaterialDes { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "零件描述")] |
|
|
|
[ExporterHeader(DisplayName = "零件描述")] |
|
|
|
public string PartCodeDesc { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 原始LU
|
|
|
|
/// 厂内零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "原始LU")] |
|
|
|
[ExporterHeader(DisplayName = "原始LU")] |
|
|
|
public string PrimitiveLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "厂内零件号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内零件号")] |
|
|
|
public string FactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///替换LU
|
|
|
|
/// 替换厂内零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "替换LU")] |
|
|
|
[ExporterHeader(DisplayName = "替换LU")] |
|
|
|
public string ReplaceLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "替换厂内零件号")] |
|
|
|
[ExporterHeader(DisplayName = "替换厂内零件号")] |
|
|
|
public string ReplaceFactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 结算数据中的过账日期
|
|
|
|
/// </summary>
|
|
|
@ -522,35 +507,30 @@ public class PubSaSeCompareDetailExportZhiGongJianHBPO : PubSaSeCompareDetailExp |
|
|
|
[Display(Name = "生产码")] |
|
|
|
[ExporterHeader(DisplayName = "ASN发货单号")] |
|
|
|
public string PN { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料号
|
|
|
|
/// 客户零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内物料号")] |
|
|
|
public string MaterialNumber { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "客户零件号")] |
|
|
|
[ExporterHeader(DisplayName = "客户零件号")] |
|
|
|
public string CustomerPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 物料描述
|
|
|
|
/// 零件描述
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料描述")] |
|
|
|
[ExporterHeader(DisplayName = "物料描述")] |
|
|
|
public string MaterialDes { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "零件描述")] |
|
|
|
[ExporterHeader(DisplayName = "零件描述")] |
|
|
|
public string PartCodeDesc { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 原始LU
|
|
|
|
/// 厂内零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "原始LU")] |
|
|
|
[ExporterHeader(DisplayName = "原始LU")] |
|
|
|
public string PrimitiveLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "厂内零件号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内零件号")] |
|
|
|
public string FactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///替换LU
|
|
|
|
/// 替换厂内零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "替换LU")] |
|
|
|
[ExporterHeader(DisplayName = "替换LU")] |
|
|
|
public string ReplaceLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "替换厂内零件号")] |
|
|
|
[ExporterHeader(DisplayName = "替换厂内零件号")] |
|
|
|
public string ReplaceFactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 结算数据中的过账日期
|
|
|
|
/// </summary>
|
|
|
@ -646,35 +626,30 @@ public class PubSaSeCompareDetailExportMaiDanJianHBPO : PubSaSeCompareDetailExpo |
|
|
|
[Display(Name = "生产码")] |
|
|
|
[ExporterHeader(DisplayName = "索引号")] |
|
|
|
public string PN { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料号
|
|
|
|
/// 客户零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内物料号")] |
|
|
|
public string MaterialNumber { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "客户零件号")] |
|
|
|
[ExporterHeader(DisplayName = "客户零件号")] |
|
|
|
public string CustomerPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 物料描述
|
|
|
|
/// 零件描述
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料描述")] |
|
|
|
[ExporterHeader(DisplayName = "物料描述")] |
|
|
|
public string MaterialDes { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "零件描述")] |
|
|
|
[ExporterHeader(DisplayName = "零件描述")] |
|
|
|
public string PartCodeDesc { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 原始LU
|
|
|
|
/// 厂内零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "原始LU")] |
|
|
|
[ExporterHeader(DisplayName = "原始LU")] |
|
|
|
public string PrimitiveLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "厂内零件号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内零件号")] |
|
|
|
public string FactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///替换LU
|
|
|
|
/// 替换厂内零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "替换LU")] |
|
|
|
[ExporterHeader(DisplayName = "替换LU")] |
|
|
|
public string ReplaceLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "替换厂内零件号")] |
|
|
|
[ExporterHeader(DisplayName = "替换厂内零件号")] |
|
|
|
public string ReplaceFactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 结算数据中的过账日期
|
|
|
|
/// </summary>
|
|
|
@ -770,35 +745,30 @@ public class PubSaSeCompareDetailExportBeiJian : PubSaSeCompareDetailExport, IPu |
|
|
|
[Display(Name = "生产码")] |
|
|
|
[ExporterHeader(DisplayName = "索引号")] |
|
|
|
public string PN { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料号
|
|
|
|
/// 客户零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内物料号")] |
|
|
|
public string MaterialNumber { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "客户零件号")] |
|
|
|
[ExporterHeader(DisplayName = "客户零件号")] |
|
|
|
public string CustomerPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 物料描述
|
|
|
|
/// 零件描述
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料描述")] |
|
|
|
[ExporterHeader(DisplayName = "物料描述")] |
|
|
|
public string MaterialDes { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "零件描述")] |
|
|
|
[ExporterHeader(DisplayName = "零件描述")] |
|
|
|
public string PartCodeDesc { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 原始LU
|
|
|
|
/// 厂内零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "原始LU")] |
|
|
|
[ExporterHeader(DisplayName = "原始LU")] |
|
|
|
public string PrimitiveLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "厂内零件号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内零件号")] |
|
|
|
public string FactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///替换LU
|
|
|
|
/// 替换厂内零件号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "替换LU")] |
|
|
|
[ExporterHeader(DisplayName = "替换LU")] |
|
|
|
public string ReplaceLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "替换厂内零件号")] |
|
|
|
[ExporterHeader(DisplayName = "替换厂内零件号")] |
|
|
|
public string ReplaceFactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 结算数据中的过账日期
|
|
|
|
/// </summary>
|
|
|
@ -894,83 +864,71 @@ public class PubSaSeCompareDetailExportYinDuJian : PubSaSeCompareDetailExport, I |
|
|
|
[Display(Name = "生产码")] |
|
|
|
[ExporterHeader(DisplayName = "ASN发货单号")] |
|
|
|
public string PN { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 物料号
|
|
|
|
/// 客户物料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内物料号")] |
|
|
|
public string MaterialNumber { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "客户物料号")] |
|
|
|
[ExporterHeader(DisplayName = "客户物料号")] |
|
|
|
public string CustomerPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 物料描述
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料描述")] |
|
|
|
[ExporterHeader(DisplayName = "物料描述")] |
|
|
|
public string MaterialDes { get; set; } |
|
|
|
|
|
|
|
public string PartCodeDesc { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 原始LU
|
|
|
|
/// 厂内物料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "原始LU")] |
|
|
|
[ExporterHeader(DisplayName = "原始LU")] |
|
|
|
public string PrimitiveLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "厂内物料号")] |
|
|
|
[ExporterHeader(DisplayName = "厂内物料号")] |
|
|
|
public string FactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
///替换LU
|
|
|
|
/// 替换厂内物料号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "替换LU")] |
|
|
|
[ExporterHeader(DisplayName = "替换LU")] |
|
|
|
public string ReplaceLU { get; set; } |
|
|
|
|
|
|
|
[Display(Name = "替换厂内物料号")] |
|
|
|
[ExporterHeader(DisplayName = "替换厂内物料号")] |
|
|
|
public string ReplaceFactoryPartCode { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 结算数据中的过账日期
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "客户下线时间")] |
|
|
|
[ExporterHeader(DisplayName = "客户下线时间")] |
|
|
|
public DateTime CustomerOfflineTime { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 结算数量
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "结算数量")] |
|
|
|
[ExporterHeader(DisplayName = "结算数量")] |
|
|
|
public decimal SAQty { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 发货数量
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "发货数量")] |
|
|
|
[ExporterHeader(DisplayName = "WMS发货数量")] |
|
|
|
public decimal SEQty { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 差异数量
|
|
|
|
/// </summary>
|
|
|
|
[ExporterHeader(DisplayName = "差异数量")] |
|
|
|
public decimal DiffQty => SAQty - SEQty; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 匹配类型
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "匹配类型")] |
|
|
|
[ExporterHeader(DisplayName = "是否完全匹配")] |
|
|
|
public string MateType { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 定价
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "定价")] |
|
|
|
[ExporterHeader(DisplayName = "定价")] |
|
|
|
public decimal FixPrice { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// WMS目标库位
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "WMS目标库位")] |
|
|
|
[ExporterHeader(DisplayName = "WMS目标库位")] |
|
|
|
public string ToLocCode { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// ERP目标库位
|
|
|
|
/// </summary>
|
|
|
|