mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
114 lines
2.9 KiB
Vue
114 lines
2.9 KiB
Vue
<template>
|
|
<div class="py-4" v-if="pendingInvoices.length">
|
|
<div class="px-4 text-sm text-gray-600 mb-1">
|
|
{{ t`Recent Invoices` }}
|
|
</div>
|
|
<div
|
|
class="px-4 py-3 border-b hover:bg-gray-100 cursor-pointer"
|
|
v-for="invoice in pendingInvoices"
|
|
:key="invoice.name"
|
|
@click="routeToForm(invoice)"
|
|
>
|
|
<div class="text-base">
|
|
<div class="flex justify-between items-center mb-1">
|
|
<span class="font-medium">
|
|
{{ invoice.name }}
|
|
</span>
|
|
<span>
|
|
<component :is="getStatusBadge(invoice)" />
|
|
</span>
|
|
</div>
|
|
<div class="flex justify-between">
|
|
<span>
|
|
{{ frappe.format(invoice.date, invoiceMeta.getField('date')) }}
|
|
</span>
|
|
<div>
|
|
<span
|
|
class="font-medium text-gray-900"
|
|
>
|
|
{{
|
|
frappe.format(
|
|
amountPaid(invoice),
|
|
invoiceMeta.getField('baseGrandTotal')
|
|
)
|
|
}}
|
|
</span>
|
|
<span class="text-gray-600" v-if="!fullyPaid(invoice)">
|
|
({{
|
|
frappe.format(
|
|
invoice.outstandingAmount,
|
|
invoiceMeta.getField('outstandingAmount')
|
|
)
|
|
}})
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { routeTo } from '@/utils';
|
|
import frappe from 'frappe';
|
|
import { getStatusColumn } from '../Transaction/Transaction';
|
|
|
|
export default {
|
|
name: 'PartyWidget',
|
|
props: ['doc'],
|
|
data() {
|
|
return {
|
|
pendingInvoices: [],
|
|
};
|
|
},
|
|
computed: {
|
|
invoiceDoctype() {
|
|
let isCustomer = this.doc.doctype === 'Customer';
|
|
return isCustomer ? 'SalesInvoice' : 'PurchaseInvoice';
|
|
},
|
|
invoiceMeta() {
|
|
return frappe.getMeta(this.invoiceDoctype);
|
|
},
|
|
},
|
|
mounted() {
|
|
this.fetchPendingInvoices();
|
|
},
|
|
methods: {
|
|
async fetchPendingInvoices() {
|
|
let isCustomer = this.doc.doctype === 'Customer';
|
|
let doctype = this.invoiceDoctype;
|
|
let partyField = isCustomer ? 'customer' : 'supplier';
|
|
this.pendingInvoices = await frappe.db.getAll({
|
|
doctype,
|
|
fields: [
|
|
'name',
|
|
'date',
|
|
'outstandingAmount',
|
|
'baseGrandTotal',
|
|
'submitted',
|
|
],
|
|
filters: {
|
|
[partyField]: this.doc.name,
|
|
},
|
|
limit: 3,
|
|
orderBy: 'creation',
|
|
});
|
|
window.pendingInvoices = this.pendingInvoices;
|
|
},
|
|
getStatusBadge(doc) {
|
|
let statusColumn = getStatusColumn();
|
|
return statusColumn.render(doc);
|
|
},
|
|
routeToForm(doc) {
|
|
routeTo(`/edit/${this.invoiceDoctype}/${doc.name}`);
|
|
},
|
|
fullyPaid(invoice) {
|
|
return invoice.outstandingAmount.isZero();
|
|
},
|
|
amountPaid(invoice) {
|
|
return invoice.baseGrandTotal.sub(invoice.outstandingAmount);
|
|
},
|
|
},
|
|
};
|
|
</script>
|