Module: Redmine::Export::PDF

Includes:
ActionView::Helpers::NumberHelper, ActionView::Helpers::TextHelper
Included in:
GanttsController, IssuesController
Defined in:
lib/redmine/export/pdf.rb

Defined Under Namespace

Classes: IFPDF

Instance Method Summary collapse

Instance Method Details

#issue_to_pdf(issue) ⇒ Object

Returns a PDF string of a single issue



191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
# File 'lib/redmine/export/pdf.rb', line 191

def issue_to_pdf(issue)
  pdf = IFPDF.new(current_language)
  pdf.SetTitle("#{issue.project} - ##{issue.tracker} #{issue.id}")
  pdf.AliasNbPages
  pdf.footer_date = format_date(Date.today)
  pdf.AddPage
  
  pdf.SetFontStyle('B',11)    
  pdf.Cell(190,10, "#{issue.project} - #{issue.tracker} # #{issue.id}: #{issue.subject}")
  pdf.Ln
  
  y0 = pdf.GetY
  
  pdf.SetFontStyle('B',9)
  pdf.Cell(35,5, l(:field_status) + ":","LT")
  pdf.SetFontStyle('',9)
  pdf.Cell(60,5, issue.status.to_s,"RT")
  pdf.SetFontStyle('B',9)
  pdf.Cell(35,5, l(:field_priority) + ":","LT")
  pdf.SetFontStyle('',9)
  pdf.Cell(60,5, issue.priority.to_s,"RT")        
  pdf.Ln
  
  pdf.SetFontStyle('B',9)
  pdf.Cell(35,5, l(:field_author) + ":","L")
  pdf.SetFontStyle('',9)
  pdf.Cell(60,5, issue.author.to_s,"R")
  pdf.SetFontStyle('B',9)
  pdf.Cell(35,5, l(:field_category) + ":","L")
  pdf.SetFontStyle('',9)
  pdf.Cell(60,5, issue.category.to_s,"R")
  pdf.Ln   
  
  pdf.SetFontStyle('B',9)
  pdf.Cell(35,5, l(:field_created_on) + ":","L")
  pdf.SetFontStyle('',9)
  pdf.Cell(60,5, format_date(issue.created_on),"R")
  pdf.SetFontStyle('B',9)
  pdf.Cell(35,5, l(:field_assigned_to) + ":","L")
  pdf.SetFontStyle('',9)
  pdf.Cell(60,5, issue.assigned_to.to_s,"R")
  pdf.Ln
  
  pdf.SetFontStyle('B',9)
  pdf.Cell(35,5, l(:field_updated_on) + ":","LB")
  pdf.SetFontStyle('',9)
  pdf.Cell(60,5, format_date(issue.updated_on),"RB")
  pdf.SetFontStyle('B',9)
  pdf.Cell(35,5, l(:field_due_date) + ":","LB")
  pdf.SetFontStyle('',9)
  pdf.Cell(60,5, format_date(issue.due_date),"RB")
  pdf.Ln
  
  for custom_value in issue.custom_field_values
    pdf.SetFontStyle('B',9)
    pdf.Cell(35,5, custom_value.custom_field.name + ":","L")
    pdf.SetFontStyle('',9)
    pdf.MultiCell(155,5, (show_value custom_value),"R")
  end
  
  pdf.SetFontStyle('B',9)
  pdf.Cell(35,5, l(:field_subject) + ":","LTB")
  pdf.SetFontStyle('',9)
  pdf.Cell(155,5, issue.subject,"RTB")
  pdf.Ln    
  
  pdf.SetFontStyle('B',9)
  pdf.Cell(35,5, l(:field_description) + ":")
  pdf.SetFontStyle('',9)
  pdf.MultiCell(155,5, issue.description.to_s,"BR")
  
  pdf.Line(pdf.GetX, y0, pdf.GetX, pdf.GetY)
  pdf.Line(pdf.GetX, pdf.GetY, 170, pdf.GetY)
  pdf.Ln
  
  if issue.changesets.any? && User.current.allowed_to?(:view_changesets, issue.project)
    pdf.SetFontStyle('B',9)
    pdf.Cell(190,5, l(:label_associated_revisions), "B")
    pdf.Ln
    for changeset in issue.changesets
      pdf.SetFontStyle('B',8)
      pdf.Cell(190,5, format_time(changeset.committed_on) + " - " + changeset.author.to_s)
      pdf.Ln
      unless changeset.comments.blank?
        pdf.SetFontStyle('',8)
        pdf.MultiCell(190,5, changeset.comments.to_s)
      end   
      pdf.Ln
    end
  end
  
  pdf.SetFontStyle('B',9)
  pdf.Cell(190,5, l(:label_history), "B")
  pdf.Ln  
  for journal in issue.journals.find(:all, :include => [:user, :details], :order => "#{Journal.table_name}.created_on ASC")
    pdf.SetFontStyle('B',8)
    pdf.Cell(190,5, format_time(journal.created_on) + " - " + journal.user.name)
    pdf.Ln
    pdf.SetFontStyle('I',8)
    for detail in journal.details
      pdf.Cell(190,5, "- " + show_detail(detail, true))
      pdf.Ln
    end
    if journal.notes?
      pdf.SetFontStyle('',8)
      pdf.MultiCell(190,5, journal.notes.to_s)
    end   
    pdf.Ln
  end
  
  if issue.attachments.any?
    pdf.SetFontStyle('B',9)
    pdf.Cell(190,5, l(:label_attachment_plural), "B")
    pdf.Ln
    for attachment in issue.attachments
      pdf.SetFontStyle('',8)
      pdf.Cell(80,5, attachment.filename)
      pdf.Cell(20,5, number_to_human_size(attachment.filesize),0,0,"R")
      pdf.Cell(25,5, format_date(attachment.created_on),0,0,"R")
      pdf.Cell(65,5, attachment.author.name,0,0,"R")
      pdf.Ln
    end
  end
  pdf.Output
