douzhi1919 2012-07-26 04:15
浏览 25
已采纳

yii如何在另一个模型的BootDetailView中显示数据

Q: How can I show the BootDetailView like this.

Users

name : aa
company : test
department : dep1
section : sec1.1
team : team1.1.1

I've 2 tbls (department and user)

This is the department tbl structure

department
id | name      | p_id | company_id
1  | dep1      | 0    | 1
2  | dep2      | 0    | 1
3  | sec1.1    | 1    | 1
4  | sec2.1    | 2    | 1
5  | team1.1.1 | 3    | 1
6  | team1.1.2 | 3    | 1
7  | team2.1.1 | 4    | 1

this is the user tbl structure

user
id | name | company_id | team_id
1  | aa   | 1          | 5
2  | bb   | 1          | 5
3  | cc   | 1          | 7
4  | dd   | 1          | 6
5  | ee   | 1          | 6

I added relationship at user model

public function relations()
    {
        // NOTE: you may need to adjust the relation name and the related
        // class name for the relations automatically generated below.
        return array(
            'ranks' => array(self::BELONGS_TO, 'Rank', 'rank_id'),
            'companies' => array(self::BELONGS_TO, 'Company', 'company_id'),
            'departments' => array(self::BELONGS_TO, 'Department', 'team_id'),
        );
    }

this view (CGridView is using at index.php (view))

<?php $this->widget('bootstrap.widgets.BootDetailView', array(
            'data'=>$model,
            'attributes'=>array(
                //array('name'=>'id', 'label'=>'ID'),
                array('name'=>'login_name', 'label'=>'Name'),
                array('name'=>'first_name', 'label'=>'First Name'),
                array('name'=>'last_name', 'label'=>'last Name'),
                array('name'=>'email', 'label'=>'Email'),
                array('name'=>'created', 'label'=>'Created'),
                array('name'=>'ranks.name', 'label'=>'Rank'),
                array('name'=>'companies.name', 'label'=>'Company'),
                array('name'=>'departments.name', 'label'=>'Team'),
            ),
        )); ?>

This is Controller

public function actionView($id)
{
    $model = $this->loadModel($id);
    $sql = 'SELECT id, name FROM rank r WHERE r.id = '. $model->rank_id;
    $rank = Yii::app()->db->createCommand($sql)->queryAll();

    $sql = 'SELECT id, name FROM company c WHERE c.id = '. $model->company_id;
    $company = Yii::app()->db->createCommand($sql)->queryAll();         

    $dst = $this->getDST($model->team_id);

    $this->render('view',array(
        'model'=>$model,
        'rank'=>$rank[0]['name'],
        'company'=>$company[0]['name'],
        'department'=>$dst['department'],
        'section'=>$dst['section'],
        'team'=>$dst['team'],
    ));
}

public function getDST($team_id) // Getting the Department, Section and Team
{
    $records = Department::model()->find('id=:id', array(':id'=>$team_id));
    if($records->p_id == 0 ) {
    $dst['department'] = $model->team_id;
        $dst['section'] = NULL;
        $dst['team'] = NULL;
    } else {
        $records = Department::model()->find('id=:id', array(':id'=>$records->p_id));
        if($records->p_id == 0 ) {
            $dst['department'] = $records->id;
            $dst['section'] = $model->team_id;
            $dst['team'] = NULL;
        } else {
            $dst['section'] = $records->id;
            $dst['team'] = NULL;
            $records = Department::model()->find('id=:id', array(':id'=>$records->p_id));
            if($records->p_id == 0 ) {
                $dst['department'] = $records->id;
                $dst['team'] = $model->team_id;
            }
        }
    }   
    return $dst;
} 
  • 写回答

1条回答 默认 最新

  • dongyan5815 2012-07-26 05:20
    关注

    In Yii relation is simple:

    // User model
    public function relations()
    {
        return array(
            'rank' => array(self::BELONGS_TO, 'Rank', 'rank_id'),
            'company' => array(self::BELONGS_TO, 'Company', 'company_id'),
            'department' => array(self::BELONGS_TO, 'Department', 'team_id'),
        );
    } // User have only one rank, company and department
    
    // Department model
    public function relations()
    {
        return array(
            'parent'   => array(self::BELONGS_TO, 'Department', 'p_id'),
            'children' => array(self::HAS_MANY, 'Department', 'p_id'),
            'company'  => array(self::BELONGS_TO, 'Company', 'company_id'),
            'users'    => array(self::HAS_MANY, 'User', 'team_id'),
        );
    } 
    

    Because : class BootDetailView extends CDetailView
    It is enough:

    // usercontroller
    function actionView($id)
    {
        $this->render('view', array('model' => $this->loadModel($id));
        // or for optimize sql query
        $this->render('view', array('model' => User::model()->with(array('rank', 'company', 'department'))->findByPk($id));
    }
    
    // view.php
    $details = array(
             'login_name',
             'first_name',
             'last_name',
             'email',
             'rank.name',
             'company.name',
         );
    $departments = array();
    $d = $model->department;
    $departments[] = 'department.name';
    $s = 'parent.';
    while ($d->parent != null) {
        $departments[] = 'department.'.$s.'name';
        $s .= 'parent.';
        $d = $d->parent;
    }
    
    $this->widget('bootstrap.widgets.BootDetailView', array(
        'data'=>$model,
        'attributes'=> array_merge($details, $departments),
    )); 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计