mmsc_app/app/models/m_odr_file_product.rb
Nicolas Bally e7c0e126cc suite
2020-06-24 15:13:44 +02:00

15 lines
337 B
Ruby

class MOdrFileProduct < ApplicationRecord
belongs_to :m_odr_file
belongs_to :m_odr_product
belongs_to :m_odr_product_size
#validates :qte, :presence => true, numericality: { greater_than: 0}
before_save do
if self.m_odr_product_size
self.m_odr_product = self.m_odr_product_size.m_odr_product
end
end
end