added import and export recurring invoices
This commit is contained in:
		@@ -0,0 +1,52 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace App\Imports\Sales\RecurringInvoices\Sheets;
 | 
			
		||||
 | 
			
		||||
use App\Abstracts\Import;
 | 
			
		||||
use App\Http\Requests\Document\Document as Request;
 | 
			
		||||
use App\Models\Document\Document as Model;
 | 
			
		||||
use Illuminate\Support\Str;
 | 
			
		||||
 | 
			
		||||
class RecurringInvoices extends Import
 | 
			
		||||
{
 | 
			
		||||
    public $request_class = Request::class;
 | 
			
		||||
 | 
			
		||||
    public function model(array $row)
 | 
			
		||||
    {
 | 
			
		||||
        return new Model($row);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function map($row): array
 | 
			
		||||
    {
 | 
			
		||||
        if ($this->isEmpty($row, 'invoice_number')) {
 | 
			
		||||
            return [];
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        $row['invoice_number'] = (string) $row['invoice_number'];
 | 
			
		||||
 | 
			
		||||
        $row = parent::map($row);
 | 
			
		||||
 | 
			
		||||
        $country = array_search($row['contact_country'], trans('countries'));
 | 
			
		||||
 | 
			
		||||
        $row['document_number'] = $row['invoice_number'];
 | 
			
		||||
        $row['issued_at'] = $row['invoiced_at'];
 | 
			
		||||
        $row['category_id'] = $this->getCategoryId($row, 'income');
 | 
			
		||||
        $row['contact_id'] = $this->getContactId($row, 'customer');
 | 
			
		||||
        $row['currency_code'] = $this->getCurrencyCode($row);
 | 
			
		||||
        $row['type'] = Model::INVOICE_RECURRING_TYPE;
 | 
			
		||||
        $row['contact_country'] = !empty($country) ? $country : null;
 | 
			
		||||
 | 
			
		||||
        return $row;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function prepareRules(array $rules): array
 | 
			
		||||
    {
 | 
			
		||||
        $rules['invoice_number'] = Str::replaceFirst('unique:documents,NULL', 'unique:documents,document_number', $rules['document_number']);
 | 
			
		||||
        $rules['invoiced_at'] = $rules['issued_at'];
 | 
			
		||||
        $rules['currency_rate'] = 'required|gt:0';
 | 
			
		||||
 | 
			
		||||
        unset($rules['document_number'], $rules['issued_at'], $rules['type']);
 | 
			
		||||
 | 
			
		||||
        return $rules;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user