ratepay.jsx 16 KB

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