|
|
@@ -353,7 +353,11 @@ public class DistributionCashWithdrawalServiceImpl extends ServiceImpl<Distribut
|
|
|
if(Validator.isEmpty(seller)||Validator.isEmpty(seller.getGzhOpenId())){
|
|
|
throw new CustomException("非法业务员或不存在openID");
|
|
|
}
|
|
|
-
|
|
|
+ //校验打款权限
|
|
|
+ DistributionCheckHandleBo check = new DistributionCheckHandleBo();
|
|
|
+ check.setAuditor(bo.getAuditor());
|
|
|
+ check.setAuditorId(bo.getAuditorId());
|
|
|
+ validPermission(check,"cashier");
|
|
|
Map<String, String> params = new HashMap<>();
|
|
|
Long nowTime = DateUtils.getNowTime();
|
|
|
String sign = ToolsUtils.EncoderByMd5(withdrawal.getCwSn()+nowTime.toString()+"pubilc2022");
|