caboose-cms 0.7.45 → 0.7.46

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5eb835385ee2dfb061d990b9da27bb60a0a33a26
4
- data.tar.gz: 8c8be3c82165f4aef50119a93f5836223727b67e
3
+ metadata.gz: 886ac376765988b984868dce363f22e9b9b052ab
4
+ data.tar.gz: 275663e37010387c36431a065692b4af6c4e63fc
5
5
  SHA512:
6
- metadata.gz: d5eb708d17509f149e2becb91dde214c0151abb01bde78a0019e2779f685659a07ee45e2a61a19b2469d76388d15472e39514c8f035167017b41bda7ed370c96
7
- data.tar.gz: 91a48e0fc40f9979f3bdae36a4a8c11c439eb3894bff3dc26aac227164b286c806f77293ff510aabab4d0ae6d189d17f4afdf61c6b8ca3924ad42774bbf43d20
6
+ metadata.gz: 971bbf0b06002f79cc7014db7bd37791bb11cab68ae7386adc287b8067fc6f2f831068e5a9d6e03e0e3fa7b4e8e58bcb5a7e5ba9700f653d1ab0d96c414f5283
7
+ data.tar.gz: 6096afa69d336978603055de68544e5154a0fd87b9186d1bbff025084fbc50e339925a0283ca56c0f32c412cb0a289cf24b7cad12c7a5a52d636074298c5420e
@@ -129,6 +129,7 @@ module Caboose
129
129
  when 'ignore_quantity' then v.ignore_quantity = value
130
130
  when 'allow_backorder' then v.allow_backorder = value
131
131
  when 'clearance' then v.clearance = value
132
+ when 'clearance_price' then v.clearance_price = value
132
133
  when 'status' then v.status = value
133
134
  when 'weight' then v.weight = value
134
135
  when 'length' then v.length = value
@@ -443,6 +444,8 @@ module Caboose
443
444
  when 'quantity_in_stock' then variants.each { |v| v.quantity_in_stock = value }
444
445
  when 'ignore_quantity' then variants.each { |v| v.ignore_quantity = value }
445
446
  when 'allow_backorder' then variants.each { |v| v.allow_backorder = value }
447
+ when 'clearance' then variants.each { |v| v.clearance = value }
448
+ when 'clearance_price' then variants.each { |v| v.clearance_price = value }
446
449
  when 'status' then variants.each { |v| v.status = value }
447
450
  when 'weight' then variants.each { |v| v.weight = value }
448
451
  when 'length' then variants.each { |v| v.length = value }
@@ -809,6 +809,7 @@ class Caboose::Schema < Caboose::Utilities::Schema
809
809
  [ :date_sale_ends , :datetime ],
810
810
  [ :date_sale_end , :datetime ],
811
811
  [ :clearance , :boolean , { :default => false }],
812
+ [ :clearance_price , :decimal , { :precision => 8, :scale => 2 }],
812
813
  [ :available , :boolean , { :default => true }],
813
814
  [ :quantity_in_stock , :integer , { :default => 0 }],
814
815
  [ :ignore_quantity , :boolean , { :default => false }],
@@ -27,6 +27,7 @@ module Caboose
27
27
  :date_sale_starts,
28
28
  :date_sale_end,
29
29
  :clearance,
30
+ :clearance_price,
30
31
  :ignore_quantity,
31
32
  :quantity,
32
33
  :quantity_in_stock,
@@ -40,6 +40,7 @@ v = @variant
40
40
  <div id='variant_<%= v.id %>_date_sale_ends' ></div>
41
41
  <div id='variant_<%= v.id %>_time_sale_ends' ></div>
42
42
  <div id='variant_<%= v.id %>_clearance' ></div>
43
+ <div id='variant_<%= v.id %>_clearance_price' ></div>
43
44
  </td>
44
45
  <td valign='top' colspan='4'4>
45
46
  <h2>Flat Rate Shipping</h2>
