Class: SnfCore::OrderItem

Inherits:
ApplicationRecord show all
Defined in:
app/models/snf_core/order_item.rb

Instance Method Summary collapse

Instance Method Details

#subtotalObject



14
15
16
17
# File 'app/models/snf_core/order_item.rb', line 14

def subtotal
  return 0 unless quantity.present? && unit_price.present?
  quantity.to_f * unit_price.to_f
end