Problema validación de precios con rails
AUTOR PREGUNTA #1
PRECIO_REGEX = /^([1-9]\d{0,5}|0)(\.\d{1,2})?$/ validates :price, :presence => true, :format => PRECIO_REGEX
Gracias de antemano por la ayuda.
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#3
class Product < ActiveRecord::Base validates_numericality_of :price, :greater_than => 0, :less_than => 1000000 end