CRMEB/crmeb/app/services/order/StoreOrderCartInfoServices.php
2023-02-14 21:14:49 +08:00

239 lines
8.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\services\order;
use crmeb\utils\Str;
use app\services\BaseServices;
use crmeb\services\CacheService;
use app\dao\order\StoreOrderCartInfoDao;
/**
* Class StoreOrderCartInfoServices
* @package app\services\order
* @method array getCartColunm(array $where, string $field, ?string $key) 获取购物车信息以数组返回
* @method array getCartInfoList(array $where, array $field) 获取购物车详情列表
* @method getSplitCartNum(array $cart_id)
* @method getOne(array $where, ?string $field = '*', array $with = []) 根据条件获取一条数据
*/
class StoreOrderCartInfoServices extends BaseServices
{
/**
* StoreOrderCartInfoServices constructor.
* @param StoreOrderCartInfoDao $dao
*/
public function __construct(StoreOrderCartInfoDao $dao)
{
$this->dao = $dao;
}
/**
* 清空订单商品缓存
* @param int $oid
* @return bool
* @throws \Psr\SimpleCache\InvalidArgumentException
*/
public function clearOrderCartInfo(int $oid)
{
return CacheService::delete(md5('store_order_cart_info_' . $oid));
}
/**
* 获取指定订单下的商品详情
* @param int $oid
* @return array|bool|mixed
* @throws \ReflectionException
*/
public function getOrderCartInfo(int $oid)
{
$cartInfo = CacheService::get(md5('store_order_cart_info_' . $oid));
if ($cartInfo) return $cartInfo;
$cart_info = $this->dao->getColumn(['oid' => $oid], 'cart_info', 'cart_id');
$info = [];
foreach ($cart_info as $k => $v) {
$_info = is_string($v) ? json_decode($v, true) : $v;
if (!isset($_info['productInfo'])) $_info['productInfo'] = [];
//缩略图处理
if (isset($_info['productInfo']['attrInfo'])) {
$_info['productInfo']['attrInfo'] = get_thumb_water($_info['productInfo']['attrInfo']);
}
$_info['productInfo'] = get_thumb_water($_info['productInfo']);
$_info['refund_num'] = $this->dao->sum(['cart_id' => $_info['id']], 'refund_num');
$info[$k]['cart_info'] = $_info;
unset($_info);
}
CacheService::set(md5('store_order_cart_info_' . $oid), $info);
return $info;
}
/**
* 查找购物车里的所有商品标题
* @param int $oid
* @param false $goodsNum
* @return bool|mixed|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getCarIdByProductTitle(int $oid, bool $goodsNum = false)
{
if ($goodsNum) {
$key = md5('store_order_cart_product_title_num' . $oid);
} else {
$key = md5('store_order_cart_product_title_' . $oid);
}
$title = CacheService::get($key);
if (!$title) {
$orderCart = $this->dao->getCartInfoList(['oid' => $oid], ['cart_info']);
foreach ($orderCart as $item) {
if (isset($item['cart_info']['productInfo']['store_name'])) {
if ($goodsNum && isset($item['cart_info']['cart_num'])) {
$title .= $item['cart_info']['productInfo']['store_name'] . ' * ' . $item['cart_info']['cart_num'] . ' | ';
} else {
$title .= $item['cart_info']['productInfo']['store_name'] . '|';
}
}
}
if ($title) {
$title = substr($title, 0, strlen($title) - 1);
}
CacheService::set($key, $title);
}
return $title ?: '';
}
/**
* 获取打印订单的商品信息
* @param $oid
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getCartInfoPrintProduct($oid)
{
$cartInfo = $this->dao->getCartInfoList(['oid' => $oid], ['cart_info']);
$product = [];
foreach ($cartInfo as $item) {
$value = is_string($item['cart_info']) ? json_decode($item['cart_info'], true) : $item['cart_info'];
$value['productInfo']['store_name'] = $value['productInfo']['store_name'] ?? "";
$value['productInfo']['store_name'] = Str::substrUTf8($value['productInfo']['store_name'], 10, 'UTF-8', '');
$product[] = $value;
}
return $product;
}
/**
* 保存购物车info
* @param $oid
* @param $uid
* @param array $cartInfo
* @return \think\Collection
* @throws \Exception
*/
public function setCartInfo($oid, $uid, array $cartInfo)
{
$group = [];
foreach ($cartInfo as $cart) {
$group[] = [
'oid' => $oid,
'uid' => $uid,
'cart_id' => $cart['id'],
'product_id' => $cart['productInfo']['id'],
'cart_info' => json_encode($cart),
'cart_num' => $cart['cart_num'],
'surplus_num' => $cart['cart_num'],
'unique' => md5($cart['id'] . '' . $oid)
];
}
return $this->dao->saveAll($group);
}
/**
* 订单创建成功之后计算订单(实际优惠、积分、佣金、上级、上上级)
* @param $oid
* @param array $cartInfo
* @return bool
*/
public function updateCartInfo($oid, array $cartInfo)
{
foreach ($cartInfo as $cart) {
$group = [
'cart_info' => json_encode($cart)
];
$this->dao->update(['oid' => $oid, 'cart_id' => $cart['id']], $group);
}
return true;
}
/**
* 商品编号
* @param $oid
* @return array
*/
public function getCartIdsProduct($oid)
{
return $this->dao->getColumn(['oid' => $oid], 'product_id', 'oid');
}
/**
* 获取某个订单还可以拆分商品 split_status 0未拆分1部分拆分2拆分完成
* @param int $oid
* @param string $field
* @param string $key
* @return array
*/
public function getSplitCartList(int $oid, string $field = '*', string $key = 'cart_id')
{
$cartInfo = $this->dao->getColumn([['oid', '=', $oid], ['split_status', 'IN', [0, 1]]], $field, $key);
foreach ($cartInfo as &$item) {
if ($field == 'cart_info') {
$item = is_string($item) ? json_decode($item, true) : $item;
} else {
if (isset($item['cart_info'])) $item['cart_info'] = is_string($item['cart_info']) ? json_decode($item['cart_info'], true) : $item['cart_info'];
if (isset($item['cart_num']) && !$item['cart_num']) {//兼容之前老数据
$item['cart_num'] = $item['cart_info']['cart_num'] ?? 0;
}
}
}
return $cartInfo;
}
/**
* 获取可退款商品
* @param int $oid
* @param string $field
* @param string $key
* @return array
*/
public function getRefundCartList(int $oid, string $field = '*', string $key = '')
{
$cartInfo = array_merge($this->dao->getColumn(['oid' => $oid], $field, 'id'));
foreach ($cartInfo as $key => &$item) {
if ($field == 'cart_info') {
$item = is_string($item) ? json_decode($item, true) : $item;
} else {
if (isset($item['cart_info'])) $item['cart_info'] = is_string($item['cart_info']) ? json_decode($item['cart_info'], true) : $item['cart_info'];
if (isset($item['cart_num']) && !$item['cart_num']) {//兼容之前老数据
$item['cart_num'] = $item['cart_info']['cart_num'] ?? 0;
}
}
$surplus = (int)bcsub((string)$item['cart_num'], (string)$item['refund_num'], 0);
if ($surplus > 0) {
$item['surplus_num'] = $surplus;
} else {
unset($cartInfo['key']);
}
}
return $cartInfo;
}
}