jambagecom/quotation-tt-products

Quotation for Shop System, Excel file export

v0.1.3 2021-03-13 15:13 UTC

This package is auto-updated.

Last update: 2024-03-30 00:21:40 UTC


README

What is does

This extension gives you the possibility to export the current basket view of tt_products into an Excel file. This can be used to make an automatically generated quotation.

This extension is used by tt_products.

Prerequisites

You must create the file fileadmin/data/quotation/count.txt manually and make it writable.

How is the Excel file generation started?

Enter these lines into the Shop Template inside of the HTML form of the subpart ###BASKET_TEMPLATE###.

Example

...

<script> function anexport() { document.warenkorbform.action = "###FORM_URL###&eID=export_excel"; document.warenkorbform.submit(); document.warenkorbform.action = "###FORM_URL###"; } </script>

...

...

...

...