FleetCart/Modules/Report/ProductsPurchaseReport.php

35 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\Report;
use Modules\Product\Entities\Product;
class ProductsPurchaseReport extends Report
{
protected $date = 'orders.created_at';
protected function view()
{
return 'report::admin.reports.products_purchase_report.index';
}
protected function query()
{
return Product::withoutGlobalScope('active')
->select('products.id')
->join('order_products', 'products.id', '=', 'order_products.product_id')
->selectRaw('SUM(order_products.qty) as qty')
->selectRaw('SUM(order_products.line_total) as total')
->join('orders', 'order_products.order_id', '=', 'orders.id')
->selectRaw('MIN(orders.created_at) as start_date')
->selectRaw('MAX(orders.created_at) as end_date')
->when(request()->has('product'), function ($query) {
$query->whereTranslationLike('name', request('product') . '%');
})
->when(request()->has('sku'), function ($query) {
$query->where('sku', request('sku'));
})
->groupBy('products.id');
}
}