end

#issues_to_pdf(issues, project, query) ⇒ Object

Returns a PDF string of a list of issues



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# File 'lib/redmine/export/pdf.rb', line 120

def issues_to_pdf(issues, project, query)
  pdf = IFPDF.new(current_language)
  title = query.new_record? ? l(:label_issue_plural) : query.name
  title = "#{project} - #{title}" if project
  pdf.SetTitle(title)
  pdf.AliasNbPages
  pdf.footer_date = format_date(Date.today)
  pdf.AddPage("L")
  
  row_height = 6
  col_width = []
  unless query.columns.empty?
    col_width = query.columns.collect {|column| column.name == :subject ? 4.0 : 1.0 }
    ratio = 262.0 / col_width.inject(0) {|s,w| s += w}
    col_width = col_width.collect {|w| w * ratio}
  end
  
  # title
  pdf.SetFontStyle('B',11)    
  pdf.Cell(190,10, title)
  pdf.Ln
  
  # headers
  pdf.SetFontStyle('B',8)
  pdf.SetFillColor(230, 230, 230)
  pdf.Cell(15, row_height, "#", 1, 0, 'L', 1)
  query.columns.each_with_index do |column, i|
    pdf.Cell(col_width[i], row_height, column.caption, 1, 0, 'L', 1)
  end
  pdf.Ln
  
  # rows
  pdf.SetFontStyle('',8)
  pdf.SetFillColor(255, 255, 255)
  previous_group = false
  issues.each do |issue|
    if query.grouped? && (group = query.group_by_column.value(issue)) != previous_group
      pdf.SetFontStyle('B',9)
      pdf.Cell(277, row_height, 
        (group.blank? ? 'None' : group.to_s) + " (#{query.issue_count_by_group[group]})",
        1, 1, 'L')
      pdf.SetFontStyle('',8)
      previous_group = group
    end
    pdf.Cell(15, row_height, issue.id.to_s, 1, 0, 'L', 1)
    query.columns.each_with_index do |column, i|
      s = if column.is_a?(QueryCustomFieldColumn)
        cv = issue.custom_values.detect {|v| v.custom_field_id == column.custom_field.id}
        show_value(cv)
      else
        value = issue.send(column.name)
        if value.is_a?(Date)
          format_date(value)
        elsif value.is_a?(Time)
          format_time(value)
        else
          value
        end
      end
      pdf.Cell(col_width[i], row_height, s.to_s, 1, 0, 'L', 1)
    end
    pdf.Ln
  end
  if issues.size == Setting.issues_export_limit.to_i
    pdf.SetFontStyle('B',10)
    pdf.Cell(0, row_height, '...')
  end
  pdf.Output
end