|
@@ -182,6 +182,12 @@ public class BasePersonnelLabourCapitalController {
|
|
data.setIdType(datatMap.get(0) == null?null:datatMap.get(0).toString());
|
|
data.setIdType(datatMap.get(0) == null?null:datatMap.get(0).toString());
|
|
data.setAmountTo(datatMap.get(4) == null?null:datatMap.get(4).toString());
|
|
data.setAmountTo(datatMap.get(4) == null?null:datatMap.get(4).toString());
|
|
data.setJobNumber(datatMap.get(2) == null?null:datatMap.get(2).toString());
|
|
data.setJobNumber(datatMap.get(2) == null?null:datatMap.get(2).toString());
|
|
|
|
+ for (Integer integer : datatMap.keySet()) {
|
|
|
|
+ Object o = datatMap.get(integer);
|
|
|
|
+ if(o != null && o.toString().startsWith("(") && o.toString().endsWith(")")){
|
|
|
|
+ datatMap.put(integer, "-" + o.toString().replace("(", "").replace(")", ""));
|
|
|
|
+ }
|
|
|
|
+ }
|
|
String jsonString = JsonUtil.toJsonString(datatMap);
|
|
String jsonString = JsonUtil.toJsonString(datatMap);
|
|
jsonString = jsonString.replaceAll("- 0", "-");
|
|
jsonString = jsonString.replaceAll("- 0", "-");
|
|
data.setExtendJson(jsonString);
|
|
data.setExtendJson(jsonString);
|