md
This commit is contained in:
parent
3f4527e333
commit
984bbf5ea5
@ -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();
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user