|
|
@ -30,6 +30,11 @@ namespace Win.Sfs.SettleAccount.Entities.Errors |
|
|
|
/// </summary>
|
|
|
|
public string WmsBillNum { set; get; } |
|
|
|
|
|
|
|
public string MaterialDesc { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
public string CustomerMaterialCode { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
public class ErrorBillImportDto |
|
|
@ -37,18 +42,25 @@ namespace Win.Sfs.SettleAccount.Entities.Errors |
|
|
|
/// <summary>
|
|
|
|
///错误单据号
|
|
|
|
/// </summary>
|
|
|
|
public string BillNum { get; protected set; } |
|
|
|
|
|
|
|
[ImporterHeader(Name = "底盘|看板号|订单号")] |
|
|
|
public string BillNum { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 物料号
|
|
|
|
/// </summary>
|
|
|
|
[ImporterHeader(Name = "ERP物料号")] |
|
|
|
public string MaterialCode { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 发货单号
|
|
|
|
/// </summary>
|
|
|
|
[ImporterHeader(Name = "交货单号")] |
|
|
|
public string WmsBillNum { set; get; } |
|
|
|
|
|
|
|
[ImporterHeader(Name = "物料描述")] |
|
|
|
public string MaterialDesc { set; get; } |
|
|
|
|
|
|
|
[ImporterHeader(Name = "客户物料号")] |
|
|
|
public string CustomerMaterialCode { set; get; } |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
public class ErrorBillExportDto |
|
|
@ -62,7 +74,7 @@ namespace Win.Sfs.SettleAccount.Entities.Errors |
|
|
|
/// <summary>
|
|
|
|
/// 物料号
|
|
|
|
/// </summary>
|
|
|
|
[ExporterHeader(DisplayName = "物料号", IsBold = true)] |
|
|
|
[ExporterHeader(DisplayName = "ERP物料号", IsBold = true)] |
|
|
|
public string MaterialCode { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
@ -71,6 +83,13 @@ namespace Win.Sfs.SettleAccount.Entities.Errors |
|
|
|
[ExporterHeader(DisplayName = "交货单号", IsBold = true)] |
|
|
|
public string WmsBillNum { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
[ExporterHeader(DisplayName = "物料描述", IsBold = true)] |
|
|
|
public string MaterialDesc { set; get; } |
|
|
|
|
|
|
|
[ExporterHeader(DisplayName = "客户物料号", IsBold = true)] |
|
|
|
public string CustomerMaterialCode { set; get; } |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -91,6 +110,11 @@ namespace Win.Sfs.SettleAccount.Entities.Errors |
|
|
|
/// </summary>
|
|
|
|
public string WmsBillNum { set; get; } |
|
|
|
public Guid BranchId { get; set; } |
|
|
|
|
|
|
|
public string MaterialDesc { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
public string CustomerMaterialCode { set; get; } |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|