2
0
mirror of https://github.com/frappe/books.git synced 2024-12-23 03:19:01 +00:00

Add payment list

This commit is contained in:
Faris Ansari 2018-10-26 02:26:35 +05:30
parent aee837f258
commit cc28e0ee45
2 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,13 @@
import { _ } from 'frappejs/utils';
export default {
doctype: 'Payment',
title: _('Payment'),
columns: [
'party',
'account',
'amount',
'date',
'name'
]
}

View File

@ -1,9 +1,11 @@
import Invoice from '../../../models/doctype/Invoice/InvoiceList';
import Customer from '../../../models/doctype/Party/CustomerList';
import Item from '../../../models/doctype/Item/ItemList';
import Payment from '../../../models/doctype/Payment/PaymentList';
export default {
Invoice,
Customer,
Item
Item,
Payment
}