公会-后台-公会钻石薪资流水-实时根据diamond_static计算

This commit is contained in:
2025-10-10 12:34:25 +08:00
parent 5702f33a43
commit 928781fc06

View File

@@ -88,6 +88,11 @@ public class GuildSettleRecordAdminService {
String curCycleDate = FullMonthCycleTimeUtil.getCurCycleDateByZoneId(partitionInfo.getZoneId());
if (curCycleDate.equals(basePageParams.getDateCycle()) || basePageParams.getDateCycle().equals("2025-09-01")){
String endDate = FullMonthCycleTimeUtil.getCurCycleEndDateByZoneId(partitionInfo.getZoneId());
if (!curCycleDate.equals(basePageParams.getDateCycle())){
curCycleDate = basePageParams.getDateCycle();
endDate = "2025-09-30";
}
List<GuildSettleRecord> poList = guildSettleService.cal(basePageParams.getPartitionId(), curCycleDate, endDate, gId, basePageParams.getRegionId());
if (CollectionUtils.isEmpty(poList)){
return voPage;