Ir al contenido principal
Order Printer
María Banegas avatar
Escrito por María Banegas
Actualizado esta semana

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.


Agrega la plantilla de factura

  1. Dentro de la aplicación Order Printer, haz clic en Administrar plantillas.

  2. Busca la factura y haz clic en Duplicar plantilla.

  3. Factura--se abrirá la plantilla COPY. Desplázate hasta el final de la plantilla y busca el siguiente código.

    <p>If you have any questions, please send an email to <u>{{ shop.email }}</u></p>

  4. Antepone 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>

  5. Haz clic en Guardar.

Tus facturas incluirán la fecha y la hora solo si tiene habilitado el selector de fecha y hora.

Tu factura de recogida debe ser similar a la siguiente.

Tu factura de entrega debe ser similar a la siguiente.

Tu factura de envío debe ser similar a la siguiente.


Agrega la plantilla de albarán

  1. Dentro de la aplicación Ordenar impresora, haz clic en Administrar plantillas.

  2. Busca el albarán y haz clic en Duplicar plantilla.

  3. Albarán--se abrirá la plantilla COPY. Desplázate hasta el final de la plantilla y agrega 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>

  4. Haz clic en Guardar.

Tus comprobantes de envío incluirán la fecha y la hora solo si tienes habilitado el selector de fecha y hora.

El albarán de su recogida debe ser similar al que se muestra a continuación.

El albarán de entrega debe ser similar al que se muestra a continuación.

El albarán de envío debe ser similar al que se muestra a continuación.

¿Ha quedado contestada tu pregunta?