ratepay.jsx 22 KB

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