Created
September 24, 2009 17:33
-
-
Save c3mediagroup/192890 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pdf.text "Pacific Advisors Dashboard", :size => 24, :style => :bold | |
pdf.move_down(20) | |
pdf.text "Top Producers in Total Premium" | |
pdf.text "This Month (September 2009) Total Premium" | |
top_producers_premium_list = [] | |
@top_producers_premium.each_with_index do |i, idx| | |
top_producers_premium_list << [ | |
idx+1, | |
i.advisor.display_name, | |
number_to_currency(i.total, :precision => 0) | |
] | |
end | |
pdf.table top_producers_premium_list, :border_style => :grid, | |
:row_colors => ["FFFFFF","DDDDDD"], | |
:headers => ["Rank", "Producer", "Amount"], | |
:align => { 0 => :right, 1 => :left, 2 => :right } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment