|
@@ -6418,10 +6418,14 @@ public class StorageBillServiceImpl extends ServiceImpl<StorageBillMapper, Stora
|
|
|
rollDetail.setCarAllNum(bill.getCarAllNum());
|
|
|
rollDetail.setRollAmount(bill.getAmountTotal());
|
|
|
rollDetail.setLicensePlate(bill.getLicensePlate());
|
|
|
+ rollDetail.setOutTime(bill.getOutTime());
|
|
|
rollDetail.setType("热装");
|
|
|
return rollDetail;
|
|
|
})
|
|
|
- .sorted(Comparator.comparing(StorageCenterCarVO.RollDetail::getCarAllNum))
|
|
|
+ .sorted(Comparator.comparing(
|
|
|
+ StorageCenterCarVO.RollDetail::getOutTime,
|
|
|
+ Comparator.nullsLast(Comparator.reverseOrder())
|
|
|
+ ))
|
|
|
.collect(Collectors.toList());
|
|
|
}
|
|
|
}
|