pdf: move note number to the head of line for single issue's PDF (#9720)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8099 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
5ca558f191
commit
62fb6e0f4b
|
@ -459,8 +459,9 @@ module Redmine
|
|||
indice = indice + 1
|
||||
pdf.SetFontStyle('B',8)
|
||||
pdf.RDMCell(190,5,
|
||||
format_time(journal.created_on) + " - " +
|
||||
journal.user.name + " #" + indice.to_s )
|
||||
"#" + indice.to_s +
|
||||
" - " + format_time(journal.created_on) +
|
||||
" - " + journal.user.name)
|
||||
pdf.Ln
|
||||
pdf.SetFontStyle('I',8)
|
||||
for detail in journal.details
|
||||
|
|
Loading…
Reference in New Issue