temp remove options in oqs

This commit is contained in:
Yan
2017-06-19 17:36:39 +06:30
parent d8930cb2b5
commit 9089eab196
5 changed files with 39 additions and 29 deletions

View File

@@ -77,6 +77,7 @@ class OrderSummaryPdf < Prawn::Document
move_down 5
order_item.each do|odi|
y_position = cursor
bounding_box([0,y_position], :width => self.item_width, :height => self.item_height) do
text "#{odi.item_name}", :size => self.item_font_size,:align => :left
end
@@ -84,9 +85,9 @@ class OrderSummaryPdf < Prawn::Document
bounding_box([self.item_width,y_position], :width => self.qty_width, :height => self.item_height) do
text "#{odi.qty}", :size => self.item_font_size,:align => :left
end
end
move_down 5
move_down 5
end
end
end