json解析修改;
This commit is contained in:
+5
-1
@@ -724,7 +724,11 @@ public class BillingStatementApplicationService {
|
||||
//附加费用开票策略
|
||||
String fjfykpcl = (String) contentMap.get("fjfykpcl");
|
||||
//合并开票
|
||||
Integer hbcp = (Integer) contentMap.get("hbcp");
|
||||
Integer hbcp = null;
|
||||
Object val = contentMap.get("hbcp");
|
||||
if(val != null){
|
||||
hbcp = val instanceof Integer ? (Integer) val : Integer.valueOf(((String)val).trim());
|
||||
}
|
||||
Boolean isMerge = false;
|
||||
if (hbcp == 1) {
|
||||
//判断是否合并开票
|
||||
|
||||
Reference in New Issue
Block a user