Method: Retailcrm#order_methods_edit
- Defined in:
- lib/retailcrm.rb
#order_methods_edit(order_method) ⇒ Object
Edit order method
490 491 492 493 494 495 |
# File 'lib/retailcrm.rb', line 490 def order_methods_edit(order_method) code = order_method[:code] url = "#{@url}reference/order-methods/#{code}/edit" @params[:orderMethod] = order_method.to_json make_request(url, 'post') end |