invoiceApplyListWai.jsx 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038
  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. Upload,
  14. Tabs, Popconfirm
  15. } from "antd";
  16. import {
  17. getProjectStatus,
  18. getProvinceA,
  19. getInvoiceStatus,
  20. getProcessStatus,
  21. getprovince,
  22. getStatus,
  23. getPeople,
  24. splitUrl
  25. } from "@/tools";
  26. const FormItem = Form.Item;
  27. const {TabPane}= Tabs
  28. import OrderDesc from "../orderDetail/orderDesc";
  29. import {ChooseList} from "../../order/orderNew/chooseList";
  30. import {getProjectName} from "../../../tools";
  31. const invoiceApplyListWai = React.createClass({
  32. departmentList() {
  33. this.setState({
  34. loading: true
  35. });
  36. $.ajax({
  37. method: "get",
  38. dataType: "json",
  39. crossDomain: false,
  40. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  41. data: {},
  42. success: function(data) {
  43. let thedata = data.data;
  44. let theArr = [];
  45. if (!thedata) {
  46. if (data.error && data.error.length) {
  47. message.warning(data.error[0].message);
  48. }
  49. } else {
  50. thedata.map(function(item, index) {
  51. theArr.push({
  52. key: index,
  53. name: item.name,
  54. id: item.id
  55. });
  56. });
  57. }
  58. this.setState({
  59. departmentArr: theArr
  60. });
  61. }.bind(this)
  62. }).always(
  63. function() {
  64. this.setState({
  65. loading: false
  66. });
  67. }.bind(this)
  68. );
  69. },
  70. loadData(pageNo) {
  71. this.state.data = [];
  72. this.setState({
  73. loading: true
  74. });
  75. $.ajax({
  76. method: "get",
  77. dataType: "json",
  78. crossDomain: false,
  79. url:
  80. globalConfig.context +
  81. "/api/admin/orderInvoice/financeOrderInvoiceList",
  82. data: {
  83. pageNo: pageNo || 1,
  84. pageSize: this.state.pagination.pageSize,
  85. name: this.state.nameSearch, //客户名称
  86. orderNo: this.state.orderNoSearch,
  87. orderDep: this.state.departmenttList,
  88. type: 1
  89. },
  90. success: function(data) {
  91. let theArr = [];
  92. if (!data.data || !data.data.list) {
  93. if (data.error && data.error.length) {
  94. message.warning(data.error[0].message);
  95. }
  96. } else {
  97. for (let i = 0; i < data.data.list.length; i++) {
  98. let thisdata = data.data.list[i];
  99. theArr.push({
  100. key: i,
  101. id: thisdata.id,
  102. status: thisdata.status,
  103. unitName: thisdata.unitName,
  104. orderNo: thisdata.orderno,
  105. name: thisdata.name,
  106. projectStatus: thisdata.projectStatus,
  107. processStatus: thisdata.processStatus,
  108. amount: thisdata.amount,
  109. sumAmount: thisdata.sumAmount,
  110. createTime: thisdata.createTime
  111. ? new Date(thisdata.createTime).toLocaleString()
  112. : "",
  113. settlementAmount: thisdata.settlementAmount,
  114. notAmount: thisdata.notAmount
  115. });
  116. }
  117. }
  118. this.state.pagination.current = data.data.pageNo;
  119. this.state.pagination.total = data.data.totalCount;
  120. if (data.data && data.data.list && !data.data.list.length) {
  121. this.state.pagination.current = 0;
  122. this.state.pagination.total = 0;
  123. }
  124. this.setState({
  125. totalPage: data.data.totalPage,
  126. dataSource: theArr,
  127. pagination: this.state.pagination
  128. });
  129. }.bind(this)
  130. }).always(
  131. function() {
  132. this.setState({
  133. loading: false
  134. });
  135. }.bind(this)
  136. );
  137. },
  138. tableRowClick(record) {
  139. this.state.RowData = record;
  140. this.setState({
  141. showDesc: true
  142. });
  143. },
  144. closeDesc(e, s) {
  145. this.state.showDesc = e;
  146. if (s) {
  147. this.loadData(this.state.page);
  148. }
  149. },
  150. invoiceData() {
  151. this.setState({
  152. loading: true
  153. });
  154. $.ajax({
  155. method: "get",
  156. dataType: "json",
  157. crossDomain: false,
  158. url:
  159. globalConfig.context + "/api/admin/orderInvoice/selectByIdOrderInvoice",
  160. data: {
  161. id: this.state.id
  162. },
  163. success: function(data) {
  164. let thisdata = data.data;
  165. this.setState({
  166. contractNo: thisdata.contractNo,
  167. orderNo: thisdata.orderNo,
  168. approval: thisdata.approval,
  169. type: thisdata.type,
  170. status: thisdata.status,
  171. remarks: thisdata.remarks,
  172. invoiceType: thisdata.invoiceType,
  173. unitName: thisdata.unitName,
  174. taxNumber: thisdata.taxNumber,
  175. amount: thisdata.amount,
  176. banks: thisdata.banks,
  177. content: thisdata.content,
  178. unitAddress: thisdata.unitAddress,
  179. invoiceRemarks: thisdata.invoiceRemarks,
  180. unitMobile: thisdata.unitMobile,
  181. post: thisdata.post,
  182. addressee: thisdata.addressee,
  183. addresseeMobile: thisdata.addresseeMobile,
  184. addresseeProvince: thisdata.addresseeProvince,
  185. addresseeCity: thisdata.addresseeCity,
  186. addresseeArea: thisdata.addresseeArea,
  187. alreadyAmount: thisdata.alreadyAmount,
  188. recipientAddress: thisdata.recipientAddress,
  189. orgCodeUrl: thisdata.voucherUrl
  190. ? splitUrl(
  191. thisdata.voucherUrl,
  192. ",",
  193. globalConfig.avatarHost + "/upload"
  194. )
  195. : []
  196. });
  197. }.bind(this)
  198. }).done(
  199. function() {
  200. this.setState({
  201. loading: false
  202. });
  203. }.bind(this)
  204. );
  205. },
  206. getInitialState() {
  207. return {
  208. searchMore: true,
  209. assignVisible: false,
  210. releaseDate: [],
  211. totalPage: 0,
  212. boHuivisible: false,
  213. selectedRowKeys: [],
  214. selectedRows: [],
  215. loading: false,
  216. contractNo: "",
  217. reason: "",
  218. foo: 0,
  219. pagination: {
  220. defaultCurrent: 1,
  221. defaultPageSize: 10,
  222. showQuickJumper: true,
  223. pageSize: 10,
  224. onChange: function(page) {
  225. this.loadData(page);
  226. }.bind(this),
  227. showTotal: function(total) {
  228. return "共" + total + "条数据";
  229. }
  230. },
  231. columns: [
  232. {
  233. title: "编号",
  234. dataIndex: "id",
  235. key: "id",
  236. },
  237. {
  238. title: "客户",
  239. dataIndex: "unitName",
  240. key: "unitName"
  241. },
  242. {
  243. title: "跟单人/签单人",
  244. dataIndex: "name",
  245. key: "name"
  246. },
  247. {
  248. title: "开票状态",
  249. dataIndex: "status",
  250. key: "status",
  251. render: text => {
  252. return getStatus(text);
  253. }
  254. },
  255. {
  256. title: "流程状态",
  257. dataIndex: "processStatus",
  258. key: "processStatus",
  259. render: text => {
  260. return getProcessStatus(text);
  261. }
  262. },
  263. {
  264. title: "项目状态",
  265. dataIndex: "projectStatus",
  266. key: "projectStatus",
  267. render: text => {
  268. return getProjectName(text);
  269. }
  270. },
  271. {
  272. title: "申请开票(万)",
  273. dataIndex: "amount",
  274. key: "amount"
  275. },
  276. {
  277. title: "已开票(万)",
  278. dataIndex: "sumAmount",
  279. key: "sumAmount"
  280. },
  281. {
  282. title: "已收款",
  283. dataIndex: "settlementAmount",
  284. key: "settlementAmount"
  285. },
  286. {
  287. title: "未收款",
  288. dataIndex: "notAmount",
  289. key: "notAmount"
  290. },
  291. {
  292. title: "申请时间",
  293. dataIndex: "createTime",
  294. key: "createTime"
  295. },
  296. {
  297. title: "操作",
  298. dataIndex: "caozuo",
  299. key: "caouzo",
  300. render: (_text, record, index) => {
  301. return (
  302. <div>
  303. {
  304. <Button
  305. type="primary"
  306. onClick={e => {
  307. e.stopPropagation(), this.visit(index);
  308. }}
  309. style={{ background: "deepskyblue", border: "none" }}
  310. >
  311. 申请内容
  312. </Button>
  313. }
  314. {record.status !== 2 ? (
  315. <Popconfirm placement="top" title="确定要通过吗?" onConfirm={(e)=>{
  316. e.stopPropagation();
  317. this.setState({ examine: 2 }, () => {
  318. this.sende(record);
  319. });
  320. }} okText="确定" cancelText="取消">
  321. <Button
  322. type="primary"
  323. style={{ marginLeft: "10px" }}
  324. onClick={e => {
  325. e.stopPropagation();
  326. }}
  327. >
  328. 通过
  329. </Button>
  330. </Popconfirm>
  331. ) : (
  332. ""
  333. )}
  334. {record.status !== 2 ? (
  335. <Popconfirm placement="top" title="确定要拒绝吗?" onConfirm={(e)=>{
  336. e.stopPropagation();
  337. this.setState({ examine: 3 }, () => {
  338. this.reject(record);
  339. });
  340. }} okText="确定" cancelText="取消">
  341. <Button
  342. type="danger"
  343. onClick={e => {
  344. e.stopPropagation();
  345. }}
  346. style={{ marginLeft: "10px" }}
  347. >
  348. 拒绝
  349. </Button>
  350. </Popconfirm>
  351. ) : (
  352. ""
  353. )}
  354. {record.status === 2 ? (
  355. <Button
  356. style={{ marginLeft: "10px", color: "black" }}
  357. disabled={true}
  358. >
  359. 已通过
  360. </Button>
  361. ) : (
  362. ""
  363. )}
  364. {
  365. <Button
  366. type="primary"
  367. style={{
  368. marginLeft: "10px",
  369. background: "orangered",
  370. border: "none"
  371. }}
  372. onClick={e => {
  373. e.stopPropagation(), this.inRecord(record, index);
  374. }}
  375. >
  376. 开票记录
  377. </Button>
  378. }
  379. </div>
  380. );
  381. }
  382. }
  383. ],
  384. columnsDate: [
  385. {
  386. title: "编号",
  387. dataIndex: "id",
  388. key: "id"
  389. },
  390. {
  391. title: "订单编号",
  392. dataIndex: "orderno",
  393. key: "orderno"
  394. },
  395. {
  396. title: "开票金额(万元)",
  397. dataIndex: "amount",
  398. key: "amount"
  399. },
  400. {
  401. title: "申请时间",
  402. dataIndex: "createTime",
  403. key: "createTime"
  404. },
  405. {
  406. title: "开票状态",
  407. dataIndex: "status",
  408. key: "status",
  409. render: text => {
  410. return getInvoiceStatus(text);
  411. }
  412. }
  413. ],
  414. dataSource: [],
  415. searchTime: [,]
  416. };
  417. },
  418. loadSend(record) {
  419. this.setState({
  420. loading: true
  421. });
  422. if (this.state.examine === 3 && this.state.reason === "") {
  423. message.warning("拒绝理由不能为空!");
  424. return;
  425. }
  426. $.ajax({
  427. method: "post",
  428. dataType: "json",
  429. crossDomain: false,
  430. url: globalConfig.context + "/api/admin/orderInvoice/financeExamine",
  431. data: {
  432. id: this.state.examine === 2 ? record.id : this.state.id,
  433. examine: this.state.examine,
  434. reason: this.state.reason
  435. },
  436. success: function() {}.bind(this)
  437. }).done(
  438. function() {
  439. this.setState({
  440. loading: false
  441. });
  442. if (this.state.examine === 2) {
  443. message.success("通过成功!");
  444. this.loadData();
  445. } else {
  446. message.success("拒绝成功!");
  447. this.resetReason();
  448. this.rejectCancels();
  449. this.loadData();
  450. }
  451. }.bind(this)
  452. );
  453. },
  454. //重置拒绝理由
  455. resetReason() {
  456. this.setState({
  457. reason: ""
  458. });
  459. },
  460. sende(record) {
  461. this.loadSend(record);
  462. },
  463. commit() {
  464. this.loadSend();
  465. this.setState({
  466. avisible: false
  467. });
  468. },
  469. visit(index) {
  470. this.setState(
  471. {
  472. id: this.state.dataSource[index].id,
  473. avisible: true
  474. },
  475. () => {
  476. this.invoiceData();
  477. }
  478. );
  479. },
  480. visitCancels() {
  481. this.setState({
  482. avisible: false
  483. });
  484. },
  485. reject(record) {
  486. this.setState({
  487. visibleR: true,
  488. id: record.id
  489. });
  490. },
  491. rejectCancels() {
  492. this.setState({
  493. visibleR: false
  494. });
  495. },
  496. inRecordData() {
  497. this.setState({
  498. loading: true
  499. });
  500. $.ajax({
  501. method: "get",
  502. dataType: "json",
  503. crossDomain: false,
  504. url:
  505. globalConfig.context +
  506. "/api/admin/orderInvoice/salesmanOrderInvoiceList",
  507. data: {
  508. orderNo: this.state.orderNo2
  509. },
  510. success: function(data) {
  511. let theArr = [];
  512. let sum = 0;
  513. if (!data.data) {
  514. if (data.error && data.error.length) {
  515. message.warning(data.error[0].message);
  516. }
  517. } else {
  518. for (let i = 0; i < data.data.list.length; i++) {
  519. let thisdata = data.data.list[i];
  520. sum += parseFloat(thisdata.amount);
  521. theArr.push({
  522. id: thisdata.id,
  523. orderno: thisdata.orderno, //订单编号
  524. amount: thisdata.amount, //签单金额
  525. createTime: thisdata.createTime, //流程状态
  526. status: thisdata.status, //结算状态
  527. rejectReason: thisdata.rejectReason
  528. });
  529. }
  530. }
  531. this.setState({
  532. recordData: theArr,
  533. sum: sum.toFixed(6)
  534. });
  535. }.bind(this)
  536. }).done(
  537. function() {
  538. this.setState({
  539. loading: false
  540. });
  541. }.bind(this)
  542. );
  543. },
  544. inRecord(record) {
  545. this.setState(
  546. {
  547. bvisible: true,
  548. orderNo2: record.orderNo
  549. },
  550. () => {
  551. this.inRecordData();
  552. }
  553. );
  554. },
  555. inRecordCanl() {
  556. this.setState({
  557. bvisible: false
  558. });
  559. },
  560. search() {
  561. this.loadData();
  562. },
  563. componentWillMount() {
  564. this.departmentList();
  565. this.loadData();
  566. },
  567. reset() {
  568. this.state.nameSearch = "";
  569. this.state.releaseDate = [];
  570. this.state.orderNoSearch = "";
  571. this.state.processStatus = [];
  572. this.state.departmenttList = [];
  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. render() {
  589. const formItemLayout = {
  590. labelCol: { span: 8 },
  591. wrapperCol: { span: 14 }
  592. };
  593. var departmentArr = this.state.departmentArr || [];
  594. return (
  595. <div className="user-content">
  596. <div className="content-title">
  597. <span>省外开票审核</span>
  598. </div>
  599. <Tabs
  600. defaultActiveKey="1"
  601. onChange={this.callback}
  602. className="test">
  603. <TabPane tab="搜索" key="1">
  604. <div className="user-search">
  605. <Input
  606. placeholder="营销员名称"
  607. value={this.state.nameSearch}
  608. onChange={e => {
  609. this.setState({ nameSearch: e.target.value });
  610. }}
  611. />
  612. <Input
  613. placeholder="订单编号"
  614. value={this.state.orderNoSearch}
  615. onChange={e => {
  616. this.setState({ orderNoSearch: e.target.value });
  617. }}
  618. />
  619. <Select
  620. placeholder="订单部门"
  621. style={{ width: 150, marginRight: 10 }}
  622. value={this.state.departmenttList}
  623. onChange={e => {
  624. this.setState({ departmenttList: e });
  625. }}
  626. >
  627. {departmentArr.map(function(item) {
  628. return <Select.Option key={item.id}>{item.name}</Select.Option>;
  629. })}
  630. </Select>
  631. <Button
  632. type="primary"
  633. onClick={this.search}
  634. style={{ marginLeft: 10 }}
  635. >
  636. 搜索
  637. </Button>
  638. <Button onClick={this.reset}>重置</Button>
  639. </div>
  640. </TabPane>
  641. <TabPane tab="更改表格显示数据" key="2">
  642. <div style={{ marginLeft: 10 }}>
  643. <ChooseList
  644. columns={this.state.columns}
  645. changeFn={this.changeList}
  646. changeList={this.state.changeList}
  647. top={55}
  648. margin={11}
  649. />
  650. </div>
  651. </TabPane>
  652. </Tabs>
  653. <div className="patent-table">
  654. <Spin spinning={this.state.loading}>
  655. <Table
  656. columns={
  657. this.state.changeList
  658. ? this.state.changeList
  659. : this.state.columns
  660. }
  661. scroll={{ x: 1500, y: 0 }}
  662. onRowClick={this.tableRowClick}
  663. dataSource={this.state.dataSource}
  664. pagination={this.state.pagination}
  665. bordered
  666. size="small"
  667. />
  668. </Spin>
  669. </div>
  670. <Modal
  671. visible={this.state.visibleR}
  672. className="admin-desc-content"
  673. footer=""
  674. title="拒绝理由"
  675. width="400px"
  676. onCancel={this.rejectCancels}
  677. >
  678. <Input.TextArea
  679. placeholder="请输入拒绝理由"
  680. rows={4}
  681. value={this.state.reason}
  682. onChange={e => {
  683. this.setState({ reason: e.target.value });
  684. }}
  685. />
  686. <div className="clearfix" style={{ marginTop: "20px" }}>
  687. <Button
  688. loading={this.state.loading}
  689. type="primary"
  690. onClick={e => {
  691. e.stopPropagation();
  692. this.commit();
  693. }}
  694. style={{ float: "right" }}
  695. >
  696. 提交
  697. </Button>
  698. </div>
  699. </Modal>
  700. <Modal
  701. className="admin-desc-content"
  702. footer=""
  703. title="开具发票申请单"
  704. width="900px"
  705. visible={this.state.avisible}
  706. onOk={this.visitOks}
  707. onCancel={this.visitCancels}
  708. >
  709. <Form
  710. layout="horizontal"
  711. id="demand-form"
  712. style={{ paddingBottom: "40px" }}
  713. >
  714. <Spin spinning={this.state.loading}>
  715. <div className="clearfix">
  716. <div className="clearfix">
  717. <FormItem
  718. className="half-item"
  719. {...formItemLayout}
  720. label="合同编号"
  721. >
  722. <span>{this.state.contractNo}</span>
  723. </FormItem>
  724. <FormItem
  725. className="half-item"
  726. {...formItemLayout}
  727. label="备注"
  728. >
  729. <span>{this.state.remarks}</span>
  730. </FormItem>
  731. </div>
  732. <div className="clearfix">
  733. <FormItem
  734. className="half-item"
  735. {...formItemLayout}
  736. label={
  737. <span>
  738. <strong style={{ color: "#f00" }}>*</strong>省内/外
  739. </span>
  740. }
  741. >
  742. <span>{getProvinceA(this.state.type)}</span>
  743. </FormItem>
  744. <FormItem
  745. className="half-item"
  746. {...formItemLayout}
  747. label={
  748. <span>
  749. <strong style={{ color: "#f00" }}>*</strong>特批
  750. </span>
  751. }
  752. >
  753. <span>{this.state.approval === 0 ? "否" : "是"}</span>
  754. </FormItem>
  755. </div>
  756. <hr
  757. style={{
  758. border: "1px dashed #aaa",
  759. width: "90%",
  760. margin: "auto"
  761. }}
  762. />
  763. <div style={{ marginTop: "13px", marginLeft: "16px" }}>
  764. <span style={{ fontSize: "14px" }}>发票内容</span>
  765. </div>
  766. <div className="clearfix">
  767. <FormItem
  768. className="half-item"
  769. {...formItemLayout}
  770. label={
  771. <span>
  772. <strong style={{ color: "#f00" }}>*</strong>发票类型
  773. </span>
  774. }
  775. >
  776. <span>
  777. {this.state.invoiceType === 0
  778. ? "增值税专用发票"
  779. : this.state.invoiceType === 1
  780. ? "增值税普通发票"
  781. : "其他"}
  782. </span>
  783. </FormItem>
  784. </div>
  785. <div className="clearfix">
  786. <FormItem
  787. className="half-item"
  788. {...formItemLayout}
  789. label={
  790. <span>
  791. <strong style={{ color: "#f00" }}>*</strong>单位名称
  792. </span>
  793. }
  794. >
  795. <span>{this.state.unitName}</span>
  796. </FormItem>
  797. <FormItem
  798. className="half-item"
  799. {...formItemLayout}
  800. label={
  801. <span>
  802. <strong style={{ color: "#f00" }}>*</strong>税号
  803. </span>
  804. }
  805. >
  806. <span>{this.state.taxNumber}</span>
  807. </FormItem>
  808. <FormItem
  809. className="half-item"
  810. {...formItemLayout}
  811. label={
  812. <span>
  813. <strong style={{ color: "#f00" }}>*</strong>
  814. 开票金额(万元)
  815. </span>
  816. }
  817. >
  818. <span>{this.state.amount}</span>
  819. </FormItem>
  820. <FormItem
  821. className="half-item"
  822. {...formItemLayout}
  823. label={
  824. <span>
  825. <strong style={{ color: "#f00" }}>*</strong>
  826. 开户行银行账号
  827. </span>
  828. }
  829. >
  830. <span>{this.state.banks}</span>
  831. </FormItem>
  832. <FormItem
  833. className="half-item"
  834. {...formItemLayout}
  835. label={
  836. <span>
  837. <strong style={{ color: "#f00" }}>*</strong>
  838. 开票内容及说明
  839. </span>
  840. }
  841. >
  842. <span>{this.state.content}</span>
  843. </FormItem>
  844. <FormItem
  845. className="half-item"
  846. {...formItemLayout}
  847. label={
  848. <span>
  849. <strong style={{ color: "#f00" }}>*</strong>单位地址
  850. </span>
  851. }
  852. >
  853. <span>{this.state.unitAddress}</span>
  854. </FormItem>
  855. <FormItem
  856. className="half-item"
  857. {...formItemLayout}
  858. label="备注"
  859. >
  860. <span>{this.state.invoiceRemarks}</span>
  861. </FormItem>
  862. <FormItem
  863. className="half-item"
  864. {...formItemLayout}
  865. label={
  866. <span>
  867. <strong style={{ color: "#f00" }}>*</strong>单位电话
  868. </span>
  869. }
  870. >
  871. <span>{this.state.unitMobile}</span>
  872. </FormItem>
  873. </div>
  874. <div className="clearfix">
  875. <FormItem
  876. labelCol={{ span: 4 }}
  877. wrapperCol={{ span: 18 }}
  878. label={
  879. <span>
  880. <strong style={{ color: "#f00" }}>*</strong>附件
  881. </span>
  882. }
  883. >
  884. <Upload
  885. className="demandDetailShow-upload"
  886. listType="picture-card"
  887. fileList={this.state.orgCodeUrl}
  888. onPreview={file => {
  889. this.setState({
  890. previewImage: file.url || file.thumbUrl,
  891. previewVisible: true
  892. });
  893. }}
  894. ></Upload>
  895. <Modal
  896. maskClosable={false}
  897. footer={null}
  898. visible={this.state.previewVisible}
  899. onCancel={() => {
  900. this.setState({ previewVisible: false });
  901. }}
  902. >
  903. <img
  904. alt=""
  905. style={{ width: "100%" }}
  906. src={this.state.previewImage || ""}
  907. />
  908. </Modal>
  909. </FormItem>
  910. </div>
  911. <hr
  912. style={{
  913. border: "1px dashed #aaa",
  914. width: "90%",
  915. margin: "auto"
  916. }}
  917. />
  918. <div className="clearfix" style={{ marginTop: "10px" }}>
  919. <FormItem
  920. className="half-item"
  921. {...formItemLayout}
  922. label="发票是否邮寄:"
  923. >
  924. <span>{this.state.post === 0 ? "是" : "否"}</span>
  925. </FormItem>
  926. </div>
  927. {this.state.post === 0 ? (
  928. <div>
  929. <div className="clearfix">
  930. <FormItem
  931. className="half-item"
  932. {...formItemLayout}
  933. label="收信人姓名"
  934. >
  935. <span>{this.state.addressee}</span>
  936. </FormItem>
  937. <FormItem
  938. className="half-item"
  939. {...formItemLayout}
  940. label="电话"
  941. >
  942. <span>{this.state.addresseeMobile}</span>
  943. </FormItem>
  944. </div>
  945. <div className="clearfix">
  946. <FormItem
  947. className="half-item"
  948. {...formItemLayout}
  949. label="省-市-区"
  950. >
  951. <span>
  952. {getprovince(this.state.addresseeProvince)}/
  953. {getprovince(this.state.addresseeCity)}/
  954. {getprovince(this.state.addresseeArea)}
  955. </span>
  956. </FormItem>
  957. </div>
  958. <div className="clearfix">
  959. <FormItem
  960. className="half-item"
  961. {...formItemLayout}
  962. label="详细地址"
  963. >
  964. <span>{this.state.recipientAddress}</span>
  965. </FormItem>
  966. </div>
  967. </div>
  968. ) : (
  969. ""
  970. )}
  971. <FormItem
  972. className="half-item"
  973. {...formItemLayout}
  974. label={
  975. <span>
  976. <strong style={{ color: "#f00" }}>*</strong>开票金额总计
  977. </span>
  978. }
  979. >
  980. <span>{this.state.alreadyAmount}万元</span>
  981. </FormItem>
  982. </div>
  983. </Spin>
  984. </Form>
  985. </Modal>
  986. <Modal
  987. visible={this.state.bvisible}
  988. footer=""
  989. title="开票历史记录"
  990. className="admin-desc-content"
  991. width="900px"
  992. onCancel={this.inRecordCanl}
  993. >
  994. <Spin spinning={this.state.loading}>
  995. <div className="patent-table">
  996. <Table
  997. columns={this.state.columnsDate}
  998. dataSource={this.state.recordData}
  999. pagination={false}
  1000. bordered
  1001. size="small"
  1002. />
  1003. <div className="clearfix" style={{ marginTop: "20px" }}>
  1004. <FormItem
  1005. className="half-item"
  1006. {...formItemLayout}
  1007. label={<span style={{ fontSize: "14px" }}>开票总计</span>}
  1008. >
  1009. <span>{this.state.sum + "(万元)"}</span>
  1010. </FormItem>
  1011. </div>
  1012. </div>
  1013. </Spin>
  1014. </Modal>
  1015. <OrderDesc
  1016. data={this.state.RowData}
  1017. showDesc={this.state.showDesc}
  1018. closeDesc={this.closeDesc.bind(this)}
  1019. />
  1020. </div>
  1021. );
  1022. }
  1023. });
  1024. export default invoiceApplyListWai;