Don't show due date in recurring invoice preview
This commit is contained in:
parent
47cd8a0a33
commit
861a47c3bb
2 changed files with 2 additions and 2 deletions
|
|
@ -31584,7 +31584,7 @@ NINJA.invoiceDetails = function(invoice) {
|
|||
],
|
||||
[
|
||||
{text: (invoice.is_quote ? invoiceLabels.valid_until : invoiceLabels.due_date)},
|
||||
{text: invoice.due_date}
|
||||
{text: invoice.is_recurring ? false : invoice.due_date}
|
||||
]
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -580,7 +580,7 @@ NINJA.invoiceDetails = function(invoice) {
|
|||
],
|
||||
[
|
||||
{text: (invoice.is_quote ? invoiceLabels.valid_until : invoiceLabels.due_date)},
|
||||
{text: invoice.due_date}
|
||||
{text: invoice.is_recurring ? false : invoice.due_date}
|
||||
]
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue