产品-薪酬统计分析设置页面的个税扣缴义务人选项修改

This commit is contained in:
黎永顺 2023-06-16 11:46:01 +08:00
parent 644df23ccc
commit 3c7c03916d
1 changed files with 5 additions and 5 deletions

View File

@ -31,9 +31,9 @@ class Index extends Component {
}
componentDidMount() {
const { taxAgentStore: { getTaxAgentSelectListAsAdmin } } = this.props;
const { taxAgentStore: { fetchTaxAgentOption } } = this.props;
this.reportGetForm();
getTaxAgentSelectListAsAdmin();
fetchTaxAgentOption();
}
reportGetForm = () => {
@ -98,7 +98,7 @@ class Index extends Component {
render() {
const { report, dimensionList, statisticalPayload } = this.state;
const { attendanceStore: { settingForm }, taxAgentStore: { taxAgentAdminOption } } = this.props;
const { attendanceStore: { settingForm }, taxAgentStore: { taxAgentOption } } = this.props;
return (
<WeaTop
title={getLabel(111, "报表查看")}
@ -137,7 +137,7 @@ class Index extends Component {
title={getLabel(111, "统计数据范围及规则设置")}
onClick={() => {
if (this.reportRef.state.loading) {
message.info(getLabel(111, "列表正在加载中,请稍后"))
message.info(getLabel(111, "列表正在加载中,请稍后"));
} else {
this.setState({
statisticalPayload: { visible: true, id: report.id, dimension: report.dimensionId }
@ -150,7 +150,7 @@ class Index extends Component {
{/*统计数据范围及规则设置弹框*/}
<StatisticalMicroSettingsSlide
{...statisticalPayload} form={settingForm}
taxAgentAdminOption={taxAgentAdminOption}
taxAgentAdminOption={taxAgentOption}
onClose={(isRefresh) => this.setState({
statisticalPayload: { visible: false, id: "", dimension: "" }
}, () => isRefresh && this.reportRef.reportStatisticsReportGetData(report.id, report.dimensionId))}