[% 'Shop Customer Address' | $T8 %]
[% 'Greeting' | $T8 %]
[% HTML.escape(IMPORT.customer_greeting) %]
[% 'Firstname' | $T8 %]
[% HTML.escape(IMPORT.customer_firstname) %]
[% 'Lastname' | $T8 %]
[% HTML.escape(IMPORT.customer_lastname) %]
[% 'Company' | $T8 %]
[% HTML.escape(IMPORT.customer_company) %]
[% 'Department' | $T8 %]
[% HTML.escape(IMPORT.customer_department) %]
[% SET customer = IMPORT.customer_firstname _ ' ' _ IMPORT.customer_lastname %]
[% 'Greeting' | $T8 %]
[% L.input_tag('customer_greeting', IMPORT.customer_greeting) %]
[% 'Customer' | $T8 %]
[% L.input_tag('customer_name', customer) %]
[% 'Name 2' | $T8 %]
[% L.input_tag('customer_company', IMPORT.customer_company) %]
[% 'Name 3' | $T8 %]
[% L.input_tag('customer_department', IMPORT.customer_department) %]
[% 'Street' | $T8 %]
[% L.input_tag('customer_street', IMPORT.customer_street) %]
[% 'Zipcode' | $T8 %]
[% L.input_tag('customer_zipcode', IMPORT.customer_zipcode) %]
[% 'City' | $T8 %]
[% L.input_tag('customer_city', IMPORT.customer_city) %]
[% 'Country' | $T8 %]
[% L.input_tag('customer_country', IMPORT.customer_country) %]
[% 'Phone' | $T8 %]
[% L.input_tag('customer_phone', IMPORT.customer_phone) %]
[% 'Email' | $T8 %]
[% L.input_tag('customer_email', IMPORT.customer_email) %]
[% IF C_ADDRESS %]
[% 'Customernumber' | $T8 %]
[% C_ADDRESS.customernumber %]
[% ELSE %]
[% L.ajax_submit_tag("controller.pl?action=ShopOrder/apply_customer", "#customer", LxERP.t8("Apply customer")) %]
[% END %]