Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Вопрос по модификациям #216

Closed
FajeSu opened this issue Sep 9, 2016 · 3 comments
Closed

Вопрос по модификациям #216

FajeSu opened this issue Sep 9, 2016 · 3 comments

Comments

@FajeSu
Copy link
Contributor

FajeSu commented Sep 9, 2016

Как правильно работать с модификациями продукта?

При добавлении новой модификации происходит ошибка отсутствия атрибута default_modification, нужно ли добавить это поле в таблицу {{product}} или это делается через параметры?
Ради эксперимента добавил поле...

Метод BModificationBehavior::getParentModel() отдает null, потому что геттер доходит до метода CActiveRecord::getRelated() и в строке 265 отдает null

$relation=$md->relations[$name];
if($this->getIsNewRecord() && !$refresh && ($relation instanceof CHasOneRelation || $relation instanceof CHasManyRelation))
  return $relation instanceof CHasOneRelation ? null : array();
@tatarinov
Copy link
Member

Для работы модификации поле default_modification не требуется. Код использующий default_modification попал в аргилу случайно. Он использовался для реализации специфической seo задачи, на одном проекте.

Из BModificationBehavior нужно удалить код:

    //to do: добавить параметр блокирующей отключение одного значения
    $this->owner->attachBehavior('radioToggleBehavior', array(
      'class' => 'RadioToggleBehavior',
      'conditionAttribute' => 'parent',
      'toggleAttribute' => 'default_modification'
    ));

    $this->owner->enableBehavior('radioToggleBehavior');

@FajeSu
Copy link
Contributor Author

FajeSu commented Sep 15, 2016

Хорошо, спасибо.

А что со вторым вопросом?
Это при создании модификации:
img-2016-09-15-12-31-50

@tatarinov
Copy link
Member

Обновите BModificationBehavior

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants