Commit 207522e84cd5a2addc4641dd4ee5d7092c619cce

Authored by Administrator
1 parent f7445e2d

first commit from local

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
common/models/MarginsGroupsSearch.php
... ... @@ -63,13 +63,13 @@ class MarginsGroupsSearch extends MarginsGroups
63 63  
64 64 $query->andFilterWhere([
65 65 'id' => $this->id,
66   - 'w_margins_groups.koef' => $this->koef,
67 66 'timestamp' => $this->timestamp,
68 67 ]);
69 68  
70 69 $query->andFilterWhere(['like', 'group', $this->group]);
71 70 $query->andFilterWhere(['like', Importers::tableName().'.name', $this->importer_id]);
72 71 $query->andFilterWhere(['like', Margins::tableName().'.name', $this->margin_id]);
  72 + $query->andFilterWhere(['like', MarginsGroups::tableName().'.koef', $this->koef]);
73 73  
74 74 return $dataProvider;
75 75 }
... ...