feat : rank
This commit is contained in:
99
app/Service/Admin/Statement/ChefService.php
Normal file
99
app/Service/Admin/Statement/ChefService.php
Normal file
@@ -0,0 +1,99 @@
|
||||
<?php
|
||||
/**
|
||||
* This service file is part of item.
|
||||
*
|
||||
* @author ctexthuang
|
||||
* @contact ctexthuang@qq.com
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Service\Admin\Statement;
|
||||
|
||||
use App\Model\AdminUser;
|
||||
use App\Model\ChefStatement;
|
||||
use App\Model\Kitchen;
|
||||
use App\Model\Sku;
|
||||
use App\Service\Admin\BaseService;
|
||||
use Hyperf\DbConnection\Db;
|
||||
use Hyperf\Di\Annotation\Inject;
|
||||
|
||||
class ChefService extends BaseService
|
||||
{
|
||||
/**
|
||||
* @var ChefStatement
|
||||
*/
|
||||
#[Inject]
|
||||
protected ChefStatement $chefStatementModel;
|
||||
|
||||
/**
|
||||
* @var Kitchen
|
||||
*/
|
||||
#[Inject]
|
||||
protected Kitchen $kitchenModel;
|
||||
|
||||
/**
|
||||
* @var AdminUser
|
||||
*/
|
||||
#[Inject]
|
||||
protected AdminUser $adminUserModel;
|
||||
|
||||
/**
|
||||
* @var Sku
|
||||
*/
|
||||
#[Inject]
|
||||
protected Sku $skuModel;
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function handle(): array
|
||||
{
|
||||
$searchCityId = $this->request->input('search_city_id');
|
||||
$searchKitchenId = $this->request->input('search_kitchen_id');
|
||||
$searchCycleId = $this->request->input('search_cycle_id');
|
||||
$searchChefId = $this->request->input('search_chef_id');
|
||||
$limit = (int)$this->request->input('limit',10);
|
||||
|
||||
$list = $this->chefStatementModel
|
||||
->when($searchCityId, function ($query) use ($searchCityId) {
|
||||
$kitchenIds = $this->kitchenModel->where('city_id', $searchCityId)->pluck('id')->toArray();
|
||||
$query->whereIn('kitchen_id', $kitchenIds);
|
||||
})
|
||||
->when($searchKitchenId, function ($query) use ($searchKitchenId) {
|
||||
$query->where('kitchen_id', $searchKitchenId);
|
||||
})
|
||||
->when($searchChefId, function ($query) use ($searchChefId) {
|
||||
$query->where('chef_id', $searchChefId);
|
||||
})
|
||||
->when($searchCycleId, function ($query) use ($searchCycleId) {
|
||||
$query->where('cycle_id', $searchCycleId);
|
||||
})
|
||||
->orderByDesc('cycle_id')
|
||||
->select(
|
||||
'date',
|
||||
'cycle_id',
|
||||
'kitchen_id',
|
||||
'chef_id',
|
||||
'sku_id',
|
||||
'sale',
|
||||
'refund',
|
||||
'cancel'
|
||||
)
|
||||
->paginate($limit)
|
||||
->toArray();
|
||||
|
||||
if (empty($list['data'])) return $this->return->success('success', ['list' => []]);
|
||||
|
||||
$skuIds = array_column($list['data'], 'sku_id');
|
||||
$chefIds = array_column($list['data'], 'chef_id');
|
||||
$skuList = $this->skuModel->whereIn('id', $skuIds)->pluck('title', 'id')->toArray();
|
||||
$chefList = $this->adminUserModel->whereIn('id',$chefIds)->pluck('chinese_name','id')->toArray();
|
||||
foreach ($list['data'] as &$v) {
|
||||
$v['sku_title'] = $skuList[$v['sku_id']] ?? '';
|
||||
$v['chef_name'] = $chefList[$v['chef_id']] ?? '';
|
||||
}
|
||||
|
||||
return $this->return->success('success', ['list' => $list]);
|
||||
}
|
||||
}
|
||||
77
app/Service/Admin/Statement/DriverService.php
Normal file
77
app/Service/Admin/Statement/DriverService.php
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
/**
|
||||
* This service file is part of item.
|
||||
*
|
||||
* @author ctexthuang
|
||||
* @contact ctexthuang@qq.com
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Service\Admin\Statement;
|
||||
|
||||
use App\Model\Site;
|
||||
use App\Model\SiteDriverStatement;
|
||||
use App\Service\Admin\BaseService;
|
||||
use Hyperf\Di\Annotation\Inject;
|
||||
|
||||
class DriverService extends BaseService
|
||||
{
|
||||
/**
|
||||
* @var SiteDriverStatement
|
||||
*/
|
||||
#[Inject]
|
||||
protected SiteDriverStatement $siteDriverStatementModel;
|
||||
|
||||
/**
|
||||
* @var Site
|
||||
*/
|
||||
#[Inject]
|
||||
protected Site $siteModel;
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function handle(): array
|
||||
{
|
||||
$searchCityId = $this->request->input('search_city_id');
|
||||
$searchCycleId = $this->request->input('search_cycle_id');
|
||||
$searchDriverId = $this->request->input('search_driver_id');
|
||||
$limit = (int)$this->request->input('limit',10);
|
||||
|
||||
$list = $this->siteDriverStatementModel
|
||||
->when($searchCityId, function ($query) use ($searchCityId) {
|
||||
$query->whereIn('city_id', $searchCityId);
|
||||
})
|
||||
->when($searchDriverId, function ($query) use ($searchDriverId) {
|
||||
$query->where('driver_id', $searchDriverId);
|
||||
})
|
||||
->when($searchCycleId, function ($query) use ($searchCycleId) {
|
||||
$query->where('cycle_id', $searchCycleId);
|
||||
})
|
||||
->orderByDesc('cycle_id')
|
||||
->select(
|
||||
'date',
|
||||
'cycle_id',
|
||||
'site_id',
|
||||
'option_order_number',
|
||||
'option_copies',
|
||||
'option_add_staple_food_num',
|
||||
'meal_order_number',
|
||||
'meal_copies',
|
||||
'meal_add_staple_food_num'
|
||||
)
|
||||
->paginate($limit)
|
||||
->toArray();
|
||||
|
||||
if (empty($list['data'])) return $this->return->success('success', ['list' => []]);
|
||||
|
||||
$siteIds = array_column($list['data'], 'site_id');
|
||||
$siteList = $this->siteModel->whereIn('id', $siteIds)->pluck('name', 'id')->toArray();
|
||||
foreach ($list['data'] as &$v) {
|
||||
$v['site_name'] = $siteList[$v['site_id']] ?? '';
|
||||
}
|
||||
|
||||
return $this->return->success('success', ['list' => $list]);
|
||||
}
|
||||
}
|
||||
69
app/Service/Admin/Statement/FinancesService.php
Normal file
69
app/Service/Admin/Statement/FinancesService.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
/**
|
||||
* This service file is part of item.
|
||||
*
|
||||
* @author ctexthuang
|
||||
* @contact ctexthuang@qq.com
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Service\Admin\Statement;
|
||||
|
||||
use App\Model\FinancesStatement;
|
||||
use App\Model\Kitchen;
|
||||
use App\Service\Admin\BaseService;
|
||||
use Hyperf\DbConnection\Db;
|
||||
use Hyperf\Di\Annotation\Inject;
|
||||
|
||||
class FinancesService extends BaseService
|
||||
{
|
||||
/**
|
||||
* @var FinancesStatement
|
||||
*/
|
||||
#[Inject]
|
||||
protected FinancesStatement $financesStatementModel;
|
||||
|
||||
/**
|
||||
* @var Kitchen
|
||||
*/
|
||||
#[Inject]
|
||||
protected Kitchen $kitchenModel;
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function handle(): array
|
||||
{
|
||||
$searchCityId = $this->request->input('search_city_id');
|
||||
$searchKitchenId = $this->request->input('search_kitchen_id');
|
||||
$limit = (int)$this->request->input('limit',10);
|
||||
|
||||
$list = $this->financesStatementModel
|
||||
->when($searchCityId, function ($query) use ($searchCityId) {
|
||||
$kitchenIds = $this->kitchenModel->where('city_id', $searchCityId)->pluck('id')->toArray();
|
||||
$query->whereIn('kitchen_id', $kitchenIds);
|
||||
})
|
||||
->when($searchKitchenId, function ($query) use ($searchKitchenId) {
|
||||
$query->where('kitchen_id', $searchKitchenId);
|
||||
})
|
||||
->groupBy('cycle_id')
|
||||
->orderByDesc('cycle_id')
|
||||
->select(
|
||||
'date',
|
||||
'cycle_id',
|
||||
// 'kitchen_id',
|
||||
Db::raw('SUM(`gross_sales`) as gross_sales'),
|
||||
Db::raw('SUM(`discounts`) as discounts'),
|
||||
Db::raw('SUM(`net_sales`) as net_sales'),
|
||||
Db::raw('SUM(`option_order_number`) as option_order_number'),
|
||||
Db::raw('SUM(`option_copies`) as option_copies'),
|
||||
Db::raw('SUM(`meal_order_number`) as meal_order_number'),
|
||||
Db::raw('SUM(`meal_copies`) as meal_copies'),
|
||||
)
|
||||
->paginate($limit)
|
||||
->toArray();
|
||||
|
||||
return $this->return->success('success', ['list' => $list]);
|
||||
}
|
||||
}
|
||||
64
app/Service/Admin/Statement/RefundService.php
Normal file
64
app/Service/Admin/Statement/RefundService.php
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
/**
|
||||
* This service file is part of item.
|
||||
*
|
||||
* @author ctexthuang
|
||||
* @contact ctexthuang@qq.com
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Service\Admin\Statement;
|
||||
|
||||
use App\Model\Kitchen;
|
||||
use App\Model\RefundStatement;
|
||||
use App\Service\Admin\BaseService;
|
||||
use Hyperf\DbConnection\Db;
|
||||
use Hyperf\Di\Annotation\Inject;
|
||||
|
||||
class RefundService extends BaseService
|
||||
{
|
||||
/**
|
||||
* @var RefundStatement
|
||||
*/
|
||||
#[Inject]
|
||||
protected RefundStatement $refundStatementModel;
|
||||
|
||||
/**
|
||||
* @var Kitchen
|
||||
*/
|
||||
#[Inject]
|
||||
protected Kitchen $kitchenModel;
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function handle(): array
|
||||
{
|
||||
$searchCityId = $this->request->input('search_city_id');
|
||||
$searchKitchenId = $this->request->input('search_kitchen_id');
|
||||
// $searchCycleId = $this->request->input('search_cycle_id');
|
||||
$limit = (int)$this->request->input('limit',10);
|
||||
|
||||
$list = $this->refundStatementModel
|
||||
->when($searchCityId, function ($query) use ($searchCityId) {
|
||||
$kitchenIds = $this->kitchenModel->where('city_id', $searchCityId)->pluck('id')->toArray();
|
||||
$query->whereIn('kitchen_id', $kitchenIds);
|
||||
})
|
||||
->when($searchKitchenId, function ($query) use ($searchKitchenId) {
|
||||
$query->where('kitchen_id', $searchKitchenId);
|
||||
})
|
||||
->groupBy('cycle_id')
|
||||
->orderByDesc('cycle_id')
|
||||
->select(
|
||||
'date',
|
||||
'cycle_id',
|
||||
// 'kitchen_id',
|
||||
Db::raw('SUM(`refund_price`) as refund_price'),
|
||||
)
|
||||
->paginate($limit)
|
||||
->toArray();
|
||||
|
||||
return $this->return->success('success', ['list' => $list]);
|
||||
}
|
||||
}
|
||||
77
app/Service/Admin/Statement/SiteService.php
Normal file
77
app/Service/Admin/Statement/SiteService.php
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
/**
|
||||
* This service file is part of item.
|
||||
*
|
||||
* @author ctexthuang
|
||||
* @contact ctexthuang@qq.com
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Service\Admin\Statement;
|
||||
|
||||
use App\Model\Site;
|
||||
use App\Model\SiteDriverStatement;
|
||||
use App\Service\Admin\BaseService;
|
||||
use Hyperf\Di\Annotation\Inject;
|
||||
|
||||
class SiteService extends BaseService
|
||||
{
|
||||
/**
|
||||
* @var SiteDriverStatement
|
||||
*/
|
||||
#[Inject]
|
||||
protected SiteDriverStatement $siteDriverStatementModel;
|
||||
|
||||
/**
|
||||
* @var Site
|
||||
*/
|
||||
#[Inject]
|
||||
protected Site $siteModel;
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function handle(): array
|
||||
{
|
||||
$searchCityId = $this->request->input('search_city_id');
|
||||
$searchCycleId = $this->request->input('search_cycle_id');
|
||||
$searchSiteId = $this->request->input('search_site_id');
|
||||
$limit = (int)$this->request->input('limit',10);
|
||||
|
||||
$list = $this->siteDriverStatementModel
|
||||
->when($searchCityId, function ($query) use ($searchCityId) {
|
||||
$query->whereIn('city_id', $searchCityId);
|
||||
})
|
||||
->when($searchSiteId, function ($query) use ($searchSiteId) {
|
||||
$query->where('site_id', $searchSiteId);
|
||||
})
|
||||
->when($searchCycleId, function ($query) use ($searchCycleId) {
|
||||
$query->where('cycle_id', $searchCycleId);
|
||||
})
|
||||
->orderByDesc('cycle_id')
|
||||
->select(
|
||||
'date',
|
||||
'cycle_id',
|
||||
'site_id',
|
||||
'option_order_number',
|
||||
'option_copies',
|
||||
'option_add_staple_food_num',
|
||||
'meal_order_number',
|
||||
'meal_copies',
|
||||
'meal_add_staple_food_num'
|
||||
)
|
||||
->paginate($limit)
|
||||
->toArray();
|
||||
|
||||
if (empty($list['data'])) return $this->return->success('success', ['list' => []]);
|
||||
|
||||
$siteIds = array_column($list['data'], 'site_id');
|
||||
$siteList = $this->siteModel->whereIn('id', $siteIds)->pluck('name', 'id')->toArray();
|
||||
foreach ($list['data'] as &$v) {
|
||||
$v['site_name'] = $siteList[$v['site_id']] ?? '';
|
||||
}
|
||||
|
||||
return $this->return->success('success', ['list' => $list]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user