mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
119 lines
2.8 KiB
PHP
119 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Client;
|
|
use App\Models\Vendor;
|
|
use App\Ninja\Datatables\ExpenseDatatable;
|
|
use App\Ninja\Repositories\ExpenseRepository;
|
|
use Auth;
|
|
use Utils;
|
|
|
|
/**
|
|
* Class ExpenseService.
|
|
*/
|
|
class ExpenseService extends BaseService
|
|
{
|
|
/**
|
|
* @var ExpenseRepository
|
|
*/
|
|
protected $expenseRepo;
|
|
|
|
/**
|
|
* @var DatatableService
|
|
*/
|
|
protected $datatableService;
|
|
|
|
/**
|
|
* ExpenseService constructor.
|
|
*
|
|
* @param ExpenseRepository $expenseRepo
|
|
* @param DatatableService $datatableService
|
|
*/
|
|
public function __construct(ExpenseRepository $expenseRepo, DatatableService $datatableService)
|
|
{
|
|
$this->expenseRepo = $expenseRepo;
|
|
$this->datatableService = $datatableService;
|
|
}
|
|
|
|
/**
|
|
* @return ExpenseRepository
|
|
*/
|
|
protected function getRepo()
|
|
{
|
|
return $this->expenseRepo;
|
|
}
|
|
|
|
/**
|
|
* @param $data
|
|
* @param null $expense
|
|
*
|
|
* @return mixed|null
|
|
*/
|
|
public function save($data, $expense = null)
|
|
{
|
|
if (isset($data['client_id']) && $data['client_id']) {
|
|
$data['client_id'] = Client::getPrivateId($data['client_id']);
|
|
}
|
|
|
|
if (isset($data['vendor_id']) && $data['vendor_id']) {
|
|
$data['vendor_id'] = Vendor::getPrivateId($data['vendor_id']);
|
|
}
|
|
|
|
return $this->expenseRepo->save($data, $expense);
|
|
}
|
|
|
|
/**
|
|
* @param $search
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function getDatatable($search)
|
|
{
|
|
$query = $this->expenseRepo->find($search);
|
|
|
|
if (! Utils::hasPermission('view_expense')) {
|
|
$query->where('expenses.user_id', '=', Auth::user()->id);
|
|
}
|
|
|
|
return $this->datatableService->createDatatable(new ExpenseDatatable(), $query);
|
|
}
|
|
|
|
/**
|
|
* @param $vendorPublicId
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function getDatatableVendor($vendorPublicId)
|
|
{
|
|
$datatable = new ExpenseDatatable(true, true);
|
|
|
|
$query = $this->expenseRepo->findVendor($vendorPublicId);
|
|
|
|
if (! Utils::hasPermission('view_vendor')) {
|
|
$query->where('expenses.user_id', '=', Auth::user()->id);
|
|
}
|
|
|
|
return $this->datatableService->createDatatable($datatable, $query);
|
|
}
|
|
|
|
/**
|
|
* @param $clientPublicId
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function getDatatableClient($clientPublicId)
|
|
{
|
|
$datatable = new ExpenseDatatable(true, true);
|
|
|
|
$query = $this->expenseRepo->findClient($clientPublicId);
|
|
|
|
if (! Utils::hasPermission('view_client')) {
|
|
$query->where('expenses.user_id', '=', Auth::user()->id);
|
|
}
|
|
|
|
return $this->datatableService->createDatatable($datatable, $query);
|
|
}
|
|
|
|
}
|