coton_app/app/views/admin/p_customers/_p_customer.html.haml
Nicolas Bally 1b60863a55 suite
2020-03-19 23:10:02 +01:00

48 lines
1.4 KiB
Plaintext

%tr#p_customer{:id => p_customer.id, :class => ("table-warning" if !p_customer.account_validated)}
-tr = {}
-tr[:particular_cp] = capture do
%td= p_customer.particular.cp if p_customer.particular
-tr[:particular_city] = capture do
%td= p_customer.particular.city if p_customer.particular
-tr[:cache_encours] = capture do
%td
-if p_customer.cache_encours < 0
%span{:style => "color:green"}=number_to_currency p_customer.cache_encours
-elsif p_customer.cache_encours > 0
%span=number_to_currency p_customer.cache_encours
-tr[:emails] = capture do
%td
-emails = []
-p_contacts = p_customer.p_contacts
-p_customer.particulars.each do |p|
-p_contacts = p_contacts + p.p_contacts
-p_contacts.uniq.each do |p_c|
-emails << p_c.email
-emails << p_customer.email
-emails = emails.uniq
=emails.size
-tr[:actions] = capture do
%td.actions
= link_to i(:"trash-o"), [:admin, p_customer], method: :delete, data: { confirm: 'Voulez-vous vraiment supprimer cet auteur ? ' } , :remote => true
= link_to i(:pencil), edit_admin_p_customer_path(p_customer), :remote => true
= link_to i(:eye), admin_p_customer_path(p_customer)
=render :partial => "qi/qi_ordered_table_object", :locals => {:tr => tr, :object => p_customer}