outSpecial.jsx 31 KB

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