- 框架初始化
 - 安装插件
 - 修复PHP8.4报错
This commit is contained in:
2025-04-19 17:21:20 +08:00
commit c6a4e1f5f6
5306 changed files with 967782 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<?php
namespace app\admin\model\shopro\goods;
use app\admin\model\shopro\Common;
use app\admin\model\shopro\activity\SkuPrice as ActivitySkuPriceModel;
use app\admin\model\shopro\app\ScoreSkuPrice;
class SkuPrice extends Common
{
protected $name = 'shopro_goods_sku_price';
// 追加属性
protected $append = [
'goods_sku_text',
'status_text'
];
public function getGoodsSkuTextAttr($value, $data)
{
$arr = $this->attrFormatComma($value, $data, 'goods_sku_text', true);
return $arr ? array_values(array_filter($arr)) : $arr;
}
public function activitySkuPrice()
{
return $this->hasOne(ActivitySkuPriceModel::class, 'goods_sku_price_id', 'id');
}
public function scoreSkuPrice()
{
return $this->hasOne(ScoreSkuPrice::class, 'goods_sku_price_id', 'id');
}
}