# frozen_string_literal: true # ProductOrder # quantity: integer class ProductOrder < ApplicationRecord belongs_to :order belongs_to :product def total if quantity < 5 product.unitary_price * quantity else product.bulk_price * quantity end end end