mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 18:37:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			86 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com)
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://opensource.org/licenses/AAL
 | |
|  */
 | |
| 
 | |
| namespace App\Http\Controllers\Shop;
 | |
| 
 | |
| use App\Events\Invoice\InvoiceWasCreated;
 | |
| use App\Factory\InvoiceFactory;
 | |
| use App\Http\Controllers\BaseController;
 | |
| use App\Http\Requests\Invoice\StoreInvoiceRequest;
 | |
| use App\Models\Client;
 | |
| use App\Models\CompanyToken;
 | |
| use App\Models\Invoice;
 | |
| use App\Models\InvoiceInvitation;
 | |
| use App\Repositories\InvoiceRepository;
 | |
| use App\Transformers\InvoiceTransformer;
 | |
| use App\Utils\Ninja;
 | |
| use App\Utils\Traits\MakesHash;
 | |
| use Illuminate\Http\Request;
 | |
| 
 | |
| class InvoiceController extends BaseController
 | |
| {
 | |
|     use MakesHash;
 | |
|     
 | |
|     protected $entity_type = Invoice::class;
 | |
| 
 | |
|     protected $entity_transformer = InvoiceTransformer::class;
 | |
| 
 | |
|     /**
 | |
|      * @var InvoiceRepository
 | |
|      */
 | |
|     protected $invoice_repo;
 | |
| 
 | |
|     /**
 | |
|      * InvoiceController constructor.
 | |
|      *
 | |
|      * @param      \App\Repositories\InvoiceRepository  $invoice_repo  The invoice repo
 | |
|      */
 | |
|     public function __construct(InvoiceRepository $invoice_repo)
 | |
|     {
 | |
|         parent::__construct();
 | |
| 
 | |
|         $this->invoice_repo = $invoice_repo;
 | |
|     }
 | |
| 
 | |
|     public function show(string $invitation_key)
 | |
|     {
 | |
|         $company = Company::where('company_key', $request->header('X-API-COMPANY_KEY'))->first();
 | |
| 
 | |
|         $invitation = InvoiceInvitation::with(['invoice'])
 | |
|                                         ->where('company_id', $company->id)
 | |
|                                         ->where('key',$invitation_key)
 | |
|                                         ->firstOrFail();
 | |
| 
 | |
|         return $this->itemResponse($invitation->invoice);
 | |
|     }
 | |
| 
 | |
| 
 | |
|     public function store(StoreInvoiceRequest $request)
 | |
|     {
 | |
|         app('queue')->createPayloadUsing(function () use ($company) {
 | |
|             return ['db' => $company->db];
 | |
|         });
 | |
|                 
 | |
|         $company = Company::where('company_key', $request->header('X-API-COMPANY_KEY'))->first();
 | |
| 
 | |
|         $client = Client::find($request->input('client_id'));
 | |
| 
 | |
|         $invoice = $this->invoice_repo->save($request->all(), InvoiceFactory::create($company_id, $company->owner()->id));
 | |
| 
 | |
|         event(new InvoiceWasCreated($invoice, $company, Ninja::eventVars()));
 | |
| 
 | |
|         $invoice = $invoice->service()->triggeredActions($request)->save();
 | |
|         
 | |
|         return $this->itemResponse($invoice);
 | |
|     }
 | |
| 
 | |
| }
 |