Project

General

Profile

Actions

Defect #19731

closed

Issue validation fails if % done field is deactivated

Added by Dominik Brumm almost 9 years ago. Updated almost 9 years ago.

Status:
Closed
Priority:
Normal
Category:
Issues
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed
Affected version:

Description

Creating a new issue fails with a validation message "% done is not valid" when then field has been removed for the tracker.

Temporarely solved the problem by changing issue.rb:

  def clear_disabled_fields
    if tracker
      tracker.disabled_core_fields.each do |attribute|
        send "#{attribute}=", nil unless attribute == "done_ratio" 
      end
    end
  end
Environment:
  Redmine version                3.0.2.stable.14229
  Ruby version                   1.9.3-p484 (2013-11-22) [x86_64-linux]
  Rails version                  4.2.1
  Environment                    production
  Database adapter               Mysql2
SCM:
  Subversion                     1.8.8
  Git                            1.9.1
  Filesystem
Redmine plugins:
  no plugin installed

Related issues

Related to Redmine - Defect #19777: Ticket update/create fails with "% Done is not included in the list" even when this field not enabledClosed

Actions
Actions #1

Updated by Toshi MARUYAMA almost 9 years ago

  • Description updated (diff)
Actions #2

Updated by Leonel Iturralde almost 9 years ago

Hi,
The done_ratio column is not null (mysql) in my database.
So, I change issue.rb this way

validates_inclusion_of :done_ratio, :in => 0..100, :if => Proc.new {|issue| issue.done_ratio=0 unless issue.disabled_core_fields.include?(:done_ratio); issue.disabled_core_fields.include?(:done_ratio)}

Hope this helps.

Actions #3

Updated by Chris Tyler almost 9 years ago

Where do you make the above edit? Does it need to be compiled?

Actions #4

Updated by Leonel Iturralde almost 9 years ago

Hi,
the change is done to the file
source:tags/3.0.2/app/models/issue.rb

My change is done on the line 71.
The change done by Dominik Brumm is on the line 1591

After changing that file, restart the server.

Actions #5

Updated by Go MAEDA almost 9 years ago

  • Related to Defect #19777: Ticket update/create fails with "% Done is not included in the list" even when this field not enabled added
Actions #6

Updated by Jean-Philippe Lang almost 9 years ago

  • Target version set to 3.0.3
Actions #7

Updated by Jean-Philippe Lang almost 9 years ago

  • Subject changed from Validation fails if % done field is deactivated to Issue validation fails if % done field is deactivated
  • Status changed from New to Resolved
  • Assignee set to Jean-Philippe Lang
  • Resolution set to Fixed

Fixed in r14241, thanks for pointing this out.

Actions #8

Updated by Jean-Philippe Lang almost 9 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF