Browse Source

销售价格单导入修改模板

master
mahao 1 year ago
parent
commit
5c45e560d5
  1. 10
      code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/Prices/PriceListDtoBase.cs

10
code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/Prices/PriceListDtoBase.cs

@ -107,7 +107,7 @@ public class PriceListExportDto
/// 销售价格导入
/// </summary>
[ImportProject(Name = SettleAccountModuleName.PriceList)]
[Importer(HeaderRowIndex = 22)]
[Importer(HeaderRowIndex = 21)]
public class PriceListImportDto
{
/// <summary>
@ -135,25 +135,25 @@ public class PriceListImportDto
/// <summary>
/// 价格
/// </summary>
[ImporterHeader(Name = "Total Price")]
[ImporterHeader(Name = "Total Price (Old)")]
public string TotalPrice { get; set; }
/// <summary>
/// 开始时间
/// </summary>
[ImporterHeader(Name = "Valid From")]
[ImporterHeader(Name = "*Valid From")]
public string ValidFrom { get; set; }
/// <summary>
/// 结束时间
/// </summary>
[ImporterHeader(Name = "Valid To")]
[ImporterHeader(Name = "*Valid To")]
public string ValidTo { get; set; }
/// <summary>
/// 客户编码
/// </summary>
[ImporterHeader(Name = "Plant")]
[ImporterHeader(Name = "*Plant")]
public string Plant { get; set; }
}

Loading…
Cancel
Save