mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-03 18:44:36 -04:00
Fixes for liap
This commit is contained in:
parent
f14de42684
commit
8c7aa563f4
@ -110,9 +110,8 @@ class PrePaymentController extends Controller
|
|||||||
'pre_payment' => true,
|
'pre_payment' => true,
|
||||||
'frequency_id' => $request->frequency_id,
|
'frequency_id' => $request->frequency_id,
|
||||||
'remaining_cycles' => $request->remaining_cycles,
|
'remaining_cycles' => $request->remaining_cycles,
|
||||||
'is_recurring' => $request->is_recurring,
|
'is_recurring' => $request->is_recurring == 'on' ? true : false,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
return $this->render('invoices.payment', $data);
|
return $this->render('invoices.payment', $data);
|
||||||
|
|
||||||
|
@ -1,62 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Invoice Ninja (https://invoiceninja.com).
|
|
||||||
*
|
|
||||||
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
||||||
*
|
|
||||||
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
||||||
*
|
|
||||||
* @license https://www.elastic.co/licensing/elastic-license
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace App\Listeners\Subscription;
|
|
||||||
|
|
||||||
use App\Libraries\MultiDB;
|
|
||||||
use App\Models\Account;
|
|
||||||
use App\Models\Company;
|
|
||||||
use App\Notifications\Ninja\RenewalFailureNotification;
|
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Imdhemy\Purchases\Events\AppStore\DidRenew;
|
|
||||||
|
|
||||||
class AppStoreRenewSubscription implements ShouldQueue
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Create the event listener.
|
|
||||||
*
|
|
||||||
* @param ActivityRepository $activity_repo
|
|
||||||
*/
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handle the event.
|
|
||||||
*
|
|
||||||
* @param object $event
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function handle(DidRenew $event)
|
|
||||||
{
|
|
||||||
$inapp_transaction_id = $event->getSubscriptionId(); //$subscription_id
|
|
||||||
|
|
||||||
nlog("inapp upgrade processing for = {$inapp_transaction_id}");
|
|
||||||
|
|
||||||
MultiDB::findAndSetDbByInappTransactionId($inapp_transaction_id);
|
|
||||||
|
|
||||||
$account = Account::where('inapp_transaction_id', $inapp_transaction_id)->first();
|
|
||||||
|
|
||||||
if (!$account) {
|
|
||||||
$ninja_company = Company::on('db-ninja-01')->find(config('ninja.ninja_default_company_id'));
|
|
||||||
$ninja_company->notification(new RenewalFailureNotification("{$inapp_transaction_id}"))->ninja();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($account->plan_term == 'month') {
|
|
||||||
$account->plan_expires = now()->addMonth();
|
|
||||||
} elseif ($account->plan_term == 'year') {
|
|
||||||
$account->plan_expires = now()->addYear();
|
|
||||||
}
|
|
||||||
|
|
||||||
$account->save();
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,49 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Invoice Ninja (https://invoiceninja.com).
|
|
||||||
*
|
|
||||||
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
||||||
*
|
|
||||||
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
||||||
*
|
|
||||||
* @license https://www.elastic.co/licensing/elastic-license
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace App\Listeners\Subscription;
|
|
||||||
|
|
||||||
use App\Libraries\MultiDB;
|
|
||||||
use App\Models\Account;
|
|
||||||
use App\Models\Company;
|
|
||||||
use App\Notifications\Ninja\RenewalFailureNotification;
|
|
||||||
use Carbon\Carbon;
|
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
||||||
use Imdhemy\Purchases\Events\GooglePlay\SubscriptionRenewed;
|
|
||||||
|
|
||||||
class PlayStoreRenewSubscription implements ShouldQueue
|
|
||||||
{
|
|
||||||
public function handle(SubscriptionRenewed $event)
|
|
||||||
{
|
|
||||||
$notification = $event->getServerNotification();
|
|
||||||
nlog("google");
|
|
||||||
nlog($notification);
|
|
||||||
$in_app_identifier = $event->getSubscriptionIdentifier();
|
|
||||||
|
|
||||||
$parts = explode("..", $in_app_identifier);
|
|
||||||
|
|
||||||
MultiDB::findAndSetDbByInappTransactionId($parts[0]);
|
|
||||||
|
|
||||||
$expirationTime = $event->getSubscription()->getExpiryTime();
|
|
||||||
|
|
||||||
$account = Account::where('inapp_transaction_id', 'like', $parts[0]."%")->first();
|
|
||||||
|
|
||||||
if ($account) {
|
|
||||||
$account->update(['plan_expires' => Carbon::parse($expirationTime)]);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$account) {
|
|
||||||
$ninja_company = Company::on('db-ninja-01')->find(config('ninja.ninja_default_company_id'));
|
|
||||||
$ninja_company->notification(new RenewalFailureNotification("{$in_app_identifier}"))->ninja();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -117,13 +117,10 @@ class Gateway extends StaticModel
|
|||||||
switch ($this->id) {
|
switch ($this->id) {
|
||||||
case 1:
|
case 1:
|
||||||
return [GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true]]; //Authorize.net
|
return [GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true]]; //Authorize.net
|
||||||
break;
|
|
||||||
case 3:
|
case 3:
|
||||||
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]]; //eWay
|
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]]; //eWay
|
||||||
break;
|
|
||||||
case 11:
|
case 11:
|
||||||
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]]; //Payfast
|
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]]; //Payfast
|
||||||
break;
|
|
||||||
case 7:
|
case 7:
|
||||||
return [
|
return [
|
||||||
GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true, 'webhooks' => [' ']], // Mollie
|
GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true, 'webhooks' => [' ']], // Mollie
|
||||||
@ -136,31 +133,29 @@ class Gateway extends StaticModel
|
|||||||
return [
|
return [
|
||||||
GatewayType::PAYPAL => ['refund' => false, 'token_billing' => false],
|
GatewayType::PAYPAL => ['refund' => false, 'token_billing' => false],
|
||||||
]; //Paypal
|
]; //Paypal
|
||||||
break;
|
|
||||||
case 20:
|
case 20:
|
||||||
|
case 56:
|
||||||
return [
|
return [
|
||||||
GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true, 'webhooks' => ['payment_intent.succeeded']],
|
GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true, 'webhooks' => ['payment_intent.succeeded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'customer.source.updated','payment_intent.processing']],
|
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'customer.source.updated','payment_intent.processing', 'payment_intent.payment_failed']],
|
||||||
GatewayType::DIRECT_DEBIT => ['refund' => false, 'token_billing' => false, 'webhooks' => ['payment_intent.processing','payment_intent.succeeded','payment_intent.partially_funded']],
|
GatewayType::DIRECT_DEBIT => ['refund' => false, 'token_billing' => false, 'webhooks' => ['payment_intent.processing','payment_intent.succeeded','payment_intent.partially_funded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::ALIPAY => ['refund' => false, 'token_billing' => false],
|
GatewayType::ALIPAY => ['refund' => false, 'token_billing' => false],
|
||||||
GatewayType::APPLE_PAY => ['refund' => false, 'token_billing' => false],
|
GatewayType::APPLE_PAY => ['refund' => false, 'token_billing' => false],
|
||||||
GatewayType::BACS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.processing', 'payment_intent.succeeded', 'mandate.updated']],
|
GatewayType::BACS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.processing', 'payment_intent.succeeded', 'mandate.updated', 'payment_intent.payment_failed']],
|
||||||
GatewayType::SOFORT => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
GatewayType::SOFORT => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::KLARNA => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
GatewayType::KLARNA => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::SEPA => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
GatewayType::SEPA => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::PRZELEWY24 => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
GatewayType::PRZELEWY24 => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::GIROPAY => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
GatewayType::GIROPAY => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::EPS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
GatewayType::EPS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::BANCONTACT => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
GatewayType::BANCONTACT => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::BECS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
GatewayType::BECS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::IDEAL => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
GatewayType::IDEAL => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::ACSS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
GatewayType::ACSS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded', 'payment_intent.payment_failed']],
|
||||||
GatewayType::FPX => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded']],
|
GatewayType::FPX => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded']],
|
||||||
];
|
];
|
||||||
break;
|
|
||||||
case 39:
|
case 39:
|
||||||
return [GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true, 'webhooks' => [' ']]]; //Checkout
|
return [GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true, 'webhooks' => [' ']]]; //Checkout
|
||||||
break;
|
|
||||||
case 46:
|
case 46:
|
||||||
return [GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true]]; //Paytrace
|
return [GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true]]; //Paytrace
|
||||||
case 49:
|
case 49:
|
||||||
@ -168,40 +163,16 @@ class Gateway extends StaticModel
|
|||||||
GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true],
|
GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true],
|
||||||
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true, 'webhooks' => [' ']],
|
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true, 'webhooks' => [' ']],
|
||||||
]; //WePay
|
]; //WePay
|
||||||
break;
|
|
||||||
case 50:
|
case 50:
|
||||||
return [
|
return [
|
||||||
GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true], //Braintree
|
GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true], //Braintree
|
||||||
GatewayType::PAYPAL => ['refund' => true, 'token_billing' => true],
|
GatewayType::PAYPAL => ['refund' => true, 'token_billing' => true],
|
||||||
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true, 'webhooks' => [' ']],
|
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true, 'webhooks' => [' ']],
|
||||||
];
|
];
|
||||||
break;
|
|
||||||
case 56: //Stripe
|
|
||||||
return [
|
|
||||||
GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true, 'webhooks' => ['payment_intent.succeeded']],
|
|
||||||
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'customer.source.updated','payment_intent.processing']],
|
|
||||||
GatewayType::DIRECT_DEBIT => ['refund' => false, 'token_billing' => false, 'webhooks' => ['payment_intent.processing','payment_intent.succeeded','payment_intent.partially_funded']],
|
|
||||||
GatewayType::ALIPAY => ['refund' => false, 'token_billing' => false],
|
|
||||||
GatewayType::APPLE_PAY => ['refund' => false, 'token_billing' => false],
|
|
||||||
GatewayType::SOFORT => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
|
||||||
GatewayType::KLARNA => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
|
||||||
GatewayType::SEPA => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
|
||||||
GatewayType::PRZELEWY24 => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
|
||||||
GatewayType::GIROPAY => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
|
||||||
GatewayType::EPS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
|
||||||
GatewayType::BANCONTACT => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
|
||||||
GatewayType::BECS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
|
||||||
GatewayType::BACS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.processing', 'payment_intent.succeeded', 'mandate.updated']],
|
|
||||||
GatewayType::IDEAL => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
|
||||||
GatewayType::ACSS => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded', 'payment_intent.succeeded']],
|
|
||||||
GatewayType::FPX => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded']],
|
|
||||||
];
|
|
||||||
break;
|
|
||||||
case 57:
|
case 57:
|
||||||
return [
|
return [
|
||||||
GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true], //Square
|
GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true], //Square
|
||||||
];
|
];
|
||||||
break;
|
|
||||||
case 52:
|
case 52:
|
||||||
return [
|
return [
|
||||||
GatewayType::BANK_TRANSFER => ['refund' => false, 'token_billing' => true, 'webhooks' => [' ']], // GoCardless
|
GatewayType::BANK_TRANSFER => ['refund' => false, 'token_billing' => true, 'webhooks' => [' ']], // GoCardless
|
||||||
@ -214,16 +185,13 @@ class Gateway extends StaticModel
|
|||||||
return [
|
return [
|
||||||
GatewayType::HOSTED_PAGE => ['refund' => false, 'token_billing' => false, 'webhooks' => [' ']], // Razorpay
|
GatewayType::HOSTED_PAGE => ['refund' => false, 'token_billing' => false, 'webhooks' => [' ']], // Razorpay
|
||||||
];
|
];
|
||||||
break;
|
|
||||||
case 59:
|
case 59:
|
||||||
return [
|
return [
|
||||||
GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true], // Forte
|
GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true], // Forte
|
||||||
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true, 'webhooks' => [' ']],
|
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true, 'webhooks' => [' ']],
|
||||||
];
|
];
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
return [];
|
return [];
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -266,6 +266,7 @@ class InstantPayment
|
|||||||
'payment_method_id' => $payment_method_id,
|
'payment_method_id' => $payment_method_id,
|
||||||
'amount_with_fee' => $invoice_totals + $fee_totals,
|
'amount_with_fee' => $invoice_totals + $fee_totals,
|
||||||
'client' => $client,
|
'client' => $client,
|
||||||
|
'pre_payment' => $this->request->pre_payment,
|
||||||
];
|
];
|
||||||
|
|
||||||
if ($is_credit_payment || $totals <= 0) {
|
if ($is_credit_payment || $totals <= 0) {
|
||||||
|
@ -100,7 +100,7 @@ class UpdateInvoicePayment
|
|||||||
$recurring_invoice = RecurringInvoiceFactory::create($invoice->company_id, $invoice->user_id);
|
$recurring_invoice = RecurringInvoiceFactory::create($invoice->company_id, $invoice->user_id);
|
||||||
$recurring_invoice->client_id = $invoice->client_id;
|
$recurring_invoice->client_id = $invoice->client_id;
|
||||||
$recurring_invoice->line_items = $invoice->line_items;
|
$recurring_invoice->line_items = $invoice->line_items;
|
||||||
$recurring_invoice->frequency_id = $this->payment_hash->data->is_recurring ?: RecurringInvoice::FREQUENCY_MONTHLY;
|
$recurring_invoice->frequency_id = $this->payment_hash->data->frequency_id ?: RecurringInvoice::FREQUENCY_MONTHLY;
|
||||||
$recurring_invoice->date = now();
|
$recurring_invoice->date = now();
|
||||||
$recurring_invoice->remaining_cycles = $this->payment_hash->data->remaining_cycles;
|
$recurring_invoice->remaining_cycles = $this->payment_hash->data->remaining_cycles;
|
||||||
$recurring_invoice->auto_bill = 'always';
|
$recurring_invoice->auto_bill = 'always';
|
||||||
@ -108,7 +108,11 @@ class UpdateInvoicePayment
|
|||||||
$recurring_invoice->due_date_days = 'on_receipt';
|
$recurring_invoice->due_date_days = 'on_receipt';
|
||||||
$recurring_invoice->next_send_date = now()->format('Y-m-d');
|
$recurring_invoice->next_send_date = now()->format('Y-m-d');
|
||||||
$recurring_invoice->next_send_date_client = now()->format('Y-m-d');
|
$recurring_invoice->next_send_date_client = now()->format('Y-m-d');
|
||||||
|
$recurring_invoice->amount = $invoice->amount;
|
||||||
|
$recurring_invoice->balance = $invoice->amount;
|
||||||
|
$recurring_invoice->status_id = RecurringInvoice::STATUS_ACTIVE;
|
||||||
|
$recurring_invoice->is_proforma = true;
|
||||||
|
|
||||||
$recurring_invoice->saveQuietly();
|
$recurring_invoice->saveQuietly();
|
||||||
$recurring_invoice->next_send_date = $recurring_invoice->nextSendDate();
|
$recurring_invoice->next_send_date = $recurring_invoice->nextSendDate();
|
||||||
$recurring_invoice->next_send_date_client = $recurring_invoice->nextSendDateClient();
|
$recurring_invoice->next_send_date_client = $recurring_invoice->nextSendDateClient();
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
use Imdhemy\Purchases\Events\AppStore\DidRenew;
|
use Imdhemy\Purchases\Events\AppStore\DidRenew;
|
||||||
use App\Listeners\Subscription\AppStoreRenewSubscription;
|
use App\Listeners\Subscription\AppStoreRenewSubscription;
|
||||||
use App\Listeners\Subscription\PlayStoreRenewSubscription;
|
|
||||||
use Imdhemy\Purchases\Events\GooglePlay\SubscriptionRenewed;
|
use Imdhemy\Purchases\Events\GooglePlay\SubscriptionRenewed;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
@ -97,8 +96,9 @@ return [
|
|||||||
/* \Imdhemy\Purchases\Events\GooglePlay\SubscriptionRecovered::class => [
|
/* \Imdhemy\Purchases\Events\GooglePlay\SubscriptionRecovered::class => [
|
||||||
\App\Listeners\GooglePlay\SubscriptionRecovered::class,
|
\App\Listeners\GooglePlay\SubscriptionRecovered::class,
|
||||||
],*/
|
],*/
|
||||||
SubscriptionRenewed::class => [PlayStoreRenewSubscription::class],
|
|
||||||
DidRenew::class => [AppStoreRenewSubscription::class],
|
DidRenew::class => class_exists(\Modules\Admin\Listeners\Subscription\AppleAutoRenew::class) ? [\Modules\Admin\Listeners\Subscription\AppleAutoRenew::class] : [],
|
||||||
|
SubscriptionRenewed::class => class_exists(\Modules\Admin\Listeners\Subscription\GoogleAutoRenew::class) ? [\Modules\Admin\Listeners\Subscription\GoogleAutoRenew::class] : [],
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
|
@ -213,4 +213,5 @@ return [
|
|||||||
'config_name' => env("YODLEE_CONFIG_NAME", false),
|
'config_name' => env("YODLEE_CONFIG_NAME", false),
|
||||||
],
|
],
|
||||||
'licenses' => env('LICENSES',false),
|
'licenses' => env('LICENSES',false),
|
||||||
|
'google_application_credentials' => env("GOOGLE_APPLICATION_CREDENTIALS", false),
|
||||||
];
|
];
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
$checked_off = '';
|
$checked_off = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($pre_payment) && $pre_payment == '1') {
|
||||||
|
$token_billing_string = 'true';
|
||||||
|
}
|
||||||
|
|
||||||
@endphp
|
@endphp
|
||||||
|
|
||||||
@if($token_billing)
|
@if($token_billing)
|
||||||
|
@ -7,6 +7,11 @@
|
|||||||
if($gateway_instance->token_billing == 'off' || $gateway_instance->token_billing == 'optin'){
|
if($gateway_instance->token_billing == 'off' || $gateway_instance->token_billing == 'optin'){
|
||||||
$token_billing_string = 'false';
|
$token_billing_string = 'false';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($pre_payment) && $pre_payment == '1') {
|
||||||
|
$token_billing_string = 'true';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@endphp
|
@endphp
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user