Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code to build PDF document with Prawn:

items = [["PERIOD","EMPLOYEE", "EMPLOYEE NAME", "HOURS", "FTES"]]

items += @mandates.each.map do |mandate|

[
    mandate[:fte_period_end_date],
    mandate[:fte_employee_id],
    strname,
    mandate[:fte_sum_of_hours],
    mandate[:fte_sum_of_ftes],
]
end

@mandates is sorted by fte_employee_id and fte_by period_end_date

I want to insert totals lines per employe for fte_sum_of_hours and fte_sum_of_ftes when pass throw next employee.

What command permits me to insert these lines with Prawn?

share|improve this question

1 Answer

Pass them in the array that you are displaying the total from - in Ruby, calculate for each section of elements, the total. Don't do the work in Prawn (it's not Excel).

data = [["product 1: ","$10.00"],["product 2: ", "$20.00"],["Subtotal:","$30.00]]

For example. Then you can format the table with consideration to row 3, the subtotal, with cell styles.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.