| getAttributeLabel('start')) ?> |
|
getAttributeLabel('end')) ?> |
|
| getAttributeLabel('id_account')) ?> |
id_account) ){
echo"Mind" ;
}else{
$account = Account::findOne($searchModel->id_account) ;
if ( $account != null ){
echo $account->name;
}
}?> |
getAttributeLabel('id_user')) ?> |
id_user) ){
echo"Mind" ;
}else{
$user = User::findOne($searchModel->id_user) ;
if ( $user != null ){
echo $user->username;
}
}?> |
| getAttributeLabel('category')) ?> |
category) ){
echo"Mind" ;
}else{
$category = ProductCategory::findOne($searchModel->category) ;
if ( $category != null ){
echo $category->name;
}
}?> |
getAttributeLabel('id_product')) ?> |
id_product) ){
echo"Mind" ;
}else{
$product = Product::findOne($searchModel->id_product) ;
if ( $product != null ){
echo $product->name;
}
}?> |
| getAttributeLabel('status')) ?> |
status) ){
echo"Mind" ;
}else{
$statuses = Transfer::statuses();
$status = "";
if (array_key_exists($searchModel->status, $statuses) ){
echo $statuses[$searchModel->status];
}
}?> |