This commit is contained in:
parent
2196d4ed54
commit
b3db554a76
|
@ -330,6 +330,7 @@ public class SyncEpicMesUtil {
|
|||
// Map<String, Object> vsncodeList = (Map<String, Object>) dao.executeQuery(vsncode, new MapProcessor());
|
||||
ArrayList<Map<String, Object>> vsncodeList = (ArrayList<Map<String, Object>>)dao.executeQuery(vsncode, new MapListProcessor());
|
||||
if (vsncodeList.isEmpty()) {
|
||||
jsonArray.add("");
|
||||
continue;
|
||||
}
|
||||
for (Map<String,Object> v: vsncodeList) {
|
||||
|
@ -338,7 +339,7 @@ public class SyncEpicMesUtil {
|
|||
// String detailItem = (null!=materialtype ?materialtype:"") + hvo.getDbilldate().toStdString().substring(0, 3) + hvo.getDbilldate().toStdString().substring(5, 6) + code;
|
||||
// jsonArray.add(detailItem);
|
||||
}
|
||||
obj.put("releaseNo", jsonArray);
|
||||
obj.put("releaseNo", jsonArray.toString());
|
||||
|
||||
return obj;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue