mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
86 lines
2.0 KiB
PHP
86 lines
2.0 KiB
PHP
<?php
|
|
namespace Crater;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Crater\Invoice;
|
|
use Crater\Tax;
|
|
use Crater\Item;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class InvoiceItem extends Model
|
|
{
|
|
protected $fillable = [
|
|
'invoice_id',
|
|
'name',
|
|
'item_id',
|
|
'description',
|
|
'company_id',
|
|
'quantity',
|
|
'price',
|
|
'discount_type',
|
|
'discount_val',
|
|
'total',
|
|
'tax',
|
|
'discount'
|
|
];
|
|
|
|
protected $casts = [
|
|
'price' => 'integer',
|
|
'total' => 'integer',
|
|
'discount' => '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 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('d/m/Y', $filters->get('from_date'));
|
|
$end = Carbon::createFromFormat('d/m/Y', $filters->get('to_date'));
|
|
$query->invoicesBetween($start, $end);
|
|
}
|
|
}
|
|
|
|
public function scopeItemAttributes($query)
|
|
{
|
|
$query->select(
|
|
DB::raw('sum(quantity) as total_quantity, sum(total) as total_amount, invoice_items.name')
|
|
)->groupBy('invoice_items.name');
|
|
|
|
}
|
|
}
|