wms费用科目bug修改;nc推送修改;

This commit is contained in:
王奎兴
2026-04-13 15:14:48 +08:00
parent 0a9e127d64
commit 5849be8e8f
7 changed files with 33 additions and 19 deletions
@@ -316,8 +316,8 @@ public class StockInOrderApplicationService {
List<Map<String, Object>> billingParamsList = JSON.parseObject(amountJson, new TypeReference<List<Map<String, Object>>>() {});
com.alibaba.fastjson.JSONObject jsonObject = new com.alibaba.fastjson.JSONObject();
for (Map<String, Object> stringObjectMap : billingParamsList) {
Integer isFee = (Integer) stringObjectMap.get("isFee");
if (isFee==1) {
String isFee = (String) stringObjectMap.get("isFee");
if ("1".equals(isFee)) {
jsonObject.put((String) stringObjectMap.get("fields"), stringObjectMap.get("price"));
} else {
jsonObject.put((String) stringObjectMap.get("fields"), stringObjectMap.get("num"));
@@ -380,8 +380,8 @@ public class StockInOrderApplicationService {
List<Map<String, Object>> billingParamsList = JSON.parseObject(amountJson, new TypeReference<List<Map<String, Object>>>() {});
com.alibaba.fastjson.JSONObject jsonObject = new com.alibaba.fastjson.JSONObject();
for (Map<String, Object> stringObjectMap : billingParamsList) {
Integer isFee = (Integer) stringObjectMap.get("isFee");
if (isFee==1) {
String isFee = (String) stringObjectMap.get("isFee");
if ("1".equals(isFee)) {
jsonObject.put((String) stringObjectMap.get("fields"), stringObjectMap.get("price"));
} else {
jsonObject.put((String) stringObjectMap.get("fields"), stringObjectMap.get("num"));