模板中的任务完成通知警报

时间:2013-04-18 11:26:49

标签: php

if  ($this->id == NULL AND ($this->status_id == '62' OR $this->status_id = '63'))
    {
        $notify_url = Route::get('applications')->uri(array('controller' => 'calibration', 'action' => 'details', 'id' => $this->id));

        Notify::create(Kohana::$config->load('tip.top'), 'Calibration',
            $this->id.': '.$this->description,

            Route::get('applications')->uri(array('controller' => 'calibration', 'action' => 'details', 'id' => $this->id))

        );
    }

您好,

我有这个代码,当记录的ID不为NULL,记录的状态不是“进行中”且记录的状态为“完成”时,它应该向我发送通知,它应该只发送那我就是通知。

它向我发送完全相反的通知。当我刷新空白记录时当我添加记录时,当状态为“进行中”时,它会发送通知

任何帮助都会受到赞赏。

1 个答案:

答案 0 :(得分:1)

你的条件错了:

$ this-> id == NULL =>当IS为null并且你说“..当记录的ID 不是 NULL ...”

根据您的指示,您的条件是:

if  ($this->id != NULL AND ($this->status_id == '62' OR $this->status_id = '63'))

问候。