mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 09:57:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			83 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Services;
 | |
| 
 | |
| use Utils;
 | |
| use App\Models\Client;
 | |
| use App\Models\Vendor;
 | |
| use App\Ninja\Datatables\RecurringExpenseDatatable;
 | |
| use App\Ninja\Repositories\RecurringExpenseRepository;
 | |
| 
 | |
| /**
 | |
|  * Class RecurringExpenseService.
 | |
|  */
 | |
| class RecurringExpenseService extends BaseService
 | |
| {
 | |
|     /**
 | |
|      * @var RecurringExpenseRepository
 | |
|      */
 | |
|     protected $recurringExpenseRepo;
 | |
| 
 | |
|     /**
 | |
|      * @var DatatableService
 | |
|      */
 | |
|     protected $datatableService;
 | |
| 
 | |
|     /**
 | |
|      * CreditService constructor.
 | |
|      *
 | |
|      * @param RecurringExpenseRepository $creditRepo
 | |
|      * @param DatatableService  $datatableService
 | |
|      */
 | |
|     public function __construct(RecurringExpenseRepository $recurringExpenseRepo, DatatableService $datatableService)
 | |
|     {
 | |
|         $this->recurringExpenseRepo = $recurringExpenseRepo;
 | |
|         $this->datatableService = $datatableService;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return CreditRepository
 | |
|      */
 | |
|     protected function getRepo()
 | |
|     {
 | |
|         return $this->recurringExpenseRepo;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param $data
 | |
|      * @param mixed $recurringExpense
 | |
|      *
 | |
|      * @return mixed|null
 | |
|      */
 | |
|     public function save($data, $recurringExpense = false)
 | |
|     {
 | |
|         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->recurringExpenseRepo->save($data, $recurringExpense);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param $clientPublicId
 | |
|      * @param $search
 | |
|      * @param mixed $userId
 | |
|      *
 | |
|      * @return \Illuminate\Http\JsonResponse
 | |
|      */
 | |
|     public function getDatatable($search, $userId)
 | |
|     {
 | |
|         $query = $this->recurringExpenseRepo->find($search);
 | |
| 
 | |
|         if (! Utils::hasPermission('view_all')) {
 | |
|             $query->where('recurring_expenses.user_id', '=', Auth::user()->id);
 | |
|         }
 | |
| 
 | |
|         return $this->datatableService->createDatatable(new RecurringExpenseDatatable(), $query);
 | |
|     }
 | |
| }
 |