|
|
@ -24,7 +24,7 @@ namespace Win.Sfs.SettleAccount.Entities.BT_Car |
|
|
|
public BT_Car_Platform(Guid Id, string materialVoucherNo, string externalKanbanNumber, |
|
|
|
string kanbanNumber, string year, string factory, DateTime acceptanceDate, |
|
|
|
string period, string version, string kanBan, string supplier, string storageLocation, string storageLocationDesc, |
|
|
|
string materialCode) : base(Id) |
|
|
|
string materialCode, string acceptanceNo, decimal qty, decimal price, decimal amt) : base(Id) |
|
|
|
{ |
|
|
|
MaterialVoucherNo = materialVoucherNo; |
|
|
|
KanbanNumber = kanbanNumber; |
|
|
@ -39,6 +39,10 @@ namespace Win.Sfs.SettleAccount.Entities.BT_Car |
|
|
|
Supplier = supplier; |
|
|
|
StorageLocation = storageLocation; |
|
|
|
StorageLocationDesc = storageLocationDesc; |
|
|
|
AcceptanceNo = acceptanceNo; |
|
|
|
Qty = qty; |
|
|
|
Price = price; |
|
|
|
Amt = amt; |
|
|
|
} |
|
|
|
|
|
|
|
//验收单号 外部单号 物料凭证号 物料凭证日期 物料凭证记账日期 看板编号 外部看板编号 物料号 物料描述 数量 单价 金额
|
|
|
@ -67,7 +71,11 @@ namespace Win.Sfs.SettleAccount.Entities.BT_Car |
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "物料凭证号")] |
|
|
|
public string MaterialVoucherNo { get; set; } |
|
|
|
|
|
|
|
///// <summary>
|
|
|
|
/////验收单号
|
|
|
|
///// </summary>
|
|
|
|
//[Display(Name = "验收单号")]
|
|
|
|
//public string AcceptanceNo { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
///会计年度
|
|
|
|
/// </summary>
|
|
|
@ -120,6 +128,32 @@ namespace Win.Sfs.SettleAccount.Entities.BT_Car |
|
|
|
[Display(Name = "存储地点描述")] |
|
|
|
public string StorageLocationDesc { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///验收单号
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "验收单号")] |
|
|
|
public string AcceptanceNo { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 数量
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "数量")] |
|
|
|
public decimal Qty { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 单价
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "单价")] |
|
|
|
public decimal Price { set; get; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 金额
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "金额")] |
|
|
|
public decimal Amt { set; get; } |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 备注
|
|
|
|
/// </summary>
|
|
|
|