setRequest(); $mall = Mall::findOne($this->mall->id); \Yii::$app->setMall($mall); $goods = Goods::findOne($this->goods->id); if (strtotime($goods->sell_end_time) !== strtotime($this->sell_end_time)) { throw new \Exception('商品销售时间已被更改'); } $goods->status = 0; $goods->save(); } catch (\Exception $exception) { \Yii::warning('--商品自动下架' . $this->goods->id . '--'); \Yii::warning($exception); } } }