| 12345678910111213141516171819202122232425 |
- <?php
- namespace addons\OperationCenter\common\models;
- use common\models\goods\Goods;
- /**
- * MallGoods class
- * @package addons\OperationCenter\common\models
- */
- class MallGoods extends Goods
- {
- /**
- * @return ActiveQueryInterface the relational query object.
- */
- public function getItemSetting()
- {
- return $this->hasOne(CommissionItemSetting::class, [
- 'item_id' => 'id',
- ])->andWhere(['item_type' => 'goods', 'status' => 1])->select([
- 'id', 'mall_id', 'is_partake', 'is_enable', 'item_id', 'item_type', 'settings', 'is_percent'
- ]);
- }
- }
|