Sha256: a70aad8c7b8b1c71d18bbe55cc5ab6777619037191500281368ed7bb8ddd98f4

Contents?: true

Size: 358 Bytes

Versions: 62

Compression:

Stored size: 358 Bytes

Contents

module Workarea
  module Admin
    class FulfillmentsController < Admin::ApplicationController
      required_permissions :orders

      def show
        @fulfillment = FulfillmentViewModel.wrap(
          Fulfillment.find_or_initialize_by(id: params[:id])
        )

        @order = OrderViewModel.wrap(Order.find(params[:id]))
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-admin-3.4.13 app/controllers/workarea/admin/fulfillments_controller.rb
workarea-admin-3.4.12 app/controllers/workarea/admin/fulfillments_controller.rb