|
@@ -210,6 +210,15 @@
|
|
|
<!-- <a-tag color="#87d068" v-else>已提交</a-tag> -->
|
|
|
</span>
|
|
|
|
|
|
+ <!-- 发票推送状态 -->
|
|
|
+ <span slot="timeStuta" slot-scope="text, record">
|
|
|
+ <a-tag color="#f50" v-if="record.timeStuta == '0'">未推送</a-tag>
|
|
|
+ <a-tag color="blue" v-if="record.timeStuta == '1'">待推送</a-tag>
|
|
|
+ <a-tag color="red" v-if="record.timeStuta == '2'">推送失败</a-tag>
|
|
|
+ <a-tag color="green" v-if="record.timeStuta == '3'">推送成功</a-tag>
|
|
|
+ <a-tag color="blue" v-if="record.timeStuta == '4'">推送中</a-tag>
|
|
|
+ </span>
|
|
|
+
|
|
|
<!-- 推送状态 -->
|
|
|
<span slot="whetherCloudFactoryPush" slot-scope="text, record" :title ="record.cause">
|
|
|
<span v-if="record.whetherCloudFactoryPush == '0'">否</span>
|
|
@@ -515,6 +524,7 @@ export default {
|
|
|
ellipsis: true,
|
|
|
className: 'replacecolor'
|
|
|
},
|
|
|
+
|
|
|
{
|
|
|
title: '单据号',
|
|
|
dataIndex: 'documentNo',
|
|
@@ -522,6 +532,14 @@ export default {
|
|
|
ellipsis: true,
|
|
|
className: 'replacecolor'
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '发票推送状态',
|
|
|
+ dataIndex: 'timeStuta',
|
|
|
+ width: 120,
|
|
|
+ scopedSlots: { customRender: 'timeStuta' },
|
|
|
+ fixed: 'right',
|
|
|
+ className: 'replacecolor'
|
|
|
+ },
|
|
|
{
|
|
|
title: '推送状态',
|
|
|
dataIndex: 'pushState',
|