Modify ↓
Opened 13 years ago
Closed 13 years ago
#26 closed Bug/Fehler (closed)
Probleme bei der Übergabe von Rabatten an PayPal und andere externe Dienste aufgrund Vorzeichenwechsels
| Reported by: | Torsten Riemer | Owned by: | somebody |
|---|---|---|---|
| Priority: | normal | Milestone: | modified-shop-2.0.0.0 |
| Component: | Shop | Version: | 1.06 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description
Siehe dazu: http://www.modified-shop.org/forum/index.php?topic=26332.0
Problemstellen:
ot_gv.php
$this->output[] = array ('title' => $this->title.':',
'text' => '<strong><font color="#ff0000">'.$xtPrice->xtcFormat($od_amount *(-1), true).'</font></strong>', //2011-08-25 - web28 - fix negativ sign
'value' => $xtPrice->xtcFormat($od_amount *(-1), false)); //2011-08-25 - web28 - fix negativ sign
ot_coupon.php
$this->output[] = array ('title' => $this->title.' '.$this->coupon_code.$this->tax_info.':',
'text' => '<strong><font color="#ff0000">'.$xtPrice->xtcFormat($od_amount*(-1), true).'</font></strong>',
'value' => $od_amount *(-1)); //2011-08-25 - web28 - fix negativ sign
Wir müssen uns hier eine Lösung überlegen. Im Zweifel die Fremdmodule, die bisher eingebaut sind entsprechend anpassen.
Attachments (0)
Note:
See TracTickets
for help on using tickets.

Alle möglichen Varianten habe ich mit PayPal getestet und die Rabatte und Auschläge wurden immer korrekt übermittelt.