Modify ↓
Opened 8 years ago
Closed 8 years ago
#1309 closed Bug/Fehler (fixed)
ot_loworder_fee und ot_z_paylater_fee
| Reported by: | Volker Strähle | Owned by: | somebody |
|---|---|---|---|
| Priority: | hoch | Milestone: | modified-shop-2.0.4.0 |
| Component: | Admin | Version: | 2.0.3.0 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description (last modified by )
in beiden Daten wird mit
require_once(DIR_FS_INC . 'xtc_calculate_tax.inc.php');
die Funktion xtc_calculate_tax() eingebunden, obwohl diese in admin/includes/functions/general.php bereits deklariert ist, siehe: Modul Servicegebühr Fehlermeldung
Attachments (0)
Change History (5)
comment:1 by , 8 years ago
| Description: | modified (diff) |
|---|
comment:2 by , 8 years ago
comment:3 by , 8 years ago
//include needed functions
require_once(DIR_FS_INC . 'xtc_calculate_tax.inc.php');
ist in beiden Dateien überflüssig, da die Funktion im Backend über general.php und im Frontend über die application_top.php oder application_top_callback.php geladen wird.
comment:4 by , 8 years ago
Fehler in ot_z_paylater_fee wird ausgelöst in includes\external\billpay\base\BillpayOT.php
/** @noinspection PhpIncludeInspection */
require_once(DIR_FS_INC . 'xtc_calculate_tax.inc.php');
Note:
See TracTickets
for help on using tickets.

Wobei zu beachten ist das beide Funktionen nicht identisch sind!
In der Backend Funktion wird gerundet, in der inc Funktion nicht.