invoice.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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="top" >
  8. <span style="margin-top: 10px;margin-bottom: 10px;">导入文件:</span>
  9. <el-upload
  10. class="upload-demo"
  11. ref="upload"
  12. style="margin-bottom: 10px"
  13. action="http://invoice.back.jkcredit.com/dishonestuser/upload"
  14. :on-preview="handlePreview"
  15. :on-remove="handleRemove"
  16. :on-change="handleSuccess"
  17. :auto-upload="false">
  18. <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
  19. <el-button style="margin-left: 10px;" size="small" type="success" @click="batchUpload" v-loading.fullscreen.lock="fullscreenLoading">批量查询</el-button>
  20. <el-button style="margin-left: 555px;" @click="DownloadTemplate">查询模板下载</el-button>
  21. </el-upload>
  22. </div>
  23. <div class="demo-input-suffix">
  24. <el-input placeholder="客户名称" class="input-demo" v-model="formCondition.companyName"></el-input>
  25. <el-input placeholder="etc卡号" class="input-demo" v-model="formCondition.cardId"></el-input>
  26. <el-input placeholder="税号" class="input-demo" v-model="formCondition.buyerTaxpayerCode"></el-input>
  27. <el-input placeholder="交易id" class="input-demo" v-model="formCondition.tradeId"></el-input>
  28. </div>
  29. <div class="demo-input-suffix" style="margin-top: 5px;margin-left: 10px;">
  30. <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>
  31. <el-input placeholder="发票代码" class="input-demo" v-model="formCondition.invoiceCode"></el-input>
  32. <el-input placeholder="发票号码" class="input-demo" v-model="formCondition.invoiceNum"></el-input>
  33. <el-button type="success" style="margin-left: 1%;" @click="loadData">查询</el-button>
  34. <el-button type="primary" style="margin-left: 1%;" @click="exportExcel">导出报表</el-button>
  35. </div>
  36. </div>
  37. </el-col>
  38. </el-row>
  39. </div>
  40. <!-- 表格部分 -->
  41. <template>
  42. <el-table
  43. class="table"
  44. v-loading="loading"
  45. ref="multipleTable"
  46. :data="invoiceTable"
  47. :height="heightt"
  48. border
  49. tooltip-effect="dark">
  50. <el-table-column
  51. label="企业编号"
  52. prop="companyNum"
  53. show-overflow-tooltip>
  54. </el-table-column>
  55. <el-table-column
  56. prop="companyName"
  57. label="客户名称"
  58. show-overflow-tooltip>
  59. </el-table-column>
  60. <el-table-column
  61. prop="buyerTaxpayerCode"
  62. label="购方税号"
  63. show-overflow-tooltip>
  64. </el-table-column>
  65. <el-table-column
  66. prop="plateNum"
  67. label="车牌号"
  68. show-overflow-tooltip>
  69. </el-table-column>
  70. <el-table-column
  71. prop="cardId"
  72. label="ETC卡号"
  73. show-overflow-tooltip>
  74. </el-table-column>
  75. <el-table-column
  76. prop="tradeId"
  77. label="交易Id"
  78. show-overflow-tooltip>
  79. </el-table-column>
  80. <el-table-column
  81. prop="invoiceCode"
  82. label="发票代码"
  83. show-overflow-tooltip>
  84. </el-table-column>
  85. <el-table-column
  86. prop="invoiceNum"
  87. label="发票号码"
  88. show-overflow-tooltip>
  89. </el-table-column>
  90. <el-table-column
  91. prop="invoiceMakeTime"
  92. label="开票时间"
  93. show-overflow-tooltip>
  94. </el-table-column>
  95. <el-table-column
  96. prop="exTime"
  97. label="交易时间"
  98. show-overflow-tooltip>
  99. </el-table-column>
  100. <!-- <el-table-column
  101. prop="enStation"
  102. label="入口收费站"
  103. width="100"
  104. show-overflow-tooltip>
  105. </el-table-column>
  106. <el-table-column
  107. prop="exStation"
  108. label="出口收费站"
  109. width="100"
  110. show-overflow-tooltip>
  111. </el-table-column>
  112. <el-table-column
  113. prop="sellerName"
  114. label="销方名称"
  115. show-overflow-tooltip>
  116. </el-table-column>
  117. <el-table-column
  118. prop="sellerTaxpayerCode"
  119. label="销方税号"
  120. show-overflow-tooltip>
  121. </el-table-column> -->
  122. <el-table-column
  123. prop="totalAmount"
  124. label="价税合计"
  125. show-overflow-tooltip>
  126. <template slot-scope="scope">
  127. <span>{{scope.row.totalAmount/100| rounding}}</span>
  128. </template>
  129. </el-table-column>
  130. <el-table-column
  131. prop="totalTaxAmount"
  132. label="税额"
  133. show-overflow-tooltip>
  134. <template slot-scope="scope">
  135. <span>{{scope.row.totalTaxAmount/100| rounding}}</span>
  136. </template>
  137. </el-table-column>
  138. <el-table-column
  139. prop="fee"
  140. label="金额"
  141. show-overflow-tooltip>
  142. <template slot-scope="scope">
  143. <span>{{scope.row.fee/100| rounding}}</span>
  144. </template>
  145. </el-table-column>
  146. <el-table-column
  147. prop="taxRate"
  148. label="税率"
  149. show-overflow-tooltip>
  150. <template slot-scope="scope">
  151. <span>{{scope.row.taxRate| rounding}}</span>
  152. </template>
  153. </el-table-column>
  154. <el-table-column
  155. prop="invoiceHtmlUrl"
  156. label="预览地址"
  157. show-overflow-tooltip>
  158. </el-table-column>
  159. <el-table-column
  160. prop="invoiceUrl"
  161. label="下载地址"
  162. show-overflow-tooltip>
  163. </el-table-column>
  164. <el-table-column
  165. prop="tradeStatus"
  166. label="状态"
  167. show-overflow-tooltip>
  168. <template slot-scope="scope">
  169. <span v-if="scope.row.tradeStatus == 1" style="color: green">待开票</span>
  170. <span v-else-if="scope.row.tradeStatus == 2" style="color: red">开票中</span>
  171. <span v-else-if="scope.row.tradeStatus == 3" style="color: red">已开票</span>
  172. </template>
  173. </el-table-column>
  174. <el-table-column
  175. prop="calculateTime"
  176. label="计费时间"
  177. show-overflow-tooltip>
  178. </el-table-column>
  179. </el-table>
  180. </template>
  181. <!-- 分页 -->
  182. <div class="block">
  183. <el-pagination
  184. @size-change="handleSizeChange"
  185. @current-change="handleCurrentChange"
  186. :current-page="current"
  187. :page-sizes="[6, 8, 10, 20, 50, 100]"
  188. :page-size="pagesize"
  189. layout="total, sizes, prev, pager, next, jumper"
  190. :total="total">
  191. </el-pagination>
  192. </div>
  193. </div>
  194. </template>
  195. <script type="text/javascript">
  196. import FileSaver from "file-saver";
  197. import XLSX from "xlsx";
  198. export default {
  199. data(){
  200. return{
  201. formCondition:{
  202. },
  203. formUserList: {
  204. "file": ""
  205. },
  206. invoiceTable:[],
  207. hightt:'0px',
  208. current: 1,
  209. pagesize: 8,
  210. total:''
  211. }
  212. },
  213. created() {
  214. this.heightt = tableHeight;
  215. this.loadData();
  216. },
  217. filters: {
  218. rounding (value) {
  219. return value.toFixed(2)
  220. }
  221. },
  222. methods:{
  223. // 列表展示
  224. async loadData() {
  225. const formData = new FormData();
  226. formData.append('current', this.current);
  227. formData.append('size', this.pagesize);
  228. for(var i in this.formCondition){
  229. formData.append(i,this.formCondition[i]);
  230. }
  231. const response = await this.$http.post('selfCar/findSelfCarInvoices', formData);
  232. if (response.data.code === 0) {
  233. this.invoiceTable = response.data.data.records;
  234. this.total = response.data.data.total;
  235. }
  236. },
  237. // 下载模板
  238. DownloadTemplate() {
  239. var url = hostUrl+"noCar/templateDownload?fileName=7"
  240. window.location.href= url;
  241. },
  242. handleRemove(file, fileList) {
  243. console.log(file, fileList);
  244. },
  245. handlePreview(file) {
  246. console.log(file);
  247. },
  248. handleSuccess (a) {
  249. this.formUserList.file = a.raw;
  250. },
  251. // 批量上传模板信息
  252. async batchUpload() {
  253. this.fullscreenLoading = true;
  254. const formData = new FormData();
  255. formData.append('file', this.formUserList.file);
  256. const response = await this.$http.post(`selfCar/batchImportSelfcarInvoices`,formData);
  257. var {data: { code, msg, data }} = response;
  258. if(code === 0 && msg === '1') {
  259. this.fullscreenLoading = false;
  260. this.invoiceTable = response.data.data;
  261. this.total = response.data.data.length;
  262. }else {
  263. this.fullscreenLoading = false;
  264. this.$message.error('数据存在错误,请检查文件中数据');
  265. }
  266. },
  267. // 分页方法
  268. handleSizeChange(val) {
  269. this.pagesize = val;
  270. this.loadData();
  271. console.log(`每页 ${val} 条`);
  272. },
  273. handleCurrentChange(val) {
  274. this.current = val;
  275. this.loadData();
  276. // console.log(`当前页: ${val}`);
  277. },
  278. async exportExcel() {
  279. let curr = this.current;
  280. let pagesize1 = this.pagesize;
  281. this.current = 1;
  282. this.pagesize = this.total;
  283. await this.loadData();
  284. // 设置当前日期
  285. let time = new Date();
  286. //console.log(time);
  287. let year = time.getFullYear();
  288. let month = time.getMonth() + 1;
  289. let day = time.getDate();
  290. let name = "自有车发票查询列表_"+year + "" + month + "" + day;
  291. // console.log(name)
  292. /* generate workbook object from table */
  293. // .table要导出的是哪一个表格
  294. var wb = XLSX.utils.table_to_book(document.querySelector(".table"),{ raw: true });
  295. /* get binary string as output */
  296. var wbout = XLSX.write(wb, {
  297. bookType: "xlsx",
  298. bookSST: true,
  299. type: "array"
  300. });
  301. try {
  302. // name+'.xlsx'表示导出的excel表格名字
  303. FileSaver.saveAs(
  304. new Blob([wbout], { type: "application/octet-stream" }),
  305. name + ".xlsx"
  306. );
  307. } catch (e) {
  308. if (typeof console !== "undefined") console.log(e, wbout);
  309. }
  310. this.current = curr;
  311. this.pagesize = pagesize1;
  312. this.loadData();
  313. return wbout;
  314. },
  315. }
  316. };
  317. </script>
  318. <style>
  319. .invoice_container {
  320. border: 1px solid #d9d9d9;
  321. border-radius: 10px;
  322. }
  323. .invoice_container .title {
  324. font-size: 5px;
  325. margin-bottom: 20px;
  326. }
  327. .invoice_container .top {
  328. padding-top: 20px;
  329. padding-left: 20px;
  330. }
  331. .invoice_container .text {
  332. display: inline-block;
  333. color: #000;
  334. font-size: 16px ;
  335. margin-left: 1%;
  336. }
  337. .invoice_container .input-demo {
  338. display: inline-block;
  339. width: 20%;
  340. margin-left: 1%;
  341. }
  342. .invoice_container .block {
  343. font-size: 5px;
  344. text-align: center;
  345. margin-top: 25px;
  346. margin-bottom: 25px;
  347. }
  348. .invoice_container .el-dialog {
  349. width: 60%;
  350. }
  351. .invoice_container .el-dialog__header, .el-dialog__body {
  352. padding: 0 20px;
  353. }
  354. .invoice_container .tou {
  355. font-size: 20px;
  356. height: 30px;
  357. line-height: 30px;
  358. padding-top: 15px;
  359. }
  360. .invoice_container .line {
  361. margin-top: 15px;
  362. margin-bottom: 15px;
  363. width: 100%;
  364. height: 2px;
  365. background-color: #d9d9d9;
  366. }
  367. .invoice_container .xinxi {
  368. text-align: center;
  369. margin: 15px auto;
  370. font-size: 18px;
  371. }
  372. </style>