jambagecom / quotation-tt-products
商店系统的报价,Excel 文件导出
v0.1.3
2021-03-13 15:13 UTC
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-08-30 01:11:52 UTC
README
这是什么
此扩展允许您将 tt_products 的当前购物车视图导出到 Excel 文件中。这可以用于生成自动报价。
此扩展由 tt_products 使用。
先决条件
您必须手动创建文件 fileadmin/data/quotation/count.txt 并使其可写。
如何启动 Excel 文件生成?
将这些行输入到商店模板中的 HTML 表单的子部分 ###BASKET_TEMPLATE### 内部。
示例
...
<script> function anexport() { document.warenkorbform.action = "###FORM_URL###&eID=export_excel"; document.warenkorbform.submit(); document.warenkorbform.action = "###FORM_URL###"; } </script>...
...
...
...