Included new localize_input gem.
This commit is contained in:
parent
3f133bb8c3
commit
5bf6503a8f
3 changed files with 11 additions and 15 deletions
1
Gemfile
1
Gemfile
|
@ -15,6 +15,7 @@ gem 'rails3_acts_as_paranoid'
|
||||||
gem 'meta_where'
|
gem 'meta_where'
|
||||||
gem 'meta_search'
|
gem 'meta_search'
|
||||||
gem 'inherited_resources'
|
gem 'inherited_resources'
|
||||||
|
gem 'localize_input', :git => "git://github.com/bennibu/localize_input.git"
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem 'annotate'
|
gem 'annotate'
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
GIT
|
||||||
|
remote: git://github.com/bennibu/localize_input.git
|
||||||
|
revision: 1de033997a66b3c22344799cd354e45f0dab4d32
|
||||||
|
specs:
|
||||||
|
localize_input (0.0.1)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
remote: http://rubygems.org/
|
remote: http://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
|
@ -115,6 +121,7 @@ DEPENDENCIES
|
||||||
hirb
|
hirb
|
||||||
inherited_resources
|
inherited_resources
|
||||||
jquery-rails
|
jquery-rails
|
||||||
|
localize_input!
|
||||||
meta_search
|
meta_search
|
||||||
meta_where
|
meta_where
|
||||||
mysql
|
mysql
|
||||||
|
|
|
@ -28,6 +28,9 @@ class Article < ActiveRecord::Base
|
||||||
acts_as_paranoid # Avoid deleting the article for consistency of order-results
|
acts_as_paranoid # Avoid deleting the article for consistency of order-results
|
||||||
extend ActiveSupport::Memoizable # Ability to cache method results. Use memoize :expensive_method
|
extend ActiveSupport::Memoizable # Ability to cache method results. Use memoize :expensive_method
|
||||||
|
|
||||||
|
# Replace numeric seperator with database format
|
||||||
|
localize_input_of :price, :tax, :deposit
|
||||||
|
|
||||||
# Associations
|
# Associations
|
||||||
belongs_to :supplier
|
belongs_to :supplier
|
||||||
belongs_to :article_category
|
belongs_to :article_category
|
||||||
|
@ -47,21 +50,6 @@ class Article < ActiveRecord::Base
|
||||||
# Callbacks
|
# Callbacks
|
||||||
before_save :update_price_history
|
before_save :update_price_history
|
||||||
before_destroy :check_article_in_use
|
before_destroy :check_article_in_use
|
||||||
|
|
||||||
# Custom attribute setter that accepts decimal numbers using localized decimal separator.
|
|
||||||
def price=(price)
|
|
||||||
self[:price] = String.delocalized_decimal(price)
|
|
||||||
end
|
|
||||||
|
|
||||||
# Custom attribute setter that accepts decimal numbers using localized decimal separator.
|
|
||||||
def tax=(tax)
|
|
||||||
self[:tax] = String.delocalized_decimal(tax)
|
|
||||||
end
|
|
||||||
|
|
||||||
# Custom attribute setter that accepts decimal numbers using localized decimal separator.
|
|
||||||
def deposit=(deposit)
|
|
||||||
self[:deposit] = String.delocalized_decimal(deposit)
|
|
||||||
end
|
|
||||||
|
|
||||||
# The financial gross, net plus tax and deposti
|
# The financial gross, net plus tax and deposti
|
||||||
def gross_price
|
def gross_price
|
||||||
|
|
Loading…
Reference in a new issue