mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 06:32:40 +01:00
commit
d807d51f67
@ -39,7 +39,6 @@ class NinjaPlanController extends Controller
|
|||||||
else
|
else
|
||||||
$account = $company->account;
|
$account = $company->account;
|
||||||
|
|
||||||
|
|
||||||
if (MultiDB::findAndSetDbByContactKey($contact_key) && $client_contact = ClientContact::where('contact_key', $contact_key)->first())
|
if (MultiDB::findAndSetDbByContactKey($contact_key) && $client_contact = ClientContact::where('contact_key', $contact_key)->first())
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -49,7 +48,7 @@ class NinjaPlanController extends Controller
|
|||||||
|
|
||||||
/* Current paid users get pushed straight to subscription overview page*/
|
/* Current paid users get pushed straight to subscription overview page*/
|
||||||
if($account->isPaidHostedClient())
|
if($account->isPaidHostedClient())
|
||||||
return redirect('/client/subscriptions');
|
return redirect('/client/dashboard');
|
||||||
|
|
||||||
/* Users that are not paid get pushed to a custom purchase page */
|
/* Users that are not paid get pushed to a custom purchase page */
|
||||||
return $this->render('subscriptions.ninja_plan', ['settings' => $client_contact->company->settings]);
|
return $this->render('subscriptions.ninja_plan', ['settings' => $client_contact->company->settings]);
|
||||||
|
@ -70,7 +70,10 @@ class InstantPayment
|
|||||||
$invoices = Invoice::whereIn('id', $this->transformKeys($payable_invoices->pluck('invoice_id')->toArray()))->withTrashed()->get();
|
$invoices = Invoice::whereIn('id', $this->transformKeys($payable_invoices->pluck('invoice_id')->toArray()))->withTrashed()->get();
|
||||||
|
|
||||||
$invoices->each(function($invoice){
|
$invoices->each(function($invoice){
|
||||||
$invoice->service()->removeUnpaidGatewayFees()->save();
|
$invoice->service()
|
||||||
|
->markSent()
|
||||||
|
->removeUnpaidGatewayFees()
|
||||||
|
->save();
|
||||||
});
|
});
|
||||||
|
|
||||||
/* pop non payable invoice from the $payable_invoices array */
|
/* pop non payable invoice from the $payable_invoices array */
|
||||||
|
@ -39,7 +39,7 @@ class MarkPaid extends AbstractService
|
|||||||
public function run()
|
public function run()
|
||||||
{
|
{
|
||||||
if ($this->invoice->status_id == Invoice::STATUS_DRAFT) {
|
if ($this->invoice->status_id == Invoice::STATUS_DRAFT) {
|
||||||
$this->invoice->service()->markSent();
|
$this->invoice->service()->markSent()->save();
|
||||||
}
|
}
|
||||||
|
|
||||||
/*Don't double pay*/
|
/*Don't double pay*/
|
||||||
@ -77,14 +77,16 @@ class MarkPaid extends AbstractService
|
|||||||
|
|
||||||
$this->invoice->next_send_date = null;
|
$this->invoice->next_send_date = null;
|
||||||
|
|
||||||
$this->invoice->service()
|
$this->invoice
|
||||||
|
->service()
|
||||||
->setExchangeRate()
|
->setExchangeRate()
|
||||||
->updateBalance($payment->amount * -1)
|
->updateBalance($payment->amount * -1)
|
||||||
->updatePaidToDate($payment->amount)
|
->updatePaidToDate($payment->amount)
|
||||||
->setStatus(Invoice::STATUS_PAID)
|
->setStatus(Invoice::STATUS_PAID)
|
||||||
->save();
|
->save();
|
||||||
|
|
||||||
$this->invoice->service()
|
$this->invoice
|
||||||
|
->service()
|
||||||
->applyNumber()
|
->applyNumber()
|
||||||
->deletePdf()
|
->deletePdf()
|
||||||
->save();
|
->save();
|
||||||
|
@ -223,6 +223,7 @@ class SubscriptionService
|
|||||||
->first();
|
->first();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($outstanding->count() == 0){
|
if ($outstanding->count() == 0){
|
||||||
//nothing outstanding
|
//nothing outstanding
|
||||||
return $target->price - $this->calculateProRataRefundForSubscription($outstanding_invoice);
|
return $target->price - $this->calculateProRataRefundForSubscription($outstanding_invoice);
|
||||||
@ -426,7 +427,9 @@ class SubscriptionService
|
|||||||
|
|
||||||
nlog("total payable = {$total_payable}");
|
nlog("total payable = {$total_payable}");
|
||||||
|
|
||||||
$credit = $this->createCredit($last_invoice, $target_subscription, $is_credit);
|
/* Only generate a credit if the previous invoice was paid in full. */
|
||||||
|
if($last_invoice->balance == 0)
|
||||||
|
$credit = $this->createCredit($last_invoice, $target_subscription, $is_credit);
|
||||||
|
|
||||||
$new_recurring_invoice = $this->createNewRecurringInvoice($recurring_invoice);
|
$new_recurring_invoice = $this->createNewRecurringInvoice($recurring_invoice);
|
||||||
|
|
||||||
@ -575,7 +578,7 @@ class SubscriptionService
|
|||||||
$old_recurring_invoice->service()->stop()->save();
|
$old_recurring_invoice->service()->stop()->save();
|
||||||
|
|
||||||
$recurring_invoice_repo = new RecurringInvoiceRepository();
|
$recurring_invoice_repo = new RecurringInvoiceRepository();
|
||||||
$recurring_invoice_repo->archive($old_recurring_invoice);
|
$recurring_invoice_repo->delete($old_recurring_invoice);
|
||||||
|
|
||||||
$recurring_invoice = $this->convertInvoiceToRecurring($old_recurring_invoice->client_id);
|
$recurring_invoice = $this->convertInvoiceToRecurring($old_recurring_invoice->client_id);
|
||||||
$recurring_invoice = $recurring_invoice_repo->save([], $recurring_invoice);
|
$recurring_invoice = $recurring_invoice_repo->save([], $recurring_invoice);
|
||||||
|
@ -6,7 +6,7 @@ use Illuminate\Database\Migrations\Migration;
|
|||||||
use Illuminate\Database\Schema\Blueprint;
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
use Illuminate\Support\Facades\Schema;
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
class AddStripePaymentsToPaymentTypes extends Migration
|
class StripePaymentGateways extends Migration
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Run the migrations.
|
* Run the migrations.
|
||||||
|
Loading…
Reference in New Issue
Block a user