|
@@ -179,7 +179,7 @@ public class TStApproveController extends BaseController
|
|
|
TStApprove tStApprove = tStApproveService.selectTStApproveById(Long.parseLong(devTask.getBusinessKey()));
|
|
|
tStApprove.setContent(devTask.getComment());
|
|
|
if (devTask.getCondition().equals("1")) {
|
|
|
- devTask.setComment("通过" + symbol + devTask.getComment());
|
|
|
+ devTask.setComment("通过");
|
|
|
TStYearplan tStYearplan = tStYearplanService.selectTStYearplanById(Long.parseLong(tStApprove.getPlanId()));
|
|
|
tStYearplan.setApproveStatus(1l);
|
|
|
tStYearplanService.updateTStYearplan(tStYearplan);
|
|
@@ -194,7 +194,7 @@ public class TStApproveController extends BaseController
|
|
|
}
|
|
|
}
|
|
|
else if (devTask.getCondition().equals("0")) {
|
|
|
- devTask.setComment("未通过" + symbol + devTask.getComment());
|
|
|
+ devTask.setComment("未通过");
|
|
|
TStYearplan tStYearplan = tStYearplanService.selectTStYearplanById(Long.parseLong(tStApprove.getPlanId()));
|
|
|
tStYearplan.setApproveStatus(2l);
|
|
|
tStYearplanService.updateTStYearplan(tStYearplan);
|