@@ -1050,7 +1050,7 @@ public function createOrder() {
1050
1050
$ tax_total = number_format ($ tax_total * $ currency_value , $ decimal_place , '. ' , '' );
1051
1051
$ order_total = number_format ($ item_total + $ tax_total , $ decimal_place , '. ' , '' );
1052
1052
1053
- if ($ page_code == 'checkout ' ) {
1053
+ if ($ page_code == 'checkout ' && isset ( $ order_info ) ) {
1054
1054
$ discount_total = 0 ;
1055
1055
$ handling_total = 0 ;
1056
1056
$ shipping_total = 0 ;
@@ -1086,7 +1086,7 @@ public function createOrder() {
1086
1086
'value ' => $ tax_total
1087
1087
);
1088
1088
1089
- if ($ page_code == 'checkout ' ) {
1089
+ if ($ page_code == 'checkout ' && isset ( $ shipping_total ) && isset ( $ handling_total ) && isset ( $ discount_total ) && isset ( $ order_info ) && isset ( $ shipping_info ) ) {
1090
1090
$ amount_info ['breakdown ' ]['shipping ' ] = array (
1091
1091
'currency_code ' => $ currency_code ,
1092
1092
'value ' => $ shipping_total
@@ -1110,7 +1110,7 @@ public function createOrder() {
1110
1110
$ paypal_order_info ['purchase_units ' ][0 ]['items ' ] = $ item_info ;
1111
1111
$ paypal_order_info ['purchase_units ' ][0 ]['amount ' ] = $ amount_info ;
1112
1112
1113
- if ($ page_code == 'checkout ' ) {
1113
+ if ($ page_code == 'checkout ' && isset ( $ order_info ) ) {
1114
1114
$ paypal_order_info ['purchase_units ' ][0 ]['description ' ] = 'Your order ' . $ order_info ['order_id ' ];
1115
1115
$ paypal_order_info ['purchase_units ' ][0 ]['invoice_id ' ] = $ order_info ['order_id ' ] . '_ ' . date ('Ymd_His ' );
1116
1116
@@ -2003,6 +2003,7 @@ public function approveOrder() {
2003
2003
$ card_nice_type = (!empty ($ this ->request ->post ['card_nice_type ' ]) ? $ this ->request ->post ['card_nice_type ' ] : '' );
2004
2004
$ card_last_digits = '' ;
2005
2005
$ card_expiry = '' ;
2006
+ $ paypal_order_data = array ();
2006
2007
2007
2008
if (!$ this ->cart ->hasShipping ()) {
2008
2009
$ seller_protection_status = 'NOT_ELIGIBLE ' ;
@@ -2135,6 +2136,7 @@ public function approveOrder() {
2135
2136
$ card_nice_type = (!empty ($ this ->request ->post ['card_nice_type ' ]) ? $ this ->request ->post ['card_nice_type ' ] : '' );
2136
2137
$ card_last_digits = '' ;
2137
2138
$ card_expiry = '' ;
2139
+ $ paypal_order_data = array ();
2138
2140
2139
2141
if (!$ this ->cart ->hasShipping ()) {
2140
2142
$ seller_protection_status = 'NOT_ELIGIBLE ' ;
@@ -3359,6 +3361,7 @@ public function completeOrder() {
3359
3361
$ card_nice_type = '' ;
3360
3362
$ card_last_digits = '' ;
3361
3363
$ card_expiry = '' ;
3364
+ $ paypal_order_data = array ();
3362
3365
3363
3366
if (!$ this ->cart ->hasShipping ()) {
3364
3367
$ seller_protection_status = 'NOT_ELIGIBLE ' ;
@@ -3491,6 +3494,7 @@ public function completeOrder() {
3491
3494
$ card_nice_type = '' ;
3492
3495
$ card_last_digits = '' ;
3493
3496
$ card_expiry = '' ;
3497
+ $ paypal_order_data = array ();
3494
3498
3495
3499
if (!$ this ->cart ->hasShipping ()) {
3496
3500
$ seller_protection_status = 'NOT_ELIGIBLE ' ;
@@ -3747,7 +3751,7 @@ public function completeOrder() {
3747
3751
$ paypal_order_info ['purchase_units ' ][0 ]['description ' ] = 'Your order ' . $ this ->session ->data ['order_id ' ];
3748
3752
$ paypal_order_info ['purchase_units ' ][0 ]['invoice_id ' ] = $ this ->session ->data ['order_id ' ] . '_ ' . date ('Ymd_His ' );
3749
3753
3750
- if ($ this ->cart ->hasShipping ()) {
3754
+ if ($ this ->cart ->hasShipping () && isset ( $ shipping_info ) ) {
3751
3755
$ paypal_order_info ['purchase_units ' ][0 ]['shipping ' ] = $ shipping_info ;
3752
3756
}
3753
3757
0 commit comments