show incl exec in receipt bill

This commit is contained in:
phyusin
2018-05-25 14:46:40 +06:30
parent 5feea91584
commit 590b67abdf
3 changed files with 13 additions and 3 deletions

View File

@@ -290,12 +290,17 @@ class ReceiptBillPdf < Prawn::Document
end
if sale_data.sale_taxes.length > 0
incl_tax = ""
if sale_data.tax_type == "inculsive"
incl_tax = "Incl."
end
sale_data.sale_taxes.each do |st|
move_down line_move
y_position = cursor
bounding_box([0,y_position], :width =>self.item_description_width, :height => self.item_height) do
text "#{ st.tax_name } ( #{ st.tax_rate.to_i }%)", :size => self.item_font_size,:align => :left
text "#{ st.tax_name } (#{incl_tax} #{ st.tax_rate.to_i }%)", :size => self.item_font_size,:align => :left
end
bounding_box([self.item_description_width,y_position], :width =>self.label_width) do
text "#{number_with_precision(st.tax_payable_amount, :precision => precision.to_i, :delimiter => delimiter)}" , :size => self.item_font_size,:align => :right