Seperate Document Import/Export files into Invoice/Bill
This commit is contained in:
		
							
								
								
									
										45
									
								
								app/Imports/Purchases/Sheets/Bills.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										45
									
								
								app/Imports/Purchases/Sheets/Bills.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,45 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace App\Imports\Purchases\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 Bills extends Import
 | 
			
		||||
{
 | 
			
		||||
    public function model(array $row)
 | 
			
		||||
    {
 | 
			
		||||
        return new Model($row);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function map($row): array
 | 
			
		||||
    {
 | 
			
		||||
        if ($this->isEmpty($row, 'bill_number')) {
 | 
			
		||||
            return [];
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        $row = parent::map($row);
 | 
			
		||||
 | 
			
		||||
        $row['document_number'] = $row['bill_number'];
 | 
			
		||||
        $row['issued_at'] = $row['billed_at'];
 | 
			
		||||
        $row['category_id'] = $this->getCategoryId($row, 'expense');
 | 
			
		||||
        $row['contact_id'] = $this->getContactId($row, 'vendor');
 | 
			
		||||
        $row['type'] = Model::BILL_TYPE;
 | 
			
		||||
 | 
			
		||||
        return $row;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function rules(): array
 | 
			
		||||
    {
 | 
			
		||||
        $rules = (new Request())->rules();
 | 
			
		||||
 | 
			
		||||
        $rules['bill_number'] = Str::replaceFirst('unique:documents,NULL', 'unique:documents,document_number', $rules['document_number']);
 | 
			
		||||
        $rules['billed_at'] = $rules['issued_at'];
 | 
			
		||||
 | 
			
		||||
        unset($rules['document_number'], $rules['issued_at'], $rules['type']);
 | 
			
		||||
 | 
			
		||||
        return $rules;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user