123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\dao\product\sku;
- use app\dao\BaseDao;
- use app\model\product\sku\StoreProductAttrValue;
- /**
- * Class StoreProductAttrValueDao
- * @package app\dao\product\sku
- */
- class StoreProductAttrValueDao extends BaseDao
- {
- /**
- * 设置模型
- * @return string
- */
- protected function setModel(): string
- {
- return StoreProductAttrValue::class;
- }
- /**
- * @param array $where
- * @param string $field
- * @param int $page
- * @param int $limit
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getList(array $where, string $field = '*', int $page = 0, $limit = 0)
- {
- return $this->search($where)->field($field)->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->order('id asc')->select()->toArray();
- }
- /**
- * 减库存
- * @param array $where
- * @param int $num
- * @param string $stock
- * @param string $sales
- * @return bool|mixed
- */
- public function decStockIncSales(array $where, int $num, string $stock = 'stock', string $sales = 'sales')
- {
- $isQuota = false;
- if (isset($where['type']) && $where['type']) {
- $isQuota = true;
- if (count($where) == 2) {
- unset($where['type']);
- }
- }
- $field = $isQuota ? 'stock,quota' : 'stock';
- $product = $this->getModel()->where($where)->field($field)->find();
- if ($product) {
- return $this->getModel()->where($where)->when($isQuota, function ($query) use ($num) {
- $query->dec('quota', $num);
- })->dec($stock, $num)->dec('sum_stock', $num)->inc($sales, $num)->update();
- }
- return true;
- // return $this->getModel()->where($where)->dec($stock, $num)->inc($sales, $num)->dec('sum_stock', $num)->update();
- }
- /**
- * 加库存
- * @param array $where
- * @param int $num
- * @param string $stock
- * @param string $sales
- * @return bool|mixed
- */
- public function incStockDecSales(array $where, int $num, string $stock = 'stock', string $sales = 'sales')
- {
- $isQuota = false;
- if (isset($where['type']) && $where['type']) {
- $isQuota = true;
- if (count($where) == 2) {
- unset($where['type']);
- }
- }
- $salesOne = $this->getModel()->where($where)->value($sales);
- if ($salesOne) {
- $salesNum = $num;
- if ($num > $salesOne) {
- $salesNum = $salesOne;
- }
- return $this->getModel()->where($where)->when($isQuota, function ($query) use ($num) {
- $query->inc('quota', $num);
- })->inc($stock, $num)->inc('sum_stock', $num)->dec($sales, $salesNum)->update();
- }
- return true;
- // $salesOne = $this->getModel()->where($where)->value($sales);
- // if ($salesOne) {
- // $salesNum = $num;
- // if ($num > $salesOne) {
- // $salesNum = $salesOne;
- // }
- // return $this->getModel()->where($where)->inc($stock, $num)->inc('sum_stock', $num)->dec($sales, $salesNum)->update();
- // };
- // return true;
- }
- /**
- * 根据条件获取规格value
- * @param array $where
- * @param string $field
- * @param string $key
- * @param bool $search
- * @return array
- */
- public function getColumn(array $where, string $field = '*', string $key = 'suk', bool $search = false)
- {
- if ($search) {
- return $this->search($where)
- ->when(isset($where['store_id']) && $where['store_id'], function ($query) use ($where) {
- $query->with(['storeBranch' => function ($querys) use ($where) {
- $querys->where(['store_id' => $where['store_id'], 'product_id' => $where['product_id']]);
- }]);
- })
- ->column($field, $key);
- } else {
- return $this->getModel()::where($where)
- ->when(isset($where['product_id']) && $where['product_id'], function ($query) use ($where, $field) {
- if (is_array($where['product_id'])) {
- $query->whereIn('product_id', $where['product_id']);
- } else {
- $query->where('product_id', $where['product_id']);
- }
- })
- ->column($field, $key);
- }
- }
- /**
- * 根据条件删除规格value
- * @param int $id
- * @param int $type
- * @param array $suk
- * @return bool
- */
- public function del(int $id, int $type, array $suk = [])
- {
- return $this->search(['product_id' => $id, 'type' => $type, 'suk' => $suk])->delete();
- }
- /**
- * 保存数据
- * @param array $data
- * @return mixed|\think\Collection
- * @throws \Exception
- */
- public function saveAll(array $data)
- {
- return $this->getModel()->saveAll($data);
- }
- /**
- * 根据条件获取规格数据列表
- * @param array $where
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getProductAttrValue(array $where)
- {
- return $this->search($where)->order('id asc')->select()->toArray();
- }
- /**
- * 获取属性列表
- * @return mixed
- */
- public function attrValue()
- {
- return $this->search()->field('product_id,sum(sales * price) as val')->with(['product'])->group('product_id')->limit(20)->select()->toArray();
- }
- /**
- * 获取属性库存
- * @param string $unique
- * @return int
- */
- public function uniqueByStock(string $unique)
- {
- return $this->search(['unique' => $unique])->value('stock') ?: 0;
- }
- /**
- * 减库存加销量减限购
- * @param array $where
- * @param int $num
- * @return mixed
- */
- public function decStockIncSalesDecQuota(array $where, int $num)
- {
- return $this->getModel()->where($where)->dec('stock', $num)->dec('quota', $num)->inc('sales', $num)->update();
- }
- /**
- * 根据unique获取一条规格数据
- * @param string $unique
- * @param int $type
- * @param string $field
- * @param array $with
- * @return array|\think\Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function uniqueByField(string $unique, int $type = 0, string $field = '*', array $with = [])
- {
- return $this->search(['unique' => $unique, 'type' => $type])->field($field)->with($with)->find();
- }
- /**
- * 根据商品id获取对应规格库存
- * @param int $pid
- * @param int $type
- * @return float
- */
- public function pidBuStock(int $pid, $type = 0)
- {
- return $this->getModel()->where(['product_id' => $pid, 'type' => $type])->sum('stock');
- }
- /**
- * 获取门店规格
- * @param array $where
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function storeBranchAttr(array $where)
- {
- return $this->search($where)
- ->when(isset($where['store_id']) && $where['store_id'], function ($query) use ($where) {
- $query->with(['storeBranch' => function ($querys) use ($where) {
- $querys->where('store_id', $where['store_id']);
- }]);
- })->select()->toArray();
- }
- /**
- * 根据条形码获取一条商品规格信息
- * @param string $bar_code
- * @return array|\think\Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getAttrByBarCode(string $bar_code)
- {
- return $this->getModel()->where('bar_code', $bar_code)->order('id desc')->find();
- }
- /**
- * 根据规格信息获取商品库存
- * @param array $ids
- * @return array|\think\Model|null
- */
- public function getProductStockByValues(array $ids)
- {
- return $this->getModel()->whereIn('product_id', $ids)->where('type', 0)
- ->field('`product_id` AS `id`, SUM(`stock`) AS `stock`')->group("product_id")->select()->toArray();
- }
- /**
- * 分组查询
- * @param string $file
- * @param string $group_id
- * @param array $where
- * @param string $having
- * @return mixed
- */
- public function getGroupData(string $file, string $group_id, array $where, string $having = '')
- {
- return $this->getModel()->when($where, function ($query) use ($where) {
- $query->where($where);
- })->field($file)->group($group_id)->when($having, function ($query) use ($having) {
- $query->having($having);
- })->select();
- }
- /**
- * 库存警戒查询
- * @author 等风来
- * @email 136327134@qq.com
- * @date 2023/4/18
- * @param array $where
- * @return int
- * @throws \think\db\exception\DbException
- */
- public function getPolice(array $where)
- {
- return $this->getModel()->when($where, function ($query) use ($where) {
- $query->where($where);
- })->count();
- }
- }
|