升级完税证明
This commit is contained in:
parent
3f723d7750
commit
420d0a1fff
|
|
@ -157,7 +157,7 @@ public class SzyhApiConstant {
|
|||
/**
|
||||
* 完税证明反馈
|
||||
*/
|
||||
public static final String GET_WITHHELD_VOUCHER_FEEDBACK = "gateway/iit/service/getWithheldVoucher";
|
||||
public static final String GET_WITHHELD_VOUCHER_FEEDBACK = "gateway/iit/service/getWithheldVoucherFeedback";
|
||||
|
||||
/**
|
||||
* 查询缴款状态
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@ public class TaxPaymentClient extends TaxBaseClient {
|
|||
|
||||
/**
|
||||
* 开具完税证明
|
||||
*
|
||||
* @param requestParam
|
||||
* @return
|
||||
*/
|
||||
|
|
@ -41,9 +42,10 @@ public class TaxPaymentClient extends TaxBaseClient {
|
|||
String url = apiConfig.getHost() + SzyhApiConstant.GET_WITHHELD_VOUCHER;
|
||||
String requestId = request(url, requestParam);
|
||||
|
||||
url = apiConfig.getHost() + SzyhApiConstant.GET_WITHHELD_VOUCHER_FEEDBACK + "?requestId=" + requestId;
|
||||
url = apiConfig.getHost() + SzyhApiConstant.GET_WITHHELD_VOUCHER_FEEDBACK;
|
||||
Map<String, String> responseParam = new HashMap<>(1);
|
||||
return postResponse(url, responseParam, WithheldVoucherResponse.class);
|
||||
responseParam.put("requestId", requestId);
|
||||
return response(url, responseParam, WithheldVoucherResponse.class);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue