|
|
@@ -1017,7 +1017,8 @@ public class GxtOrderScoreServiceImpl implements IGxtOrderScoreService {
|
|
|
// 获取工单完成时间所在的月份
|
|
|
if (order.getOccurTime() != null) {
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
|
|
|
- String monthPeriod = sdf.format(order.getOccurTime());
|
|
|
+ //String monthPeriod = sdf.format(order.getOccurTime());
|
|
|
+ String monthPeriod = sdf.format(new Date());
|
|
|
|
|
|
// 获取场站ID
|
|
|
Long deptId = order.getPcsStationPid();
|
|
|
@@ -1063,7 +1064,8 @@ public class GxtOrderScoreServiceImpl implements IGxtOrderScoreService {
|
|
|
// 获取工单完成时间所在的月份
|
|
|
if (order.getCreateTime() != null) {
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
|
|
|
- String monthPeriod = sdf.format(order.getCreateTime());
|
|
|
+ //String monthPeriod = sdf.format(order.getCreateTime());
|
|
|
+ String monthPeriod = sdf.format(new Date());
|
|
|
|
|
|
// 获取场站ID
|
|
|
Long deptId = order.getPcsStationPid();
|