|
|
@@ -30,6 +30,7 @@ import com.goafanti.order.controller.InputTaskStopLog;
|
|
|
import com.goafanti.order.enums.*;
|
|
|
import com.goafanti.order.service.OrderNewService;
|
|
|
import com.goafanti.order.service.OrderProjectService;
|
|
|
+import com.goafanti.order.service.TaskScoreService;
|
|
|
import com.goafanti.organization.bo.OrganizationListOut;
|
|
|
import com.goafanti.organization.bo.OutPaymentNode;
|
|
|
import com.goafanti.techproject.enums.TaskState;
|
|
|
@@ -139,7 +140,8 @@ public class OrderProjectServiceImpl extends BaseMybatisDao<TOrderTaskMapper> im
|
|
|
private RestrictProjectMapper restrictProjectMapper;
|
|
|
@Autowired
|
|
|
private UserTransferLogMapper userTransferLogMapper;
|
|
|
-
|
|
|
+ @Autowired
|
|
|
+ private TaskScoreService taskScoreService;
|
|
|
|
|
|
|
|
|
@Value(value = "${upload.path}")
|
|
|
@@ -2109,6 +2111,7 @@ public class OrderProjectServiceImpl extends BaseMybatisDao<TOrderTaskMapper> im
|
|
|
e.setCompleteDate(DateUtils.parseDate(date));
|
|
|
if (sort==3||sort==6||sort==9){
|
|
|
e.setScoreStatus(1);
|
|
|
+ taskScoreService.updateTOrderNewByTid(e.getId());
|
|
|
}
|
|
|
}else {
|
|
|
TOrderTask t=new TOrderTask();
|
|
|
@@ -2117,6 +2120,7 @@ public class OrderProjectServiceImpl extends BaseMybatisDao<TOrderTaskMapper> im
|
|
|
t.setCompleteDate(DateUtils.parseDate(date));
|
|
|
if (sort==3||sort==6||sort==9){
|
|
|
t.setScoreStatus(1);
|
|
|
+ taskScoreService.updateTOrderNewByTid(e.getId());
|
|
|
}
|
|
|
tOrderTaskMapper.update(t);
|
|
|
}
|