DocType: Delivery Note,% Installed,% Instalado DocType: Stock Entry,Customer or Supplier Details,Detalle de cliente o proveedor DocType: Address Template,"
Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available
{{ address_line1 }}<br>
{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}
{{ city }}<br>
{% if state %}{{ state }}<br>{% endif -%}
{% if pincode %} PIN: {{ pincode }}<br>{% endif -%}
{{ country }}<br>
{% if phone %}Phone: {{ phone }}<br>{% endif -%}
{% if fax %}Fax: {{ fax }}<br>{% endif -%}
{% if email_id %}Email: {{ email_id }}<br>{% endif -%}
","Jinja Templating y todos los campos de la Dirección ( incluyendo campos personalizados en su caso) estará disponible
{{address_line1}} & lt; br & gt;
{% if address_line2%} {{address_line2}} & lt; br & gt; { endif% -%}
{{ciudad}} & lt; br & gt;
{% if%} Estado {{Estado}} & lt; br & gt; {% endif -%} {% if
código PIN%} PIN: {{código PIN}} & lt; br & gt; {% endif -%}
{{país}} & lt; br & gt;
{% if teléfono%} Teléfono: {{teléfono}} & lt; br & gt; { % endif -%}
{% if fax%} Fax: {{fax}} & lt; br & gt; {% endif -%}
{% if email_ID%} Email: {{email_ID}} & lt; br & gt ; {% endif -%}
"