2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services;
|
2015-11-05 23:37:04 +01:00
|
|
|
|
2016-05-23 18:52:20 +02:00
|
|
|
use App\Ninja\Datatables\TaxRateDatatable;
|
2017-01-30 20:40:43 +01:00
|
|
|
use App\Ninja\Repositories\TaxRateRepository;
|
2015-11-05 23:37:04 +01:00
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
2017-01-30 20:40:43 +01:00
|
|
|
* Class TaxRateService.
|
2016-07-03 18:11:58 +02:00
|
|
|
*/
|
2015-11-05 23:37:04 +01:00
|
|
|
class TaxRateService extends BaseService
|
|
|
|
{
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @var TaxRateRepository
|
|
|
|
*/
|
2015-11-05 23:37:04 +01:00
|
|
|
protected $taxRateRepo;
|
2016-07-03 18:11:58 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var DatatableService
|
|
|
|
*/
|
2015-11-05 23:37:04 +01:00
|
|
|
protected $datatableService;
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* TaxRateService constructor.
|
|
|
|
*
|
|
|
|
* @param TaxRateRepository $taxRateRepo
|
2017-01-30 20:40:43 +01:00
|
|
|
* @param DatatableService $datatableService
|
2016-07-03 18:11:58 +02:00
|
|
|
*/
|
2015-11-05 23:37:04 +01:00
|
|
|
public function __construct(TaxRateRepository $taxRateRepo, DatatableService $datatableService)
|
|
|
|
{
|
|
|
|
$this->taxRateRepo = $taxRateRepo;
|
|
|
|
$this->datatableService = $datatableService;
|
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @return TaxRateRepository
|
|
|
|
*/
|
2015-11-05 23:37:04 +01:00
|
|
|
protected function getRepo()
|
|
|
|
{
|
|
|
|
return $this->taxRateRepo;
|
|
|
|
}
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* @param $accountId
|
2017-01-30 20:40:43 +01:00
|
|
|
*
|
2016-07-03 18:11:58 +02:00
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*/
|
2015-11-05 23:37:04 +01:00
|
|
|
public function getDatatable($accountId)
|
|
|
|
{
|
2016-05-23 18:52:20 +02:00
|
|
|
$datatable = new TaxRateDatatable(false);
|
2015-11-05 23:37:04 +01:00
|
|
|
$query = $this->taxRateRepo->find($accountId);
|
|
|
|
|
2016-05-23 18:52:20 +02:00
|
|
|
return $this->datatableService->createDatatable($datatable, $query);
|
2015-11-05 23:37:04 +01:00
|
|
|
}
|
2016-05-23 18:52:20 +02:00
|
|
|
}
|