Module: Dunlop::WorkflowInstanceModel

Extended by:
ActiveSupport::Concern
Included in:
WorkflowInstance
Defined in:
app/models/dunlop/workflow_instance_model.rb

Defined Under Namespace

Modules: ArchivedHandling, CategorizationAndResetHandling, ClassMethods, StateMachineHandling, WorkflowStepHandling

Instance Method Summary collapse

Instance Method Details

#is_planned?Boolean

Returns:

  • (Boolean)


16
17
18
# File 'app/models/dunlop/workflow_instance_model.rb', line 16

def is_planned?
  respond_to?(:plan_date) ? plan_date.present? : false
end