spree-contrib/spree_print_invoice

View on GitHub
app/models/spree/printables/shipment/packaging_slip_view.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Spree
  class Printables::Shipment::PackagingSlipView
    def initialize(shipment)
      @shipment = shipment
    end

    def display_number
      @shipment.number
    end

    def date
      @shipment.shipped_at
    end

    def shipment
      nil
    end
  end
end