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:
parent
aee837f258
commit
cc28e0ee45
13
models/doctype/Payment/PaymentList.js
Normal file
13
models/doctype/Payment/PaymentList.js
Normal file
@ -0,0 +1,13 @@
|
||||
import { _ } from 'frappejs/utils';
|
||||
|
||||
export default {
|
||||
doctype: 'Payment',
|
||||
title: _('Payment'),
|
||||
columns: [
|
||||
'party',
|
||||
'account',
|
||||
'amount',
|
||||
'date',
|
||||
'name'
|
||||
]
|
||||
}
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue
Block a user