社保福利档案接口对接

This commit is contained in:
18652063575 2022-10-31 17:58:56 +08:00
parent 24b24c2652
commit 3c5b564ccb
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ export default class AccumulationFundForm extends React.Component {
// 获取基数表单
handleFetchPaymentForm(fundName) {
const { archivesStore: { getPaymentForm } } = this.props;
getPaymentForm(this.props.employeeId, "ACCUMULATION_FUND", fundName);
getPaymentForm(this.props.employeeId, "ACCUMULATION_FUND", fundName, this.props.record.paymentOrganization);
}

View File

@ -26,7 +26,7 @@ export default class OtherForm extends React.Component {
// 获取基数表单
handleFetchPaymentForm(value) {
const { archivesStore: { getPaymentForm } } = this.props;
getPaymentForm(this.props.employeeId, "OTHER", value);
getPaymentForm(this.props.employeeId, "OTHER", value, this.props.record.paymentOrganization);
}
// 表单变化

View File

@ -31,7 +31,7 @@ export default class SocialSecurityForm extends React.Component {
// 获取基数表单
handleFetchPaymentForm(value) {
const { archivesStore: { getPaymentForm } } = this.props;
getPaymentForm(this.props.employeeId, "SOCIAL_SECURITY", value);
getPaymentForm(this.props.employeeId, "SOCIAL_SECURITY", value, this.props.record.paymentOrganization);
}
//基数变化