caboose-cms 0.9.5 → 0.9.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/caboose/invoice_pdf.rb +5 -5
- data/lib/caboose/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e70b82b6cfdc472f97cc722cadf5bdc5d6b64de4
|
4
|
+
data.tar.gz: 6e777b617dd35613e5a211adbe49c13cc3a75a5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d35c00d7a8c43a37b5af8e5983230b11dcf684b7ae4d55f5dbdeb1451f40419e516bb37618ae7638a21563d16050f076bd1d6a8b24fc84230ed58ef7b38fc2ee
|
7
|
+
data.tar.gz: 57f5445a919934ba2da225f8f5b268617369926ca74c59c4cf526b9fd404703be0645f18a58bec38ea81b763db92b86f66fd87cba9aa614937340adc0dfb5add
|
@@ -116,12 +116,12 @@ module Caboose
|
|
116
116
|
|
117
117
|
shipped_to = []
|
118
118
|
if invoice.instore_pickup
|
119
|
-
shipped_to << [{ :content => "Name" , :border_width => 0, :width => 55 },{ :content => "#{c.first_name} #{c.last_name}" , :border_width => 0, :width => 200 }]
|
120
|
-
shipped_to << [{ :content => "IN-STORE PICKUP" , :border_width => 0, :width => 255 }]
|
119
|
+
shipped_to << [{ :content => "Name" , :border_width => 0, :width => 55 },{ :content => "#{c.first_name} #{c.last_name}" , :border_width => 0, :width => 200 }]
|
120
|
+
shipped_to << [{ :content => "IN-STORE PICKUP" , :border_width => 0, :width => 255 }]
|
121
121
|
else
|
122
|
-
shipped_to << [{ :content => "Name" , :border_width => 0, :width => 55 },{ :content => sa_name , :border_width => 0, :width => 200 }]
|
123
|
-
shipped_to << [{ :content => "Address" , :border_width => 0, :width => 55 },{ :content => sa_address , :border_width => 0, :width => 200 }]
|
124
|
-
shipped_to << [{ :content => "Email" , :border_width => 0, :width => 55 },{ :content => "#{c.email}" , :border_width => 0, :width => 200 }]
|
122
|
+
shipped_to << [{ :content => "Name" , :border_width => 0, :width => 55 },{ :content => sa_name , :border_width => 0, :width => 200 }]
|
123
|
+
shipped_to << [{ :content => "Address" , :border_width => 0, :width => 55 },{ :content => sa_address , :border_width => 0, :width => 200 }]
|
124
|
+
shipped_to << [{ :content => "Email" , :border_width => 0, :width => 55 },{ :content => "#{c.email}" , :border_width => 0, :width => 200 }]
|
125
125
|
shipped_to << [{ :content => "Phone" , :border_width => 0, :width => 55 },{ :content => "#{self.formatted_phone(c.phone)}" , :border_width => 0, :width => 200 }]
|
126
126
|
end
|
127
127
|
|
data/lib/caboose/version.rb
CHANGED