|
|
@@ -75,9 +75,8 @@ public class WorkServiceImpl implements WorkService {
|
|
|
}
|
|
|
@Override
|
|
|
public void getMonthWorkOrder() {
|
|
|
- Date date = DateUtil.date();
|
|
|
Date beginOfMonth = DateUtil.beginOfMonth(DateUtil.lastMonth());
|
|
|
- Date endOfMonth = DateUtil.endOfMonth(DateUtil.lastMonth());
|
|
|
+ Date endOfMonth = DateUtil.endOfMonth(DateUtil.date());
|
|
|
String[] dateList = new String[2];
|
|
|
dateList[0] = String.valueOf(beginOfMonth.getTime());
|
|
|
// dateList[0] = String.valueOf(1755705600000L);
|
|
|
@@ -270,9 +269,8 @@ public class WorkServiceImpl implements WorkService {
|
|
|
|
|
|
@Override
|
|
|
public void getMonthOutSummary() {
|
|
|
- Date date = DateUtil.date();
|
|
|
Date beginOfMonth = DateUtil.beginOfMonth(DateUtil.lastMonth());
|
|
|
- Date endOfMonth = DateUtil.endOfMonth(DateUtil.lastMonth());
|
|
|
+ Date endOfMonth = DateUtil.endOfMonth(DateUtil.date());
|
|
|
String[] dateList = new String[2];
|
|
|
dateList[0] = String.valueOf(beginOfMonth.getTime());
|
|
|
dateList[1] = String.valueOf(endOfMonth.getTime());
|
|
|
@@ -315,7 +313,7 @@ public class WorkServiceImpl implements WorkService {
|
|
|
@Override
|
|
|
public void getMonthWorkSummary() {
|
|
|
Date beginOfMonth = DateUtil.beginOfMonth(DateUtil.lastMonth());
|
|
|
- Date endOfMonth = DateUtil.endOfMonth(DateUtil.lastMonth());
|
|
|
+ Date endOfMonth = DateUtil.endOfMonth(DateUtil.date());
|
|
|
String[] dateList = new String[2];
|
|
|
dateList[0] = String.valueOf(beginOfMonth.getTime());
|
|
|
dateList[1] = String.valueOf(endOfMonth.getTime());
|