1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Don't show due date in recurring invoice preview

This commit is contained in:
Hillel Coren 2016-05-05 19:48:33 +03:00
parent 47cd8a0a33
commit 861a47c3bb
2 changed files with 2 additions and 2 deletions

View File

@ -31584,7 +31584,7 @@ NINJA.invoiceDetails = function(invoice) {
], ],
[ [
{text: (invoice.is_quote ? invoiceLabels.valid_until : invoiceLabels.due_date)}, {text: (invoice.is_quote ? invoiceLabels.valid_until : invoiceLabels.due_date)},
{text: invoice.due_date} {text: invoice.is_recurring ? false : invoice.due_date}
] ]
]; ];

View File

@ -580,7 +580,7 @@ NINJA.invoiceDetails = function(invoice) {
], ],
[ [
{text: (invoice.is_quote ? invoiceLabels.valid_until : invoiceLabels.due_date)}, {text: (invoice.is_quote ? invoiceLabels.valid_until : invoiceLabels.due_date)},
{text: invoice.due_date} {text: invoice.is_recurring ? false : invoice.due_date}
] ]
]; ];