import chunk reading
This commit is contained in:
		@@ -2,43 +2,19 @@
 | 
			
		||||
 | 
			
		||||
namespace App\Imports\Purchases\Sheets;
 | 
			
		||||
 | 
			
		||||
use App\Abstracts\Import;
 | 
			
		||||
use App\Models\Purchase\BillItem as Model;
 | 
			
		||||
use App\Http\Requests\Purchase\BillItem as Request;
 | 
			
		||||
use Maatwebsite\Excel\Concerns\ToModel;
 | 
			
		||||
use Maatwebsite\Excel\Concerns\WithHeadingRow;
 | 
			
		||||
use Maatwebsite\Excel\Concerns\WithMapping;
 | 
			
		||||
use Maatwebsite\Excel\Concerns\WithValidation;
 | 
			
		||||
use Maatwebsite\Excel\Validators\Failure;
 | 
			
		||||
 | 
			
		||||
class BillItems implements ToModel, WithHeadingRow, WithMapping, WithValidation
 | 
			
		||||
class BillItems extends Import
 | 
			
		||||
{
 | 
			
		||||
    public function model(array $row)
 | 
			
		||||
    {
 | 
			
		||||
        return new Model($row);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function map($row): array
 | 
			
		||||
    {
 | 
			
		||||
        $row['company_id'] = session('company_id');
 | 
			
		||||
 | 
			
		||||
        return $row;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function rules(): array
 | 
			
		||||
    {
 | 
			
		||||
        return (new Request())->rules();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function onFailure(Failure ...$failures)
 | 
			
		||||
    {
 | 
			
		||||
        foreach ($failures as $failure) {
 | 
			
		||||
            $message = trans('messages.error.import_column', [
 | 
			
		||||
                'message' => $failure->errors()->first(),
 | 
			
		||||
                'sheet' => 'bill_items',
 | 
			
		||||
                'line' => $failure->attribute(),
 | 
			
		||||
            ]);
 | 
			
		||||
    
 | 
			
		||||
            flash($message)->error()->important();
 | 
			
		||||
       }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user