1.移植盟讯的盘点下架功能

This commit is contained in:
hehaibing-1996
2024-05-29 18:02:46 +08:00
parent d1914bb2d1
commit aecc1dc4db
19 changed files with 821 additions and 18 deletions

View File

@ -40,5 +40,6 @@ namespace WCS.Model.ApiModel.InOutRecord
= 1,
= 2,
= 3,
= 4,
}
}

View File

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

View File

@ -10,5 +10,7 @@ namespace WCS.Model
public class GetOutOrderListByStatusRequest : PageQueryRequestBase
{
public List<OutOrderExeStatus> OrderExeStatus { get; set; }
public bool? IsMXPD { get; set; }
}
}

View File

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

View File

@ -56,5 +56,6 @@ namespace WCS.Model.WebSocketModel
= 50,
= 51,
= 52,
= 53,
}
}