5 lines
208 B
Ruby
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}"
|