|
|
|
@ -1014,6 +1014,15 @@ public class ElephantInvoiceApiV6ServiceImpl implements IInvoiceApiService { |
|
|
|
|
|
|
|
|
|
String fpdm = decryptResult.getString("lzfppzdm"); |
|
|
|
|
decryptResult.put("lzfppzdm", InvoiceType.getEleCode(fpdm)); |
|
|
|
|
// TODO kk:2024/1/8 红字申请表申请用的是01 02
|
|
|
|
|
String lzfpdm = decryptResult.get("lzfppzdm") != null ? decryptResult.get("lzfppzdm").toString():""; |
|
|
|
|
if("001".equals(lzfpdm)){ |
|
|
|
|
lzfpdm = "01"; |
|
|
|
|
}else if("002".equals(lzfpdm)){ |
|
|
|
|
lzfpdm = "02"; |
|
|
|
|
} |
|
|
|
|
decryptResult.put("lzfppzdm", lzfpdm); |
|
|
|
|
|
|
|
|
|
decryptResult = JsonKeyCase.JsonKeyCase(decryptResult); |
|
|
|
|
log.info("调用大象V6接口报文key转大写后的报文为{}",decryptResult); |
|
|
|
|
DxhyInterfaceResponse dxhyInterfaceResponse = null; |
|
|
|
|