瀏覽代碼

结算单-快手导出删除log

yangzian 3 年之前
父節點
當前提交
382d6abe1e

+ 0 - 1
jeecg-boot-finance/src/main/java/org/jeecg/ctop/finance/settlement/controller/ExportReportController.java

@@ -53,7 +53,6 @@ public class ExportReportController {
         if(null == date||date.equals("")){
             paramsVo.setUploadYears(DateUtils.formatDate(new Date(),"yyyy-MM"));
         }
-        log.info("快手结算单----------{}",paramsVo);
         return reportSettlementService.settlementReportKuaiShou(paramsVo,response,user);
     }
 

+ 0 - 5
jeecg-boot-finance/src/main/java/org/jeecg/ctop/finance/settlement/service/serviceImpl/ReportSettlementServiceImpl.java

@@ -312,11 +312,8 @@ public class ReportSettlementServiceImpl implements IReportSettlementService {
         }
         //查询财务模块中已上传的账户
         List<String> settlementAccountList = reportSettlementMapper.getAccountIdBytedance(sales,String.valueOf(mediaId),paramsVo.getAdvertiserId(),paramsVo.getProductId(),paramsVo.getProjectId());
-        log.info("快手结算单----已上传的账户------{}",settlementAccountList);
-
         //查询已绑定账户
         allocations = userAllocationMapper.getAccountInfoBySalesId(sales,String.valueOf(mediaId),paramsVo.getAdvertiserId(),paramsVo.getProductId(),paramsVo.getProjectId());
-        log.info("快手结算单------已绑定账户----{},{}",allocations.size(),allocations);
         return mergeAccountId(settlementAccountList,allocations,uploadYears);
     }
 
@@ -363,8 +360,6 @@ public class ReportSettlementServiceImpl implements IReportSettlementService {
             //查询 需要导出的数据的账户id
             List<String> accountIdList = this.getAccountId(paramsVo,user);
 
-            log.info("最终的账户{}==={}",accountIdList.size(),accountIdList);
-
 
             if (Check.isNull(accountIdList)){
                 return Result.errorMsg("该广告主和产品下无法查询到绑定的快手账户信息");