修复客户管理系统前台客户经理问题

master
river 4 years ago
parent 4ebb00fc14
commit d55426c819
  1. 8
      dq-financial-crms/src/main/java/com/daqing/financial/crms/service/impl/CustomerWorkbenchServiceImpl.java

@ -289,8 +289,8 @@ public class CustomerWorkbenchServiceImpl extends ServiceImpl<CustomerWorkbenchD
@Transactional @Transactional
public Boolean insertCompany(CompanyCustomerRequest companyCustomerReq) { public Boolean insertCompany(CompanyCustomerRequest companyCustomerReq) {
Long userId = Long.parseLong(this.getUserId()); // Long userId = Long.parseLong(this.getUserId());
companyCustomerReq.setManager(userId); // 从redis获取当前登录用户 // companyCustomerReq.setManager(userId); // 从redis获取当前登录用户
boolean result = customerService.insertCompany(companyCustomerReq); boolean result = customerService.insertCompany(companyCustomerReq);
return result; return result;
} }
@ -301,8 +301,8 @@ public class CustomerWorkbenchServiceImpl extends ServiceImpl<CustomerWorkbenchD
@Transactional @Transactional
public Boolean updateCompanyNew(CompanyCustomerRequest companyCustomerReq) { public Boolean updateCompanyNew(CompanyCustomerRequest companyCustomerReq) {
Long userId = Long.parseLong(this.getUserId()); // Long userId = Long.parseLong(this.getUserId());
companyCustomerReq.setManager(userId); // companyCustomerReq.setManager(userId);
return customerService.updateCompanyNew(companyCustomerReq); return customerService.updateCompanyNew(companyCustomerReq);
} }
} }

Loading…
Cancel
Save