foodsoft/plugins/bnn_upload/app/controllers/orders_controller.rb
2023-02-17 13:16:03 +01:00

14 lines
514 B
Ruby

class OrdersController < ApplicationController
# Send a order to the supplier.
def send_result_to_supplier
order = Order.find(params[:id])
options = { file_formats: params[:file_formats] }
order.send_to_supplier!(@current_user, options)
redirect_to order, notice: I18n.t('orders.send_to_supplier.notice')
rescue => error
redirect_to order, alert: I18n.t('errors.general_msg', :msg => error.message)
end
def send_result_to_supplier_modal
@order = Order.find(params[:id])
end
end