invoice.vue 20 KB

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