订单列表:修复取值不正确、导出对应页面

beta
路明慧 1 year ago
parent b7d1e66719
commit 57270c5665
  1. 2
      jianshui-invoice/src/main/java/com/jianshui/invoice/service/impl/BillInfoServiceImpl.java
  2. 20
      jianshui-ui/src/views/invoice/billinfo/index.vue

@ -87,7 +87,7 @@ public class BillInfoServiceImpl implements IBillInfoService {
Map<String,String> invocieStatusDictMap = new HashMap<>(); ;
List<SysDictData> invocieStatusData = dictTypeService.selectDictDataByType("invoice_status");
List<SysDictData> invocieStatusData = dictTypeService.selectDictDataByType("bill_state");
if (CollectionUtil.isNotEmpty(invocieStatusData)){
invocieStatusData.forEach(e->invocieStatusDictMap.put(e.getDictValue(),e.getDictLabel()));

@ -404,9 +404,9 @@
</template>
</el-table-column>
<el-table-column label="推送方式" align="center" prop="tsfs">
<template slot-scope="scope">
<dict-tag :options="dict.type.tsfs" :value="scope.row.tsfs"/>
</template>
<!-- <template slot-scope="scope">-->
<!-- <dict-tag :options="dict.type.tsfs" :value="scope.row.tsfs"/>-->
<!-- </template>-->
</el-table-column>
<el-table-column label="清单标志" align="center" prop="qdbz">
<template slot-scope="scope">
@ -430,9 +430,9 @@
</template>
</el-table-column>
<el-table-column label="订单来源" align="center" prop="source">
<template slot-scope="scope">
<dict-tag :options="dict.type.source" :value="scope.row.source"/>
</template>
<!-- <template slot-scope="scope">-->
<!-- <dict-tag :options="dict.type.source" :value="scope.row.source"/>-->
<!-- </template>-->
</el-table-column>
<!-- <el-table-column label="服务公司" align="center" prop="serviceSupplierKey">
<template slot-scope="scope">
@ -440,9 +440,9 @@
</template>
</el-table-column> -->
<el-table-column label="单据类型" align="center" prop="billType">
<template slot-scope="scope">
<dict-tag :options="dict.type.bill_type" :value="scope.row.billType"/>
</template>
<!-- <template slot-scope="scope">-->
<!-- <dict-tag :options="dict.type.bill_type" :value="scope.row.billType"/>-->
<!-- </template>-->
</el-table-column>
<el-table-column label="业务留存字段" align="center" prop="businessRemark" width="120px"/>
<el-table-column label="开票时间" align="center" prop="invoicedTime" width="100">
@ -733,7 +733,7 @@ import {
export default {
name: "Billinfo",
dicts: ['invoice_type', 'invoice_kind', 'bill_type'],
dicts: ['invoice_type', 'invoice_kind', 'bill_type','bill_state'],
data() {
return {
showMore: false,

Loading…
Cancel
Save