mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 22:37:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			104 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Http\Requests\PurchaseOrder;
 | 
						|
 | 
						|
use App\Http\Requests\Request;
 | 
						|
use App\Utils\Traits\ChecksEntityStatus;
 | 
						|
use App\Utils\Traits\CleanLineItems;
 | 
						|
use App\Utils\Traits\MakesHash;
 | 
						|
use Illuminate\Validation\Rule;
 | 
						|
 | 
						|
class UpdatePurchaseOrderRequest extends Request
 | 
						|
{
 | 
						|
    use ChecksEntityStatus;
 | 
						|
    use MakesHash;
 | 
						|
    use CleanLineItems;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Determine if the user is authorized to make this request.
 | 
						|
     *
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function authorize(): bool
 | 
						|
    {
 | 
						|
        /** @var \App\Models\User $user */
 | 
						|
        $user = auth()->user();
 | 
						|
 | 
						|
        return $user->can('edit', $this->purchase_order);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the validation rules that apply to the request.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        /** @var \App\Models\User $user */
 | 
						|
        $user = auth()->user();
 | 
						|
 | 
						|
        $rules = [];
 | 
						|
 | 
						|
        $rules['number'] = ['bail', 'sometimes', 'nullable', Rule::unique('purchase_orders')->where('company_id', $user->company()->id)->ignore($this->purchase_order->id)];
 | 
						|
        $rules['vendor_id'] = ['bail', 'sometimes', Rule::in([$this->purchase_order->vendor_id])];
 | 
						|
 | 
						|
        $rules['line_items'] = 'array';
 | 
						|
 | 
						|
$rules['discount'] = 'sometimes|numeric|max:99999999999999';
 | 
						|
        $rules['is_amount_discount'] = ['boolean'];
 | 
						|
 | 
						|
        if ($this->file('documents') && is_array($this->file('documents'))) {
 | 
						|
            $rules['documents.*'] = $this->fileValidation();
 | 
						|
        } elseif ($this->file('documents')) {
 | 
						|
            $rules['documents'] = $this->fileValidation();
 | 
						|
        }else {
 | 
						|
            $rules['documents'] = 'bail|sometimes|array';
 | 
						|
        }
 | 
						|
 | 
						|
        if ($this->file('file') && is_array($this->file('file'))) {
 | 
						|
            $rules['file.*'] = $this->fileValidation();
 | 
						|
        } elseif ($this->file('file')) {
 | 
						|
            $rules['file'] = $this->fileValidation();
 | 
						|
        }
 | 
						|
 | 
						|
        $rules['status_id'] = 'sometimes|integer|in:1,2,3,4,5';
 | 
						|
        $rules['exchange_rate'] = 'bail|sometimes|numeric';
 | 
						|
        $rules['amount'] = ['sometimes', 'bail', 'numeric', 'max:99999999999999'];
 | 
						|
 | 
						|
        return $rules;
 | 
						|
    }
 | 
						|
 | 
						|
    public function prepareForValidation()
 | 
						|
    {
 | 
						|
        $input = $this->all();
 | 
						|
 | 
						|
        $input = $this->decodePrimaryKeys($input);
 | 
						|
 | 
						|
        $input['id'] = $this->purchase_order->id;
 | 
						|
 | 
						|
        if(isset($input['partial']) && $input['partial'] == 0) {
 | 
						|
            $input['partial_due_date'] = null;
 | 
						|
        }
 | 
						|
 | 
						|
        if (isset($input['line_items']) && is_array($input['line_items'])) {
 | 
						|
            $input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
 | 
						|
            $input['amount'] = $this->entityTotalAmount($input['line_items']);
 | 
						|
        }
 | 
						|
 | 
						|
        if (array_key_exists('exchange_rate', $input) && is_null($input['exchange_rate'])) {
 | 
						|
            $input['exchange_rate'] = 1;
 | 
						|
        }
 | 
						|
 | 
						|
        $this->replace($input);
 | 
						|
    }
 | 
						|
}
 |