Browse Source

问题处理

yzc 1 year ago
parent
commit
9c816ab84b

+ 1 - 1
hx-from/src/main/java/com/fjhx/from/service/impl/StatisticsServiceImpl.java

@@ -81,7 +81,7 @@ public class StatisticsServiceImpl implements StatisticsService {
         }
         //统计待审批数据
         DynamicDataSourceContextHolder.push(SourceConstant.BASE);
-        long waitFlowCount = flowExampleService.count(q -> q.eq(FlowExample::getStatus, 2).eq(FlowExample::getHandleUserId, userId));
+        long waitFlowCount = flowExampleService.count(q -> q.eq(FlowExample::getStatus, 1).eq(FlowExample::getHandleUserId, userId));
         DynamicDataSourceContextHolder.poll();
         //到账认领计数
         long claimCount = accountRunningWaterService.count(q -> q.eq(AccountRunningWater::getReceived, 10).ne(AccountRunningWater::getIsClaim, 1));