Sha256: 383ffaec019b70809ff65fa4dc14eeded733d712a4d2965545f0b63e0ca54379

Contents?: true

Size: 1.1 KB

Versions: 4

Compression:

Stored size: 1.1 KB

Contents

# Dashboard Stamp Payments
class EffectiveStampWizardsDatatable < Effective::Datatable
  datatable do
    order :created_at

    col :token, visible: false
    col :created_at, visible: false

    col(:submitted_at, label: 'Submitted on') do |resource|
      resource.submitted_at&.strftime('%F') || 'Incomplete'
    end

    col :owner, visible: false, search: :string
    col :status, visible: false
    col :orders, action: :show

    col(:issued_at, label: 'Issued on') do |resource|
      resource.stamp&.issued_at&.strftime('%F') || '-'
    end

    actions_col(actions: []) do |resource|
      if resource.draft?
        dropdown_link_to('Continue', effective_products.stamp_wizard_build_path(resource, resource.next_step), 'data-turbolinks' => false)
        dropdown_link_to('Delete', effective_products.stamp_wizard_path(resource), 'data-confirm': "Really delete #{resource}?", 'data-method': :delete)
      else
        dropdown_link_to('Show', effective_products.stamp_wizard_path(resource))
      end
    end

  end

  collection do
    EffectiveProducts.StampWizard.deep.where(owner: current_user)
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
effective_products-0.3.9 app/datatables/effective_stamp_wizards_datatable.rb
effective_products-0.3.8 app/datatables/effective_stamp_wizards_datatable.rb
effective_products-0.3.7 app/datatables/effective_stamp_wizards_datatable.rb
effective_products-0.3.6 app/datatables/effective_stamp_wizards_datatable.rb