release/2.19.1.2501.01
This commit is contained in:
parent
915e946c3e
commit
efb5af1b10
|
|
@ -125,17 +125,18 @@ class EditCalcTable extends Component {
|
||||||
}, 500);
|
}, 500);
|
||||||
});
|
});
|
||||||
const { routeParams: { salaryAcctRecordId } } = this.props;
|
const { routeParams: { salaryAcctRecordId } } = this.props;
|
||||||
updateLockStatus({ ...payload, salaryAcctRecordId }).then(({ status, errormsg }) => {
|
updateLockStatus({ ...payload, salaryAcctRecordId, acctEmpIds: this.state.selectedRowKeys })
|
||||||
if (status) {
|
.then(({ status, errormsg }) => {
|
||||||
clearInterval(this.timerLock);
|
if (status) {
|
||||||
this.setState({
|
clearInterval(this.timerLock);
|
||||||
progressVisible: false,
|
this.setState({
|
||||||
progress: 0
|
progressVisible: false,
|
||||||
}, () => this.queryCalcResultList());
|
progress: 0
|
||||||
} else {
|
}, () => this.queryCalcResultList());
|
||||||
message.error(errormsg);
|
} else {
|
||||||
}
|
message.error(errormsg);
|
||||||
});
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
@ -341,4 +342,4 @@ const traverse = (arr, calcDetail) => {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
Loading…
Reference in New Issue