jambagecom / quotation-tt-products
Quotation for Shop System, Excel file export
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:typo3-cms-extension
Requires
- php: ^5.5, ^7.2
- phpoffice/phpspreadsheet: ^1.3
- typo3/cms-core: >=6.2.0,<=9.5.99
Replaces
- jambagecom/quotation-tt-products: v0.1.3
This package is auto-updated.
Last update: 2024-10-30 01:33:17 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>...
...
...
...