From a5d1b3710041f9ea3887380a976423d8ce8d23b1 Mon Sep 17 00:00:00 2001 From: lys <971387674@qq.com> Date: Fri, 13 Jun 2025 10:03:02 +0800 Subject: [PATCH] =?UTF-8?q?feature/2.19.1.2501.01-=E8=80=83=E5=8B=A4?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E7=BC=96=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/salaryDetails.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pc4mobx/hrmSalary/pages/analysisOfSalaryStatistics/components/salaryDetails.js b/pc4mobx/hrmSalary/pages/analysisOfSalaryStatistics/components/salaryDetails.js index 1027a15d..1a0caae7 100644 --- a/pc4mobx/hrmSalary/pages/analysisOfSalaryStatistics/components/salaryDetails.js +++ b/pc4mobx/hrmSalary/pages/analysisOfSalaryStatistics/components/salaryDetails.js @@ -109,13 +109,19 @@ class SalaryDetails extends Component { getSalaryList = (props) => { const { attendanceStore: { salaryDetailSearchForm, tableStore }, dateRange } = props || this.props; const [startDateStr, endDateStr] = dateRange; - const { taxAgentIds, subcompanyIds, departmentIds, employeeIds, ...extra } = salaryDetailSearchForm.getFormParams(); - const { pageInfo, transferDialog, updateSum } = this.state; + const { + taxAgentIds, subcompanyIds, departmentIds, employeeIds, + htqslxList, rsdlgsList, statuses, ...extra + } = salaryDetailSearchForm.getFormParams(); + const { pageInfo, updateSum } = this.state; const payload = { taxAgentIds: taxAgentIds ? taxAgentIds.split(",") : [], departmentIds: departmentIds ? departmentIds.split(",") : [], subcompanyIds: subcompanyIds ? subcompanyIds.split(",") : [], employeeIds: employeeIds ? employeeIds.split(",") : [], + statuses: !_.isEmpty(statuses) ? statuses.split(",") : [], + htqslxList: !_.isEmpty(htqslxList) ? htqslxList.split(",") : [], + rsdlgsList: !_.isEmpty(rsdlgsList) ? rsdlgsList.split(",") : [], ...extra, ...pageInfo, startDateStr, endDateStr }; this.setState({ loading: true });