This commit is contained in:
Myat Zin Wai Maw
2020-02-26 13:13:18 +06:30
parent a29b1551a0
commit 16d76749af
20 changed files with 52 additions and 53 deletions

View File

@@ -45,19 +45,19 @@ class ReceiptBillA5Pdf < Prawn::Document
if sale_data.orders[0].source =='app'
move_down 3
y_position = cursor
bounding_box([0,y_position], :width =>self.description_width + self.price_num_width) do
text "Mobile Order", :size => self.header_font_size,:align => :left
text "Mobile Order", :size => self.header_font_size,:align => :center, :style=>:bold
move_down 1
y_position = cursor
bounding_box([0,y_position], :width =>self.item_description_width, :height => self.item_height) do
text "#{sale_data.customer.contact_no}", :size => self.header_font_size,:align => :left
end
if !sale_data.bookings[0].dining_facility.nil?
bounding_box([0,y_position], :width =>self.description_width + self.price_num_width) do
text "#{ sale_data.bookings[0].dining_facility.type } - #{ sale_data.bookings[0].dining_facility.name }" , :size => self.header_font_size,:align => :right,:style=>:bold
bounding_box([self.item_description_width,y_position], :width =>self.label_width) do
text "#{ sale_data.bookings[0].dining_facility.type } -#{ sale_data.bookings[0].dining_facility.name }" , :size => self.header_font_size,:align => :right
end
end
move_down 1
text "Customer Ph : #{sale_data.customer.contact_no}", :size => self.header_font_size,:align => :left
move_down 1
end
stroke_horizontal_rule
cashier_info(sale_data, customer_name, latest_order_no)
line_items(sale_items,precision,delimiter)
@@ -117,11 +117,10 @@ class ReceiptBillA5Pdf < Prawn::Document
move_down line_move
text "#{shop_details.phone_no}", :size => self.item_font_size,:align => :center
move_down line_move
stroke_horizontal_rule
end
def cashier_info(sale_data, customer_name, latest_order_no)
stroke_horizontal_rule
if latest_order_no.nil?
move_down line_move
text "Booking : #{ sale_data.bookings[0].booking_id }", :size => self.header_font_size+5,:align => :left