theseus/app/models/lsv/hs_third_party_physical_shipment.rb

16 lines
325 B
Ruby

module LSV
class HsThirdPartyPhysicalShipment < HighSeasShipment
def type_text = "High Seas 3rd-party physical"
def status_text
case fields["status"]
when "pending_nightly"
"will be ordered soon..."
when "fulfilled"
"ordered!"
else
super
end
end
end
end