mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 23:47:32 -05:00 
			
		
		
		
	* Implement client/group/company level counters clientCounter, groupCounter and counter * Implement functionalityfor customising the timing of invoice_number creation * Add Jobs * adjustments * clean line items at the request layer * Clean line items at the request layer
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://opensource.org/licenses/AAL
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Http\Requests\Invoice;
 | 
						|
 | 
						|
use App\Http\Requests\Request;
 | 
						|
use App\Utils\Traits\CleanLineItems;
 | 
						|
use App\Utils\Traits\MakesHash;
 | 
						|
use Illuminate\Support\Facades\Log;
 | 
						|
use Illuminate\Validation\Rule;
 | 
						|
 | 
						|
class UpdateInvoiceRequest 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('edit', $this->invoice);
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
 | 
						|
        $this->sanitize();
 | 
						|
 | 
						|
        return [
 | 
						|
            'documents' => 'mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx',
 | 
						|
            //'client_id' => 'required|integer',
 | 
						|
            //'invoice_type_id' => 'integer',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    public function sanitize()
 | 
						|
    {
 | 
						|
        $input = $this->all();
 | 
						|
 | 
						|
        if(isset($input['client_id']))
 | 
						|
            $input['client_id'] = $this->decodePrimaryKey($input['client_id']);
 | 
						|
 | 
						|
        $input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
 | 
						|
 | 
						|
        $this->replace($input);
 | 
						|
 | 
						|
        return $this->all();
 | 
						|
    }
 | 
						|
} |