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

Tracking activity when invoice is archived

This commit is contained in:
Hillel Coren 2014-08-26 13:57:44 +03:00
parent 77289e270e
commit 8a56575eda
3 changed files with 1 additions and 7 deletions

View File

@ -417,7 +417,6 @@ class PaymentController extends \BaseController
$license->affiliate_id = Session::get('affiliate_id');
$license->save();
$data = [
'license' => $licenseKey,
'hideHeader' => true

View File

@ -140,11 +140,6 @@ class Activity extends Eloquent
public static function archiveInvoice($invoice)
{
if ($invoice->invoice_status_id < INVOICE_STATUS_SENT)
{
return;
}
if (!$invoice->is_deleted)
{
$activity = Activity::getBlank();

View File

@ -234,7 +234,7 @@ define('NINJA_URL', 'https://www.invoiceninja.com');
define('NINJA_VERSION', '1.3.1');
define('PRO_PLAN_PRICE', 50);
define('LICENSE_PRICE', 30);
define('LICENSE_PRICE', 30.00);
/*
define('GATEWAY_AMAZON', 30);