Add the not_brouillon scope on Dossier
This commit is contained in:
parent
a2693c2d77
commit
f2fe06e86f
1 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,6 @@ class Dossier < ActiveRecord::Base
|
||||||
EN_INSTRUCTION = %w(received)
|
EN_INSTRUCTION = %w(received)
|
||||||
A_INSTRUIRE = %w(received)
|
A_INSTRUIRE = %w(received)
|
||||||
TERMINE = %w(closed refused without_continuation)
|
TERMINE = %w(closed refused without_continuation)
|
||||||
ALL_STATE = %w(initiated updated replied received closed refused without_continuation)
|
|
||||||
|
|
||||||
def unreaded_notifications
|
def unreaded_notifications
|
||||||
@unreaded_notif ||= notifications.where(already_read: false)
|
@unreaded_notif ||= notifications.where(already_read: false)
|
||||||
|
@ -160,7 +159,7 @@ class Dossier < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.all_state order = 'ASC'
|
def self.all_state order = 'ASC'
|
||||||
where(state: ALL_STATE, archived: false).order("updated_at #{order}")
|
not_brouillon.where(archived: false).order("updated_at #{order}")
|
||||||
end
|
end
|
||||||
|
|
||||||
def brouillon?
|
def brouillon?
|
||||||
|
@ -168,6 +167,7 @@ class Dossier < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
scope :brouillon, -> { where(state: BROUILLON) }
|
scope :brouillon, -> { where(state: BROUILLON) }
|
||||||
|
scope :not_brouillon, -> { where.not(state: BROUILLON) }
|
||||||
|
|
||||||
scope :order_by_updated_at, -> (order = :desc) { order(updated_at: order) }
|
scope :order_by_updated_at, -> (order = :desc) { order(updated_at: order) }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue