|
|
|
@ -113,4 +113,18 @@ public class CountController {
|
|
|
|
|
return ResultBuilder.withPayload(jsonObject).build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PostMapping("/VATSurchargeCount")
|
|
|
|
|
@ApiOperation(value = "增值税附加税计算器", notes = "增值税计算器")
|
|
|
|
|
@ApiImplicitParams({
|
|
|
|
|
@ApiImplicitParam(name = "money", value = "开票金额", dataType = "string", paramType = "query"),
|
|
|
|
|
})
|
|
|
|
|
public Result VATSurchargeCount(String money) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
JSONObject jsonObject = countService.VATSurchargeCount(money);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ResultBuilder.withPayload(jsonObject).build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|