Sha256: 699526346a85852ffcb35a530205a7710cc0db1a8151c8c9c8e551603b6cff4b
Contents?: true
Size: 389 Bytes
Versions: 62
Compression:
Stored size: 389 Bytes
Contents
module Workarea module Storefront class RefundViewModel < ApplicationViewModel def tenders @tenders ||= Hash[ model.amounts.map do |tender_id, amount| tender = payment.tenders.detect { |t| t.id.to_s == tender_id.to_s } amount = Money.demongoize(amount) [tender, amount] end ] end end end end
Version data entries
62 entries across 62 versions & 1 rubygems