kaiPiaoModal.jsx 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. import React from "react";
  2. import { Spin, Button, Tabs, Table, message, Modal, Form, Upload } from "antd";
  3. import $ from "jquery/src/ajax";
  4. import {
  5. getProjectStatus,
  6. getProvinceA,
  7. getInvoiceStatus,
  8. getprovince,
  9. getStatus,
  10. getPeople,
  11. splitUrl,
  12. ShowModal,
  13. getProcessStatus,
  14. } from "@/tools";
  15. import ImgList from "../../../common/imgList";
  16. const FormItem = Form.Item;
  17. const KaiPiaoModal = React.createClass({
  18. getInitialState() {
  19. return {
  20. rotateDeg: 0
  21. };
  22. },
  23. componentWillReceiveProps(nextProps) {
  24. this.state = nextProps.data;
  25. this.setState(this.state);
  26. },
  27. downImg() {
  28. let num = 0;
  29. for (let i = 0; i < this.state.orgCodeUrl.length; i++) {
  30. if (this.state.orgCodeUrl[i].url == this.state.previewImage) {
  31. num = i;
  32. }
  33. }
  34. if (num == this.state.orgCodeUrl.length - 1) {
  35. return message.warning("已经是最后一张了哦");
  36. }
  37. this.state.previewImage = this.state.orgCodeUrl[num + 1].url;
  38. this.setState({
  39. previewImage: this.state.previewImage,
  40. rotateDeg: 0,
  41. });
  42. },
  43. upImg() {
  44. let num = 0;
  45. for (let i = 0; i < this.state.orgCodeUrl.length; i++) {
  46. if (this.state.orgCodeUrl[i].url == this.state.previewImage) {
  47. num = i;
  48. }
  49. }
  50. if (num == 0) {
  51. return message.warning("已经是第一张了哦");
  52. }
  53. this.state.previewImage = this.state.orgCodeUrl[num - 1].url;
  54. this.setState({
  55. previewImage: this.state.previewImage,
  56. rotateDeg: 0,
  57. });
  58. },
  59. rotate() {
  60. let rotateDeg = this.state.rotateDeg + 90;
  61. this.setState({
  62. rotateDeg,
  63. });
  64. },
  65. render() {
  66. const formItemLayout = {
  67. labelCol: { span: 8 },
  68. wrapperCol: { span: 14 },
  69. };
  70. return (
  71. <Modal
  72. className="admin-desc-content"
  73. footer=""
  74. title="开具发票申请单"
  75. width="900px"
  76. visible={this.props.visible}
  77. onCancel={this.props.onCancel}
  78. >
  79. <Form
  80. layout="horizontal"
  81. id="demand-form"
  82. style={{ paddingBottom: "40px" }}
  83. >
  84. <Spin spinning={this.props.loading}>
  85. <div className="clearfix">
  86. <div className="clearfix">
  87. <FormItem
  88. className="half-item"
  89. {...formItemLayout}
  90. label="合同编号"
  91. >
  92. <span>{this.state.contractNo}</span>
  93. </FormItem>
  94. <FormItem
  95. className="half-item"
  96. {...formItemLayout}
  97. label="备注"
  98. >
  99. <span>{this.state.remarks}</span>
  100. </FormItem>
  101. </div>
  102. <div className="clearfix">
  103. <FormItem
  104. className="half-item"
  105. {...formItemLayout}
  106. label={
  107. <span>
  108. <strong style={{ color: "#f00" }}>*</strong>省内/外
  109. </span>
  110. }
  111. >
  112. <span>{getProvinceA(this.state.type)}</span>
  113. </FormItem>
  114. <FormItem
  115. className="half-item"
  116. {...formItemLayout}
  117. label={
  118. <span>
  119. <strong style={{ color: "#f00" }}>*</strong>特批
  120. </span>
  121. }
  122. >
  123. <span>{this.state.approval === 0 ? "否" : "是"}</span>
  124. </FormItem>
  125. </div>
  126. <hr
  127. style={{
  128. border: "1px dashed #aaa",
  129. width: "90%",
  130. margin: "auto",
  131. }}
  132. />
  133. <div style={{ marginTop: "13px", marginLeft: "16px" }}>
  134. <span style={{ fontSize: "14px" }}>发票内容</span>
  135. </div>
  136. <div className="clearfix">
  137. <FormItem
  138. className="half-item"
  139. {...formItemLayout}
  140. label={
  141. <span>
  142. <strong style={{ color: "#f00" }}>*</strong>发票类型
  143. </span>
  144. }
  145. >
  146. <span>
  147. {this.state.invoiceType === 0
  148. ? "增值税专用发票"
  149. : this.state.invoiceType === 1
  150. ? "增值税普通发票"
  151. : "其他"}
  152. </span>
  153. </FormItem>
  154. </div>
  155. <div className="clearfix">
  156. <FormItem
  157. className="half-item"
  158. {...formItemLayout}
  159. label={
  160. <span>
  161. <strong style={{ color: "#f00" }}>*</strong>单位名称
  162. </span>
  163. }
  164. >
  165. <span>{this.state.unitName}</span>
  166. </FormItem>
  167. <FormItem
  168. className="half-item"
  169. {...formItemLayout}
  170. label={
  171. <span>
  172. <strong style={{ color: "#f00" }}>*</strong>税号
  173. </span>
  174. }
  175. >
  176. <span>{this.state.taxNumber}</span>
  177. </FormItem>
  178. <FormItem
  179. className="half-item"
  180. {...formItemLayout}
  181. label={
  182. <span>
  183. <strong style={{ color: "#f00" }}>*</strong>
  184. 开票金额(万元)
  185. </span>
  186. }
  187. >
  188. <span>{this.state.amount}</span>
  189. </FormItem>
  190. <FormItem
  191. className="half-item"
  192. {...formItemLayout}
  193. label={
  194. <span>
  195. <strong style={{ color: "#f00" }}>*</strong>
  196. 开户行银行账号
  197. </span>
  198. }
  199. >
  200. <span>{this.state.banks}</span>
  201. </FormItem>
  202. <FormItem
  203. className="half-item"
  204. {...formItemLayout}
  205. label={
  206. <span>
  207. <strong style={{ color: "#f00" }}>*</strong>
  208. 开票内容及说明
  209. </span>
  210. }
  211. >
  212. <span>{this.state.content}</span>
  213. </FormItem>
  214. <FormItem
  215. className="half-item"
  216. {...formItemLayout}
  217. label={
  218. <span>
  219. <strong style={{ color: "#f00" }}>*</strong>单位地址
  220. </span>
  221. }
  222. >
  223. <span>{this.state.unitAddress}</span>
  224. </FormItem>
  225. <FormItem
  226. className="half-item"
  227. {...formItemLayout}
  228. label="备注"
  229. >
  230. <span>{this.state.invoiceRemarks}</span>
  231. </FormItem>
  232. <FormItem
  233. className="half-item"
  234. {...formItemLayout}
  235. label={
  236. <span>
  237. <strong style={{ color: "#f00" }}>*</strong>单位电话
  238. </span>
  239. }
  240. >
  241. <span>{this.state.unitMobile}</span>
  242. </FormItem>
  243. </div>
  244. <div className="clearfix">
  245. <FormItem
  246. labelCol={{ span: 4 }}
  247. wrapperCol={{ span: 18 }}
  248. label={
  249. <span>
  250. <strong style={{ color: "#f00" }}>*</strong>附件
  251. </span>
  252. }
  253. >
  254. <Upload
  255. className="demandDetailShow-upload"
  256. listType="picture-card"
  257. fileList={this.state.orgCodeUrl}
  258. onPreview={(file) => {
  259. this.setState({
  260. previewImage: file.url || file.thumbUrl,
  261. previewVisible: true,
  262. });
  263. }}
  264. />
  265. {/*<div style={{paddingTop:'10px',paddingBottom:'10px'}}>*/}
  266. {/* <ImgList fileList={this.state.orgCodeUrl} ItemWidth={'96px'}/>*/}
  267. {/*</div>*/}
  268. <Modal
  269. maskClosable={false}
  270. footer={null}
  271. width={"50%"}
  272. visible={this.state.previewVisible}
  273. onCancel={() => {
  274. this.setState({ previewVisible: false, rotateDeg: 0 });
  275. }}
  276. >
  277. <img
  278. alt=""
  279. style={{ width: "100%" }}
  280. src={this.state.previewImage || ""}
  281. />
  282. <Button
  283. onClick={this.rotate}
  284. style={{
  285. position: "relative",
  286. left: "50%",
  287. transform: "translateX(-50%)",
  288. }}
  289. >
  290. 旋转
  291. </Button>
  292. <Button
  293. onClick={this.upImg}
  294. style={{
  295. position: "absolute",
  296. left: -81,
  297. top: "50%",
  298. transform: "translateY(-50%)",
  299. }}
  300. >
  301. 上一张
  302. </Button>
  303. <Button
  304. onClick={this.downImg}
  305. style={{
  306. position: "absolute",
  307. right: -81,
  308. top: "50%",
  309. transform: "translateY(-50%)",
  310. }}
  311. >
  312. 下一张
  313. </Button>
  314. </Modal>
  315. </FormItem>
  316. </div>
  317. <hr
  318. style={{
  319. border: "1px dashed #aaa",
  320. width: "90%",
  321. margin: "auto",
  322. }}
  323. />
  324. <div className="clearfix" style={{ marginTop: "10px" }}>
  325. <FormItem
  326. className="half-item"
  327. {...formItemLayout}
  328. label="发票是否邮寄:"
  329. >
  330. <span>{this.state.post === 0 ? "是" : "否"}</span>
  331. </FormItem>
  332. </div>
  333. {this.state.post === 0 ? (
  334. <div>
  335. <div className="clearfix">
  336. <FormItem
  337. className="half-item"
  338. {...formItemLayout}
  339. label="收信人姓名"
  340. >
  341. <span>{this.state.addressee}</span>
  342. </FormItem>
  343. <FormItem
  344. className="half-item"
  345. {...formItemLayout}
  346. label="电话"
  347. >
  348. <span>{this.state.addresseeMobile}</span>
  349. </FormItem>
  350. </div>
  351. <div className="clearfix">
  352. <FormItem
  353. className="half-item"
  354. {...formItemLayout}
  355. label="省-市-区"
  356. >
  357. <span>
  358. {getprovince(this.state.addresseeProvince)}/
  359. {getprovince(this.state.addresseeCity)}/
  360. {getprovince(this.state.addresseeArea)}
  361. </span>
  362. </FormItem>
  363. </div>
  364. <div className="clearfix">
  365. <FormItem
  366. className="half-item"
  367. {...formItemLayout}
  368. label="详细地址"
  369. >
  370. <span>{this.state.recipientAddress}</span>
  371. </FormItem>
  372. </div>
  373. </div>
  374. ) : (
  375. ""
  376. )}
  377. <FormItem
  378. className="half-item"
  379. {...formItemLayout}
  380. label={
  381. <span>
  382. <strong style={{ color: "#f00" }}>*</strong>开票金额总计
  383. </span>
  384. }
  385. >
  386. <span>{this.state.alreadyAmount}万元</span>
  387. </FormItem>
  388. </div>
  389. </Spin>
  390. </Form>
  391. </Modal>
  392. );
  393. },
  394. });
  395. export default KaiPiaoModal;