Sha256: 70035d140792c9149df299252b3380a14a105eddace6ada26c98577c3fd33d80
Contents?: true
Size: 1.61 KB
Versions: 16
Compression:
Stored size: 1.61 KB
Contents
# frozen_string_literal: true module Decidim module Budgets module Admin # This class holds a Form to create/update projects from Decidim's admin panel. class ProjectForm < Decidim::Form include TranslatableAttributes include TranslationsHelper translatable_attribute :title, String translatable_attribute :description, String attribute :budget, Integer attribute :decidim_scope_id, Integer attribute :decidim_category_id, Integer attribute :proposal_ids, Array[Integer] validates :title, translatable_presence: true validates :description, translatable_presence: true validates :budget, presence: true, numericality: { greater_than: 0 } validates :scope, presence: true, if: ->(form) { form.decidim_scope_id.present? } validates :category, presence: true, if: ->(form) { form.decidim_category_id.present? } def map_model(model) self.proposal_ids = model.linked_resources(:proposals, "included_proposals").pluck(:id) end def process_scope current_feature.participatory_process.scope end def proposals @proposals ||= Decidim.find_resource_manifest(:proposals).try(:resource_scope, context.current_feature)&.order(title: :asc)&.pluck(:title, :id) end def scope @scope ||= process_scope || current_organization.scopes.where(id: decidim_scope_id).first end def category @category ||= context.current_feature.categories.where(id: decidim_category_id).first end end end end end
Version data entries
16 entries across 16 versions & 2 rubygems