123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- <?php
- namespace app\model\system;
- use app\model\system\ProductAttrResult;
- use app\model\system\ProductAttrValue;
- use library\basic\BaseModel;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- use think\facade\Db;
- use library\traits\ModelTrait;
- /**
- * TODO 商品属性Model
- * Class ProductAttr
- * @package app\models\system
- */
- class ProductAttr extends BaseModel
- {
- /**
- * 模型名称
- * @var string
- */
- protected $name = 'product_attr';
- use ModelTrait;
- protected function getAttrValuesAttr($value)
- {
- return explode(',', $value);
- }
- public static function storeProductAttrValueDb()
- {
- return Db::name('ProductAttrValue');
- }
- protected function setAttrValuesAttr($value)
- {
- return is_array($value) ? implode(',', $value) : $value;
- }
- /**
- * 获取商品属性数据
- * @param $productId
- * @param int $uid
- * @param int $type
- * @param int $type_id
- * @return array
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public static function getProductAttrDetail($productId, $uid = 0, $type = 0, $type_id = 0)
- {
- $attrDetail = self::where('product_id', $productId)->where('type', $type_id)->order('attr_values asc')->select()->toArray() ?: [];
- $_values = self::storeProductAttrValueDb()->where('product_id', $productId)->where('type', $type_id)->select();
- $values = [];
- $sku = [];
- foreach ($_values as $value) {
- if ($type) {
- if ($uid)
- $value['cart_num'] = StoreCart::where('product_attr_unique', $value['unique'])->where('is_pay', 0)->where('is_del', 0)->where('is_new', 0)->where('type', 'product')->where('product_id', $productId)->where('uid', $uid)->value('cart_num');
- else
- $value['cart_num'] = 0;
- if (is_null($value['cart_num'])) $value['cart_num'] = 0;
- }
- if($value['price'] == '0.00'){
- $value['price'] = round($value['ot_price'] * 1.15, 2);
- }
- $values[$value['suk']] = $value;
- $sku[] = $value;
- }
- foreach ($attrDetail as $k => $v) {
- $attr = $v['attr_values'];
- // unset($productAttr[$k]['attr_values']);
- foreach ($attr as $kk => $vv) {
- $attrDetail[$k]['attr_value'][$kk]['attr'] = $vv;
- $attrDetail[$k]['attr_value'][$kk]['check'] = false;
- }
- }
- return [$attrDetail, $values, $sku];
- }
- public static function uniqueByStock($unique)
- {
- return self::storeProductAttrValueDb()->where('unique', $unique)->value('stock') ?: 0;
- }
- public static function uniqueByAttrInfo($unique, $field = '*')
- {
- return self::storeProductAttrValueDb()->field($field)->where('unique', $unique)->find();
- }
- public static function uniqueByAttrInfoMore($unique, $field = '*')
- {
- return self::storeProductAttrValueDb()->field($field)->where('unique', 'in', $unique)->select()->toArray() ?: [];
- }
- public static function issetProductUnique($productId, $unique)
- {
- $res = self::where('product_id', $productId)->where('type', 0)->find();
- if ($unique) {
- return $res && self::storeProductAttrValueDb()->where('product_id', $productId)->where('unique', $unique)->where('type', 0)->count() > 0;
- } else {
- return !$res;
- }
- }
- public static function createProductAttr($attrList, $valueList, $productId, $type = 0)
- {
- $result = ['attr' => $attrList, 'value' => $valueList];
- $attrValueList = [];
- $attrNameList = [];
- foreach ($attrList as $index => $attr) {
- if (!isset($attr['value'])) return self::setErrorInfo('请输入规则名称!');
- $attr['value'] = trim($attr['value']);
- if (!isset($attr['value'])) return self::setErrorInfo('请输入规则名称!!');
- if (!isset($attr['detail']) || !count($attr['detail'])) return self::setErrorInfo('请输入属性名称!');
- foreach ($attr['detail'] as $k => $attrValue) {
- $attrValue = trim($attrValue);
- if (empty($attrValue)) return self::setErrorInfo('请输入正确的属性');
- $attr['detail'][$k] = $attrValue;
- $attrValueList[] = $attrValue;
- $attr['detail'][$k] = $attrValue;
- }
- $attrNameList[] = $attr['value'];
- $attrList[$index] = $attr;
- }
- $attrCount = count($attrList);
- foreach ($valueList as $index => $value) {
- if (!isset($value['detail']) || count($value['detail']) != $attrCount) return self::setErrorInfo('请填写正确的商品信息');
- if (!isset($value['price']) || !is_numeric($value['price']) || floatval($value['price']) != $value['price'])
- return self::setErrorInfo('请填写正确的商品价格');
- if (!isset($value['stock']) || !is_numeric($value['stock']) || intval($value['stock']) != $value['stock'])
- return self::setErrorInfo('请填写正确的现货库存');
- if (!isset($value['capacity']) || !is_numeric($value['capacity']) || intval($value['capacity']) != $value['capacity'])
- return self::setErrorInfo('请填写正确的单日产能');
- if (!isset($value['cost']) || !is_numeric($value['cost']) || floatval($value['cost']) != $value['cost'])
- return self::setErrorInfo('请填写正确的出厂价');
- if (!isset($value['pic']) || empty($value['pic']))
- return self::setErrorInfo('请上传商品图片');
- foreach ($value['detail'] as $attrName => $attrValue) {
- $attrName = trim($attrName);
- $attrValue = trim($attrValue);
- if (!in_array($attrName, $attrNameList, true)) return self::setErrorInfo($attrName . '规则不存在');
- if (!in_array($attrValue, $attrValueList, true)) return self::setErrorInfo($attrName . '属性不存在');
- if (empty($attrName)) return self::setErrorInfo('请输入正确的属性');
- $value['detail'][$attrName] = $attrValue;
- }
- $valueList[$index] = $value;
- }
- $attrGroup = [];
- $valueGroup = [];
- foreach ($attrList as $k => $value) {
- $attrGroup[] = [
- 'product_id' => $productId,
- 'attr_name' => $value['value'],
- 'attr_values' => $value['detail'],
- 'type' => $type
- ];
- }
- foreach ($valueList as $k => $value) {
- sort($value['detail'], SORT_STRING);
- $suk = implode(',', $value['detail']);
- $valueGroup[$suk] = [
- 'product_id' => $productId,
- 'suk' => $suk,
- 'price' => $value['price'],
- 'cost' => $value['cost'],
- 'ot_price' => $value['ot_price'],
- 'stock' => $value['stock'],
- 'capacity' => $value['capacity'],
- 'unique' => ProductAttrValue::where(['product_id' => $productId, 'suk' => $suk, 'type' => $type])->value('unique') ?: '',
- 'image' => $value['pic'],
- 'bar_code' => $value['bar_code'] ?? '',
- 'weight' => $value['weight'] ?? 0,
- 'volume' => $value['volume'] ?? 0,
- 'brokerage' => $value['brokerage'] ?? 0,
- 'brokerage_two' => $value['brokerage_two'] ?? 0,
- 'type' => $type,
- 'quota' => $value['quota'] ?? 0,
- 'quota_show' => $value['quota'] ?? 0,
- ];
- }
- if (!count($attrGroup) || !count($valueGroup)) return self::setErrorInfo('请设置至少一个属性!');
- $attrModel = new self;
- $attrValueModel = new ProductAttrValue;
- if (!self::clearProductAttr($productId, $type)) return false;
- $res = false !== $attrModel->saveAll($attrGroup)
- && false !== $attrValueModel->saveAll($valueGroup)
- && false !== ProductAttrResult::setResult($result, $productId, $type);
- if ($res)
- return true;
- else
- return self::setErrorInfo('编辑商品属性失败!');
- }
- /**
- * 获取商品属性
- * @param $productId
- * @return array|bool|null|\think\Model
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public static function getProductAttr($productId, $type = 0)
- {
- if (empty($productId) && $productId != 0) return self::setErrorInfo('商品不存在!');
- $count = self::where('product_id', $productId)->where('type', $type)->count();
- if (!$count) return self::setErrorInfo('商品不存在!');
- return self::where('product_id', $productId)->where('type', $type)->select()->toArray();
- }
- public static function clearProductAttr($productId, $type = 0)
- {
- if (empty($productId) && $productId != 0) return self::setErrorInfo('商品不存在!');
- $res = false !== self::where('product_id', $productId)->where('type', $type)->delete()
- && false !== ProductAttrValue::clearProductAttrValue($productId, $type);
- if (!$res)
- return self::setErrorInfo('编辑属性失败,清除旧属性失败!');
- else
- return true;
- }
- }
|