|
@@ -227,6 +227,7 @@ public class GcNoticeandfileSchedul implements Job {
|
|
|
int i1 = bidSectionCodes.indexOf(",");
|
|
int i1 = bidSectionCodes.indexOf(",");
|
|
|
int i2 = bidSectionCodes.indexOf(";");
|
|
int i2 = bidSectionCodes.indexOf(";");
|
|
|
int i3 = bidSectionCodes.indexOf("<br>");
|
|
int i3 = bidSectionCodes.indexOf("<br>");
|
|
|
|
|
+ int i4 = bidSectionCodes.indexOf("ltbrgt");
|
|
|
String splitBidSectionCode = null;
|
|
String splitBidSectionCode = null;
|
|
|
String[] split = null;
|
|
String[] split = null;
|
|
|
boolean flag = false;
|
|
boolean flag = false;
|
|
@@ -245,6 +246,11 @@ public class GcNoticeandfileSchedul implements Job {
|
|
|
split = bidSectionCodes.split("<br>");
|
|
split = bidSectionCodes.split("<br>");
|
|
|
flag = true;
|
|
flag = true;
|
|
|
}
|
|
}
|
|
|
|
|
+ if(i4 > 0){
|
|
|
|
|
+ splitBidSectionCode = bidSectionCodes.split("ltbrgt")[0];
|
|
|
|
|
+ split = bidSectionCodes.split("ltbrgt");
|
|
|
|
|
+ flag = true;
|
|
|
|
|
+ }
|
|
|
if(!flag){
|
|
if(!flag){
|
|
|
splitBidSectionCode = bidSectionCodes;
|
|
splitBidSectionCode = bidSectionCodes;
|
|
|
split = bidSectionCodes.split(",");
|
|
split = bidSectionCodes.split(",");
|
|
@@ -377,6 +383,7 @@ public class GcNoticeandfileSchedul implements Job {
|
|
|
try {
|
|
try {
|
|
|
bidSectionCodes = bidSectionCodes.replaceAll(",",";");
|
|
bidSectionCodes = bidSectionCodes.replaceAll(",",";");
|
|
|
bidSectionCodes = bidSectionCodes.replaceAll("<br",";");
|
|
bidSectionCodes = bidSectionCodes.replaceAll("<br",";");
|
|
|
|
|
+ bidSectionCodes = bidSectionCodes.replaceAll("ltbrgt",";");
|
|
|
}catch (Exception e){
|
|
}catch (Exception e){
|
|
|
e.printStackTrace();
|
|
e.printStackTrace();
|
|
|
}
|
|
}
|