修复保存绩效时报错
This commit is contained in:
parent
941759ac35
commit
a91eee765a
@ -1005,7 +1005,7 @@ public class ResultRecordController extends AbstractController {
|
|||||||
for (ResultDetail resultDetail1:editResultDetails
|
for (ResultDetail resultDetail1:editResultDetails
|
||||||
) {
|
) {
|
||||||
log.info("修改的对象为{}", resultDetail1);
|
log.info("修改的对象为{}", resultDetail1);
|
||||||
if(resultDetail1.getIsDelete().intValue() == 1){
|
if(resultDetail1.getIsDelete() != null && resultDetail1.getIsDelete().intValue() == 1){
|
||||||
commandValue += (commandIndex + ":(删除) 指标" + resultDetail1.getTarget() + "\n");
|
commandValue += (commandIndex + ":(删除) 指标" + resultDetail1.getTarget() + "\n");
|
||||||
commandIndex++;
|
commandIndex++;
|
||||||
resultDetail1.setIsBack(1);
|
resultDetail1.setIsBack(1);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user