|
@@ -1690,7 +1690,7 @@ public class ReceiptServiceImpl implements ReceiptService {
|
|
|
String remarkText = "收款类型:"+ receiptTypeStr +";"+"审核时间:"+receiptPo.getReviewDate();
|
|
|
double associateAmount = receiptMapper.countAssociateAmountById(receiptPo.getId());
|
|
|
// (用户权限: 1录入收款,2收款列表操作,3关联订单款,4关联返佣款,5口头返佣,6关联供应商退款,7审核订单款,8收款详情分享,9订单款/非订单款详情查看,10返佣款详情查看,11供应商退款详情查看)
|
|
|
- List<String> openidList = receiptMapper.getOpenidListByPermission(Collections.singletonList(4));
|
|
|
+ List<String> openidList = receiptMapper.getOpenidListByPermission(Collections.singletonList(3));
|
|
|
openidList.removeIf(Objects::isNull);
|
|
|
// 跳转到【普通款项待审核】页面
|
|
|
String pagePath = "pages/login/login-share?id="+receiptPo.getId();
|
|
@@ -1718,7 +1718,7 @@ public class ReceiptServiceImpl implements ReceiptService {
|
|
|
List<ReceiptVo> list = receiptMapper.getReceiptList(paramsBo);
|
|
|
list.removeIf(Objects::isNull);
|
|
|
// (用户权限: 1录入收款,2收款列表操作,3关联订单款,4关联返佣款,5口头返佣,6关联供应商退款,7审核订单款,8收款详情分享,9订单款/非订单款详情查看,10返佣款详情查看,11供应商退款详情查看)
|
|
|
- List<String> openidList = receiptMapper.getOpenidListByPermission(Arrays.asList(4,5,6));
|
|
|
+ List<String> openidList = receiptMapper.getOpenidListByPermission(Arrays.asList(3,4,5,6));
|
|
|
openidList.removeIf(Objects::isNull);
|
|
|
String title = "超时未确认,请及时查看详情并确认关联!";
|
|
|
for (ReceiptVo receipt : list) {
|