]> source.dussan.org Git - redmine.git/commitdiff
Adds custom fields to documents (#7249).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 14 Feb 2015 10:44:59 +0000 (10:44 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 14 Feb 2015 10:44:59 +0000 (10:44 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@14004 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/documents_controller.rb
app/helpers/custom_fields_helper.rb
app/models/document.rb
app/models/document_custom_field.rb [new file with mode: 0644]
app/views/documents/_form.html.erb
app/views/documents/show.html.erb
lib/redmine/field_format.rb

index a90da410a525f2bf274d463b9526cb50931c1865..fef3a7d6eaebb8f252baf66e20293db1fe745cae 100644 (file)
@@ -24,6 +24,7 @@ class DocumentsController < ApplicationController
   before_filter :authorize
 
   helper :attachments
+  helper :custom_fields
 
   def index
     @sort_by = %w(category date title author).include?(params[:sort_by]) ? params[:sort_by] : 'category'
index c431d982769d919634bfd86362425a8ca4ff3388..e0f3fa7d2d9cf6be54dcc1deb144c31c606fa316 100644 (file)
@@ -28,6 +28,8 @@ module CustomFieldsHelper
      :label => :label_project_plural},
     {:name => 'VersionCustomField', :partial => 'custom_fields/index',
      :label => :label_version_plural},
+    {:name => 'DocumentCustomField', :partial => 'custom_fields/index',
+     :label => :label_document_plural},
     {:name => 'UserCustomField', :partial => 'custom_fields/index',
      :label => :label_user_plural},
     {:name => 'GroupCustomField', :partial => 'custom_fields/index',
index 29f9031fc896634ddc8a9afa95bf31a391d9d8d8..d6b96ac98d0e7f4f218ccd2535248bafc6d5d57f 100644 (file)
@@ -20,6 +20,7 @@ class Document < ActiveRecord::Base
   belongs_to :project
   belongs_to :category, :class_name => "DocumentCategory"
   acts_as_attachable :delete_permission => :delete_documents
+  acts_as_customizable
 
   acts_as_searchable :columns => ['title', "#{table_name}.description"],
                      :preload => :project
@@ -39,7 +40,7 @@ class Document < ActiveRecord::Base
     where(Project.allowed_to_condition(args.shift || User.current, :view_documents, *args))
   }
 
-  safe_attributes 'category_id', 'title', 'description'
+  safe_attributes 'category_id', 'title', 'description', 'custom_fields', 'custom_field_values'
 
   def visible?(user=User.current)
     !user.nil? && user.allowed_to?(:view_documents, project)
diff --git a/app/models/document_custom_field.rb b/app/models/document_custom_field.rb
new file mode 100644 (file)
index 0000000..3ea9d10
--- /dev/null
@@ -0,0 +1,22 @@
+# Redmine - project management software
+# Copyright (C) 2006-2015  Jean-Philippe Lang
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+
+class DocumentCustomField < CustomField
+  def type_name
+    :label_document_plural
+  end
+end
index 53d8fc3bbf55de8cd43edd94e0a74a7df3ae2f7f..bd3b7cd9fb5c788b3e80fde7cf73d5c992dde1a9 100644 (file)
@@ -4,6 +4,10 @@
 <p><%= f.select :category_id, DocumentCategory.active.collect {|c| [c.name, c.id]} %></p>
 <p><%= f.text_field :title, :required => true, :size => 60 %></p>
 <p><%= f.text_area :description, :cols => 60, :rows => 15, :class => 'wiki-edit' %></p>
+
+<% @document.custom_field_values.each do |value| %>
+  <p><%= custom_field_tag_with_label :document, value %></p>
+<% end %>
 </div>
 
 <%= wikitoolbar_for 'document_description' %>
index a8aea63daacc5960303ecf678f94de802cc2ef3b..8b1f0067b3511c266d79a3b2d7346a0e27a7f88a 100644 (file)
 
 <p><em><%=h @document.category.name %><br />
 <%= format_date @document.created_on %></em></p>
+
+<% if @document.custom_field_values.any? %>
+<ul>
+  <% render_custom_field_values(@document) do |custom_field, formatted| %>
+    <li><span class="label"><%= custom_field.name %>:</span> <%= formatted %></li>
+  <% end %>
+</ul>
+<% end %>
+
 <div class="wiki">
 <%= textilizable @document, :description, :attachments => @document.attachments %>
 </div>
index 68e59ffa58d9a869d9e35cf7c3f0c52f113fd8ff..8cb3bc45dc22295e1e7adb1c0fbf589f7e4d4a75 100644 (file)
@@ -592,7 +592,7 @@ module Redmine
     end
 
     class RecordList < List
-      self.customized_class_names = %w(Issue TimeEntry Version Project)
+      self.customized_class_names = %w(Issue TimeEntry Version Document Project)
 
       def cast_single_value(custom_field, value, customized=nil)
         target_class.find_by_id(value.to_i) if value.present?