public function init()
 {
     $this->name = \Yii::t('skeeks/shop/app', 'Discount goods');
     $this->modelShowAttribute = "id";
     $this->modelClassName = ShopDiscount::className();
     parent::init();
 }
 public function init()
 {
     $this->name = \skeeks\cms\shop\Module::t('app', 'Cumulative discounts');
     $this->modelShowAttribute = "id";
     $this->modelClassName = ShopDiscount::className();
     parent::init();
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getDiscount()
 {
     return $this->hasOne(ShopDiscount::className(), ['id' => 'discount_id']);
 }