You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.4KB

  1. {% extends '@LcShop/backend/default/show.html.twig' %}
  2. {% import '@LcShop/backend/default/block/macros.html.twig' as macros %}
  3. {% block main %}
  4. <div class="lc-vue-js-container" id="lc-order-edit">
  5. <div class="row">
  6. {% include '@LcShop/backend/order/form.html.twig' %}
  7. {{ macros.startCard(3, 'OrderShop.addProduct', 'success') }}
  8. {% include '@LcShop/backend/order/card_addproducttoorder.html.twig' %}
  9. {% include '@LcShop/backend/order/modal_invoiceaddress.html.twig' %}
  10. {% include '@LcShop/backend/order/modal_deliveryaddress.html.twig' %}
  11. {% include '@LcShop/backend/order/modal_deliveryavailability.html.twig' %}
  12. {% include '@LcShop/backend/order/modal_orderstatus.html.twig' %}
  13. {% include '@LcShop/backend/order/modal_reductioncart.html.twig' %}
  14. {% include '@LcShop/backend/order/modal_reductioncredit.html.twig' %}
  15. {% include '@LcShop/backend/order/modal_orderpayment.html.twig' %}
  16. {{ macros.endCard }}
  17. </div>
  18. </div>
  19. {% endblock %}
  20. {% block script_javascript %}
  21. {{ parent() }}
  22. {% include '@LcShop/backend/default/block/script-vuejs.html.twig' %}
  23. <script src="{{ asset('bundles/lcshop/js/backend/script/order/vuejs-order.js') }}"></script>
  24. {% endblock %}