@@ -452,12 +452,15 module Redmine | |||||
452 | pdf.SetFontStyle('B',9) |
|
452 | pdf.SetFontStyle('B',9) | |
453 | pdf.RDMCell(190,5, l(:label_history), "B") |
|
453 | pdf.RDMCell(190,5, l(:label_history), "B") | |
454 | pdf.Ln |
|
454 | pdf.Ln | |
|
455 | indice = 0 | |||
455 | for journal in issue.journals.find( |
|
456 | for journal in issue.journals.find( | |
456 | :all, :include => [:user, :details], |
|
457 | :all, :include => [:user, :details], | |
457 | :order => "#{Journal.table_name}.created_on ASC") |
|
458 | :order => "#{Journal.table_name}.created_on ASC") | |
|
459 | indice = indice + 1 | |||
458 | pdf.SetFontStyle('B',8) |
|
460 | pdf.SetFontStyle('B',8) | |
459 | pdf.RDMCell(190,5, |
|
461 | pdf.RDMCell(190,5, | |
460 |
format_time(journal.created_on) + " - " + |
|
462 | format_time(journal.created_on) + " - " + | |
|
463 | journal.user.name + " #" + indice.to_s ) | |||
461 | pdf.Ln |
|
464 | pdf.Ln | |
462 | pdf.SetFontStyle('I',8) |
|
465 | pdf.SetFontStyle('I',8) | |
463 | for detail in journal.details |
|
466 | for detail in journal.details |
General Comments 0
You need to be logged in to leave comments.
Login now