mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 14:12:44 +01:00
a9f2d0d855
* migration for new permissions schema * update permissions across data tables * refactor migrations to prevent duplicate attribute * update permissions in views * Product Permissions * permissions via controllers * Refactor to use Laravel authorization gate * Doc Blocks for EntityPolicy * check permissions conditional on create new client * Bug Fixes * Data table permissions * working on UI * settings UI/UX finalised * Datatable permissions * remove legacy permissions * permission fix for viewing client * remove all instances of viewByOwner * refactor after PR * Bug fix for Functional test and implementation of Functional tests for Permissions * fix for tests
33 lines
968 B
PHP
33 lines
968 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Ninja\Datatables\RecurringInvoiceDatatable;
|
|
use App\Ninja\Repositories\InvoiceRepository;
|
|
use Auth;
|
|
use Utils;
|
|
|
|
class RecurringInvoiceService extends BaseService
|
|
{
|
|
protected $invoiceRepo;
|
|
protected $datatableService;
|
|
|
|
public function __construct(InvoiceRepository $invoiceRepo, DatatableService $datatableService)
|
|
{
|
|
$this->invoiceRepo = $invoiceRepo;
|
|
$this->datatableService = $datatableService;
|
|
}
|
|
|
|
public function getDatatable($accountId, $clientPublicId, $entityType, $search)
|
|
{
|
|
$datatable = new RecurringInvoiceDatatable(true, $clientPublicId);
|
|
$query = $this->invoiceRepo->getRecurringInvoices($accountId, $clientPublicId, $search);
|
|
|
|
if (! Utils::hasPermission('view_recurring_invoice')) {
|
|
$query->where('invoices.user_id', '=', Auth::user()->id);
|
|
}
|
|
|
|
return $this->datatableService->createDatatable($datatable, $query);
|
|
}
|
|
}
|