diff --git a/app/assets/stylesheets/admin.scss b/app/assets/stylesheets/admin.scss index 7aff43e..9ea91e0 100644 --- a/app/assets/stylesheets/admin.scss +++ b/app/assets/stylesheets/admin.scss @@ -1605,3 +1605,7 @@ form{ } + +.red{ + color:red; +} diff --git a/app/assets/stylesheets/public.scss b/app/assets/stylesheets/public.scss index eacc419..b75adfe 100644 --- a/app/assets/stylesheets/public.scss +++ b/app/assets/stylesheets/public.scss @@ -1530,7 +1530,7 @@ body { font-size: 22px; padding: 10px 15px; display: inline-block; - margin-top: 20px; + margin-top: 10px; } } .tab-content { @@ -9604,7 +9604,7 @@ a.sp-video { a { display: inline-block; float: none !important; - margin-bottom: 20px; + margin-bottom: 0px; } } .edition_user { @@ -10008,7 +10008,10 @@ a.sp-video { position:relative; margin:20px 0; border:1px solid black; - background:#ffdd00; + background:white; + border:5px solid white; + border-top:10px solid #cc4b14; + border-left:10px solid #cc4b14; h3{ text-transform:uppercase; @@ -10370,7 +10373,7 @@ a.sp-video { .organisateur_img{ float:left; - width:20%; + width:30%; margin-right:10px; } diff --git a/app/controllers/admin/m_odr_files_controller.rb b/app/controllers/admin/m_odr_files_controller.rb index 436f5e6..212fec7 100644 --- a/app/controllers/admin/m_odr_files_controller.rb +++ b/app/controllers/admin/m_odr_files_controller.rb @@ -54,11 +54,9 @@ class Admin::MOdrFilesController < ApplicationController def send_mail @m_odr_file = MOdrFile.find(params[:id]) - @m_odr_rep = @m_odr_file.m_odr_rep + @m_odr_file.send_mail_type(params[:slug].to_s) - @m_odr_rep.send_mail_type(params[:slug].to_s, @m_odr_file) - - redirect_to [:admin, @m_odr_rep] + redirect_to [:admin, @m_odr_file] end @@ -87,7 +85,7 @@ class Admin::MOdrFilesController < ApplicationController #@m_odr_file.m_odr_rep.change_state("En cours de traitement") @m_odr_file.p_customer.generate_prime if @m_odr_file.p_customer - redirect_to admin_m_odr_files_path() + redirect_to [:admin, @m_odr_file] else render action: "edit" diff --git a/app/controllers/admin/m_odr_primes_controller.rb b/app/controllers/admin/m_odr_primes_controller.rb index fa1d01a..8e5b5d2 100644 --- a/app/controllers/admin/m_odr_primes_controller.rb +++ b/app/controllers/admin/m_odr_primes_controller.rb @@ -77,10 +77,28 @@ class Admin::MOdrPrimesController < ApplicationController def generate_virement @m_odr_prime = MOdrPrime.find(params[:id]) - @m_odr_prime.m_odr_virements.create - @m_odr_prime.change_state("Virement demandé") + if @m_odr_prime.p_customer.valid_m_odr_rep_rib + @m_odr_prime.m_odr_virements.create + @m_odr_prime.change_state("Virement demandé") + + + if @m_odr_prime.p_customer.mail_hists.where(:mail_type_id => 14).count == 0 + @m_odr_prime.send_mail_type("primes-valide-1") + + else + @m_odr_prime.send_mail_type("primes-valide-2") + end + + + + else + @m_odr_prime.change_state("Manque RIB") + + @m_odr_prime.send_mail_type("primes-manque-rib") if @m_odr_prime.p_customer.m_odr_rep_ribs.count == 0 + end redirect_back(fallback_location:"/") end + end diff --git a/app/controllers/admin/m_odr_remises_controller.rb b/app/controllers/admin/m_odr_remises_controller.rb index 4c87d94..2c26f72 100644 --- a/app/controllers/admin/m_odr_remises_controller.rb +++ b/app/controllers/admin/m_odr_remises_controller.rb @@ -49,10 +49,10 @@ class Admin::MOdrRemisesController < ApplicationController @m_odr_remise.m_odr_virements.where(:refused => false).each do |m_odr_virement| m_odr_virement.sended = true - m_odr_virement.m_odr_prime.change_state("Virement envoyé") + m_odr_virement.m_odr_prime.change_state("Virement envoyé") if m_odr_virement.m_odr_prime m_odr_virement.save - m_odr_virement.m_odr_prime.send_mail_type("succes", m_odr_virement) + #m_odr_virement.m_odr_prime.send_mail_type("succes", m_odr_virement) end @m_odr_remise.confirmed = true diff --git a/app/models/m_odr_file.rb b/app/models/m_odr_file.rb index 0f269c0..8117ba7 100644 --- a/app/models/m_odr_file.rb +++ b/app/models/m_odr_file.rb @@ -4,6 +4,8 @@ class MOdrFile < ApplicationRecord belongs_to :p_customer belongs_to :m_odr_place belongs_to :m_event + + has_many :mail_hists has_many :m_odr_file_products accepts_nested_attributes_for :m_odr_file_products, :allow_destroy => true @@ -98,6 +100,14 @@ class MOdrFile < ApplicationRecord + def send_mail_type(slug, element = nil) + if self.m_odr_file_type_id + mail_hist = MailHist.auto_generate_mail(:fr, slug, self.p_customer.email, {:arguments => {:nbr => self.nbr_pneus }, :m_odr_file => self, :p_customer => self.p_customer, :element => self}) + else + mail_hist = MailHist.auto_generate_mail(:fr, slug, self.p_customer.email, {:arguments => {:nbr => self.nbr_pneus }, :m_odr_file => self, :p_customer => self.p_customer, :element => self}) + end + end + end diff --git a/app/models/m_odr_file_roulage.rb b/app/models/m_odr_file_roulage.rb index e48529a..03a2d9d 100644 --- a/app/models/m_odr_file_roulage.rb +++ b/app/models/m_odr_file_roulage.rb @@ -18,12 +18,8 @@ class MOdrFileRoulage < ApplicationRecord if achats = MOdrFile.where(:admin_ok => true, :p_customer_id => self.m_odr_file.p_customer_id,:m_odr_file_type_id => 2).where("buy_at <= ? and nbr_pneus_not_useds > 0", self.date) and (achats.sum(:nbr_pneus_not_useds) > 0) - #sdffs = sdfsfd - if self.m_odr_file.p_customer.valid_m_odr_rep_rib - state = "A traiter" - else - state = "Manque RIB" - end + state = "A traiter" + prime = MOdrPrime.new(:state => state, :m_odr_file_roulage => self, :p_customer_id => self.m_odr_file.p_customer_id) n_tot = 0 achats.each do |a| diff --git a/app/models/m_odr_prime.rb b/app/models/m_odr_prime.rb index fe6255e..d672c6d 100644 --- a/app/models/m_odr_prime.rb +++ b/app/models/m_odr_prime.rb @@ -84,14 +84,14 @@ class MOdrPrime < ApplicationRecord slug = "primes-manque-rib" end - MailHist.auto_generate_mail(:fr, slug, self.p_customer.email, options = {:arguments => {:remise => number_to_currency(self.amount.to_f)}, :p_customer => self.p_customer, :element => self}) + #MailHist.auto_generate_mail(:fr, slug, self.p_customer.email, options = {:arguments => {:remise => number_to_currency(self.amount.to_f)}, :p_customer => self.p_customer, :element => self}) end def send_mail_type(slug, element = nil) - mail_hist = MailHist.auto_generate_mail(:fr, slug, self.p_customer.email, {:arguments => {:remise => number_to_currency(self.amount.to_f), :civilite => self.p_customer.particular.civilite, :nom => self.p_customer.particular.name, :prenom => self.p_customer.particular.firstname }, :m_odr_prim => self,:element => element}) + mail_hist = MailHist.auto_generate_mail(:fr, slug, self.p_customer.email, {:arguments => {:remise => number_to_currency(self.amount.to_f), :nbr => self.nbr_pneus }, :m_odr_prime => self, :p_customer => self.p_customer, :element => self}) end diff --git a/app/models/m_odr_product.rb b/app/models/m_odr_product.rb index 88fa234..c41da73 100644 --- a/app/models/m_odr_product.rb +++ b/app/models/m_odr_product.rb @@ -3,6 +3,8 @@ class MOdrProduct < ApplicationRecord belongs_to :m_odr + has_many :m_odr_product_sizes + has_many :m_odr_product_remises, :dependent => :destroy accepts_nested_attributes_for :m_odr_product_remises, :allow_destroy => true diff --git a/app/models/m_odr_rep_rib.rb b/app/models/m_odr_rep_rib.rb index 01a40cb..0611c30 100644 --- a/app/models/m_odr_rep_rib.rb +++ b/app/models/m_odr_rep_rib.rb @@ -7,7 +7,7 @@ class MOdrRepRib < ApplicationRecord has_one :m_odr, :through => :m_odr_rep - validates :bic, :presence => true, length: { in: 8..11 } + #validates :bic, :presence => true, length: { in: 8..11 } validates :iban, :presence => true @@ -31,7 +31,7 @@ class MOdrRepRib < ApplicationRecord def update_prime_status if self.admin_ok and self.p_customer self.p_customer.m_odr_primes.where(:state => "Manque RIB").all.each do |m_odr_prime| - m_odr_prime.state = "A traiter" + m_odr_prime.state = "Validé" m_odr_prime.save end end diff --git a/app/models/m_odr_virement.rb b/app/models/m_odr_virement.rb index 4045262..a30cb43 100644 --- a/app/models/m_odr_virement.rb +++ b/app/models/m_odr_virement.rb @@ -92,7 +92,7 @@ class MOdrVirement < ApplicationRecord before_validation do #self.m_odr = self.m_odr_rep.m_odr if self.m_odr_rep - self.m_odr_rep_rib = self.m_odr_prime.p_customer.m_odr_rep_ribs.where(:admin_ok => true).order("id DESC").first + self.m_odr_rep_rib = self.m_odr_prime.p_customer.m_odr_rep_ribs.where(:admin_ok => true).order("id DESC").first if self.m_odr_prime self.amount = self.remise diff --git a/app/models/mail_hist.rb b/app/models/mail_hist.rb index c57aa1b..e1df93f 100644 --- a/app/models/mail_hist.rb +++ b/app/models/mail_hist.rb @@ -3,19 +3,23 @@ class MailHist < ApplicationRecord belongs_to :mail_type belongs_to :m_odr_rep belongs_to :m_odr + belongs_to :m_odr_prime belongs_to :lang_site + belongs_to :m_odr_file belongs_to :p_customer belongs_to :element, :polymorphic => true acts_as_sorting :fields => { :created_at => {:name => "Date", :reorder => true}, - :from_email => {:name => "Email exp.", :reorder => true}, + :p_customer => {:name => "Client"}, :to_email => {:name => "Email dest.", :reorder => true}, :subject => {:name => "Sujet.", :reorder => true}, + :mail_type => {:name => "Mail type"}, :element => {:name => "Elément"}, - :mail_type => {:name => "Elément"}, - :p_customer => {:name => "Client"}, + + :from_email => {:name => "Email exp.", :reorder => true}, + :actions => "Actions" } @@ -47,7 +51,8 @@ class MailHist < ApplicationRecord @p_customer = options[:p_customer] @m_odr = options[:m_odr] @m_odr_rep = options[:m_odr_rep] - + @m_odr_file = options[:m_odr_file] + @m_odr_prime = options[:m_odr_prime] @file_tunel = options[:file_tunel] @arguments = @options[:arguments] @@ -92,7 +97,7 @@ class MailHist < ApplicationRecord @to_email = email - mail_history = MailHist.create(:lang_site => @lang_site, :to_email => @to_email, :from_email => @from, :element => options[:element], :subject => @subject, :body => @body, :m_odr => @m_odr, :m_odr_rep => @m_odr_rep, :p_customer => @p_customer, :mail_content => @mail_content, :mail_type => @mail_type) + mail_history = MailHist.create(:lang_site => @lang_site, :to_email => @to_email, :from_email => @from, :element => options[:element], :subject => @subject, :body => @body, :m_odr => @m_odr, :m_odr_rep => @m_odr_rep, :m_odr_prime => @m_odr_prime,:m_odr_file => @m_odr_file, :p_customer => @p_customer, :mail_content => @mail_content, :mail_type => @mail_type) mail = GeneralMails.general2(@to_email, @subject, @body, mail_options = {:m_odr => @m_odr, :file_tunel => @file_tunel}) @@ -100,7 +105,7 @@ class MailHist < ApplicationRecord mail_history.subject_send = @subject mail_history.body_send = mail.body.encoded - mail.deliver + #mail.deliver mail_history.save diff --git a/app/models/mail_type.rb b/app/models/mail_type.rb index 790ef8f..9123be7 100644 --- a/app/models/mail_type.rb +++ b/app/models/mail_type.rb @@ -1,7 +1,8 @@ class MailType < ApplicationRecord - has_many :mail_contents + has_many :mail_contents, :dependent => :destroy belongs_to :mail_type_reference, :class_name => "MailType" + has_many :mail_hists, :dependent => :destroy accepts_nested_attributes_for :mail_contents @@ -40,11 +41,11 @@ class MailType < ApplicationRecord end def default_title - self.lang(:fr).subject + self.lang(:fr).subject if self.lang(:fr) end def default_message - self.lang(:fr).message.to_s.truncate(100) + self.lang(:fr).message.to_s.truncate(100) if self.lang(:fr) end end diff --git a/app/models/p_customer.rb b/app/models/p_customer.rb index 41fb26f..b46d4f4 100644 --- a/app/models/p_customer.rb +++ b/app/models/p_customer.rb @@ -47,7 +47,7 @@ class PCustomer < ApplicationRecord has_many :mail_hists - has_many :m_odr_rep_ribs + has_many :m_odr_rep_ribs, :dependent => :destroy has_many :m_odr_files @@ -71,6 +71,61 @@ class PCustomer < ApplicationRecord validates :cgv, :presence => true, :if => :require_cgv validates :rgpd, :presence => true, :if => :require_cgv + validates :past_id, :uniqueness => true + + def do_import + if self.imp_iban? and self.imp_bic? + self.m_odr_rep_ribs.create(:bic => self.imp_bic, :iban => self.imp_iban, :admin_ok => true) + end + + part = Particular.new + part.name = self.imp_name + part.firstname = self.imp_firstname + part.address_2 = self.imp_address + part.cp = self.imp_cp2 + part.city = self.imp_city + part.country = "FR" + part.tel = self.imp_tel + + self.particular = part + + if self.imp_valid == "oui" + self.enabled = true + end + + if self.imp_npai == "oui" + self.npai = true + end + + if self.imp_stickers == "oui" + self.sticker = true + end + + if circuit = Circuit.where(:past_id => self.imp_circuit_1).first + self.circuit_1_id = circuit.id + end + + if circuit = Circuit.where(:past_id => self.imp_circuit_2).first + self.circuit_2_id = circuit.id + end + + if circuit = Circuit.where(:past_id => self.imp_circuit_3).first + self.circuit_3_id = circuit.id + end + + part.save + + self.particular = part + + self.save + + + + end + + after_create :do_import + + acts_as_csv_import :fields =>[:imported, :email, :password, :past_id,:imp_cp,:imp_country,:imp_ref,:imp_email,:imp_firstname,:imp_name,:imp_fonction,:imp_organisme,:imp_address,:imp_cp2,:imp_city,:imp_tel,:imp_portable,:imp_lien,:imp_comment,:imp_iban,:imp_bic,:imp_circuit_1,:imp_circuit_2,:imp_circuit_3,:imp_partenaire,:imp_ecran,:imp_blocage,:imp_valid,:imp_user_valid,:imp_offre,:imp_info,:imp_cgu,:imp_test,:imp_stickers,:imp_npai,:npai,:imp_relance_adresse,:imp_demande_info,:imp_creation,:imp_modification] attr_accessor :actual_password, :valid_last_password, :valid_public, :generate_mdp, :valid_pswd_confirmation, :require_cgv diff --git a/app/views/admin/admin_spaces/_clients.html.haml b/app/views/admin/admin_spaces/_clients.html.haml index 7714992..5b1660f 100644 --- a/app/views/admin/admin_spaces/_clients.html.haml +++ b/app/views/admin/admin_spaces/_clients.html.haml @@ -1,5 +1,6 @@ -if current_admin.has_permission?("customers") %li= link_to "Utilisateurs", admin_p_customers_path + %li= link_to "Mails envoyés", admin_mail_hists_path -if false -if current_admin.has_permission?("customer-cats") diff --git a/app/views/admin/import_csvs/_form.html.haml b/app/views/admin/import_csvs/_form.html.haml index 5001b7e..a36237b 100644 --- a/app/views/admin/import_csvs/_form.html.haml +++ b/app/views/admin/import_csvs/_form.html.haml @@ -6,7 +6,7 @@ = f.input :name, :label => "Nom de l'import :" = f.input :file, :label => "file :" - = f.input :table_name, :label => "Table :" , :as => :select, :collection => ["circuits", "organisateurs", "m_odr_product_sizes", "m_odr_places", "circuit_regions", "m_events"] + = f.input :table_name, :label => "Table :" , :as => :select, :collection => ["p_customers", "circuits", "organisateurs", "m_odr_product_sizes", "m_odr_places", "circuit_regions", "m_events"] -if f.object.id %table.import_csv_champs_form diff --git a/app/views/admin/m_odr_files/show.html.haml b/app/views/admin/m_odr_files/show.html.haml index 18b59c9..afde719 100644 --- a/app/views/admin/m_odr_files/show.html.haml +++ b/app/views/admin/m_odr_files/show.html.haml @@ -1,4 +1,6 @@ .qi_header + .right + =link_to ic(:pencil), edit_admin_m_odr_file_path(@m_odr_file) %h1 Primes %span @@ -9,22 +11,105 @@ -.qi_row - .qi_pannel.qi_plain.padding - - =link_to ic(:download)+" Télécharger le document", download_admin_m_odr_file_path(@m_odr_file, :disposition => "attachment") - - - -if File.extname(@m_odr_file.file.path) == ".pdf" || File.extname(@m_odr_file.file.path) == ".PDF" + + + +.left{:style => "float:left;width:30%;"} + .qi_row + .qi_pannel.qi_plain.padding + %table.table + %tr + %td Utilisateur + %td=@m_odr_file.p_customer.show_name + + %tr + %td Date de la facture + %td=@m_odr_file.buy_at + + %tr + %td Validé ? + %td + -if @m_odr_file.admin_ok + Oui + -else + Non + + + -if @m_odr_file.m_odr_file_type_id == 2 + %tr + %td + Revendeur + + %td=@m_odr_file.m_odr_place.name if @m_odr_file.m_odr_place + + -if @m_odr_file.m_odr_file_type_id == 2 + Produits : + %table.table + -@m_odr_file.m_odr_file_products.each do |m_odr_file_product| + %tr + %td + =m_odr_file_product.m_odr_product_size.name + %td + =m_odr_file_product.qte + %td + =number_to_currency m_odr_file_product.price + + + -else + Roulages : + %table.table + -@m_odr_file.m_odr_file_roulages.each do |m_odr_file_roulage| + %tr + %td + =m_odr_file_roulage.date + + %td + =m_odr_file_roulage.m_event.title if m_odr_file_roulage.m_event + -if @m_odr_file.m_odr_file_type_id == 2 + =link_to ic(:envelope)+"Envoyer un mail demandant la facture de roulage", send_mail_admin_m_odr_file_path(@m_odr_file, :slug => "achat-manque-roulage"), :remote => false, :class => "btn btn-primary", :style => "margin-bottom:4px;" - %iframe{:src => @m_odr_file.file.url, :style => "width:100%;height:800px;border:1px solid gray;"} + + -if @m_odr_file.admin_ok == false + .red Facture refusée + Envoyer un mail de notification : + + -if @m_odr_file.m_odr_file_type_id == 2 + -slugs = MailType.where(:mail_type_cat_id => 2).map{|m| m.slug} + -else + -slugs = MailType.where(:mail_type_cat_id => 3).map{|m| m.slug} + + -slugs.each do |slug| + %br + =link_to ic(:envelope)+" #{slug}", send_mail_admin_m_odr_file_path(@m_odr_file, :slug => slug), :remote => false, :class => "btn btn-primary", :style => "margin-bottom:4px;" + + + + +#show{:style => "margin-left:31%;"} + =link_to ic(:download)+" Télécharger le document", download_admin_m_odr_file_path(@m_odr_file, :disposition => "attachment") + + + -if File.extname(@m_odr_file.file.path) == ".pdf" || File.extname(@m_odr_file.file.path) == ".PDF" - -else -    - =link_to ic(:"rotate-left"), rotate_admin_m_odr_file_path(:id => @m_odr_file.id, :direction => "right"), :remote => true -    - =link_to ic(:"rotate-right"), rotate_admin_m_odr_file_path(@m_odr_file), :remote => true - #image_previ{:style => "width:100%;height:800px;border:1px solid gray;overflow:auto;"} - =render :partial => "admin/m_odr_files/image", :locals => {:file => @m_odr_file} - - \ No newline at end of file + %iframe{:src => @m_odr_file.file.url, :style => "width:100%;height:800px;border:1px solid gray;"} + + -else +    + =link_to ic(:"rotate-left"), rotate_admin_m_odr_file_path(:id => @m_odr_file.id, :direction => "right"), :remote => true +    + =link_to ic(:"rotate-right"), rotate_admin_m_odr_file_path(@m_odr_file), :remote => true + #image_previ{:style => "width:100%;height:800px;border:1px solid gray;overflow:auto;"} + =render :partial => "admin/m_odr_files/image", :locals => {:file => @m_odr_file} + +.clear +%hr +Historique des mails envoyés + +-params[:search][:per_page] = params[:search][:per_page] || 50 +-per_page = params[:search][:per_page] +-page = (params[:page] and params[:page] != "") ? params[:page] : 1 +-@mail_hists = @m_odr_file.mail_hists +-@mail_hists = sort_by_sorting(@mail_hists, "created_at DESC") +-@mail_hists = @mail_hists.page(page).per(per_page) + +=render :partial => "qi/qi_ordered_table", :locals => {:qi_ordered_table_collection => @mail_hists} diff --git a/app/views/admin/m_odr_primes/show.html.haml b/app/views/admin/m_odr_primes/show.html.haml index 0278bea..4a6ecca 100644 --- a/app/views/admin/m_odr_primes/show.html.haml +++ b/app/views/admin/m_odr_primes/show.html.haml @@ -30,7 +30,7 @@ %td =l @m_odr_prime.m_odr_file_roulage.date %td - =@m_odr_prime.m_odr_file_roulage.m_event.title + =@m_odr_prime.m_odr_file_roulage.m_event.title if @m_odr_prime.m_odr_file_roulage.m_event -m_odr_file = @m_odr_prime.m_odr_file_roulage.m_odr_file diff --git a/app/views/admin/mail_hists/_mail_hist.html.haml b/app/views/admin/mail_hists/_mail_hist.html.haml index 57e172f..fcb8dad 100644 --- a/app/views/admin/mail_hists/_mail_hist.html.haml +++ b/app/views/admin/mail_hists/_mail_hist.html.haml @@ -4,6 +4,10 @@ -tr[:mail_type] = capture do %td =mail_hist.mail_type.slug if mail_hist.mail_type + + -tr[:p_customer] = capture do + %td + =link_to mail_hist.p_customer.show_name, [:admin, mail_hist.p_customer] if mail_hist.p_customer -tr[:actions] = capture do %td.actions diff --git a/app/views/public/m_events/_m_event.html.haml b/app/views/public/m_events/_m_event.html.haml index 416e10d..af91cf8 100644 --- a/app/views/public/m_events/_m_event.html.haml +++ b/app/views/public/m_events/_m_event.html.haml @@ -1,9 +1,13 @@ .m_event -img = "" - -img = m_event.organisateur.logo.file.large.medium.url if m_event.organisateur and m_event.organisateur.logo + -if @organisateur + -img = m_event.circuit.logo.file.large.medium.url if m_event.circuit and m_event.circuit.logo + -else + -img = m_event.organisateur.logo.file.large.medium.url if m_event.organisateur and m_event.organisateur.logo + - =image_tag img + =image_tag img, :class => "vertical_center" .desc .head %h3 diff --git a/app/views/public/m_odr_file_products/_form.html.haml b/app/views/public/m_odr_file_products/_form.html.haml index 59cf2f4..2adc687 100644 --- a/app/views/public/m_odr_file_products/_form.html.haml +++ b/app/views/public/m_odr_file_products/_form.html.haml @@ -1,8 +1,12 @@ %tr.m_odr_file_product_form.field - %td= form.input :m_odr_product_size, :label => "Produit :", :collection => MOdrProductSize.all, :as => :select, :include_blank => false, :member_label => :member_label - %td= form.input :qte, :label => "Qté :", :input_html => {:style => "width:60px;"} - %td=# form.input :price, :label => "Prix :" - - - %td.actions=link_to_remove_fields ic(:"trash-o"), form \ No newline at end of file + %td + = form.input :m_odr_product_size, :label => "Produit :", :collection => option_groups_from_collection_for_select(MOdrProduct.all, :m_odr_product_sizes, :name, :id, :name), :as => :select, :include_blank => false, :member_label => :member_label +   + %td{:style => "width:60px;"} + = form.input :qte, :label => "Qté :" +   + + %td.actions{:style => "width:40px;"} +   + %span{:style => "position:relative;top:-5px;"}=link_to_remove_fields ic(:"trash-o"), form \ No newline at end of file diff --git a/app/views/public/m_odr_files/_form.html.haml b/app/views/public/m_odr_files/_form.html.haml index 671136d..ad60f26 100644 --- a/app/views/public/m_odr_files/_form.html.haml +++ b/app/views/public/m_odr_files/_form.html.haml @@ -1,6 +1,5 @@ =semantic_form_for [:public, @m_odr_file], :remote => false do |f| - -if current_admin.id == 1 - =debug f.object.errors.messages + .qi_row .qi_pannel.qi_plain.padding =f.inputs do @@ -12,20 +11,26 @@ -if f.object.m_odr_file_type_id == 2 - %table.m_odr_file_products_form.form-table + %table.m_odr_file_products_form.form-table{:style => "width:100%;"} = f.input :buy_at, :label => "Date de l'achat",:as => :string, :input_html => {:autocomplete => "off", :class => "year_date_picker"} - -if true - %p= public_link_to_add_fields ic(:plus)+" Ajouter un ou plusieurs pneus", f, :m_odr_file_products + =f.semantic_fields_for :m_odr_file_products do |form| =render :partial => "public/m_odr_file_products/form", :locals => {:form => form} - + + -if true + %p= public_link_to_add_fields ic(:plus)+" Ajouter un ou plusieurs pneus", f, :m_odr_file_products + + %br + %br + + -else - %table.m_odr_file_roulages_form.form-table + %table.m_odr_file_roulages_form.form-table{:style => "width:100%;"} =f.semantic_fields_for :m_odr_file_roulages do |form| =render :partial => "public/m_odr_file_roulages/form", :locals => {:form => form} @@ -35,8 +40,7 @@ - .large_actions - .actions=f.submit "sauvegarder", :class => "btn btn-primary" + %center=f.submit "sauvegarder", :class => "btn btn-primary" %br %br diff --git a/app/views/public/m_odr_files/new.html.haml b/app/views/public/m_odr_files/new.html.haml index f506c2d..eea77a0 100644 --- a/app/views/public/m_odr_files/new.html.haml +++ b/app/views/public/m_odr_files/new.html.haml @@ -1,5 +1,5 @@ -.center_content +.center_content{:style => "max-width:700px;"} -if @m_odr_file.m_odr_file_type_id == 1 %h1 Ajouter une facture de roulage diff --git a/app/views/public/my_account/index.html.haml b/app/views/public/my_account/index.html.haml index 4c05997..2945d54 100644 --- a/app/views/public/my_account/index.html.haml +++ b/app/views/public/my_account/index.html.haml @@ -9,94 +9,104 @@ =link_to ic(:lock)+" Modifier mon mot de passe", edit_password_public_p_customer_auths_path() .clear - .row - .col-md-6 - %h3 Mes informations personnelles - .particular_div - %p - -if current_p_customer.particular_ok? - %span.green - =ic :flag + .doc_pannel + .row + .col-md-6 + %h3 Mes informations personnelles + .particular_div + %p + -if current_p_customer.particular_ok? + %span.green + =ic :flag Adresse remplie - -else - %span.orange - =ic :flag + -else + %span.orange + =ic :flag Remplissez votre adresse pour recevoir vos stickers - -particular = current_p_customer.particular - -if particular - =particular.firstname - =particular.name - %br - -if particular.address_2? - - =particular.address_2 + -particular = current_p_customer.particular + -if particular + =particular.firstname + =particular.name %br - -if particular.address_3? + -if particular.address_2? - =particular.address_3 - %br - -if particular.cp? or particular.city? or particular.country? + =particular.address_2 + %br + -if particular.address_3? - =particular.cp + =particular.address_3 + %br + -if particular.cp? or particular.city? or particular.country? + + =particular.cp - =particular.city + =particular.city - =particular.country - %br - %p - =link_to "Modifier mes coordonnées", edit_public_particular_path(current_p_customer.particular) + =particular.country + %br + %p + =link_to "Modifier mes coordonnées", edit_public_particular_path(current_p_customer.particular) - .col-md-6 - %h3 Mon rib - .rib - -if current_p_customer.valid_m_odr_rep_rib - %p - %span.green - =ic :flag + .col-md-6 + %h3 +   + .rib + -if current_p_customer.valid_m_odr_rep_rib + %p + %span.green + =ic :flag RIB validé - -rib = current_p_customer.valid_m_odr_rep_rib + -rib = current_p_customer.valid_m_odr_rep_rib - .rib - IBAN : - =rib.iban - %br - BIC : - =rib.bic - %br - = link_to "Modifier mon rib", edit_public_m_odr_rep_rib_path(current_p_customer.m_odr_rep_ribs.first) + .rib + IBAN : + =rib.iban + %br + BIC : + =rib.bic + %br + = link_to "Modifier mon rib", edit_public_m_odr_rep_rib_path(current_p_customer.m_odr_rep_ribs.first) - -elsif current_p_customer.m_odr_rep_ribs.count > 0 - %p - %span.orange - =ic :flag + -elsif current_p_customer.m_odr_rep_ribs.count > 0 + %p + %span.orange + =ic :flag RIB en cours de validation - -rib = current_p_customer.m_odr_rep_ribs.first + -rib = current_p_customer.m_odr_rep_ribs.first - .rib - IBAN : - =rib.iban - %br - BIC : - =rib.bic + .rib + IBAN : + =rib.iban + %br + BIC : + =rib.bic - -else - %p - %span.red - =ic :flag + -else + %p + %span.red + =ic :flag RIB non renseigné - .rib= link_to "Ajouter mon rib", new_public_m_odr_rep_rib_path() + .rib= link_to "Ajouter mon rib", new_public_m_odr_rep_rib_path() .doc_pannel + .right + =c = current_p_customer.m_odr_primes.where(:state => "Virement envoyé").count + -if c > 1 + primes obtenues sur 5 pour 2020 + -else + prime obtenue sur 5 pour 2020 + + %h3 Mes primes -if current_p_customer.m_odr_primes.count > 0 %table.table @@ -109,7 +119,7 @@ .doc_pannel - %h3 Mes factures d'achat + %h3 Mes factures de pneus -if m_odr_files = current_p_customer.m_odr_files.where(:m_odr_file_type_id => 2) and m_odr_files.count > 0 %table.table =render m_odr_files diff --git a/app/views/public/organisateurs/show.html.haml b/app/views/public/organisateurs/show.html.haml index 74189a0..3e4a5aa 100644 --- a/app/views/public/organisateurs/show.html.haml +++ b/app/views/public/organisateurs/show.html.haml @@ -1,11 +1,23 @@ .center_content .organisateur_show - %h1 + -img = "" + -img = @organisateur.logo.file.large.medium.url if @organisateur.logo + + =image_tag img, :class => "organisateur_logo" + + :scss + .organisateur_logo{ + float:right; + width:150px; + margin-right:10px; + } + %h1{:style => "text-align:left !important;"} + %br =@organisateur.name - %p.localisation - + %p.localisation{:style => "text-align:center !important;"} + =#@organisateur.address2 =#@organisateur.address3 if @organisateur.address3? =@organisateur.cp @@ -13,9 +25,12 @@ =@organisateur.country .clear + %br + + -img = "" - -img = @organisateur.logo.file.large.medium.url if @organisateur.logo + -img = @organisateur.image_file.file.large.medium.url if @organisateur.image_file =image_tag img, :class => "organisateur_img" .description diff --git a/app/views/public/p_customer_auths/edit_password.haml b/app/views/public/p_customer_auths/edit_password.haml index a71bd26..44829ab 100644 --- a/app/views/public/p_customer_auths/edit_password.haml +++ b/app/views/public/p_customer_auths/edit_password.haml @@ -1,4 +1,4 @@ -.center_content +.center_content{:style => "max-width:600px;"} %h1 Modifier mon mot de passe @@ -10,7 +10,7 @@ =f.input :password_confirmation, :label => "Confirmation :", :as => :password - = submit_tag qit("mettre à jour", "Mettre à jour >"), :class => "btn btn-primary order_button" + %center= submit_tag qit("mettre à jour", "Mettre à jour >"), :class => "btn btn-primary order_button" diff --git a/db/migrate/20200609225443_add_m_odr_file_to_mail_hists.rb b/db/migrate/20200609225443_add_m_odr_file_to_mail_hists.rb new file mode 100644 index 0000000..cf140bb --- /dev/null +++ b/db/migrate/20200609225443_add_m_odr_file_to_mail_hists.rb @@ -0,0 +1,5 @@ +class AddMOdrFileToMailHists < ActiveRecord::Migration[6.0] + def change + add_column :mail_hists, :m_odr_file_id, :integer + end +end diff --git a/db/migrate/20200611051849_add_import_infos_to_p_customers.rb b/db/migrate/20200611051849_add_import_infos_to_p_customers.rb new file mode 100644 index 0000000..8fbdc85 --- /dev/null +++ b/db/migrate/20200611051849_add_import_infos_to_p_customers.rb @@ -0,0 +1,41 @@ +class AddImportInfosToPCustomers < ActiveRecord::Migration[6.0] + def change + add_column :p_customers, :past_id, :integer + add_column :p_customers, :imp_cp, :string + add_column :p_customers, :imp_country, :string + add_column :p_customers, :imp_ref, :string + add_column :p_customers, :imp_email, :string + add_column :p_customers, :imp_firstname, :string + add_column :p_customers, :imp_name, :string + add_column :p_customers, :imp_fonction, :string + add_column :p_customers, :imp_organisme, :string + add_column :p_customers, :imp_address, :string + add_column :p_customers, :imp_cp2, :string + add_column :p_customers, :imp_city, :string + add_column :p_customers, :imp_tel, :string + add_column :p_customers, :imp_portable, :string + add_column :p_customers, :imp_lien, :string + add_column :p_customers, :imp_comment, :string + add_column :p_customers, :imp_iban, :string + add_column :p_customers, :imp_bic, :string + add_column :p_customers, :imp_circuit_1, :integer + add_column :p_customers, :imp_circuit_2, :integer + add_column :p_customers, :imp_circuit_3, :integer + add_column :p_customers, :imp_ecran, :string + add_column :p_customers, :imp_partenaire, :string + add_column :p_customers, :imp_blocage, :string + add_column :p_customers, :imp_valid, :string + add_column :p_customers, :imp_user_valid, :string + add_column :p_customers, :imp_offre, :string + add_column :p_customers, :imp_info, :string + add_column :p_customers, :imp_cgu, :string + add_column :p_customers, :imp_test, :string + add_column :p_customers, :imp_stickers, :string + add_column :p_customers, :imp_npai, :string + add_column :p_customers, :npai, :boolean, :default => false + add_column :p_customers, :imp_relance_adresse, :string + add_column :p_customers, :imp_demande_info, :string + add_column :p_customers, :imp_creation, :date + add_column :p_customers, :imp_modification, :date + end +end diff --git a/db/schema.rb b/db/schema.rb index 0d8bd23..4c25853 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2020_06_02_230712) do +ActiveRecord::Schema.define(version: 2020_06_11_051849) do create_table "accounting_zones", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4", force: :cascade do |t| t.string "name" @@ -1119,6 +1119,7 @@ ActiveRecord::Schema.define(version: 2020_06_02_230712) do t.datetime "updated_at", precision: 6, null: false t.integer "p_customer_id" t.integer "m_odr_prime_id" + t.integer "m_odr_file_id" t.index ["lang_site_id"], name: "index_mail_hists_on_lang_site_id" t.index ["m_odr_id"], name: "index_mail_hists_on_m_odr_id" t.index ["m_odr_rep_id"], name: "index_mail_hists_on_m_odr_rep_id" @@ -1674,6 +1675,43 @@ ActiveRecord::Schema.define(version: 2020_06_02_230712) do t.integer "nbr_fact_pneus_unused", default: 0 t.boolean "cgv" t.boolean "rgpd" + t.integer "past_id" + t.string "imp_cp" + t.string "imp_country" + t.string "imp_ref" + t.string "imp_email" + t.string "imp_firstname" + t.string "imp_name" + t.string "imp_fonction" + t.string "imp_organisme" + t.string "imp_address" + t.string "imp_cp2" + t.string "imp_city" + t.string "imp_tel" + t.string "imp_portable" + t.string "imp_lien" + t.string "imp_comment" + t.string "imp_iban" + t.string "imp_bic" + t.integer "imp_circuit_1" + t.integer "imp_circuit_2" + t.integer "imp_circuit_3" + t.string "imp_ecran" + t.string "imp_partenaire" + t.string "imp_blocage" + t.string "imp_valid" + t.string "imp_user_valid" + t.string "imp_offre" + t.string "imp_info" + t.string "imp_cgu" + t.string "imp_test" + t.string "imp_stickers" + t.string "imp_npai" + t.boolean "npai", default: false + t.string "imp_relance_adresse" + t.string "imp_demande_info" + t.date "imp_creation" + t.date "imp_modification" t.index ["market_discount_id"], name: "index_p_customers_on_market_discount_id" t.index ["p_customer_cat_id"], name: "index_p_customers_on_p_customer_cat_id" t.index ["particular_id"], name: "index_p_customers_on_particular_id" diff --git a/import_photos/CIRCUITS/LOGO/1.png b/import_photos/CIRCUITS/LOGO/1.png new file mode 100644 index 0000000..c2079a8 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/1.png differ diff --git a/import_photos/CIRCUITS/LOGO/10.png b/import_photos/CIRCUITS/LOGO/10.png new file mode 100644 index 0000000..f8f0bec Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/10.png differ diff --git a/import_photos/CIRCUITS/LOGO/11.jpg b/import_photos/CIRCUITS/LOGO/11.jpg new file mode 100644 index 0000000..4eb5fde Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/11.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/12.jpg b/import_photos/CIRCUITS/LOGO/12.jpg new file mode 100644 index 0000000..9ec81f1 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/12.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/13.JPG b/import_photos/CIRCUITS/LOGO/13.JPG new file mode 100644 index 0000000..2245342 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/13.JPG differ diff --git a/import_photos/CIRCUITS/LOGO/14.jpg b/import_photos/CIRCUITS/LOGO/14.jpg new file mode 100644 index 0000000..0c6393d Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/14.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/15.jpg b/import_photos/CIRCUITS/LOGO/15.jpg new file mode 100644 index 0000000..234aefc Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/15.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/16.jpg b/import_photos/CIRCUITS/LOGO/16.jpg new file mode 100644 index 0000000..d75fbf9 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/16.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/17.png b/import_photos/CIRCUITS/LOGO/17.png new file mode 100644 index 0000000..110f6dd Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/17.png differ diff --git a/import_photos/CIRCUITS/LOGO/18.jpg b/import_photos/CIRCUITS/LOGO/18.jpg new file mode 100644 index 0000000..9ae4b58 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/18.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/19.png b/import_photos/CIRCUITS/LOGO/19.png new file mode 100644 index 0000000..10b3265 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/19.png differ diff --git a/import_photos/CIRCUITS/LOGO/2.jpg b/import_photos/CIRCUITS/LOGO/2.jpg new file mode 100644 index 0000000..fb05f53 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/2.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/20.png b/import_photos/CIRCUITS/LOGO/20.png new file mode 100644 index 0000000..307eea0 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/20.png differ diff --git a/import_photos/CIRCUITS/LOGO/21.png b/import_photos/CIRCUITS/LOGO/21.png new file mode 100644 index 0000000..c7a8c60 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/21.png differ diff --git a/import_photos/CIRCUITS/LOGO/22.png b/import_photos/CIRCUITS/LOGO/22.png new file mode 100644 index 0000000..1ffb394 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/22.png differ diff --git a/import_photos/CIRCUITS/LOGO/23.jpg b/import_photos/CIRCUITS/LOGO/23.jpg new file mode 100644 index 0000000..cd28d91 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/23.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/24.png b/import_photos/CIRCUITS/LOGO/24.png new file mode 100644 index 0000000..caa9c11 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/24.png differ diff --git a/import_photos/CIRCUITS/LOGO/25.png b/import_photos/CIRCUITS/LOGO/25.png new file mode 100644 index 0000000..caae1db Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/25.png differ diff --git a/import_photos/CIRCUITS/LOGO/26.jpg b/import_photos/CIRCUITS/LOGO/26.jpg new file mode 100644 index 0000000..c7701d6 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/26.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/27.png b/import_photos/CIRCUITS/LOGO/27.png new file mode 100644 index 0000000..30a3996 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/27.png differ diff --git a/import_photos/CIRCUITS/LOGO/28.png b/import_photos/CIRCUITS/LOGO/28.png new file mode 100644 index 0000000..5af5899 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/28.png differ diff --git a/import_photos/CIRCUITS/LOGO/29.png b/import_photos/CIRCUITS/LOGO/29.png new file mode 100644 index 0000000..38ed319 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/29.png differ diff --git a/import_photos/CIRCUITS/LOGO/3.jpg b/import_photos/CIRCUITS/LOGO/3.jpg new file mode 100644 index 0000000..158bcf4 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/3.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/30.png b/import_photos/CIRCUITS/LOGO/30.png new file mode 100644 index 0000000..bd23e05 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/30.png differ diff --git a/import_photos/CIRCUITS/LOGO/31.png b/import_photos/CIRCUITS/LOGO/31.png new file mode 100644 index 0000000..5c701e1 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/31.png differ diff --git a/import_photos/CIRCUITS/LOGO/32.jpg b/import_photos/CIRCUITS/LOGO/32.jpg new file mode 100644 index 0000000..d0a5060 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/32.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/33.png b/import_photos/CIRCUITS/LOGO/33.png new file mode 100644 index 0000000..6e78d37 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/33.png differ diff --git a/import_photos/CIRCUITS/LOGO/34.png b/import_photos/CIRCUITS/LOGO/34.png new file mode 100644 index 0000000..6fb7c43 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/34.png differ diff --git a/import_photos/CIRCUITS/LOGO/35.jpg b/import_photos/CIRCUITS/LOGO/35.jpg new file mode 100644 index 0000000..875397d Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/35.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/36.jpg b/import_photos/CIRCUITS/LOGO/36.jpg new file mode 100644 index 0000000..7197095 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/36.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/37.png b/import_photos/CIRCUITS/LOGO/37.png new file mode 100644 index 0000000..241dfbd Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/37.png differ diff --git a/import_photos/CIRCUITS/LOGO/38.png b/import_photos/CIRCUITS/LOGO/38.png new file mode 100644 index 0000000..ca43645 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/38.png differ diff --git a/import_photos/CIRCUITS/LOGO/39.png b/import_photos/CIRCUITS/LOGO/39.png new file mode 100644 index 0000000..b2fb525 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/39.png differ diff --git a/import_photos/CIRCUITS/LOGO/4.png b/import_photos/CIRCUITS/LOGO/4.png new file mode 100644 index 0000000..fe6187d Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/4.png differ diff --git a/import_photos/CIRCUITS/LOGO/40.jpg b/import_photos/CIRCUITS/LOGO/40.jpg new file mode 100644 index 0000000..a326410 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/40.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/41.jpg b/import_photos/CIRCUITS/LOGO/41.jpg new file mode 100644 index 0000000..c14986c Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/41.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/42.JPG b/import_photos/CIRCUITS/LOGO/42.JPG new file mode 100644 index 0000000..dac3c7d Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/42.JPG differ diff --git a/import_photos/CIRCUITS/LOGO/43.jpg b/import_photos/CIRCUITS/LOGO/43.jpg new file mode 100644 index 0000000..b4bfbce Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/43.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/44.jpg b/import_photos/CIRCUITS/LOGO/44.jpg new file mode 100644 index 0000000..cbcde16 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/44.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/45.png b/import_photos/CIRCUITS/LOGO/45.png new file mode 100644 index 0000000..f049225 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/45.png differ diff --git a/import_photos/CIRCUITS/LOGO/46.jpg b/import_photos/CIRCUITS/LOGO/46.jpg new file mode 100644 index 0000000..25cb97f Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/46.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/47.jpg b/import_photos/CIRCUITS/LOGO/47.jpg new file mode 100644 index 0000000..779547a Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/47.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/48.png b/import_photos/CIRCUITS/LOGO/48.png new file mode 100644 index 0000000..e842825 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/48.png differ diff --git a/import_photos/CIRCUITS/LOGO/49.bmp b/import_photos/CIRCUITS/LOGO/49.bmp new file mode 100644 index 0000000..2a44ba1 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/49.bmp differ diff --git a/import_photos/CIRCUITS/LOGO/5.jpg b/import_photos/CIRCUITS/LOGO/5.jpg new file mode 100644 index 0000000..daf7b14 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/5.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/6.jpg b/import_photos/CIRCUITS/LOGO/6.jpg new file mode 100644 index 0000000..c8336c1 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/6.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/7.jpg b/import_photos/CIRCUITS/LOGO/7.jpg new file mode 100644 index 0000000..68cb515 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/7.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/8.jpg b/import_photos/CIRCUITS/LOGO/8.jpg new file mode 100644 index 0000000..bc6fcf3 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/8.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/9.jpg b/import_photos/CIRCUITS/LOGO/9.jpg new file mode 100644 index 0000000..d7ee3a2 Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/9.jpg differ diff --git a/import_photos/CIRCUITS/LOGO/Thumbs.db b/import_photos/CIRCUITS/LOGO/Thumbs.db new file mode 100644 index 0000000..410690c Binary files /dev/null and b/import_photos/CIRCUITS/LOGO/Thumbs.db differ diff --git a/import_photos/CIRCUITS/PHOTOS/1.jpg b/import_photos/CIRCUITS/PHOTOS/1.jpg new file mode 100644 index 0000000..e5e2a34 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/1.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/10.jpg b/import_photos/CIRCUITS/PHOTOS/10.jpg new file mode 100644 index 0000000..6e05938 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/10.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/11.jpg b/import_photos/CIRCUITS/PHOTOS/11.jpg new file mode 100644 index 0000000..bb5b086 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/11.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/12.jpg b/import_photos/CIRCUITS/PHOTOS/12.jpg new file mode 100644 index 0000000..0067bb2 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/12.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/13.jpg b/import_photos/CIRCUITS/PHOTOS/13.jpg new file mode 100644 index 0000000..a0e2d22 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/13.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/14.jpg b/import_photos/CIRCUITS/PHOTOS/14.jpg new file mode 100644 index 0000000..3cbfd98 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/14.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/15.jpg b/import_photos/CIRCUITS/PHOTOS/15.jpg new file mode 100644 index 0000000..b7a8048 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/15.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/16.jpg b/import_photos/CIRCUITS/PHOTOS/16.jpg new file mode 100644 index 0000000..6cc33bf Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/16.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/16_.jpg b/import_photos/CIRCUITS/PHOTOS/16_.jpg new file mode 100644 index 0000000..4053041 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/16_.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/17.jpg b/import_photos/CIRCUITS/PHOTOS/17.jpg new file mode 100644 index 0000000..526084d Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/17.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/18.jpg b/import_photos/CIRCUITS/PHOTOS/18.jpg new file mode 100644 index 0000000..f01783a Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/18.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/19.jpg b/import_photos/CIRCUITS/PHOTOS/19.jpg new file mode 100644 index 0000000..11a47b8 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/19.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/1_.jpg b/import_photos/CIRCUITS/PHOTOS/1_.jpg new file mode 100644 index 0000000..f49c522 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/1_.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/2.jpg b/import_photos/CIRCUITS/PHOTOS/2.jpg new file mode 100644 index 0000000..623efbb Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/2.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/20.jpg b/import_photos/CIRCUITS/PHOTOS/20.jpg new file mode 100644 index 0000000..ad5f827 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/20.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/21.jpg b/import_photos/CIRCUITS/PHOTOS/21.jpg new file mode 100644 index 0000000..c84e36e Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/21.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/22.jpg b/import_photos/CIRCUITS/PHOTOS/22.jpg new file mode 100644 index 0000000..01b4e6a Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/22.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/23.jpg b/import_photos/CIRCUITS/PHOTOS/23.jpg new file mode 100644 index 0000000..eb6c2c0 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/23.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/24.jpg b/import_photos/CIRCUITS/PHOTOS/24.jpg new file mode 100644 index 0000000..32662b3 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/24.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/25.jpg b/import_photos/CIRCUITS/PHOTOS/25.jpg new file mode 100644 index 0000000..34919b8 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/25.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/26.jpg b/import_photos/CIRCUITS/PHOTOS/26.jpg new file mode 100644 index 0000000..b06c943 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/26.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/27.jpg b/import_photos/CIRCUITS/PHOTOS/27.jpg new file mode 100644 index 0000000..ee11f47 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/27.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/28.jpg b/import_photos/CIRCUITS/PHOTOS/28.jpg new file mode 100644 index 0000000..c9e8ac2 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/28.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/28_.jpg b/import_photos/CIRCUITS/PHOTOS/28_.jpg new file mode 100644 index 0000000..21091c7 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/28_.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/29.jpg b/import_photos/CIRCUITS/PHOTOS/29.jpg new file mode 100644 index 0000000..785eec8 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/29.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/2_.jpg b/import_photos/CIRCUITS/PHOTOS/2_.jpg new file mode 100644 index 0000000..bc8ff0b Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/2_.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/3.png b/import_photos/CIRCUITS/PHOTOS/3.png new file mode 100644 index 0000000..d6ae35d Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/3.png differ diff --git a/import_photos/CIRCUITS/PHOTOS/30.jpg b/import_photos/CIRCUITS/PHOTOS/30.jpg new file mode 100644 index 0000000..c2ecd9f Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/30.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/31.jpg b/import_photos/CIRCUITS/PHOTOS/31.jpg new file mode 100644 index 0000000..1d2b423 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/31.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/32.jpg b/import_photos/CIRCUITS/PHOTOS/32.jpg new file mode 100644 index 0000000..53a4acb Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/32.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/35.jpg b/import_photos/CIRCUITS/PHOTOS/35.jpg new file mode 100644 index 0000000..154a526 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/35.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/36.jpg b/import_photos/CIRCUITS/PHOTOS/36.jpg new file mode 100644 index 0000000..87bd0dc Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/36.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/37.jpg b/import_photos/CIRCUITS/PHOTOS/37.jpg new file mode 100644 index 0000000..d2b7c03 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/37.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/38.jpg b/import_photos/CIRCUITS/PHOTOS/38.jpg new file mode 100644 index 0000000..e4c470f Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/38.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/39.jpg b/import_photos/CIRCUITS/PHOTOS/39.jpg new file mode 100644 index 0000000..ceb928b Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/39.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/4.jpg b/import_photos/CIRCUITS/PHOTOS/4.jpg new file mode 100644 index 0000000..124be6c Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/4.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/43.jpg b/import_photos/CIRCUITS/PHOTOS/43.jpg new file mode 100644 index 0000000..ef109d7 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/43.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/44.jpg b/import_photos/CIRCUITS/PHOTOS/44.jpg new file mode 100644 index 0000000..12b6e4b Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/44.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/46.jpg b/import_photos/CIRCUITS/PHOTOS/46.jpg new file mode 100644 index 0000000..92f47b1 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/46.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/47.jpg b/import_photos/CIRCUITS/PHOTOS/47.jpg new file mode 100644 index 0000000..2ee21df Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/47.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/47_.jpg b/import_photos/CIRCUITS/PHOTOS/47_.jpg new file mode 100644 index 0000000..fb0168d Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/47_.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/5.jpg b/import_photos/CIRCUITS/PHOTOS/5.jpg new file mode 100644 index 0000000..c43a6a0 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/5.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/6.jpg b/import_photos/CIRCUITS/PHOTOS/6.jpg new file mode 100644 index 0000000..5c6d154 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/6.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/6_.jpg b/import_photos/CIRCUITS/PHOTOS/6_.jpg new file mode 100644 index 0000000..0648164 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/6_.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/7.jpg b/import_photos/CIRCUITS/PHOTOS/7.jpg new file mode 100644 index 0000000..df278bf Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/7.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/8.jpg b/import_photos/CIRCUITS/PHOTOS/8.jpg new file mode 100644 index 0000000..17a8029 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/8.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/8_.jpg b/import_photos/CIRCUITS/PHOTOS/8_.jpg new file mode 100644 index 0000000..975a5b4 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/8_.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/9.jpg b/import_photos/CIRCUITS/PHOTOS/9.jpg new file mode 100644 index 0000000..5ea9f21 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/9.jpg differ diff --git a/import_photos/CIRCUITS/PHOTOS/Thumbs.db b/import_photos/CIRCUITS/PHOTOS/Thumbs.db new file mode 100644 index 0000000..6ea1b33 Binary files /dev/null and b/import_photos/CIRCUITS/PHOTOS/Thumbs.db differ diff --git a/import_photos/ORGANISATEURS/LOGO/1.png b/import_photos/ORGANISATEURS/LOGO/1.png new file mode 100644 index 0000000..edda635 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/1.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/10.jpg b/import_photos/ORGANISATEURS/LOGO/10.jpg new file mode 100644 index 0000000..b79f3c4 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/10.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/11.jpg b/import_photos/ORGANISATEURS/LOGO/11.jpg new file mode 100644 index 0000000..15c4482 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/11.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/12.png b/import_photos/ORGANISATEURS/LOGO/12.png new file mode 100644 index 0000000..5f58daf Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/12.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/13.png b/import_photos/ORGANISATEURS/LOGO/13.png new file mode 100644 index 0000000..72e6ddc Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/13.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/14.gif b/import_photos/ORGANISATEURS/LOGO/14.gif new file mode 100644 index 0000000..26adfbe Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/14.gif differ diff --git a/import_photos/ORGANISATEURS/LOGO/15.png b/import_photos/ORGANISATEURS/LOGO/15.png new file mode 100644 index 0000000..0cf6a5e Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/15.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/16.png b/import_photos/ORGANISATEURS/LOGO/16.png new file mode 100644 index 0000000..f414186 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/16.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/17.png b/import_photos/ORGANISATEURS/LOGO/17.png new file mode 100644 index 0000000..f414414 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/17.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/18.png b/import_photos/ORGANISATEURS/LOGO/18.png new file mode 100644 index 0000000..259cffa Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/18.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/19.png b/import_photos/ORGANISATEURS/LOGO/19.png new file mode 100644 index 0000000..4311e43 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/19.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/2.png b/import_photos/ORGANISATEURS/LOGO/2.png new file mode 100644 index 0000000..58e6f83 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/2.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/20.png b/import_photos/ORGANISATEURS/LOGO/20.png new file mode 100644 index 0000000..001e0af Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/20.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/21.jpg b/import_photos/ORGANISATEURS/LOGO/21.jpg new file mode 100644 index 0000000..28d40b3 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/21.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/22.jpg b/import_photos/ORGANISATEURS/LOGO/22.jpg new file mode 100644 index 0000000..2a09537 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/22.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/23.jpg b/import_photos/ORGANISATEURS/LOGO/23.jpg new file mode 100644 index 0000000..7bfdf60 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/23.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/24.jpg b/import_photos/ORGANISATEURS/LOGO/24.jpg new file mode 100644 index 0000000..0079737 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/24.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/25.png b/import_photos/ORGANISATEURS/LOGO/25.png new file mode 100644 index 0000000..85acdd6 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/25.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/26.png b/import_photos/ORGANISATEURS/LOGO/26.png new file mode 100644 index 0000000..d489300 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/26.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/27.png b/import_photos/ORGANISATEURS/LOGO/27.png new file mode 100644 index 0000000..2125b45 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/27.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/28.png b/import_photos/ORGANISATEURS/LOGO/28.png new file mode 100644 index 0000000..088cd42 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/28.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/29.jpg b/import_photos/ORGANISATEURS/LOGO/29.jpg new file mode 100644 index 0000000..1293b13 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/29.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/3.jpg b/import_photos/ORGANISATEURS/LOGO/3.jpg new file mode 100644 index 0000000..7c1285c Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/3.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/30.png b/import_photos/ORGANISATEURS/LOGO/30.png new file mode 100644 index 0000000..c150828 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/30.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/31.jpg b/import_photos/ORGANISATEURS/LOGO/31.jpg new file mode 100644 index 0000000..22ffe65 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/31.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/32.jpg b/import_photos/ORGANISATEURS/LOGO/32.jpg new file mode 100644 index 0000000..ee5b109 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/32.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/33.jpg b/import_photos/ORGANISATEURS/LOGO/33.jpg new file mode 100644 index 0000000..f028876 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/33.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/34.jpg b/import_photos/ORGANISATEURS/LOGO/34.jpg new file mode 100644 index 0000000..0422710 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/34.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/35.jpg b/import_photos/ORGANISATEURS/LOGO/35.jpg new file mode 100644 index 0000000..27b899a Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/35.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/36.png b/import_photos/ORGANISATEURS/LOGO/36.png new file mode 100644 index 0000000..f29f669 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/36.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/37.jpg b/import_photos/ORGANISATEURS/LOGO/37.jpg new file mode 100644 index 0000000..409552b Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/37.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/38.png b/import_photos/ORGANISATEURS/LOGO/38.png new file mode 100644 index 0000000..0d95ac4 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/38.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/39.jpg b/import_photos/ORGANISATEURS/LOGO/39.jpg new file mode 100644 index 0000000..cd28d91 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/39.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/4.jpg b/import_photos/ORGANISATEURS/LOGO/4.jpg new file mode 100644 index 0000000..c74c34a Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/4.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/40.jpg b/import_photos/ORGANISATEURS/LOGO/40.jpg new file mode 100644 index 0000000..9d3ba6a Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/40.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/41.png b/import_photos/ORGANISATEURS/LOGO/41.png new file mode 100644 index 0000000..1644928 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/41.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/42.jpg b/import_photos/ORGANISATEURS/LOGO/42.jpg new file mode 100644 index 0000000..410093a Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/42.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/43.jpg b/import_photos/ORGANISATEURS/LOGO/43.jpg new file mode 100644 index 0000000..209b8e3 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/43.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/44.jpg b/import_photos/ORGANISATEURS/LOGO/44.jpg new file mode 100644 index 0000000..98c6331 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/44.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/45.jpg b/import_photos/ORGANISATEURS/LOGO/45.jpg new file mode 100644 index 0000000..a11df80 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/45.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/46.jpg b/import_photos/ORGANISATEURS/LOGO/46.jpg new file mode 100644 index 0000000..077f55e Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/46.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/47.jpg b/import_photos/ORGANISATEURS/LOGO/47.jpg new file mode 100644 index 0000000..5ed3c9a Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/47.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/48.png b/import_photos/ORGANISATEURS/LOGO/48.png new file mode 100644 index 0000000..00d5e0d Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/48.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/49.jpg b/import_photos/ORGANISATEURS/LOGO/49.jpg new file mode 100644 index 0000000..a301e45 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/49.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/5.jpg b/import_photos/ORGANISATEURS/LOGO/5.jpg new file mode 100644 index 0000000..c38189d Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/5.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/50.jpg b/import_photos/ORGANISATEURS/LOGO/50.jpg new file mode 100644 index 0000000..fefe17f Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/50.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/51.png b/import_photos/ORGANISATEURS/LOGO/51.png new file mode 100644 index 0000000..b5416ab Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/51.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/52.png b/import_photos/ORGANISATEURS/LOGO/52.png new file mode 100644 index 0000000..1537b21 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/52.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/53.jpg b/import_photos/ORGANISATEURS/LOGO/53.jpg new file mode 100644 index 0000000..bcb8bf9 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/53.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/54.jpg b/import_photos/ORGANISATEURS/LOGO/54.jpg new file mode 100644 index 0000000..37c2fb2 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/54.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/55.jpg b/import_photos/ORGANISATEURS/LOGO/55.jpg new file mode 100644 index 0000000..8ff6dec Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/55.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/56.png b/import_photos/ORGANISATEURS/LOGO/56.png new file mode 100644 index 0000000..b220a2b Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/56.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/57.jpg b/import_photos/ORGANISATEURS/LOGO/57.jpg new file mode 100644 index 0000000..852bbf0 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/57.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/58.png b/import_photos/ORGANISATEURS/LOGO/58.png new file mode 100644 index 0000000..96ddc80 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/58.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/59.jpg b/import_photos/ORGANISATEURS/LOGO/59.jpg new file mode 100644 index 0000000..7287be3 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/59.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/6.png b/import_photos/ORGANISATEURS/LOGO/6.png new file mode 100644 index 0000000..e916cc1 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/6.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/60.jpg b/import_photos/ORGANISATEURS/LOGO/60.jpg new file mode 100644 index 0000000..c1ef4aa Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/60.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/61.png b/import_photos/ORGANISATEURS/LOGO/61.png new file mode 100644 index 0000000..a75e7d2 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/61.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/62.jpg b/import_photos/ORGANISATEURS/LOGO/62.jpg new file mode 100644 index 0000000..27de496 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/62.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/63.png b/import_photos/ORGANISATEURS/LOGO/63.png new file mode 100644 index 0000000..610a81a Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/63.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/64.png b/import_photos/ORGANISATEURS/LOGO/64.png new file mode 100644 index 0000000..5cb8b52 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/64.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/65.jpg b/import_photos/ORGANISATEURS/LOGO/65.jpg new file mode 100644 index 0000000..f3604a7 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/65.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/66.jpg b/import_photos/ORGANISATEURS/LOGO/66.jpg new file mode 100644 index 0000000..7c2fc66 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/66.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/67.png b/import_photos/ORGANISATEURS/LOGO/67.png new file mode 100644 index 0000000..96a491b Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/67.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/68.jpg b/import_photos/ORGANISATEURS/LOGO/68.jpg new file mode 100644 index 0000000..32b16aa Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/68.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/69.png b/import_photos/ORGANISATEURS/LOGO/69.png new file mode 100644 index 0000000..3bb5bb8 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/69.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/7.jpg b/import_photos/ORGANISATEURS/LOGO/7.jpg new file mode 100644 index 0000000..80334ea Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/7.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/70.jpg b/import_photos/ORGANISATEURS/LOGO/70.jpg new file mode 100644 index 0000000..4d552d3 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/70.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/71.jpg b/import_photos/ORGANISATEURS/LOGO/71.jpg new file mode 100644 index 0000000..db814c6 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/71.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/72.png b/import_photos/ORGANISATEURS/LOGO/72.png new file mode 100644 index 0000000..ad5ad99 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/72.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/73.png b/import_photos/ORGANISATEURS/LOGO/73.png new file mode 100644 index 0000000..728447b Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/73.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/74.jpg b/import_photos/ORGANISATEURS/LOGO/74.jpg new file mode 100644 index 0000000..875397d Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/74.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/75.jpg b/import_photos/ORGANISATEURS/LOGO/75.jpg new file mode 100644 index 0000000..c8a2d5f Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/75.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/76.jpg b/import_photos/ORGANISATEURS/LOGO/76.jpg new file mode 100644 index 0000000..71528ca Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/76.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/77.JPG b/import_photos/ORGANISATEURS/LOGO/77.JPG new file mode 100644 index 0000000..df309b4 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/77.JPG differ diff --git a/import_photos/ORGANISATEURS/LOGO/78.jpg b/import_photos/ORGANISATEURS/LOGO/78.jpg new file mode 100644 index 0000000..7465b0f Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/78.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/79.png b/import_photos/ORGANISATEURS/LOGO/79.png new file mode 100644 index 0000000..e94d71c Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/79.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/8.jpg b/import_photos/ORGANISATEURS/LOGO/8.jpg new file mode 100644 index 0000000..6d5c8e8 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/8.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/80.jpg b/import_photos/ORGANISATEURS/LOGO/80.jpg new file mode 100644 index 0000000..59d72a6 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/80.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/81.jpg b/import_photos/ORGANISATEURS/LOGO/81.jpg new file mode 100644 index 0000000..80ade81 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/81.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/82.jpg b/import_photos/ORGANISATEURS/LOGO/82.jpg new file mode 100644 index 0000000..91adbae Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/82.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/83.png b/import_photos/ORGANISATEURS/LOGO/83.png new file mode 100644 index 0000000..d64cfbe Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/83.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/84.jpg b/import_photos/ORGANISATEURS/LOGO/84.jpg new file mode 100644 index 0000000..779547a Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/84.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/85.png b/import_photos/ORGANISATEURS/LOGO/85.png new file mode 100644 index 0000000..38a87fb Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/85.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/86.jpg b/import_photos/ORGANISATEURS/LOGO/86.jpg new file mode 100644 index 0000000..3492a55 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/86.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/87.jpg b/import_photos/ORGANISATEURS/LOGO/87.jpg new file mode 100644 index 0000000..d8e9208 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/87.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/88.jpg b/import_photos/ORGANISATEURS/LOGO/88.jpg new file mode 100644 index 0000000..bfa8d15 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/88.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/89.jpg b/import_photos/ORGANISATEURS/LOGO/89.jpg new file mode 100644 index 0000000..c40be6e Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/89.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/9.jpg b/import_photos/ORGANISATEURS/LOGO/9.jpg new file mode 100644 index 0000000..0c6b23b Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/9.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/90.jpg b/import_photos/ORGANISATEURS/LOGO/90.jpg new file mode 100644 index 0000000..5cd069b Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/90.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/91.png b/import_photos/ORGANISATEURS/LOGO/91.png new file mode 100644 index 0000000..6415f6c Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/91.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/92.JPG b/import_photos/ORGANISATEURS/LOGO/92.JPG new file mode 100644 index 0000000..baaea5d Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/92.JPG differ diff --git a/import_photos/ORGANISATEURS/LOGO/93.png b/import_photos/ORGANISATEURS/LOGO/93.png new file mode 100644 index 0000000..9d64493 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/93.png differ diff --git a/import_photos/ORGANISATEURS/LOGO/94.jpg b/import_photos/ORGANISATEURS/LOGO/94.jpg new file mode 100644 index 0000000..0ae0257 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/94.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/95.JPG b/import_photos/ORGANISATEURS/LOGO/95.JPG new file mode 100644 index 0000000..d9aaecb Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/95.JPG differ diff --git a/import_photos/ORGANISATEURS/LOGO/96.jpg b/import_photos/ORGANISATEURS/LOGO/96.jpg new file mode 100644 index 0000000..82943ac Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/96.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/97.jpg b/import_photos/ORGANISATEURS/LOGO/97.jpg new file mode 100644 index 0000000..d447892 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/97.jpg differ diff --git a/import_photos/ORGANISATEURS/LOGO/98.JPG b/import_photos/ORGANISATEURS/LOGO/98.JPG new file mode 100644 index 0000000..2245342 Binary files /dev/null and b/import_photos/ORGANISATEURS/LOGO/98.JPG differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/11.jpg b/import_photos/ORGANISATEURS/PHOTOS/11.jpg new file mode 100644 index 0000000..6f7855e Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/11.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/12.jpeg b/import_photos/ORGANISATEURS/PHOTOS/12.jpeg new file mode 100644 index 0000000..789ff71 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/12.jpeg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/12_.jpg b/import_photos/ORGANISATEURS/PHOTOS/12_.jpg new file mode 100644 index 0000000..2fbdd59 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/12_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/15.jpg b/import_photos/ORGANISATEURS/PHOTOS/15.jpg new file mode 100644 index 0000000..3ba42a3 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/15.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/15_.jpg b/import_photos/ORGANISATEURS/PHOTOS/15_.jpg new file mode 100644 index 0000000..6c390d6 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/15_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/16.jpg b/import_photos/ORGANISATEURS/PHOTOS/16.jpg new file mode 100644 index 0000000..e06c37d Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/16.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/17.jpg b/import_photos/ORGANISATEURS/PHOTOS/17.jpg new file mode 100644 index 0000000..db16b7e Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/17.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/17_.jpg b/import_photos/ORGANISATEURS/PHOTOS/17_.jpg new file mode 100644 index 0000000..9848fc5 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/17_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/18.jpg b/import_photos/ORGANISATEURS/PHOTOS/18.jpg new file mode 100644 index 0000000..1d3eae9 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/18.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/19.jpg b/import_photos/ORGANISATEURS/PHOTOS/19.jpg new file mode 100644 index 0000000..e879a2c Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/19.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/19_.jpg b/import_photos/ORGANISATEURS/PHOTOS/19_.jpg new file mode 100644 index 0000000..f72ccdf Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/19_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/20.JPG b/import_photos/ORGANISATEURS/PHOTOS/20.JPG new file mode 100644 index 0000000..e12725f Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/20.JPG differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/21.jpg b/import_photos/ORGANISATEURS/PHOTOS/21.jpg new file mode 100644 index 0000000..2d1696b Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/21.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/21_.jpg b/import_photos/ORGANISATEURS/PHOTOS/21_.jpg new file mode 100644 index 0000000..e7511cc Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/21_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/22.jpg b/import_photos/ORGANISATEURS/PHOTOS/22.jpg new file mode 100644 index 0000000..8bf7556 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/22.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/22_.jpg b/import_photos/ORGANISATEURS/PHOTOS/22_.jpg new file mode 100644 index 0000000..2371a64 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/22_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/23.jpg b/import_photos/ORGANISATEURS/PHOTOS/23.jpg new file mode 100644 index 0000000..131018e Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/23.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/23_.jpg b/import_photos/ORGANISATEURS/PHOTOS/23_.jpg new file mode 100644 index 0000000..b239f99 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/23_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/24.jpg b/import_photos/ORGANISATEURS/PHOTOS/24.jpg new file mode 100644 index 0000000..f64b661 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/24.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/24_.jpg b/import_photos/ORGANISATEURS/PHOTOS/24_.jpg new file mode 100644 index 0000000..b6134e1 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/24_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/25.png b/import_photos/ORGANISATEURS/PHOTOS/25.png new file mode 100644 index 0000000..991e125 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/25.png differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/27.jpg b/import_photos/ORGANISATEURS/PHOTOS/27.jpg new file mode 100644 index 0000000..af00266 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/27.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/27_.jpg b/import_photos/ORGANISATEURS/PHOTOS/27_.jpg new file mode 100644 index 0000000..17a738a Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/27_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/28.jpg b/import_photos/ORGANISATEURS/PHOTOS/28.jpg new file mode 100644 index 0000000..34f5ccd Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/28.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/29.jpg b/import_photos/ORGANISATEURS/PHOTOS/29.jpg new file mode 100644 index 0000000..e47fdc9 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/29.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/29_.jpg b/import_photos/ORGANISATEURS/PHOTOS/29_.jpg new file mode 100644 index 0000000..7ea7c5d Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/29_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/3.jpg b/import_photos/ORGANISATEURS/PHOTOS/3.jpg new file mode 100644 index 0000000..4b2b5e7 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/3.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/30.jpg b/import_photos/ORGANISATEURS/PHOTOS/30.jpg new file mode 100644 index 0000000..7af88a3 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/30.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/33.jpg b/import_photos/ORGANISATEURS/PHOTOS/33.jpg new file mode 100644 index 0000000..88e2780 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/33.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/33_.jpg b/import_photos/ORGANISATEURS/PHOTOS/33_.jpg new file mode 100644 index 0000000..b72e85e Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/33_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/34.jpg b/import_photos/ORGANISATEURS/PHOTOS/34.jpg new file mode 100644 index 0000000..d043ece Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/34.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/36.jpg b/import_photos/ORGANISATEURS/PHOTOS/36.jpg new file mode 100644 index 0000000..1d1b8fd Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/36.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/37.jpg b/import_photos/ORGANISATEURS/PHOTOS/37.jpg new file mode 100644 index 0000000..9f8c14d Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/37.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/38.JPG b/import_photos/ORGANISATEURS/PHOTOS/38.JPG new file mode 100644 index 0000000..243a7d4 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/38.JPG differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/39.jpg b/import_photos/ORGANISATEURS/PHOTOS/39.jpg new file mode 100644 index 0000000..e4a95f2 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/39.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/39_.jpg b/import_photos/ORGANISATEURS/PHOTOS/39_.jpg new file mode 100644 index 0000000..3edce71 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/39_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/3_.jpg b/import_photos/ORGANISATEURS/PHOTOS/3_.jpg new file mode 100644 index 0000000..6d05573 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/3_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/40.jpg b/import_photos/ORGANISATEURS/PHOTOS/40.jpg new file mode 100644 index 0000000..101ad1e Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/40.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/40_.jpg b/import_photos/ORGANISATEURS/PHOTOS/40_.jpg new file mode 100644 index 0000000..92eecdd Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/40_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/41.jpg b/import_photos/ORGANISATEURS/PHOTOS/41.jpg new file mode 100644 index 0000000..1ae0f02 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/41.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/42.jpg b/import_photos/ORGANISATEURS/PHOTOS/42.jpg new file mode 100644 index 0000000..609416e Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/42.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/42_.jpg b/import_photos/ORGANISATEURS/PHOTOS/42_.jpg new file mode 100644 index 0000000..9711e74 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/42_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/43.jpg b/import_photos/ORGANISATEURS/PHOTOS/43.jpg new file mode 100644 index 0000000..fa6b4c0 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/43.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/45.jpg b/import_photos/ORGANISATEURS/PHOTOS/45.jpg new file mode 100644 index 0000000..bf9b159 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/45.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/45_.jpg b/import_photos/ORGANISATEURS/PHOTOS/45_.jpg new file mode 100644 index 0000000..480427f Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/45_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/47.jpg b/import_photos/ORGANISATEURS/PHOTOS/47.jpg new file mode 100644 index 0000000..81a4a92 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/47.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/49.jpg b/import_photos/ORGANISATEURS/PHOTOS/49.jpg new file mode 100644 index 0000000..05ee0b2 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/49.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/50.jpg b/import_photos/ORGANISATEURS/PHOTOS/50.jpg new file mode 100644 index 0000000..d40abcf Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/50.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/52.jpg b/import_photos/ORGANISATEURS/PHOTOS/52.jpg new file mode 100644 index 0000000..36313bc Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/52.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/52_.jpg b/import_photos/ORGANISATEURS/PHOTOS/52_.jpg new file mode 100644 index 0000000..b5c81c6 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/52_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/55.jpg b/import_photos/ORGANISATEURS/PHOTOS/55.jpg new file mode 100644 index 0000000..3ec12ad Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/55.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/55_.jpg b/import_photos/ORGANISATEURS/PHOTOS/55_.jpg new file mode 100644 index 0000000..c0e2534 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/55_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/59.jpg b/import_photos/ORGANISATEURS/PHOTOS/59.jpg new file mode 100644 index 0000000..3eb566b Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/59.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/59_.jpg b/import_photos/ORGANISATEURS/PHOTOS/59_.jpg new file mode 100644 index 0000000..4a289f3 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/59_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/61.jpg b/import_photos/ORGANISATEURS/PHOTOS/61.jpg new file mode 100644 index 0000000..5dd7fbe Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/61.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/61_.jpg b/import_photos/ORGANISATEURS/PHOTOS/61_.jpg new file mode 100644 index 0000000..d412372 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/61_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/63.jpg b/import_photos/ORGANISATEURS/PHOTOS/63.jpg new file mode 100644 index 0000000..55717d6 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/63.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/68.jpg b/import_photos/ORGANISATEURS/PHOTOS/68.jpg new file mode 100644 index 0000000..104336d Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/68.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/68_.jpg b/import_photos/ORGANISATEURS/PHOTOS/68_.jpg new file mode 100644 index 0000000..83310c6 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/68_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/69.jpeg b/import_photos/ORGANISATEURS/PHOTOS/69.jpeg new file mode 100644 index 0000000..e96c698 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/69.jpeg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/69_.jpeg b/import_photos/ORGANISATEURS/PHOTOS/69_.jpeg new file mode 100644 index 0000000..83c33f0 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/69_.jpeg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/7.jpg b/import_photos/ORGANISATEURS/PHOTOS/7.jpg new file mode 100644 index 0000000..3024efa Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/7.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/70.jpg b/import_photos/ORGANISATEURS/PHOTOS/70.jpg new file mode 100644 index 0000000..6f74b16 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/70.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/73.jpg b/import_photos/ORGANISATEURS/PHOTOS/73.jpg new file mode 100644 index 0000000..a9d8ff9 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/73.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/73_.jpg b/import_photos/ORGANISATEURS/PHOTOS/73_.jpg new file mode 100644 index 0000000..1b3f656 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/73_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/74.jpg b/import_photos/ORGANISATEURS/PHOTOS/74.jpg new file mode 100644 index 0000000..75dc2db Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/74.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/74_.jpg b/import_photos/ORGANISATEURS/PHOTOS/74_.jpg new file mode 100644 index 0000000..154a526 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/74_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/75.jpg b/import_photos/ORGANISATEURS/PHOTOS/75.jpg new file mode 100644 index 0000000..dad77db Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/75.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/75_.jpg b/import_photos/ORGANISATEURS/PHOTOS/75_.jpg new file mode 100644 index 0000000..31f3e46 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/75_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/77.jpg b/import_photos/ORGANISATEURS/PHOTOS/77.jpg new file mode 100644 index 0000000..ac1fb99 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/77.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/7_.jpg b/import_photos/ORGANISATEURS/PHOTOS/7_.jpg new file mode 100644 index 0000000..e59a5cd Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/7_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/8.jpg b/import_photos/ORGANISATEURS/PHOTOS/8.jpg new file mode 100644 index 0000000..35b4e4e Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/8.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/80.jpg b/import_photos/ORGANISATEURS/PHOTOS/80.jpg new file mode 100644 index 0000000..e6f4f8e Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/80.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/80_.jpg b/import_photos/ORGANISATEURS/PHOTOS/80_.jpg new file mode 100644 index 0000000..c3c4a74 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/80_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/81.jpg b/import_photos/ORGANISATEURS/PHOTOS/81.jpg new file mode 100644 index 0000000..625ccd3 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/81.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/81_.jpg b/import_photos/ORGANISATEURS/PHOTOS/81_.jpg new file mode 100644 index 0000000..f6b650a Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/81_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/82.jpg b/import_photos/ORGANISATEURS/PHOTOS/82.jpg new file mode 100644 index 0000000..3ae46d4 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/82.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/83.jpg b/import_photos/ORGANISATEURS/PHOTOS/83.jpg new file mode 100644 index 0000000..195d29d Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/83.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/83_.jpg b/import_photos/ORGANISATEURS/PHOTOS/83_.jpg new file mode 100644 index 0000000..95e27e7 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/83_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/84.jpg b/import_photos/ORGANISATEURS/PHOTOS/84.jpg new file mode 100644 index 0000000..2ee21df Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/84.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/84_.jpg b/import_photos/ORGANISATEURS/PHOTOS/84_.jpg new file mode 100644 index 0000000..fb0168d Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/84_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/87.jpg b/import_photos/ORGANISATEURS/PHOTOS/87.jpg new file mode 100644 index 0000000..aed0294 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/87.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/87_.jpg b/import_photos/ORGANISATEURS/PHOTOS/87_.jpg new file mode 100644 index 0000000..ecc366f Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/87_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/88.jpg b/import_photos/ORGANISATEURS/PHOTOS/88.jpg new file mode 100644 index 0000000..a9c034d Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/88.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/8_.jpg b/import_photos/ORGANISATEURS/PHOTOS/8_.jpg new file mode 100644 index 0000000..4582d6e Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/8_.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/91.jpg b/import_photos/ORGANISATEURS/PHOTOS/91.jpg new file mode 100644 index 0000000..ad5c5d5 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/91.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/92.jpg b/import_photos/ORGANISATEURS/PHOTOS/92.jpg new file mode 100644 index 0000000..f98c0a4 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/92.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/94.jpg b/import_photos/ORGANISATEURS/PHOTOS/94.jpg new file mode 100644 index 0000000..ee9c750 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/94.jpg differ diff --git a/import_photos/ORGANISATEURS/PHOTOS/98.jpg b/import_photos/ORGANISATEURS/PHOTOS/98.jpg new file mode 100644 index 0000000..5a4c4e0 Binary files /dev/null and b/import_photos/ORGANISATEURS/PHOTOS/98.jpg differ diff --git a/lib/acts_as_csv_import/hook.rb b/lib/acts_as_csv_import/hook.rb index ab6502b..a11f798 100644 --- a/lib/acts_as_csv_import/hook.rb +++ b/lib/acts_as_csv_import/hook.rb @@ -21,7 +21,14 @@ module ActsAsCsvImport::Hook def self.default_import_csv(list, import_csv) list.each do |row| - n = self.new + if false + if n = self.where(:past_id => row["past_id"]).first + else + n = self.new + end + else + n = self.new + end row.each do |key, value| diff --git a/lib/tasks/qi.rake b/lib/tasks/qi.rake index 9ce1fa2..9e554c1 100644 --- a/lib/tasks/qi.rake +++ b/lib/tasks/qi.rake @@ -15,5 +15,124 @@ namespace :qi do end + + task :import_photos_organisateurs => :environment do + if false + if album = Album.where(:name => "import logos organisateurs").first + else + album = Album.create(:name => "import logos organisateurs") + end + dir = "#{Rails.root.join('import_photos','ORGANISATEURS','LOGO')}/*" + Dir[dir].sort.each do |mf| + + puts mf + + id = File.basename(mf.to_s.gsub('_',"")) + + puts id + + + if organisateur = Organisateur.where(:id => id).first + image_file = ImageFile.new(:file => File.open(mf), :album_id => album.id) + if image_file.save + organisateur.logo = image_file + organisateur.save + else + puts image_file.errors.messages + end + + end + + end + else + if album = Album.where(:name => "import photos organisateurs").first + else + album = Album.create(:name => "import photos organisateurs") + end + dir = "#{Rails.root.join('import_photos','ORGANISATEURS','PHOTOS')}/*" + Dir[dir].sort.each do |mf| + + puts mf + + id = File.basename(mf.to_s.gsub('_',"")) + + puts id + + + if organisateur = Organisateur.where(:id => id).first + image_file = ImageFile.new(:file => File.open(mf), :album_id => album.id) + if image_file.save + organisateur.image_file = image_file + organisateur.save + else + puts image_file.errors.messages + end + + end + + end + end + + end + + + task :import_photos_circuits => :environment do + if true + if album = Album.where(:name => "import logos circuits").first + else + album = Album.create(:name => "import logos circuits") + end + dir = "#{Rails.root.join('import_photos','CIRCUITS','LOGO')}/*" + Dir[dir].sort.each do |mf| + + puts mf + + id = File.basename(mf.to_s.gsub('_',"")) + + puts id + + + if organisateur = Circuit.where(:id => id).first + image_file = ImageFile.new(:file => File.open(mf), :album_id => album.id) + if image_file.save + organisateur.logo = image_file + organisateur.save + else + puts image_file.errors.messages + end + + end + + end + else + if album = Album.where(:name => "import photos circuits").first + else + album = Album.create(:name => "import photos circuits") + end + dir = "#{Rails.root.join('import_photos','CIRCUITS','PHOTOS')}/*" + Dir[dir].sort.each do |mf| + + puts mf + + id = File.basename(mf.to_s.gsub('_',"")) + + puts id + + + if organisateur = Circuit.where(:id => id).first + image_file = ImageFile.new(:file => File.open(mf), :album_id => album.id) + if image_file.save + organisateur.image_file = image_file + organisateur.save + else + puts image_file.errors.messages + end + + end + + end + end + + end end diff --git a/public/uploads/tmp/1591776513-895858005567987-0027-3522/33.jpg b/public/uploads/tmp/1591776513-895858005567987-0027-3522/33.jpg new file mode 100644 index 0000000..0f1f0cb Binary files /dev/null and b/public/uploads/tmp/1591776513-895858005567987-0027-3522/33.jpg differ diff --git a/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_33.jpg b/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_33.jpg new file mode 100644 index 0000000..5994566 Binary files /dev/null and b/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_33.jpg differ diff --git a/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_medium_33.jpg b/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_medium_33.jpg new file mode 100644 index 0000000..8a463a7 Binary files /dev/null and b/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_medium_33.jpg differ diff --git a/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_medium_small_33.jpg b/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_medium_small_33.jpg new file mode 100644 index 0000000..e57a1fa Binary files /dev/null and b/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_medium_small_33.jpg differ diff --git a/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_medium_small_thumb_33.jpg b/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_medium_small_thumb_33.jpg new file mode 100644 index 0000000..74cf5e4 Binary files /dev/null and b/public/uploads/tmp/1591776513-895858005567987-0027-3522/large_medium_small_thumb_33.jpg differ