invoice.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. <template>
  2. <div class="invoice_container">
  3. <div class="title">
  4. <el-row>
  5. <el-col :span="24">
  6. <div class="top" >
  7. <el-upload style="margin-left: 10px;" :action="url" :http-request="importExcel" list-type="text" :show-file-list="false" >
  8. <el-button type="primary">导入参数</el-button>
  9. </el-upload>
  10. <div class="demo-input-suffix" style="margin-top: 5px;">
  11. <el-input placeholder="客户名称" class="input-demo" v-model="formCondition.customerName"></el-input>
  12. <el-input placeholder="公司名称" class="input-demo" v-model="formCondition.companyName"></el-input>
  13. <el-input placeholder="运单编号" class="input-demo" v-model="formCondition.waybillNum"></el-input>
  14. <el-input placeholder="税号" class="input-demo" v-model="formCondition.buyerTaxpayerCode"></el-input>
  15. </div>
  16. <div class="demo-input-suffix" style="margin-top: 5px;margin-left: 10px;">
  17. <el-input placeholder="车牌号" class="input-demo" v-model="formCondition.plateNum"></el-input>
  18. <el-date-picker v-model="formCondition.invoiceMakeTime" type="daterange" value-format="yyyy-MM-dd HH:mm:SS" range-separator="至" start-placeholder="开票时间始" end-placeholder="开票时间止"></el-date-picker>
  19. <el-date-picker v-model="formCondition.calculateTime" type="daterange" value-format="yyyy-MM-dd HH:mm:SS" range-separator="至" start-placeholder="扣费时间始" end-placeholder="扣费时间止"></el-date-picker>
  20. </div>
  21. <div class="demo-input-suffix" style="margin-top: 5px;margin-right: 10px;">
  22. <el-input placeholder="发票代码" class="input-demo" v-model="formCondition.invoiceCode"></el-input>
  23. <el-input placeholder="发票号码" class="input-demo" v-model="formCondition.invoiceNum"></el-input>
  24. <el-button type="success" style="margin-right: 1%;" @click="firstLoadData">查询</el-button>
  25. <el-button style="margin-left: 1%;" @click="DownloadTemplate">查询模板下载</el-button>
  26. <el-button type="primary" style="margin-right: 1%;" @click="exportExcel">导出报表</el-button>
  27. </div>
  28. </div>
  29. </el-col>
  30. </el-row>
  31. </div>
  32. <!-- 表格部分 -->
  33. <template>
  34. <el-table
  35. class="table"
  36. v-loading="loading"
  37. ref="multipleTable"
  38. :data="invoiceTable"
  39. :height="heightt"
  40. border
  41. tooltip-effect="dark">
  42. <el-table-column
  43. label="客户名称"
  44. prop="customerName"
  45. show-overflow-tooltip>
  46. </el-table-column>
  47. <el-table-column
  48. label="企业编号"
  49. prop="companyNum"
  50. show-overflow-tooltip>
  51. </el-table-column>
  52. <el-table-column
  53. prop="companyName"
  54. label="公司名称"
  55. show-overflow-tooltip>
  56. </el-table-column>
  57. <el-table-column
  58. prop="waybillNum"
  59. label="运单号"
  60. show-overflow-tooltip>
  61. </el-table-column>
  62. <el-table-column
  63. prop="buyerTaxpayerCode"
  64. label="购方税号"
  65. show-overflow-tooltip>
  66. </el-table-column>
  67. <el-table-column
  68. prop="plateNum"
  69. label="车牌号"
  70. show-overflow-tooltip>
  71. </el-table-column>
  72. <el-table-column
  73. prop="waybillStartTime"
  74. label="运单开始时间"
  75. width="120"
  76. show-overflow-tooltip>
  77. </el-table-column>
  78. <el-table-column
  79. prop="waybillEndTime"
  80. label="运单结束时间"
  81. width="120"
  82. show-overflow-tooltip>
  83. </el-table-column>
  84. <el-table-column
  85. prop="sellerTaxpayerCode"
  86. label="销方税号"
  87. show-overflow-tooltip>
  88. </el-table-column>
  89. <el-table-column
  90. prop="sellerName"
  91. label="销方名称"
  92. show-overflow-tooltip>
  93. </el-table-column>
  94. <el-table-column
  95. prop="enStation"
  96. label="入口收费站"
  97. width="100"
  98. show-overflow-tooltip>
  99. </el-table-column>
  100. <el-table-column
  101. prop="exStation"
  102. label="出口收费站"
  103. width="100"
  104. show-overflow-tooltip>
  105. </el-table-column>
  106. <el-table-column
  107. prop="invoiceCode"
  108. label="发票代码"
  109. show-overflow-tooltip>
  110. </el-table-column>
  111. <el-table-column
  112. prop="invoiceNum"
  113. label="发票号码"
  114. show-overflow-tooltip>
  115. </el-table-column>
  116. <el-table-column
  117. prop="transactionId"
  118. label="交易Id"
  119. show-overflow-tooltip>
  120. </el-table-column>
  121. <el-table-column
  122. prop="invoiceMakeTime"
  123. label="开票时间"
  124. show-overflow-tooltip>
  125. </el-table-column>
  126. <el-table-column
  127. prop="exTime"
  128. label="交易时间"
  129. show-overflow-tooltip>
  130. </el-table-column>
  131. <el-table-column
  132. prop="fee"
  133. label="交易金额"
  134. show-overflow-tooltip>
  135. <template slot-scope="scope">
  136. <span>{{scope.row.fee/100| rounding}}</span>
  137. </template>
  138. </el-table-column>
  139. <el-table-column
  140. prop="totalAmount"
  141. label="价税合计"
  142. show-overflow-tooltip>
  143. <template slot-scope="scope">
  144. <span>{{scope.row.totalAmount/100| rounding}}</span>
  145. </template>
  146. </el-table-column>
  147. <el-table-column
  148. prop="totalTaxAmount"
  149. label="税额"
  150. show-overflow-tooltip>
  151. <template slot-scope="scope">
  152. <span>{{scope.row.totalTaxAmount/100| rounding}}</span>
  153. </template>
  154. </el-table-column>
  155. <el-table-column
  156. prop="amount"
  157. label="金额"
  158. show-overflow-tooltip>
  159. <template slot-scope="scope">
  160. <span>{{scope.row.amount/100| rounding}}</span>
  161. </template>
  162. </el-table-column>
  163. <el-table-column
  164. prop="taxRate"
  165. label="税率"
  166. show-overflow-tooltip>
  167. <template slot-scope="scope">
  168. <span>{{scope.row.taxRate| rounding}}</span>
  169. </template>
  170. </el-table-column>
  171. <el-table-column
  172. prop="invoiceHtmlUrl"
  173. label="预览地址"
  174. show-overflow-tooltip>
  175. </el-table-column>
  176. <el-table-column
  177. prop="invoiceUrl"
  178. label="下载地址"
  179. show-overflow-tooltip>
  180. </el-table-column>
  181. <el-table-column
  182. prop="calculateTime"
  183. label="扣费时间"
  184. show-overflow-tooltip>
  185. </el-table-column>
  186. <el-table-column
  187. prop="billStatus"
  188. label="运单状态"
  189. show-overflow-tooltip>
  190. <template slot-scope="scope">
  191. <span v-if="scope.row.billStatus == 1" style="color: green">未结束</span>
  192. <span v-else-if="scope.row.billStatus == 2" style="color: green">开票中</span>
  193. <span v-else-if="scope.row.billStatus == 3" style="color: green">开票完成</span>
  194. <span v-else-if="scope.row.billStatus == 4" style="color: red">超时运单</span>
  195. </template>
  196. </el-table-column>
  197. <el-table-column
  198. prop="interType"
  199. label="对接方式"
  200. show-overflow-tooltip>
  201. <template slot-scope="scope">
  202. <span v-if="scope.row.interType == 0">接口</span>
  203. <span v-if="scope.row.interType == 1">平台</span>
  204. <span v-if="scope.row.interType == 3">迁移数据</span>
  205. </template>
  206. </el-table-column>
  207. </el-table>
  208. </template>
  209. <!-- 分页 -->
  210. <div class="block">
  211. <el-pagination
  212. @size-change="handleSizeChange"
  213. @current-change="handleCurrentChange"
  214. :current-page="current"
  215. :page-sizes="[6, 8, 10, 20, 50, 100]"
  216. :page-size="pagesize"
  217. layout="total, sizes, prev, pager, next, jumper"
  218. :total="total">
  219. </el-pagination>
  220. </div>
  221. </div>
  222. </template>
  223. <script type="text/javascript">
  224. import FileSaver from "file-saver";
  225. import XLSX from "xlsx";
  226. export default {
  227. data(){
  228. return{
  229. formCondition:{
  230. invoiceCode:'',
  231. invoiceNum:'',
  232. waybillNum:''
  233. },
  234. formUserList: {
  235. "file": ""
  236. },
  237. invoiceTable:[],
  238. hightt:'0px',
  239. current: 1,
  240. pagesize: 8,
  241. total:''
  242. }
  243. },
  244. created() {
  245. this.heightt = tableHeight-110;
  246. this.loadData();
  247. },
  248. filters: {
  249. rounding (value) {
  250. return value.toFixed(2)
  251. }
  252. },
  253. methods:{
  254. firstLoadData(){
  255. this.current = 1;
  256. this.pagesize = 8;
  257. this.loadData();
  258. },
  259. // 列表展示
  260. async loadData() {
  261. const formData = new FormData();
  262. formData.append('current', this.current);
  263. formData.append('size', this.pagesize);
  264. for(var i in this.formCondition){
  265. formData.append(i,this.formCondition[i]);
  266. }
  267. const response = await this.$http.post('noCar/findNocarInvoices', formData);
  268. if (response.data.code === 0) {
  269. this.invoiceTable = response.data.data.records;
  270. this.total = response.data.data.total;
  271. }
  272. },
  273. importExcel (content) {
  274. const file = content.file
  275. // let file = file.files[0] // 使用传统的input方法需要加上这一步
  276. const filename = file.name
  277. if(!filename||typeof filename!='string'){
  278. this.$message('格式错误!请按照模板中格式')
  279. return
  280. }
  281. let a = filename.split('').reverse().join('');
  282. let types = a.substring(0,a.search(/\./)).split('').reverse().join('');
  283. const fileType = ['xlsx', 'xlc', 'xlm', 'xls', 'xlt', 'xlw', 'csv'].some(item => item === types)
  284. if (!fileType) {
  285. this.$message(types+'格式错误!请按照模板中格式')
  286. return
  287. }
  288. this.file2Xce(file).then(tabJson => {
  289. debugger
  290. var billNums = '';
  291. var invoiceCodes = '';
  292. var invoiceNums = '';
  293. if (tabJson && tabJson.length > 0) {
  294. this.xlsxJson = tabJson
  295. this.fileList = this.xlsxJson[0].sheet
  296. this.fileList.forEach((item, index, arr) => {
  297. if(item['运单编号']!=null && item['运单编号']!='' && typeof item['运单编号']!='undefined'){
  298. billNums+= item['运单编号']+',';
  299. }
  300. if(item['发票号码']!=null && item['发票号码']!='' && typeof item['发票号码']!='undefined'){
  301. invoiceNums+= item['发票号码']+',';
  302. }
  303. if(item['发票代码']!=null && item['发票代码']!='' && typeof item['发票代码']!='undefined'){
  304. invoiceCodes+= item['发票代码']+',';
  305. }
  306. });
  307. }
  308. if(billNums!=''){
  309. this.formCondition.waybillNum =billNums.substring(0,billNums.length-1);
  310. }
  311. if(invoiceNums!=null || invoiceNums!=''){
  312. this.formCondition.invoiceCode =invoiceCodes.substring(0,invoiceCodes.length-1);
  313. }
  314. if(invoiceCodes!=''){
  315. this.formCondition.invoiceNum =invoiceNums.substring(0,invoiceNums.length-1);
  316. }
  317. })
  318. },
  319. file2Xce (file) {
  320. return new Promise(function (resolve, reject) {
  321. const reader = new FileReader()
  322. reader.onload = function (e) {
  323. const data = e.target.result
  324. this.wb = XLSX.read(data, {
  325. type: 'binary'
  326. })
  327. const result = []
  328. console.log((this.wb.Sheets.Sheet1)['!ref'])
  329. var are = (this.wb.Sheets.Sheet1)['!ref'];
  330. var areRe = are.replace('A1','A2');
  331. (this.wb.Sheets.Sheet1)['!ref'] = areRe;
  332. this.wb.SheetNames.forEach((sheetName) => {
  333. result.push({
  334. sheetName: sheetName,
  335. sheet: XLSX.utils.sheet_to_json(this.wb.Sheets[sheetName])
  336. })
  337. })
  338. resolve(result)
  339. }
  340. // reader.readAsBinaryString(file.raw)
  341. reader.readAsBinaryString(file) // 传统input方法
  342. })
  343. },
  344. // 下载模板
  345. DownloadTemplate() {
  346. var url = hostUrl+"noCar/templateDownload?fileName=4"
  347. window.location.href= url;
  348. },
  349. handleRemove(file, fileList) {
  350. console.log(file, fileList);
  351. },
  352. handlePreview(file) {
  353. console.log(file);
  354. },
  355. handleSuccess (a) {
  356. this.formUserList.file = a.raw;
  357. },
  358. // 批量上传模板信息
  359. async batchUpload() {
  360. const isLt50M = this.formUserList.file.size / 1024 / 1024 < 50;
  361. let extName = this.formUserList.file.name.substring(this.formUserList.file.name.lastIndexOf(".")).toLowerCase();
  362. let AllUpExt = ".xlsx";
  363. if( extName != AllUpExt){
  364. this.$message.error('格式错误!请重新选择');
  365. return false;
  366. }
  367. if (!isLt50M) {
  368. this.$message.error('上传文件大小不能超过50MB!');
  369. return false;
  370. }
  371. const loading = this.$loading({
  372. lock: true,
  373. text: '系统正在努力接收中,过程大概需要几分钟的时间,请您耐心等待...',
  374. spinner: 'el-icon-loading',
  375. background: 'rgba(0, 0, 0, 0.7)'
  376. });
  377. const formData = new FormData();
  378. formData.append('file', this.formUserList.file);
  379. const response = await this.$http.post(`noCar/batchImportNocarInvoices`,formData);
  380. var {data: { code, msg, data }} = response;
  381. if(code === 0 && msg === '1') {
  382. loading.close();
  383. this.invoiceTable = response.data.data;
  384. this.total = response.data.data.length;
  385. }else {
  386. loading.close();
  387. this.$message.error('数据存在错误,请检查文件中数据');
  388. }
  389. },
  390. // 分页方法
  391. handleSizeChange(val) {
  392. this.pagesize = val;
  393. this.loadData();
  394. console.log(`每页 ${val} 条`);
  395. },
  396. handleCurrentChange(val) {
  397. this.current = val;
  398. this.loadData();
  399. // console.log(`当前页: ${val}`);
  400. },
  401. formartNum(wb){
  402. var sheet = wb['Sheets']['Sheet1'];
  403. var replaceTemp = [];
  404. debugger;
  405. for(var i in sheet){
  406. if(sheet[i]['v'] == '交易金额'||sheet[i]['v'] == "价税合计"||sheet[i]['v'] == "税额"||sheet[i]['v'] == "金额"||sheet[i]['v'] == "税率"){
  407. replaceTemp.push(i.replace(/[0-9]/g,''));
  408. continue;
  409. }
  410. if(replaceTemp.includes(i.replace(/[0-9]/g,''))){
  411. sheet[i]['t']='n';
  412. }
  413. }
  414. },
  415. // async exportExcel() {
  416. // const loading = this.$loading({
  417. // lock: true,
  418. // text: '系统正在努力接收中,过程大概需要几分钟的时间,请您耐心等待...',
  419. // spinner: 'el-icon-loading',
  420. // background: 'rgba(0, 0, 0, 0.7)'
  421. // });
  422. // let curr = this.current;
  423. // let pagesize1 = this.pagesize;
  424. // this.current = 1;
  425. // this.pagesize = this.total;
  426. // await this.loadData();
  427. // // 设置当前日期
  428. // let time = new Date();
  429. // //console.log(time);
  430. // let year = time.getFullYear();
  431. // let month = time.getMonth() + 1;
  432. // let day = time.getDate();
  433. // let name = "无车发票查询列表_"+year + "" + month + "" + day;
  434. // // console.log(name)
  435. // /* generate workbook object from table */
  436. // // .table要导出的是哪一个表格
  437. // var wb = XLSX.utils.table_to_book(document.querySelector(".table"),{ raw: true });
  438. // this.formartNum(wb);
  439. // console.log(wb);
  440. // /* get binary string as output */
  441. // var wbout = XLSX.write(wb, {
  442. // bookType: "xlsx",
  443. // bookSST: true,
  444. // type: "array"
  445. // });
  446. // try {
  447. // // name+'.xlsx'表示导出的excel表格名字
  448. // FileSaver.saveAs(
  449. // new Blob([wbout], { type: "application/octet-stream" }),
  450. // name + ".xlsx"
  451. // );
  452. // } catch (e) {
  453. // if (typeof console !== "undefined") console.log(e, wbout);
  454. // }
  455. // this.current = curr;
  456. // this.pagesize = pagesize1;
  457. // this.loadData();
  458. // loading.close();
  459. // return wbout;
  460. // },
  461. async exportExcel() {
  462. const loading = this.$loading({
  463. lock: true,
  464. text: '系统正在努力接收中,过程大概需要几分钟的时间,请您耐心等待...',
  465. spinner: 'el-icon-loading',
  466. background: 'rgba(0, 0, 0, 0.7)'
  467. });
  468. var recodes = [];
  469. for(var j=1;j<=this.total/10000+1;j++){
  470. const formData = new FormData();
  471. formData.append('current', j);
  472. formData.append('size', 10000);
  473. for(var i in this.formCondition){
  474. formData.append(i,this.formCondition[i]);
  475. }
  476. const response = await this.$http.post('noCar/findNocarInvoices', formData);
  477. if (response.data.code === 0) {
  478. recodes = recodes.concat(response.data.data.records);
  479. }
  480. }
  481. // 设置当前日期
  482. let time = new Date();
  483. //console.log(time);
  484. let year = time.getFullYear();
  485. let month = time.getMonth() + 1;
  486. let day = time.getDate();
  487. let name = "无车发票查询列表_"+year + "" + month + "" + day;
  488. let cloums = [
  489. {"title":"企业编号","key":"companyNum"},
  490. {"title":"公司名称","key":"companyName"},
  491. {"title":"运单号","key":"waybillNum"},
  492. {"title":"购方税号","key":"buyerTaxpayerCode"},
  493. {"title":"车牌号码","key":"plateNum"},
  494. {"title":"运单开始时间","key":"waybillStartTime"},
  495. {"title":"运单结束时间","key":"waybillEndTime"},
  496. {"title":"销方税号","key":"sellerTaxpayerCode"},
  497. {"title":"销方名称","key":"sellerName"},
  498. {"title":"入口收费站","key":"enStation"},
  499. {"title":"出口收费站","key":"exStation"},
  500. {"title":"发票代码","key":"invoiceCode"},
  501. {"title":"发票号码","key":"invoiceNum"},
  502. {"title":"交易Id","key":"transactionId"},
  503. {"title":"开票时间","key":"invoiceMakeTime"},
  504. {"title":"交易时间","key":"exTime"},
  505. {"title":"交易金额(元)","key":"fee"},
  506. {"title":"价税合计(元)","key":"totalAmount"},
  507. {"title":"税额(元)","key":"totalTaxAmount"},
  508. {"title":"金额(元)","key":"amount"},
  509. {"title":"税率","key":"taxRate"},
  510. {"title":"扣费时间","key":"calculateTime"},
  511. {"title":"运单状态","key":"billStatus"},
  512. {"title":"预览地址","key":"invoiceHtmlUrl"},
  513. {"title":"下载地址","key":"invoiceUrl"}
  514. ];
  515. this.exportExcelComm(cloums,recodes,name,loading)
  516. },
  517. formatJson (filterVal, jsonData) {
  518. return jsonData.map(v => filterVal.map(j => {
  519. if(j == 'billStatus'){
  520. if(v[j] == 1){
  521. return "未结束";
  522. } else if(v[j] == -2){
  523. return "上传失败";
  524. }else if(v[j] == -3){
  525. return "指令结束上传失败";
  526. }else if(v[j] == 2){
  527. return "开票中";
  528. }else if(v[j] == 3){
  529. return "开票完成";
  530. }else {
  531. return "超时运单";
  532. }
  533. }else if(j =='fee'){
  534. return v[j]/100;
  535. }else if(j =='totalAmount'){
  536. return v[j]/100;
  537. }else if(j =='totalTaxAmount'){
  538. return v[j]/100;
  539. }else if(j =='amount'){
  540. return v[j]/100;
  541. }else{
  542. return v[j];
  543. }
  544. }));
  545. },
  546. // 导出Excel
  547. exportExcelComm(columns,list,excelName,loading){
  548. require.ensure([], () => {
  549. const { export_json_to_excel } = require('@/vendor/Export2Excel');
  550. let tHeader = []
  551. let filterVal = []
  552. columns.forEach(item =>{
  553. tHeader.push(item.title)
  554. filterVal.push(item.key)
  555. })
  556. for(var i =0;i<list.length/50000;i++){
  557. const data = this.formatJson(filterVal, list.slice(i*50000,(i+1)*50000>list.length?list.length:(i+1)*50000));
  558. export_json_to_excel(tHeader, data, excelName+'_'+i);
  559. }
  560. loading.close();
  561. })
  562. }
  563. }
  564. };
  565. </script>
  566. <style>
  567. .invoice_container {
  568. border: 1px solid #d9d9d9;
  569. border-radius: 10px;
  570. }
  571. .invoice_container .title {
  572. font-size: 5px;
  573. margin-bottom: 20px;
  574. }
  575. .invoice_container .top {
  576. padding-top: 20px;
  577. padding-left: 20px;
  578. }
  579. .invoice_container .text {
  580. display: inline-block;
  581. color: #000;
  582. font-size: 16px ;
  583. margin-left: 1%;
  584. }
  585. .invoice_container .input-demo {
  586. display: inline-block;
  587. width: 20%;
  588. margin-left: 1%;
  589. }
  590. .invoice_container .block {
  591. font-size: 5px;
  592. text-align: center;
  593. margin-top: 25px;
  594. margin-bottom: 25px;
  595. }
  596. .invoice_container .el-dialog {
  597. width: 60%;
  598. }
  599. .invoice_container .el-dialog__header, .el-dialog__body {
  600. padding: 0 20px;
  601. }
  602. .invoice_container .tou {
  603. font-size: 20px;
  604. height: 30px;
  605. line-height: 30px;
  606. padding-top: 15px;
  607. }
  608. .invoice_container .line {
  609. margin-top: 15px;
  610. margin-bottom: 15px;
  611. width: 100%;
  612. height: 2px;
  613. background-color: #d9d9d9;
  614. }
  615. .invoice_container .xinxi {
  616. text-align: center;
  617. margin: 15px auto;
  618. font-size: 18px;
  619. }
  620. </style>