社保福利档案接口对接
This commit is contained in:
parent
24b24c2652
commit
3c5b564ccb
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
// 表单变化
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
//基数变化
|
||||
|
|
|
|||
Loading…
Reference in New Issue