添加报警窗口
出库流程调试、优化
This commit is contained in:
@ -7,15 +7,9 @@ namespace WCS.Model.ApiModel.Stocktaking
|
||||
public class GetStockTakingOrdersRequest : PageQueryRequestBase
|
||||
{
|
||||
public string StocktakingOrderNumber { get; set; }
|
||||
public string StocktakingOrderSource { get; set; }
|
||||
public string StocktakingOrderType { get; set; }
|
||||
|
||||
public StocktakingOrderStatus? StocktakingOrderStatus { get; set; }
|
||||
}
|
||||
|
||||
public enum StocktakingOrderStatus
|
||||
{
|
||||
未盘点 = 0,
|
||||
部分盘点 = 1,
|
||||
盘点完成 = 2,
|
||||
已提交 = 3
|
||||
}
|
||||
}
|
||||
|
50
WCS.Model/ApiModel/Stocktaking/StockTakingOrderModel.cs
Normal file
50
WCS.Model/ApiModel/Stocktaking/StockTakingOrderModel.cs
Normal file
@ -0,0 +1,50 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.Stocktaking
|
||||
{
|
||||
public class StockTakingOrderModel : INotifyPropertyChanged
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string StocktakingOrderNumber { get; set; }
|
||||
|
||||
public StocktakingOrderStatus StocktakingOrderStatus { get; set; } = StocktakingOrderStatus.未盘点;
|
||||
|
||||
public string? StocktakingOrderSource { get; set; }
|
||||
|
||||
public DateTime CreateTime { get; set; } = DateTime.Now;
|
||||
|
||||
public string CreateUser { get; set; }
|
||||
|
||||
public int RowNumber { get; set; }
|
||||
|
||||
public bool IsSelected
|
||||
{
|
||||
get { return isSelected; }
|
||||
set
|
||||
{
|
||||
isSelected = value;
|
||||
OnPropertyChanged(nameof(IsSelected));
|
||||
}
|
||||
}
|
||||
public bool isSelected;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
protected virtual void OnPropertyChanged(string propertyName)
|
||||
{
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
||||
}
|
||||
}
|
||||
|
||||
public enum StocktakingOrderStatus
|
||||
{
|
||||
未盘点 = 0,
|
||||
部分盘点 = 1,
|
||||
盘点完成 = 2,
|
||||
已提交 = 3
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user