|
|
@ -50,12 +50,10 @@ module Validations::Sales::SoftValidations |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def purchase_price_min_or_max_text |
|
|
|
def purchase_price_min_or_max_text |
|
|
|
|
|
|
|
|
|
|
|
value < purchase_price_range.soft_min ? "minimum" : "maximum" |
|
|
|
value < purchase_price_range.soft_min ? "minimum" : "maximum" |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def purchase_price_soft_min_or_soft_max |
|
|
|
def purchase_price_soft_min_or_soft_max |
|
|
|
|
|
|
|
|
|
|
|
value < purchase_price_range.soft_min ? purchase_price_range.soft_min : purchase_price_range.soft_max |
|
|
|
value < purchase_price_range.soft_min ? purchase_price_range.soft_min : purchase_price_range.soft_max |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|