mirror of
https://github.com/frappe/books.git
synced 2025-04-02 00:01:51 +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 Invoice from '../../../models/doctype/Invoice/InvoiceList';
|
||||||
import Customer from '../../../models/doctype/Party/CustomerList';
|
import Customer from '../../../models/doctype/Party/CustomerList';
|
||||||
import Item from '../../../models/doctype/Item/ItemList';
|
import Item from '../../../models/doctype/Item/ItemList';
|
||||||
|
import Payment from '../../../models/doctype/Payment/PaymentList';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
Invoice,
|
Invoice,
|
||||||
Customer,
|
Customer,
|
||||||
Item
|
Item,
|
||||||
|
Payment
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user