demand: 月结客户达标统计时间段格式改为yyyy-MM

This commit is contained in:
aike 2026-02-12 16:52:41 +08:00
parent a1ffe2d9b5
commit 5582cb534d

View File

@ -595,8 +595,8 @@ public class EmisCustomerUserServiceImpl extends EmisBaseService implements IEmi
for (Map.Entry<String, List<MonthlyCustomerShipmentStatVO>> entry : customerMap.entrySet()) { for (Map.Entry<String, List<MonthlyCustomerShipmentStatVO>> entry : customerMap.entrySet()) {
List<MonthlyCustomerShipmentStatVO> customerMonths = entry.getValue(); List<MonthlyCustomerShipmentStatVO> customerMonths = entry.getValue();
// 按月份排序(升序) // 按月份排序(降序)
customerMonths.sort(Comparator.comparing(MonthlyCustomerShipmentStatVO::getSendMonth)); customerMonths.sort(Comparator.comparing(MonthlyCustomerShipmentStatVO::getSendMonth).reversed());
switch (complianceStatType) { switch (complianceStatType) {
case "3": case "3":