mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
72 lines
1.7 KiB
PHP
72 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Client;
|
|
use App\Ninja\Datatables\ProposalCategoryDatatable;
|
|
use App\Ninja\Repositories\ProposalCategoryRepository;
|
|
|
|
/**
|
|
* Class ProposalCategoryService.
|
|
*/
|
|
class ProposalCategoryService extends BaseService
|
|
{
|
|
/**
|
|
* @var ProposalCategoryRepository
|
|
*/
|
|
protected $proposalCategoryRepo;
|
|
|
|
/**
|
|
* @var DatatableService
|
|
*/
|
|
protected $datatableService;
|
|
|
|
/**
|
|
* CreditService constructor.
|
|
*
|
|
* @param ProposalCategoryRepository $creditRepo
|
|
* @param DatatableService $datatableService
|
|
*/
|
|
public function __construct(ProposalCategoryRepository $proposalCategoryRepo, DatatableService $datatableService)
|
|
{
|
|
$this->proposalCategoryRepo = $proposalCategoryRepo;
|
|
$this->datatableService = $datatableService;
|
|
}
|
|
|
|
/**
|
|
* @return CreditRepository
|
|
*/
|
|
protected function getRepo()
|
|
{
|
|
return $this->proposalCategoryRepo;
|
|
}
|
|
|
|
/**
|
|
* @param $data
|
|
* @param mixed $proposalCategory
|
|
*
|
|
* @return mixed|null
|
|
*/
|
|
public function save($data, $proposalCategory = false)
|
|
{
|
|
return $this->proposalCategoryRepo->save($data, $proposalCategory);
|
|
}
|
|
|
|
/**
|
|
* @param $clientPublicId
|
|
* @param $search
|
|
* @param mixed $userId
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function getDatatable($search, $userId)
|
|
{
|
|
// we don't support bulk edit and hide the client on the individual client page
|
|
$datatable = new ProposalCategoryDatatable();
|
|
|
|
$query = $this->proposalCategoryRepo->find($search, $userId);
|
|
|
|
return $this->datatableService->createDatatable($datatable, $query);
|
|
}
|
|
}
|