CRMEB/crmeb/app/admin/model/ump/StoreBargain.php
2020-07-04 18:38:20 +08:00

377 lines
14 KiB
PHP

<?php
namespace app\admin\model\ump;
use app\admin\model\order\StoreOrder;
use app\admin\model\store\StoreProductRelation;
use crmeb\traits\ModelTrait;
use crmeb\basic\BaseModel;
use crmeb\services\PHPExcelService;
/**
* 砍价Model
* Class StoreBargain
* @package app\admin\model\store
*/
class StoreBargain extends BaseModel
{
/**
* 数据表主键
* @var string
*/
protected $pk = 'id';
/**
* 模型名称
* @var string
*/
protected $name = 'store_bargain';
use ModelTrait;
public function getDescriptionAttr($value)
{
return htmlspecialchars_decode($value);
}
public function getRuleAttr($value)
{
return htmlspecialchars_decode($value);
}
/**
* 获取砍价的总数
* @return int|string
*/
public static function getCountBargain()
{
return self::where('is_del', 0)->count();
}
/**
* 砍价产品过滤条件
* @param $model
* @param $type
* @return mixed
*/
public static function setWhereType($model, $type)
{
switch ($type) {
case 1:
$data = ['status' => 0, 'is_del' => 0];
break;
case 2:
$data = ['status' => 1, 'is_del' => 0];
break;
case 3:
$data = ['status' => 1, 'is_del' => 0, 'stock' => 0];
break;
case 4:
$data = ['status' => 1, 'is_del' => 0, 'stock' => ['elt', 1]];
break;
case 5:
$data = ['is_del' => 1];
break;
}
if (isset($data)) $model = $model->where($data);
return $model;
}
/**
* 砍价产品数量 图标展示
* @param $type
* @param $data
* @return array
*/
public static function getChatrdata($type, $data)
{
$legdata = ['销量', '数量', '点赞', '收藏'];
$model = self::setWhereType(self::order('id desc'), $type);
$list = self::getModelTime(compact('data'), $model)
->field('FROM_UNIXTIME(add_time,"%Y-%c-%d") as un_time,count(id) as count,sum(sales) as sales')
->group('un_time')
->distinct(true)
->select()
->each(function ($item) use ($data) {
$item['collect'] = self::getModelTime(compact('data'), new StoreProductRelation)->where('type', 'collect')->count();
$item['like'] = self::getModelTime(compact('data'), new StoreProductRelation())->where('type', 'like')->count();
})->toArray();
$chatrList = [];
$datetime = [];
$data_item = [];
$itemList = [0 => [], 1 => [], 2 => [], 3 => []];
foreach ($list as $item) {
$itemList[0][] = $item['sales'];
$itemList[1][] = $item['count'];
$itemList[2][] = $item['like'];
$itemList[3][] = $item['collect'];
array_push($datetime, $item['un_time']);
}
foreach ($legdata as $key => $leg) {
$data_item['name'] = $leg;
$data_item['type'] = 'line';
$data_item['data'] = $itemList[$key];
$chatrList[] = $data_item;
unset($data_item);
}
unset($leg);
$badge = self::getbadge(compact('data'), $type);
$count = self::setWhereType(self::getModelTime(compact('data'), new self()), $type)->count();
return compact('datetime', 'chatrList', 'legdata', 'badge', 'count');
}
/**
* 砍价产品数量
* @param $where
* @param $type
* @return array
*/
public static function getbadge($where, $type)
{
$StoreOrderModel = new StoreOrder();
$replenishment_num = sys_config('replenishment_num');
$replenishment_num = $replenishment_num > 0 ? $replenishment_num : 20;
$stock1 = self::getModelTime($where, new self())->where('stock', '<', $replenishment_num)->column('stock', 'id');
$sum_stock = self::where('stock', '<', $replenishment_num)->column('stock', 'id');
$stk = [];
foreach ($stock1 as $item) {
$stk[] = $replenishment_num - $item;
}
$lack = array_sum($stk);
$sum = [];
foreach ($sum_stock as $val) {
$sum[] = $replenishment_num - $val;
}
return [
[
'name' => '商品种类',
'field' => '件',
'count' => self::setWhereType(new self(), $type)->where('add_time', '<', mktime(0, 0, 0, date('m'), date('d'), date('Y')))->count(),
'content' => '商品种类总数',
'background_color' => 'layui-bg-blue',
'sum' => self::count(),
'class' => 'fa fa fa-ioxhost',
],
[
'name' => '新增商品',
'field' => '件',
'count' => self::setWhereType(self::getModelTime($where, new self), $type)->sum('stock'),
'content' => '新增商品总数',
'background_color' => 'layui-bg-cyan',
'sum' => self::where('status', 1)->sum('stock'),
'class' => 'fa fa-line-chart',
],
[
'name' => '砍价成功商品件数',
'field' => '件',
'count' => self::getModelTime($where, $StoreOrderModel)->where('bargain_id', '<>', 0)->sum('total_num'),
'content' => '砍价成功商品总件数',
'background_color' => 'layui-bg-green',
'sum' => $StoreOrderModel->where('bargain_id', '<>', 0)->sum('total_num'),
'class' => 'fa fa-bar-chart',
],
[
'name' => '缺货商品',
'field' => '件',
'count' => $lack,
'content' => '总商品数量',
'background_color' => 'layui-bg-orange',
'sum' => array_sum($sum),
'class' => 'fa fa-cube',
],
];
}
/**
* 销量排行 top 10
* layui-bg-red 红 layui-bg-orange 黄 layui-bg-green 绿 layui-bg-blue 蓝 layui-bg-cyan 黑
*/
public static function getMaxList($where)
{
$classs = ['layui-bg-red', 'layui-bg-orange', 'layui-bg-green', 'layui-bg-blue', 'layui-bg-cyan'];
$model = StoreOrder::alias('a')->join('store_bargain b', 'b.id=a.bargain_id')->where('a.paid', 1);
$list = self::getModelTime($where, $model, 'a.add_time')->group('a.bargain_id')->order('p_count desc')->limit(10)
->field(['count(a.bargain_id) as p_count', 'b.title as store_name', 'sum(b.price) as sum_price'])->select();
if (count($list)) $list = $list->toArray();
$maxList = [];
$sum_count = 0;
$sum_price = 0;
foreach ($list as $item) {
$sum_count += $item['p_count'];
$sum_price = bcadd($sum_price, $item['sum_price'], 2);
}
unset($item);
foreach ($list as $key => &$item) {
$item['w'] = bcdiv($item['p_count'], $sum_count, 2) * 100;
$item['class'] = isset($classs[$key]) ? $classs[$key] : (isset($classs[$key - count($classs)]) ? $classs[$key - count($classs)] : '');
$item['store_name'] = self::getSubstrUTf8($item['store_name']);
}
$maxList['sum_count'] = $sum_count;
$maxList['sum_price'] = $sum_price;
$maxList['list'] = $list;
return $maxList;
}
/**
* 获取砍价利润
* @param $where
* @return array
*/
public static function ProfityTop10($where)
{
$classs = ['layui-bg-red', 'layui-bg-orange', 'layui-bg-green', 'layui-bg-blue', 'layui-bg-cyan'];
$model = StoreOrder::alias('a')->join('store_bargain b', 'b.id=a.bargain_id')->where('a.paid', 1);
$list = self::getModelTime($where, $model, 'a.add_time')->group('a.bargain_id')->order('profity desc')->limit(10)
->field(['count(a.bargain_id) as p_count', 'b.title as store_name', 'sum(b.price) as sum_price', '(b.price-b.cost) as profity'])
->select();
if (count($list)) $list = $list->toArray();
$maxList = [];
$sum_count = 0;
$sum_price = 0;
foreach ($list as $item) {
$sum_count += $item['p_count'];
$sum_price = bcadd($sum_price, $item['sum_price'], 2);
}
foreach ($list as $key => &$item) {
$item['w'] = bcdiv($item['sum_price'], $sum_price, 2) * 100;
$item['class'] = isset($classs[$key]) ? $classs[$key] : (isset($classs[$key - count($classs)]) ? $classs[$key - count($classs)] : '');
$item['store_name'] = self::getSubstrUTf8($item['store_name'], 30);
}
$maxList['sum_count'] = $sum_count;
$maxList['sum_price'] = $sum_price;
$maxList['list'] = $list;
return $maxList;
}
/**
* 获取砍价缺货
* @param $where
* @return array
*/
public static function getLackList($where)
{
$replenishment_num = sys_config('replenishment_num');
$replenishment_num = $replenishment_num > 0 ? $replenishment_num : 20;
$list = self::where('stock', '<', $replenishment_num)->field(['id', 'title as store_name', 'stock', 'price'])->page((int)$where['page'], (int)$where['limit'])->order('stock asc')->select();
if (count($list)) $list = $list->toArray();
$count = self::where('stock', '<', $replenishment_num)->count();
return ['count' => $count, 'data' => $list];
}
/**
* 砍价产品评价
* @param array $where
* @return array
*/
public static function getNegativeList($where = [])
{
$replenishment_num = 3;
return [];
}
/**
* 砍价产品退货
* @param array $where
* @return mixed
*/
public static function getBargainRefundList($where = [])
{
$model = StoreOrder::alias('a')->join('store_bargain b', 'b.id=a.bargain_id');
$list = self::getModelTime($where, $model, 'a.add_time')->where('a.refund_status', '<>', 0)->group('a.bargain_id')->order('count desc')->page((int)$where['page'], (int)$where['limit'])
->field(['count(a.bargain_id) as count', 'b.title as store_name', 'sum(b.price) as sum_price'])->select();
if (count($list)) $list = $list->toArray();
return $list;
}
/**
* @param $where
* @return array
*/
public static function systemPage($where)
{
$model = new self;
$model = self::isWhere($where, $model);
$model = $model->order('id desc');
$model = $model->where('is_del', 0);
if ($where['export'] == 1) {
$list = $model->select()->toArray();
$export = [];
foreach ($list as $index => $item) {
$export[] = [
$item['title'],
$item['info'],
$item['store_name'],
'¥' . $item['price'],
'¥' . $item['cost'],
$item['num'],
'¥' . $item['bargain_max_price'],
'¥' . $item['bargain_min_price'],
$item['bargain_num'],
$item['status'] ? '开启' : '关闭',
date('Y-m-d H:i:s', $item['start_time']),
date('Y-m-d H:i:s', $item['stop_time']),
$item['sales'],
$item['stock'],
$item['give_integral'],
date('Y-m-d H:i:s', $item['add_time']),
];
$list[$index] = $item;
}
PHPExcelService::setExcelHeader(['砍价活动名称', '砍价活动简介', '砍价产品名称', '砍价金额', '成本价', '每次购买的砍价产品数量', '用户每次砍价的最大金额', '用户每次砍价的最小金额',
'用户每次砍价的次数', '砍价状态', '砍价开启时间', '砍价结束时间', '销量', '库存', '返多少积分', '添加时间'])
->setExcelTile('砍价产品导出', '产品信息' . time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
->setExcelContent($export)
->ExcelSave();
}
return self::page($model, function ($item) {
if ($item['status']) {
if ($item['start_time'] > time())
$item['start_name'] = '活动未开始';
else if ($item['stop_time'] < time())
$item['start_name'] = '活动已结束';
else if ($item['stop_time'] > time() && $item['start_time'] < time())
$item['start_name'] = '正在进行中';
}
$item['count_people_all'] = StoreBargainUser::getCountPeopleAll($item['id']);//参与人数
$item['count_people_help'] = StoreBargainUserHelp::getCountPeopleHelp($item['id']);//帮忙砍价人数
$item['count_people_success'] = StoreBargainUser::getCountPeopleAll($item['id'], 3);//砍价成功人数
}, $where);
}
/**
* 获取砍价产品ID
* @param array $where
* @return mixed
*/
public static function getBargainIdAll($where = [])
{
$model = new self;
$model = self::isWhere($where, $model);
$model = $model->order('id desc');
$model = $model->where('is_del', 0);
return $model->column('id', 'id');
}
public static function isWhere($where = [], $model = self::class)
{
if ($where['status'] != '') $model = $model->where('status', $where['status']);
if ($where['store_name'] != '') $model = $model->where('id|title', 'LIKE', "%$where[store_name]%");
if ($where['data'] != '')
$model = self::getModelTime($where, $model, 'add_time');
return $model;
}
/**
* TODO 获取某个字段值
* @param $id
* @param string $field
* @return mixed
*/
public static function getBargainField($id, $field = 'title')
{
return self::where('id', $id)->value($field);
}
}