mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
bug fixes
This commit is contained in:
parent
56bf3c8799
commit
08213f61c3
@ -87,7 +87,7 @@ return array(
|
|||||||
|
|
|
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'signup_cache' => 120,
|
'signup_cache' => 0,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
@ -391,7 +391,7 @@ class ConfideSetupUsersTable extends Migration {
|
|||||||
$t->softDeletes();
|
$t->softDeletes();
|
||||||
|
|
||||||
$t->string('product_key');
|
$t->string('product_key');
|
||||||
$t->string('notes');
|
$t->text('notes');
|
||||||
$t->decimal('cost', 13, 4);
|
$t->decimal('cost', 13, 4);
|
||||||
$t->decimal('qty', 13, 4);
|
$t->decimal('qty', 13, 4);
|
||||||
|
|
||||||
|
@ -37,11 +37,11 @@ class UserMailer extends Mailer {
|
|||||||
}
|
}
|
||||||
else if ($type == 'sent')
|
else if ($type == 'sent')
|
||||||
{
|
{
|
||||||
$subject = 'sent to';
|
$action = 'sent to';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$subject = 'viewed by';
|
$action = 'viewed by';
|
||||||
}
|
}
|
||||||
|
|
||||||
$subject = "Invoice {$invoice->invoice_number} was $action {$invoice->client->getDisplayName()}";
|
$subject = "Invoice {$invoice->invoice_number} was $action {$invoice->client->getDisplayName()}";
|
||||||
|
@ -184,7 +184,7 @@ define('DEFAULT_INVOICE_NUMBER', '0001');
|
|||||||
define('RECENTLY_VIEWED_LIMIT', 8);
|
define('RECENTLY_VIEWED_LIMIT', 8);
|
||||||
define('LOGGED_ERROR_LIMIT', 100);
|
define('LOGGED_ERROR_LIMIT', 100);
|
||||||
define('RANDOM_KEY_LENGTH', 32);
|
define('RANDOM_KEY_LENGTH', 32);
|
||||||
define('MAX_NUM_CLIENTS', 3);
|
define('MAX_NUM_CLIENTS', 2000);
|
||||||
|
|
||||||
define('INVOICE_STATUS_DRAFT', 1);
|
define('INVOICE_STATUS_DRAFT', 1);
|
||||||
define('INVOICE_STATUS_SENT', 2);
|
define('INVOICE_STATUS_SENT', 2);
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
</button>
|
</button>
|
||||||
{{ link_to('/', 'Invoice Ninja', array('class'=>'navbar-brand')) }}
|
<a href="{{ URL::to('/rocksteady') }}" class='navbar-brand'>Invoice Ninja <sup><small>BETA</small></sup></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="collapse navbar-collapse" id="navbar-collapse-1">
|
<div class="collapse navbar-collapse" id="navbar-collapse-1">
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<div class="row" style="min-height:195px" onkeypress="formEnterClick(event)">
|
<div class="row" style="min-height:195px" onkeypress="formEnterClick(event)">
|
||||||
<div class="col-md-5" id="col_1">
|
<div class="col-md-5" id="col_1">
|
||||||
|
|
||||||
@if ($invoice && $invoice->isSent())
|
@if ($invoice)
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="client" class="control-label col-lg-4 col-sm-4">Client</label>
|
<label for="client" class="control-label col-lg-4 col-sm-4">Client</label>
|
||||||
<div class="col-lg-8 col-sm-8" style="padding-top: 7px">
|
<div class="col-lg-8 col-sm-8" style="padding-top: 7px">
|
||||||
@ -38,7 +38,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@if ($invoice && $invoice->isSent())
|
@if ($invoice)
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
@ -98,7 +98,7 @@
|
|||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="icon"><img src="images/icon-free.png"></div>
|
<div class="icon"><img src="images/icon-free.png"></div>
|
||||||
<h2>100% FREE, ALWAYS</h2>
|
<h2>100% FREE, ALWAYS</h2>
|
||||||
<p>Invoicing with no monthly fee, because you have enough bills already! It’s free, now and forever! Quality invoicing, build business and get paid.</p>
|
<p>Invoicing with no monthly fee, because you have enough bills already! Free, now and forever! Quality invoicing to build your business and get paid.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -107,7 +107,7 @@
|
|||||||
<div class="icon"><img src=
|
<div class="icon"><img src=
|
||||||
"images/icon-opensource.png"></div>
|
"images/icon-opensource.png"></div>
|
||||||
<h2>OPEN-SOURCE</h2>
|
<h2>OPEN-SOURCE</h2>
|
||||||
<p>Cloud-based, super secure, and user-developed. Open source platforms are a better way to do business (and save the world). Need we say more?</p>
|
<p>Cloud-based, super secure, and user-developed. Open source platforms are a better way to do business (and save the world). Need we say more?</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -115,7 +115,7 @@
|
|||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="icon"><img src="images/icon-pdf.png"></div>
|
<div class="icon"><img src="images/icon-pdf.png"></div>
|
||||||
<h2>LIVE .PDF VIEW</h2>
|
<h2>LIVE .PDF VIEW</h2>
|
||||||
<p>Beautiful email-ready .PDF invoices created instantly as you type. Our ‘Save & send’ functionality to saves you time and impresses clients.</p>
|
<p>Create beautiful email-ready .PDF invoices created instantly as you type. Our ‘Save & send’ feature saves you time and impresses clients.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -124,7 +124,7 @@
|
|||||||
<div class="icon"><img src=
|
<div class="icon"><img src=
|
||||||
"images/icon-payment.png"></div>
|
"images/icon-payment.png"></div>
|
||||||
<h2>ONLINE PAYMENTS</h2>
|
<h2>ONLINE PAYMENTS</h2>
|
||||||
<p>PayPal? Authorize.Net? Stripe? We support many payment technologies and if you need help we’ll lend a hand (we’re pretty friendly).</p>
|
<p>PayPal? Authorize.Net? Stripe? We support many payment technologies and if you need help or advise we’ll lend a hand (we’re pretty friendly).</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -147,7 +147,7 @@
|
|||||||
<section class="hero2">
|
<section class="hero2">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="caption">
|
<div class="caption">
|
||||||
<h1>Wherever you are, invoice the easy way.</h1>
|
<h1>SIMPLE, INTUITIVE INVOICING</h1>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
Loading…
Reference in New Issue
Block a user