修复bug
This commit is contained in:
@@ -57,7 +57,12 @@ namespace WMS.Web.Domain.Services.Public
|
||||
for (int ic = 1; ic <= count; ic++)
|
||||
{
|
||||
var codes = stockCodes.Skip((ic-1) * 5).Take(5).ToList();
|
||||
if (codes.Count() <= 0)
|
||||
{
|
||||
return Result<List<ErpInventoryDto>>.ReSuccess(list.Where(w => w.Qty > 0 || w.BeforeQty > 0).ToList());
|
||||
}
|
||||
string code = string.Join(",", codes);
|
||||
|
||||
//foreach (var code in stockCodes)
|
||||
//{
|
||||
List<object> Parameters = new List<object>();
|
||||
|
||||
Reference in New Issue
Block a user