|
@ -846,7 +846,7 @@ namespace WY.NewJit.PrintTable |
|
|
if (isBreakNum) |
|
|
if (isBreakNum) |
|
|
{ |
|
|
{ |
|
|
var breakNumLst = billLst.Where(itm => itm.BillStatus == BillStatusEnum.BreakNum).OrderBy(itm => itm.HostSN2).Select(itm => itm.HostSN2.ToString() + ", ").ToList(); |
|
|
var breakNumLst = billLst.Where(itm => itm.BillStatus == BillStatusEnum.BreakNum).OrderBy(itm => itm.HostSN2).Select(itm => itm.HostSN2.ToString() + ", ").ToList(); |
|
|
string breakNumStr = string.Concat(breakNumLst); |
|
|
string breakNumStr = string.Join(" ", breakNumLst); |
|
|
retLst.Add($"存在断号:{breakNumStr}"); |
|
|
retLst.Add($"存在断号:{breakNumStr}"); |
|
|
return new ListResultDto<string>(retLst); |
|
|
return new ListResultDto<string>(retLst); |
|
|
} |
|
|
} |
|
@ -855,7 +855,7 @@ namespace WY.NewJit.PrintTable |
|
|
if (containNotMatch) |
|
|
if (containNotMatch) |
|
|
{ |
|
|
{ |
|
|
var lst = billLst.Where(itm => itm.BillStatus == BillStatusEnum.NotMatch).OrderBy(itm => itm.HostSN2).Select(itm => itm.HostSN2.ToString() + ", ").ToList(); |
|
|
var lst = billLst.Where(itm => itm.BillStatus == BillStatusEnum.NotMatch).OrderBy(itm => itm.HostSN2).Select(itm => itm.HostSN2.ToString() + ", ").ToList(); |
|
|
string str = string.Concat(lst); |
|
|
string str = string.Join(" ", lst); |
|
|
retLst.Add($"存在未知总成:{str}"); |
|
|
retLst.Add($"存在未知总成:{str}"); |
|
|
return new ListResultDto<string>(retLst); |
|
|
return new ListResultDto<string>(retLst); |
|
|
} |
|
|
} |
|
|