添加报警窗口

出库流程调试、优化
This commit is contained in:
hehaibing-1996
2024-05-05 16:57:20 +08:00
parent d283924ae1
commit 311a695498
44 changed files with 2272 additions and 307 deletions

View File

@ -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
}
}

View 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
}
}