Commit ea4aad254dfc28fa38f4095515043130c337820f

Authored by Administrator
1 parent 00a6f595

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,13 +63,13 @@ class MarginsGroupsSearch extends MarginsGroups
63 63
64 $query->andFilterWhere([ 64 $query->andFilterWhere([
65 'id' => $this->id, 65 'id' => $this->id,
66 - 'w_margins_groups.koef' => $this->koef,  
67 'timestamp' => $this->timestamp, 66 'timestamp' => $this->timestamp,
68 ]); 67 ]);
69 68
70 $query->andFilterWhere(['like', 'group', $this->group]); 69 $query->andFilterWhere(['like', 'group', $this->group]);
71 $query->andFilterWhere(['like', Importers::tableName().'.name', $this->importer_id]); 70 $query->andFilterWhere(['like', Importers::tableName().'.name', $this->importer_id]);
72 $query->andFilterWhere(['like', Margins::tableName().'.name', $this->margin_id]); 71 $query->andFilterWhere(['like', Margins::tableName().'.name', $this->margin_id]);
  72 + $query->andFilterWhere(['like', MarginsGroups::tableName().'.koef', $this->koef]);
73 73
74 return $dataProvider; 74 return $dataProvider;
75 } 75 }