feat: Added Enable/Disable Invoices

This commit is contained in:
IceToast 2022-01-15 17:52:19 +01:00
parent 1a45c16feb
commit c8071b64d9
4 changed files with 37 additions and 8 deletions

View file

@ -28,7 +28,8 @@ class Invoices
"SETTINGS::INVOICE:COMPANY_MAIL" => "company-mail",
"SETTINGS::INVOICE:COMPANY_VAT" => "company-vat",
"SETTINGS::INVOICE:COMPANY_WEBSITE" => "company-web",
"SETTINGS::INVOICE:PREFIX" => "invoice-prefix"
"SETTINGS::INVOICE:PREFIX" => "invoice-prefix",
"SETTINGS::INVOICE:ENABLED" => "enable-invoices",
];
foreach ($values as $key => $value) {

View file

@ -197,7 +197,11 @@ class PaymentController extends Controller
event(new UserUpdateCreditsEvent($user));
//only create invoice if SETTINGS::INVOICE:ENABLE is true
if (config('SETTINGS::INVOICE:ENABLE') == 'true') {
$this->createInvoice($user, $payment, 'paid');
}
//redirect back to home
return redirect()->route('home')->with('success', __('Your credit balance has been increased!'));
@ -336,7 +340,10 @@ class PaymentController extends Controller
event(new UserUpdateCreditsEvent($user));
//only create invoice if SETTINGS::INVOICE:ENABLE is true
if (config('SETTINGS::INVOICE:ENABLE') == 'true') {
$this->createInvoice($user, $payment, 'paid');
}
//redirect back to home
return redirect()->route('home')->with('success', __('Your credit balance has been increased!'));
@ -359,7 +366,10 @@ class PaymentController extends Controller
'credit_product_id' => $creditProduct->id,
]);
$this->createInvoice($user, $payment, 'processing');
//only create invoice if SETTINGS::INVOICE:ENABLE is true
if (config('SETTINGS::INVOICE:ENABLE') == 'true') {
$this->createInvoice($user, $payment, 'paid');
}
//redirect back to home
return redirect()->route('home')->with('success', __('Your payment is being processed!'));
@ -416,8 +426,11 @@ class PaymentController extends Controller
$user->notify(new ConfirmPaymentNotification($payment));
event(new UserUpdateCreditsEvent($user));
//only create invoice if SETTINGS::INVOICE:ENABLE is true
if (config('SETTINGS::INVOICE:ENABLE') == 'true') {
$this->createInvoice($user, $payment, 'paid');
}
}
} catch (HttpException $ex) {
abort(422);
}

View file

@ -144,7 +144,13 @@ class SettingsSeeder extends Seeder
'type' => 'integer',
'description' => 'The %-value of tax that will be added to the product price on checkout'
]);
//Invoices enabled
Settings::firstOrCreate([
'key' => 'SETTINGS::INVOICE:ENABLED',
], [
'value' => 'false',
'type' => 'boolean',
]);
//Invoice company name
Settings::firstOrCreate([
'key' => 'SETTINGS::INVOICE:COMPANY_NAME',

View file

@ -76,6 +76,15 @@
</div>
</div>
<div class="col-md-3 p-3">
<div class="custom-control mb-3 p-0">
<div class="col m-0 p-0 d-flex justify-content-between align-items-center">
<div>
<input value="true" id="enable-invoices" name="enable-invoices"
{{ config('SETTINGS::INVOICE:ENABLED') == 'true' ? 'checked' : '' }} type="checkbox">
<label for="enable-invoices">{{ __('Enable Invoices') }} </label>
</div>
</div>
</div>
<!-- logo -->
<div class="form-group mb-3">
<div class="custom-control p-0">