invoice.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  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 XLSX from "xlsx";
  218. export default {
  219. data(){
  220. return{
  221. formCondition:{
  222. cardId:'',
  223. tradeId:''
  224. },
  225. formUserList: {
  226. "file": ""
  227. },
  228. invoiceTable:[],
  229. hightt:'0px',
  230. current: 1,
  231. pagesize: 8,
  232. total:''
  233. }
  234. },
  235. created() {
  236. this.heightt = tableHeight-50;
  237. this.loadData();
  238. },
  239. filters: {
  240. rounding (value) {
  241. return value.toFixed(2)
  242. }
  243. },
  244. methods:{
  245. firstLoadData(){
  246. this.current = 1;
  247. this.pagesize = 8;
  248. this.loadData();
  249. },
  250. // 列表展示
  251. async loadData() {
  252. const formData = new FormData();
  253. formData.append('current', this.current);
  254. formData.append('size', this.pagesize);
  255. for(var i in this.formCondition){
  256. formData.append(i,this.formCondition[i]);
  257. }
  258. const response = await this.$http.post('selfCar/findSelfCarInvoices', formData);
  259. if (response.data.code === 0) {
  260. this.invoiceTable = response.data.data.records;
  261. this.total = response.data.data.total;
  262. }
  263. },
  264. importExcel (content) {
  265. const file = content.file
  266. // let file = file.files[0] // 使用传统的input方法需要加上这一步
  267. const filename = file.name
  268. if(!filename||typeof filename!='string'){
  269. this.$message('格式错误!请重新选择')
  270. return
  271. }
  272. let a = filename.split('').reverse().join('');
  273. let types = a.substring(0,a.search(/\./)).split('').reverse().join('');
  274. const fileType = ['xlsx', 'xlc', 'xlm', 'xls', 'xlt', 'xlw', 'csv'].some(item => item === types)
  275. if (!fileType) {
  276. this.$message('格式错误!请重新选择')
  277. return
  278. }
  279. this.file2Xce(file).then(tabJson => {
  280. var tradeIds = '';
  281. var etcIds = '';
  282. if (tabJson && tabJson.length > 0) {
  283. this.xlsxJson = tabJson
  284. this.fileList = this.xlsxJson[0].sheet
  285. let n = '匹配的字段'
  286. this.fileList.forEach((item, index, arr) => {
  287. if(item['etc卡号']!=null && item['etc卡号']!='' && typeof item['etc卡号']!='undefined'){
  288. etcIds+= item['etc卡号']+',';
  289. }
  290. if(item['交易id']!=null && item['交易id']!='' && typeof item['交易id']!='undefined'){
  291. tradeIds+= item['交易id']+',';
  292. }
  293. });
  294. }
  295. if(etcIds!=''){
  296. this.formCondition.cardId =etcIds.substring(0,etcIds.length-1);
  297. }
  298. if(tradeIds!=null){
  299. this.formCondition.tradeId = tradeIds.substring(0,tradeIds.length-1) ;
  300. }
  301. })
  302. },
  303. file2Xce (file) {
  304. return new Promise(function (resolve, reject) {
  305. const reader = new FileReader()
  306. reader.onload = function (e) {
  307. const data = e.target.result
  308. this.wb = XLSX.read(data, {
  309. type: 'binary'
  310. })
  311. const result = []
  312. var are = (this.wb.Sheets.Sheet1)['!ref'];
  313. var areRe = are.replace('A1','A2');
  314. (this.wb.Sheets.Sheet1)['!ref'] = areRe;
  315. this.wb.SheetNames.forEach((sheetName) => {
  316. result.push({
  317. sheetName: sheetName,
  318. sheet: XLSX.utils.sheet_to_json(this.wb.Sheets[sheetName])
  319. })
  320. })
  321. resolve(result)
  322. }
  323. // reader.readAsBinaryString(file.raw)
  324. reader.readAsBinaryString(file) // 传统input方法
  325. })
  326. },
  327. // 下载模板
  328. DownloadTemplate() {
  329. var url = hostUrl+"noCar/templateDownload?fileName=7"
  330. window.location.href= url;
  331. },
  332. handleRemove(file, fileList) {
  333. },
  334. handlePreview(file) {
  335. },
  336. handleSuccess (a) {
  337. this.formUserList.file = a.raw;
  338. },
  339. // 批量上传模板信息
  340. async batchUpload() {
  341. const isLt50M = this.formUserList.file.size / 1024 / 1024 < 50;
  342. let extName = this.formUserList.file.name.substring(this.formUserList.file.name.lastIndexOf(".")).toLowerCase();
  343. let AllUpExt = ".xlsx";
  344. if( extName != AllUpExt){
  345. this.$message.error(extName+'格式错误!请重新选择xlsx文件');
  346. return false;
  347. }
  348. if (!isLt50M) {
  349. this.$message.error('上传文件大小不能超过50MB!');
  350. return false;
  351. }
  352. const loading = this.$loading({
  353. lock: true,
  354. text: '系统正在努力接收中,过程大概需要几分钟的时间,请您耐心等待...',
  355. spinner: 'el-icon-loading',
  356. background: 'rgba(0, 0, 0, 0.7)'
  357. });
  358. const formData = new FormData();
  359. formData.append('file', this.formUserList.file);
  360. const response = await this.$http.post(`selfCar/batchImportSelfcarInvoices`,formData);
  361. var {data: { code, msg, data }} = response;
  362. if(code === 0 && msg === '1') {
  363. loading.close();
  364. this.invoiceTable = response.data.data;
  365. this.total = response.data.data.length;
  366. }else {
  367. loading.close();
  368. this.$message.error('数据存在错误,请检查文件中数据');
  369. }
  370. },
  371. // 分页方法
  372. handleSizeChange(val) {
  373. this.pagesize = val;
  374. this.loadData();
  375. },
  376. handleCurrentChange(val) {
  377. this.current = val;
  378. this.loadData();
  379. },
  380. formartNum(wb){
  381. var sheet = wb['Sheets']['Sheet1'];
  382. var replaceTemp = [];
  383. for(var i in sheet){
  384. if(sheet[i]['v'] == "价税合计"||sheet[i]['v'] == "税额"||sheet[i]['v'] == "金额"||sheet[i]['v'] == "税率"||sheet[i]['v'] == "交易金额"){
  385. replaceTemp.push(i.replace(/[0-9]/g,''));
  386. continue;
  387. }
  388. if(replaceTemp.includes(i.replace(/[0-9]/g,''))){
  389. sheet[i]['t']='n';
  390. }
  391. }
  392. },
  393. async exportExcel() {
  394. const loading = this.$loading({
  395. lock: true,
  396. text: '系统正在努力接收中,过程大概需要几分钟的时间,请您耐心等待...',
  397. spinner: 'el-icon-loading',
  398. background: 'rgba(0, 0, 0, 0.7)'
  399. });
  400. let curr = this.current;
  401. let pagesize1 = this.pagesize;
  402. this.current = 1;
  403. this.pagesize = this.total;
  404. await this.loadData();
  405. // 设置当前日期
  406. let time = new Date();
  407. let year = time.getFullYear();
  408. let month = time.getMonth() + 1;
  409. let day = time.getDate();
  410. let name = "自有车发票查询列表_"+year + "" + month + "" + day;
  411. /* generate workbook object from table */
  412. // .table要导出的是哪一个表格
  413. var wb = XLSX.utils.table_to_book(document.querySelector(".table"),{ raw: true });
  414. this.formartNum(wb);
  415. /* get binary string as output */
  416. var wbout = XLSX.write(wb, {
  417. bookType: "xlsx",
  418. bookSST: true,
  419. type: "array"
  420. });
  421. try {
  422. // name+'.xlsx'表示导出的excel表格名字
  423. FileSaver.saveAs(
  424. new Blob([wbout], { type: "application/octet-stream" }),
  425. name + ".xlsx"
  426. );
  427. } catch (e) {
  428. if (typeof console !== "undefined") console.log(e, wbout);
  429. }
  430. this.current = curr;
  431. this.pagesize = pagesize1;
  432. this.loadData();
  433. loading.close();
  434. return wbout;
  435. },
  436. }
  437. };
  438. </script>
  439. <style>
  440. .invoice_container {
  441. border: 1px solid #d9d9d9;
  442. border-radius: 10px;
  443. }
  444. .invoice_container .title {
  445. font-size: 5px;
  446. margin-bottom: 20px;
  447. }
  448. .invoice_container .top {
  449. padding-top: 20px;
  450. padding-left: 20px;
  451. }
  452. .invoice_container .text {
  453. display: inline-block;
  454. color: #000;
  455. font-size: 16px ;
  456. margin-left: 1%;
  457. }
  458. .invoice_container .input-demo {
  459. display: inline-block;
  460. width: 20%;
  461. margin-left: 1%;
  462. }
  463. .invoice_container .block {
  464. font-size: 5px;
  465. text-align: center;
  466. margin-top: 25px;
  467. margin-bottom: 25px;
  468. }
  469. .invoice_container .el-dialog {
  470. width: 60%;
  471. }
  472. .invoice_container .el-dialog__header, .el-dialog__body {
  473. padding: 0 20px;
  474. }
  475. .invoice_container .tou {
  476. font-size: 20px;
  477. height: 30px;
  478. line-height: 30px;
  479. padding-top: 15px;
  480. }
  481. .invoice_container .line {
  482. margin-top: 15px;
  483. margin-bottom: 15px;
  484. width: 100%;
  485. height: 2px;
  486. background-color: #d9d9d9;
  487. }
  488. .invoice_container .xinxi {
  489. text-align: center;
  490. margin: 15px auto;
  491. font-size: 18px;
  492. }
  493. </style>