76 lines
2.0 KiB
PHP
76 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace backend\models;
|
|
|
|
use Yii;
|
|
use yii\base\Model;
|
|
use yii\data\ActiveDataProvider;
|
|
use common\models\InventoryItem;
|
|
|
|
/**
|
|
* InventoryItemSearch represents the model behind the search form about `common\models\InventoryItem`.
|
|
*/
|
|
class InventoryItemSearch extends InventoryItem
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
[['id_inventory_item', 'id_inventory', 'count_in', 'count_sold', 'count', 'type', 'id_product', 'id_inventory_group', 'id_user'], 'integer'],
|
|
[['last_inventroy_at', 'created_at', 'updated_at'], 'safe'],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function scenarios()
|
|
{
|
|
// bypass scenarios() implementation in the parent class
|
|
return Model::scenarios();
|
|
}
|
|
|
|
/**
|
|
* Creates data provider instance with search query applied
|
|
*
|
|
* @param array $params
|
|
*
|
|
* @return ActiveDataProvider
|
|
*/
|
|
public function search($params)
|
|
{
|
|
$query = InventoryItem::find();
|
|
|
|
$dataProvider = new ActiveDataProvider([
|
|
'query' => $query,
|
|
]);
|
|
|
|
$this->load($params);
|
|
|
|
if (!$this->validate()) {
|
|
// uncomment the following line if you do not want to return any records when validation fails
|
|
// $query->where('0=1');
|
|
return $dataProvider;
|
|
}
|
|
|
|
$query->andFilterWhere([
|
|
'id_inventory_item' => $this->id_inventory_item,
|
|
'id_inventory' => $this->id_inventory,
|
|
'count_in' => $this->count_in,
|
|
'count_sold' => $this->count_sold,
|
|
'count' => $this->count,
|
|
'type' => $this->type,
|
|
'id_product' => $this->id_product,
|
|
'id_inventory_group' => $this->id_inventory_group,
|
|
'id_user' => $this->id_user,
|
|
'last_inventroy_at' => $this->last_inventroy_at,
|
|
'created_at' => $this->created_at,
|
|
'updated_at' => $this->updated_at,
|
|
]);
|
|
|
|
return $dataProvider;
|
|
}
|
|
}
|