Files
Alvand-P/bin/check_order.rb
2026-08-13 19:42:08 +03:30

5 lines
208 B
Ruby

# frozen_string_literal: true
order = Order.find(ENV.fetch('ORDER_ID', '1'))
puts "ORDER id=#{order.id} state=#{order.state} price=#{order.price} volume=#{order.volume} origin_volume=#{order.origin_volume}"