|
@@ -185,6 +185,7 @@ import com.jeeplus.modules.workreimbursement.entity.WorkReimbursement;
|
|
|
import com.jeeplus.modules.workreimbursement.entity.WorkReimbursementTypeInfo;
|
|
|
import com.jeeplus.modules.workreimbursement.service.WorkReimbursementService;
|
|
|
import com.jeeplus.modules.workreimbursement.service.WorkReimbursementTypeService;
|
|
|
+import com.jeeplus.modules.workreimbursement.utils.HistoicFlowUtil;
|
|
|
import com.jeeplus.modules.workrelationship.entity.WorkRelationship;
|
|
|
import com.jeeplus.modules.workrelationship.service.WorkRelationshipService;
|
|
|
import com.jeeplus.modules.workrepay.entity.WorkRepay;
|
|
@@ -437,6 +438,8 @@ public class WorkProjectNotifyController extends BaseController {
|
|
|
private WorkReimbursementTypeService workReimbursementTypeService;
|
|
|
@Autowired
|
|
|
private RuralProjectMessageService ruralProjectMessageService;
|
|
|
+ @Autowired
|
|
|
+ private HistoicFlowUtil histoicFlowUtil;
|
|
|
|
|
|
@ModelAttribute
|
|
|
public WorkProjectNotify get(@RequestParam(required=false) String id) {
|
|
@@ -933,8 +936,9 @@ public class WorkProjectNotifyController extends BaseController {
|
|
|
}*/
|
|
|
UserUtils.pushMeIm("");
|
|
|
}
|
|
|
-
|
|
|
- //workProjectNotify.setStatus("2");
|
|
|
+ if(workProjectNotify.getRemarks().contains("待通知")){
|
|
|
+ workProjectNotify.setStatus("2");
|
|
|
+ }
|
|
|
workProjectNotify.preUpdate();
|
|
|
workProjectNotifyService.save(workProjectNotify);
|
|
|
if (StringUtils.isNotBlank(workProjectNotify.getType())) {
|