# Fat Free CRM
# Copyright (C) 2008-2011 by Michael Dvorkin
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see .
#------------------------------------------------------------------------------
module AccountsHelper
# Sidebar checkbox control for filtering accounts by category.
#----------------------------------------------------------------------------
def account_category_checbox(category, count)
checked = (session[:accounts_filter] ? session[:accounts_filter].split(",").include?(category.to_s) : count.to_i > 0)
onclick = remote_function(
:url => { :action => :filter },
:with => h(%Q/"category=" + $$("input[name='category[]']").findAll(function (el) { return el.checked }).pluck("value")/),
:loading => "$('loading').show()",
:complete => "$('loading').hide()"
)
check_box_tag("category[]", category, checked, :id => category, :onclick => onclick)
end
# Quick account summary for RSS/ATOM feeds.
#----------------------------------------------------------------------------
def account_summary(account)
[ number_to_currency(account.opportunities.pipeline.map(&:weighted_amount).sum, :precision => 0),
t(:added_by, :time_ago => time_ago_in_words(account.created_at), :user => account.user_id_full_name),
t('pluralize.contact', account.contacts.count),
t('pluralize.opportunity', account.opportunities.count),
t('pluralize.comment', account.comments.count)
].join(', ')
end
def account_select(options = {})
# Generates a select list with the first 25 accounts,
# and prepends the currently selected account, if available
options[:selected] = (@account && @account.id) || 0
accounts = ([@account] + Account.my.order(:name).limit(25)).compact.uniq
collection_select :account, :id, accounts, :id, :name, options,
{:"data-placeholder" => t(:select_an_account),
:style => "width:330px; display:none;" }
end
# Select an existing account or create a new one.
#----------------------------------------------------------------------------
def account_select_or_create(form, &block)
options = {}
yield options if block_given?
content_tag(:div, :class => 'label') do
t(:account).html_safe +
content_tag(:span, :id => 'account_create_title') do
"(#{t :create_new} #{t :or} #{t :select_existing}):".html_safe
end.html_safe +
content_tag(:span, :id => 'account_select_title') do
"(#{t :create_new} #{t :or} #{t :select_existing}):".html_safe
end.html_safe +
content_tag(:span, ':', :id => 'account_disabled_title').html_safe
end.html_safe +
account_select(options).html_safe +
form.text_field(:name, :style => 'width:324px; display:none;')
end
end