Modify ↓
Opened 11 years ago
Closed 10 years ago
#516 closed Bug/Fehler (fixed)
ot_coupon Modul Versandkosten Steuersatz
| Reported by: | Ronald Parcinski | Owned by: | Ronald Parcinski |
|---|---|---|---|
| Priority: | hoch | Milestone: | modified-shop-2.0.0.0 |
| Component: | Module | Version: | 2.0.0.0 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description
PHP 5.2.13
ot_coupon 1.3.9
Beim aktuellen Couponmodul bekomme ich in einem Shop keinen Rückgabewert für den Steuersatz des ausgewählten Versandmoduls
function get_shipping_cost()
$GLOBALS[$shipping_module]->tax_class
ist nicht definiert/vorhanden.
Ich habe das wie folgt geändert:
$module_tax_class = $GLOBALS[$shipping_module]->tax_class;
if ($shipping_module) {
$module_tax_class = $module_tax_class == '' ? constant('MODULE_SHIPPING_'.strtoupper($shipping_module).'_TAX_CLASS') : $module_tax_class;
}
Attachments (0)
Change History (1)
comment:1 by , 10 years ago
| Owner: | set to |
|---|---|
| Resolution: | → fixed |
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

In 8325: