feature:放开注释申请红字确认单转小写

jianshui-ui
路明慧 8 months ago
parent f2a49333f6
commit 123f9363d7
  1. 10
      jianshui-invoice/src/main/java/com/jianshui/invoice/service/impl/api/ElephantInvoiceApiV6ByInspurServiceImpl.java

@ -1733,11 +1733,11 @@ public class ElephantInvoiceApiV6ByInspurServiceImpl implements IInvoiceApiServi
json = JSONUtil.parseObj(data);
}
// 键值转小写
// JSONObject lowerCaseJson = new JSONObject();
// json.forEach((key, value) -> {
// String lowerCaseKey = key.toLowerCase();
// lowerCaseJson.put(lowerCaseKey, value);
// });
JSONObject lowerCaseJson = new JSONObject();
json.forEach((key, value) -> {
String lowerCaseKey = key.toLowerCase();
lowerCaseJson.put(lowerCaseKey, value);
});
return new HXResponse(code, "", json, true);
} else {
return new HXResponse(ztdm, ztxx, "", true);

Loading…
Cancel
Save