mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-28 12:11:08 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			82 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Crater\Models;
 | |
| 
 | |
| use Carbon\Carbon;
 | |
| use Crater\Traits\HasCustomFieldsTrait;
 | |
| use Illuminate\Database\Eloquent\Factories\HasFactory;
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| use Illuminate\Support\Facades\DB;
 | |
| 
 | |
| class InvoiceItem extends Model
 | |
| {
 | |
|     use HasFactory;
 | |
|     use HasCustomFieldsTrait;
 | |
| 
 | |
|     protected $guarded = [
 | |
|         'id'
 | |
|     ];
 | |
| 
 | |
|     protected $casts = [
 | |
|         'price' => 'integer',
 | |
|         'total' => 'integer',
 | |
|         'discount' => 'float',
 | |
|         'quantity' => 'float',
 | |
|         'discount_val' => 'integer',
 | |
|         'tax' => 'integer',
 | |
|     ];
 | |
| 
 | |
|     public function invoice()
 | |
|     {
 | |
|         return $this->belongsTo(Invoice::class);
 | |
|     }
 | |
| 
 | |
|     public function item()
 | |
|     {
 | |
|         return $this->belongsTo(Item::class);
 | |
|     }
 | |
| 
 | |
|     public function taxes()
 | |
|     {
 | |
|         return $this->hasMany(Tax::class);
 | |
|     }
 | |
| 
 | |
|     public function recurringInvoice()
 | |
|     {
 | |
|         return $this->belongsTo(RecurringInvoice::class);
 | |
|     }
 | |
| 
 | |
|     public function scopeWhereCompany($query, $company_id)
 | |
|     {
 | |
|         $query->where('company_id', $company_id);
 | |
|     }
 | |
| 
 | |
|     public function scopeInvoicesBetween($query, $start, $end)
 | |
|     {
 | |
|         $query->whereHas('invoice', function ($query) use ($start, $end) {
 | |
|             $query->whereBetween(
 | |
|                 'invoice_date',
 | |
|                 [$start->format('Y-m-d'), $end->format('Y-m-d')]
 | |
|             );
 | |
|         });
 | |
|     }
 | |
| 
 | |
|     public function scopeApplyInvoiceFilters($query, array $filters)
 | |
|     {
 | |
|         $filters = collect($filters);
 | |
| 
 | |
|         if ($filters->get('from_date') && $filters->get('to_date')) {
 | |
|             $start = Carbon::createFromFormat('Y-m-d', $filters->get('from_date'));
 | |
|             $end = Carbon::createFromFormat('Y-m-d', $filters->get('to_date'));
 | |
|             $query->invoicesBetween($start, $end);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public function scopeItemAttributes($query)
 | |
|     {
 | |
|         $query->select(
 | |
|             DB::raw('sum(quantity) as total_quantity, sum(base_total) as total_amount, invoice_items.name')
 | |
|         )->groupBy('invoice_items.name');
 | |
|     }
 | |
| }
 |