1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

Show terms checkbox even if terms are blank

This commit is contained in:
Hillel Coren 2017-03-06 12:22:32 +02:00
parent d024e08778
commit 085c82ab3e

View File

@ -1606,7 +1606,7 @@ class Account extends Eloquent
public function showAcceptTerms($invoice)
{
if (! $this->isPro() || ! $invoice->terms) {
if (! $this->isPro()) {
return false;
}