Move charge actions to ChargeController, implemented charge delete
This commit is contained in:
parent
756f550b43
commit
9380850395
69
app/Http/Controllers/ChargeController.php
Normal file
69
app/Http/Controllers/ChargeController.php
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
|
use App\Http\Requests\ChargeAdd;
|
||||||
|
use App\Models\Charge;
|
||||||
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Support\Arr;
|
||||||
|
use Illuminate\Support\Facades\Gate;
|
||||||
|
use Illuminate\View\View;
|
||||||
|
|
||||||
|
class ChargeController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Add a charge to a service/account
|
||||||
|
*
|
||||||
|
* @param ChargeAdd $request
|
||||||
|
* @return RedirectResponse
|
||||||
|
*/
|
||||||
|
public function addedit(ChargeAdd $request): RedirectResponse
|
||||||
|
{
|
||||||
|
$o = Charge::findOrNew(Arr::get($request->validated(),'id'));
|
||||||
|
|
||||||
|
// Dont update processed charges
|
||||||
|
if ($o->processed)
|
||||||
|
abort(403);
|
||||||
|
|
||||||
|
$o->forceFill(array_merge(Arr::except($request->validated(),['id']),['active'=>TRUE]));
|
||||||
|
$o->save();
|
||||||
|
|
||||||
|
return redirect()
|
||||||
|
->back()
|
||||||
|
->with('success',sprintf('Charge %s #%d',$o->wasRecentlyCreated ? 'Created' : 'Updated',$o->id));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function delete(Charge $o): array
|
||||||
|
{
|
||||||
|
if (Gate::allows('delete',$o)) {
|
||||||
|
$o->delete();
|
||||||
|
|
||||||
|
return ['ok'];
|
||||||
|
|
||||||
|
} else {
|
||||||
|
abort(401,'Not Allowed');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add a charge to a service/account
|
||||||
|
*
|
||||||
|
* @param Request $request
|
||||||
|
* @return View
|
||||||
|
*/
|
||||||
|
public function edit(Request $request): View
|
||||||
|
{
|
||||||
|
$o = Charge::where('processed',FALSE)
|
||||||
|
->where('id',$request->id)
|
||||||
|
->firstOrFail();
|
||||||
|
|
||||||
|
if (Gate::allows('update',$o)) {
|
||||||
|
return view('theme.backend.adminlte.charge.widget.addedit')
|
||||||
|
->with('o',$o)
|
||||||
|
->with('so',$o->service);
|
||||||
|
}
|
||||||
|
|
||||||
|
abort(403);
|
||||||
|
}
|
||||||
|
}
|
@ -266,49 +266,6 @@ class ServiceController extends Controller
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Add a charge to a service/account
|
|
||||||
*
|
|
||||||
* @param ChargeAdd $request
|
|
||||||
* @return RedirectResponse
|
|
||||||
*/
|
|
||||||
public function charge_addedit(ChargeAdd $request): RedirectResponse
|
|
||||||
{
|
|
||||||
$o = Charge::findOrNew(Arr::get($request->validated(),'id'));
|
|
||||||
|
|
||||||
// Dont update processed charges
|
|
||||||
if ($o->processed)
|
|
||||||
abort(403);
|
|
||||||
|
|
||||||
$o->forceFill(array_merge(Arr::except($request->validated(),['id']),['active'=>TRUE]));
|
|
||||||
$o->save();
|
|
||||||
|
|
||||||
return redirect()
|
|
||||||
->back()
|
|
||||||
->with('success',sprintf('Charge %s #%d',$o->wasRecentlyCreated ? 'Created' : 'Updated',$o->id));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add a charge to a service/account
|
|
||||||
*
|
|
||||||
* @param Request $request
|
|
||||||
* @return View
|
|
||||||
*/
|
|
||||||
public function charge_edit(Request $request): View
|
|
||||||
{
|
|
||||||
$o = Charge::where('processed',FALSE)
|
|
||||||
->where('id',$request->id)
|
|
||||||
->firstOrFail();
|
|
||||||
|
|
||||||
if (Gate::allows('update',$o)) {
|
|
||||||
return view('theme.backend.adminlte.charge.widget.addedit')
|
|
||||||
->with('o',$o)
|
|
||||||
->with('so',$o->service);
|
|
||||||
}
|
|
||||||
|
|
||||||
abort(403);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* List all the domains managed by the user
|
* List all the domains managed by the user
|
||||||
*
|
*
|
||||||
|
@ -70,7 +70,7 @@ class Charge extends Model
|
|||||||
|
|
||||||
/* ATTRIBUTES */
|
/* ATTRIBUTES */
|
||||||
|
|
||||||
public function getNameAttribute()
|
public function getNameAttribute(): string
|
||||||
{
|
{
|
||||||
return sprintf('%s %s',
|
return sprintf('%s %s',
|
||||||
$this->description,
|
$this->description,
|
||||||
@ -93,4 +93,14 @@ class Charge extends Model
|
|||||||
{
|
{
|
||||||
return Arr::get(InvoiceItem::type,$this->type);
|
return Arr::get(InvoiceItem::type,$this->type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Is this charge processable
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function getUnprocessedAttribute(): bool
|
||||||
|
{
|
||||||
|
return $this->active && (! $this->processed);
|
||||||
|
}
|
||||||
}
|
}
|
@ -1275,7 +1275,7 @@ class Service extends Model implements IDs
|
|||||||
if ((($future == TRUE) OR (($future == FALSE) AND ($this->invoice_to >= $billdate)))
|
if ((($future == TRUE) OR (($future == FALSE) AND ($this->invoice_to >= $billdate)))
|
||||||
AND ! $this->invoice_items->filter(function($item) { return $item->module_id == 30 AND ! $item->exists; })->count())
|
AND ! $this->invoice_items->filter(function($item) { return $item->module_id == 30 AND ! $item->exists; })->count())
|
||||||
{
|
{
|
||||||
foreach ($this->charges->filter(function($item) { return ! $item->processed; }) as $oo) {
|
foreach ($this->charges->filter(function($item) { return $item->unprocessed; }) as $oo) {
|
||||||
$o = new InvoiceItem;
|
$o = new InvoiceItem;
|
||||||
$o->active = TRUE;
|
$o->active = TRUE;
|
||||||
$o->service_id = $oo->service_id;
|
$o->service_id = $oo->service_id;
|
||||||
|
18
composer.lock
generated
18
composer.lock
generated
@ -3056,11 +3056,11 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "leenooks/laravel",
|
"name": "leenooks/laravel",
|
||||||
"version": "11.1.5",
|
"version": "11.1.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://gitea.dege.au/laravel/leenooks.git",
|
"url": "https://gitea.dege.au/laravel/leenooks.git",
|
||||||
"reference": "4a4cf3c5bf32f50dcdc8fdc6c3ff680d7f15d90d"
|
"reference": "628fbac8f9ce60c5124ee83b288733ae24e48b63"
|
||||||
},
|
},
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
@ -3093,7 +3093,7 @@
|
|||||||
"laravel",
|
"laravel",
|
||||||
"leenooks"
|
"leenooks"
|
||||||
],
|
],
|
||||||
"time": "2024-07-25T03:52:29+00:00"
|
"time": "2024-07-26T02:26:31+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "leenooks/passkey",
|
"name": "leenooks/passkey",
|
||||||
@ -9995,16 +9995,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "spatie/error-solutions",
|
"name": "spatie/error-solutions",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/spatie/error-solutions.git",
|
"url": "https://github.com/spatie/error-solutions.git",
|
||||||
"reference": "a014da18f2675ea15af0ba97f7e9aee59e13964f"
|
"reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/spatie/error-solutions/zipball/a014da18f2675ea15af0ba97f7e9aee59e13964f",
|
"url": "https://api.github.com/repos/spatie/error-solutions/zipball/ae7393122eda72eed7cc4f176d1e96ea444f2d67",
|
||||||
"reference": "a014da18f2675ea15af0ba97f7e9aee59e13964f",
|
"reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -10057,7 +10057,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/spatie/error-solutions/issues",
|
"issues": "https://github.com/spatie/error-solutions/issues",
|
||||||
"source": "https://github.com/spatie/error-solutions/tree/1.1.0"
|
"source": "https://github.com/spatie/error-solutions/tree/1.1.1"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@ -10065,7 +10065,7 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-07-22T08:18:22+00:00"
|
"time": "2024-07-25T11:06:04+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "spatie/flare-client-php",
|
"name": "spatie/flare-client-php",
|
||||||
|
@ -41,8 +41,8 @@
|
|||||||
{{ $oo->processed ? 'YES' : 'NO' }}
|
{{ $oo->processed ? 'YES' : 'NO' }}
|
||||||
@if(! $oo->processed)
|
@if(! $oo->processed)
|
||||||
<span class="float-right">
|
<span class="float-right">
|
||||||
<a class="charge_edit" id="{{ $oo->id }}" href="#"><i class="fas fa-fw fa-edit"></i></a>
|
<a class="charge_edit" data-id="{{ $oo->id }}" href="#"><i class="fas fa-fw fa-edit"></i></a>
|
||||||
<a class="charge_delete" id="{{ $oo->id }}" href="#"><i class="fas fa-fw fa-trash"></i></a>
|
<a class="charge_delete" data-id="{{ $oo->id }}" href="{{ url('/r/charge/delete',$oo->id) }}"><i class="fas fa-fw fa-trash"></i></a>
|
||||||
</span>
|
</span>
|
||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
@ -59,7 +59,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<x-leenooks::modal.delete trigger="charge_delete"/>
|
<x-leenooks::modal.delete hide="row" trigger="charge_delete"/>
|
||||||
|
|
||||||
@section('page-scripts')
|
@section('page-scripts')
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@ -70,33 +70,31 @@
|
|||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var loaded = [];
|
var loaded = [];
|
||||||
|
|
||||||
$('.charge_edit').on('click',function(item) {
|
$('.charge_edit').on('click',function() {
|
||||||
// Open our charge add tab automatically
|
var that = $(this);
|
||||||
$('.nav-item a[href="#charge_add"]').tab('show');
|
|
||||||
|
|
||||||
if (loaded[item.currentTarget.id])
|
if (loaded[that.data('id')])
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
console.log(item.currentTarget.id);
|
|
||||||
// Prepopulate with the details of the charge
|
// Prepopulate with the details of the charge
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: '{{ url('r/charge/edit') }}',
|
url: '{{ url('r/charge/edit') }}',
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
data: { id: item.currentTarget.id },
|
data: { id: that.data('id') },
|
||||||
dataType: 'html',
|
dataType: 'html',
|
||||||
|
|
||||||
}).done(function(html) {
|
}).done(function(html) {
|
||||||
|
// Open our charge add tab aut1omatically
|
||||||
|
$('.nav-item a[href="#charge_add"]').tab('show');
|
||||||
$('div[id="charge_add"]').empty().append(html);
|
$('div[id="charge_add"]').empty().append(html);
|
||||||
loaded[item.currentTarget.id] = true;
|
loaded[that.data('id')] = true;
|
||||||
|
|
||||||
}).fail(function() {
|
}).fail(function() {
|
||||||
alert('Failed');
|
alert('Hmm, that didnt work?');
|
||||||
});
|
});
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
//<a href="{{ url('/api/charge/delete',$o->id) }}">
|
|
||||||
</script>
|
</script>
|
||||||
@append
|
@append
|
@ -7,6 +7,7 @@ use Leenooks\Controllers\SwitchUserController;
|
|||||||
use App\Http\Controllers\{AdminController,
|
use App\Http\Controllers\{AdminController,
|
||||||
Auth\LoginController,
|
Auth\LoginController,
|
||||||
Auth\SocialLoginController,
|
Auth\SocialLoginController,
|
||||||
|
ChargeController,
|
||||||
CheckoutController,
|
CheckoutController,
|
||||||
HomeController,
|
HomeController,
|
||||||
InvoiceController,
|
InvoiceController,
|
||||||
@ -145,15 +146,17 @@ Route::group(['middleware'=>['auth','role:reseller'],'prefix'=>'r'],function() {
|
|||||||
->name('switch.start');
|
->name('switch.start');
|
||||||
|
|
||||||
// Reseller Reports
|
// Reseller Reports
|
||||||
Route::group(['middleware'=>['auth','role:reseller'],'prefix'=>'report'],function() {
|
Route::group(['prefix'=>'report'],function() {
|
||||||
Route::get('domain',[ServiceController::class,'domain_list']);
|
Route::get('domain',[ServiceController::class,'domain_list']);
|
||||||
Route::get('email',[ServiceController::class,'email_list']);
|
Route::get('email',[ServiceController::class,'email_list']);
|
||||||
Route::get('hosting',[ServiceController::class,'hosting_list']);
|
Route::get('hosting',[ServiceController::class,'hosting_list']);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Charges
|
// Charges
|
||||||
Route::post('charge/addedit',[ServiceController::class,'charge_addedit']);
|
Route::post('charge/addedit',[ChargeController::class,'addedit']);
|
||||||
Route::post('charge/edit',[ServiceController::class,'charge_edit']);
|
Route::post('charge/delete/{o}',[ChargeController::class,'delete'])
|
||||||
|
->where('o','[0-9]+');
|
||||||
|
Route::post('charge/edit',[ChargeController::class,'edit']);
|
||||||
|
|
||||||
// Reseller API calls
|
// Reseller API calls
|
||||||
Route::post('service_change_charges/{o}',[ServiceController::class,'service_change_charges_display'])
|
Route::post('service_change_charges/{o}',[ServiceController::class,'service_change_charges_display'])
|
||||||
|
Loading…
Reference in New Issue
Block a user