gantt: code layout cleanup line_for_issue method of lib/redmine/helpers/gantt.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10346 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
ad71bffe34
commit
0cd08ed08c
|
@ -353,10 +353,13 @@ module Redmine
|
|||
# Skip issues that don't have a due_before (due_date or version's due_date)
|
||||
if issue.is_a?(Issue) && issue.due_before
|
||||
coords = coordinates(issue.start_date, issue.due_before, issue.done_ratio, options[:zoom])
|
||||
label = "#{ issue.status.name } #{ issue.done_ratio }%"
|
||||
label = "#{issue.status.name} #{issue.done_ratio}%"
|
||||
case options[:format]
|
||||
when :html
|
||||
html_task(options, coords, :css => "task " + (issue.leaf? ? 'leaf' : 'parent'), :label => label, :issue => issue, :markers => !issue.leaf?)
|
||||
html_task(options, coords,
|
||||
:css => "task " + (issue.leaf? ? 'leaf' : 'parent'),
|
||||
:label => label, :issue => issue,
|
||||
:markers => !issue.leaf?)
|
||||
when :image
|
||||
image_task(options, coords, :label => label)
|
||||
when :pdf
|
||||
|
|
Loading…
Reference in New Issue