03.11.2016 14:42
|
|
mirkob_63
Name: Mirko
15.02.2016
Posts: 4
|
File ordini
Volevo sapere come si fa ad esportare un solo file con tutti i dati (acquirente e prodotti acquistati)
Io riesco a esportarne due: uno con i prodotti e uno con il cliente. Me ne serve uno solo.
Dove è possibile configurare l'estensione? Togliere i campi che non servono o metterli in ordine diverso
Grazie
Joomla: 3.6.2 JoomShopping: 4.14.3 PHP: 5.5.38 Website Url: http://www.fuorimercato.com/rimaflow/
|
|
04.11.2016 08:15
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 26778
|
Aw: File ordini
Addon Export Order CSV?
There is no way to change the field position.
Need change code addon
\administrator\components\com_jshopping\importexport\orderexport\orderexport.php
chnage
~ row 151
$head = array("order_id","number","......
and ~row 194 ...
|
|
07.11.2016 14:44
|
|
mirkob_63
Name: Mirko
15.02.2016
Posts: 4
|
Aw: File ordini
Another question
How come when I export CSV files a price which was 5.30 becomes 53.000?
|
|
07.11.2016 14:48
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 26778
|
Aw: File ordini
product currency?
shop default currency?
|
|
07.11.2016 15:51
|
|
mirkob_63
Name: Mirko
15.02.2016
Posts: 4
|
Aw: File ordini
In the column order_total when I export CSV files. On the website I see the correct price but when I export it to me changed as I wrote above
|
|
07.11.2016 16:08
|
|
mirkob_63
Name: Mirko
15.02.2016
Posts: 4
|
Aw: File ordini
I attach an example. The default currency is EUR. And even in the individual products
senza_titolo_1.jpg
Last change: 07.11.2016 16:43
|
|
07.11.2016 16:59
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 26778
|
Aw: File ordini
url?
admin login?
(forum privat message)
|
|
08.11.2016 08:04
|
|
admin
(Support Team)
Name: Admin
05.08.2010
Posts: 26778
|
Aw: File ordini
Work in open office
Try round price
code
$row[] = ($data->product_item_price);
change to
$row[] = round($data->product_item_price, 2);
Last change: 08.11.2016 08:06
|
|