md
This commit is contained in:
parent
801a510c41
commit
4593b205ba
@ -185,12 +185,12 @@ public class EmisTmsScanRecordServiceImpl extends EmisBaseService implements IEm
|
||||
}
|
||||
|
||||
billCodeInStr=WaybillHelper.formatQueryValue(billCodeInStr);
|
||||
String[] billCodeArrTmp = billCodeInStr.split(",");
|
||||
Set<String> billCodeSet = new HashSet<String>();
|
||||
for(int i = 0 ; i < billCodeArrTmp.length ; i++){
|
||||
billCodeSet.add(billCodeArrTmp[i]);
|
||||
}
|
||||
String billCodeArr[] = (String[]) billCodeSet.toArray();
|
||||
String[] billCodeArr = billCodeInStr.split(",");
|
||||
// Set<String> billCodeSet = new HashSet<String>();
|
||||
// for(int i = 0 ; i < billCodeArrTmp.length ; i++){
|
||||
// billCodeSet.add(billCodeArrTmp[i]);
|
||||
// }
|
||||
// String billCodeArr[] = (String[]) billCodeSet.toArray();
|
||||
|
||||
|
||||
// 合包和拆包需单独处理
|
||||
@ -437,12 +437,12 @@ public class EmisTmsScanRecordServiceImpl extends EmisBaseService implements IEm
|
||||
billCodeInStr=WaybillHelper.formatQueryValue(billCodeInStr);
|
||||
|
||||
// 单号去重
|
||||
String[] billCodeArrTmp = billCodeInStr.split(",");
|
||||
Set<String> billCodeSet = new HashSet();
|
||||
for(int i = 0 ; i < billCodeArrTmp.length ; i++){
|
||||
billCodeSet.add(billCodeArrTmp[i]);
|
||||
}
|
||||
String billCodeArr[] = (String[]) billCodeSet.toArray();
|
||||
String[] billCodeArr = billCodeInStr.split(",");
|
||||
// Set<String> billCodeSet = new HashSet();
|
||||
// for(int i = 0 ; i < billCodeArrTmp.length ; i++){
|
||||
// billCodeSet.add(billCodeArrTmp[i]);
|
||||
// }
|
||||
// String billCodeArr[] = (String[]) billCodeSet.toArray();
|
||||
|
||||
Date scanDate = null;
|
||||
if(scanDateStr.contains("Z")){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user