浏览代码

财务明细

liujun 2 年之前
父节点
当前提交
4605ff5350
共有 1 个文件被更改,包括 22 次插入0 次删除
  1. 22 0
      src/views/financialManagement/collectionDetailStatic/list.vue

+ 22 - 0
src/views/financialManagement/collectionDetailStatic/list.vue

@@ -70,6 +70,22 @@
                   </a-select>
                 </a-form-item>
               </a-col>
+              <a-col :md="6" :sm="24">
+                <a-form-item label="开票状态">
+                  <v-select
+                    v-model="queryParam.invoiceDateType"
+                    ref="invoiceDateType"
+                    id="collectionDetail-invoiceDateType"
+                    code="FLAG"
+                    placeholder="请选择开票状态"
+                    allowClear></v-select>
+                </a-form-item>
+              </a-col>
+              <a-col :md="6" :sm="24">
+               <a-form-item label="收款日期">
+                 <rangeDate ref="receiptDate" :value="receiptDate" @change="receiptDateChange" />
+               </a-form-item>
+              </a-col>
               <a-col :md="4" :sm="24">
                 <a-form-item label="所属区域">
                   <subarea id="collectionDetail-subarea" v-model="queryParam.subareaSn"></subarea>
@@ -122,6 +138,11 @@
         :data="loadData"
         :scroll="{ y: tableHeight }"
         bordered>
+        <!-- 开票日期 -->
+        <template slot="draftDate" slot-scope="text, record">
+          <span v-if="$hasPermissions('B_fc_detail')" class="link-bule" @click="handleDetail(record)">{{ record.bookNo }}</span>
+          <span v-else>{{ record.bookNo }}</span>
+        </template>
       </s-table>
     </a-spin>
   </a-card>
@@ -237,6 +258,7 @@ export default {
         { title: '户名', dataIndex: 'bankAccount', align: 'center', width: '5%', customRender: function (text) { return text || '--' } },
         { title: '汇入银行', dataIndex: 'bankName', align: 'center', width: '5%', customRender: function (text) { return text || '--' } },
         { title: '足额打款', dataIndex: 'fullPaymentFlagDictValue', align: 'center', width: '5%', customRender: function (text) { return (text == 0 || text) ? text : '--' } },
+        { title: '开票日期', scopedSlots: { customRender: 'draftDate' },align: 'center', width: '5%', customRender: function (text) { return (text == 0 || text) ? text : '--' } },
         { title: '备注', dataIndex: 'remarks', align: 'center', width: '8%', customRender: function (text) { return text || '--' }, ellipsis: true }
       ]
       return arr