mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
fix bill seeder
This commit is contained in:
@@ -159,8 +159,8 @@
|
||||
</div>
|
||||
<div class="col text-right">
|
||||
<div class="font-heading all-caps fs-10 m-b-5">Our Payment Proof</div>
|
||||
<div class="row no-margin justify-content-end" v-if="(item.transaction_payment.status === 2 || item.transaction_payment.status === 3)">
|
||||
<div v-for="file in item.transaction_payment.documents.files" v-bind:key="file.id" class="col-auto no-padding m-l-5">
|
||||
<div class="row no-margin justify-content-end" v-if="(item.transaction_bill.status === 2 || item.transaction_bill.status === 3)">
|
||||
<div v-for="file in item.transaction_bill.documents.files" v-bind:key="file.id" class="col-auto no-padding m-l-5">
|
||||
<document-file-viewer-component :file="file">
|
||||
<template slot="button">
|
||||
<div class="icon-thumbnail fs-11 text-white icon-25 bg-primary btn-rounded float-left m-r-0">
|
||||
@@ -304,7 +304,7 @@
|
||||
},
|
||||
computed: {
|
||||
customerBooking(){
|
||||
return this.item.type === 1 ? this.item : this.item.customer_booking;
|
||||
return this.item.type === 1 ? this.item : this.item.transaction_payment;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
Reference in New Issue
Block a user