release/2.19.1.2501.01

This commit is contained in:
lys 2025-10-10 11:05:18 +08:00
parent 915e946c3e
commit efb5af1b10
1 changed files with 13 additions and 12 deletions

View File

@ -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) => {
}; };
} }
}); });
}; };