Hey Patrick! @patrickniessen
Danke für deine Frage und das habe ich jetzt hier angeschaut in meinem eigenen Test Shop und zeige das im folgenden kurzen Video. Weiter unten gebe ich den Code Beispiel aus meiner Rechnung die sich automatisch aktualisiert sobald ich Positionen in der Bestellung ändere:
Show More
https://youtu.be/wPhbCUHSJv8
Siehe hier ein Template Code Beispiel aus meinem Video oben den man verwenden kann um den Code der Packing Slip zu aktualisieren:
Show More
31st December
Invoice for {{ order_name }}
{{ shop_name }}
{{ shop.address }}
{{ shop.city }} {{ shop.province_code }} {{ shop.zip | upcase }}
{{ shop.country }}
Item Details
{% if show_line_item_taxes %}
{% endif %}
{% for line_item in line_items %}
{% if line_item.tax_lines %}
{% endif %}
{% endfor %}
| Quantity |
Item |
Taxes |
Price |
| {{ line_item.quantity }} x |
{{ line_item.title }} |
{% for tax_line in line_item.tax_lines %} {{ tax_line.price |
money }} {{ tax_line.title }}
{% endfor %}
|
{% if transactions.size > 1 %}
Transaction Details
{% for transaction in transactions %}
{% endfor %}
| Type |
Amount |
Kind |
Status |
| {{ transaction.gateway |
payment_method }} |
{{ transaction.amount |
money }} |
{% endif %}
Payment Details
{% for discount in discounts %}
{% endfor %}
{% if shipping_address %}
{% endif %}
{% if total_paid != total_price %}
{% endif %}
| Subtotal price: | {{ subtotal_price | money }} |
| - | - |
| Includes discount “{{ discount.code }}” | {{ discount.savings | money }} |
| Total tax: | {{ tax_price | money }} |
| Shipping: | {{ shipping_price | money }} |
| Total price: | {{ total_price | money }} |
| Total paid: | {{ total_paid | money }} |
| Outstanding Amount: | {{ total_price | minus: total_paid | money }} |
{% if note %}
Note
{{ note }}
{% endif %}
{% if shipping_address %}
Shipping Details
{{ shipping_address.name }}
{% if shipping_address.company %}
{{ shipping_address.company }}
{% endif %}
{{ shipping_address.street }}
{{ shipping_address.city }}
{{ shipping_address.province_code }}
{{ shipping_address.zip | upcase }}
{{ shipping_address.country }}
{% endif %}
If you have any questions, please send an email to {{ shop.email }}