inSpecial.jsx 33 KB

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