You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
874 B
41 lines
874 B
using System;
|
|
using System.ComponentModel;
|
|
|
|
using ChangKeTec.Wms.Models.Enums;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
|
|
public partial class HY_PICK_FACT_SUMMARY
|
|
{
|
|
|
|
[DisplayName("单据日期")]
|
|
public DateTime BillDate { get; set; }
|
|
|
|
|
|
[DisplayName("目标位置")]
|
|
public string CellCode { get; set; }
|
|
|
|
[DisplayName("目标库位")]
|
|
public string ToLocCode { get; set; }
|
|
|
|
[DisplayName("物料号")]
|
|
public string PartCode { get; set; }
|
|
|
|
|
|
[DisplayName("物料描述")]
|
|
public string PartDesc => WmsCache.GetPartDesc(PartCode);
|
|
|
|
|
|
// [DisplayName("批次")]
|
|
// public string Batch { get; set; }
|
|
[DisplayName("合计数量")]
|
|
public decimal Qty { get; set; }
|
|
|
|
|
|
|
|
[DisplayName("货物总价")]
|
|
public decimal PartSumPrice { get; set; }
|
|
|
|
}
|
|
}
|
|
|