invoice.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  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="enStation"
  80. label="入口收费站"
  81. width="100"
  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="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>
  192. </template>
  193. <!-- 分页 -->
  194. <div class="block">
  195. <el-pagination
  196. @size-change="handleSizeChange"
  197. @current-change="handleCurrentChange"
  198. :current-page="current"
  199. :page-sizes="[6, 8, 10, 20, 50, 100]"
  200. :page-size="pagesize"
  201. layout="total, sizes, prev, pager, next, jumper"
  202. :total="total">
  203. </el-pagination>
  204. </div>
  205. </div>
  206. </template>
  207. <script type="text/javascript">
  208. import FileSaver from "file-saver";
  209. import XLSX from "xlsx";
  210. export default {
  211. data(){
  212. return{
  213. formCondition:{
  214. invoiceCode:'',
  215. invoiceNum:'',
  216. waybillNum:''
  217. },
  218. formUserList: {
  219. "file": ""
  220. },
  221. invoiceTable:[],
  222. hightt:'0px',
  223. current: 1,
  224. pagesize: 8,
  225. total:''
  226. }
  227. },
  228. created() {
  229. this.heightt = tableHeight-110;
  230. this.loadData();
  231. },
  232. filters: {
  233. rounding (value) {
  234. return value.toFixed(2)
  235. }
  236. },
  237. methods:{
  238. firstLoadData(){
  239. this.current = 1;
  240. this.pagesize = 8;
  241. this.loadData();
  242. },
  243. // 列表展示
  244. async loadData() {
  245. const formData = new FormData();
  246. formData.append('current', this.current);
  247. formData.append('size', this.pagesize);
  248. for(var i in this.formCondition){
  249. formData.append(i,this.formCondition[i]);
  250. }
  251. const response = await this.$http.post('noCar/findNocarInvoices', formData);
  252. if (response.data.code === 0) {
  253. this.invoiceTable = response.data.data.records;
  254. this.total = response.data.data.total;
  255. }
  256. },
  257. importExcel (content) {
  258. const file = content.file
  259. // let file = file.files[0] // 使用传统的input方法需要加上这一步
  260. const filename = file.name
  261. if(!filename||typeof filename!='string'){
  262. this.$message('格式错误!请按照模板中格式')
  263. return
  264. }
  265. let a = filename.split('').reverse().join('');
  266. let types = a.substring(0,a.search(/\./)).split('').reverse().join('');
  267. const fileType = ['xlsx', 'xlc', 'xlm', 'xls', 'xlt', 'xlw', 'csv'].some(item => item === types)
  268. if (!fileType) {
  269. this.$message(types+'格式错误!请按照模板中格式')
  270. return
  271. }
  272. this.file2Xce(file).then(tabJson => {
  273. debugger
  274. var billNums = '';
  275. var invoiceCodes = '';
  276. var invoiceNums = '';
  277. if (tabJson && tabJson.length > 0) {
  278. this.xlsxJson = tabJson
  279. this.fileList = this.xlsxJson[0].sheet
  280. this.fileList.forEach((item, index, arr) => {
  281. if(item['运单编号']!=null && item['运单编号']!='' && typeof item['运单编号']!='undefined'){
  282. billNums+= item['运单编号']+',';
  283. }
  284. if(item['发票号码']!=null && item['发票号码']!='' && typeof item['发票号码']!='undefined'){
  285. invoiceNums+= item['发票号码']+',';
  286. }
  287. if(item['发票代码']!=null && item['发票代码']!='' && typeof item['发票代码']!='undefined'){
  288. invoiceCodes+= item['发票代码']+',';
  289. }
  290. });
  291. }
  292. if(billNums!=''){
  293. this.formCondition.waybillNum =billNums.substring(0,billNums.length-1);
  294. }
  295. if(invoiceNums!=null || invoiceNums!=''){
  296. this.formCondition.invoiceCode =invoiceCodes.substring(0,invoiceCodes.length-1);
  297. }
  298. if(invoiceCodes!=''){
  299. this.formCondition.invoiceNum =invoiceNums.substring(0,invoiceNums.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. console.log((this.wb.Sheets.Sheet1)['!ref'])
  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=4"
  331. window.location.href= url;
  332. },
  333. handleRemove(file, fileList) {
  334. console.log(file, fileList);
  335. },
  336. handlePreview(file) {
  337. console.log(file);
  338. },
  339. handleSuccess (a) {
  340. this.formUserList.file = a.raw;
  341. },
  342. // 批量上传模板信息
  343. async batchUpload() {
  344. const isLt50M = this.formUserList.file.size / 1024 / 1024 < 50;
  345. let extName = this.formUserList.file.name.substring(this.formUserList.file.name.lastIndexOf(".")).toLowerCase();
  346. let AllUpExt = ".xlsx";
  347. if( extName != AllUpExt){
  348. this.$message.error('格式错误!请重新选择');
  349. return false;
  350. }
  351. if (!isLt50M) {
  352. this.$message.error('上传文件大小不能超过50MB!');
  353. return false;
  354. }
  355. const loading = this.$loading({
  356. lock: true,
  357. text: '系统正在努力接收中,过程大概需要几分钟的时间,请您耐心等待...',
  358. spinner: 'el-icon-loading',
  359. background: 'rgba(0, 0, 0, 0.7)'
  360. });
  361. const formData = new FormData();
  362. formData.append('file', this.formUserList.file);
  363. const response = await this.$http.post(`noCar/batchImportNocarInvoices`,formData);
  364. var {data: { code, msg, data }} = response;
  365. if(code === 0 && msg === '1') {
  366. loading.close();
  367. this.invoiceTable = response.data.data;
  368. this.total = response.data.data.length;
  369. }else {
  370. loading.close();
  371. this.$message.error('数据存在错误,请检查文件中数据');
  372. }
  373. },
  374. // 分页方法
  375. handleSizeChange(val) {
  376. this.pagesize = val;
  377. this.loadData();
  378. console.log(`每页 ${val} 条`);
  379. },
  380. handleCurrentChange(val) {
  381. this.current = val;
  382. this.loadData();
  383. // console.log(`当前页: ${val}`);
  384. },
  385. formartNum(wb){
  386. var sheet = wb['Sheets']['Sheet1'];
  387. var replaceTemp = [];
  388. debugger;
  389. for(var i in sheet){
  390. if(sheet[i]['v'] == '交易金额'||sheet[i]['v'] == "价税合计"||sheet[i]['v'] == "税额"||sheet[i]['v'] == "金额"||sheet[i]['v'] == "税率"){
  391. replaceTemp.push(i.replace(/[0-9]/g,''));
  392. continue;
  393. }
  394. if(replaceTemp.includes(i.replace(/[0-9]/g,''))){
  395. sheet[i]['t']='n';
  396. }
  397. }
  398. },
  399. async exportExcel() {
  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. //console.log(time);
  408. let year = time.getFullYear();
  409. let month = time.getMonth() + 1;
  410. let day = time.getDate();
  411. let name = "无车发票查询列表_"+year + "" + month + "" + day;
  412. // console.log(name)
  413. /* generate workbook object from table */
  414. // .table要导出的是哪一个表格
  415. var wb = XLSX.utils.table_to_book(document.querySelector(".table"),{ raw: true });
  416. this.formartNum(wb);
  417. console.log(wb);
  418. /* get binary string as output */
  419. var wbout = XLSX.write(wb, {
  420. bookType: "xlsx",
  421. bookSST: true,
  422. type: "array"
  423. });
  424. try {
  425. // name+'.xlsx'表示导出的excel表格名字
  426. FileSaver.saveAs(
  427. new Blob([wbout], { type: "application/octet-stream" }),
  428. name + ".xlsx"
  429. );
  430. } catch (e) {
  431. if (typeof console !== "undefined") console.log(e, wbout);
  432. }
  433. this.current = curr;
  434. this.pagesize = pagesize1;
  435. this.loadData();
  436. return wbout;
  437. },
  438. }
  439. };
  440. </script>
  441. <style>
  442. .invoice_container {
  443. border: 1px solid #d9d9d9;
  444. border-radius: 10px;
  445. }
  446. .invoice_container .title {
  447. font-size: 5px;
  448. margin-bottom: 20px;
  449. }
  450. .invoice_container .top {
  451. padding-top: 20px;
  452. padding-left: 20px;
  453. }
  454. .invoice_container .text {
  455. display: inline-block;
  456. color: #000;
  457. font-size: 16px ;
  458. margin-left: 1%;
  459. }
  460. .invoice_container .input-demo {
  461. display: inline-block;
  462. width: 20%;
  463. margin-left: 1%;
  464. }
  465. .invoice_container .block {
  466. font-size: 5px;
  467. text-align: center;
  468. margin-top: 25px;
  469. margin-bottom: 25px;
  470. }
  471. .invoice_container .el-dialog {
  472. width: 60%;
  473. }
  474. .invoice_container .el-dialog__header, .el-dialog__body {
  475. padding: 0 20px;
  476. }
  477. .invoice_container .tou {
  478. font-size: 20px;
  479. height: 30px;
  480. line-height: 30px;
  481. padding-top: 15px;
  482. }
  483. .invoice_container .line {
  484. margin-top: 15px;
  485. margin-bottom: 15px;
  486. width: 100%;
  487. height: 2px;
  488. background-color: #d9d9d9;
  489. }
  490. .invoice_container .xinxi {
  491. text-align: center;
  492. margin: 15px auto;
  493. font-size: 18px;
  494. }
  495. </style>