|
@ -158,7 +158,7 @@ public class PartyMemberLeadServiceImpl implements PartyMemberLeadService { |
|
|
public List<String> getXPro(){ |
|
|
public List<String> getXPro(){ |
|
|
List<String> xAxis = new ArrayList<>(); |
|
|
List<String> xAxis = new ArrayList<>(); |
|
|
LocalDate today = LocalDate.now(); |
|
|
LocalDate today = LocalDate.now(); |
|
|
for(int i = NumConstant.TWELVE;i >= NumConstant.ONE; i--){ |
|
|
for(int i = NumConstant.ELEVEN;i >= NumConstant.ZERO; i--){ |
|
|
LocalDate localDate = today.minusMonths(i); |
|
|
LocalDate localDate = today.minusMonths(i); |
|
|
String s = localDate.getMonth().getValue() + ScreenConstant.MONTH; |
|
|
String s = localDate.getMonth().getValue() + ScreenConstant.MONTH; |
|
|
xAxis.add(s); |
|
|
xAxis.add(s); |
|
|