feat: updates

This commit is contained in:
JP
2024-08-15 20:11:21 +08:00
parent 52431a2c61
commit 3af7207ec3
61 changed files with 1674 additions and 480 deletions

View File

@@ -0,0 +1,108 @@
<?php
namespace App\Policies;
use App\Models\Branch;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class BranchPolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return $user->can('view_any_branch');
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, Branch $branch): bool
{
return $user->can('view_branch');
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return $user->can('create_branch');
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, Branch $branch): bool
{
return $user->can('update_branch');
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, Branch $branch): bool
{
return $user->can('delete_branch');
}
/**
* Determine whether the user can bulk delete.
*/
public function deleteAny(User $user): bool
{
return $user->can('delete_any_branch');
}
/**
* Determine whether the user can permanently delete.
*/
public function forceDelete(User $user, Branch $branch): bool
{
return $user->can('force_delete_branch');
}
/**
* Determine whether the user can permanently bulk delete.
*/
public function forceDeleteAny(User $user): bool
{
return $user->can('force_delete_any_branch');
}
/**
* Determine whether the user can restore.
*/
public function restore(User $user, Branch $branch): bool
{
return $user->can('restore_branch');
}
/**
* Determine whether the user can bulk restore.
*/
public function restoreAny(User $user): bool
{
return $user->can('restore_any_branch');
}
/**
* Determine whether the user can replicate.
*/
public function replicate(User $user, Branch $branch): bool
{
return $user->can('replicate_branch');
}
/**
* Determine whether the user can reorder.
*/
public function reorder(User $user): bool
{
return $user->can('reorder_branch');
}
}

View File

@@ -2,8 +2,8 @@
namespace App\Policies;
use App\Models\User;
use App\Models\Client;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class ClientPolicy

View File

@@ -0,0 +1,108 @@
<?php
namespace App\Policies;
use App\Models\Expense;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class ExpensePolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return $user->can('view_any_expense');
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, Expense $expense): bool
{
return $user->can('view_expense');
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return $user->can('create_expense');
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, Expense $expense): bool
{
return $user->can('update_expense');
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, Expense $expense): bool
{
return $user->can('delete_expense');
}
/**
* Determine whether the user can bulk delete.
*/
public function deleteAny(User $user): bool
{
return $user->can('delete_any_expense');
}
/**
* Determine whether the user can permanently delete.
*/
public function forceDelete(User $user, Expense $expense): bool
{
return $user->can('force_delete_expense');
}
/**
* Determine whether the user can permanently bulk delete.
*/
public function forceDeleteAny(User $user): bool
{
return $user->can('force_delete_any_expense');
}
/**
* Determine whether the user can restore.
*/
public function restore(User $user, Expense $expense): bool
{
return $user->can('restore_expense');
}
/**
* Determine whether the user can bulk restore.
*/
public function restoreAny(User $user): bool
{
return $user->can('restore_any_expense');
}
/**
* Determine whether the user can replicate.
*/
public function replicate(User $user, Expense $expense): bool
{
return $user->can('replicate_expense');
}
/**
* Determine whether the user can reorder.
*/
public function reorder(User $user): bool
{
return $user->can('reorder_expense');
}
}

View File

@@ -3,8 +3,8 @@
namespace App\Policies;
use App\Models\User;
use Spatie\Permission\Models\Role;
use Illuminate\Auth\Access\HandlesAuthorization;
use Spatie\Permission\Models\Role;
class RolePolicy
{

108
app/Policies/SalePolicy.php Normal file
View File

@@ -0,0 +1,108 @@
<?php
namespace App\Policies;
use App\Models\Sale;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class SalePolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return $user->can('view_any_sale');
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, Sale $sale): bool
{
return $user->can('view_sale');
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return $user->can('create_sale');
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, Sale $sale): bool
{
return $user->can('update_sale');
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, Sale $sale): bool
{
return $user->can('delete_sale');
}
/**
* Determine whether the user can bulk delete.
*/
public function deleteAny(User $user): bool
{
return $user->can('delete_any_sale');
}
/**
* Determine whether the user can permanently delete.
*/
public function forceDelete(User $user, Sale $sale): bool
{
return $user->can('force_delete_sale');
}
/**
* Determine whether the user can permanently bulk delete.
*/
public function forceDeleteAny(User $user): bool
{
return $user->can('force_delete_any_sale');
}
/**
* Determine whether the user can restore.
*/
public function restore(User $user, Sale $sale): bool
{
return $user->can('restore_sale');
}
/**
* Determine whether the user can bulk restore.
*/
public function restoreAny(User $user): bool
{
return $user->can('restore_any_sale');
}
/**
* Determine whether the user can replicate.
*/
public function replicate(User $user, Sale $sale): bool
{
return $user->can('replicate_sale');
}
/**
* Determine whether the user can reorder.
*/
public function reorder(User $user): bool
{
return $user->can('reorder_sale');
}
}

View File

@@ -2,8 +2,8 @@
namespace App\Policies;
use App\Models\User;
use App\Models\Transmittal;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class TransmittalPolicy

View File

@@ -3,7 +3,6 @@
namespace App\Policies;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class UserPolicy
@@ -12,9 +11,6 @@ class UserPolicy
/**
* Determine whether the user can view any models.
*
* @param \App\Models\User $user
* @return bool
*/
public function viewAny(User $user): bool
{
@@ -23,9 +19,6 @@ class UserPolicy
/**
* Determine whether the user can view the model.
*
* @param \App\Models\User $user
* @return bool
*/
public function view(User $user): bool
{
@@ -34,9 +27,6 @@ class UserPolicy
/**
* Determine whether the user can create models.
*
* @param \App\Models\User $user
* @return bool
*/
public function create(User $user): bool
{
@@ -45,9 +35,6 @@ class UserPolicy
/**
* Determine whether the user can update the model.
*
* @param \App\Models\User $user
* @return bool
*/
public function update(User $user): bool
{
@@ -56,9 +43,6 @@ class UserPolicy
/**
* Determine whether the user can delete the model.
*
* @param \App\Models\User $user
* @return bool
*/
public function delete(User $user): bool
{
@@ -67,9 +51,6 @@ class UserPolicy
/**
* Determine whether the user can bulk delete.
*
* @param \App\Models\User $user
* @return bool
*/
public function deleteAny(User $user): bool
{
@@ -78,9 +59,6 @@ class UserPolicy
/**
* Determine whether the user can permanently delete.
*
* @param \App\Models\User $user
* @return bool
*/
public function forceDelete(User $user): bool
{
@@ -89,9 +67,6 @@ class UserPolicy
/**
* Determine whether the user can permanently bulk delete.
*
* @param \App\Models\User $user
* @return bool
*/
public function forceDeleteAny(User $user): bool
{
@@ -100,9 +75,6 @@ class UserPolicy
/**
* Determine whether the user can restore.
*
* @param \App\Models\User $user
* @return bool
*/
public function restore(User $user): bool
{
@@ -111,9 +83,6 @@ class UserPolicy
/**
* Determine whether the user can bulk restore.
*
* @param \App\Models\User $user
* @return bool
*/
public function restoreAny(User $user): bool
{
@@ -122,9 +91,6 @@ class UserPolicy
/**
* Determine whether the user can bulk restore.
*
* @param \App\Models\User $user
* @return bool
*/
public function replicate(User $user): bool
{
@@ -133,9 +99,6 @@ class UserPolicy
/**
* Determine whether the user can reorder.
*
* @param \App\Models\User $user
* @return bool
*/
public function reorder(User $user): bool
{