Jump to content
xt:Commerce Community Forum

[BUG]stats_sales_report.php


wellenreiter

Recommended Posts

Hallo,

in der aktuellen Version vom x3 ist ein Bug in: stats_sales_report.php

Und zwar beim Dropdownfeld der Zahlungsweise.

Er zeigt per Default immer das letzte Element in der Dropdown liste an.

Egal welchen URL Parameter man ihm mit &payment=0 mitgibt.

Eine Modifikation dieser Datei an der Stelle:

   // paymenttype
if ( ($_GET['payment']) && (xtc_not_null($_GET['payment'])) )
{ $srPayment = $_GET['payment'];
} else {
$srPayment = 0;
}[/PHP]

in z.b.

[PHP] // paymenttype
if ( ($_GET['payment']) && (xtc_not_null($_GET['payment'])) )
{ $srPayment = 0;
} else {
$srPayment = 0;
}[/PHP]

Bringt auch nichts. Immer wird das letzte Zahlungsmodul ausgewählt.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...