|
|
@ -66,7 +66,7 @@ namespace SettleAccount.Job.Services |
|
|
|
} |
|
|
|
if (!string.IsNullOrEmpty(kanban)) |
|
|
|
{ |
|
|
|
var _groupList = kanban.Split(new char[] { ',' }).Distinct().ToList(); |
|
|
|
var _groupList = kanban.Split(new char[] { '\n' }).Distinct().ToList(); |
|
|
|
if (_groupList.Count() > 0) |
|
|
|
{ |
|
|
|
_ls = _ls.Where(p => _groupList.Contains(p.订货看板编号)).ToList(); |
|
|
@ -76,7 +76,7 @@ namespace SettleAccount.Job.Services |
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(warehouseDesc)) |
|
|
|
{ |
|
|
|
var _groupList = warehouseDesc.Split(new char[] { ',' }).Distinct().ToList(); |
|
|
|
var _groupList = warehouseDesc.Split(new char[] { '\n' }).Distinct().ToList(); |
|
|
|
if (_groupList.Count() > 0) |
|
|
|
{ |
|
|
|
_ls = _ls.Where(p => _groupList.Contains(p.收货仓库描述)).ToList(); |
|
|
@ -85,7 +85,7 @@ namespace SettleAccount.Job.Services |
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(acceptNo)) |
|
|
|
{ |
|
|
|
var _groupList = acceptNo.Split(new char[] { ',' }).Distinct().ToList(); |
|
|
|
var _groupList = acceptNo.Split(new char[] { '\n' }).Distinct().ToList(); |
|
|
|
if (_groupList.Count() > 0) |
|
|
|
{ |
|
|
|
_ls = _ls.Where(p => _groupList.Contains(p.结算验收单号)).ToList(); |
|
|
|