mirror of
https://github.com/redmine/redmine.git
synced 2026-03-27 23:00:50 +01:00
Merged r19592 from trunk to 4.0-stable (#23645).
git-svn-id: http://svn.redmine.org/redmine/branches/4.0-stable@19594 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -865,21 +865,24 @@ module Redmine
|
||||
height /= 2 if markers
|
||||
# Renders the task bar, with progress and late
|
||||
if coords[:bar_start] && coords[:bar_end]
|
||||
width = [1, coords[:bar_end] - coords[:bar_start]].max
|
||||
params[:pdf].SetY(params[:top] + 1.5)
|
||||
params[:pdf].SetX(params[:subject_width] + coords[:bar_start])
|
||||
params[:pdf].SetFillColor(200, 200, 200)
|
||||
params[:pdf].RDMCell(coords[:bar_end] - coords[:bar_start], height, "", 0, 0, "", 1)
|
||||
params[:pdf].RDMCell(width, height, "", 0, 0, "", 1)
|
||||
if coords[:bar_late_end]
|
||||
width = [1, coords[:bar_late_end] - coords[:bar_start]].max
|
||||
params[:pdf].SetY(params[:top] + 1.5)
|
||||
params[:pdf].SetX(params[:subject_width] + coords[:bar_start])
|
||||
params[:pdf].SetFillColor(255, 100, 100)
|
||||
params[:pdf].RDMCell(coords[:bar_late_end] - coords[:bar_start], height, "", 0, 0, "", 1)
|
||||
params[:pdf].RDMCell(width, height, "", 0, 0, "", 1)
|
||||
end
|
||||
if coords[:bar_progress_end]
|
||||
width = [1, coords[:bar_progress_end] - coords[:bar_start]].max
|
||||
params[:pdf].SetY(params[:top] + 1.5)
|
||||
params[:pdf].SetX(params[:subject_width] + coords[:bar_start])
|
||||
params[:pdf].SetFillColor(90, 200, 90)
|
||||
params[:pdf].RDMCell(coords[:bar_progress_end] - coords[:bar_start], height, "", 0, 0, "", 1)
|
||||
params[:pdf].RDMCell(width, height, "", 0, 0, "", 1)
|
||||
end
|
||||
end
|
||||
# Renders the markers
|
||||
|
||||
Reference in New Issue
Block a user