gantt: code layout cleanup to_pdf method of lib/redmine/helpers/gantt.rb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10357 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-09-11 02:16:03 +00:00
parent 3f7a7d9b14
commit 69d0660760

View File

@ -540,7 +540,7 @@ module Redmine
pdf.SetY(y_start + header_height) pdf.SetY(y_start + header_height)
pdf.SetX(left) pdf.SetX(left)
pdf.RDMCell(width + 1, height, "", "LTR") pdf.RDMCell(width + 1, height, "", "LTR")
left = left + width+1 left = left + width + 1
end end
while week_f <= self.date_to while week_f <= self.date_to
width = (week_f + 6 <= self.date_to) ? 7 * zoom : (self.date_to - week_f + 1) * zoom width = (week_f + 6 <= self.date_to) ? 7 * zoom : (self.date_to - week_f + 1) * zoom
@ -548,7 +548,7 @@ module Redmine
pdf.SetX(left) pdf.SetX(left)
pdf.RDMCell(width, height, (width >= 5 ? week_f.cweek.to_s : ""), "LTR", 0, "C") pdf.RDMCell(width, height, (width >= 5 ? week_f.cweek.to_s : ""), "LTR", 0, "C")
left = left + width left = left + width
week_f = week_f+7 week_f = week_f + 7
end end
end end
# Days headers # Days headers