簡體   English   中英

具有自定義值的CActiveDataProvider

[英]CActiveDataProvider with custom value

在我的Yii項目中,我需要通過一些自定義值來搜索和排序數據。 我有'users'表,我需要每個用戶實例都有month_profit屬性,該屬性應該結合SQL數據+我自己的大量計算。 目前我在我的用戶模型中:

public $month_profit;

public function search($pageSize = 10, $defaultOrder = '`t`.`reg_date` DESC')
{
    $criteria = new CDbCriteria;
    $criteria->with = array('money');
    $requests_table = Requests::model()->tableName();
    $requests_count_sql = "(SELECT COUNT(*) FROM $requests_table rt WHERE rt.partner_id = t.id) ";

    $referrals_table = Referrals::model()->tableName();
    $referrals_count_sql = "(SELECT COUNT(*) FROM $referrals_table reft WHERE reft.user_id = t.id) ";
    $referrals_payed_sql = "(SELECT COUNT(*) FROM $referrals_table reft WHERE reft.user_id = t.id AND reft.status = 'Оплачено') ";
    //$month profit_sql = ???;

    $criteria->select = array(
        '*',
        $requests_count_sql . "as requests_count",
        $referrals_count_sql . "as referrals_count",
        $referrals_payed_sql . "as referrals_payed_count",
        $month_profit_sql . "as month_profit",
    );

    $criteria->compare($requests_count_sql, $this->requests_count);
    $criteria->compare($referrals_count_sql, $this->referrals_count);
    $criteria->compare($referrals_payed_sql, $this->referrals_payed_count);
    $criteria->compare($month_profit_sql, $this->month_profit);

    $criteria->compare('t.id', $this->id);
    $criteria->compare('t.reg_date', $this->reg_date, true);
    $criteria->compare('username', $this->username, true);
    $criteria->compare('password', $this->password, true);
    $criteria->compare('site', $this->site, true);
    $criteria->compare('status', $this->status, true);

    return new CActiveDataProvider(get_class($this), array(
        'criteria' => $criteria,
        'pagination' => array( 'pageSize' => $pageSize ),
        'sort' => array(
            'defaultOrder' => $defaultOrder,
            'attributes' => array(
                'id' => array(
                    'asc' => '`t`.`id` ASC',
                    'desc' => '`t`.`id` DESC',
                ),
                'email' => array(
                    'asc' => '`t`.`email` ASC',
                    'desc' => '`t`.`email` DESC',
                ),
                'requests_count' => array(
                    'asc' => 'requests_count ASC',
                    'desc' => 'requests_count DESC',
                ),
                'referrals_count' => array(
                    'asc' => 'referrals_count ASC',
                    'desc' => 'referrals_count DESC',
                ),
                'referrals_payed_count' => array(
                    'asc' => 'referrals_payed_count ASC',
                    'desc' => 'referrals_payed_count DESC',
                ),
                'money' => array(
                    'asc' => 'money.profit',
                    'desc' => 'money.profit DESC',
                ),
                'fullProfit' => array(
                    'asc' => 'money.full_profit',
                    'desc' => 'money.full_profit DESC',
                ),
                '*',
            ),
        )
    ));
}

例如,我的用戶模型中有關系:

public function relations()
{
    return array(
        'clients' => array( self::HAS_MANY, 'Referrals', 'user_id'),

假設我的month_profit將是相同的:過去30天內注冊的用戶clients數量* 150.我需要以某種方式將此數據傳遞給search()並創建CDbCriteria以按month_profit分類對用戶進行排序。 這是真的嗎? :)我應該創建另一個函數來計算所有內容,然后傳遞給search() 到目前為止,我的所有嘗試都是失敗的。

基於本指南,我想你需要以下內容http://www.yiiframework.com/wiki/319/searching-and-sorting-by-count-of-related-items-in-cgridview

首先在User模型的關系中進行統計查詢:

'month_profit' => array(self::STAT, 'User', 'id', 'select'=>'COUNT(*) * 150', 'condition'=>'DATE_SUB(CURDATE(), INTERVAL 30 DAY) <= reg_date'),

然后在規則的搜索方案中將“month_profit”屬性標記為安全。

public function rules() {
    return array(

        ...

        array('username, ... , month_profit', 'safe', 'on' => 'search' ),   
    );
}

在User search()方法中添加所需的所有內容:

$user_table = User::model()->tableName();
$month_profit_sql = "(SELECT COUNT(*) FROM user_table WHERE DATE_SUB(CURDATE(), INTERVAL 30 DAY) <= reg_date)";

$criteria->select = array(
    '*',
    $requests_count_sql . "as requests_count",
    $referrals_count_sql . "as referrals_count",
    $referrals_payed_sql . "as referrals_payed_count",
    $month_profit_sql . "as month_profit",
);

...
$criteria->compare($month_profit_sql, $this->month_profit);

return new CActiveDataProvider(get_class($this), array(
    'criteria' => $criteria,
    'pagination' => array( 'pageSize' => $pageSize ),
    'sort' => array(
        'defaultOrder' => $defaultOrder,
        'attributes' => array(
            'id' => array(
                'asc' => '`t`.`id` ASC',
                'desc' => '`t`.`id` DESC',
            ),

            ...

            'month_profit' => array(
                'asc' => 'month_profit ASC',
                'desc' => 'month_profit DESC',
            ),

            '*',
        ),
    )
));

最后,修改你的網格:

$this->widget('zii.widgets.grid.CGridView', array(
    'dataProvider' => $model->search(),
    'filter' => $model,
    'columns' => array(
        'username',

        ... ,

        'month_profit',
        array(
            'class'=>'CButtonColumn',
        ),
    ),
));

如果有效,請告訴我。

編輯如果沒有“工作”嘗試沒有統計查詢。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM