billing.jsx 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441
  1. import React from 'react';
  2. import $ from 'jquery/src/ajax';
  3. import { Form, Radio, Icon, Button, Input, Spin, Table, message, DatePicker, Modal, Upload, Popconfirm, Cascader, Tabs, Select } from 'antd';
  4. import NewService from "./addService.jsx";
  5. import moment from 'moment';
  6. import '../userMangagement.less';
  7. import { areaSelect } from '@/NewDicProvinceList';
  8. import {
  9. getApprovedState,
  10. getprovince,
  11. getProcessStatus,
  12. getLiquidationStatus,
  13. getNewOrderStatus,
  14. beforeUploadFile,
  15. getProvinceA,
  16. getInvoiceStatus,
  17. splitUrl,
  18. ShowModal,
  19. getProjectStatus, getProjectName
  20. } from "../../../tools.js";
  21. import ShowModalDiv from "@/showModal.jsx";
  22. import { ChooseList } from "../orderNew/chooseList";
  23. import ReactToPrint from "react-to-print";
  24. import Project from "../../../../component/project";
  25. import ImgList from "../../../common/imgList";
  26. const { Option } = Select;
  27. const { TabPane } = Tabs;
  28. const PicturesWall = React.createClass({
  29. getInitialState() {
  30. return {
  31. previewVisible: false,
  32. previewImage: '',
  33. fileList: this.props.pictureUrl,
  34. }
  35. },
  36. getDefaultProps() {
  37. return {
  38. changeClick: this.modifyChange
  39. }
  40. },
  41. handleCancel() {
  42. this.setState({ previewVisible: false })
  43. },
  44. handlePreview(file) {
  45. this.setState({
  46. previewImage: file.url || file.thumbUrl,
  47. previewVisible: true,
  48. });
  49. },
  50. handleChange(info) {
  51. let fileList = info.fileList;
  52. this.setState({ fileList });
  53. this.props.fileList(fileList);
  54. },
  55. componentWillReceiveProps(nextProps) {
  56. this.state.fileList = nextProps.pictureUrl;
  57. },
  58. render() {
  59. const { previewVisible, previewImage, fileList } = this.state;
  60. const uploadButton = (
  61. <div>
  62. <Icon type="plus" />
  63. <div className="ant-upload-text">点击上传</div>
  64. </div>
  65. );
  66. return (
  67. <div style={{ display: "inline-block" }}>
  68. <ImgList
  69. domId={this.props.domId}
  70. uploadConfig={{
  71. action:globalConfig.context + "/api/admin/orderInvoice/uploadOrderInvoiceFile",
  72. data:{ 'sign': 'order_invoice_file' },
  73. multiple:true,
  74. listType:"picture-card",
  75. }}
  76. onChange={(infor)=>{
  77. this.handleChange(infor)
  78. }}
  79. fileList={fileList}
  80. />
  81. </div>
  82. );
  83. }
  84. });
  85. const MyService = Form.create()(
  86. React.createClass({
  87. loadData(pageNo) {
  88. this.state.data = [];
  89. this.setState({
  90. loading: true
  91. });
  92. $.ajax({
  93. method: "get",
  94. dataType: "json",
  95. crossDomain: false,
  96. url: globalConfig.context + "/api/admin/newOrder/orderNewList",
  97. data: {
  98. pageNo: pageNo || 1,
  99. pageSize: this.state.pagination.pageSize,
  100. specially: 0,
  101. name: this.state.customerName,
  102. orderNo: this.state.searchOrderNo,
  103. depId: this.state.departmenttSearch,
  104. starTime: this.state.releaseDate[0],
  105. endTime: this.state.releaseDate[1],
  106. liquidationStatus: this.state.liquidationStatusSearch,
  107. contractNo: this.state.contractNoSearch,
  108. depId: this.state.departmenttList,
  109. approval: this.state.approvalSearch,
  110. amountStatus: this.state.amountStatus
  111. },
  112. success: function (data) {
  113. ShowModal(this);
  114. let theArr = [];
  115. if (!data.data) {
  116. if (data.error && data.error.length) {
  117. message.warning(data.error[0].message);
  118. }
  119. } else {
  120. for (let i = 0; i < data.data.list.length; i++) {
  121. let thisdata = data.data.list[i];
  122. theArr.push({
  123. key: thisdata.orderNo,
  124. id: thisdata.id,
  125. orderNo: thisdata.orderNo, //订单编号
  126. totalAmount: thisdata.totalAmount, //签单金额
  127. processStatus: thisdata.processStatus, //流程状态
  128. liquidationStatus: thisdata.liquidationStatus, //结算状态
  129. approval: thisdata.approval, //特批状态
  130. signDate: thisdata.signDate, //签单时间
  131. userName: thisdata.userName, //客户名称
  132. salesmanName: thisdata.salesmanName, //营销员名称
  133. financeName: thisdata.financeName, //财务名称
  134. createDate: thisdata.createDate, //下单时间
  135. orderStatus: thisdata.orderStatus, //订单状态
  136. depName: thisdata.depName, //部门名称
  137. contractNo: thisdata.contractNo, //合同编号
  138. invoiceAmount: thisdata.invoiceAmount, //开票金额
  139. settlementAmount: thisdata.settlementAmount //已收款
  140. });
  141. }
  142. this.state.pagination.current = data.data.pageNo;
  143. this.state.pagination.total = data.data.totalCount;
  144. }
  145. if (!data.data.list.length) {
  146. this.state.pagination.current = 0;
  147. this.state.pagination.total = 0;
  148. }
  149. this.setState({
  150. pageNo: pageNo,
  151. dataSource: theArr,
  152. pagination: this.state.pagination,
  153. selectedRowKeys: []
  154. });
  155. }.bind(this)
  156. }).always(
  157. function () {
  158. this.setState({
  159. loading: false
  160. });
  161. }.bind(this)
  162. );
  163. },
  164. getInitialState() {
  165. return {
  166. kaiData: {
  167. remarks: "",
  168. type: undefined,
  169. orgCodeUrl: "",
  170. invoiceType: undefined,
  171. unitName: "",
  172. taxNumber: "",
  173. amount: "",
  174. banks: "",
  175. content: "",
  176. unitAddress: "",
  177. invoiceRemarks: "",
  178. unitMobile: "",
  179. post: undefined,
  180. addressee: "",
  181. addresseeMobile: "",
  182. addresseeProvince: "",
  183. addresseeCity: "",
  184. addresseeArea: "",
  185. recipientAddress: "",
  186. ordapproval: undefined,
  187. alreadyAmount: "0",
  188. ProvinceCity: []
  189. },
  190. changeList: undefined,
  191. datauser: {},
  192. orgCodeUrl: [],
  193. selectedRowKeys: [],
  194. releaseDate: [],
  195. departmentArr: [],
  196. signBillState: false,
  197. signBillVisible: false,
  198. selectedRows: [],
  199. recordData: [],
  200. flag: false,
  201. searchMore: true,
  202. loading: false,
  203. alreadyAmount: 0,
  204. intentOrder: true,
  205. formalOrder: true,
  206. pagination: {
  207. defaultCurrent: 1,
  208. defaultPageSize: 10,
  209. showQuickJumper: true,
  210. pageSize: 10,
  211. onChange: function (page) {
  212. this.loadData(page);
  213. }.bind(this),
  214. showTotal: function (total) {
  215. return "共" + total + "条数据";
  216. }
  217. },
  218. cuiColumns: [
  219. {
  220. title: "序号",
  221. dataIndex: "key",
  222. key: "key"
  223. },
  224. {
  225. title: "合同编号",
  226. dataIndex: "contractNo",
  227. key: "contractNo"
  228. },
  229. {
  230. title: "订单编号",
  231. dataIndex: "orderNo",
  232. key: "orderNo"
  233. },
  234. {
  235. title: "客户名称",
  236. dataIndex: "userName",
  237. key: "userName"
  238. },
  239. {
  240. title: "订单负责人",
  241. dataIndex: "salesmanName",
  242. key: "salesmanName"
  243. },
  244. {
  245. title: "订单部门",
  246. dataIndex: "depName",
  247. key: "depName"
  248. },
  249. {
  250. title: "订单状态",
  251. dataIndex: "orderStatus",
  252. key: "orderStatus",
  253. render: text => {
  254. return getNewOrderStatus(text);
  255. }
  256. },
  257. {
  258. title: "项目状态",
  259. dataIndex: "projectStatus",
  260. key: "projectStatus",
  261. render: text => {
  262. return getProjectName(text);
  263. }
  264. },
  265. {
  266. title: "签单金额",
  267. dataIndex: "totalAmount",
  268. key: "totalAmount"
  269. },
  270. {
  271. title: "结算状态",
  272. dataIndex: "liquidationStatus",
  273. key: "liquidationStatus",
  274. render: text => {
  275. return getLiquidationStatus(text);
  276. }
  277. },
  278. {
  279. title: "已收款",
  280. dataIndex: "settlementAmount",
  281. key: "settlementAmount"
  282. },
  283. // {
  284. // title: "应收款",
  285. // dataIndex: "accountsReceivable",
  286. // key: "accountsReceivable"
  287. // },
  288. {
  289. title: "催收科目",
  290. dataIndex: "dunSubject",
  291. key: "dunSubject"
  292. // render: text => {
  293. // return getjiedian(text);
  294. // }
  295. },
  296. {
  297. title: "催款状态",
  298. dataIndex: "dunStatus",
  299. key: "dunStatus"
  300. },
  301. {
  302. title: "催收启动时间",
  303. dataIndex: "startDate",
  304. key: "startDate"
  305. }
  306. ],
  307. proColumns: [
  308. {
  309. title: "序号",
  310. dataIndex: "key",
  311. key: "key"
  312. },
  313. {
  314. title: "合同编号",
  315. dataIndex: "contractNo",
  316. key: "contractNo"
  317. },
  318. {
  319. title: "订单编号",
  320. dataIndex: "orderNo",
  321. key: "orderNo"
  322. },
  323. // {
  324. // title: "项目编号",
  325. // dataIndex: "id",
  326. // key: "id"
  327. // },
  328. {
  329. title: "客户名称",
  330. dataIndex: "userName",
  331. key: "userName"
  332. },
  333. {
  334. title: "订单负责人",
  335. dataIndex: "salesmanName",
  336. key: "salesmanName"
  337. },
  338. {
  339. title: "是否主项目",
  340. dataIndex: "main",
  341. key: "main",
  342. render: text => {
  343. return text == 0 ? "否" : "是";
  344. }
  345. },
  346. {
  347. title: "项目类别",
  348. dataIndex: "cname",
  349. key: "cname"
  350. },
  351. {
  352. title: "项目名称",
  353. dataIndex: "commodityName",
  354. key: "commodityName"
  355. },
  356. {
  357. title: "项目数量",
  358. dataIndex: "commodityQuantity",
  359. key: "commodityQuantity"
  360. },
  361. {
  362. title: "服务市价",
  363. dataIndex: "commodityPrice",
  364. key: "commodityPrice",
  365. render: text => {
  366. return "****";
  367. }
  368. },
  369. {
  370. title: "证书编号",
  371. dataIndex: "certificateNumber",
  372. key: "certificateNumber"
  373. },
  374. {
  375. title: "项目状态",
  376. dataIndex: "projectStatus",
  377. key: "projectStatus",
  378. render: text => {
  379. return getProjectName(text);
  380. }
  381. },
  382. {
  383. title: "项目说明",
  384. dataIndex: "taskComment",
  385. key: "taskComment"
  386. },
  387. // {
  388. // title: "外包(内部)公司",
  389. // dataIndex: "outsourceName",
  390. // key: "outsourceName"
  391. // },
  392. // {
  393. // title: "外包(内部)价格",
  394. // dataIndex: "outsourcePrice",
  395. // key: "outsourcePrice",
  396. // render: text => {
  397. // return "****";
  398. // }
  399. // }
  400. ],
  401. columns: [
  402. {
  403. title: "合同编号",
  404. dataIndex: "contractNo",
  405. key: "contractNo"
  406. // fixed: 'left'
  407. },
  408. {
  409. title: "订单编号",
  410. dataIndex: "orderNo",
  411. key: "orderNo"
  412. // fixed: 'left'
  413. },
  414. {
  415. title: "客户名称",
  416. dataIndex: "userName",
  417. key: "userName",
  418. render: text => {
  419. return text && text.length > 9 ? text.substr(0, 9) + "..." : text;
  420. }
  421. },
  422. {
  423. title: "订单部门",
  424. dataIndex: "depName",
  425. key: "depName"
  426. // fixed: 'left'
  427. },
  428. {
  429. title: "下单时间",
  430. dataIndex: "createDate",
  431. key: "createTime"
  432. },
  433. {
  434. title: "合同签订时间",
  435. dataIndex: "signDate",
  436. key: "signDate"
  437. },
  438. {
  439. title: "流程状态",
  440. dataIndex: "processStatus",
  441. key: "processStatus",
  442. render: text => {
  443. return getProcessStatus(text);
  444. }
  445. },
  446. {
  447. title: "签单金额(万元)",
  448. dataIndex: "totalAmount",
  449. key: "totalAmount"
  450. },
  451. {
  452. title: "开票金额(万元)",
  453. dataIndex: "invoiceAmount",
  454. key: "invoiceAmount"
  455. },
  456. {
  457. title: "已收款(万元)",
  458. dataIndex: "settlementAmount",
  459. key: "settlementAmount"
  460. },
  461. {
  462. title: "结算状态",
  463. dataIndex: "liquidationStatus",
  464. key: "liquidationStatus",
  465. render: text => {
  466. return getLiquidationStatus(text);
  467. }
  468. },
  469. {
  470. title: "是否特批",
  471. dataIndex: "approval",
  472. key: "approval",
  473. render: text => {
  474. return getApprovedState(text);
  475. }
  476. },
  477. {
  478. title: "订单状态",
  479. dataIndex: "orderStatus",
  480. key: "orderStatus",
  481. render: text => {
  482. return getNewOrderStatus(text);
  483. }
  484. },
  485. {
  486. title: "财务负责人",
  487. dataIndex: "financeName",
  488. key: "financeName"
  489. },
  490. {
  491. title: "操作",
  492. dataIndex: "abc",
  493. key: "abc",
  494. render: (text, record, index) => {
  495. return (
  496. <div>
  497. {
  498. <Button
  499. type="primary"
  500. disabled={record.processStatus == 0 ? true : false}
  501. style={{
  502. marginRight: "10px",
  503. color: "#ffffff",
  504. border: "none",
  505. marginTop: "5px",
  506. background: record.processStatus == 0 ? "#ccc" : "red"
  507. }}
  508. onClick={e => {
  509. e.stopPropagation();
  510. this.visit(record, index);
  511. }}
  512. >
  513. 开票
  514. </Button>
  515. }
  516. {/* <Button
  517. type="primary"
  518. onClick={e => {
  519. e.stopPropagation(), this.inRecord(record, index);
  520. }}
  521. style={{
  522. border: "none",
  523. background: "orangered",
  524. marginRight: "10px"
  525. }}
  526. >
  527. 开票记录
  528. </Button> */}
  529. {record.liquidationStatus == 2 ? (
  530. <Popconfirm
  531. title="是否结项?"
  532. onConfirm={() => {
  533. this.delectRow(record);
  534. }}
  535. okText="是"
  536. cancelText="否"
  537. >
  538. <Button
  539. type="primary"
  540. style={{
  541. marginRight: "10px",
  542. color: "#ffffff",
  543. border: "none"
  544. }}
  545. onClick={e => {
  546. e.stopPropagation();
  547. }}
  548. >
  549. 结项
  550. </Button>
  551. </Popconfirm>
  552. ) : (
  553. ""
  554. )}
  555. </div>
  556. );
  557. }
  558. }
  559. ],
  560. columnsDate: [
  561. {
  562. title: "编号",
  563. dataIndex: "id",
  564. key: "id"
  565. },
  566. {
  567. title: "订单编号",
  568. dataIndex: "orderno",
  569. key: "orderno"
  570. },
  571. {
  572. title: "开票金额(万元)",
  573. dataIndex: "amount",
  574. key: "amount"
  575. },
  576. {
  577. title: "申请时间",
  578. dataIndex: "createTime",
  579. key: "createTime"
  580. },
  581. {
  582. title: "开票状态",
  583. dataIndex: "status",
  584. key: "status",
  585. render: (text, record) => {
  586. return (
  587. <div>
  588. {record.status === 3 ? (
  589. <Button
  590. type="danger"
  591. onClick={e => {
  592. e.stopPropagation(), this.reject(record);
  593. }}
  594. >
  595. 被拒,查看原因
  596. </Button>
  597. ) : (
  598. getInvoiceStatus(text, record)
  599. )}
  600. {record.status == 3 ? (
  601. <Button
  602. type="primary"
  603. onClick={e => {
  604. e.stopPropagation(), this.recompose(record);
  605. }}
  606. style={{ marginLeft: "10px" }}
  607. >
  608. 修改开票
  609. </Button>
  610. ) : (
  611. ""
  612. )}
  613. </div>
  614. );
  615. }
  616. }
  617. ],
  618. dataSource: []
  619. };
  620. },
  621. invoiceData(record) {
  622. if (this.state.flagA) return;
  623. this.setState({
  624. flagA: true
  625. });
  626. let theorgCodeUrl = [];
  627. if (this.state.orgCodeUrl.length) {
  628. let picArr = [];
  629. this.state.orgCodeUrl.map(function (item) {
  630. if (
  631. item.response &&
  632. item.response.data &&
  633. item.response.data.length
  634. ) {
  635. picArr.push(item.response.data);
  636. }
  637. });
  638. theorgCodeUrl = picArr.join(",");
  639. }
  640. let api = "",
  641. api1 = "",
  642. method = "",
  643. fdata = {
  644. orderNo: this.state.orderNo3,
  645. type: this.state.type,
  646. status: this.state.status,
  647. approval: this.state.ordapproval,
  648. remarks: this.state.remarks,
  649. invoiceType: this.state.invoiceType,
  650. unitName: this.state.unitName,
  651. taxNumber: this.state.taxNumber,
  652. amount: parseFloat(this.state.amount),
  653. banks: this.state.banks,
  654. content: this.state.content,
  655. unitAddress: this.state.unitAddress,
  656. invoiceRemarks: this.state.invoiceRemarks,
  657. unitMobile: this.state.unitMobile,
  658. voucherUrl: theorgCodeUrl.length ? theorgCodeUrl : "",
  659. post: this.state.post,
  660. addressee: this.state.addressee,
  661. addresseeMobile: this.state.addresseeMobile,
  662. addresseeProvince:
  663. this.state.post === 0 ? this.state.ProvinceCity[0] || [] : "",
  664. addresseeCity:
  665. this.state.post === 0 ? this.state.ProvinceCity[1] || [] : "",
  666. addresseeArea:
  667. this.state.post === 0 ? this.state.ProvinceCity[2] || [] : "",
  668. recipientAddress: this.state.recipientAddress,
  669. alreadyAmount: parseFloat(this.state.alreadyAmount)
  670. },
  671. sumData = {},
  672. sumData1 = {};
  673. switch (this.state.status) {
  674. case 0:
  675. api = "/api/admin/orderInvoice/createOrderInvoice";
  676. sumData = fdata;
  677. method = "post";
  678. break;
  679. case 1:
  680. api = "/api/admin/orderInvoice/createOrderInvoice";
  681. api1 = "/api/admin/orderInvoice/updateOrderInvoice";
  682. sumData = fdata;
  683. sumData1 = {
  684. orderNo: this.state.orderNo3,
  685. type: this.state.type,
  686. status: this.state.status,
  687. approval: this.state.ordapproval,
  688. remarks: this.state.remarks,
  689. invoiceType: this.state.invoiceType,
  690. unitName: this.state.unitName,
  691. taxNumber: this.state.taxNumber,
  692. amount: parseFloat(this.state.amount),
  693. banks: this.state.banks,
  694. content: this.state.content,
  695. unitAddress: this.state.unitAddress,
  696. invoiceRemarks: this.state.invoiceRemarks,
  697. unitMobile: this.state.unitMobile,
  698. voucherUrl: theorgCodeUrl.length ? theorgCodeUrl : "",
  699. post: this.state.post,
  700. addressee: this.state.addressee,
  701. addresseeMobile: this.state.addresseeMobile,
  702. addresseeProvince:
  703. this.state.post === 0 ? this.state.ProvinceCity[0] || [] : "",
  704. addresseeCity:
  705. this.state.post === 0 ? this.state.ProvinceCity[1] || [] : "",
  706. addresseeArea:
  707. this.state.post === 0 ? this.state.ProvinceCity[2] || [] : "",
  708. recipientAddress: this.state.recipientAddress,
  709. alreadyAmount: parseFloat(this.state.alreadyAmount)
  710. };
  711. sumData1.id = this.state.id;
  712. method = "post";
  713. break;
  714. case 3:
  715. api = "/api/admin/orderInvoice/selectByIdOrderInvoice";
  716. sumData.id = record.id;
  717. method = "get";
  718. break;
  719. default:
  720. api = "";
  721. break;
  722. }
  723. if (this.state.status === 1 || this.state.status === 0) {
  724. if (typeof this.state.type !== "number") {
  725. message.warning("省内/外不能为空");
  726. this.setState({
  727. flagA: false
  728. });
  729. return;
  730. }
  731. if (typeof this.state.invoiceType !== "number") {
  732. message.warning("发票类型不能为空");
  733. this.setState({
  734. flagA: false
  735. });
  736. return;
  737. }
  738. if (typeof theorgCodeUrl !== "string") {
  739. message.warning("未上传图片");
  740. this.setState({
  741. flagA: false
  742. });
  743. return;
  744. }
  745. if (!this.state.unitName) {
  746. message.warning("单位名称不能为空");
  747. this.setState({
  748. flagA: false
  749. });
  750. return;
  751. }
  752. if (!this.state.taxNumber) {
  753. message.warning("税号不能为空");
  754. this.setState({
  755. flagA: false
  756. });
  757. return;
  758. }
  759. if (!this.state.amount) {
  760. message.warning("金额不能为空");
  761. this.setState({
  762. flagA: false
  763. });
  764. return;
  765. }
  766. if (isNaN(this.state.amount)) {
  767. message.warning("开票金额包含非法字符,请重新输入");
  768. this.setState({
  769. flagA: false
  770. });
  771. return;
  772. }
  773. if (isNaN(this.state.alreadyAmount)) {
  774. message.warning("开票金额总计包含非法字符,请重新输入");
  775. this.setState({
  776. flagA: false
  777. });
  778. return;
  779. }
  780. if (parseFloat(this.state.alreadyAmount) < 0) {
  781. message.warning("开票金额总计不能小于0,请重新输入");
  782. this.setState({
  783. flagA: false
  784. });
  785. return;
  786. }
  787. if (!this.state.banks) {
  788. message.warning("开户行不能为空");
  789. this.setState({
  790. flagA: false
  791. });
  792. return;
  793. }
  794. if (!this.state.content) {
  795. message.warning("开票内容及说明不能为空");
  796. this.setState({
  797. flagA: false
  798. });
  799. return;
  800. }
  801. if (!this.state.unitAddress) {
  802. message.warning("单位地址不能为空");
  803. this.setState({
  804. flagA: false
  805. });
  806. return;
  807. }
  808. if (!this.state.unitMobile) {
  809. message.warning("单位电话不能为空");
  810. this.setState({
  811. flagA: false
  812. });
  813. return;
  814. }
  815. if (this.state.alreadyAmount === "") {
  816. message.warning("开票金额总计不能为空");
  817. this.setState({
  818. flagA: false
  819. });
  820. return;
  821. }
  822. }
  823. // console.log(this.state.flag,this.state.status)
  824. this.setState({
  825. loading: true
  826. });
  827. $.ajax({
  828. method: method,
  829. dataType: "json",
  830. crossDomain: false,
  831. url: globalConfig.context + (this.state.flag ? api1 : api),
  832. data: this.state.flag ? sumData1 : sumData,
  833. success: function (data) {
  834. if (this.state.status === 3 && typeof data.data === "object") {
  835. let thisdata = data.data;
  836. let ProvinceCityArr = [];
  837. let ProvinceS = thisdata.addresseeProvince; //省
  838. let citys = thisdata.addresseeCity; //市
  839. let Areas = thisdata.addresseeArea; //区
  840. ProvinceCityArr.push(ProvinceS, citys, Areas);
  841. this.setState({
  842. orderNo: thisdata.orderNo,
  843. type: thisdata.type,
  844. status: thisdata.status,
  845. ordapproval: thisdata.approval,
  846. remarks: thisdata.remarks,
  847. invoiceType: thisdata.invoiceType,
  848. unitName: thisdata.unitName,
  849. taxNumber: thisdata.taxNumber,
  850. amount: thisdata.amount + "",
  851. banks: thisdata.banks,
  852. content: thisdata.content,
  853. unitAddress: thisdata.unitAddress,
  854. invoiceRemarks: thisdata.invoiceRemarks,
  855. unitMobile: thisdata.unitMobile,
  856. post: thisdata.post,
  857. addressee: thisdata.addressee,
  858. addresseeMobile: thisdata.addresseeMobile,
  859. addresseeProvince: thisdata.addresseeProvince,
  860. addresseeCity: thisdata.addresseeCity,
  861. addresseeArea: thisdata.addresseeArea,
  862. alreadyAmount: thisdata.alreadyAmount + "",
  863. ProvinceCity:
  864. ProvinceCityArr[0] != null ? ProvinceCityArr : undefined, //省市区
  865. recipientAddress: thisdata.recipientAddress,
  866. orgCodeUrl: thisdata.voucherUrl
  867. ? splitUrl(
  868. thisdata.voucherUrl,
  869. ",",
  870. globalConfig.avatarHost + "/upload"
  871. )
  872. : []
  873. });
  874. }
  875. }.bind(this)
  876. }).done(
  877. function (data) {
  878. this.setState({
  879. loading: false
  880. });
  881. if (!data.error.length) {
  882. if (this.state.status === 1) {
  883. message.success("提交成功!");
  884. this.visitCancels();
  885. if (this.state.flag) {
  886. this.inRecordData();
  887. }
  888. this.setState({
  889. flagA: false
  890. });
  891. } else if (this.state.status === 0) {
  892. message.success("保存成功!");
  893. this.visitCancels();
  894. this.setState({
  895. flagA: false
  896. });
  897. } else if (this.state.status === 3) {
  898. this.setState({
  899. flag: true,
  900. flagA: false
  901. });
  902. }
  903. } else {
  904. message.warning(data.error[0].message);
  905. this.setState({
  906. flagA: false
  907. });
  908. }
  909. }.bind(this)
  910. );
  911. },
  912. areset() {
  913. this.setState({
  914. remarks: "",
  915. type: undefined,
  916. orgCodeUrl: [],
  917. invoiceType: undefined,
  918. taxNumber: "",
  919. unitName: "",
  920. amount: "",
  921. banks: "",
  922. content: "",
  923. unitAddress: "",
  924. invoiceRemarks: "",
  925. unitMobile: "",
  926. post: undefined,
  927. addressee: "",
  928. addresseeMobile: "",
  929. addresseeProvince: "",
  930. addresseeCity: "",
  931. addresseeArea: "",
  932. recipientAddress: "",
  933. ordapproval: 0,
  934. alreadyAmount: "",
  935. ProvinceCity: []
  936. });
  937. },
  938. recompose(record) {
  939. // console.log(record)
  940. this.setState({
  941. avisible: true,
  942. orderNo3: record.orderno,
  943. id: record.id
  944. });
  945. this.setState(
  946. {
  947. status: 3,
  948. cvisible: true,
  949. flag: false
  950. },
  951. () => {
  952. this.invoiceData(record);
  953. }
  954. );
  955. },
  956. submitApp() {
  957. if (this.state.status === 3) {
  958. this.setState({
  959. flag: true
  960. });
  961. }
  962. this.setState(
  963. {
  964. status: 1
  965. },
  966. () => {
  967. this.invoiceData();
  968. }
  969. );
  970. },
  971. saveApp() {
  972. this.setState(
  973. {
  974. status: 0
  975. },
  976. () => {
  977. this.invoiceData();
  978. }
  979. );
  980. },
  981. reject(record) {
  982. this.setState({
  983. visibleR: true,
  984. reason: record.rejectReason
  985. });
  986. },
  987. rejectCancels() {
  988. this.setState({
  989. visibleR: false
  990. });
  991. },
  992. //开票
  993. visit(record, index) {
  994. this.areset();
  995. this.setState({
  996. contractNo: this.state.dataSource[index].contractNo,
  997. orderNo3: record.orderNo,
  998. avisible: true,
  999. flag: false,
  1000. invoiceType: 0,
  1001. alreadyAmount: 0,
  1002. unitName: this.state.dataSource[index].userName,
  1003. post: 1
  1004. });
  1005. $.ajax({
  1006. method: "get",
  1007. dataType: "json",
  1008. crossDomain: false,
  1009. url: globalConfig.context + "/api/admin/orderInvoice/getInvoiceDetails",
  1010. data: {
  1011. orderNo: record.orderNo
  1012. },
  1013. success: data => {
  1014. if (data.error.length) {
  1015. message.warning(data.error[0].message)
  1016. } else if (data.data) {
  1017. const thisdata = data.data;
  1018. this.setState({
  1019. contractNo: thisdata.contractNo,
  1020. orderNo: thisdata.orderNo,
  1021. ordapproval: thisdata.approval,
  1022. type: thisdata.type,
  1023. status: thisdata.status,
  1024. remarks: thisdata.remarks,
  1025. invoiceType: thisdata.invoiceType,
  1026. unitName: thisdata.unitName,
  1027. taxNumber: thisdata.taxNumber,
  1028. amount: thisdata.amount,
  1029. banks: thisdata.banks,
  1030. content: thisdata.content,
  1031. unitAddress: thisdata.unitAddress,
  1032. invoiceRemarks: thisdata.invoiceRemarks,
  1033. unitMobile: thisdata.unitMobile,
  1034. post: thisdata.post,
  1035. addressee: thisdata.addressee,
  1036. addresseeMobile: thisdata.addresseeMobile,
  1037. addresseeProvince: thisdata.addresseeProvince,
  1038. addresseeCity: thisdata.addresseeCity,
  1039. addresseeArea: thisdata.addresseeArea,
  1040. alreadyAmount: thisdata.alreadyAmount,
  1041. recipientAddress: thisdata.recipientAddress,
  1042. orgCodeUrl: thisdata.voucherUrl
  1043. ? splitUrl(
  1044. thisdata.voucherUrl,
  1045. ",",
  1046. globalConfig.avatarHost + "/upload"
  1047. )
  1048. : []
  1049. });
  1050. }
  1051. }
  1052. });
  1053. },
  1054. visitCancels() {
  1055. this.setState({
  1056. avisible: false,
  1057. cvisible: false
  1058. });
  1059. },
  1060. //查看开票历史记录详情
  1061. dtableRowClick(record) {
  1062. this.setState({
  1063. dvisible: true
  1064. });
  1065. this.setState({
  1066. loading: true
  1067. });
  1068. $.ajax({
  1069. method: "get",
  1070. dataType: "json",
  1071. crossDomain: false,
  1072. url:
  1073. globalConfig.context +
  1074. "/api/admin/orderInvoice/selectByIdOrderInvoice",
  1075. data: {
  1076. id: record.id
  1077. },
  1078. success: function (data) {
  1079. let thisdata = data.data;
  1080. this.setState({
  1081. contractNo: thisdata.contractNo,
  1082. orderNo: thisdata.orderNo,
  1083. ordapproval: thisdata.approval,
  1084. type: thisdata.type,
  1085. status: thisdata.status,
  1086. remarks: thisdata.remarks,
  1087. invoiceType: thisdata.invoiceType,
  1088. unitName: thisdata.unitName,
  1089. taxNumber: thisdata.taxNumber,
  1090. amount: thisdata.amount,
  1091. banks: thisdata.banks,
  1092. content: thisdata.content,
  1093. unitAddress: thisdata.unitAddress,
  1094. invoiceRemarks: thisdata.invoiceRemarks,
  1095. unitMobile: thisdata.unitMobile,
  1096. post: thisdata.post,
  1097. addressee: thisdata.addressee,
  1098. addresseeMobile: thisdata.addresseeMobile,
  1099. addresseeProvince: thisdata.addresseeProvince,
  1100. addresseeCity: thisdata.addresseeCity,
  1101. addresseeArea: thisdata.addresseeArea,
  1102. alreadyAmount: thisdata.alreadyAmount,
  1103. recipientAddress: thisdata.recipientAddress,
  1104. orgCodeUrl: thisdata.voucherUrl
  1105. ? splitUrl(
  1106. thisdata.voucherUrl,
  1107. ",",
  1108. globalConfig.avatarHost + "/upload"
  1109. )
  1110. : []
  1111. });
  1112. }.bind(this)
  1113. }).done(
  1114. function () {
  1115. this.setState({
  1116. loading: false
  1117. });
  1118. }.bind(this)
  1119. );
  1120. },
  1121. //关闭开票历史记录详情
  1122. dvisitCancels() {
  1123. this.setState({
  1124. dvisible: false
  1125. });
  1126. },
  1127. inRecordData() {
  1128. this.setState({
  1129. loading: true
  1130. });
  1131. $.ajax({
  1132. method: "get",
  1133. dataType: "json",
  1134. crossDomain: false,
  1135. url:
  1136. globalConfig.context +
  1137. "/api/admin/orderInvoice/salesmanOrderInvoiceList",
  1138. data: {
  1139. orderNo: this.state.orderNo2
  1140. },
  1141. success: function (data) {
  1142. let theArr = [];
  1143. let sum = 0;
  1144. if (!data.data) {
  1145. if (data.error && data.error.length) {
  1146. message.warning(data.error[0].message);
  1147. }
  1148. } else {
  1149. for (let i = 0; i < data.data.list.length; i++) {
  1150. let thisdata = data.data.list[i];
  1151. sum += parseFloat(thisdata.amount);
  1152. theArr.push({
  1153. id: thisdata.id,
  1154. orderno: thisdata.orderno, //订单编号
  1155. amount: thisdata.amount, //签单金额
  1156. createTime: thisdata.createTime, //流程状态
  1157. status: thisdata.status, //结算状态
  1158. rejectReason: thisdata.rejectReason,
  1159. approval: thisdata.approval
  1160. });
  1161. }
  1162. }
  1163. this.setState({
  1164. recordData: theArr,
  1165. sum: sum.toFixed(6)
  1166. });
  1167. }.bind(this)
  1168. }).done(
  1169. function () {
  1170. this.setState({
  1171. loading: false
  1172. });
  1173. }.bind(this)
  1174. );
  1175. },
  1176. inRecord(record) {
  1177. this.setState(
  1178. {
  1179. bvisible: true,
  1180. orderNo2: this.state.selectedRowKeys[0]
  1181. },
  1182. () => {
  1183. this.inRecordData();
  1184. }
  1185. );
  1186. },
  1187. inRecordCanl() {
  1188. this.setState({
  1189. bvisible: false
  1190. });
  1191. },
  1192. //结项
  1193. delectRow(record) {
  1194. this.setState({
  1195. loading: true
  1196. });
  1197. $.ajax({
  1198. method: "get",
  1199. dataType: "json",
  1200. crossDomain: false,
  1201. url: globalConfig.context + "/api/admin/newOrder/OrderOver",
  1202. data: {
  1203. orderNo: record.orderNo
  1204. }
  1205. }).done(
  1206. function (data) {
  1207. if (!data.error.length) {
  1208. message.success("该项目已成功结项!");
  1209. this.loadData();
  1210. } else {
  1211. message.warning(data.error[0].message);
  1212. }
  1213. this.setState({
  1214. loading: false
  1215. });
  1216. }.bind(this)
  1217. );
  1218. },
  1219. //是否退款
  1220. refundCancel(record) {
  1221. this.refund(record, 0);
  1222. },
  1223. refundOk(record) {
  1224. this.refund(record, 1);
  1225. },
  1226. refund(record, index) {
  1227. this.setState({
  1228. signBillVisible: false,
  1229. selectedRowKeys: [],
  1230. loading: true,
  1231. userDetaile: false
  1232. });
  1233. $.ajax({
  1234. method: "get",
  1235. dataType: "json",
  1236. crossDomain: false,
  1237. url: globalConfig.context + "/api/admin/order/confirmRefund",
  1238. data: {
  1239. orderNo: record.orderNo,
  1240. confirm: index
  1241. }
  1242. }).done(
  1243. function (data) {
  1244. if (!data.error.length) {
  1245. message.success("操作成功!");
  1246. this.setState({
  1247. loading: false,
  1248. showDesc: false
  1249. });
  1250. }
  1251. this.loadData(this.state.pageNo);
  1252. }.bind(this)
  1253. );
  1254. },
  1255. //受理订单
  1256. admissibleOrderOk(e) {
  1257. this.admissibleOrder(e, true);
  1258. },
  1259. admissibleOrderCancel(e) {
  1260. this.admissibleOrder(e, false);
  1261. },
  1262. admissibleOrder(record, index) {
  1263. this.setState({
  1264. signBillVisible: false,
  1265. selectedRowKeys: [],
  1266. loading: true,
  1267. userDetaile: false
  1268. });
  1269. $.ajax({
  1270. method: "POST",
  1271. dataType: "json",
  1272. crossDomain: false,
  1273. url: globalConfig.context + "/api/admin/order/confirmIntention",
  1274. data: {
  1275. orderNo: record.orderNo,
  1276. confirm: index
  1277. }
  1278. }).done(
  1279. function (data) {
  1280. if (!data.error.length) {
  1281. message.success("操作成功!");
  1282. this.setState({
  1283. loading: false,
  1284. showDesc: false
  1285. });
  1286. } else {
  1287. message.warning(data.error[0].message);
  1288. this.setState({
  1289. showDesc: true
  1290. });
  1291. }
  1292. this.loadData(this.state.pageNo);
  1293. }.bind(this)
  1294. );
  1295. },
  1296. //取消订单
  1297. cancelOrder(e) {
  1298. this.operation(e, 3);
  1299. },
  1300. //作废订单
  1301. scrapOrder(e) {
  1302. this.operation(e, 2);
  1303. },
  1304. //锁定订单
  1305. lockOrder(e) {
  1306. this.operation(e, 0);
  1307. },
  1308. //解锁订单
  1309. unlockOrder(e) {
  1310. this.operation(e, 1);
  1311. },
  1312. //签单
  1313. signBill(ids) {
  1314. this.setState({
  1315. uid: ids,
  1316. signBillVisible: true
  1317. });
  1318. },
  1319. componentWillMount() {
  1320. this.departmentList();
  1321. this.loadData();
  1322. let data = localStorage.getItem("newData");
  1323. if (data != "{}" && data) {
  1324. var newData = JSON.parse(data);
  1325. this.tableRowClick(newData);
  1326. }
  1327. },
  1328. tableRowClick(record) {
  1329. this.state.userDetaile = true;
  1330. this.state.datauser = record;
  1331. this.setState({
  1332. signBillVisible: false,
  1333. signBillState: true,
  1334. showDesc: true
  1335. });
  1336. localStorage.setItem("newData", "{}");
  1337. },
  1338. //列表各种骚操作
  1339. operation(record, index) {
  1340. this.setState({
  1341. selectedRowKeys: [],
  1342. loading: true,
  1343. showDesc: false
  1344. });
  1345. $.ajax({
  1346. method: "get",
  1347. dataType: "json",
  1348. crossDomain: false,
  1349. url: globalConfig.context + "/api/admin/order/lockOrRevokeOrder",
  1350. data: {
  1351. orderNo: record.orderNo,
  1352. operatorType: index
  1353. }
  1354. }).done(
  1355. function (data) {
  1356. if (!data.error.length) {
  1357. message.success("操作成功!");
  1358. this.setState({
  1359. loading: false
  1360. });
  1361. } else {
  1362. message.warning(data.error[0].message);
  1363. }
  1364. this.loadData(this.state.pageNo);
  1365. }.bind(this)
  1366. );
  1367. },
  1368. addClick() {
  1369. this.state.userDetaile = false;
  1370. this.setState({
  1371. signBillVisible: false,
  1372. showDesc: true
  1373. });
  1374. },
  1375. closeDesc(e, s) {
  1376. this.state.userDetaile = false;
  1377. this.state.signBillVisible = false;
  1378. this.state.showDesc = e;
  1379. if (s) {
  1380. this.loadData(this.state.pageNo);
  1381. }
  1382. },
  1383. searchSwitch() {
  1384. this.setState({
  1385. signBillVisible: false,
  1386. searchMore: !this.state.searchMore
  1387. });
  1388. },
  1389. getOrgCodeUrl(e) {
  1390. this.setState({ orgCodeUrl: e });
  1391. },
  1392. search() {
  1393. this.setState({
  1394. signBillVisible: false
  1395. });
  1396. this.loadData();
  1397. },
  1398. reset() {
  1399. this.setState({
  1400. signBillVisible: false
  1401. });
  1402. this.state.searchOrderNo = undefined;
  1403. this.state.orderNo = "";
  1404. this.state.customerName = "";
  1405. this.state.departmenttSearch = undefined;
  1406. this.state.releaseDate[0] = undefined;
  1407. this.state.releaseDate[1] = undefined;
  1408. this.state.projectProgress = undefined;
  1409. this.state.approval = undefined;
  1410. this.state.formalOrder = true;
  1411. this.state.intentOrder = true;
  1412. (this.state.liquidationStatusSearch = []),
  1413. (this.state.contractNoSearch = "");
  1414. this.state.departmenttList = [];
  1415. this.state.approvalSearch = undefined
  1416. this.state.amountStatus = undefined
  1417. this.loadData();
  1418. },
  1419. //部门
  1420. departmentList() {
  1421. this.setState({
  1422. loading: true
  1423. });
  1424. $.ajax({
  1425. method: "get",
  1426. dataType: "json",
  1427. crossDomain: false,
  1428. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  1429. data: {},
  1430. success: function (data) {
  1431. let thedata = data.data;
  1432. let theArr = [];
  1433. if (!thedata) {
  1434. if (data.error && data.error.length) {
  1435. message.warning(data.error[0].message);
  1436. }
  1437. thedata = {};
  1438. } else {
  1439. thedata.map(function (item, index) {
  1440. theArr.push({
  1441. key: index,
  1442. name: item.name,
  1443. id: item.id
  1444. });
  1445. });
  1446. }
  1447. this.setState({
  1448. departmentArr: theArr
  1449. });
  1450. }.bind(this)
  1451. }).always(
  1452. function () {
  1453. this.setState({
  1454. loading: false
  1455. });
  1456. }.bind(this)
  1457. );
  1458. },
  1459. changeList(arr) {
  1460. const newArr = [];
  1461. this.state.columns.forEach(item => {
  1462. arr.forEach(val => {
  1463. if (val === item.title) {
  1464. newArr.push(item);
  1465. }
  1466. });
  1467. });
  1468. this.setState({
  1469. changeList: newArr
  1470. });
  1471. },
  1472. onSelectChange(selectedRowKeys) {
  1473. this.setState({ selectedRowKeys:selectedRowKeys.slice(-1) });
  1474. },
  1475. // inRecordData() {
  1476. // this.setState({
  1477. // loading: true
  1478. // });
  1479. // $.ajax({
  1480. // method: "get",
  1481. // dataType: "json",
  1482. // crossDomain: false,
  1483. // url:
  1484. // globalConfig.context +
  1485. // "/api/admin/orderInvoice/salesmanOrderInvoiceList",
  1486. // data: {
  1487. // orderNo: this.state.selectedRowKeys[0],
  1488. // pageSize: 9999
  1489. // },
  1490. // success: function(data) {
  1491. // let theArr = [];
  1492. // let sum = 0;
  1493. // if (!data.data) {
  1494. // if (data.error && data.error.length) {
  1495. // message.warning(data.error[0].message);
  1496. // }
  1497. // } else {
  1498. // for (let i = 0; i < data.data.list.length; i++) {
  1499. // let thisdata = data.data.list[i];
  1500. // sum += parseFloat(thisdata.amount);
  1501. // theArr.push({
  1502. // id: thisdata.id,
  1503. // orderno: thisdata.orderno, //订单编号
  1504. // amount: thisdata.amount, //签单金额
  1505. // createTime: thisdata.createTime, //流程状态
  1506. // status: thisdata.status, //结算状态
  1507. // rejectReason: thisdata.rejectReason
  1508. // });
  1509. // }
  1510. // }
  1511. // this.setState({
  1512. // recordData: theArr,
  1513. // sum: sum.toFixed(4)
  1514. // });
  1515. // }.bind(this)
  1516. // }).done(
  1517. // function() {
  1518. // this.setState({
  1519. // loading: false
  1520. // });
  1521. // }.bind(this)
  1522. // );
  1523. // },
  1524. cuiData() {
  1525. this.setState({
  1526. loading: true
  1527. });
  1528. $.ajax({
  1529. method: "get",
  1530. dataType: "json",
  1531. crossDomain: false,
  1532. url: globalConfig.context + "/api/admin/newOrder/dunOrderNewList",
  1533. data: {
  1534. orderNo: this.state.selectedRowKeys[0],
  1535. pageSize: 9999
  1536. },
  1537. success: function (data) {
  1538. let theArr = [];
  1539. if (!data.data || !data.data.list) {
  1540. if (data.error && data.error.length) {
  1541. message.warning(data.error[0].message);
  1542. }
  1543. } else {
  1544. for (let i = 0; i < data.data.list.length; i++) {
  1545. let thisdata = data.data.list[i];
  1546. theArr.push({
  1547. key: i + 1,
  1548. orderNo: thisdata.orderNo,
  1549. contractNo: thisdata.contractNo,
  1550. userName: thisdata.userName,
  1551. buyerName: thisdata.buyerName,
  1552. departmentName: thisdata.departmentName,
  1553. salesmanName: thisdata.salesmanName,
  1554. depName: thisdata.depName,
  1555. orderStatus: thisdata.orderStatus,
  1556. projectStatus: thisdata.projectStatus,
  1557. totalAmount: thisdata.totalAmount,
  1558. liquidationStatus: thisdata.liquidationStatus,
  1559. settlementAmount: thisdata.settlementAmount,
  1560. accountsReceivable: thisdata.accountsReceivable,
  1561. dunSubject: thisdata.dunSubject,
  1562. startDate: thisdata.startDate,
  1563. taskStatus: thisdata.taskStatus,
  1564. cname: thisdata.cname,
  1565. id: thisdata.id,
  1566. taskName: thisdata.taskName,
  1567. hours: thisdata.hours,
  1568. taskDistributionTime: thisdata.taskDistributionTime,
  1569. taskEndTime: thisdata.taskEndTime,
  1570. dunStatus: thisdata.dunStatus == 0 ? "未触发" : "已触发"
  1571. });
  1572. }
  1573. }
  1574. this.setState({
  1575. cuiDataList: theArr
  1576. });
  1577. }.bind(this)
  1578. }).always(
  1579. function () {
  1580. this.setState({
  1581. loading: false
  1582. });
  1583. }.bind(this)
  1584. );
  1585. },
  1586. proData() {
  1587. this.setState({
  1588. loading: true
  1589. });
  1590. $.ajax({
  1591. method: "get",
  1592. dataType: "json",
  1593. crossDomain: false,
  1594. url: globalConfig.context + "/api/admin/newOrder/getOrderTask",
  1595. data: {
  1596. orderNo: this.state.selectedRowKeys[0],
  1597. pageSize: 9999
  1598. },
  1599. success: function (data) {
  1600. let theArr = [];
  1601. let totalWaibao = 0;
  1602. if (!data.data) {
  1603. if (data.error && data.error.length) {
  1604. message.warning(data.error[0].message);
  1605. }
  1606. } else {
  1607. for (let i = 0; i < data.data.length; i++) {
  1608. let thisdata = data.data[i];
  1609. totalWaibao += thisdata.outsourcePrice;
  1610. thisdata.key = i + 1;
  1611. theArr.push(thisdata);
  1612. }
  1613. }
  1614. totalWaibao = (Math.round(totalWaibao * 1000000) / 1000000).toFixed(6);
  1615. this.setState({
  1616. proDataList: theArr,
  1617. totalWaibao
  1618. });
  1619. }.bind(this)
  1620. }).always(
  1621. function () {
  1622. this.setState({
  1623. loading: false
  1624. });
  1625. }.bind(this)
  1626. );
  1627. },
  1628. tableRowClickPro(record) {
  1629. this.setState({
  1630. pvisible: true,
  1631. record
  1632. });
  1633. },
  1634. render() {
  1635. const FormItem = Form.Item;
  1636. const formItemLayout = {
  1637. labelCol: { span: 8 },
  1638. wrapperCol: { span: 14 }
  1639. };
  1640. const RadioGroup = Radio.Group;
  1641. var departmentArr = this.state.departmentArr || [];
  1642. const { RangePicker } = DatePicker;
  1643. const { loading, selectedRowKeys, visible } = this.state;
  1644. const rowSelection = {
  1645. selectedRowKeys,
  1646. onChange: this.onSelectChange,
  1647. hideDefaultSelections: true,
  1648. // type: "radio"
  1649. };
  1650. return (
  1651. <div className="user-content">
  1652. <ShowModalDiv ShowModal={this.state.showModal} />
  1653. <div className="content-title">
  1654. <span
  1655. style={{
  1656. fontWeight: 900,
  1657. fontSize: 16,
  1658. display: "block",
  1659. marginBottom: 10
  1660. }}
  1661. >
  1662. 开单与签单
  1663. </span>
  1664. <Tabs
  1665. defaultActiveKey="2"
  1666. onChange={this.callback}
  1667. className="test"
  1668. >
  1669. <TabPane tab="更改表格显示数据" key="1">
  1670. <div style={{ marginLeft: 10 }}>
  1671. <ChooseList
  1672. columns={this.state.columns}
  1673. changeFn={this.changeList}
  1674. changeList={this.state.changeList}
  1675. top={55}
  1676. margin={11}
  1677. />
  1678. </div>
  1679. </TabPane>
  1680. <TabPane tab="搜索" key="2">
  1681. <div className="user-search" style={{ marginLeft: 10 }}>
  1682. <Input
  1683. placeholder="订单编号"
  1684. style={{ width: "150px" }}
  1685. value={this.state.searchOrderNo}
  1686. onChange={e => {
  1687. this.setState({ searchOrderNo: e.target.value });
  1688. }}
  1689. />
  1690. <Input
  1691. placeholder="客户名称"
  1692. style={{ width: "150px" }}
  1693. value={this.state.customerName}
  1694. onChange={e => {
  1695. this.setState({ customerName: e.target.value });
  1696. }}
  1697. />
  1698. <Select
  1699. placeholder="订单部门"
  1700. style={{ width: 150, marginRight: 10 }}
  1701. value={this.state.departmenttList}
  1702. onChange={e => {
  1703. this.setState({ departmenttList: e });
  1704. }}
  1705. >
  1706. {departmentArr.map(function (item) {
  1707. return <Option key={item.id}>{item.name}</Option>;
  1708. })}
  1709. </Select>
  1710. <Input
  1711. placeholder="合同编号"
  1712. style={{ width: "150px" }}
  1713. value={this.state.contractNoSearch}
  1714. onChange={e => {
  1715. this.setState({
  1716. contractNoSearch: e.target.value
  1717. });
  1718. }}
  1719. />
  1720. <Select
  1721. style={{ width: 120 }}
  1722. placeholder="结算状态"
  1723. value={this.state.liquidationStatusSearch}
  1724. onChange={e => {
  1725. this.setState({
  1726. liquidationStatusSearch: e
  1727. });
  1728. }}
  1729. >
  1730. <Option value="0">首付待付请</Option>
  1731. <Option value="1">尾款待付清</Option>
  1732. <Option value="2">已付清</Option>
  1733. </Select>
  1734. <Select
  1735. style={{ width: 120 }}
  1736. placeholder="特批状态"
  1737. value={this.state.approvalSearch}
  1738. onChange={e => {
  1739. this.setState({
  1740. approvalSearch: e
  1741. });
  1742. }}
  1743. >
  1744. <Option value="0">非特批</Option>
  1745. <Option value="1">特批</Option>
  1746. </Select>
  1747. <Select
  1748. style={{ width: 120 }}
  1749. placeholder="签单金额"
  1750. value={this.state.amountStatus}
  1751. onChange={e => {
  1752. this.setState({
  1753. amountStatus: e
  1754. });
  1755. }}
  1756. >
  1757. <Option value="0">10万元以下</Option>
  1758. <Option value="1">10~20万元</Option>
  1759. <Option value="2">20~30万元</Option>
  1760. <Option value="3">30~40万元</Option>
  1761. <Option value="4">40万元以上</Option>
  1762. </Select>
  1763. <span style={{ marginRight: "10px" }}>下单时间 :</span>
  1764. <RangePicker
  1765. style={{ width:200 }}
  1766. value={[
  1767. this.state.releaseDate[0]
  1768. ? moment(this.state.releaseDate[0])
  1769. : null,
  1770. this.state.releaseDate[1]
  1771. ? moment(this.state.releaseDate[1])
  1772. : null
  1773. ]}
  1774. onChange={(data, dataString) => {
  1775. this.setState({ releaseDate: dataString });
  1776. }}
  1777. />
  1778. <Button
  1779. type="primary"
  1780. onClick={this.search}
  1781. style={{ marginLeft: "10px" }}
  1782. >
  1783. 搜索
  1784. <Icon type="search" />
  1785. </Button>
  1786. <Button onClick={this.reset}>
  1787. 重置 <Icon type="reload" />
  1788. </Button>
  1789. <Button
  1790. type="primary"
  1791. className="addButton"
  1792. onClick={this.addClick}
  1793. >
  1794. 开单
  1795. <Icon type="plus" />
  1796. </Button>
  1797. </div>
  1798. </TabPane>
  1799. <TabPane tab="查看" key="3">
  1800. <Button
  1801. type="primary"
  1802. style={{ margin: "11px 0px 10px 10px" }}
  1803. onClick={() => {
  1804. this.inRecord();
  1805. this.setState({
  1806. bvisible: true
  1807. });
  1808. }}
  1809. disabled={this.state.selectedRowKeys.length != 1}
  1810. >
  1811. 查看开票记录
  1812. </Button>
  1813. {/*<Button*/}
  1814. {/* type="primary"*/}
  1815. {/* style={{ margin: "11px 0px 10px 10px" }}*/}
  1816. {/* onClick={() => {*/}
  1817. {/* this.cuiData();*/}
  1818. {/* this.setState({*/}
  1819. {/* cuiVisible: true*/}
  1820. {/* });*/}
  1821. {/* }}*/}
  1822. {/* disabled={this.state.selectedRowKeys.length != 1}*/}
  1823. {/*>*/}
  1824. {/* 查看催款详情*/}
  1825. {/*</Button>*/}
  1826. <Button
  1827. type="primary"
  1828. style={{ margin: "11px 0px 10px 10px" }}
  1829. onClick={() => {
  1830. this.proData();
  1831. this.setState({
  1832. proVisible: true
  1833. });
  1834. }}
  1835. disabled={this.state.selectedRowKeys.length != 1}
  1836. >
  1837. 查看项目进度
  1838. </Button>
  1839. </TabPane>
  1840. </Tabs>
  1841. <div className="patent-table">
  1842. <Spin spinning={this.state.loading}>
  1843. <Table
  1844. columns={
  1845. this.state.changeList == undefined
  1846. ? this.state.columns
  1847. : this.state.changeList
  1848. }
  1849. dataSource={this.state.dataSource}
  1850. scroll={{ x: 1500, y: 0 }}
  1851. pagination={this.state.pagination}
  1852. rowSelection={rowSelection}
  1853. onRowClick={this.tableRowClick}
  1854. bordered
  1855. size="small"
  1856. />
  1857. </Spin>
  1858. </div>
  1859. <NewService
  1860. uid={this.state.uid}
  1861. signBillVisible={this.state.signBillVisible}
  1862. signBillState={this.state.signBillState}
  1863. operation={this.operation}
  1864. admissibleOrder={this.admissibleOrder}
  1865. userDetaile={this.state.userDetaile}
  1866. datauser={this.state.datauser}
  1867. showDesc={this.state.showDesc}
  1868. closeDesc={this.closeDesc}
  1869. />
  1870. {this.state.avisible ? <Modal
  1871. maskClosable={false}
  1872. className="admin-desc-content"
  1873. footer=""
  1874. title="开具发票申请单"
  1875. width="1000px"
  1876. visible={this.state.avisible}
  1877. onOk={this.visitOks}
  1878. onCancel={this.visitCancels}
  1879. style={{ zIndex: 999 }}
  1880. >
  1881. <Form
  1882. layout="horizontal"
  1883. // id="demand-form"
  1884. style={{ paddingBottom: "40px" }}
  1885. >
  1886. <Spin spinning={this.state.loading}>
  1887. <div className="clearfix">
  1888. <div className="clearfix">
  1889. <FormItem
  1890. className="half-item"
  1891. {...formItemLayout}
  1892. label="合同编号"
  1893. >
  1894. <span>{this.state.contractNo}</span>
  1895. </FormItem>
  1896. <FormItem
  1897. className="half-item"
  1898. {...formItemLayout}
  1899. label="备注"
  1900. >
  1901. {
  1902. <Input
  1903. placeholder="填写申请发票原因"
  1904. value={this.state.remarks}
  1905. onChange={e => {
  1906. this.setState({ remarks: e.target.value });
  1907. }}
  1908. style={{ width: "240px" }}
  1909. />
  1910. }
  1911. </FormItem>
  1912. </div>
  1913. <div className="clearfix">
  1914. <FormItem
  1915. className="half-item"
  1916. {...formItemLayout}
  1917. label="省内/外:"
  1918. >
  1919. <RadioGroup
  1920. value={this.state.type}
  1921. onChange={e => {
  1922. this.setState({ type: e.target.value });
  1923. }}
  1924. >
  1925. <Radio value={0}>省内</Radio>
  1926. <Radio value={1}>省外</Radio>
  1927. </RadioGroup>
  1928. <span
  1929. style={{
  1930. position: "absolute",
  1931. color: "red",
  1932. fontSize: "10px",
  1933. lineHeight: "20px"
  1934. }}
  1935. >
  1936. 省内:湖南省<br></br>省外:除湖南省以外
  1937. </span>
  1938. </FormItem>
  1939. <FormItem
  1940. className="half-item"
  1941. {...formItemLayout}
  1942. label="特批:"
  1943. >
  1944. <RadioGroup
  1945. value={!this.state.ordapproval ? 0 : 1}
  1946. onChange={e => {
  1947. this.setState({ ordapproval: e.target.value });
  1948. }}
  1949. >
  1950. <Radio value={0}>否</Radio>
  1951. <Radio value={1}>是</Radio>
  1952. </RadioGroup>
  1953. <span
  1954. style={{
  1955. position: "absolute",
  1956. color: "red",
  1957. fontSize: "10px",
  1958. lineHeight: "15px"
  1959. }}
  1960. >
  1961. 注:特批单,省内省外,<br></br>分别由周总,省外总经理
  1962. <br></br>特批后,方可至开票流程
  1963. </span>
  1964. </FormItem>
  1965. </div>
  1966. <hr
  1967. style={{
  1968. border: "1px dashed #aaa",
  1969. width: "90%",
  1970. margin: "auto"
  1971. }}
  1972. />
  1973. <div style={{ marginTop: "13px", marginLeft: "16px" }}>
  1974. <span style={{ fontSize: "14px" }}>发票内容</span>
  1975. </div>
  1976. <div className="clearfix">
  1977. <FormItem
  1978. className="half-item"
  1979. {...formItemLayout}
  1980. label={
  1981. <span>
  1982. <strong style={{ color: "#f00" }}>*</strong>
  1983. 发票类型
  1984. </span>
  1985. }
  1986. >
  1987. <RadioGroup
  1988. style={{ width: "160%" }}
  1989. onChange={e => {
  1990. this.setState({ invoiceType: e.target.value });
  1991. }}
  1992. value={this.state.invoiceType}
  1993. >
  1994. <Radio value={0}>增值税专用发票</Radio>
  1995. <Radio value={1}>增值税普通发票</Radio>
  1996. <Radio value={2}>其他</Radio>
  1997. </RadioGroup>
  1998. </FormItem>
  1999. </div>
  2000. <div className="clearfix">
  2001. <FormItem
  2002. className="half-item"
  2003. {...formItemLayout}
  2004. label={
  2005. <span>
  2006. <strong style={{ color: "#f00" }}>*</strong>
  2007. 单位名称
  2008. </span>
  2009. }
  2010. >
  2011. {
  2012. <Input
  2013. placeholder="请输入单位名称"
  2014. value={this.state.unitName}
  2015. onChange={e => {
  2016. this.setState({ unitName: e.target.value });
  2017. }}
  2018. style={{ width: "240px" }}
  2019. />
  2020. }
  2021. <span
  2022. style={{
  2023. position: "absolute",
  2024. color: "red",
  2025. fontSize: "10px",
  2026. lineHeight: "15px",
  2027. width: "30%"
  2028. }}
  2029. >
  2030. 系统读取单位<br></br>名称,可修改
  2031. </span>
  2032. </FormItem>
  2033. <FormItem
  2034. className="half-item"
  2035. {...formItemLayout}
  2036. label={
  2037. <span>
  2038. <strong style={{ color: "#f00" }}>*</strong>税号
  2039. </span>
  2040. }
  2041. >
  2042. {
  2043. <Input
  2044. placeholder="请输入税号"
  2045. value={this.state.taxNumber}
  2046. onChange={e => {
  2047. this.setState({ taxNumber: e.target.value });
  2048. }}
  2049. style={{ width: "240px" }}
  2050. />
  2051. }
  2052. </FormItem>
  2053. <FormItem
  2054. className="half-item"
  2055. {...formItemLayout}
  2056. label={
  2057. <span>
  2058. <strong style={{ color: "#f00" }}>*</strong>
  2059. 开票金额(万元)
  2060. </span>
  2061. }
  2062. >
  2063. {
  2064. <Input
  2065. placeholder="请输入开票金额"
  2066. value={this.state.amount}
  2067. onChange={e => {
  2068. this.setState({ amount: e.target.value });
  2069. }}
  2070. style={{ width: "240px" }}
  2071. />
  2072. }
  2073. <span
  2074. style={{
  2075. position: "absolute",
  2076. color: "red",
  2077. fontSize: "10px",
  2078. lineHeight: "15px",
  2079. width: "30%"
  2080. }}
  2081. >
  2082. 填写本次开票<br></br>金额
  2083. </span>
  2084. </FormItem>
  2085. <FormItem
  2086. className="half-item"
  2087. {...formItemLayout}
  2088. label={
  2089. <span>
  2090. <strong style={{ color: "#f00" }}>*</strong>
  2091. 开户行及银行账号
  2092. </span>
  2093. }
  2094. >
  2095. {
  2096. <Input
  2097. placeholder="请输入开户行及银行账号"
  2098. value={this.state.banks}
  2099. onChange={e => {
  2100. this.setState({ banks: e.target.value });
  2101. }}
  2102. style={{ width: "240px" }}
  2103. />
  2104. }
  2105. </FormItem>
  2106. <FormItem
  2107. className="half-item"
  2108. {...formItemLayout}
  2109. label={
  2110. <span>
  2111. <strong style={{ color: "#f00" }}>*</strong>
  2112. 开票内容及说明
  2113. </span>
  2114. }
  2115. >
  2116. {
  2117. <Input
  2118. placeholder="请输入开票内容及说明"
  2119. value={this.state.content}
  2120. onChange={e => {
  2121. this.setState({ content: e.target.value });
  2122. }}
  2123. style={{ width: "240px" }}
  2124. />
  2125. }
  2126. </FormItem>
  2127. <FormItem
  2128. className="half-item"
  2129. {...formItemLayout}
  2130. label={
  2131. <span>
  2132. <strong style={{ color: "#f00" }}>*</strong>
  2133. 单位地址
  2134. </span>
  2135. }
  2136. >
  2137. {
  2138. <Input
  2139. placeholder="请输入单位地址"
  2140. value={this.state.unitAddress}
  2141. onChange={e => {
  2142. this.setState({ unitAddress: e.target.value });
  2143. }}
  2144. style={{ width: "240px" }}
  2145. />
  2146. }
  2147. </FormItem>
  2148. <FormItem
  2149. className="half-item"
  2150. {...formItemLayout}
  2151. label="备注"
  2152. >
  2153. {
  2154. <Input
  2155. placeholder="请备注开票公司名称"
  2156. value={this.state.invoiceRemarks}
  2157. onChange={e => {
  2158. this.setState({
  2159. invoiceRemarks: e.target.value
  2160. });
  2161. }}
  2162. style={{ width: "240px" }}
  2163. />
  2164. }
  2165. <span
  2166. style={{
  2167. position: "absolute",
  2168. color: "red",
  2169. fontSize: "10px",
  2170. lineHeight: "15px",
  2171. width: "30%"
  2172. }}
  2173. >
  2174. 开票公司名称,<br></br>如:科德集团
  2175. </span>
  2176. </FormItem>
  2177. <FormItem
  2178. className="half-item"
  2179. {...formItemLayout}
  2180. label={
  2181. <span>
  2182. <strong style={{ color: "#f00" }}>*</strong>
  2183. 单位电话
  2184. </span>
  2185. }
  2186. >
  2187. {
  2188. <Input
  2189. placeholder="请输入单位电话"
  2190. value={this.state.unitMobile}
  2191. onChange={e => {
  2192. this.setState({ unitMobile: e.target.value });
  2193. }}
  2194. style={{ width: "240px" }}
  2195. />
  2196. }
  2197. </FormItem>
  2198. </div>
  2199. <div className="clearfix">
  2200. <FormItem
  2201. labelCol={{ span: 4 }}
  2202. wrapperCol={{ span: 18 }}
  2203. label={
  2204. <span>
  2205. <strong style={{ color: "#f00" }}>*</strong>
  2206. 上传附件
  2207. </span>
  2208. }
  2209. >
  2210. <PicturesWall
  2211. domId={'billing1'}
  2212. fileList={this.getOrgCodeUrl}
  2213. pictureUrl={this.state.orgCodeUrl}
  2214. />
  2215. <span
  2216. style={{
  2217. paddingTop: "10px",
  2218. paddingLeft: "10px",
  2219. color: "red",
  2220. fontSize: "14px"
  2221. }}
  2222. >
  2223. 注:请上传带"公司盖章"的开票申请纸质凭证
  2224. </span>
  2225. <p>图片建议:要清晰。</p>
  2226. </FormItem>
  2227. </div>
  2228. <hr
  2229. style={{
  2230. border: "1px dashed #aaa",
  2231. width: "90%",
  2232. margin: "auto"
  2233. }}
  2234. />
  2235. <div className="clearfix" style={{ marginTop: "10px" }}>
  2236. <FormItem
  2237. className="half-item"
  2238. {...formItemLayout}
  2239. label="发票是否邮寄:"
  2240. >
  2241. <RadioGroup
  2242. value={this.state.post}
  2243. onChange={e => {
  2244. this.setState({ post: e.target.value });
  2245. }}
  2246. >
  2247. <Radio value={0}>是</Radio>
  2248. <Radio value={1}>否</Radio>
  2249. </RadioGroup>
  2250. </FormItem>
  2251. </div>
  2252. {this.state.post === 0 ? (
  2253. <div className="clearfix">
  2254. <FormItem
  2255. className="half-item"
  2256. {...formItemLayout}
  2257. label="收信人姓名"
  2258. >
  2259. {
  2260. <Input
  2261. placeholder="请输入收信人姓名"
  2262. value={this.state.addressee}
  2263. onChange={e => {
  2264. this.setState({ addressee: e.target.value });
  2265. }}
  2266. style={{ width: "240px" }}
  2267. />
  2268. }
  2269. </FormItem>
  2270. <FormItem
  2271. className="half-item"
  2272. {...formItemLayout}
  2273. label="电话"
  2274. >
  2275. {
  2276. <Input
  2277. placeholder="请输入电话"
  2278. value={this.state.addresseeMobile}
  2279. onChange={e => {
  2280. this.setState({
  2281. addresseeMobile: e.target.value
  2282. });
  2283. }}
  2284. style={{ width: "240px" }}
  2285. />
  2286. }
  2287. </FormItem>
  2288. </div>
  2289. ) : (
  2290. ""
  2291. )}
  2292. {this.state.post === 0 ? (
  2293. <div className="clearfix">
  2294. <FormItem
  2295. className="half-item"
  2296. {...formItemLayout}
  2297. label="省-市-区"
  2298. >
  2299. <Cascader
  2300. options={areaSelect()}
  2301. value={this.state.ProvinceCity}
  2302. placeholder="选择城市"
  2303. style={{ width: "95%" }}
  2304. onChange={e => {
  2305. this.setState({ ProvinceCity: e });
  2306. }}
  2307. />
  2308. </FormItem>
  2309. </div>
  2310. ) : (
  2311. ""
  2312. )}
  2313. {this.state.post === 0 ? (
  2314. <div className="clearfix">
  2315. <FormItem
  2316. className="half-item"
  2317. {...formItemLayout}
  2318. label="详细地址"
  2319. >
  2320. {
  2321. <Input
  2322. placeholder="请输入详细地址"
  2323. value={this.state.recipientAddress}
  2324. onChange={e => {
  2325. this.setState({
  2326. recipientAddress: e.target.value
  2327. });
  2328. }}
  2329. style={{ width: "240px" }}
  2330. />
  2331. }
  2332. </FormItem>
  2333. </div>
  2334. ) : (
  2335. ""
  2336. )}
  2337. <FormItem
  2338. className="half-item"
  2339. {...formItemLayout}
  2340. label={
  2341. <span>
  2342. <strong style={{ color: "#f00" }}>*</strong>
  2343. 开票金额总计
  2344. </span>
  2345. }
  2346. >
  2347. {
  2348. <Input
  2349. value={this.state.alreadyAmount}
  2350. onChange={e => {
  2351. this.setState({ alreadyAmount: e.target.value });
  2352. }}
  2353. style={{ width: "40px" }}
  2354. />
  2355. }
  2356. 万元
  2357. <span
  2358. style={{
  2359. position: "absolute",
  2360. color: "red",
  2361. fontSize: "10px",
  2362. lineHeight: "15px",
  2363. marginLeft: "20px"
  2364. }}
  2365. >
  2366. 默认值为0.新开票订单此项不用填.<br></br>
  2367. 以前已开票订单,请填写已开票的总计<br></br>
  2368. 金额,便于审核核对!
  2369. </span>
  2370. </FormItem>
  2371. </div>
  2372. <Button
  2373. className="cancel"
  2374. type="primary"
  2375. style={{ marginRight: "50px", float: "right" }}
  2376. size="large"
  2377. onClick={this.submitApp}
  2378. >
  2379. 提交申请
  2380. </Button>
  2381. {/*<Button className="cancel" type="primary" style={{marginRight:"50px",float:'right',background:'deepskyblue',border:'none'}} size="large" onClick={this.saveApp}>保存</Button>*/}
  2382. </Spin>
  2383. </Form>
  2384. </Modal> : <div/>}
  2385. <Modal
  2386. maskClosable={false}
  2387. visible={this.state.bvisible}
  2388. footer=""
  2389. title="开票历史记录"
  2390. className="admin-desc-content"
  2391. width="900px"
  2392. onCancel={e => {
  2393. this.setState({
  2394. bvisible: false
  2395. });
  2396. }}
  2397. style={{ zIndex: 5 }}
  2398. >
  2399. <Spin spinning={this.state.loading}>
  2400. <div className="patent-table">
  2401. <Table
  2402. columns={this.state.columnsDate}
  2403. onRowClick={this.dtableRowClick}
  2404. dataSource={this.state.recordData}
  2405. pagination={false}
  2406. />
  2407. <div className="clearfix" style={{ marginTop: "20px" }}>
  2408. <FormItem
  2409. className="half-item"
  2410. {...formItemLayout}
  2411. label={<span style={{ fontSize: "14px" }}>开票总计</span>}
  2412. >
  2413. <span>{this.state.sum + "(万元)"}</span>
  2414. </FormItem>
  2415. </div>
  2416. </div>
  2417. </Spin>
  2418. </Modal>
  2419. <Modal
  2420. maskClosable={false}
  2421. visible={this.state.visibleR}
  2422. className="admin-desc-content"
  2423. footer=""
  2424. title="拒绝理由"
  2425. width="400px"
  2426. onCancel={this.rejectCancels}
  2427. >
  2428. <Input.TextArea
  2429. disabled={true}
  2430. rows={4}
  2431. value={this.state.reason}
  2432. style={{ color: "black" }}
  2433. ></Input.TextArea>
  2434. </Modal>
  2435. <Modal
  2436. maskClosable={false}
  2437. className="admin-desc-content"
  2438. footer=""
  2439. title="开具发票申请单"
  2440. width="1000px"
  2441. visible={this.state.cvisible}
  2442. onOk={this.visitOks}
  2443. onCancel={this.visitCancels}
  2444. style={{ zIndex: 999 }}
  2445. >
  2446. <Form
  2447. layout="horizontal"
  2448. // id="demand-form"
  2449. style={{ paddingBottom: "40px" }}
  2450. >
  2451. <Spin spinning={this.state.loading}>
  2452. <div className="clearfix">
  2453. <div className="clearfix">
  2454. <FormItem
  2455. className="half-item"
  2456. {...formItemLayout}
  2457. label="合同编号"
  2458. >
  2459. <span>{this.state.contractNo}</span>
  2460. </FormItem>
  2461. <FormItem
  2462. className="half-item"
  2463. {...formItemLayout}
  2464. label="备注"
  2465. >
  2466. {
  2467. <Input
  2468. placeholder="填写申请发票原因"
  2469. value={this.state.remarks}
  2470. onChange={e => {
  2471. this.setState({ remarks: e.target.value });
  2472. }}
  2473. style={{ width: "240px" }}
  2474. />
  2475. }
  2476. </FormItem>
  2477. </div>
  2478. <div className="clearfix">
  2479. <FormItem
  2480. className="half-item"
  2481. {...formItemLayout}
  2482. label="省内/外:"
  2483. >
  2484. <RadioGroup
  2485. value={this.state.type}
  2486. onChange={e => {
  2487. this.setState({ type: e.target.value });
  2488. }}
  2489. >
  2490. <Radio value={0}>省内</Radio>
  2491. <Radio value={1}>省外</Radio>
  2492. </RadioGroup>
  2493. <span
  2494. style={{
  2495. position: "absolute",
  2496. color: "red",
  2497. fontSize: "10px",
  2498. lineHeight: "20px"
  2499. }}
  2500. >
  2501. 省内:湖南省<br></br>省外:除湖南省以外
  2502. </span>
  2503. </FormItem>
  2504. <FormItem
  2505. className="half-item"
  2506. {...formItemLayout}
  2507. label="特批:"
  2508. >
  2509. <RadioGroup
  2510. value={!this.state.ordapproval ? 0 : 1}
  2511. onChange={e => {
  2512. this.setState({ ordapproval: e.target.value });
  2513. }}
  2514. >
  2515. <Radio value={0}>否</Radio>
  2516. <Radio value={1}>是</Radio>
  2517. </RadioGroup>
  2518. <span
  2519. style={{
  2520. position: "absolute",
  2521. color: "red",
  2522. fontSize: "10px",
  2523. lineHeight: "15px"
  2524. }}
  2525. >
  2526. 注:特批单,省内省外,<br></br>分别由周总,省外总经理
  2527. <br></br>特批后,方可至开票流程
  2528. </span>
  2529. </FormItem>
  2530. </div>
  2531. <hr
  2532. style={{
  2533. border: "1px dashed #aaa",
  2534. width: "90%",
  2535. margin: "auto"
  2536. }}
  2537. />
  2538. <div style={{ marginTop: "13px", marginLeft: "16px" }}>
  2539. <span style={{ fontSize: "14px" }}>发票内容</span>
  2540. </div>
  2541. <div className="clearfix">
  2542. <FormItem
  2543. className="half-item"
  2544. {...formItemLayout}
  2545. label={
  2546. <span>
  2547. <strong style={{ color: "#f00" }}>*</strong>
  2548. 发票类型
  2549. </span>
  2550. }
  2551. >
  2552. <RadioGroup
  2553. style={{ width: "160%" }}
  2554. onChange={e => {
  2555. this.setState({ invoiceType: e.target.value });
  2556. }}
  2557. value={this.state.invoiceType}
  2558. >
  2559. <Radio value={0}>增值税专用发票</Radio>
  2560. <Radio value={1}>增值税普通发票</Radio>
  2561. <Radio value={2}>其他</Radio>
  2562. </RadioGroup>
  2563. </FormItem>
  2564. </div>
  2565. <div className="clearfix">
  2566. <FormItem
  2567. className="half-item"
  2568. {...formItemLayout}
  2569. label={
  2570. <span>
  2571. <strong style={{ color: "#f00" }}>*</strong>
  2572. 单位名称
  2573. </span>
  2574. }
  2575. >
  2576. {
  2577. <Input
  2578. placeholder="请输入单位名称"
  2579. value={this.state.unitName}
  2580. onChange={e => {
  2581. this.setState({ unitName: e.target.value });
  2582. }}
  2583. style={{ width: "240px" }}
  2584. />
  2585. }
  2586. <span
  2587. style={{
  2588. position: "absolute",
  2589. color: "red",
  2590. fontSize: "10px",
  2591. lineHeight: "15px",
  2592. width: "30%"
  2593. }}
  2594. >
  2595. 系统读取单位<br></br>名称,可修改
  2596. </span>
  2597. </FormItem>
  2598. <FormItem
  2599. className="half-item"
  2600. {...formItemLayout}
  2601. label={
  2602. <span>
  2603. <strong style={{ color: "#f00" }}>*</strong>税号
  2604. </span>
  2605. }
  2606. >
  2607. {
  2608. <Input
  2609. placeholder="请输入税号"
  2610. value={this.state.taxNumber}
  2611. onChange={e => {
  2612. this.setState({ taxNumber: e.target.value });
  2613. }}
  2614. style={{ width: "240px" }}
  2615. />
  2616. }
  2617. </FormItem>
  2618. <FormItem
  2619. className="half-item"
  2620. {...formItemLayout}
  2621. label={
  2622. <span>
  2623. <strong style={{ color: "#f00" }}>*</strong>
  2624. 开票金额(万元)
  2625. </span>
  2626. }
  2627. >
  2628. {
  2629. <Input
  2630. placeholder="请输入开票金额"
  2631. value={this.state.amount}
  2632. onChange={e => {
  2633. this.setState({ amount: e.target.value });
  2634. }}
  2635. style={{ width: "240px" }}
  2636. />
  2637. }
  2638. <span
  2639. style={{
  2640. position: "absolute",
  2641. color: "red",
  2642. fontSize: "10px",
  2643. lineHeight: "15px",
  2644. width: "30%"
  2645. }}
  2646. >
  2647. 填写本次开票<br></br>金额
  2648. </span>
  2649. </FormItem>
  2650. <FormItem
  2651. className="half-item"
  2652. {...formItemLayout}
  2653. label={
  2654. <span>
  2655. <strong style={{ color: "#f00" }}>*</strong>
  2656. 开户行及银行账号
  2657. </span>
  2658. }
  2659. >
  2660. {
  2661. <Input
  2662. placeholder="请输入开户行及银行账号"
  2663. value={this.state.banks}
  2664. onChange={e => {
  2665. this.setState({ banks: e.target.value });
  2666. }}
  2667. style={{ width: "240px" }}
  2668. />
  2669. }
  2670. </FormItem>
  2671. <FormItem
  2672. className="half-item"
  2673. {...formItemLayout}
  2674. label={
  2675. <span>
  2676. <strong style={{ color: "#f00" }}>*</strong>
  2677. 开票内容及说明
  2678. </span>
  2679. }
  2680. >
  2681. {
  2682. <Input
  2683. placeholder="请输入开票内容及说明"
  2684. value={this.state.content}
  2685. onChange={e => {
  2686. this.setState({ content: e.target.value });
  2687. }}
  2688. style={{ width: "240px" }}
  2689. />
  2690. }
  2691. </FormItem>
  2692. <FormItem
  2693. className="half-item"
  2694. {...formItemLayout}
  2695. label={
  2696. <span>
  2697. <strong style={{ color: "#f00" }}>*</strong>
  2698. 单位地址
  2699. </span>
  2700. }
  2701. >
  2702. {
  2703. <Input
  2704. placeholder="请输入单位地址"
  2705. value={this.state.unitAddress}
  2706. onChange={e => {
  2707. this.setState({ unitAddress: e.target.value });
  2708. }}
  2709. style={{ width: "240px" }}
  2710. />
  2711. }
  2712. </FormItem>
  2713. <FormItem
  2714. className="half-item"
  2715. {...formItemLayout}
  2716. label="备注"
  2717. >
  2718. {
  2719. <Input
  2720. placeholder="请备注开票公司名称"
  2721. value={this.state.invoiceRemarks}
  2722. onChange={e => {
  2723. this.setState({
  2724. invoiceRemarks: e.target.value
  2725. });
  2726. }}
  2727. style={{ width: "240px" }}
  2728. />
  2729. }
  2730. <span
  2731. style={{
  2732. position: "absolute",
  2733. color: "red",
  2734. fontSize: "10px",
  2735. lineHeight: "15px",
  2736. width: "30%"
  2737. }}
  2738. >
  2739. 开票公司名称,<br></br>如:科德集团
  2740. </span>
  2741. </FormItem>
  2742. <FormItem
  2743. className="half-item"
  2744. {...formItemLayout}
  2745. label={
  2746. <span>
  2747. <strong style={{ color: "#f00" }}>*</strong>
  2748. 单位电话
  2749. </span>
  2750. }
  2751. >
  2752. {
  2753. <Input
  2754. placeholder="请输入单位电话"
  2755. value={this.state.unitMobile}
  2756. onChange={e => {
  2757. this.setState({ unitMobile: e.target.value });
  2758. }}
  2759. style={{ width: "240px" }}
  2760. />
  2761. }
  2762. </FormItem>
  2763. </div>
  2764. <div className="clearfix">
  2765. <FormItem
  2766. labelCol={{ span: 4 }}
  2767. wrapperCol={{ span: 18 }}
  2768. label={
  2769. <span>
  2770. <strong style={{ color: "#f00" }}>*</strong>
  2771. 上传附件
  2772. </span>
  2773. }
  2774. >
  2775. <PicturesWall
  2776. domId={'billing2'}
  2777. fileList={this.getOrgCodeUrl}
  2778. pictureUrl={this.state.orgCodeUrl}
  2779. />
  2780. <span
  2781. style={{
  2782. paddingTop: "10px",
  2783. paddingLeft: "10px",
  2784. color: "red",
  2785. fontSize: "14px"
  2786. }}
  2787. >
  2788. 注:请上传带"公司盖章"的开票申请纸质凭证
  2789. </span>
  2790. <p>图片建议:要清晰。</p>
  2791. </FormItem>
  2792. </div>
  2793. <hr
  2794. style={{
  2795. border: "1px dashed #aaa",
  2796. width: "90%",
  2797. margin: "auto"
  2798. }}
  2799. />
  2800. <div className="clearfix" style={{ marginTop: "10px" }}>
  2801. <FormItem
  2802. className="half-item"
  2803. {...formItemLayout}
  2804. label="发票是否邮寄:"
  2805. >
  2806. <RadioGroup
  2807. value={this.state.post}
  2808. onChange={e => {
  2809. this.setState({ post: e.target.value });
  2810. }}
  2811. >
  2812. <Radio value={0}>是</Radio>
  2813. <Radio value={1}>否</Radio>
  2814. </RadioGroup>
  2815. </FormItem>
  2816. </div>
  2817. {this.state.post === 0 ? (
  2818. <div className="clearfix">
  2819. <FormItem
  2820. className="half-item"
  2821. {...formItemLayout}
  2822. label="收信人姓名"
  2823. >
  2824. {
  2825. <Input
  2826. placeholder="请输入收信人姓名"
  2827. value={this.state.addressee}
  2828. onChange={e => {
  2829. this.setState({ addressee: e.target.value });
  2830. }}
  2831. style={{ width: "240px" }}
  2832. />
  2833. }
  2834. </FormItem>
  2835. <FormItem
  2836. className="half-item"
  2837. {...formItemLayout}
  2838. label="电话"
  2839. >
  2840. {
  2841. <Input
  2842. placeholder="请输入电话"
  2843. value={this.state.addresseeMobile}
  2844. onChange={e => {
  2845. this.setState({
  2846. addresseeMobile: e.target.value
  2847. });
  2848. }}
  2849. style={{ width: "240px" }}
  2850. />
  2851. }
  2852. </FormItem>
  2853. </div>
  2854. ) : (
  2855. ""
  2856. )}
  2857. {this.state.post === 0 ? (
  2858. <div className="clearfix">
  2859. <FormItem
  2860. className="half-item"
  2861. {...formItemLayout}
  2862. label="省-市-区"
  2863. >
  2864. <Cascader
  2865. options={areaSelect()}
  2866. value={this.state.ProvinceCity}
  2867. placeholder="选择城市"
  2868. style={{ width: "95%" }}
  2869. onChange={e => {
  2870. this.setState({ ProvinceCity: e });
  2871. }}
  2872. />
  2873. </FormItem>
  2874. </div>
  2875. ) : (
  2876. ""
  2877. )}
  2878. {this.state.post === 0 ? (
  2879. <div className="clearfix">
  2880. <FormItem
  2881. className="half-item"
  2882. {...formItemLayout}
  2883. label="详细地址"
  2884. >
  2885. {
  2886. <Input
  2887. placeholder="请输入详细地址"
  2888. value={this.state.recipientAddress}
  2889. onChange={e => {
  2890. this.setState({
  2891. recipientAddress: e.target.value
  2892. });
  2893. }}
  2894. style={{ width: "240px" }}
  2895. />
  2896. }
  2897. </FormItem>
  2898. </div>
  2899. ) : (
  2900. ""
  2901. )}
  2902. <FormItem
  2903. className="half-item"
  2904. {...formItemLayout}
  2905. label={
  2906. <span>
  2907. <strong style={{ color: "#f00" }}>*</strong>
  2908. 开票金额总计
  2909. </span>
  2910. }
  2911. >
  2912. {
  2913. <Input
  2914. value={this.state.alreadyAmount}
  2915. onChange={e => {
  2916. this.setState({ alreadyAmount: e.target.value });
  2917. }}
  2918. style={{ width: "40px" }}
  2919. />
  2920. }
  2921. 万元
  2922. <span
  2923. style={{
  2924. position: "absolute",
  2925. color: "red",
  2926. fontSize: "10px",
  2927. lineHeight: "15px",
  2928. marginLeft: "20px"
  2929. }}
  2930. >
  2931. 默认值为0.新开票订单此项不用填.<br></br>
  2932. 以前已开票订单,请填写已开票的总计<br></br>
  2933. 金额,便于审核核对!
  2934. </span>
  2935. </FormItem>
  2936. </div>
  2937. <Button
  2938. className="cancel"
  2939. type="primary"
  2940. style={{ marginRight: "50px", float: "right" }}
  2941. size="large"
  2942. onClick={this.submitApp}
  2943. >
  2944. 提交申请
  2945. </Button>
  2946. {/*<Button className="cancel" type="primary" style={{marginRight:"50px",float:'right',background:'deepskyblue',border:'none'}} size="large" onClick={this.saveApp}>保存</Button>*/}
  2947. </Spin>
  2948. </Form>
  2949. </Modal>
  2950. <Modal
  2951. maskClosable={false}
  2952. className="admin-desc-content"
  2953. footer=""
  2954. title="开具发票申请单"
  2955. width="900px"
  2956. visible={this.state.dvisible}
  2957. onOk={this.visitOks}
  2958. onCancel={this.dvisitCancels}
  2959. >
  2960. <Form
  2961. layout="horizontal"
  2962. // id="demand-form"
  2963. style={{ paddingBottom: "40px" }}
  2964. >
  2965. <Spin spinning={this.state.loading}>
  2966. <div className="clearfix">
  2967. <div className="clearfix">
  2968. <FormItem
  2969. className="half-item"
  2970. {...formItemLayout}
  2971. label="合同编号"
  2972. >
  2973. <span>{this.state.contractNo}</span>
  2974. </FormItem>
  2975. <FormItem
  2976. className="half-item"
  2977. {...formItemLayout}
  2978. label="备注"
  2979. >
  2980. <span>{this.state.remarks}</span>
  2981. </FormItem>
  2982. </div>
  2983. <div className="clearfix">
  2984. <FormItem
  2985. className="half-item"
  2986. {...formItemLayout}
  2987. label={
  2988. <span>
  2989. <strong style={{ color: "#f00" }}>*</strong>
  2990. 省内/外
  2991. </span>
  2992. }
  2993. >
  2994. <span>{getProvinceA(this.state.type)}</span>
  2995. </FormItem>
  2996. <FormItem
  2997. className="half-item"
  2998. {...formItemLayout}
  2999. label={
  3000. <span>
  3001. <strong style={{ color: "#f00" }}>*</strong>特批
  3002. </span>
  3003. }
  3004. >
  3005. <span>
  3006. {this.state.ordapproval === 0 ? "否" : "是"}
  3007. </span>
  3008. </FormItem>
  3009. </div>
  3010. <hr
  3011. style={{
  3012. border: "1px dashed #aaa",
  3013. width: "90%",
  3014. margin: "auto"
  3015. }}
  3016. />
  3017. <div style={{ marginTop: "13px", marginLeft: "16px" }}>
  3018. <span style={{ fontSize: "14px" }}>发票内容</span>
  3019. </div>
  3020. <div className="clearfix">
  3021. <FormItem
  3022. className="half-item"
  3023. {...formItemLayout}
  3024. label={
  3025. <span>
  3026. <strong style={{ color: "#f00" }}>*</strong>
  3027. 发票类型
  3028. </span>
  3029. }
  3030. >
  3031. <span>
  3032. {this.state.invoiceType === 0
  3033. ? "增值税专用发票"
  3034. : this.state.invoiceType === 1
  3035. ? "增值税普通发票"
  3036. : "其他"}
  3037. </span>
  3038. </FormItem>
  3039. </div>
  3040. <div className="clearfix">
  3041. <FormItem
  3042. className="half-item"
  3043. {...formItemLayout}
  3044. label={
  3045. <span>
  3046. <strong style={{ color: "#f00" }}>*</strong>
  3047. 单位名称
  3048. </span>
  3049. }
  3050. >
  3051. <span>{this.state.unitName}</span>
  3052. </FormItem>
  3053. <FormItem
  3054. className="half-item"
  3055. {...formItemLayout}
  3056. label={
  3057. <span>
  3058. <strong style={{ color: "#f00" }}>*</strong>税号
  3059. </span>
  3060. }
  3061. >
  3062. <span>{this.state.taxNumber}</span>
  3063. </FormItem>
  3064. <FormItem
  3065. className="half-item"
  3066. {...formItemLayout}
  3067. label={
  3068. <span>
  3069. <strong style={{ color: "#f00" }}>*</strong>
  3070. 开票金额(万元)
  3071. </span>
  3072. }
  3073. >
  3074. <span>{this.state.amount}</span>
  3075. </FormItem>
  3076. <FormItem
  3077. className="half-item"
  3078. {...formItemLayout}
  3079. label={
  3080. <span>
  3081. <strong style={{ color: "#f00" }}>*</strong>
  3082. 开户行银行账号
  3083. </span>
  3084. }
  3085. >
  3086. <span>{this.state.banks}</span>
  3087. </FormItem>
  3088. <FormItem
  3089. className="half-item"
  3090. {...formItemLayout}
  3091. label={
  3092. <span>
  3093. <strong style={{ color: "#f00" }}>*</strong>
  3094. 开票内容及说明
  3095. </span>
  3096. }
  3097. >
  3098. <span>{this.state.content}</span>
  3099. </FormItem>
  3100. <FormItem
  3101. className="half-item"
  3102. {...formItemLayout}
  3103. label={
  3104. <span>
  3105. <strong style={{ color: "#f00" }}>*</strong>
  3106. 单位地址
  3107. </span>
  3108. }
  3109. >
  3110. <span>{this.state.unitAddress}</span>
  3111. </FormItem>
  3112. <FormItem
  3113. className="half-item"
  3114. {...formItemLayout}
  3115. label="备注"
  3116. >
  3117. <span>{this.state.invoiceRemarks}</span>
  3118. </FormItem>
  3119. <FormItem
  3120. className="half-item"
  3121. {...formItemLayout}
  3122. label={
  3123. <span>
  3124. <strong style={{ color: "#f00" }}>*</strong>
  3125. 单位电话
  3126. </span>
  3127. }
  3128. >
  3129. <span>{this.state.unitMobile}</span>
  3130. </FormItem>
  3131. </div>
  3132. <div className="clearfix">
  3133. <FormItem
  3134. labelCol={{ span: 4 }}
  3135. wrapperCol={{ span: 18 }}
  3136. label={
  3137. <span>
  3138. <strong style={{ color: "#f00" }}>*</strong>附件
  3139. </span>
  3140. }
  3141. >
  3142. <Upload
  3143. className="demandDetailShow-upload"
  3144. listType="picture-card"
  3145. fileList={this.state.orgCodeUrl}
  3146. onPreview={file => {
  3147. this.setState({
  3148. previewImage: file.url || file.thumbUrl,
  3149. previewVisible: true
  3150. });
  3151. }}
  3152. />
  3153. {/*<div style={{paddingTop:'10px',paddingBottom:'10px'}}>*/}
  3154. {/* <ImgList fileList={this.state.orgCodeUrl} ItemWidth={'96px'}/>*/}
  3155. {/*</div>*/}
  3156. <Modal
  3157. maskClosable={false}
  3158. footer={null}
  3159. visible={this.state.previewVisible}
  3160. onCancel={() => {
  3161. this.setState({ previewVisible: false });
  3162. }}
  3163. >
  3164. <img
  3165. alt=""
  3166. style={{ width: "100%" }}
  3167. src={this.state.previewImage || ""}
  3168. />
  3169. </Modal>
  3170. </FormItem>
  3171. </div>
  3172. <hr
  3173. style={{
  3174. border: "1px dashed #aaa",
  3175. width: "90%",
  3176. margin: "auto"
  3177. }}
  3178. />
  3179. <div className="clearfix" style={{ marginTop: "10px" }}>
  3180. <FormItem
  3181. className="half-item"
  3182. {...formItemLayout}
  3183. label="发票是否邮寄:"
  3184. >
  3185. <span>{this.state.post === 0 ? "是" : "否"}</span>
  3186. </FormItem>
  3187. </div>
  3188. {this.state.post === 0 ? (
  3189. <div>
  3190. <div className="clearfix">
  3191. <FormItem
  3192. className="half-item"
  3193. {...formItemLayout}
  3194. label="收信人姓名"
  3195. >
  3196. <span>{this.state.addressee}</span>
  3197. </FormItem>
  3198. <FormItem
  3199. className="half-item"
  3200. {...formItemLayout}
  3201. label="电话"
  3202. >
  3203. <span>{this.state.addresseeMobile}</span>
  3204. </FormItem>
  3205. </div>
  3206. <div className="clearfix">
  3207. <FormItem
  3208. className="half-item"
  3209. {...formItemLayout}
  3210. label="省-市-区"
  3211. >
  3212. <span>
  3213. {getprovince(this.state.addresseeProvince)}/
  3214. {getprovince(this.state.addresseeCity)}/
  3215. {getprovince(this.state.addresseeArea)}
  3216. </span>
  3217. </FormItem>
  3218. </div>
  3219. <div className="clearfix">
  3220. <FormItem
  3221. className="half-item"
  3222. {...formItemLayout}
  3223. label="详细地址"
  3224. >
  3225. <span>{this.state.recipientAddress}</span>
  3226. </FormItem>
  3227. </div>
  3228. </div>
  3229. ) : (
  3230. ""
  3231. )}
  3232. </div>
  3233. <FormItem
  3234. className="half-item"
  3235. {...formItemLayout}
  3236. label={
  3237. <span>
  3238. <strong style={{ color: "#f00" }}>*</strong>
  3239. 开票金额总计
  3240. </span>
  3241. }
  3242. >
  3243. <span>{this.state.alreadyAmount}万元</span>
  3244. </FormItem>
  3245. </Spin>
  3246. </Form>
  3247. </Modal>
  3248. {/* <Modal
  3249. visible={this.state.bvisible}
  3250. footer=""
  3251. title="开票历史记录"
  3252. className="admin-desc-content"
  3253. width="900px"
  3254. onCancel={this.inRecordCanl}
  3255. >
  3256. <Spin spinning={this.state.loading}>
  3257. <div
  3258. className="patent-table"
  3259. ref={e => {
  3260. this.refs.kaiPiao = e;
  3261. }}
  3262. >
  3263. <Table
  3264. columns={this.state.columnsDate}
  3265. dataSource={this.state.recordData}
  3266. pagination={false}
  3267. bordered
  3268. />
  3269. <div className="clearfix" style={{ marginTop: "20px" }}>
  3270. <FormItem
  3271. className="half-item"
  3272. {...formItemLayout}
  3273. label={<span style={{ fontSize: "14px" }}>开票总计</span>}
  3274. >
  3275. <span>{this.state.sum + "(万元)"}</span>
  3276. </FormItem>
  3277. </div>
  3278. <ReactToPrint
  3279. trigger={() => (
  3280. <Button
  3281. type="primary"
  3282. style={{
  3283. float: "right",
  3284. // marginTop: 10,
  3285. position: "absolute",
  3286. top: -54,
  3287. right: 30
  3288. }}
  3289. >
  3290. 打印
  3291. </Button>
  3292. )}
  3293. content={() => this.refs.kaiPiao}
  3294. />
  3295. </div>
  3296. </Spin>
  3297. </Modal> */}
  3298. <Modal
  3299. maskClosable={false}
  3300. visible={this.state.cuiVisible}
  3301. footer=""
  3302. title="催款详情"
  3303. className="admin-desc-content"
  3304. width="1300px"
  3305. pagination={false}
  3306. onCancel={() => {
  3307. // this.loadData();
  3308. this.setState({
  3309. cuiVisible: false
  3310. });
  3311. }}
  3312. >
  3313. <Spin spinning={this.state.loading}>
  3314. <div
  3315. className="patent-table"
  3316. style={
  3317. {
  3318. // width: 900,
  3319. // position: "relative",
  3320. // left: "50%",
  3321. // transform: "translate(-50%)",
  3322. // padding: "25px 0 30px 30px"
  3323. }
  3324. }
  3325. ref={e => {
  3326. this.refs.all = e;
  3327. }}
  3328. >
  3329. <Table
  3330. columns={this.state.cuiColumns}
  3331. dataSource={this.state.cuiDataList}
  3332. scroll={{ x: "max-content", y: 0 }}
  3333. pagination={false}
  3334. bordered
  3335. size="small"
  3336. />
  3337. </div>
  3338. </Spin>
  3339. <ReactToPrint
  3340. trigger={() => (
  3341. <Button
  3342. type="primary"
  3343. style={{
  3344. float: "right",
  3345. marginTop: 10,
  3346. position: "absolute",
  3347. top: 0,
  3348. right: 30
  3349. }}
  3350. >
  3351. 打印
  3352. </Button>
  3353. )}
  3354. content={() => this.refs.all}
  3355. />
  3356. </Modal>
  3357. <Modal
  3358. maskClosable={false}
  3359. visible={this.state.proVisible}
  3360. footer=""
  3361. title="项目进度"
  3362. className="admin-desc-content"
  3363. width="1300px"
  3364. pagination={false}
  3365. onCancel={() => {
  3366. // this.loadData();
  3367. this.setState({
  3368. proVisible: false
  3369. });
  3370. }}
  3371. >
  3372. <Spin spinning={this.state.loading}>
  3373. <Project
  3374. record={this.state.record}
  3375. visible={this.state.pvisible}
  3376. cancel={() => {
  3377. this.setState({ pvisible: false });
  3378. }}
  3379. />
  3380. <div
  3381. className="patent-table"
  3382. ref={e => {
  3383. this.refs.all = e;
  3384. }}
  3385. >
  3386. <Table
  3387. columns={this.state.proColumns}
  3388. dataSource={this.state.proDataList}
  3389. onRowClick={this.tableRowClickPro}
  3390. pagination={false}
  3391. bordered
  3392. size="small"
  3393. />
  3394. </div>
  3395. {/* <span style={{ display: "block", marginTop: 10, color: "red" }}>
  3396. 外包(内部)价格总计(万元):{this.state.totalWaibao}
  3397. </span> */}
  3398. </Spin>
  3399. <ReactToPrint
  3400. trigger={() => (
  3401. <Button
  3402. type="primary"
  3403. style={{
  3404. float: "right",
  3405. marginTop: 10,
  3406. position: "absolute",
  3407. top: 0,
  3408. right: 30
  3409. }}
  3410. >
  3411. 打印
  3412. </Button>
  3413. )}
  3414. content={() => this.refs.all}
  3415. />
  3416. </Modal>
  3417. </div>
  3418. </div>
  3419. );
  3420. }
  3421. })
  3422. );
  3423. export default MyService;