2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00

fix: allow parital payments to invoices

This commit is contained in:
Rushabh Mehta 2020-05-06 23:32:35 +05:30
parent 4a5b55624f
commit e2529ad116
2 changed files with 12 additions and 3 deletions

View File

@ -20,7 +20,7 @@ module.exports = {
fieldname: 'date', fieldname: 'date',
label: 'Posting Date', label: 'Posting Date',
fieldtype: 'Date', fieldtype: 'Date',
defaultValue: new Date().toISOString() default: new Date().toISOString()
}, },
{ {
fieldname: 'account', fieldname: 'account',
@ -102,8 +102,7 @@ module.exports = {
label: 'Amount', label: 'Amount',
fieldtype: 'Currency', fieldtype: 'Currency',
required: 1, required: 1,
readOnly: 1, default: doc => doc.getSum('for', 'amount')
formula: doc => doc.getSum('for', 'amount')
}, },
{ {
fieldname: 'writeoff', fieldname: 'writeoff',

View File

@ -42,6 +42,11 @@ const config = {
route: '/list/Item', route: '/list/Item',
doctype: 'Item' doctype: 'Item'
}, },
{
label: _('Payments'),
route: '/list/Payment',
doctype: 'Payment'
},
{ {
label: _('Journal Entry'), label: _('Journal Entry'),
route: '/list/JournalEntry', route: '/list/JournalEntry',
@ -71,6 +76,11 @@ const config = {
route: '/list/Item', route: '/list/Item',
doctype: 'Item' doctype: 'Item'
}, },
{
label: _('Payments'),
route: '/list/Payment',
doctype: 'Payment'
},
{ {
label: _('Journal Entry'), label: _('Journal Entry'),
route: '/list/JournalEntry', route: '/list/JournalEntry',