本文解答了关于《取得国外运输发票可否抵扣进项税》相关内容,同时关于1、取得国外运输发票可否抵扣进项税额,2、取得国外运输发票可否抵扣进项税,3、境外运输发票,4、国外运输服务增值税税率,5、国外运送旅客增值税率,的相关问答本篇文章福途教育网小编也整理了进来,希望对您有帮助。
取得国外运输发票可否抵扣进项税
* @param orderId 运单号
* @param amount 申报金额
* @return
*/
@RequestMapping(value = "/getIncomeTaxRateForForeignByOrderId")
public Response getIncomeTaxRateForForeignByOrderId(@RequestParam(name="orderId")String orderId,@RequestParam(name="amount") BigDecimal amount) {
if (org.apache.commons.lang3.StringUtils.isEmpty(orderId)) {
throw new BSTException("orderId is null");
}
if (null == amount) {
throw new BSTException("amount is null");
}
Response results = waybillService.getIncomeTaxRateForForeignByOrderId(orderId,amount);
return results;
}
/**
* 根据订单号获取金额
* @param orderId 订单号
* @return
*/
@RequestMapping(value = "/getOrderVoucherAmountByOrderId")
public Response getOrderVoucherAmountByOrder
总结:以上是编辑:【雪莲花】整理及AI智能原创关于《取得国外运输发票可否抵扣进项税
》优质内容解答希望能帮助到您。