Module: OpportunitiesHelper

Defined in:
app/helpers/opportunities_helper.rb

Overview

Copyright © 2008-2013 Michael Dvorkin and contributors.

Fat Free CRM is freely distributable under the terms of MIT license. See MIT-LICENSE file or www.opensource.org/licenses/mit-license.php


Instance Method Summary collapse

Instance Method Details

#opportunity_campaign_select(options = {}) ⇒ Object

Generates a select list with the first 25 campaigns and prepends the currently selected campaign, if any.




39
40
41
42
43
44
45
46
# File 'app/helpers/opportunities_helper.rb', line 39

def opportunity_campaign_select(options = {})
  options[:selected] ||= @opportunity.campaign_id || 0
  selected_campaign = Campaign.find_by_id(options[:selected])
  campaigns = ([selected_campaign] + Campaign.my(current_user).order(:name).limit(25)).compact.uniq
  collection_select :opportunity, :campaign_id, campaigns, :id, :name,
                    { selected: options[:selected], prompt: t(:select_a_campaign) },
                    style: 'width:330px;', class: 'select2'
end

#opportunity_stage_checkbox(stage, count) ⇒ Object

Sidebar checkbox control for filtering opportunities by stage.




11
12
13
# File 'app/helpers/opportunities_helper.rb', line 11

def opportunity_stage_checkbox(stage, count)
  entity_filter_checkbox(:stage, stage, count)
end

#opportunity_summary(opportunity) ⇒ Object

Opportunity summary for RSS/ATOM feeds.




17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'app/helpers/opportunities_helper.rb', line 17

def opportunity_summary(opportunity)
  summary = []
  amount = []
  summary << (opportunity.stage ? t(opportunity.stage) : t(:other))
  summary << number_to_currency(opportunity.weighted_amount, precision: 0)
  unless %w[won lost].include?(opportunity.stage)
    amount << number_to_currency(opportunity.amount || 0, precision: 0)
    amount << (opportunity.discount ? t(:discount_number, number_to_currency(opportunity.discount, precision: 0)) : t(:no_discount))
    amount << t(:probability_number, (opportunity.probability || 0).to_s + '%')
    summary << amount.join(' ')
  end
  summary << if opportunity.closes_on
               t(:closing_date, l(opportunity.closes_on, format: :mmddyy))
             else
               t(:no_closing_date)
             end
  summary.compact.join(', ')
end