采购订单模糊查询接口

This commit is contained in:
tongfei
2023-11-03 10:28:13 +08:00
parent eac6c6b269
commit 5dd3a8125b
9 changed files with 49 additions and 17 deletions

View File

@@ -42,19 +42,23 @@ namespace WMS.Web.Domain.Entitys
/// </summary>
public string StockCode { get; set; }
/// <summary>
/// 出厂价
/// 出厂价(对应金蝶数据)
/// </summary>
public decimal FactoryPrice { get; set; }
/// <summary>
/// 应入数量
/// 应入数量(对应金蝶的订单数量-对应物料)
/// </summary>
public decimal AccruedQty { get; set; }
/// <summary>
/// 收货数量
/// 已交数量(对应金蝶的已交数量-对应物料),目前只有采购订单有
/// </summary>
public decimal DeliveredQty{ get; set; }
/// <summary>
/// 收货数量(仓库现场收货动作的数量)
/// </summary>
public decimal ReceiveQty { get; set; }
/// <summary>
/// 实际入库数量
/// 实际入库数量(仓库人员现场入库的数量)上架动作
/// </summary>
public decimal RealityQty { get; set; }
/// <summary>