Files
old-ribica/back-office/app/models/delivery_destination.rb
adam.harbas@a-net.ba c345e9f016 Last used btn
2016-01-11 10:52:18 +01:00

15 lines
269 B
Ruby

class DeliveryDestination < ActiveRecord::Base
def get_payment_string
case self.payment_method
when 'cash_on_delivery'
'Prilikom preuzimanja'
when 'paypal'
'Paypal'
when 'pikpay'
'Pikpay'
else
'Nepoznato'
end
end
end