mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 21:05:10 +00:00
16 lines
325 B
Ruby
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
|