Seperate Document Import/Export files into Invoice/Bill
This commit is contained in:
		
							
								
								
									
										45
									
								
								app/Exports/Sales/Sheets/InvoiceItemTaxes.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										45
									
								
								app/Exports/Sales/Sheets/InvoiceItemTaxes.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,45 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace App\Exports\Sales\Sheets;
 | 
			
		||||
 | 
			
		||||
use App\Abstracts\Export;
 | 
			
		||||
use App\Models\Document\DocumentItemTax as Model;
 | 
			
		||||
 | 
			
		||||
class InvoiceItemTaxes extends Export
 | 
			
		||||
{
 | 
			
		||||
    public function collection()
 | 
			
		||||
    {
 | 
			
		||||
        $model = Model::invoice()->with('document', 'item', 'tax')->usingSearchString(request('search'));
 | 
			
		||||
 | 
			
		||||
        if (!empty($this->ids)) {
 | 
			
		||||
            $model->whereIn('document_id', (array) $this->ids);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        return $model->cursor();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function map($model): array
 | 
			
		||||
    {
 | 
			
		||||
        $document = $model->document;
 | 
			
		||||
 | 
			
		||||
        if (empty($document)) {
 | 
			
		||||
            return [];
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        $model->invoice_number = $document->document_number;
 | 
			
		||||
        $model->item_name = $model->item->name;
 | 
			
		||||
        $model->tax_rate = $model->tax->rate;
 | 
			
		||||
 | 
			
		||||
        return parent::map($model);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function fields(): array
 | 
			
		||||
    {
 | 
			
		||||
        return [
 | 
			
		||||
            'invoice_number',
 | 
			
		||||
            'item_name',
 | 
			
		||||
            'tax_rate',
 | 
			
		||||
            'amount',
 | 
			
		||||
        ];
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user