comPatentChange.jsx 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. import React from 'react';
  2. import { Icon, Modal, message, Spin, Input, Select, DatePicker, Button, Row, Col, Table, Form, Upload } from 'antd';
  3. import './comprehensive.less';
  4. import ajax from 'jquery/src/ajax/xhr.js';
  5. import $ from 'jquery/src/ajax';
  6. import moment from 'moment';
  7. import { copyrightStateList } from '../../../dataDic.js';
  8. import { companySearch, getCopyrightState, getTime, copyrightDownloadFile, beforeUploadFile, getInUrgentTime, getPreview } from '../../../tools.js';
  9. const CopyrightDescForm = Form.create()(React.createClass({
  10. getInitialState() {
  11. return {
  12. visible: false,
  13. loading: false,
  14. stateOption: [],
  15. stateTable: [],
  16. contactsOption: [],
  17. stateColumns: [{
  18. title: '申请状态',
  19. dataIndex: 'status',
  20. key: 'status',
  21. render: (text) => { return getCopyrightState(text) }
  22. }, {
  23. title: '处理时间',
  24. dataIndex: 'recordTimeFormattedDate',
  25. key: 'recordTimeFormattedDate',
  26. }, {
  27. title: '负责人',
  28. dataIndex: 'principal',
  29. key: 'principal',
  30. }, {
  31. title: '操作人',
  32. dataIndex: 'operator',
  33. key: 'operator',
  34. }, {
  35. title: '备注',
  36. dataIndex: 'comment',
  37. key: 'comment',
  38. }]
  39. };
  40. },
  41. componentWillMount() {
  42. this.loadData();
  43. },
  44. loadData(uid, id) {
  45. this.setState({
  46. loading: true
  47. });
  48. $.when($.ajax({
  49. method: "get",
  50. dataType: "json",
  51. crossDomain: false,
  52. cache: false,
  53. url: globalConfig.context + "/api/admin/copyright/logs",
  54. data: {
  55. id: id || this.props.data.id
  56. }
  57. }), $.ajax({
  58. method: "get",
  59. dataType: "json",
  60. crossDomain: false,
  61. cache: false,
  62. url: globalConfig.context + "/api/admin/getContacts",
  63. data: {
  64. uid: uid || this.props.data.uid
  65. }
  66. }), $.ajax({
  67. method: "get",
  68. dataType: "json",
  69. crossDomain: false,
  70. cache: false,
  71. url: globalConfig.context + "/api/admin/copyright/detail",
  72. data: {
  73. id: id || this.props.data.id
  74. }
  75. })).done((data1, data2, data3) => {
  76. let _me = this;
  77. //状态流转table
  78. this.state.stateTable = [];
  79. if (data1[0].error && data1[0].error.length) {
  80. message.warning(data1[0].error[0].message);
  81. } else {
  82. data1[0].data.map(function (item, i) {
  83. _me.state.stateTable.push({
  84. key: i,
  85. recordTimeFormattedDate: item.recordTimeFormattedDate,
  86. status: item.status,
  87. principal: item.principal,
  88. operator: item.operator,
  89. comment: item.comment
  90. });
  91. });
  92. };
  93. //获取联系人
  94. this.state.contactsOption = [];
  95. if (data2[0].error && data2[0].error.length) {
  96. message.warning(data2[0].error[0].message);
  97. } else {
  98. for (let item in data2[0].data) {
  99. let theData = data2[0].data[item];
  100. _me.state.contactsOption.push(
  101. <Select.Option value={item} key={theData}>{theData}</Select.Option>
  102. );
  103. };
  104. };
  105. //获取详细数据
  106. if (!data3[0].data && data3[0].error && data3[0].error.length) {
  107. message.warning(data3[0].error[0].message);
  108. } else if (data3[0].data) {
  109. let detailData = data3[0].data;
  110. this.setState({
  111. id: detailData.id,
  112. province: detailData.province,
  113. postalAddress: detailData.postalAddress,
  114. unitName: detailData.unitName,
  115. serialNumber: detailData.serialNumber,
  116. createTime: detailData.createTime,
  117. acceptTime: detailData.acceptTime,
  118. principal: detailData.principal,
  119. contact: detailData.contact,
  120. copyrightName: detailData.copyrightName,
  121. copyrightNumber: detailData.copyrightNumber,
  122. status: detailData.status,
  123. comment: detailData.comment,
  124. workIssue: detailData.workIssue,
  125. outsource: detailData.outsource,
  126. inUrgent: detailData.inUrgent,
  127. authorizedDate: detailData.authorizedDate,
  128. fisrtContact: detailData.fisrtContact,
  129. secondContact: detailData.secondContact,
  130. thirdContact: detailData.thirdContact,
  131. city: detailData.city,
  132. area: detailData.area,
  133. postcode: detailData.postcode,
  134. certificateUrl: detailData.certificateUrl,
  135. applicationUrl: detailData.applicationUrl,
  136. certificateUrlDownloadFileName: detailData.certificateUrlDownloadFileName,
  137. applicationUrlDownloadFileName: detailData.applicationUrlDownloadFileName,
  138. authorizedDateFormattedDate: detailData.authorizedDateFormattedDate,
  139. createTimeFormattedDate: detailData.createTimeFormattedDate,
  140. acceptTimeFormattedDate: detailData.acceptTimeFormattedDate,
  141. expectTime: [detailData.acceptTime, detailData.inUrgent]
  142. });
  143. };
  144. }).always(function () {
  145. this.setState({
  146. loading: false
  147. });
  148. }.bind(this));
  149. },
  150. componentWillReceiveProps(nextProps) {
  151. if (!this.props.visible && nextProps.visible) {
  152. this.loadData(nextProps.data.uid, nextProps.data.id);
  153. this.state.fileList_copyright_apply = [];
  154. this.state.fileList_copyright_auth = [];
  155. };
  156. },
  157. handleSubmit(e) {
  158. e.preventDefault();
  159. this.props.form.validateFields((err, values) => {
  160. if (values.status || values.principal || values.recordTime || values.comment) {
  161. if (!values.status || !values.principal || !values.recordTime) {
  162. message.warning("请填写完整的状态流转信息!");
  163. return;
  164. };
  165. };
  166. if (!err) {
  167. this.props.spinState(true);
  168. $.ajax({
  169. method: "POST",
  170. dataType: "json",
  171. crossDomain: false,
  172. url: globalConfig.context + "/api/admin/copyright/modify",
  173. data: {
  174. "id": this.props.data.id,
  175. "contact": values.contact, // 联系人, 1,2,3
  176. //"copyrightInfo": values.copyrightInfo, // 软著简介,size 0-255
  177. "copyrightName": values.copyrightName, // 软著名称, size 0-60
  178. "copyrightNumber": values.copyrightNumber,
  179. "outsource": values.outsource, // 外包公司, size 0-60
  180. //"workIssue": values.workIssue, // 派单信息, size 0-128
  181. "inUrgent": values.inUrgent, // 加急天数,
  182. "status": values.status, // 状态
  183. "comment": values.comment, // 备注 size 0-128
  184. "recordTime": values.recordTime ? values.recordTime.format("YYYY-MM-DD HH:mm:ss") : undefined, // 状态修改时间 yyyy-MM-dd HH:mm:ss
  185. "principal": values.principal // 负责人id
  186. }
  187. }).done(function (data) {
  188. if (!data.error.length) {
  189. message.success('保存成功!');
  190. this.props.clickOk();
  191. this.props.form.resetFields();
  192. this.props.spinState(false);
  193. } else {
  194. message.warning(data.error[0].message);
  195. this.props.spinState(false);
  196. }
  197. }.bind(this));
  198. }
  199. });
  200. },
  201. render() {
  202. const FormItem = Form.Item;
  203. const { getFieldDecorator } = this.props.form;
  204. const theData = this.state;
  205. const formItemLayout = {
  206. labelCol: { span: 6 },
  207. wrapperCol: { span: 16 },
  208. };
  209. const _me = this;
  210. return (
  211. <Form onSubmit={this.handleSubmit} id="CopyrightDesc-form">
  212. <Row className="express-desc-row">
  213. <Col span={4}>公司名称</Col>
  214. <Col span={8}>{theData.unitName}</Col>
  215. <Col span={4}>组织机构代码</Col>
  216. <Col span={8}>{theData.unitNumber}</Col>
  217. </Row>
  218. <Row className="express-desc-row">
  219. <Col span={4}>公司地址</Col>
  220. <Col span={8}>{theData.postalAddress}</Col>
  221. <Col span={4}>联系人</Col>
  222. <Col span={8}>
  223. {getFieldDecorator('contact', {
  224. rules: [{ required: true, message: '此项为必填项!' }],
  225. initialValue: theData.contact
  226. })(
  227. <Select
  228. style={{ display: 'inline-block', width: '200px' }}
  229. placeholder='选择一个联系人'>
  230. {this.state.contactsOption}
  231. </Select>
  232. )}
  233. </Col>
  234. </Row>
  235. <p>状态流转记录: </p>
  236. <Table style={{ margin: '10px 0', background: "#eee" }}
  237. pagination={false}
  238. dataSource={this.state.stateTable}
  239. columns={this.state.stateColumns} />
  240. <div className="clearfix" style={{paddingLeft:'4px', paddingTop: '20px', background: '#eee' }}>
  241. <FormItem className="half-item"
  242. {...formItemLayout}
  243. label="状态流转"
  244. >
  245. {getFieldDecorator('status')(
  246. <Select
  247. style={{ width: 200 }}
  248. placeholder="选择一个状态">
  249. {this.props.statusOption}
  250. </Select>
  251. )}
  252. </FormItem>
  253. <FormItem className="half-item"
  254. {...formItemLayout}
  255. label="处理时间"
  256. >
  257. {getFieldDecorator('recordTime')(
  258. <DatePicker />
  259. )}
  260. </FormItem>
  261. <FormItem className="half-item"
  262. {...formItemLayout}
  263. label="负责人"
  264. >
  265. {getFieldDecorator('principal')(
  266. <Select
  267. showSearch
  268. filterOption={companySearch}
  269. placeholder="选择负责人">
  270. {this.props.authorOption}
  271. </Select>
  272. )}
  273. </FormItem>
  274. <FormItem className="half-item"
  275. {...formItemLayout}
  276. label="备注">
  277. {getFieldDecorator('comment')(
  278. <Input />
  279. )}
  280. </FormItem>
  281. </div>
  282. <Row className="express-desc-row">
  283. <Col span={4}>编号</Col>
  284. <Col span={8}>{theData.serialNumber}</Col>
  285. <Col span={4}>外包公司</Col>
  286. <Col span={8}>
  287. {getFieldDecorator('outsource', {
  288. initialValue: theData.outsource
  289. })(
  290. <Input placeholder="请输入外包公司" />
  291. )}
  292. </Col>
  293. </Row>
  294. <Row className="express-desc-row">
  295. <Col span={4}>软著名称</Col>
  296. <Col span={8}>
  297. {getFieldDecorator('copyrightName', {
  298. initialValue: theData.copyrightName
  299. })(
  300. <Input style={{ width: 160 }} placeholder="请输入软著名称" />
  301. )}
  302. </Col>
  303. <Col span={4}>软著编号</Col>
  304. <Col span={8}>
  305. {getFieldDecorator('copyrightNumber', {
  306. initialValue: theData.copyrightNumber
  307. })(
  308. <Input placeholder="请输入软著编号" />
  309. )}
  310. </Col>
  311. </Row>
  312. <Row className="express-desc-row">
  313. <Col span={4}>加急天数</Col>
  314. <Col span={8}>
  315. {getFieldDecorator('inUrgent', {
  316. initialValue: theData.inUrgent ? String(theData.inUrgent) : '0'
  317. })(
  318. <Select
  319. placeholder="请选择加急时间"
  320. style={{ width: 160 }}>
  321. <Select.Option value="0">不加急(45个工作日)</Select.Option>
  322. <Select.Option value="3">3个工作日</Select.Option>
  323. <Select.Option value="5">5个工作日</Select.Option>
  324. <Select.Option value="10">6-10个工作日</Select.Option>
  325. <Select.Option value="15">11-15个工作日</Select.Option>
  326. <Select.Option value="20">16-20个工作日</Select.Option>
  327. <Select.Option value="25">21-25个工作日</Select.Option>
  328. <Select.Option value="30">26-30个工作日</Select.Option>
  329. <Select.Option value="35">31-35个工作日</Select.Option>
  330. </Select>
  331. )}
  332. </Col>
  333. </Row>
  334. {theData.authorizedDateFormattedDate ? <Row className="express-desc-row">
  335. <Col span={4}>下证时间</Col>
  336. <Col span={6}>{theData.authorizedDateFormattedDate}</Col>
  337. </Row> :
  338. <Row className="express-desc-row">
  339. <Col span={4}>下证时间(预计)</Col>
  340. <Col span={6}>
  341. {(() => {
  342. if (theData.expectTime && theData.expectTime[0]) {
  343. if (theData.expectTime[1]) {
  344. return getTime(getInUrgentTime(moment(theData.expectTime[0]), theData.expectTime[1]))
  345. } else {
  346. return getTime(getInUrgentTime(moment(theData.expectTime[0]), 45))
  347. };
  348. };
  349. })()}
  350. </Col>
  351. </Row>}
  352. <div className="hrSituation-roster">
  353. <Upload
  354. name="copyright_apply"
  355. action={globalConfig.context + "/api/admin/copyright/upload"}
  356. data={{ 'sign': 'copyright_apply', id: this.props.data.id }}
  357. beforeUpload={beforeUploadFile}
  358. fileList={this.state.fileList_copyright_apply}
  359. onChange={(info) => {
  360. if (info.file.status !== 'uploading') {
  361. console.log(info.file, info.fileList);
  362. }
  363. if (info.file.status === 'done') {
  364. if (!info.file.response.error.length) {
  365. message.success(`${info.file.name} 文件上传成功!`);
  366. } else {
  367. message.warning(info.file.response.error[0].message);
  368. return;
  369. };
  370. this.state.copyrightApplyUrl = info.file.response.data;
  371. } else if (info.file.status === 'error') {
  372. message.error(`${info.file.name} 文件上传失败。`);
  373. };
  374. this.setState({ fileList_copyright_apply: info.fileList.slice(-1) });
  375. }}
  376. >
  377. <Button><Icon type="upload" /> 上传软著申请书 </Button>
  378. </Upload>
  379. <p style={{ margin: '10px 0' }}>{theData.applicationUrl ?
  380. <span className="download-file">
  381. <a onClick={copyrightDownloadFile.bind(null, theData.id, 'copyright_apply', '/api/admin/copyright/download')}>软著申请书</a>
  382. <a onClick={() => {
  383. getPreview(theData.id, 'copyright', 'copyright_apply', function (data) { window.open('https://view.officeapps.live.com/op/view.aspx?src=' + encodeURIComponent(location.origin + globalConfig.context + "/open/preview?" + data)) });
  384. }}><Icon style={{ fontSize: '16px' }} type="eye-o" /> </a>
  385. </span>
  386. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
  387. </div>
  388. <div className="hrSituation-roster">
  389. <Upload
  390. name="copyright_auth"
  391. action={globalConfig.context + "/api/admin/copyright/upload"}
  392. data={{ 'sign': 'copyright_auth', id: this.props.data.id }}
  393. beforeUpload={beforeUploadFile}
  394. fileList={this.state.fileList_copyright_auth}
  395. onChange={(info) => {
  396. if (info.file.status !== 'uploading') {
  397. console.log(info.file, info.fileList);
  398. }
  399. if (info.file.status === 'done') {
  400. if (!info.file.response.error.length) {
  401. message.success(`${info.file.name} 文件上传成功!`);
  402. } else {
  403. message.warning(info.file.response.error[0].message);
  404. return;
  405. };
  406. this.state.copyrightAuthUrl = info.file.response.data;
  407. } else if (info.file.status === 'error') {
  408. message.error(`${info.file.name} 文件上传失败。`);
  409. };
  410. this.setState({ fileList_copyright_auth: info.fileList.slice(-1) });
  411. }}
  412. >
  413. <Button><Icon type="upload" /> 上传软著证书 </Button>
  414. </Upload>
  415. <p style={{ margin: '10px 0' }}>{
  416. theData.certificateUrl ?
  417. <span className="download-file">
  418. <a onClick={copyrightDownloadFile.bind(null, theData.id, 'copyright_auth', '/api/admin/copyright/download')}>软著证书</a>
  419. <a onClick={() => {
  420. getPreview(theData.id, 'copyright', 'copyright_auth', function (data) { window.open('https://view.officeapps.live.com/op/view.aspx?src=' + encodeURIComponent(location.origin + globalConfig.context + "/open/preview?" + data)) });
  421. }}><Icon style={{ fontSize: '16px' }} type="eye-o" /> </a>
  422. </span>
  423. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
  424. </div>
  425. <FormItem style={{ marginTop: '20px' }}>
  426. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  427. <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
  428. </FormItem>
  429. </Form>
  430. );
  431. }
  432. }));
  433. const CopyrightDesc = React.createClass({
  434. getInitialState() {
  435. return {
  436. visible: false,
  437. loading: false
  438. };
  439. },
  440. componentWillReceiveProps(nextProps) {
  441. this.state.visible = nextProps.showDesc
  442. },
  443. showModal() {
  444. this.setState({
  445. visible: true,
  446. });
  447. },
  448. handleOk() {
  449. this.setState({
  450. visible: false,
  451. });
  452. this.props.closeDesc(false, true);
  453. },
  454. handleCancel(e) {
  455. this.setState({
  456. visible: false,
  457. });
  458. this.props.closeDesc(false);
  459. },
  460. spinChange(e) {
  461. this.setState({
  462. loading: e
  463. });
  464. },
  465. render() {
  466. return (
  467. <div className="patent-addNew">
  468. <Spin spinning={this.state.loading} className='spin-box'>
  469. <Modal title="软著详情" visible={this.state.visible}
  470. onOk={this.handleOk} onCancel={this.handleCancel}
  471. width='800px'
  472. footer=''
  473. >
  474. <CopyrightDescForm
  475. visible={this.state.visible}
  476. authorOption={this.props.authorOption}
  477. statusOption={this.props.statusOption}
  478. data={this.props.data}
  479. spinState={this.spinChange}
  480. closeModal={this.handleCancel}
  481. clickOk={this.handleOk} />
  482. </Modal>
  483. </Spin>
  484. </div>
  485. );
  486. }
  487. });
  488. export default CopyrightDesc;