module Comee module Core class CustomerOrderItem < ApplicationRecord belongs_to :customer_order belongs_to :product belongs_to :unit validates :quantity, :price, :delivery_date, presence: true end end end