即时库存调整

This commit is contained in:
18942506660
2024-01-02 11:26:20 +08:00
parent 7a1d4bb52d
commit 40f5513d75
8 changed files with 118 additions and 23 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Erp
{
public class ErpInventoryDto
{
/// <summary>
/// 物料ID
/// </summary>
public int MaterialId { get; set; }
/// <summary>
/// 组织编码
/// </summary>
public string OrgCode { get; set; }
/// <summary>
/// 仓库
/// </summary>
public string StockCode { get; set; }
/// <summary>
/// 数量
/// </summary>
public decimal Qty { get; set; }
}
}

View File

@@ -114,11 +114,11 @@ namespace WMS.Web.Core.Dto.Erp.TakeStock
///// </summary>
//[JsonProperty("FAcctQty")]
//public decimal BeforeQty { get; set; }
///// <summary>
///// 盘点实际数量(实际仓库数量)
///// </summary>
//[JsonProperty("FCountQty")]
//public decimal AfterQty { get; set; }
/// <summary>
/// 盘点实际数量(实际仓库数量)
/// </summary>
[JsonProperty("FCountQty")]
public decimal AfterQty { get; set; }
/// <summary>
/// 盘盈数量
/// </summary>