33 changed files with 402 additions and 109 deletions
@ -0,0 +1,8 @@ |
|||||
|
{ |
||||
|
"profiles": { |
||||
|
"WSL": { |
||||
|
"commandName": "WSL2", |
||||
|
"distributionName": "" |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,28 @@ |
|||||
|
|
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
namespace Win_in.Sfs.Shared.Domain.Shared; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 盘点模式
|
||||
|
/// </summary>
|
||||
|
public enum EnumInventoryMode |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 未定义
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "未定义")] |
||||
|
None = 0, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 箱码
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "箱码")] |
||||
|
ByPackingCode = 1, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 无箱码
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "无箱码")] |
||||
|
ByErpItemCode = 2, |
||||
|
|
||||
|
} |
@ -0,0 +1,58 @@ |
|||||
|
using System; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
using System.ComponentModel.DataAnnotations.Schema; |
||||
|
using Win_in.Sfs.Shared.Domain; |
||||
|
|
||||
|
namespace Win_in.Sfs.Wms.Store.Domain; |
||||
|
|
||||
|
public class CountNoteDependentDetail : SfsStoreDetailWithLotPackingLocationStatusEntityBase, IHasCountResult, IHasInventoryQty |
||||
|
{ |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 盘点标签
|
||||
|
/// </summary>
|
||||
|
public string CountLabel { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 库存数量
|
||||
|
/// </summary>
|
||||
|
public decimal InventoryQty { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 计量单位
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "计量单位")] |
||||
|
public string Uom { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 库存库位
|
||||
|
/// </summary>
|
||||
|
public string InventoryLocationCode { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 盘点数量(每次扫得数量)
|
||||
|
/// </summary>
|
||||
|
public decimal CountQty { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 盘点时间
|
||||
|
/// </summary>
|
||||
|
public DateTime? CountTime { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 盘点操作员
|
||||
|
/// </summary>
|
||||
|
public string CountOperator { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 盘点描述
|
||||
|
/// </summary>
|
||||
|
public string CountDescription { get; set; } |
||||
|
/// <summary>
|
||||
|
/// 标包数量
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "标包数量")] |
||||
|
[Column(TypeName = "decimal(18,6)")] |
||||
|
public decimal StdPackQty { get; set; } |
||||
|
|
||||
|
} |
Loading…
Reference in new issue