finance.jsx 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. import React from 'react';
  2. import { Icon, Form, Button, Input, Spin, Table, message, Select, Modal, InputNumber, Upload } from 'antd';
  3. import './techProduct.less';
  4. import { beforeUpload } from '../../tools.js';
  5. import moment from 'moment';
  6. import ajax from 'jquery/src/ajax/xhr.js';
  7. import $ from 'jquery/src/ajax';
  8. const FinanceDescFrom = Form.create()(React.createClass({
  9. getInitialState() {
  10. return {
  11. loading: false,
  12. targetKeys: [],
  13. selectedKeys: [],
  14. yearOption: [],
  15. };
  16. },
  17. componentWillMount() {
  18. let d = new Date();
  19. let _me = this;
  20. d = d.getFullYear();
  21. for (let i = d; i > d - 20; i--) {
  22. _me.state.yearOption.push(
  23. <Select.Option value={i.toString()} key={i}>{i}</Select.Option>
  24. )
  25. }
  26. },
  27. handleSubmit(e) {
  28. e.preventDefault();
  29. this.props.form.validateFields((err, values) => {
  30. if (!err) {
  31. this.props.spinState(true);
  32. $.ajax({
  33. method: "POST",
  34. dataType: "json",
  35. crossDomain: false,
  36. url: globalConfig.context + "/techservice/cognizance/disposeFinance",
  37. data: {
  38. id: this.props.data.id,
  39. mainBusinessIncome: values.mainBusinessIncome,
  40. managementCost:values.managementCost,
  41. operatingProfit:values.operatingProfit,
  42. variousTax:values.variousTax,
  43. currentAsset:values.currentAsset,
  44. netFixedAsset:values.netFixedAsset,
  45. totalAsset:values.totalAsset,
  46. netAsset:values.netAsset,
  47. grossProfit:values.grossProfit,
  48. netProfit:values.netProfit,
  49. salesRevenue:values.salesRevenue,
  50. year:this.state.year,
  51. financeUrl: this.state.financeUrl
  52. }
  53. }).done(function (data) {
  54. if (!data.error.length) {
  55. message.success('保存成功!');
  56. this.props.closeModal();
  57. this.props.spinState(false);
  58. this.props.form.resetFields();
  59. } else {
  60. message.warning(data.error[0].message);
  61. this.props.spinState(false);
  62. }
  63. }.bind(this));
  64. }
  65. });
  66. },
  67. render() {
  68. const FormItem = Form.Item;
  69. const { getFieldDecorator } = this.props.form;
  70. const theData = this.props.data;
  71. const formItemLayout = {
  72. labelCol: { span: 10 },
  73. wrapperCol: { span: 12 },
  74. };
  75. const _me = this;
  76. return (
  77. <Form onSubmit={this.handleSubmit} className="activityCost-form">
  78. <div className="activityCost-title"><span>年份: </span>
  79. {
  80. theData.year ? <span>{theData.year}</span> :
  81. <Select placeholder="请选择年份" style={{ width: 200 }}
  82. onSelect={(e, n) => { this.state.year = e }}>
  83. {this.state.yearOption}
  84. </Select>
  85. }
  86. </div>
  87. <div className="clearfix">
  88. <FormItem className="half-item"
  89. {...formItemLayout}
  90. label="主营业务收入(万元)"
  91. >
  92. {getFieldDecorator('mainBusinessIncome', {
  93. rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
  94. initialValue: theData.mainBusinessIncome
  95. })(
  96. <InputNumber />
  97. )}
  98. </FormItem>
  99. <FormItem className="half-item"
  100. {...formItemLayout}
  101. label="管理费用(万元)"
  102. >
  103. {getFieldDecorator('managementCost', {
  104. rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
  105. initialValue: theData.managementCost
  106. })(
  107. <InputNumber />
  108. )}
  109. </FormItem>
  110. <FormItem className="half-item"
  111. {...formItemLayout}
  112. label="营业利润(万元)"
  113. >
  114. {getFieldDecorator('operatingProfit', {
  115. rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
  116. initialValue: theData.operatingProfit
  117. })(
  118. <InputNumber />
  119. )}
  120. </FormItem>
  121. <FormItem className="half-item"
  122. {...formItemLayout}
  123. label="支付的各项税费(万元)"
  124. >
  125. {getFieldDecorator('variousTax', {
  126. rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
  127. initialValue: theData.variousTax
  128. })(
  129. <InputNumber />
  130. )}
  131. </FormItem>
  132. <FormItem className="half-item"
  133. {...formItemLayout}
  134. label="流动资产(万元)"
  135. >
  136. {getFieldDecorator('currentAsset', {
  137. rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
  138. initialValue: theData.currentAsset
  139. })(
  140. <InputNumber />
  141. )}
  142. </FormItem>
  143. <FormItem className="half-item"
  144. {...formItemLayout}
  145. label="固定资产净额(万元)"
  146. >
  147. {getFieldDecorator('netFixedAsset', {
  148. rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
  149. initialValue: theData.netFixedAsset
  150. })(
  151. <InputNumber />
  152. )}
  153. </FormItem>
  154. <FormItem className="half-item"
  155. {...formItemLayout}
  156. label="资产总额(万元)"
  157. >
  158. {getFieldDecorator('totalAsset', {
  159. rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
  160. initialValue: theData.totalAsset
  161. })(
  162. <InputNumber />
  163. )}
  164. </FormItem>
  165. <FormItem className="half-item"
  166. {...formItemLayout}
  167. label="所有者权益合计(万元)"
  168. >
  169. {getFieldDecorator('netAsset', {
  170. rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
  171. initialValue: theData.netAsset
  172. })(
  173. <InputNumber />
  174. )}
  175. </FormItem><FormItem className="half-item"
  176. {...formItemLayout}
  177. label="利润总额(万元)"
  178. >
  179. {getFieldDecorator('grossProfit', {
  180. rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
  181. initialValue: theData.grossProfit
  182. })(
  183. <InputNumber />
  184. )}
  185. </FormItem><FormItem className="half-item"
  186. {...formItemLayout}
  187. label="净利润(万元)"
  188. >
  189. {getFieldDecorator('netProfit', {
  190. rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
  191. initialValue: theData.netProfit
  192. })(
  193. <InputNumber />
  194. )}
  195. </FormItem><FormItem className="half-item"
  196. {...formItemLayout}
  197. label="销售收入(万元)"
  198. >
  199. {getFieldDecorator('salesRevenue', {
  200. rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
  201. initialValue: theData.salesRevenue
  202. })(
  203. <InputNumber />
  204. )}
  205. </FormItem>
  206. </div>
  207. <div className="hrSituation-roster">
  208. <Upload
  209. name="ratepay"
  210. action={globalConfig.context + "/techservice/cognizance/upload"}
  211. data={{ 'sign': this.props.year + 'finance' }}
  212. beforeUpload={beforeUpload}
  213. onChange={(info) => {
  214. if (info.file.status !== 'uploading') {
  215. console.log(info.file, info.fileList);
  216. }
  217. if (info.file.status === 'done') {
  218. message.success(`${info.file.name} 文件上传成功!`);
  219. this.state.financeUrl = info.file.response.data;
  220. } else if (info.file.status === 'error') {
  221. message.error(`${info.file.name} 文件上传失败。`);
  222. }
  223. }}
  224. >
  225. <Button><Icon type="upload" /> 上传文件 </Button>
  226. </Upload>
  227. </div>
  228. <FormItem style={{ marginTop: '20px' }}>
  229. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  230. <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
  231. </FormItem>
  232. </Form >
  233. );
  234. },
  235. }));
  236. const FinanceDesc = React.createClass({
  237. getInitialState() {
  238. return {
  239. visible: false,
  240. loading: false
  241. };
  242. },
  243. componentWillReceiveProps(nextProps) {
  244. this.state.visible = nextProps.showDesc
  245. },
  246. showModal() {
  247. this.setState({
  248. visible: true,
  249. });
  250. },
  251. handleOk() {
  252. this.setState({
  253. visible: false,
  254. });
  255. this.props.closeDesc(false);
  256. },
  257. handleCancel(e) {
  258. this.setState({
  259. visible: false,
  260. });
  261. this.props.closeDesc(false);
  262. },
  263. spinChange(e) {
  264. this.setState({
  265. loading: e
  266. });
  267. },
  268. render() {
  269. return (
  270. <div className="patent-addNew">
  271. <Spin spinning={this.state.loading} className='spin-box'>
  272. <Modal title="财务报表信息" visible={this.state.visible}
  273. onOk={this.handleOk} onCancel={this.handleCancel}
  274. width='800px'
  275. footer=''
  276. >
  277. <FinanceDescFrom data={this.props.data}
  278. spinState={this.spinChange} closeModal={this.handleCancel} />
  279. </Modal>
  280. </Spin>
  281. </div>
  282. );
  283. },
  284. });
  285. const Finance = React.createClass({
  286. loadData(pageNo) {
  287. this.state.data = [];
  288. this.setState({
  289. loading: true
  290. });
  291. $.ajax({
  292. method: "get",
  293. dataType: "json",
  294. crossDomain: false,
  295. url: globalConfig.context + "/techservice/cognizance/finance",
  296. data: {
  297. pageNo: pageNo || 1,
  298. pageSize: this.state.pagination.pageSize
  299. }
  300. }).done((data) => {
  301. if (data.error.length || !data.data || !data.data.list) {
  302. message.warning(data.error[0].message);
  303. return;
  304. };
  305. for (let i = 0; i < data.data.list.length; i++) {
  306. let thisdata = data.data.list[i];
  307. this.state.data.push({
  308. key: i,
  309. id: thisdata.id,
  310. uid: thisdata.uid,
  311. mainBusinessIncome: thisdata.mainBusinessIncome,
  312. managementCost: thisdata.managementCost,
  313. operatingProfit: thisdata.operatingProfit,
  314. variousTax: thisdata.variousTax,
  315. currentAsset: thisdata.currentAsset,
  316. netFixedAsset: thisdata.netFixedAsset,
  317. totalAsset: thisdata.totalAsset,
  318. netAsset: thisdata.netAsset,
  319. grossProfit: thisdata.grossProfit,
  320. netProfit: thisdata.netProfit,
  321. salesRevenue: thisdata.salesRevenue,
  322. year: thisdata.year,
  323. financeUrl: thisdata.financeUrl
  324. });
  325. };
  326. this.state.pagination.current = data.data.pageNo;
  327. this.state.pagination.total = data.data.totalCount;
  328. this.setState({
  329. dataSource: this.state.data,
  330. pagination: this.state.pagination
  331. });
  332. }).always(function () {
  333. this.setState({
  334. loading: false
  335. });
  336. }.bind(this));
  337. },
  338. getInitialState() {
  339. return {
  340. selectedRowKeys: [],
  341. selectedRows: [],
  342. loading: false,
  343. pagination: {
  344. defaultCurrent: 1,
  345. defaultPageSize: 10,
  346. showQuickJumper: true,
  347. pageSize: 10,
  348. onChange: function (page) {
  349. this.loadData(page);
  350. }.bind(this),
  351. showTotal: function (total) {
  352. return '共' + total + '条数据';
  353. }
  354. },
  355. columns: [
  356. {
  357. title: '年份',
  358. dataIndex: 'year',
  359. key: 'year'
  360. }, {
  361. title: '主营业务收入(万元)',
  362. dataIndex: 'mainBusinessIncome',
  363. key: 'mainBusinessIncome'
  364. }, {
  365. title: '管理费用(万元)',
  366. dataIndex: 'managementCost',
  367. key: 'managementCost'
  368. }, {
  369. title: '营业利润(万元)',
  370. dataIndex: 'operatingProfit',
  371. key: 'operatingProfit',
  372. }, {
  373. title: '支付的各项税费(万元)',
  374. dataIndex: 'variousTax',
  375. key: 'variousTax',
  376. }, {
  377. title: '资产总额(万元)',
  378. dataIndex: 'totalAsset',
  379. key: 'totalAsset',
  380. }, {
  381. title: '所有者权益(净资产)(万元)',
  382. dataIndex: 'netAsset',
  383. key: 'netAsset',
  384. }, {
  385. title: '相关附件',
  386. dataIndex: 'financeUrl',
  387. key: 'financeUrl',
  388. render: (text) => {
  389. <a href="" onClick={() => {
  390. window.open(globalConfig.context + "/techservice/patent/downloadFile?path=" + text + "&sign=" + "type")
  391. }}></a>
  392. }
  393. }
  394. ],
  395. dataSource: []
  396. };
  397. },
  398. componentWillMount() {
  399. this.loadData();
  400. },
  401. tableRowClick(record, index) {
  402. this.state.RowData = record;
  403. this.setState({
  404. showDesc: true
  405. });
  406. },
  407. delectRow() {
  408. let deletedIds = [];
  409. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  410. let rowItem = this.state.selectedRows[idx];
  411. if (rowItem.id) {
  412. deletedIds.push(rowItem.id)
  413. }
  414. }
  415. this.setState({
  416. selectedRowKeys: [],
  417. loading: deletedIds.length > 0
  418. });
  419. $.ajax({
  420. method: "POST",
  421. dataType: "json",
  422. crossDomain: false,
  423. url: globalConfig.context + "/techservice/cognizance/deleteFinance",
  424. data: {
  425. ids: deletedIds
  426. }
  427. }).done(function (data) {
  428. if (!data.error.length) {
  429. message.success('保存成功!');
  430. this.setState({
  431. loading: false,
  432. });
  433. } else {
  434. message.warning(data.error[0].message);
  435. };
  436. this.loadData();
  437. }.bind(this));
  438. },
  439. closeDesc(e) {
  440. this.state.showDesc = e;
  441. this.loadData();
  442. },
  443. search() {
  444. this.loadData();
  445. },
  446. reset() {
  447. this.loadData();
  448. },
  449. render() {
  450. const rowSelection = {
  451. selectedRowKeys: this.state.selectedRowKeys,
  452. onChange: (selectedRowKeys, selectedRows) => {
  453. this.setState({
  454. selectedRows: selectedRows,
  455. selectedRowKeys: selectedRowKeys
  456. });
  457. }
  458. };
  459. const hasSelected = this.state.selectedRowKeys.length > 0;
  460. return (
  461. <div className="user-content" >
  462. <div className="content-title">
  463. <span>财务报表信息</span>
  464. </div>
  465. <div className="user-search">
  466. <p>
  467. <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
  468. onClick={this.tableRowClick}>添加<Icon type="plus" /></Button>
  469. <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
  470. disabled={!hasSelected}
  471. onClick={this.delectRow}>删除<Icon type="minus" /></Button>
  472. </p>
  473. </div>
  474. <div className="patent-table">
  475. <Spin spinning={this.state.loading}>
  476. <Table columns={this.state.columns}
  477. dataSource={this.state.dataSource}
  478. pagination={this.state.pagination}
  479. rowSelection={rowSelection}
  480. onRowClick={this.tableRowClick} />
  481. </Spin>
  482. </div>
  483. <FinanceDesc data={this.state.RowData}
  484. showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
  485. </div >
  486. );
  487. }
  488. });
  489. export default Finance;