mirror of
https://github.com/frappe/books.git
synced 2024-11-09 23:30:56 +00:00
fix: allow parital payments to invoices
This commit is contained in:
parent
4a5b55624f
commit
e2529ad116
@ -20,7 +20,7 @@ module.exports = {
|
||||
fieldname: 'date',
|
||||
label: 'Posting Date',
|
||||
fieldtype: 'Date',
|
||||
defaultValue: new Date().toISOString()
|
||||
default: new Date().toISOString()
|
||||
},
|
||||
{
|
||||
fieldname: 'account',
|
||||
@ -102,8 +102,7 @@ module.exports = {
|
||||
label: 'Amount',
|
||||
fieldtype: 'Currency',
|
||||
required: 1,
|
||||
readOnly: 1,
|
||||
formula: doc => doc.getSum('for', 'amount')
|
||||
default: doc => doc.getSum('for', 'amount')
|
||||
},
|
||||
{
|
||||
fieldname: 'writeoff',
|
||||
|
@ -42,6 +42,11 @@ const config = {
|
||||
route: '/list/Item',
|
||||
doctype: 'Item'
|
||||
},
|
||||
{
|
||||
label: _('Payments'),
|
||||
route: '/list/Payment',
|
||||
doctype: 'Payment'
|
||||
},
|
||||
{
|
||||
label: _('Journal Entry'),
|
||||
route: '/list/JournalEntry',
|
||||
@ -71,6 +76,11 @@ const config = {
|
||||
route: '/list/Item',
|
||||
doctype: 'Item'
|
||||
},
|
||||
{
|
||||
label: _('Payments'),
|
||||
route: '/list/Payment',
|
||||
doctype: 'Payment'
|
||||
},
|
||||
{
|
||||
label: _('Journal Entry'),
|
||||
route: '/list/JournalEntry',
|
||||
|
Loading…
Reference in New Issue
Block a user