add bnn_upload plugin that overrides some controller methods to use order_bnn

This commit is contained in:
viehlieb 2023-02-23 00:14:00 +01:00
parent f8c91b46cd
commit b1ec0fd2fc
12 changed files with 70 additions and 27 deletions

View file

@ -0,0 +1,14 @@
OrdersController.class_eval do
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_path(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