billway.vue 21 KB

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