invoiceApplyList.jsx 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769
  1. import React from "react";
  2. import $ from "jquery/src/ajax";
  3. import "./public.less";
  4. import {
  5. Form,
  6. Button,
  7. Input,
  8. Select,
  9. Spin,
  10. Table,
  11. message,
  12. Modal,
  13. Popconfirm,
  14. Tabs
  15. } from "antd";
  16. import {
  17. getProjectStatus,
  18. getProvinceA,
  19. getInvoiceStatus,
  20. getprovince,
  21. getStatus,
  22. getPeople,
  23. splitUrl,
  24. ShowModal,
  25. getProcessStatus
  26. } from "@/tools";
  27. import { ChooseList } from "../../../../component/manageCenter/order/orderNew/chooseList";
  28. import ShowModalDiv from "@/showModal.jsx";
  29. import OrderDesc from "../orderDetail/orderDesc";
  30. import KaiPiaoModal from "./kaiPiaoModal"
  31. import {getProjectName} from "../../../tools";
  32. const FormItem = Form.Item;
  33. const { TabPane } = Tabs
  34. const invoiceApplyList = React.createClass({
  35. departmentList() {
  36. this.setState({
  37. loading: true
  38. });
  39. $.ajax({
  40. method: "get",
  41. dataType: "json",
  42. crossDomain: false,
  43. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  44. data: {},
  45. success: function (data) {
  46. let thedata = data.data;
  47. let theArr = [];
  48. if (!thedata) {
  49. if (data.error && data.error.length) {
  50. message.warning(data.error[0].message);
  51. }
  52. } else {
  53. thedata.map(function (item, index) {
  54. theArr.push({
  55. key: index,
  56. name: item.name,
  57. id: item.id
  58. });
  59. });
  60. }
  61. this.setState({
  62. departmentArr: theArr
  63. });
  64. }.bind(this)
  65. }).always(
  66. function () {
  67. this.setState({
  68. loading: false
  69. });
  70. }.bind(this)
  71. );
  72. },
  73. loadData(pageNo) {
  74. this.state.data = [];
  75. this.setState({
  76. loading: true
  77. });
  78. $.ajax({
  79. method: "get",
  80. dataType: "json",
  81. crossDomain: false,
  82. url:
  83. globalConfig.context +
  84. "/api/admin/orderInvoice/financeOrderInvoiceList",
  85. data: {
  86. pageNo: pageNo || 1,
  87. pageSize: this.state.pagination.pageSize,
  88. name: this.state.nameSearch, //客户名称
  89. orderNo: this.state.orderNoSearch,
  90. orderDep: this.state.departmenttList,
  91. status: this.state.statusSearch,
  92. type: 0,
  93. approval: this.state.processStatus
  94. },
  95. success: function (data) {
  96. ShowModal(this);
  97. let theArr = [];
  98. if (!data.data || !data.data.list) {
  99. if (data.error && data.error.length) {
  100. message.warning(data.error[0].message);
  101. }
  102. } else {
  103. for (let i = 0; i < data.data.list.length; i++) {
  104. let thisdata = data.data.list[i];
  105. theArr.push({
  106. key: i,
  107. id: thisdata.id,
  108. status: thisdata.status,
  109. unitName: thisdata.unitName,
  110. orderNo: thisdata.orderno,
  111. name: thisdata.name,
  112. processStatus: thisdata.processStatus,
  113. projectStatus: thisdata.projectStatus,
  114. amount: thisdata.amount,
  115. sumAmount: thisdata.sumAmount,
  116. createTime: thisdata.createTime
  117. ? new Date(thisdata.createTime).toLocaleString()
  118. : "",
  119. settlementAmount: thisdata.settlementAmount,
  120. notAmount: thisdata.notAmount
  121. });
  122. }
  123. }
  124. this.state.pagination.current = data.data.pageNo;
  125. this.state.pagination.total = data.data.totalCount;
  126. if (data.data && data.data.list && !data.data.list.length) {
  127. this.state.pagination.current = 0;
  128. this.state.pagination.total = 0;
  129. }
  130. this.setState({
  131. totalPage: data.data.totalPage,
  132. dataSource: theArr,
  133. pagination: this.state.pagination
  134. });
  135. }.bind(this)
  136. }).always(
  137. function () {
  138. this.setState({
  139. loading: false
  140. });
  141. }.bind(this)
  142. );
  143. },
  144. invoiceData() {
  145. this.setState({
  146. loading: true
  147. });
  148. $.ajax({
  149. method: "get",
  150. dataType: "json",
  151. crossDomain: false,
  152. url:
  153. globalConfig.context + "/api/admin/orderInvoice/selectByIdOrderInvoice",
  154. data: {
  155. id: this.state.id
  156. },
  157. success: function (data) {
  158. let thisdata = data.data;
  159. let obj = {
  160. contractNo: thisdata.contractNo,
  161. orderNo: thisdata.orderNo,
  162. approval: thisdata.approval,
  163. type: thisdata.type,
  164. status: thisdata.status,
  165. remarks: thisdata.remarks,
  166. invoiceType: thisdata.invoiceType,
  167. unitName: thisdata.unitName,
  168. taxNumber: thisdata.taxNumber,
  169. amount: thisdata.amount,
  170. banks: thisdata.banks,
  171. content: thisdata.content,
  172. unitAddress: thisdata.unitAddress,
  173. invoiceRemarks: thisdata.invoiceRemarks,
  174. unitMobile: thisdata.unitMobile,
  175. post: thisdata.post,
  176. addressee: thisdata.addressee,
  177. addresseeMobile: thisdata.addresseeMobile,
  178. addresseeProvince: thisdata.addresseeProvince,
  179. addresseeCity: thisdata.addresseeCity,
  180. addresseeArea: thisdata.addresseeArea,
  181. alreadyAmount: thisdata.alreadyAmount,
  182. recipientAddress: thisdata.recipientAddress,
  183. orgCodeUrl: thisdata.voucherUrl
  184. ? splitUrl(
  185. thisdata.voucherUrl,
  186. ",",
  187. globalConfig.avatarHost + "/upload"
  188. )
  189. : []
  190. }
  191. this.setState({
  192. modalData: obj
  193. })
  194. }.bind(this)
  195. }).done(
  196. function () {
  197. this.setState({
  198. loading: false
  199. });
  200. }.bind(this)
  201. );
  202. },
  203. getInitialState() {
  204. return {
  205. searchMore: true,
  206. assignVisible: false,
  207. releaseDate: [],
  208. totalPage: 0,
  209. boHuivisible: false,
  210. selectedRowKeys: [],
  211. // 子组件改变的表格title数组
  212. changeList: undefined,
  213. selectedRows: [],
  214. loading: false,
  215. reason: "",
  216. foo: 0,
  217. pagination: {
  218. defaultCurrent: 1,
  219. defaultPageSize: 10,
  220. showQuickJumper: true,
  221. pageSize: 10,
  222. onChange: function (page) {
  223. this.loadData(page);
  224. }.bind(this),
  225. showTotal: function (total) {
  226. return "共" + total + "条数据";
  227. }
  228. },
  229. columns: [
  230. {
  231. title: "编号",
  232. dataIndex: "id",
  233. key: "id"
  234. // fixed: "left"
  235. },
  236. {
  237. title: "客户",
  238. dataIndex: "unitName",
  239. key: "unitName"
  240. },
  241. {
  242. title: "跟单人/签单人",
  243. dataIndex: "name",
  244. key: "name"
  245. },
  246. {
  247. title: "开票状态",
  248. dataIndex: "status",
  249. key: "status",
  250. render: text => {
  251. return getStatus(text);
  252. }
  253. },
  254. {
  255. title: "流程状态",
  256. dataIndex: "processStatus",
  257. key: "processStatus",
  258. render: text => {
  259. return getProcessStatus(text);
  260. }
  261. },
  262. {
  263. title: "项目状态",
  264. dataIndex: "projectStatus",
  265. key: "projectStatus",
  266. render: text => {
  267. return getProjectName(text);
  268. }
  269. },
  270. {
  271. title: "申请开票(万)",
  272. dataIndex: "amount",
  273. key: "amount"
  274. },
  275. {
  276. title: "已开票(万)",
  277. dataIndex: "sumAmount",
  278. key: "sumAmount"
  279. },
  280. {
  281. title: "已收款",
  282. dataIndex: "settlementAmount",
  283. key: "settlementAmount"
  284. },
  285. {
  286. title: "未收款",
  287. dataIndex: "notAmount",
  288. key: "notAmount"
  289. },
  290. {
  291. title: "申请时间",
  292. dataIndex: "createTime",
  293. key: "createTime"
  294. },
  295. {
  296. title: "操作",
  297. dataIndex: "caozuo",
  298. key: "caouzo",
  299. render: (text, record, index) => {
  300. return (
  301. <div>
  302. {
  303. <Button
  304. type="primary"
  305. onClick={e => {
  306. e.stopPropagation(), this.visit(index);
  307. }}
  308. style={{ background: "deepskyblue", border: "none" }}
  309. >
  310. 申请内容
  311. </Button>
  312. }
  313. {record.status !== 2 ? (
  314. <Popconfirm placement="top" title="确定要通过吗?" onConfirm={(e)=>{
  315. e.stopPropagation();
  316. this.setState({ examine: 2 }, () => {
  317. this.sende(record);
  318. });
  319. }} okText="确定" cancelText="取消">
  320. <Button
  321. type="primary"
  322. style={{ marginLeft: "10px" }}
  323. onClick={e => {
  324. e.stopPropagation()
  325. }}
  326. >
  327. 通过
  328. </Button>
  329. </Popconfirm>
  330. ) : (
  331. ""
  332. )}
  333. {record.status !== 2 ? (
  334. <Popconfirm placement="top" title="确定要拒绝吗?" onConfirm={(e)=>{
  335. e.stopPropagation();
  336. this.setState({ examine: 3 }, () => {
  337. this.reject(record);
  338. });
  339. }} okText="确定" cancelText="取消">
  340. <Button
  341. type="danger"
  342. onClick={e => {
  343. e.stopPropagation()
  344. }}
  345. style={{ marginLeft: "10px" }}
  346. >
  347. 拒绝
  348. </Button>
  349. </Popconfirm>
  350. ) : (
  351. ""
  352. )}
  353. {record.status === 2 ? (
  354. <Button
  355. style={{ marginLeft: "10px", color: "black" }}
  356. disabled={true}
  357. >
  358. 已通过
  359. </Button>
  360. ) : (
  361. ""
  362. )}
  363. {
  364. <Button
  365. type="primary"
  366. style={{
  367. marginLeft: "10px",
  368. background: "orangered",
  369. border: "none"
  370. }}
  371. onClick={e => {
  372. e.stopPropagation(), this.inRecord(record, index);
  373. }}
  374. >
  375. 开票记录
  376. </Button>
  377. }
  378. </div>
  379. );
  380. }
  381. }
  382. ],
  383. columnsDate: [
  384. {
  385. title: "编号",
  386. dataIndex: "id",
  387. key: "id"
  388. },
  389. {
  390. title: "订单编号",
  391. dataIndex: "orderno",
  392. key: "orderno"
  393. },
  394. {
  395. title: "开票金额(万元)",
  396. dataIndex: "amount",
  397. key: "amount"
  398. },
  399. {
  400. title: "申请时间",
  401. dataIndex: "createTime",
  402. key: "createTime"
  403. },
  404. {
  405. title: "开票状态",
  406. dataIndex: "status",
  407. key: "status",
  408. render: text => {
  409. return getInvoiceStatus(text);
  410. }
  411. }
  412. ],
  413. dataSource: [],
  414. searchTime: [,]
  415. };
  416. },
  417. loadSend(record) {
  418. this.setState({
  419. loading: true
  420. });
  421. if (this.state.examine === 3 && this.state.reason === "") {
  422. message.warning("拒绝理由不能为空!");
  423. return;
  424. }
  425. $.ajax({
  426. method: "post",
  427. dataType: "json",
  428. crossDomain: false,
  429. url: globalConfig.context + "/api/admin/orderInvoice/financeExamine",
  430. data: {
  431. id: this.state.examine === 2 ? record.id : this.state.id,
  432. examine: this.state.examine,
  433. reason: this.state.reason
  434. },
  435. success: function () { }.bind(this)
  436. }).done(
  437. function () {
  438. this.setState({
  439. loading: false
  440. });
  441. if (this.state.examine === 2) {
  442. message.success("通过成功!");
  443. this.loadData();
  444. } else {
  445. message.success("拒绝成功!");
  446. this.resetReason();
  447. this.rejectCancels();
  448. this.loadData();
  449. }
  450. }.bind(this)
  451. );
  452. },
  453. //重置拒绝理由
  454. resetReason() {
  455. this.setState({
  456. reason: ""
  457. });
  458. },
  459. sende(record) {
  460. this.loadSend(record);
  461. },
  462. commit() {
  463. this.loadSend();
  464. this.setState({
  465. avisible: false
  466. });
  467. },
  468. visit(index) {
  469. this.setState(
  470. {
  471. id: this.state.dataSource[index].id,
  472. avisible: true
  473. },
  474. () => {
  475. this.invoiceData();
  476. }
  477. );
  478. },
  479. visitCancels() {
  480. this.setState({
  481. avisible: false
  482. });
  483. },
  484. reject(record) {
  485. this.setState({
  486. visibleR: true,
  487. id: record.id
  488. });
  489. },
  490. rejectCancels() {
  491. this.setState({
  492. visibleR: false
  493. });
  494. },
  495. inRecordData() {
  496. this.setState({
  497. loading: true
  498. });
  499. $.ajax({
  500. method: "get",
  501. dataType: "json",
  502. crossDomain: false,
  503. url:
  504. globalConfig.context +
  505. "/api/admin/orderInvoice/salesmanOrderInvoiceList",
  506. data: {
  507. orderNo: this.state.orderNo2
  508. },
  509. success: function (data) {
  510. let theArr = [];
  511. let sum = 0;
  512. if (!data.data) {
  513. if (data.error && data.error.length) {
  514. message.warning(data.error[0].message);
  515. }
  516. } else {
  517. for (let i = 0; i < data.data.list.length; i++) {
  518. let thisdata = data.data.list[i];
  519. sum += parseFloat(thisdata.amount);
  520. theArr.push({
  521. id: thisdata.id,
  522. orderno: thisdata.orderno, //订单编号
  523. amount: thisdata.amount, //签单金额
  524. createTime: thisdata.createTime, //流程状态
  525. status: thisdata.status, //结算状态
  526. rejectReason: thisdata.rejectReason
  527. });
  528. }
  529. }
  530. this.setState({
  531. recordData: theArr,
  532. sum: sum.toFixed(6)
  533. });
  534. }.bind(this)
  535. }).done(
  536. function () {
  537. this.setState({
  538. loading: false
  539. });
  540. }.bind(this)
  541. );
  542. },
  543. inRecord(record) {
  544. this.setState(
  545. {
  546. bvisible: true,
  547. orderNo2: record.orderNo
  548. },
  549. () => {
  550. this.inRecordData();
  551. }
  552. );
  553. },
  554. inRecordCanl() {
  555. this.setState({
  556. bvisible: false
  557. });
  558. },
  559. search() {
  560. this.loadData();
  561. },
  562. componentWillMount() {
  563. this.departmentList();
  564. this.loadData();
  565. },
  566. reset() {
  567. this.state.nameSearch = "";
  568. this.state.releaseDate = [];
  569. this.state.orderNoSearch = "";
  570. this.state.processStatus = [];
  571. this.state.departmenttList = [];
  572. this.state.statusSearch = [];
  573. this.loadData();
  574. },
  575. changeList(arr) {
  576. const newArr = [];
  577. this.state.columns.forEach(item => {
  578. arr.forEach(val => {
  579. if (val === item.title) {
  580. newArr.push(item);
  581. }
  582. });
  583. });
  584. this.setState({
  585. changeList: newArr
  586. });
  587. },
  588. tableRowClick(record) {
  589. this.state.RowData = record;
  590. this.setState({
  591. showDesc: true
  592. });
  593. },
  594. closeDesc(e, s) {
  595. this.state.showDesc = e;
  596. if (s) {
  597. this.loadData(this.state.page);
  598. }
  599. },
  600. render() {
  601. const formItemLayout = {
  602. labelCol: { span: 8 },
  603. wrapperCol: { span: 14 }
  604. };
  605. var departmentArr = this.state.departmentArr || [];
  606. return (
  607. <div className="user-content">
  608. <ShowModalDiv ShowModal={this.state.showModal} />
  609. <div className="content-title" style={{ marginBottom: 10 }}>
  610. <span style={{ fontWeight: 900, fontSize: 16 }}>省内开票审核</span>
  611. </div>
  612. <Tabs defaultActiveKey="1" onChange={this.callback} className="test">
  613. <TabPane tab="搜索" key="1">
  614. <div className="user-search">
  615. <Input
  616. placeholder="营销员名称"
  617. value={this.state.nameSearch}
  618. style={{ marginLeft: 10 }}
  619. onChange={(e) => {
  620. this.setState({ nameSearch: e.target.value });
  621. }}
  622. />
  623. <Input
  624. placeholder="订单编号"
  625. value={this.state.orderNoSearch}
  626. onChange={(e) => {
  627. this.setState({ orderNoSearch: e.target.value });
  628. }}
  629. />
  630. <Select
  631. placeholder="订单部门"
  632. style={{ width: 150, marginRight: 10 }}
  633. value={this.state.departmenttList}
  634. onChange={(e) => {
  635. this.setState({ departmenttList: e });
  636. }}
  637. >
  638. {departmentArr.map(function (item) {
  639. return (
  640. <Select.Option key={item.id}>{item.name}</Select.Option>
  641. );
  642. })}
  643. </Select>
  644. <Button
  645. type="primary"
  646. onClick={this.search}
  647. style={{ marginLeft: 10 }}
  648. >
  649. 搜索
  650. </Button>
  651. <Button onClick={this.reset}>重置</Button>
  652. </div>
  653. </TabPane>
  654. <TabPane tab="更改表格数据" key="2">
  655. <div style={{ marginTop: 10, marginLeft: 10 }}>
  656. <ChooseList
  657. columns={this.state.columns}
  658. changeFn={this.changeList}
  659. changeList={this.state.changeList}
  660. top={55}
  661. />
  662. </div>
  663. </TabPane>
  664. </Tabs>
  665. <div className="patent-table">
  666. <Spin spinning={this.state.loading}>
  667. <Table
  668. columns={
  669. this.state.changeList == undefined
  670. ? this.state.columns
  671. : this.state.changeList
  672. }
  673. scroll={{ x: 1500, y: 0 }}
  674. onRowClick={this.tableRowClick}
  675. dataSource={this.state.dataSource}
  676. pagination={this.state.pagination}
  677. bordered
  678. size="small"
  679. />
  680. </Spin>
  681. </div>
  682. <Modal
  683. visible={this.state.visibleR}
  684. className="admin-desc-content"
  685. footer=""
  686. title="拒绝理由"
  687. width="400px"
  688. onCancel={this.rejectCancels}
  689. >
  690. <Input.TextArea
  691. placeholder="请输入拒绝理由"
  692. rows={4}
  693. value={this.state.reason}
  694. onChange={(e) => {
  695. this.setState({ reason: e.target.value });
  696. }}
  697. ></Input.TextArea>
  698. <div className="clearfix" style={{ marginTop: "20px" }}>
  699. <Button
  700. type="primary"
  701. onClick={(e) => {
  702. e.stopPropagation(), this.commit();
  703. }}
  704. style={{ float: "right" }}
  705. >
  706. 提交
  707. </Button>
  708. </div>
  709. </Modal>
  710. <KaiPiaoModal
  711. visible={this.state.avisible}
  712. data={this.state.modalData}
  713. onCancel={this.visitCancels}
  714. loading={this.state.loading}
  715. />
  716. <Modal
  717. visible={this.state.bvisible}
  718. footer=""
  719. title="开票历史记录"
  720. className="admin-desc-content"
  721. width="900px"
  722. onCancel={this.inRecordCanl}
  723. >
  724. <Spin spinning={this.state.loading}>
  725. <div className="patent-table">
  726. <Table
  727. columns={this.state.columnsDate}
  728. dataSource={this.state.recordData}
  729. pagination={false}
  730. bordered
  731. size="small"
  732. />
  733. <div className="clearfix" style={{ marginTop: "20px" }}>
  734. <FormItem
  735. className="half-item"
  736. {...formItemLayout}
  737. label={<span style={{ fontSize: "14px" }}>开票总计</span>}
  738. >
  739. <span>{this.state.sum + "(万元)"}</span>
  740. </FormItem>
  741. </div>
  742. </div>
  743. </Spin>
  744. </Modal>
  745. <OrderDesc
  746. data={this.state.RowData}
  747. showDesc={this.state.showDesc}
  748. closeDesc={this.closeDesc.bind(this)}
  749. />
  750. </div>
  751. );
  752. }
  753. });
  754. export default invoiceApplyList;