chenrui 3 lat temu
rodzic
commit
48c4a952ca
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      src/views/salesManagement/salesQuery/list.vue

+ 3 - 3
src/views/salesManagement/salesQuery/list.vue

@@ -134,7 +134,7 @@
           size="small"
           type="link"
           class="button-info"
-          v-if="record.salesBillSource == 'SALES' && (record.billStatus == 'WAIT_AUDIT' || record.billStatus == 'WAIT_SUBMIT')"
+          v-if="record.salesBillSource == 'SALES' && (record.billStatus == 'WAIT_AUDIT' || record.billStatus == 'WAIT_SUBMIT' || record.billStatus == 'AUDIT_REJECT')"
           @click="handleEdit(record)"
         >
           编辑
@@ -166,7 +166,7 @@
         >
           取消
         </a-button>
-        <span v-if="record.billStatus == 'FINISH'||(record.salesBillSource == 'PURCHASE'&&record.billStatus == 'AUDIT_REJECT')">--</span>
+        <span v-if="record.billStatus == 'FINISH'">--</span>
       </template>
     </s-table>
     <!-- 选择客户弹框 -->
@@ -224,7 +224,7 @@ export default {
         { title: '收款方式', dataIndex: 'settleStyleEntity.name', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '审核时间', dataIndex: 'auditDate', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '急件', dataIndex: 'oosFlag', scopedSlots: { customRender: 'oosFlag' }, width: 100, align: 'center' },
-        { title: '业务状态', dataIndex: 'billStatusDictValue', width: 110, align: 'center' },
+        { title: '业务状态', dataIndex: 'billStatusDictValue', width: 110, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '财务状态', dataIndex: 'financialStatus', scopedSlots: { customRender: 'financialStatus' }, width: 110, align: 'center' },
         { title: '操作', scopedSlots: { customRender: 'action' }, width: 220, align: 'center', fixed: 'right' }
       ],