Merge branch '178-fix-bug-with-rider-assignment' into 'master'
Fix check on rider assign to check for RIDER_ASSIGN status instead of ASSIGNED #178 Closes #178 See merge request jankstudio/resq!213
This commit is contained in:
commit
4b9853d477
1 changed files with 1 additions and 1 deletions
|
|
@ -736,7 +736,7 @@ class JobOrder
|
|||
|
||||
public function canAssign()
|
||||
{
|
||||
if ($this->status == JOStatus::ASSIGNED)
|
||||
if ($this->status == JOStatus::RIDER_ASSIGN)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue