mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:57:31 -05:00 
			
		
		
		
	* Working on Quotes * Naming refactor for Quotes * Quote Actions * Quote Pdfs * Quote PDFs * Refunds in Stripe * Fixes tests * Company Ledger work
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.7 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\Requests\Invoice;
 | 
						|
 | 
						|
use App\Http\Requests\Request;
 | 
						|
use App\Models\ClientContact;
 | 
						|
use App\Models\Invoice;
 | 
						|
use App\Utils\Traits\CleanLineItems;
 | 
						|
use App\Utils\Traits\MakesHash;
 | 
						|
 | 
						|
class StoreInvoiceRequest extends Request
 | 
						|
{
 | 
						|
    use MakesHash;
 | 
						|
    use CleanLineItems;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Determine if the user is authorized to make this request.
 | 
						|
     *
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
 | 
						|
    public function authorize() : bool
 | 
						|
    {
 | 
						|
        return auth()->user()->can('create', Invoice::class);
 | 
						|
    }
 | 
						|
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'client_id' => 'required|exists:clients,id',
 | 
						|
           // 'invoice_type_id' => 'integer',
 | 
						|
      //      'documents' => 'mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    protected function prepareForValidation()
 | 
						|
    {
 | 
						|
        $input = $this->all();
 | 
						|
 | 
						|
        if($input['client_id'])
 | 
						|
          $input['client_id'] = $this->decodePrimaryKey($input['client_id']);
 | 
						|
 | 
						|
        if(isset($input['client_contacts']))
 | 
						|
        {
 | 
						|
          foreach($input['client_contacts'] as $key => $contact)
 | 
						|
          {
 | 
						|
            if(!array_key_exists('send_email', $contact) || !array_key_exists('id', $contact))
 | 
						|
            {
 | 
						|
              unset($input['client_contacts'][$key]);
 | 
						|
            }
 | 
						|
          }
 | 
						|
 | 
						|
        }
 | 
						|
 | 
						|
        $input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
 | 
						|
        //$input['line_items'] = json_encode($input['line_items']);
 | 
						|
        $this->replace($input);
 | 
						|
    }
 | 
						|
}
 |