1.移植盟讯的盘点下架功能
This commit is contained in:
@ -40,5 +40,6 @@ namespace WCS.Model.ApiModel.InOutRecord
|
||||
出库 = 1,
|
||||
丢失 = 2,
|
||||
盘点 = 3,
|
||||
盘点下架 = 4,
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.MXBackgroundThread
|
||||
{
|
||||
public class ElectronicSiloPushRequest
|
||||
{
|
||||
public string materialCode { get; set; }
|
||||
public string warehouseCode { get; set; }
|
||||
}
|
||||
|
||||
public class ElectronicSiloPushDto
|
||||
{
|
||||
public string materialBar { get; set; }
|
||||
}
|
||||
}
|
@ -10,5 +10,7 @@ namespace WCS.Model
|
||||
public class GetOutOrderListByStatusRequest : PageQueryRequestBase
|
||||
{
|
||||
public List<OutOrderExeStatus> OrderExeStatus { get; set; }
|
||||
|
||||
public bool? IsMXPD { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -17,6 +17,11 @@ namespace WCS.Model
|
||||
/// </summary>
|
||||
public string OrderType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否是盟讯公司盘点生成的出库单
|
||||
/// </summary>
|
||||
public bool IsMXPD { get; set; } = false;
|
||||
|
||||
public List<string> SnList { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -56,5 +56,6 @@ namespace WCS.Model.WebSocketModel
|
||||
恢复正常 = 50,
|
||||
通知刷新出库 = 51,
|
||||
通知刷新盘点 = 52,
|
||||
通知刷新盟讯盘点 = 53,
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user