This commit is contained in:
linfso 2024-05-08 19:37:14 +08:00
parent 3f4527e333
commit 984bbf5ea5
2 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ public class EmisCommonToolsController extends BaseController
Map statMap = new HashMap();
// 获取基本订单的统计数据
List<Map> empStatList=emisBaseService.getWaybillStatDataByEmp(getLoginUser().getUser().getEmpCode());
List<Map> empStatList=emisBaseService.selectWaybillStatByEmpCode(getLoginUser().getUser().getEmpCode());
Map orderStatMap = new HashMap();
@ -77,7 +77,7 @@ public class EmisCommonToolsController extends BaseController
statMap.put("orderStat",orderStatMap);
// 获取员工佣金信息
List<Map> statList=emisBaseService.getCommissionStatByEmp(getLoginUser().getUser().getEmpCode());
List<Map> statList=emisBaseService.getCommissionStatByEmpCode(getLoginUser().getUser().getEmpCode());
Map commissionStatMap = new HashMap();

View File

@ -117,7 +117,7 @@ public class EmisBaseService {
* @param empNo
* @return
*/
public List<Map> getCommissionStatByEmp(String empNo){
public List<Map> getCommissionStatByEmpCode(String empNo){
if(StringUtils.isEmpty(empNo)){
return null;