110 lines
3.5 KiB
PHP
110 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace app\admin\lists\operation;
|
|
|
|
|
|
use app\admin\lists\BaseAdminDataLists;
|
|
use app\common\model\operation\Opurchaseclass;
|
|
use app\common\lists\ListsSearchInterface;
|
|
use app\common\model\goods\Goods;
|
|
use app\common\model\goods\GoodsLabel;
|
|
use app\common\model\opurchase\OpurchaseGoodsOffer;
|
|
use app\common\model\supplier\Supplier;
|
|
|
|
/**
|
|
* 采购供应链商户报价
|
|
* Class OpurchaseclassofferLists
|
|
* @package app\admin\listsoperation
|
|
*/
|
|
class OpurchaseclassofferLists extends BaseAdminDataLists implements ListsSearchInterface
|
|
{
|
|
|
|
protected $where;
|
|
|
|
|
|
/**
|
|
* @notes 设置搜索条件
|
|
* @return \string[][]
|
|
* @author likeadmin
|
|
* @date 2024/04/27 11:26
|
|
*/
|
|
public function setSearch(): array
|
|
{
|
|
return [
|
|
'=' => ['is_adopt', 'is_storage', 'order_id'],
|
|
'between_time' => 'create_time'
|
|
];
|
|
}
|
|
|
|
|
|
/**
|
|
* @notes 获取采购供应链商户报价列表
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @author likeadmin
|
|
* @date 2024/04/27 11:26
|
|
*/
|
|
public function lists(): array
|
|
{
|
|
$where = [];
|
|
$is_mer = $this->request->get('is_mer', 0);
|
|
$id = $this->request->get('id', 0);
|
|
$type = $this->request->get('type', 'all');
|
|
if ($type == 1) {
|
|
$where[] = ['is_adopt', '=', 0];
|
|
} elseif ($type == 2) {
|
|
$where[] = ['is_adopt', '=', 1];
|
|
}
|
|
if ($id) {
|
|
$where[] = ['order_id', '=', $id];
|
|
}
|
|
if ($this->request->supplierId > 0) {
|
|
$where[] = ['supplier_id', '=', $this->request->supplierId];
|
|
}
|
|
$this->where = $where;
|
|
if ($this->request->__get('storage_list') == 1) {
|
|
$list = OpurchaseGoodsOffer::where($this->searchWhere)
|
|
->where($where)
|
|
->limit($this->limitOffset, $this->limitLength)
|
|
->order('update_time', 'desc')
|
|
->select()->each(function ($item) {
|
|
$find = Goods::where('id', $item['goods_id'])->with('unitName')->find();
|
|
if ($find) {
|
|
$item['goods_name'] = $find['name'];
|
|
$item['unit_name'] = $find['unit_name'];
|
|
}
|
|
$item['supplier_name'] = Supplier::where('id', $item['supplier_id'])->value('mer_name');
|
|
})->toArray();
|
|
} else {
|
|
$list = OpurchaseGoodsOffer::where($this->searchWhere)
|
|
->where($where)
|
|
->limit($this->limitOffset, $this->limitLength)
|
|
->orderRaw("goods_id, CASE WHEN price = 0 THEN 999999999 ELSE price END ASC")
|
|
->select()->each(function ($item) {
|
|
$find = Goods::where('id', $item['goods_id'])->with('unitName')->find();
|
|
if ($find) {
|
|
$item['goods_name'] = $find['name'];
|
|
$item['unit_name'] = $find['unit_name'];
|
|
}
|
|
$item['supplier_name'] = Supplier::where('id', $item['supplier_id'])->value('mer_name');
|
|
})->toArray();
|
|
}
|
|
|
|
return $list;
|
|
}
|
|
|
|
|
|
/**
|
|
* @notes 获取采购供应链商户报价数量
|
|
* @return int
|
|
* @author likeadmin
|
|
* @date 2024/04/27 11:26
|
|
*/
|
|
public function count(): int
|
|
{
|
|
return OpurchaseGoodsOffer::where($this->searchWhere)->where($this->where)->count();
|
|
}
|
|
}
|