invoice.vue 18 KB

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