292 lines
13 KiB
JavaScript
292 lines
13 KiB
JavaScript
|
|
import { Button, Descriptions,Popconfirm, Row, Col, Form,Modal, Input, Select, Table } from 'antd';
|
||
|
|
import React from 'react';
|
||
|
|
import { initFilter, extendRule, extendInclude,extendIgnoreDataRule, setDataFieldValue, guid, initQueryFilter } from "../../../utils/common";
|
||
|
|
import ReactToPrint from "react-to-print";
|
||
|
|
import styles from '../HI/StepForm.css';
|
||
|
|
import config from "../../../config";
|
||
|
|
import XLSX from 'xlsx';
|
||
|
|
import { connect } from 'dva';
|
||
|
|
import moment from 'moment';
|
||
|
|
import { message } from "antd/lib/index";
|
||
|
|
import FormPage from '../../FormPage'
|
||
|
|
class PT036ShowPrint extends React.Component {
|
||
|
|
constructor(props) {
|
||
|
|
super(props);
|
||
|
|
this.state = {
|
||
|
|
data: null,
|
||
|
|
BtnAgreeDisplay: 'none',
|
||
|
|
BtnChargeAgreeDisplay:'none',
|
||
|
|
tmpData: {},
|
||
|
|
isModalVisible6: false,
|
||
|
|
detailContens:[]
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
componentDidMount() {
|
||
|
|
if (this.props.data?.id)
|
||
|
|
this.loadData(this.props.data?.id);
|
||
|
|
}
|
||
|
|
|
||
|
|
componentWillReceiveProps(NextProps) {
|
||
|
|
if (NextProps.data?.id && this.props.data?.id != NextProps.data?.id) {
|
||
|
|
this.loadData(NextProps.data?.id);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
onTableBtnAgree() {
|
||
|
|
this.props.dispatch({
|
||
|
|
type: 'app/getDataByPost',
|
||
|
|
url: 'PT/PTAnnualMonotorSummary/IdentityUpdate',
|
||
|
|
payload: {
|
||
|
|
ID: this.props.data.id,
|
||
|
|
TaskID: this.props.data.TaskID,
|
||
|
|
},
|
||
|
|
onComplete: (ret) => {
|
||
|
|
if (ret) {
|
||
|
|
message.success('确认成功!');
|
||
|
|
this.setState({ BtnAgreeDisplay: 'none' })
|
||
|
|
this.BtnClose();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|
||
|
|
onTableBtnChargeAgree() {
|
||
|
|
this.props.dispatch({
|
||
|
|
type: 'app/getDataByPost',
|
||
|
|
url: 'PT/PTMonitorAssessment/ChargeAgree',
|
||
|
|
payload: {
|
||
|
|
ID: this.props.data.id,
|
||
|
|
TaskID: this.props.data.TaskID,
|
||
|
|
},
|
||
|
|
onComplete: (ret) => {
|
||
|
|
if (ret) {
|
||
|
|
message.success('已阅成功!');
|
||
|
|
this.setState({ BtnChargeAgreeDisplay: 'none' })
|
||
|
|
this.BtnClose();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|
||
|
|
BtnClose = () => {
|
||
|
|
if (typeof this.props.data.onCancel != "undefined"&&typeof this.props.data.onCancel == 'function')
|
||
|
|
this.props.data.onCancel();
|
||
|
|
}
|
||
|
|
|
||
|
|
loadData = (dataId) => {
|
||
|
|
let that=this;
|
||
|
|
let json = initFilter(that.props.login.OrgId);
|
||
|
|
extendRule(json, 'ID', 1, dataId);
|
||
|
|
extendInclude(json, 'Nav_Details')
|
||
|
|
extendIgnoreDataRule(json)
|
||
|
|
// extendInclude(json, 'Nav_Details.Nav_User')
|
||
|
|
// extendInclude(json, 'Nav_Details.Nav_User.Nav_Person')
|
||
|
|
// extendInclude(json, 'Nav_Details.Nav_User.Nav_Person.Nav_Post')
|
||
|
|
// extendInclude(json, 'Nav_Details.Nav_Department')
|
||
|
|
// extendInclude(json, 'Nav_Details.Nav_Contents')
|
||
|
|
// extendInclude(json, 'Nav_Department.Nav_User')
|
||
|
|
// extendInclude(json, 'Nav_DepartmentDetail')
|
||
|
|
// extendInclude(json, 'Nav_DepartmentDetail.Nav_Department')
|
||
|
|
// extendInclude(json, 'Nav_DepartmentDetail.Nav_User')
|
||
|
|
// extendInclude(json, 'Nav_DepartmentDetail.Nav_DetailContent')
|
||
|
|
that.props.dispatch({
|
||
|
|
type: 'app/getDataByPost',
|
||
|
|
payload: json,
|
||
|
|
url: 'PT/PTAnnualMonotorSummary/GetEdit',
|
||
|
|
onComplete: (ret) => {
|
||
|
|
if (ret) {
|
||
|
|
if(that.props.data && that.props.data.loadDataDeal)
|
||
|
|
{
|
||
|
|
that.props.data.loadDataDeal(1);
|
||
|
|
}
|
||
|
|
that.setState({ data: ret });
|
||
|
|
// if (ret.STATUS === 20) {
|
||
|
|
// that.setState({ BtnAgreeDisplay: 'inline' })
|
||
|
|
// }else{
|
||
|
|
// that.setState({ BtnAgreeDisplay: 'none' })
|
||
|
|
// }
|
||
|
|
// if(ret.STATUS === 30)
|
||
|
|
// {
|
||
|
|
// that.setState({ BtnChargeAgreeDisplay: 'inline' })
|
||
|
|
// }
|
||
|
|
// else
|
||
|
|
// {
|
||
|
|
// that.setState({ BtnChargeAgreeDisplay: 'none' })
|
||
|
|
// }
|
||
|
|
if (that.props.data.tableKey==="2" ||that.props.data.tableKey===undefined) {
|
||
|
|
that.setState({ BtnAgreeDisplay: 'none' })
|
||
|
|
}else{
|
||
|
|
that.setState({ BtnAgreeDisplay: 'inline' })
|
||
|
|
}
|
||
|
|
this.onClickApprove(false);
|
||
|
|
//归档才显示打印和导出按钮
|
||
|
|
// if(ret.PRE_MEETING_STATUS==5){
|
||
|
|
// this.setState({ isFinished: 'inline' })
|
||
|
|
// }
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{ message.error('请先尝试刷新,若仍然加载失败,请联系管理员排查!');}
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
onTableBtnExport() {
|
||
|
|
const enums=this.props.data.enums ? this.props.data.enums :this.props.app.enums ;
|
||
|
|
let TableWrap = document.getElementById('tableId' + this.props.data.id);
|
||
|
|
let Table = TableWrap.getElementsByTagName('table')[0];
|
||
|
|
const wb = XLSX.utils.table_to_book(Table);
|
||
|
|
XLSX.writeFile(wb,"年度监测汇总表.xlsx")
|
||
|
|
}
|
||
|
|
|
||
|
|
onClickApprove=(appVisible)=>{
|
||
|
|
const newtmpData = {
|
||
|
|
data: { id: this.props.data.id, isShow: true,key:guid(),param:this.props.data.param,appVisible:appVisible,BtnAgreeDisplay:'inline'},
|
||
|
|
formCode: "PF123",
|
||
|
|
}
|
||
|
|
this.setState({
|
||
|
|
tmpData: newtmpData,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
closModal = () => {
|
||
|
|
this.setState({
|
||
|
|
isModalVisible: false,
|
||
|
|
});
|
||
|
|
};
|
||
|
|
showModal = (id,quarter) => {
|
||
|
|
let temp=this.state.data.Nav_Details.filter(t=>t.ID === id);
|
||
|
|
this.setState({
|
||
|
|
isModalVisible: true,
|
||
|
|
detailContens:temp[0]?.Nav_Contents.filter(t=>t.QUARTER_TYPE === quarter)
|
||
|
|
});
|
||
|
|
};
|
||
|
|
render() {
|
||
|
|
const { data } = this.state;
|
||
|
|
const enums=this.props.data.enums ? this.props.data.enums :this.props.app.enums ;
|
||
|
|
// let aaa = Math.random();
|
||
|
|
return <div>
|
||
|
|
<div style={{ padding: '10px' }}>
|
||
|
|
<Button onClick={() => this.onClickApprove(true)} style={{ marginRight: '8px'}} icon="export">审批详情</Button>
|
||
|
|
<ReactToPrint
|
||
|
|
trigger={() => <Button style={{ marginLeft: '8px', display: data && data.IS_PUBLISH === 5?"inline":"none" }} type={'default'} icon={'printer'} >打印</Button>}
|
||
|
|
content={() => this.componentRef}
|
||
|
|
/>
|
||
|
|
<Button onClick={() => this.onTableBtnExport()} icon="export" style={{ marginLeft: '8px', display: data && data.IS_PUBLISH === 5?"inline":"none" }}>导出</Button>
|
||
|
|
<Button type="primary" style={{marginLeft: '8px', display: this.state.BtnAgreeDisplay }} onClick={() => this.onTableBtnAgree()} icon="check" >确认</Button>
|
||
|
|
{/* <Button type="primary" style={{marginLeft: '8px', display: this.state.BtnChargeAgreeDisplay }} onClick={() => this.onTableBtnChargeAgree()} icon="check" >已阅</Button> */}
|
||
|
|
</div>
|
||
|
|
<div ref={el => (this.componentRef = el)} style={{ padding: '20px' }} id={'tableId' + this.props.data.id}>
|
||
|
|
<h1 style={{ textAlign: 'center', margin: '15px' }}>年度监测汇总表</h1>
|
||
|
|
{
|
||
|
|
data ?
|
||
|
|
<div>
|
||
|
|
<Descriptions size="middle" bordered className={styles.description}>
|
||
|
|
<Descriptions.Item label="年度">{data.YEAR}</Descriptions.Item>
|
||
|
|
<Descriptions.Item label="汇总时间">{data.SET_TIME}</Descriptions.Item>
|
||
|
|
</Descriptions>
|
||
|
|
</div>:null
|
||
|
|
}
|
||
|
|
{
|
||
|
|
data ? <table style={{ width: '100%', textAlign: 'left'}} className={styles.PrintForm1}>
|
||
|
|
<tr>
|
||
|
|
<td width='150px' className={styles.fontBold}>序号</td>
|
||
|
|
<td className={styles.fontBold}>部门名称</td>
|
||
|
|
<td className={styles.fontBold}>被考核人员</td>
|
||
|
|
<td className={styles.fontBold}>岗位</td>
|
||
|
|
<td className={styles.fontBold}>第一季度得分</td>
|
||
|
|
<td className={styles.fontBold}>第二季度得分</td>
|
||
|
|
<td className={styles.fontBold}>第三季度得分</td>
|
||
|
|
<td className={styles.fontBold}>第四季度得分</td>
|
||
|
|
<td className={styles.fontBold}>年度平均分</td>
|
||
|
|
</tr>
|
||
|
|
{
|
||
|
|
data?.Nav_Details && data?.Nav_Details.map((item,i)=>{
|
||
|
|
return <tr>
|
||
|
|
<td>
|
||
|
|
{i+1}
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{item?.Nav_Department?.NAME}
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{item?.Nav_User?.NAME}
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{item?.Nav_User?.Nav_Person?.Nav_Post?.NAME}
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<a onClick={()=>this.showModal(item.ID,10)}>{item?.FIRST_SCORE}</a>
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<a onClick={()=>this.showModal(item.ID,20)}>{item?.SECOND_SCORE}</a>
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<a onClick={()=>this.showModal(item.ID,30)}>{item?.THIRD_SCORE}</a>
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<a onClick={()=>this.showModal(item.ID,40)}>{item?.FOURTH_SCORE}</a>
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{item?.YEAR_SCORE}
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
})
|
||
|
|
}
|
||
|
|
</table>:null
|
||
|
|
}
|
||
|
|
<FormPage {...this.state.tmpData} />
|
||
|
|
</div>
|
||
|
|
<div style={{ display: 'inline-block' }}>
|
||
|
|
<Modal title="" visible={this.state.isModalVisible}
|
||
|
|
closeModal={this.closModal}
|
||
|
|
onCancel={this.closModal}
|
||
|
|
onOk={this.closModal}
|
||
|
|
footer={null}
|
||
|
|
style={{ width: '100%', height: '100%', top: "300px" }}
|
||
|
|
>
|
||
|
|
{
|
||
|
|
data ? <table style={{ width: '100%', textAlign: 'left'}} className={styles.PrintForm1}>
|
||
|
|
<tr>
|
||
|
|
<td className={styles.fontBold}>序号</td>
|
||
|
|
<td className={styles.fontBold}>安全生产指标考核项目</td>
|
||
|
|
<td className={styles.fontBold}>分数</td>
|
||
|
|
<td className={styles.fontBold}>考核认定评分办法</td>
|
||
|
|
<td className={styles.fontBold}>考核检查情况</td>
|
||
|
|
<td className={styles.fontBold}>改进措施</td>
|
||
|
|
<td className={styles.fontBold}>得分</td>
|
||
|
|
</tr>
|
||
|
|
{
|
||
|
|
this.state.detailContens && this.state.detailContens.map((item,i)=>{
|
||
|
|
return <tr>
|
||
|
|
<td>
|
||
|
|
{i+1}
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{item?.NAME}
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{item.SCORE}
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{item.METHOD}
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{item.CONTENT}
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{item.MEASURES}
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
{item.RESULT_SCORE}
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
})
|
||
|
|
}
|
||
|
|
</table>:null
|
||
|
|
}
|
||
|
|
</Modal>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
export default connect(({ login,app }) => ({ login,app }))(PT036ShowPrint)
|