close #2799 Fixed: Company delete can not delete sub categories
This commit is contained in:
@@ -3,6 +3,8 @@
|
||||
namespace App\Jobs\Setting;
|
||||
|
||||
use App\Abstracts\Job;
|
||||
use App\Events\Setting\CategoryCreated;
|
||||
use App\Events\Setting\CategoryCreating;
|
||||
use App\Interfaces\Job\HasOwner;
|
||||
use App\Interfaces\Job\HasSource;
|
||||
use App\Interfaces\Job\ShouldCreate;
|
||||
@@ -12,10 +14,14 @@ class CreateCategory extends Job implements HasOwner, HasSource, ShouldCreate
|
||||
{
|
||||
public function handle(): Category
|
||||
{
|
||||
event(new CategoryCreating($this->request));
|
||||
|
||||
\DB::transaction(function () {
|
||||
$this->model = Category::create($this->request->all());
|
||||
});
|
||||
|
||||
event(new CategoryCreated($this->model, $this->request));
|
||||
|
||||
return $this->model;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
namespace App\Jobs\Setting;
|
||||
|
||||
use App\Abstracts\Job;
|
||||
use App\Events\Setting\CategoryDeleted;
|
||||
use App\Events\Setting\CategoryDeleting;
|
||||
use App\Exceptions\Settings\LastCategoryDelete;
|
||||
use App\Interfaces\Job\ShouldDelete;
|
||||
use App\Models\Setting\Category;
|
||||
@@ -13,10 +15,14 @@ class DeleteCategory extends Job implements ShouldDelete
|
||||
{
|
||||
$this->authorize();
|
||||
|
||||
event(new CategoryDeleting($this->model));
|
||||
|
||||
\DB::transaction(function () {
|
||||
$this->model->delete();
|
||||
});
|
||||
|
||||
event(new CategoryDeleted($this->model));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
namespace App\Jobs\Setting;
|
||||
|
||||
use App\Abstracts\Job;
|
||||
use App\Events\Setting\CategoryUpdated;
|
||||
use App\Events\Setting\CategoryUpdating;
|
||||
use App\Interfaces\Job\ShouldUpdate;
|
||||
use App\Models\Setting\Category;
|
||||
|
||||
@@ -12,10 +14,14 @@ class UpdateCategory extends Job implements ShouldUpdate
|
||||
{
|
||||
$this->authorize();
|
||||
|
||||
event(new CategoryUpdating($this->model, $this->request));
|
||||
|
||||
\DB::transaction(function () {
|
||||
$this->model->update($this->request->all());
|
||||
});
|
||||
|
||||
event(new CategoryUpdated($this->model, $this->request));
|
||||
|
||||
return $this->model;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user