update order queue printer

This commit is contained in:
Aung Myo
2017-06-29 10:52:12 +06:30
parent 173d824c27
commit 557ad06600
5 changed files with 34 additions and 31 deletions

View File

@@ -31,10 +31,6 @@ class ReceiptBillPdf < Prawn::Document
delimiter = ""
end
puts "hhhhhhhhhhh"
puts delimiter
puts printer_settings.precision
header( shop_details)
stroke_horizontal_rule
@@ -143,7 +139,7 @@ class ReceiptBillPdf < Prawn::Document
pad_top(15) {
text_box "#{product_name}", :at =>[0,y_position], :width => self.item_width, :height =>self.item_height, :size => self.item_font_size, :overflow => :shrink_to_fix
text_box "%.#{precision}f" % price, :at =>[self.item_width,y_position], :width => self.price_width, :height =>self.item_height, :size => self.item_font_size, :align => :right, :overflow => :shrink_to_fix
text_box "#{number_with_precision(price, :precision => precision.to_i, :delimiter => delimiter)}", :at =>[self.item_width,y_position], :width => self.price_width, :height =>self.item_height, :size => self.item_font_size, :align => :right, :overflow => :shrink_to_fix
text_box "#{qty}", :at =>[item_name_width,y_position], :width => self.qty_width, :height =>self.item_height, :size => self.item_font_size, :align => :center, :overflow => :shrink_to_fix
text_box "#{number_with_precision(total_price, :precision => precision.to_i, :delimiter => delimiter)}", :at =>[(item_name_width+4),y_position], :width =>self.total_width+3, :height =>self.item_height, :size => self.item_font_size, :align => :right, :overflow => :shrink_to_fix
}
@@ -280,7 +276,7 @@ class ReceiptBillPdf < Prawn::Document
end
end
end
if member_info["status"] == true
if member_info["status"] == true && member_info["data"].present?
balance = 0
member_info["data"].each do |res|