29 lines
907 B
Plaintext
29 lines
907 B
Plaintext
%tr#p_customer{:id => p_customer.id}
|
|
%td= ic :star if p_customer.fav
|
|
%td= p_customer.code
|
|
%td= p_customer.show_name
|
|
%td
|
|
-if p_customer.particular
|
|
= p_customer.particular.cp
|
|
= p_customer.particular.city
|
|
|
|
-if false
|
|
%td
|
|
-if p_customer.particular
|
|
-t = []
|
|
- p_customer.particular.p_contacts.each do |pc|
|
|
-if pc.tel?
|
|
-t << pc.tel
|
|
=t.join(" || ")
|
|
|
|
%td{:style => "text-align:right;"}
|
|
=number_to_currency p_customer.cache_ca
|
|
HT
|
|
%td{:style => "text-align:right;"}=number_to_currency p_customer.cache_encours_th
|
|
|
|
%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)
|
|
|