Method: Spree::Product#total_on_hand
- Defined in:
- app/models/spree/product.rb
#total_on_hand ⇒ Fixnum, Infinity
The number of on-hand stock items; Infinity if any variant does not track inventory.
268 269 270 271 272 273 274 |
# File 'app/models/spree/product.rb', line 268 def total_on_hand if any_variants_not_track_inventory? Float::INFINITY else stock_items.sum(:count_on_hand) end end |