transaction status downgrade

This commit is contained in:
glovetleong
2021-10-27 14:22:32 +08:00
parent beed76c407
commit 70f95f511d
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -157,6 +157,6 @@ class Transaction extends AbstractModel implements Documentable
*/
public function scopeTransferred(Builder $query)
{
return $query->whereIn('status', [ApprovalStatus::COMPLETED]);
return $query->whereIn('status', [ApprovalStatus::APPROVED]);
}
}