debug合伙人
This commit is contained in:
parent
d74938ad92
commit
523ef6958b
|
@ -171,6 +171,7 @@ public class StoreStaffServiceImpl implements StoreStaffService
|
||||||
// 后校验
|
// 后校验
|
||||||
StoreStaffVO vo = selectStoreStaffByEmployId(employId);
|
StoreStaffVO vo = selectStoreStaffByEmployId(employId);
|
||||||
storeStaffValidator.checkRepeatUser(vo.getStoreId(), vo.getUserId(), vo.getEmployId());
|
storeStaffValidator.checkRepeatUser(vo.getStoreId(), vo.getUserId(), vo.getEmployId());
|
||||||
|
storeStaffValidator.checkPoint(vo);
|
||||||
|
|
||||||
return bind;
|
return bind;
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
package com.ruoyi.ss.storeStaff.service.impl;
|
package com.ruoyi.ss.storeStaff.service.impl;
|
||||||
|
|
||||||
|
import com.ruoyi.common.exception.ServiceException;
|
||||||
import com.ruoyi.common.utils.ServiceUtil;
|
import com.ruoyi.common.utils.ServiceUtil;
|
||||||
import com.ruoyi.common.utils.collection.CollectionUtils;
|
import com.ruoyi.common.utils.collection.CollectionUtils;
|
||||||
import com.ruoyi.ss.device.domain.vo.DeviceVO;
|
import com.ruoyi.ss.device.domain.vo.DeviceVO;
|
||||||
|
@ -52,7 +53,11 @@ public class StoreStaffValidatorImpl implements StoreStaffValidator {
|
||||||
|
|
||||||
// 校验设备分成
|
// 校验设备分成
|
||||||
for (DeviceVO device : deviceList) {
|
for (DeviceVO device : deviceList) {
|
||||||
deviceValidator.checkBonus(device);
|
try {
|
||||||
|
deviceValidator.checkBonus(device);
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new ServiceException("校验分成比例失败:" + e.getMessage() + ",请修改分成比例");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -168,6 +168,7 @@ public class UserAssemblerImpl implements UserAssembler {
|
||||||
|
|
||||||
StoreStaffQuery query = new StoreStaffQuery();
|
StoreStaffQuery query = new StoreStaffQuery();
|
||||||
query.setUserIds(CollectionUtils.map(list, SmUserVO::getUserId));
|
query.setUserIds(CollectionUtils.map(list, SmUserVO::getUserId));
|
||||||
|
query.setEnabled(true);
|
||||||
List<LongCountVO> counts = storeStaffService.selectCountGroupByUserId(query);
|
List<LongCountVO> counts = storeStaffService.selectCountGroupByUserId(query);
|
||||||
|
|
||||||
for (SmUserVO user : list) {
|
for (SmUserVO user : list) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user