|
@@ -101,6 +101,10 @@ public class RoutingInspectionServiceImpl extends BaseServiceImpl<RoutingInspect
|
|
Long userId = AuthUtil.getUserId();
|
|
Long userId = AuthUtil.getUserId();
|
|
List<RoutingInspectionVO> records = iPage.getRecords();
|
|
List<RoutingInspectionVO> records = iPage.getRecords();
|
|
for (RoutingInspectionVO record : records) {
|
|
for (RoutingInspectionVO record : records) {
|
|
|
|
+ if (record.getRectifyUser() == null){
|
|
|
|
+ record.setIsRectifyUser(0);
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
String rectifyUser = record.getRectifyUser();
|
|
String rectifyUser = record.getRectifyUser();
|
|
String[] split = rectifyUser.split("-");
|
|
String[] split = rectifyUser.split("-");
|
|
Long user = Long.parseLong(split[split.length-1]);
|
|
Long user = Long.parseLong(split[split.length-1]);
|