huiKuan.jsx 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187
  1. import React from "react";
  2. import $ from "jquery/src/ajax";
  3. import moment from "moment";
  4. import "./public.less";
  5. import {
  6. Form,
  7. Button,
  8. Input,
  9. Select,
  10. Spin,
  11. Table,
  12. message,
  13. Modal,
  14. Upload,
  15. DatePicker,
  16. Icon,
  17. Tabs,
  18. Popconfirm,
  19. Tag
  20. } from "antd";
  21. import {
  22. getProjectStatus,
  23. getProvinceA,
  24. getInvoiceStatus,
  25. getprovince,
  26. getStatus,
  27. getPeople,
  28. splitUrl,
  29. moneyVerify
  30. } from "@/tools";
  31. import { ChooseList } from "../../../../component/manageCenter/order/orderNew/chooseList";
  32. import "./huiKuan.less"
  33. const { RangePicker } = DatePicker;
  34. const FormItem = Form.Item;
  35. const { TextArea } = Input;
  36. const { TabPane } = Tabs;
  37. const HuiKuan = React.createClass({
  38. loadData(pageNo, pageSize) {
  39. this.state.data = [];
  40. this.setState({
  41. loading: true
  42. });
  43. $.ajax({
  44. method: "get",
  45. dataType: "json",
  46. crossDomain: false,
  47. url: globalConfig.context + "/api/admin/receivables/listReceivables",
  48. data: {
  49. pageNo: pageNo || 1,
  50. pageSize: pageSize || this.state.pagination.pageSize,
  51. // 订单状态 判断是否重复
  52. status: this.state.statusSearch,
  53. // 订单编号
  54. orderNo: this.state.orderNoSearch,
  55. // 合同编号
  56. contractNo: this.state.nameSearch,
  57. // 付款方
  58. corporateName: this.state.payFrom,
  59. // 营销员名字
  60. adminName: this.state.adminName,
  61. // 客户名称
  62. nickname: this.state.nickname,
  63. // 订单所属部门id
  64. orderDepId: this.state.orderBranch,
  65. // 管理员部门id
  66. adminDepId: this.state.principalList
  67. },
  68. success: function (data) {
  69. let theArr = [];
  70. if (!data.data || !data.data.pagination.list) {
  71. if (data.error && data.error.length) {
  72. message.warning(data.error[0].message);
  73. }
  74. } else {
  75. for (let i = 0; i < data.data.pagination.list.length; i++) {
  76. let thisdata = data.data.pagination.list[i];
  77. theArr.push({
  78. key: thisdata.id,
  79. status: {
  80. first: thisdata.status,
  81. second: thisdata.inptStatus
  82. },
  83. orderNo: thisdata.orderNo,
  84. contractNo: thisdata.contractNo,
  85. corporateName: thisdata.corporateName,
  86. nickname: thisdata.nickname,
  87. totalAmount: thisdata.totalAmount,
  88. depName: thisdata.depName,
  89. amount: thisdata.amount,
  90. receivablesTimes: thisdata.receivablesTimes,
  91. createTimes: thisdata.createTimes,
  92. remarks: thisdata.remarks,
  93. financialPayNo: thisdata.financialPayNo,
  94. settlementAmount: thisdata.settlementAmount
  95. });
  96. }
  97. }
  98. this.state.pagination.current = data.data.pagination.pageNo;
  99. this.state.pagination.total = data.data.pagination.totalCount;
  100. if (
  101. data.data &&
  102. data.data.pagination.list &&
  103. !data.data.pagination.list.length
  104. ) {
  105. this.state.pagination.current = 0;
  106. this.state.pagination.total = 0;
  107. }
  108. this.setState({
  109. totalPage: data.data.pagination.totalPage,
  110. dataSource: theArr,
  111. pagination: this.state.pagination,
  112. totalHui: data.data.count ? data.data.count.totalAmount : 0,
  113. hui: data.data.count ? data.data.count.amount : 0
  114. });
  115. // console.log(this.state.dataSource);
  116. }.bind(this)
  117. }).always(
  118. function () {
  119. this.setState({
  120. loading: false
  121. });
  122. }.bind(this)
  123. );
  124. },
  125. departmentList() {
  126. this.setState({
  127. loading: true
  128. });
  129. $.ajax({
  130. method: "get",
  131. dataType: "json",
  132. crossDomain: false,
  133. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  134. data: {},
  135. success: function (data) {
  136. let thedata = data.data;
  137. let theArr = [];
  138. if (!thedata) {
  139. if (data.error && data.error.length) {
  140. message.warning(data.error[0].message);
  141. }
  142. } else {
  143. thedata.map(function (item, index) {
  144. theArr.push({
  145. key: index,
  146. name: item.name,
  147. id: item.id
  148. });
  149. });
  150. }
  151. this.setState({
  152. departmentArr: theArr
  153. });
  154. }.bind(this)
  155. }).always(
  156. function () {
  157. this.setState({
  158. loading: false
  159. });
  160. }.bind(this)
  161. );
  162. },
  163. getInitialState() {
  164. return {
  165. mergeModal: false,
  166. visible: false,
  167. selectedRowKeys: [], // Check here to configure the default column
  168. loading: false,
  169. searchMore: true,
  170. assignVisible: false,
  171. releaseDate: [],
  172. totalPage: 0,
  173. boHuivisible: false,
  174. selectedRows: [],
  175. // 弹出层数据
  176. modalData: {},
  177. // userName: "",
  178. contractNo: "",
  179. reason: "",
  180. foo: 0,
  181. // 子组件改变的表格title数组
  182. changeList: undefined,
  183. pagination: {
  184. defaultCurrent: 1,
  185. defaultPageSize: 10,
  186. showQuickJumper: true,
  187. pageSize: 10,
  188. onChange: function (page) {
  189. this.loadData(page);
  190. }.bind(this),
  191. showTotal: function (total) {
  192. return "共" + total + "条数据";
  193. }
  194. },
  195. paginationModal: {
  196. pageSize: 100,
  197. showTotal: function (total) {
  198. return "共" + total + "条数据";
  199. }
  200. },
  201. columns: [
  202. {
  203. title: "合同编号",
  204. dataIndex: "contractNo",
  205. key: "contractNo",
  206. // fixed: "left"
  207. className: "title-table"
  208. },
  209. {
  210. title: "订单编号",
  211. dataIndex: "orderNo",
  212. key: "orderNo",
  213. className: "title-table"
  214. },
  215. {
  216. title: "流水编号",
  217. dataIndex: "financialPayNo",
  218. key: "financialPayNo",
  219. className: "title-table"
  220. },
  221. {
  222. title: "客户名称",
  223. dataIndex: "nickname",
  224. key: "nickname",
  225. className: "title-table"
  226. },
  227. {
  228. title: "付款方",
  229. dataIndex: "corporateName",
  230. key: "corporateName",
  231. className: "title-table"
  232. },
  233. {
  234. title: "合同额(万元)",
  235. dataIndex: "totalAmount",
  236. key: "totalAmount",
  237. className: "title-table"
  238. },
  239. {
  240. title: "已收款(万元)",
  241. dataIndex: "settlementAmount",
  242. key: "settlementAmount",
  243. className: "title-table"
  244. },
  245. {
  246. title: "本次回款(万元)",
  247. dataIndex: "amount",
  248. key: "amount",
  249. className: "title-table"
  250. },
  251. {
  252. title: "回款时间",
  253. dataIndex: "receivablesTimes",
  254. key: "receivablesTimes",
  255. className: "title-table"
  256. },
  257. {
  258. title: "状态",
  259. dataIndex: "status",
  260. key: "status",
  261. className: "title-table",
  262. render: status => {
  263. let str = "";
  264. let color = "";
  265. let str2 = "";
  266. let color2 = "";
  267. if (status.first == 0) {
  268. color = "#87d068";
  269. str = "正常"
  270. if (status.second == 1) {
  271. str = "内容缺失"
  272. color = "#000";
  273. } else if (status.second == 2) {
  274. str = "订单异常"
  275. color = "#000";
  276. } else if (status.second == 3) {
  277. str = "名称不一致"
  278. color = "#000";
  279. }
  280. } else if (status.first == 1) {
  281. str = "重复";
  282. color = "#f50";
  283. if (status.second == 1) {
  284. str2 = "内容缺失";
  285. color2 = "#000";
  286. } else if (status.second == 2) {
  287. str2 = "订单异常";
  288. color2 = "#000";
  289. } else if (status.second == 3) {
  290. str2 = "名称不一致";
  291. color2 = "#000";
  292. }
  293. } else {
  294. color = "#000";
  295. if (status.first == 2) {
  296. str = "订单异常";
  297. } else if (status.first == 3) {
  298. str = "金额异常";
  299. } else if (status.first == 4) {
  300. str = "名称异常";
  301. } else if (status.first == 5) {
  302. str = "已收款";
  303. }else if (status.first == 6) {
  304. str = "变更锁定";
  305. }
  306. }
  307. return (
  308. <div>
  309. <Tag color={color}>{str}</Tag>
  310. <Tag color={color2} style={{ display: status.first == 1 && status.second != 0 ? "inline-blcok" : "none" }}>{str2}</Tag>
  311. </div>
  312. );
  313. }
  314. },
  315. {
  316. title: "批量导入时间",
  317. dataIndex: "createTimes",
  318. key: "createTimes",
  319. className: "title-table"
  320. },
  321. {
  322. title: "备注",
  323. dataIndex: "remarks",
  324. key: "remarks",
  325. className: "title-table"
  326. }
  327. ],
  328. columnsDate: [
  329. {
  330. title: "编号",
  331. dataIndex: "id",
  332. key: "id"
  333. },
  334. {
  335. title: "订单编号",
  336. dataIndex: "orderno",
  337. key: "orderno"
  338. },
  339. {
  340. title: "开票金额(万元)",
  341. dataIndex: "amount",
  342. key: "amount"
  343. },
  344. {
  345. title: "申请时间",
  346. dataIndex: "createTime",
  347. key: "createTime"
  348. },
  349. {
  350. title: "开票状态",
  351. dataIndex: "status",
  352. key: "status",
  353. render: text => {
  354. return getInvoiceStatus(text);
  355. }
  356. }
  357. ],
  358. dataSource: [],
  359. upLoadFlag: false,
  360. upLoad: {
  361. name: "file",
  362. action: globalConfig.context + "/api/admin/receivables/import",
  363. headers: {
  364. authorization: "authorization-text"
  365. },
  366. onChange: info => {
  367. if (info.file.status == "done") {
  368. if (info.file.response.data == 1) {
  369. message.success("导入成功!");
  370. this.loadData();
  371. } else {
  372. message.warning(info.file.response.error[0].message);
  373. }
  374. }
  375. }
  376. }
  377. };
  378. },
  379. search() {
  380. this.setState({
  381. selectedRowKeys:[]
  382. })
  383. this.loadData();
  384. },
  385. componentWillMount() {
  386. this.loadData();
  387. this.departmentList();
  388. // $("#rcDialogTitle0").on("click", function() {
  389. // alert(123);
  390. // console.log(123);
  391. // });
  392. },
  393. reset() {
  394. this.state.nameSearch = "";
  395. this.state.releaseDate = [];
  396. this.state.orderNoSearch = "";
  397. this.state.adminName = "";
  398. this.state.departmenttList = [];
  399. this.state.nickname = "";
  400. this.state.principalList = [];
  401. this.state.payFrom = "";
  402. this.state.statusSearch = [];
  403. this.state.orderBranch = [];
  404. this.state.statusSearch = [];
  405. this.loadData();
  406. },
  407. changeList(arr) {
  408. const newArr = [];
  409. this.state.columns.forEach(item => {
  410. arr.forEach(val => {
  411. if (val === item.title) {
  412. newArr.push(item);
  413. }
  414. });
  415. });
  416. this.setState({
  417. changeList: newArr
  418. });
  419. },
  420. onSelectChange(selectedRowKeys) {
  421. // console.log("selectedRowKeys changed: ", selectedRowKeys);
  422. this.setState({ selectedRowKeys });
  423. },
  424. showModal() {
  425. this.setState({
  426. visible: true,
  427. choose: true
  428. });
  429. this.state.dataSource.forEach((item) => {
  430. if (item.key == this.state.selectedRowKeys[0]) {
  431. this.setState({
  432. modalData: JSON.parse(JSON.stringify(item))
  433. })
  434. // console.log(this.state.modalData);
  435. }
  436. })
  437. },
  438. tableRowClick(record) {
  439. this.setState({
  440. visible: true,
  441. choose: true
  442. });
  443. this.setState({
  444. modalData: JSON.parse(JSON.stringify(record))
  445. });
  446. },
  447. handleOk() {
  448. if (moneyVerify(this.state.modalData.amount)) return
  449. this.setState({ loading: true });
  450. if (!this.state.choose) {
  451. $.ajax({
  452. method: "POST",
  453. dataType: "json",
  454. crossDomain: false,
  455. url: globalConfig.context + "/api/admin/receivables/addReceivables",
  456. data: {
  457. orderNo: this.state.modalData.orderNo,
  458. amount: this.state.modalData.amount,
  459. receivablesTimes: this.state.modalData.receivablesTimes,
  460. // totalAmount: this.state.modalData.totalAmount,
  461. // contractNo: this.state.modalData.contractNo,
  462. // nickname: this.state.modalData.nickname,
  463. remarks: this.state.modalData.remarks,
  464. corporateName: this.state.modalData.corporateName,
  465. financialPayNo: this.state.modalData.financialPayNo
  466. },
  467. success: function (data) {
  468. if (data.error && data.error.length) {
  469. message.warning(data.error[0].message);
  470. } else {
  471. // console.log("成功", data);
  472. message.success("添加成功!")
  473. this.loadData();
  474. this.state.selectedRowKeys = [];
  475. this.setState({
  476. selectedRowKeys: this.state.selectedRowKeys
  477. });
  478. this.setState({ loading: false, visible: false });
  479. }
  480. }.bind(this)
  481. }).always(
  482. function () {
  483. this.setState({
  484. loading: false
  485. });
  486. }.bind(this)
  487. );
  488. } else {
  489. $.ajax({
  490. method: "POST",
  491. dataType: "json",
  492. crossDomain: false,
  493. url: globalConfig.context + "/api/admin/receivables/updateReceivables",
  494. data: {
  495. orderNo: this.state.modalData.orderNo,
  496. amount: this.state.modalData.amount,
  497. receivablesTimes: this.state.modalData.receivablesTimes,
  498. // totalAmount: this.state.modalData.totalAmount,
  499. // contractNo: this.state.modalData.contractNo,
  500. // nickname: this.state.modalData.nickname,
  501. corporateName: this.state.modalData.corporateName,
  502. financialPayNo: this.state.modalData.financialPayNo,
  503. remarks: this.state.modalData.remarks,
  504. id: this.state.modalData.key
  505. },
  506. success: function (data) {
  507. if (data.error && data.error.length) {
  508. message.warning(data.error[0].message);
  509. } else {
  510. // console.log("成功",data);
  511. message.success("修改成功!")
  512. this.loadData()
  513. this.state.selectedRowKeys = [];
  514. this.setState({
  515. selectedRowKeys: this.state.selectedRowKeys
  516. });
  517. this.setState({ loading: false, visible: false });
  518. }
  519. }.bind(this)
  520. }).always(
  521. function () {
  522. this.setState({
  523. loading: false
  524. });
  525. }.bind(this)
  526. );
  527. }
  528. // this.setState({ loading: false, visible: false });
  529. },
  530. handleCancel() {
  531. // this.loadData()
  532. this.setState({ visible: false });
  533. },
  534. callback(key) {
  535. // console.log(key);
  536. },
  537. delChecked() {
  538. // console.log("被删除列表",this.state.selectedRowKeys);
  539. let ids = this.state.selectedRowKeys.join(",")
  540. $.ajax({
  541. method: "POST",
  542. dataType: "json",
  543. crossDomain: false,
  544. url: globalConfig.context + "/api/admin/receivables/deleteReceivables",
  545. data: {
  546. ids,
  547. type: 0
  548. },
  549. success: function (data) {
  550. if (data.error && data.error.length) {
  551. message.warning(data.error[0].message);
  552. }
  553. message.success("删除成功!")
  554. }.bind(this)
  555. }).always(
  556. function () {
  557. this.loadData()
  558. this.state.selectedRowKeys = [];
  559. this.setState({
  560. selectedRowKeys: this.state.selectedRowKeys
  561. });
  562. }.bind(this)
  563. );
  564. // this.loadData()
  565. },
  566. delAllChecked() {
  567. // console.log("删除全部");
  568. $.ajax({
  569. method: "POST",
  570. dataType: "json",
  571. crossDomain: false,
  572. url: globalConfig.context + "/api/admin/receivables/deleteReceivables",
  573. data: {
  574. type: 1
  575. },
  576. success: function (data) {
  577. if (data.error && data.error.length) {
  578. message.warning(data.error[0].message);
  579. }
  580. message.success("删除全部成功!")
  581. }.bind(this)
  582. }).always(
  583. function () {
  584. this.loadData();
  585. this.state.selectedRowKeys = [];
  586. this.setState({
  587. selectedRowKeys: this.state.selectedRowKeys
  588. });
  589. }.bind(this)
  590. );
  591. // this.loadData()
  592. // console.log("aaa", $(".ant-modal-content"));
  593. },
  594. mergeAll() {
  595. // console.log("合并全部");
  596. this.setState({
  597. confirmLoading:true
  598. })
  599. $.ajax({
  600. method: "POST",
  601. dataType: "json",
  602. crossDomain: false,
  603. url: globalConfig.context + "/api/admin/receivables/batchImport",
  604. data: {},
  605. success: function (data) {
  606. if (data.error && data.error.length) {
  607. message.warning(data.error[0].message);
  608. } else {
  609. message.success("合并成功!请在收款列表中,查看已收款情况。");
  610. this.setState({
  611. mergeModal: false
  612. });
  613. }
  614. }.bind(this)
  615. }).always(
  616. function () {
  617. this.loadData();
  618. this.state.pagination.pageSize = 10
  619. this.state.selectedRowKeys = []
  620. this.setState({
  621. selectedRowKeys: this.state.selectedRowKeys,
  622. pagination: this.state.pagination,
  623. mergeModal: false,
  624. confirmLoading:false,
  625. })
  626. // window.location.reload();
  627. }.bind(this)
  628. );
  629. // message.success("合并成功!请在收款列表中,查看已收款情况。");
  630. },
  631. addModal() {
  632. this.state.modalData = {}
  633. this.setState({
  634. modalData: this.state.modalData,
  635. visible: true,
  636. choose: false
  637. })
  638. },
  639. download() {
  640. window.location.href =
  641. globalConfig.context +
  642. "/api/admin/receivables/downloadTemplate?" +
  643. "sign=receivbles_template";
  644. },
  645. // daoHui() {
  646. // window.location.href =
  647. // globalConfig.context +
  648. // "/api/admin/receivables/exportReceivables"
  649. // },
  650. render() {
  651. const formItemLayout = {
  652. labelCol: { span: 8 },
  653. wrapperCol: { span: 14 }
  654. };
  655. var departmentArr = this.state.departmentArr || [];
  656. const { loading, selectedRowKeys, visible } = this.state;
  657. const rowSelection = {
  658. selectedRowKeys,
  659. onChange: this.onSelectChange,
  660. hideDefaultSelections: true
  661. };
  662. var departmentArr = this.state.departmentArr || [];
  663. return (
  664. <div className="user-content" style={{ position: "relative" }}>
  665. <div className="content-title" style={{ marginBottom: 10 }}>
  666. <span style={{ fontWeight: 900, fontSize: 16 }}>批量回款</span>
  667. </div>
  668. <Tabs defaultActiveKey="1" onChange={this.callback} className="test">
  669. <TabPane tab="搜索" key="1">
  670. <div className="user-search" style={{ marginLeft: 10 }}>
  671. <Input
  672. placeholder="合同编号"
  673. value={this.state.nameSearch}
  674. onChange={e => {
  675. this.setState({ nameSearch: e.target.value });
  676. }}
  677. />
  678. <Input
  679. placeholder="订单编号"
  680. value={this.state.orderNoSearch}
  681. onChange={e => {
  682. this.setState({ orderNoSearch: e.target.value });
  683. }}
  684. />
  685. <Input
  686. placeholder="客户名称"
  687. value={this.state.nickname}
  688. onChange={e => {
  689. this.setState({ nickname: e.target.value });
  690. }}
  691. />
  692. <Select
  693. placeholder="状态"
  694. style={{ width: 150, marginRight: 10 }}
  695. value={this.state.statusSearch}
  696. onChange={e => {
  697. this.setState({ statusSearch: e });
  698. // console.log("状态", e);
  699. }}
  700. >
  701. <Select.Option key={0}>正常</Select.Option>
  702. <Select.Option key={1}>重复</Select.Option>
  703. <Select.Option key={2}>异常</Select.Option>
  704. </Select>
  705. <Input
  706. placeholder="订单负责人"
  707. value={this.state.adminName}
  708. onChange={e => {
  709. this.setState({ adminName: e.target.value });
  710. }}
  711. />
  712. <Select
  713. placeholder="订单所属部门"
  714. style={{ width: 150, marginRight: 10 }}
  715. value={this.state.orderBranch}
  716. onChange={e => {
  717. this.setState({ orderBranch: e });
  718. }}
  719. >
  720. {departmentArr.map(function (item) {
  721. return (
  722. <Select.Option key={item.id}>{item.name}</Select.Option>
  723. );
  724. })}
  725. </Select>
  726. <Select
  727. placeholder="负责人所属部门"
  728. style={{ width: 150, marginRight: 10 }}
  729. value={this.state.principalList}
  730. onChange={e => {
  731. this.setState({ principalList: e });
  732. }}
  733. >
  734. {departmentArr.map(function (item) {
  735. return (
  736. <Select.Option key={item.id}>{item.name}</Select.Option>
  737. );
  738. })}
  739. </Select>
  740. <Input
  741. placeholder="付款方"
  742. value={this.state.payFrom}
  743. onChange={e => {
  744. this.setState({ payFrom: e.target.value });
  745. }}
  746. />
  747. <Button
  748. type="primary"
  749. onClick={this.search}
  750. style={{ marginLeft: 10 }}
  751. >
  752. 搜索
  753. </Button>
  754. <Button onClick={this.reset}>重置</Button>
  755. </div>
  756. </TabPane>
  757. <TabPane tab="更改表格显示数据" key="2">
  758. <div style={{ marginLeft: 10 }}>
  759. <ChooseList
  760. columns={this.state.columns}
  761. changeFn={this.changeList}
  762. changeList={this.state.changeList}
  763. top={55}
  764. margin={11}
  765. display={"inline-block"}
  766. style={{ marginBottom: 17 }}
  767. />
  768. </div>
  769. </TabPane>
  770. <TabPane tab="操作" key="3">
  771. <div
  772. class={123}
  773. style={{
  774. position: "relative",
  775. top: 10,
  776. left: 10,
  777. // zIndex: 99,
  778. // left: 400,
  779. // transform: "translateX(-50%)",
  780. display: "inline-block",
  781. width: 122,
  782. height: 28,
  783. overflow: "hidden"
  784. }}
  785. >
  786. <Upload {...this.state.upLoad}>
  787. <Button
  788. type="primary"
  789. disabled={this.state.dataSource.length != 0 || this.props.look}
  790. >
  791. <Icon type="upload" />
  792. 导入回款列表
  793. </Button>
  794. </Upload>
  795. </div>
  796. <Button
  797. type="primary"
  798. style={{ marginBottom: 11, marginLeft: 25 }}
  799. onClick={this.download}
  800. >
  801. 下载回款列表模板
  802. </Button>
  803. {/* <Button
  804. type="primary"
  805. style={{ marginBottom: 20, marginLeft: 15 }}
  806. onClick={this.daoHui}
  807. >
  808. 导出回款列表
  809. </Button> */}
  810. <Button
  811. type="primary"
  812. style={{ marginBottom: 11, marginLeft: 15 }}
  813. disabled={this.state.selectedRowKeys.length == 1 ? false : true}
  814. onClick={this.showModal}
  815. >
  816. 修改单条数据
  817. </Button>
  818. <Button
  819. type="primary"
  820. style={{ marginBottom: 11, marginLeft: 15 }}
  821. onClick={this.addModal}
  822. >
  823. 添加单条数据
  824. </Button>
  825. <Popconfirm
  826. placement="top"
  827. title={"您确定要删除选中项的回款信息吗?删除后,不可以恢复!"}
  828. onConfirm={this.delChecked}
  829. okText="确定"
  830. cancelText="取消"
  831. >
  832. <Button
  833. primary
  834. type="danger"
  835. style={{ marginBottom: 11, marginLeft: 15 }}
  836. disabled={this.state.selectedRowKeys.length > 0 ? false : true}
  837. >
  838. 删除选中项
  839. </Button>
  840. </Popconfirm>
  841. <Popconfirm
  842. placement="top"
  843. title={"您确定要删除全部的回款信息吗?删除后,不可以恢复!"}
  844. onConfirm={this.delAllChecked}
  845. okText="确定"
  846. cancelText="取消"
  847. >
  848. <Button
  849. type="danger"
  850. style={{ marginBottom: 11, marginLeft: 15 }}
  851. disabled={this.state.dataSource.length == 0}
  852. >
  853. 删除全部
  854. </Button>
  855. </Popconfirm>
  856. <Button
  857. type="danger"
  858. style={{ marginBottom: 11, marginLeft: 15 }}
  859. disabled={this.state.dataSource.length == 0 || this.props.look}
  860. onClick={e => {
  861. this.loadData(1, 100);
  862. this.setState({
  863. mergeModal: true
  864. });
  865. }}
  866. >
  867. 确认合并回款
  868. </Button>
  869. <Button
  870. type="danger"
  871. style={{ marginBottom: 11, marginLeft: 15 }}
  872. disabled={this.state.dataSource.length == 0}
  873. onClick={e => {
  874. this.setState({
  875. selectedRowKeys: []
  876. });
  877. }}
  878. >
  879. 重置选项
  880. </Button>
  881. </TabPane>
  882. </Tabs>
  883. <div className="patent-table" style={{ position: "relative" }}>
  884. <Spin spinning={this.state.loading}>
  885. <Table
  886. columns={
  887. this.state.changeList == undefined
  888. ? this.state.columns
  889. : this.state.changeList
  890. }
  891. scroll={{ x: "max-content" }}
  892. dataSource={this.state.dataSource}
  893. pagination={this.state.pagination}
  894. rowSelection={rowSelection}
  895. onRowDoubleClick={this.tableRowClick.bind(this)}
  896. bordered
  897. size="small"
  898. />
  899. </Spin>
  900. <p
  901. style={{ display: "inline-block", fontSize: "14px", color: "red" }}
  902. >
  903. {
  904. <span style={{ marginRight: 10 }}>
  905. {`回款金额总计(万元):${this.state.hui ? this.state.hui : "0"}`}
  906. </span>
  907. }
  908. {
  909. <span>
  910. {`合同额总计(万元):${
  911. this.state.totalHui ? this.state.totalHui : "0"
  912. }`}
  913. </span>
  914. }
  915. </p>
  916. </div>
  917. <Modal
  918. width={500}
  919. visible={visible}
  920. title="收款记录"
  921. onOk={this.handleOk}
  922. onCancel={this.handleCancel}
  923. footer={[
  924. <Button key="back" onClick={this.handleCancel}>
  925. 取消
  926. </Button>,
  927. <Button
  928. key="submit"
  929. type="primary"
  930. loading={loading}
  931. disabled={this.props.look}
  932. onClick={this.handleOk}
  933. >
  934. 保存
  935. </Button>
  936. ]}
  937. >
  938. <p
  939. style={{
  940. marginBottom: 10,
  941. display: this.state.choose ? "block" : "none"
  942. }}
  943. >
  944. 合同编号:
  945. <Input
  946. style={{
  947. width: "auto"
  948. }}
  949. disabled={this.state.choose}
  950. value={this.state.modalData.contractNo}
  951. onChange={e => {
  952. let val = e.target.value;
  953. this.state.modalData.contractNo = val;
  954. this.setState({ modalData: this.state.modalData });
  955. }}
  956. />
  957. </p>
  958. <p style={{ marginBottom: 10 }}>
  959. 订单编号:
  960. <Input
  961. style={{ width: "auto" }}
  962. value={this.state.modalData.orderNo}
  963. onChange={e => {
  964. let val = e.target.value;
  965. this.state.modalData.orderNo = val;
  966. this.setState({ modalData: this.state.modalData });
  967. }}
  968. />
  969. </p>
  970. <p style={{ marginBottom: 10 }}>
  971. 流水编号:
  972. <Input
  973. style={{ width: "auto" }}
  974. value={this.state.modalData.financialPayNo}
  975. onChange={e => {
  976. let val = e.target.value;
  977. this.state.modalData.financialPayNo = val;
  978. this.setState({ modalData: this.state.modalData });
  979. }}
  980. />
  981. </p>
  982. <p style={{ marginBottom: 10 }}>
  983. 付款方:
  984. <Input
  985. style={{ width: "auto" }}
  986. value={this.state.modalData.corporateName}
  987. onChange={e => {
  988. let val = e.target.value;
  989. this.state.modalData.corporateName = val;
  990. this.setState({ modalData: this.state.modalData });
  991. }}
  992. />
  993. </p>
  994. <p
  995. style={{
  996. marginBottom: 10,
  997. display: this.state.choose ? "block" : "none"
  998. }}
  999. >
  1000. 客户名称:
  1001. <Input
  1002. style={{
  1003. width: "auto"
  1004. }}
  1005. disabled={this.state.choose}
  1006. value={this.state.modalData.nickname}
  1007. onChange={e => {
  1008. let val = e.target.value;
  1009. this.state.modalData.nickname = val;
  1010. this.setState({ modalData: this.state.modalData });
  1011. }}
  1012. />
  1013. </p>
  1014. <p
  1015. style={{
  1016. marginBottom: 10,
  1017. display: this.state.choose ? "block" : "none"
  1018. }}
  1019. >
  1020. 合同额(万元):
  1021. <Input
  1022. style={{
  1023. width: "auto",
  1024. display: this.state.choose ? "inline-block" : "none"
  1025. }}
  1026. disabled={this.state.choose}
  1027. value={this.state.modalData.totalAmount}
  1028. onChange={e => {
  1029. let val = e.target.value;
  1030. this.state.modalData.totalAmount = val;
  1031. this.setState({ modalData: this.state.modalData });
  1032. }}
  1033. />
  1034. </p>
  1035. <p style={{ marginBottom: 10 }}>
  1036. 本次回款(万元):
  1037. <Input
  1038. style={{ width: "auto" }}
  1039. value={this.state.modalData.amount}
  1040. onChange={e => {
  1041. let val = e.target.value;
  1042. this.state.modalData.amount = val;
  1043. this.setState({ modalData: this.state.modalData });
  1044. }}
  1045. />
  1046. </p>
  1047. <p style={{ marginBottom: 10 }}>
  1048. 回款时间:
  1049. <DatePicker
  1050. showTime
  1051. placeholder="选择回款时间"
  1052. value={
  1053. this.state.modalData.receivablesTimes
  1054. ? moment(this.state.modalData.receivablesTimes, "YYYY-MM-DD")
  1055. : ""
  1056. }
  1057. onChange={(v, e) => {
  1058. this.state.modalData.receivablesTimes = e;
  1059. console.log(e);
  1060. this.setState({ modalData: this.state.modalData });
  1061. }}
  1062. onOk={() => { }}
  1063. />
  1064. </p>
  1065. <p
  1066. style={{
  1067. marginBottom: 10,
  1068. display: this.state.choose ? "block" : "none"
  1069. }}
  1070. >
  1071. 批量导入时间:
  1072. <Input
  1073. style={{ width: "auto" }}
  1074. value={this.state.modalData.createTimes}
  1075. disabled
  1076. onChange={e => {
  1077. let val = e.target.value;
  1078. this.state.modalData.createTimes = val;
  1079. this.setState({ modalData: this.state.modalData });
  1080. }}
  1081. />
  1082. </p>
  1083. <p style={{ marginBottom: 10 }}>
  1084. <span style={{ display: "inline-block", marginBottom: 20 }}>
  1085. 备注:
  1086. </span>
  1087. <TextArea
  1088. style={{ width: "70%" }}
  1089. value={this.state.modalData.remarks}
  1090. onChange={e => {
  1091. this.state.modalData.remarks = e.target.value;
  1092. // console.log(e);
  1093. this.setState({ modalData: this.state.modalData });
  1094. }}
  1095. placeholder="请输入备注信息"
  1096. autosize={{ minRows: 3, maxRows: 5 }}
  1097. />
  1098. </p>
  1099. </Modal>
  1100. <Modal
  1101. title="确认合并列表"
  1102. visible={this.state.mergeModal}
  1103. width={1300}
  1104. onOk={this.mergeAll}
  1105. confirmLoading={this.state.confirmLoading}
  1106. onCancel={() => {
  1107. this.setState({
  1108. mergeModal: false
  1109. });
  1110. }}
  1111. >
  1112. <div className="patent-table" style={{ position: "relative" }}>
  1113. <Spin spinning={this.state.loading}>
  1114. <Table
  1115. columns={this.state.columns}
  1116. scroll={{ x: "max-content" }}
  1117. dataSource={this.state.dataSource}
  1118. bordered
  1119. size="small"
  1120. pagination={this.state.paginationModal}
  1121. />
  1122. </Spin>
  1123. <p
  1124. style={{
  1125. display: "inline-block",
  1126. fontSize: "14px",
  1127. color: "red"
  1128. }}
  1129. >
  1130. {
  1131. <span style={{ marginRight: 10 }}>
  1132. {`回款金额总计(万元):${
  1133. this.state.hui ? this.state.hui : "0"
  1134. }`}
  1135. </span>
  1136. }
  1137. {
  1138. <span>
  1139. {`合同额总计(万元):${
  1140. this.state.totalHui ? this.state.totalHui : "0"
  1141. }`}
  1142. </span>
  1143. }
  1144. </p>
  1145. </div>
  1146. </Modal>
  1147. </div>
  1148. );
  1149. }
  1150. });
  1151. export default HuiKuan;