@@ -83,7 +84,8 @@ $(document).ready(function() {
83
84
  { name: 'sale_price' , nice_name: 'Sale price' , type: 'text' , align: 'right' , width: 175, value: <%= raw Caboose.json(v.sale_price ) %> },
84
85
  { name: 'date_sale_starts' , nice_name: 'Sale starts' , type: 'datetime' , align: 'right' , width: 175, value: <%= raw Caboose.json(v.date_sale_starts ? v.date_sale_starts.in_time_zone(@logged_in_user.timezone).strftime('%m/%d/%Y %I:%M %P') : '') %> },
85
86
  { name: 'date_sale_ends' , nice_name: 'Sale ends' , type: 'datetime' , align: 'right' , width: 175, value: <%= raw Caboose.json(v.date_sale_ends ? v.date_sale_ends.in_time_zone(@logged_in_user.timezone).strftime('%m/%d/%Y %I:%M %P') : '') %> },
86
- { name: 'clearance' , nice_name: 'On Clearance' , type: 'checkbox' , align: 'right' , width: 175, value: <%= raw Caboose.json(v.clearance ) %> },
87
+ { name: 'clearance' , nice_name: 'On Clearance' , type: 'checkbox' , align: 'right' , width: 175, value: <%= raw Caboose.json(v.clearance ) %> },
88
+ { name: 'clearance_price' , nice_name: 'Clearance price' , type: 'text' , align: 'right' , width: 175, value: <%= raw Caboose.json(v.clearance_price ) %> },
87
89
  { name: 'quantity_in_stock' , nice_name: 'Quantity' , type: 'text' , align: 'right' , width: 250, value: <%= raw Caboose.json(v.quantity_in_stock ) %> },
88
90
  { name: 'ignore_quantity' , nice_name: 'Ignore Quantity' , type: 'checkbox' , align: 'right' , width: 250, value: <%= raw Caboose.json(v.ignore_quantity ) %> },
89
91
  { name: 'weight' , nice_name: 'Weight (<%= sc.weight_unit %>)' , type: 'text' , align: 'right' , width: 175, value: <%= raw Caboose.json(v.weight ) %> },
@@ -78,7 +78,8 @@ $(document).ready(function() {
78
78
  { show: true , name: 'sale_price' , nice_name: 'Sale price' , sort: 'sale_price' , type: 'text' , value: function(v) { return v.sale_price }, width: 75, align: 'right' , bulk_edit: true },
79
79
  { show: false , name: 'date_sale_starts' , nice_name: 'Sale starts' , sort: 'date_sale_starts' , type: 'datetime' , value: function(v) { return v.date_sale_starts }, width: 75, align: 'left' , bulk_edit: true },
80
80
  { show: false , name: 'date_sale_ends' , nice_name: 'Sale ends' , sort: 'date_sale_ends' , type: 'datetime' , value: function(v) { return v.date_sale_ends }, width: 75, align: 'left' , bulk_edit: true },
81
- { show: false , name: 'clearance' , nice_name: 'On Clearance' , sort: 'clearance' , type: 'checkbox' , value: function(v) { return v.clearance }, text: function(v) { return v.clearance ? 'Yes' : 'No' }, width: 50, align: 'center' , bulk_edit: true },
81
+ { show: false , name: 'clearance' , nice_name: 'On Clearance' , sort: 'clearance' , type: 'checkbox' , value: function(v) { return v.clearance }, text: function(v) { return v.clearance ? 'Yes' : 'No' }, width: 50, align: 'center' , bulk_edit: true },
82
+ { show: true , name: 'clearance_price' , nice_name: 'Clearance price' , sort: 'clearance_price' , type: 'text' , value: function(v) { return v.clearance_price }, width: 75, align: 'right' , bulk_edit: true },
82
83
  { show: true , name: 'quantity_in_stock' , nice_name: 'Quantity' , sort: 'quantity_in_stock' , type: 'text' , value: function(v) { return v.quantity_in_stock }, width: 50, align: 'right' , bulk_edit: true },
83
84
  { show: false , name: 'weight' , nice_name: 'Weight (<%= sc.weight_unit %>)' , sort: 'weight' , type: 'text' , value: function(v) { return v.weight }, width: 50, align: 'right' , bulk_edit: true },
84
85
  { show: false , name: 'length' , nice_name: 'Length (<%= sc.length_unit %>)' , sort: 'length' , type: 'text' , value: function(v) { return v.length }, width: 50, align: 'right' , bulk_edit: true },
@@ -1,3 +1,3 @@
1
1
  module Caboose
2
- VERSION = '0.7.45'
2
+ VERSION = '0.7.46'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: caboose-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.45
4
+ version: 0.7.46
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Barry
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-06 00:00:00.000000000 Z
11
+ date: 2016-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg