diff --git a/pc4mobx/hrmSalary/pages/payrollFiles/components/exportMenu.js b/pc4mobx/hrmSalary/pages/payrollFiles/components/exportMenu.js index 78a36b27..4845c1b4 100644 --- a/pc4mobx/hrmSalary/pages/payrollFiles/components/exportMenu.js +++ b/pc4mobx/hrmSalary/pages/payrollFiles/components/exportMenu.js @@ -17,11 +17,11 @@ class ExportMenu extends Component { case "fixed": runStatusList = "FIXED,SUSPEND"; break; - case "SUSPEND": + case "suspend": runStatusList = _.upperCase(selectedKey); break; case "stop": - runStatusList = 'STOP_FROM_PENDING,STOP_FROM_SUSPEND'; + runStatusList = "STOP_FROM_PENDING,STOP_FROM_SUSPEND"; break; default: break; diff --git a/pc4mobx/hrmSalary/pages/payrollFiles/index.js b/pc4mobx/hrmSalary/pages/payrollFiles/index.js index 5655e499..8fb623fa 100644 --- a/pc4mobx/hrmSalary/pages/payrollFiles/index.js +++ b/pc4mobx/hrmSalary/pages/payrollFiles/index.js @@ -14,7 +14,6 @@ import { WeaFormItem, WeaHelpfulTip, WeaInput, - WeaNewScroll, WeaPopoverHrm, WeaSearchGroup, WeaSelect, @@ -23,7 +22,7 @@ import { WeaTop } from "ecCom"; import { WeaTableNew } from "comsMobx"; -import { Button, Dropdown, Menu, message, Modal, Popover } from "antd"; +import { Button, Dropdown, Menu, message, Modal, Spin } from "antd"; import ImportMenu from "./components/importMenu"; import ExportMenu from "./components/exportMenu"; import AllWithoutPay from "./components/allWithoutPay"; @@ -32,7 +31,6 @@ import SlideModalTitle from "../../components/slideModalTitle"; import SalaryFileViewSlide from "../salaryFile/saralyFileViewSlide"; import ChangeSalaryModal from "../salaryFile/changeSalaryModal"; import "./index.less"; -import UnifiedTable from "../../components/UnifiedTable"; const WeaTableComx = WeaTableNew.WeaTable; @@ -152,8 +150,56 @@ class Index extends Component { this.queryTabTotal(); this.queryList("/api/bs/hrmsalary/salaryArchive/pendingList"); const init = this.init(); + window.addEventListener("message", this.handleReceive, false); } + componentWillUnmount() { + window.removeEventListener("message", this.handleReceive, false); + } + + handleReceive = ({ data }) => { + const { payrollFilesStore: { tableStore }, taxAgentStore: { showOperateBtn } } = this.props; + const columns = _.map(_.filter(toJS(tableStore.columns), (item) => item.display === "true"), (it, idx) => ({ + dataIndex: it.dataIndex, + width: (it.dataIndex === "username" || it.dataIndex === "operate") ? 120 : it.dataIndex === "taxAgentName" ? 176 : 150, + title: it.title, align: "left", + fixed: (idx === 0 || idx === 1 || idx === 2) ? "left" : it.dataIndex === "operate" ? "right" : "", + ellipsis: true + })); + const { type, payload: { id, params } = {} } = data; + const { dataSource, pageInfo, selectedKey, selectedRowKeys } = this.state; + if (type === "init") { + this.postMessageToChild({ + columns, dataSource, showOperateBtn, selectedKey, + showSum: false, pageInfo, selectedRowKeys + }); + } else if (type === "turn") { + if (id === "PAGEINFO") { + const { pageNum: current, size: pageSize } = params; + this.setState({ pageInfo: { ...pageInfo, current, pageSize } }, () => this.query()); + } else if (id === "EDIT") { + const { record } = params; + this.handleEdit(record); + } else if (id === "MOREOPT") { + const { id, event: e } = params; + this.handleMenuClick(e, id); + } else if (id === "CANCELSTOP") { + const { id } = params; + this.cancelStop(id); + } else if (id === "ROWSELECTION") { + const { selectedRowKeys } = params; + this.setState({ selectedRowKeys }); + } + } + }; + postMessageToChild = (payload) => { + const childFrameObj = document.getElementById("atdTable"); + const { dataSource, columns, showSum, pageInfo, showOperateBtn, selectedKey, selectedRowKeys } = payload; + childFrameObj && childFrameObj.contentWindow.postMessage(JSON.stringify({ + dataSource, columns, showSum, pageInfo, showOperateBtn, selectedKey, selectedRowKeys + }), "*"); + }; + init = async () => { const { data: archiveStatusList } = await this.commonEnumList({ enumClass: "com.engine.salary.enums.salaryarchive.ArchiveStatusEnum" }); const { data: userStatusList } = await this.commonEnumList({ enumClass: "com.engine.salary.enums.UserStatusEnum" }); @@ -192,7 +238,7 @@ class Index extends Component { }; queryList = (url) => { const { loading, pageInfo, searchItemsValue } = this.state; - const { payrollFilesStore: { tableStore, queryList } } = this.props; + const { payrollFilesStore: { tableStore, queryList }, taxAgentStore: { showOperateBtn } } = this.props; const payload = { ...pageInfo }; this.setState({ loading: { ...loading, query: true } @@ -446,85 +492,18 @@ class Index extends Component { return []; }; getColumns = () => { - const { selectedKey } = this.state; const { payrollFilesStore: { tableStore }, taxAgentStore: { showOperateBtn } } = this.props; - let columns = _.filter(toJS(tableStore.columns), (item) => item.display === "true"); - return _.map([ - ...columns], item => { - if (item.dataIndex === "username") { - return { - ...item, - render: (text, record) => { - return window.pointerXY(e)} - className="ellipsis" - title={text} - > - {text} - ; - } - }; - } else if (item.dataIndex === "operate") { - return { - ...item, - render: (text, record) => { - if (!showOperateBtn) { - return
- this.handleEdit(record)}>查看 -
; - } else { - if (selectedKey === "pending") { - return
- this.handleEdit(record)}>编辑 - this.handleMenuClick(e, record.id)}> - 设为发薪人员 - 删除待办 - } title=""> - - -
; - } else if (selectedKey === "fixed") { - return this.handleEdit(record)}>调薪; - } else if (selectedKey === "suspend") { - return
- this.handleEdit(record)}>编辑 - this.handleMenuClick(e, record.id)}> - 停薪 - 删除待办 - } title=""> - - -
; - } else { - return
- this.cancelStop(record.id)}>取消停薪 - this.handleMenuClick(e, record)}> - 查看 - } title=""> - - -
; - } - } - } - }; - } - return { - ...item, - render: (text) => { - return {text}; - } - }; + const columns = _.map(_.filter(toJS(tableStore.columns), (item) => item.display === "true"), (it, idx) => ({ + dataIndex: it.dataIndex, + width: (it.dataIndex === "username" || it.dataIndex === "operate") ? 120 : it.dataIndex === "taxAgentName" ? 176 : 150, + title: it.title, align: "left", + fixed: (idx === 0 || idx === 1 || idx === 2) ? "left" : it.dataIndex === "operate" ? "right" : "", + ellipsis: true + })); + this.postMessageToChild({ + columns, showOperateBtn, selectedKey: this.state.selectedKey, + dataSource: this.state.dataSource, selectedRowKeys: this.state.selectedRowKeys, + showSum: false, pageInfo: this.state.pageInfo }); }; handleEdit = (record) => { @@ -600,13 +579,14 @@ class Index extends Component { current: 1, pageSize: 10 } + }, () => { + if (!this.handleChangeDebounce) { + this.handleChangeDebounce = _.debounce(() => { + this.query(); + }, 500); + } + this.handleChangeDebounce(); }); - if (!this.handleChangeDebounce) { - this.handleChangeDebounce = _.debounce(() => { - this.query(); - }, 500); - } - this.handleChangeDebounce(); }; //编辑保存 handleSave = () => { @@ -670,34 +650,13 @@ class Index extends Component { tabCount, selectedKey, loading, - dataSource, pageInfo, showSearchAd, - selectedRowKeys, slideParams, changeSalaryVisible, paysetParams } = this.state; const { payrollFilesStore: { tableStore } } = this.props; - const pagination = { - current: pageInfo.current, - pageSize: pageInfo.pageSize, - total: pageInfo.total, - showTotal: total => `共 ${total} 条`, - showQuickJumper: true, - showSizeChanger: true, - pageSizeOptions: ["10", "20", "50", "100"], - onShowSizeChange: (current, pageSize) => { - this.setState({ pageInfo: { ...pageInfo, current, pageSize } }, () => { - this.query(); - }); - }, - onChange: current => { - this.setState({ pageInfo: { ...pageInfo, current } }, () => { - this.query(); - }); - } - }; const renderSearch = () => { const searchItems = [ { com: this.Input("姓名", "username") }, @@ -733,10 +692,6 @@ class Index extends Component { })}> 重置 , ]; - const rowSelection = { - selectedRowKeys, - onChange: (selectedRowKeys) => this.setState({ selectedRowKeys }) - }; const rightMenu = [ { key: "BTN_COLUMN", @@ -791,24 +746,22 @@ class Index extends Component { searchsBaseValue={this.state.searchItemsValue.username} />
- - +