# -*- encoding : utf-8 -*- class Sheet < ActiveRecord::Base has_many :people, :dependent => :destroy has_many :sheet_years, :order => "year DESC", :dependent => :destroy has_many :donates, :order => "paid_at DESC", :dependent => :destroy has_one :last_year_m, :order => "year DESC", :class_name => "SheetYear" has_one :first_year_m, :order => "year", :class_name => "SheetYear" belongs_to :person, :class_name => "Person", :foreign_key => :first_people belongs_to :first_people, :class_name => "Person", :foreign_key => :first_people validates :sheet_type, :presence => true attr_accessible :donates_attributes, :sheet_type, :people_attributes, :sheet_years_attributes, :corporate, :address, :address2, :address3, :pc, :city, :country, :skills accepts_nested_attributes_for :people, :allow_destroy => true accepts_nested_attributes_for :sheet_years, :allow_destroy => true accepts_nested_attributes_for :donates, :allow_destroy => true SHEET_TYPE = {1 => "adherent",2 => "sympathisant"} before_save do if !self.person and self.people.size > 0 puts "TEST" self.person = self.people.first end end def self.to_csv2(options = {}) puts "test" CSV.generate(options) do |csv| csv << ["hhgghgh", "jhhgghgh"] end end def self.search_by_params(input) requette = "" requette += "(last_year IN(?))" if input[:sheet_year] requette += " AND " if input[:sheet_year] and input[:sheet_type] requette += "(sheet_type IN(?))" if input[:sheet_type] requette += " AND " if (input[:sheet_year] or input[:sheet_type]) and input[:sheet_city] requette += "(city IN(?))" if input[:sheet_city] conditions = [] conditions << requette conditions << input[:sheet_year] if input[:sheet_year] conditions << input[:sheet_type] if input[:sheet_type] conditions << input[:sheet_city] if input[:sheet_city] return Sheet.all(:conditions => conditions,:include => :person) end end