diff --git a/src/WMS.Web.Api/wwwroot/WMS.Web.Core.xml b/src/WMS.Web.Api/wwwroot/WMS.Web.Core.xml
index fdf94ddb..d2c77baf 100644
--- a/src/WMS.Web.Api/wwwroot/WMS.Web.Core.xml
+++ b/src/WMS.Web.Api/wwwroot/WMS.Web.Core.xml
@@ -1291,26 +1291,11 @@
仓位ID
-
-
- 盘点前数量(wms系统数量)
-
-
盘点实际数量(实际仓库数量)
-
-
- 盘盈数量
-
-
-
-
- 盘亏数量
-
-
备注
diff --git a/src/WMS.Web.Core/Dto/Erp/TakeStock/ErpTakeStockSaveDto.cs b/src/WMS.Web.Core/Dto/Erp/TakeStock/ErpTakeStockSaveDto.cs
index 0019ee79..9bfef6fd 100644
--- a/src/WMS.Web.Core/Dto/Erp/TakeStock/ErpTakeStockSaveDto.cs
+++ b/src/WMS.Web.Core/Dto/Erp/TakeStock/ErpTakeStockSaveDto.cs
@@ -109,26 +109,26 @@ namespace WMS.Web.Core.Dto.Erp.TakeStock
///
[JsonProperty("FStockLocId")]
public ErpSubStockDto SubStockId { get; set; }
- ///
- /// 盘点前数量(wms系统数量)
- ///
- [JsonProperty("FAcctQty")]
- public decimal BeforeQty { get; set; }
+ /////
+ ///// 盘点前数量(wms系统数量)
+ /////
+ //[JsonProperty("FAcctQty")]
+ //public decimal BeforeQty { get; set; }
///
/// 盘点实际数量(实际仓库数量)
///
[JsonProperty("FCountQty")]
public decimal AfterQty { get; set; }
- ///
- /// 盘盈数量
- ///
- [JsonProperty("FGainQty")]
- public decimal FinalQty { get; set; }
- ///
- /// 盘亏数量
- ///
- [JsonProperty("FLossQty")]
- public decimal LossQty { get; set; }
+ /////
+ ///// 盘盈数量
+ /////
+ //[JsonProperty("FGainQty")]
+ //public decimal FinalQty { get; set; }
+ /////
+ ///// 盘亏数量
+ /////
+ //[JsonProperty("FLossQty")]
+ //public decimal LossQty { get; set; }
///
/// 备注
///
diff --git a/src/WMS.Web.Domain/Services/TakeStockService.cs b/src/WMS.Web.Domain/Services/TakeStockService.cs
index 9324043f..11812294 100644
--- a/src/WMS.Web.Domain/Services/TakeStockService.cs
+++ b/src/WMS.Web.Domain/Services/TakeStockService.cs
@@ -218,10 +218,10 @@ namespace WMS.Web.Domain.Services
UnitId = new ErpNumberDto(unitNumber), //物料带出来
StockId = new ErpNumberDto(d.StockCode),
SubStockId = new ErpSubStockDto(d.StockCode, d.Erp_SubStockCode),
- BeforeQty = d.BeforeQty,
+ //BeforeQty = d.BeforeQty,
AfterQty = d.AfterQty,
- FinalQty = entity.ResultType == TakeStockType.Profit ? d.FinalQty : 0,
- LossQty = entity.ResultType == TakeStockType.Loss ? d.FinalQty : 0,
+ //FinalQty = entity.ResultType == TakeStockType.Profit ? d.FinalQty : 0,
+ //LossQty = entity.ResultType == TakeStockType.Loss ? d.FinalQty : 0,
Fnote = d.Remark
});
}