123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451 |
- import React from 'react';
- import { Icon, Modal, message, Spin, Input, Select, Button, Row, Col, Table, Form, Upload } from 'antd';
- import './comprehensive.less';
- import ajax from 'jquery/src/ajax/xhr.js';
- import $ from 'jquery/src/ajax';
- import moment from 'moment';
- import { copyrightStateList } from '../../../dataDic.js';
- import { getCopyrightState, getTime, copyrightDownloadFile, beforeUploadFile, getVacations, getInUrgentTime } from '../../../tools.js';
- const CopyrightDescForm = Form.create()(React.createClass({
- getInitialState() {
- return {
- visible: false,
- loading: false,
- stateOption: [],
- stateTable: [],
- contactsOption: [],
- vacations: [],
- stateColumns: [{
- title: '申请状态',
- dataIndex: 'status',
- key: 'status',
- render: (text) => { return getCopyrightState(text) }
- }, {
- title: '处理时间',
- dataIndex: 'recordTimeFormattedDate',
- key: 'recordTimeFormattedDate',
- }, {
- title: '负责人',
- dataIndex: 'principal',
- key: 'principal',
- }, {
- title: '操作人',
- dataIndex: 'operator',
- key: 'operator',
- }, {
- title: '备注',
- dataIndex: 'comment',
- key: 'comment',
- }]
- };
- },
- componentWillMount() {
- let _me = this;
- copyrightStateList.map(function (item) {
- _me.state.stateOption.push(
- <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
- )
- });
- getVacations((data) => { this.setState({ vacations: data }); });
- this.loadData();
- },
- loadData(id) {
- this.setState({
- loading: true
- });
- $.when($.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- cache: false,
- url: globalConfig.context + "/api/user/copyright/logs",
- data: {
- id: id || this.props.data.id
- }
- }), $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- cache: false,
- url: globalConfig.context + "/api/user/cognizance/getContacts"
- }), $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- cache: false,
- url: globalConfig.context + "/api/user/copyright/detail",
- data: {
- id: id || this.props.data.id
- }
- })).done((data1, data2, data3) => {
- let _me = this;
- //状态流转table
- this.state.stateTable = [];
- if (data1[0].error && data1[0].error.length) {
- message.warning(data1[0].error[0].message);
- } else {
- data1[0].data.map(function (item, i) {
- _me.state.stateTable.push({
- key: i,
- recordTimeFormattedDate: item.recordTimeFormattedDate,
- status: item.status,
- principal: item.principal,
- operator: item.operator,
- comment: item.comment
- });
- });
- };
- //获取联系人
- this.state.contactsOption = [];
- if (data2[0].error && data2[0].error.length) {
- message.warning(data2[0].error[0].message);
- } else {
- for (let item in data2[0].data) {
- let theData = data2[0].data[item];
- _me.state.contactsOption.push(
- <Select.Option value={item} key={theData}>{theData}</Select.Option>
- );
- };
- };
- //获取详细数据
- if (!data3[0].data && data3[0].error && data3[0].error.length) {
- message.warning(data3[0].error[0].message);
- } else {
- let detailData = data3[0].data;
- this.setState({
- id: detailData.id,
- province: detailData.province,
- unitName: detailData.unitName,
- postalAddress: detailData.postalAddress,
- orgCode: detailData.orgCode,
- serialNumber: detailData.serialNumber,
- createTime: detailData.createTime,
- acceptTime: detailData.acceptTime,
- principal: detailData.principal,
- contact: detailData.contact,
- copyrightName: detailData.copyrightName,
- copyrightNumber: detailData.copyrightNumber,
- status: detailData.status,
- comment: detailData.comment,
- copyrightInfo: detailData.copyrightInfo,
- workIssue: detailData.workIssue,
- outsource: detailData.outsource,
- inUrgent: detailData.inUrgent,
- authorizedDate: detailData.authorizedDate,
- fisrtContact: detailData.fisrtContact,
- secondContact: detailData.secondContact,
- thirdContact: detailData.thirdContact,
- city: detailData.city,
- area: detailData.area,
- postcode: detailData.postcode,
- certificateUrl: detailData.certificateUrl,
- applicationUrl: detailData.applicationUrl,
- certificateUrlDownloadFileName: detailData.certificateUrlDownloadFileName,
- applicationUrlDownloadFileName: detailData.applicationUrlDownloadFileName,
- authorizedDateFormattedDate: detailData.authorizedDateFormattedDate,
- createTimeFormattedDate: detailData.createTimeFormattedDate,
- acceptTimeFormattedDate: detailData.acceptTimeFormattedDate,
- expectTime: [detailData.acceptTime, detailData.inUrgent]
- });
- };
- }).always(function () {
- this.setState({
- loading: false
- });
- }.bind(this));
- },
- componentWillReceiveProps(nextProps) {
- if (!this.props.visible && nextProps.visible) {
- this.loadData(nextProps.data.id);
- this.state.fileList_copyright_apply = [];
- this.state.fileList_copyright_auth = [];
- this.props.form.resetFields();
- };
- },
- handleSubmit(e) {
- e.preventDefault();
- this.props.form.validateFields((err, values) => {
- if (!err) {
- this.props.spinState(true);
- $.ajax({
- method: "POST",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/user/copyright/modify",
- data: {
- "id": this.props.data.id,
- "contact": values.contact, // 联系人, 1,2,3
- "copyrightInfo": values.copyrightInfo, // 软著简介,size 0-255
- "copyrightName": values.copyrightName, // 软著名称, size 0-60
- //"copyrightNumber": values.copyrightNumber,
- //"outsource": values.outsource, // 外包公司, size 0-60
- //"workIssue": values.workIssue, // 派单信息, size 0-128
- "inUrgent": values.inUrgent, // 加急天数,
- //"status": values.status, // 状态
- //"comment": values.comment, // 备注 size 0-128
- //"recordTime": values.recordTime ? values.recordTime.format("YYYY-MM-DD HH:mm:ss") : undefined, // 状态修改时间 yyyy-MM-dd HH:mm:ss
- //"principal": values.principal, // 负责人id
- }
- }).done(function (data) {
- if (!data.error.length) {
- message.success('保存成功!');
- this.props.clickOk();
- this.props.form.resetFields();
- this.props.spinState(false);
- } else {
- message.warning(data.error[0].message);
- this.props.spinState(false);
- }
- }.bind(this));
- }
- });
- },
- render() {
- const FormItem = Form.Item;
- const { getFieldDecorator } = this.props.form;
- const theData = this.state;
- const formItemLayout = {
- labelCol: { span: 8 },
- wrapperCol: { span: 16 },
- };
- const _me = this;
- return (
- <Form onSubmit={this.handleSubmit} id="CopyrightDesc-form">
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="公司名称" >
- <span>{theData.unitName}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="组织机构代码" >
- <span>{theData.orgCode}</span>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="公司地址" >
- <span>{theData.postalAddress}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="联系人" >
- {getFieldDecorator('contact', {
- rules: [{ required: true, message: '此项为必填项!' }],
- initialValue: theData.contact
- })(
- <Select
- style={{ display: 'inline-block', width: '200px' }}
- placeholder='选择一个联系人'>
- {this.state.contactsOption}
- </Select>
- )}
- </FormItem>
- </div>
- <Row className="express-desc-row">
- <Col span={4}>编号</Col>
- <Col span={8}>{theData.serialNumber}</Col>
- <Col span={4}>软著名称</Col>
- <Col span={8}>
- {getFieldDecorator('copyrightName', {
- initialValue: theData.copyrightName
- })(
- <Input placeholder="请输入软著名称" />
- )}
- </Col>
- </Row>
- <Row className="express-desc-row">
- <Col span={4}>软著编号</Col>
- <Col span={8}>{theData.copyrightNumber}</Col>
- </Row>
- <Row className="express-desc-row">
- <Col span={4}>软著简介</Col>
- <Col span={16}>
- {getFieldDecorator('copyrightInfo', {
- initialValue: theData.copyrightInfo
- })(
- <Input type="textarea"
- placeholder="多行输入"
- rows={6} />
- )}
- </Col>
- </Row>
- <Row className="express-desc-row">
- <Col span={4}>派单详情</Col>
- <Col span={16}>{theData.workIssue}</Col>
- </Row>
- <Row className="express-desc-row">
- <Col span={4}>加急天数</Col>
- <Col span={8}>
- {(() => {
- switch (theData.inUrgent) {
- case 0:
- return '不加急(45个工作日)';
- case 3:
- return '3个工作日';
- case 5:
- return '5个工作日';
- case 10:
- return '6-10个工作日';
- case 15:
- return '11-15个工作日';
- case 20:
- return '16-20个工作日';
- case 25:
- return '21-25个工作日';
- case 30:
- return '26-30个工作日';
- case 35:
- return '31-35个工作日';
- }
- })()}
- </Col>
- </Row>
- {theData.authorizedDateFormattedDate ? <Row className="express-desc-row">
- <Col span={4}>下证时间</Col>
- <Col span={8}>{theData.authorizedDateFormattedDate}</Col>
- </Row> :
- <Row className="express-desc-row">
- <Col span={4}>下证时间(预计)</Col>
- <Col span={6}>
- {(() => {
- if (theData.expectTime && theData.expectTime[0]) {
- if (theData.expectTime[1]) {
- return getTime(getInUrgentTime(moment(theData.expectTime[0]), theData.expectTime[1], this.state.vacations))
- } else {
- return getTime(getInUrgentTime(moment(theData.expectTime[0]), 45, this.state.vacations))
- };
- };
- })()}
- </Col>
- </Row>}
- <div className="hrSituation-roster">
- <Upload
- name="copyright_apply"
- action={globalConfig.context + "/api/user/copyright/upload"}
- data={{ 'sign': 'copyright_apply', id: this.props.data.id }}
- beforeUpload={beforeUploadFile}
- fileList={this.state.fileList_copyright_apply}
- onChange={(info) => {
- if (info.file.status !== 'uploading') {
- // console.log(info.file, info.fileList);
- }
- if (info.file.status === 'done') {
- if (!info.file.response.error.length) {
- message.success(`${info.file.name} 文件上传成功!`);
- } else {
- message.warning(info.file.response.error[0].message);
- return;
- };
- this.state.copyrightApplyUrl = info.file.response.data;
- } else if (info.file.status === 'error') {
- message.error(`${info.file.name} 文件上传失败。`);
- };
- this.setState({ fileList_copyright_apply: info.fileList.slice(-1) });
- }}
- >
- <Button><Icon type="upload" /> 上传软著申请书 </Button>
- </Upload>
- <p style={{ margin: '10px 0' }}>{theData.applicationUrl ? <a onClick={copyrightDownloadFile.bind(null, theData.id, 'copyright_apply', '/api/user/copyright/download')}>软著申请书</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
- </div>
- <div className="hrSituation-roster">
- <Upload
- name="copyright_auth"
- action={globalConfig.context + "/api/user/copyright/upload"}
- data={{ 'sign': 'copyright_auth', id: this.props.data.id }}
- beforeUpload={beforeUploadFile}
- fileList={this.state.fileList_copyright_auth}
- onChange={(info) => {
- if (info.file.status !== 'uploading') {
- // console.log(info.file, info.fileList);
- }
- if (info.file.status === 'done') {
- if (!info.file.response.error.length) {
- message.success(`${info.file.name} 文件上传成功!`);
- } else {
- message.warning(info.file.response.error[0].message);
- return;
- };
- this.state.copyrightAuthUrl = info.file.response.data;
- } else if (info.file.status === 'error') {
- message.error(`${info.file.name} 文件上传失败。`);
- };
- this.setState({ fileList_copyright_auth: info.fileList.slice(-1) });
- }}
- >
- <Button><Icon type="upload" /> 上传软著证书 </Button>
- </Upload>
- <p style={{ margin: '10px 0' }}>{theData.certificateUrl ? <a onClick={copyrightDownloadFile.bind(null, theData.id, 'copyright_auth', '/api/user/copyright/download')}>软著证书</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
- </div>
- <p>状态流转记录: </p>
- <Table size="middle" style={{ margin: '10px 0' }}
- pagination={false}
- dataSource={this.state.stateTable}
- columns={this.state.stateColumns} />
- <FormItem style={{ marginTop: '20px' }}>
- <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
- <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
- </FormItem>
- </Form>
- );
- }
- }));
- const CopyrightDesc = React.createClass({
- getInitialState() {
- return {
- visible: false,
- loading: false
- };
- },
- componentWillReceiveProps(nextProps) {
- this.state.visible = nextProps.showDesc
- },
- showModal() {
- this.setState({
- visible: true,
- });
- },
- handleOk() {
- this.setState({
- visible: false,
- });
- this.props.closeDesc(false, true);
- },
- handleCancel(e) {
- this.setState({
- visible: false,
- });
- this.props.closeDesc(false);
- },
- spinChange(e) {
- this.setState({
- loading: e
- });
- },
- render() {
- return (
- <div className="patent-addNew">
- <Modal maskClosable={false} title="软著详情" visible={this.state.visible}
- onOk={this.handleOk} onCancel={this.handleCancel}
- width='800px'
- footer='' >
- <Spin spinning={this.state.loading} className='spin-box'>
- <CopyrightDescForm
- visible={this.state.visible}
- authorOption={this.props.authorOption}
- data={this.props.data}
- spinState={this.spinChange}
- closeModal={this.handleCancel}
- clickOk={this.handleOk} />
- </Spin>
- </Modal>
- </div>
- );
- }
- });
- export default CopyrightDesc;
|