Module: Smerp::Quotation::Engine::QuotationItemDistributionsHelper

Defined in:
app/helpers/smerp/quotation/engine/quotation_item_distributions_helper.rb

Instance Method Summary collapse

Instance Method Details

#distribution_params(paramVal) ⇒ Object



4
5
6
7
8
9
10
11
# File 'app/helpers/smerp/quotation/engine/quotation_item_distributions_helper.rb', line 4

def distribution_params(paramVal)
  case paramVal
  when Smerp::Common::FinUtils::Percent
    "#{paramVal.value}%"
  else
    "#{currency(paramVal)}"
  end
end