删除log

This commit is contained in:
Anlin
2025-07-14 15:06:57 +08:00
parent 8d70173f4b
commit 283abf45cb
2 changed files with 1 additions and 2 deletions

View File

@ -207,7 +207,6 @@ public class BusMerchantProductServiceImpl extends BaseService implements IBusMe
SysSyd sysSyd = sydMapper.selectSysSydById(vo.getSydId()); SysSyd sysSyd = sydMapper.selectSysSydById(vo.getSydId());
log.info("sydId:"+sysSyd.getId()+"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); log.info("sydId:"+sysSyd.getId()+"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
SysThirdPlatform sysThirdPlatform = thirdPlatformMapper.selectThirdAppInfo(sysSyd.getId()); SysThirdPlatform sysThirdPlatform = thirdPlatformMapper.selectThirdAppInfo(sysSyd.getId());
log.info("sysThirdPlatform:"+sysThirdPlatform.getPlatformName());
if (ObjectUtils.isNotEmpty(sysThirdPlatform)&&sysThirdPlatform.getPlatformName().equals("薪遇见")){ if (ObjectUtils.isNotEmpty(sysThirdPlatform)&&sysThirdPlatform.getPlatformName().equals("薪遇见")){
BusMerchant busMerchant = busMerchantMapper.selectById(mer_id); BusMerchant busMerchant = busMerchantMapper.selectById(mer_id);
xyjService.addMerchant(busMerchant,vo.getSydId()); xyjService.addMerchant(busMerchant,vo.getSydId());

View File

@ -45,7 +45,7 @@ public class TaxCalculatorUtils {
validateParams(cumulativeIncome, taxMonth, cumulativePrepaidTax); validateParams(cumulativeIncome, taxMonth, cumulativePrepaidTax);
// 2. 计算累计减除费用5000 * nn为月份 // 2. 计算累计减除费用5000 * nn为月份
BigDecimal cumulativeDeduction = MONTHLY_DEDUCTION.multiply(new BigDecimal(taxMonth)); BigDecimal cumulativeDeduction = MONTHLY_DEDUCTION;
// 3. 计算应纳税所得额累计收入 × (1 - 20%) - 累计减除费用 // 3. 计算应纳税所得额累计收入 × (1 - 20%) - 累计减除费用
BigDecimal taxableIncome = cumulativeIncome BigDecimal taxableIncome = cumulativeIncome