Order Printer te permite imprimir pedidos, facturas con marca de entrega automática, albaranes, formularios de devolución y recibos.
Los detalles de Zapiet - Recogida + Entrega sólo pueden añadirse a las facturas y albaranes.
Sigue la instrucciones de acuerdo con la versión de Order Printer que estés utilizando:
Shopify Order Printer
Añadir el modelo de factura
En Order Printer, haz clic en Plantillas y, a continuación, en Factura.
Haz clic en Duplicar.
Se abrirá la plantilla «Copia de factura 1». Desplácese hasta el final de la plantilla y encuentre el siguiente código.
If you have any questions, please send an email to <u>{{ shop.email }}</u>
Añade el siguiente código al código anterior.
{% comment %} Zapiet info {% endcomment %}
<div style="padding: 1.5em; border: 1px solid black;">
{% for attribute in order.attributes %}
{% capture key %}{{attribute | first}}{% endcapture %}
{% if key == 'Checkout-Method' %}
{% comment %}Do nothing{% endcomment %}
{% elsif key == 'Pickup-Location-Id' %}
<h3 style="margin: 0 0 1em 0;">Pickup Information</h3>
{% elsif key == 'Delivery-Location-Id' %}
<h3 style="margin: 0 0 1em 0;">Delivery Information</h3>
LocationID: {{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Company' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Address-Line-1' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-City' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Region' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Postal-Code' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Country' %}
{{ attribute | last }}<br><br>
{% endif %}
{% endfor %}
{% for attribute in order.attributes %}
{% capture key %}{{ attribute | first }}{% endcapture %}
{% if key == 'Pickup-Date' %}
Pickup Date: {{ attribute | last }}<br>
{% elsif key == 'Pickup-Time' %}
Pickup Time: {{ attribute | last }}<br>
{% elsif key == 'Delivery-Date' %}
Delivery Date: {{ attribute | last }}<br>
{% elsif key == 'Delivery-Time' %}
Delivery Time: {{ attribute | last }}<br>
{% elsif key == 'Shipping-Date' %}
Shipping Date: {{ attribute | last }}<br>
{% endif %}
{% endfor %}
</div>Haz clic en Guardar.
Sus facturas incluirán la fecha y la hora sólo si tiene activado el selector de fecha y hora.
Tu factura de recogida debe ser similar a la siguiente.
Su factura de entrega debe ser similar a la siguiente.
Su factura de envío debe ser similar a la siguiente.
Añadir la plantilla de albarán
En Order Printer, haz clic en Plantillas y, a continuación, en Albarán.
Haz clic en Duplicar.
Se abrirá la plantilla «Packing slip Copy 1». Desplácese hasta el final de la plantilla y añada el siguiente código.
{% comment %} Zapiet info {% endcomment %}
<div style="padding: 1.5em; border: 1px solid black;">
{% for attribute in order.attributes %}
{% capture key %}{{attribute | first}}{% endcapture %}
{% if key == 'Checkout-Method' %}
{% comment %}Do nothing{% endcomment %}
{% elsif key == 'Pickup-Location-Id' %}
<h3 style="margin: 0 0 1em 0;">Pickup Information</h3>
{% elsif key == 'Delivery-Location-Id' %}
<h3 style="margin: 0 0 1em 0;">Delivery Information</h3>
LocationID: {{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Company' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Address-Line-1' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-City' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Region' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Postal-Code' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Country' %}
{{ attribute | last }}<br><br>
{% endif %}
{% endfor %}
{% for attribute in order.attributes %}
{% capture key %}{{ attribute | first }}{% endcapture %}
{% if key == 'Pickup-Date' %}
Pickup Date: {{ attribute | last }}<br>
{% elsif key == 'Pickup-Time' %}
Pickup Time: {{ attribute | last }}<br>
{% elsif key == 'Delivery-Date' %}
Delivery Date: {{ attribute | last }}<br>
{% elsif key == 'Delivery-Time' %}
Delivery Time: {{ attribute | last }}<br>
{% elsif key == 'Shipping-Date' %}
Shipping Date: {{ attribute | last }}<br>
{% endif %}
{% endfor %}
</div>Haz clic en Guardar.
Sus albaranes incluirán la fecha y la hora sólo si tiene activado el selector de fecha y hora.
El albarán de recogida debe ser similar al siguiente.
El albarán de entrega debe ser similar al siguiente.
El albarán de envío debe tener un aspecto similar al que se muestra a continuación.
Order Printer [Versión anterior]
Añadir el modelo de factura
En Order Printer, haz clic en Gestionar plantillas.
Busca la factura y haga clic en Duplicar plantilla.
Se abrirá la plantilla Factura--COPY. Desplácese hasta el final de la plantilla y encuentre el siguiente código.
<p>If you have any questions, please send an email to <u>{{ shop.email }}</u></p>
Añade el siguiente código al código anterior.
{% comment %} Zapiet info {% endcomment %}
<div style="padding: 1.5em; border: 1px solid black;">
{% for attribute in attributes %}
{% capture key %}{{attribute | first}}{% endcapture %}
{% if key == 'Checkout-Method' %}
{% comment %}Do nothing{% endcomment %}
{% elsif key == 'Pickup-Location-Id' %}
<h3 style="margin: 0 0 1em 0;">Pickup Information</h3>
{% elsif key == 'Delivery-Location-Id' %}
<h3 style="margin: 0 0 1em 0;">Delivery Information</h3>
LocationID: {{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Company' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Address-Line-1' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-City' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Region' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Postal-Code' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Country' %}
{{ attribute | last }}<br><br>
{% endif %}
{% endfor %}
{% for attribute in attributes %}
{% capture key %}{{ attribute | first }}{% endcapture %}
{% if key == 'Pickup-Date' %}
Pickup Date: {{ attribute | last }}<br>
{% elsif key == 'Pickup-Time' %}
Pickup Time: {{ attribute | last }}<br>
{% elsif key == 'Delivery-Date' %}
Delivery Date: {{ attribute | last }}<br>
{% elsif key == 'Delivery-Time' %}
Delivery Time: {{ attribute | last }}<br>
{% elsif key == 'Shipping-Date' %}
Shipping Date: {{ attribute | last }}<br>
{% endif %}
{% endfor %}
</div>Haz clic en Guardar.
Sus facturas incluirán la fecha y la hora sólo si tiene activado el selector de fecha y hora.
Su factura de recogida debe ser similar a la siguiente.
Su factura de entrega debe ser similar a la siguiente.
Su factura de envío debe ser similar a la siguiente.
Añadir la plantilla de albarán
En Order Printer, haz clic en Gestionar plantillas.
Busca el albarán y haz clic en Duplicar plantilla.
Se abrirá la plantilla Packing slip--COPY. Desplácese hasta el final de la plantilla y añada el siguiente código.
{% comment %} Zapiet info {% endcomment %}
<div style="padding: 1.5em; border: 1px solid black;">
{% for attribute in attributes %}
{% capture key %}{{attribute | first}}{% endcapture %}
{% if key == 'Checkout-Method' %}
{% comment %}Do nothing{% endcomment %}
{% elsif key == 'Pickup-Location-Id' %}
<h3 style="margin: 0 0 1em 0;">Pickup Information</h3>
{% elsif key == 'Delivery-Location-Id' %}
<h3 style="margin: 0 0 1em 0;">Delivery Information</h3>
LocationID: {{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Company' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Address-Line-1' %}
{{ attribute | last }}<br> {% elsif key == 'Pickup-Location-City' %} {{ attribute | last }}<br> {% elsif key == 'Pickup-Location-Region' %} {{ attribute | last }}<br> {% elsif key == 'Pickup-Location-Postal-Code' %}
{{ attribute | last }}<br>
{% elsif key == 'Pickup-Location-Country' %}
{{ attribute | last }}<br><br>
{% endif %} {% endfor %}
{% for attribute in attributes %} {% capture key %}
{{ attribute | first }}{% endcapture %}
{% if key == 'Pickup-Date' %}
Pickup Date: {{ attribute | last }}<br>
{% elsif key == 'Pickup-Time' %}
Pickup Time: {{ attribute | last }}<br>
{% elsif key == 'Delivery-Date' %}
Delivery Date: {{ attribute | last }}<br>
{% elsif key == 'Delivery-Time' %}
Delivery Time: {{ attribute | last }}<br>
{% elsif key == 'Shipping-Date' %}
Shipping Date: {{ attribute | last }}<br>
{% endif %}
{% endfor %}
</div>Haz clic en Guardar.
Sus albaranes incluirán la fecha y la hora sólo si tiene activado el selector de fecha y hora.
El albarán de recogida debe ser similar al siguiente.
El albarán de entrega debe ser similar al siguiente.
El albarán de envío debe tener un aspecto similar al que se muestra a continuación.