This repository was archived by the owner on Jan 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed
admin/view/template/payment
system/library/wallee/dynamic/catalog Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ This repository contains the OpenCart wallee payment module that enables the sh
1313
1414## Documentation
1515
16- * [ English] ( https://plugin-documentation.wallee.com/wallee-payment/opencart-2.0/1.0.51 /docs/en/documentation.html )
16+ * [ English] ( https://plugin-documentation.wallee.com/wallee-payment/opencart-2.0/1.0.52 /docs/en/documentation.html )
1717
1818## Support
1919
2020Support queries can be issued on the [ wallee support site] ( https://app-wallee.com/space/select?target=/support ) .
2121
2222## License
2323
24- Please see the [ license file] ( https://github.com/wallee-payment/opencart-2.0/blob/1.0.51 /LICENSE ) for more information.
24+ Please see the [ license file] ( https://github.com/wallee-payment/opencart-2.0/blob/1.0.52 /LICENSE ) for more information.
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ <h2>Documentation</h2> </div>
2222 </ a >
2323 </ li >
2424 < li >
25- < a href ="https://github.com/wallee-payment/opencart-2.0/releases/tag/1.0.51 / ">
25+ < a href ="https://github.com/wallee-payment/opencart-2.0/releases/tag/1.0.52 / ">
2626 Source
2727 </ a >
2828 </ li >
4949 < div class ="olist arabic ">
5050< ol class ="arabic ">
5151< li >
52- < p > < a href ="https://github.com/wallee-payment/opencart-2.0/releases/tag/1.0.51 / "> Download</ a > the extension.</ p >
52+ < p > < a href ="https://github.com/wallee-payment/opencart-2.0/releases/tag/1.0.52 / "> Download</ a > the extension.</ p >
5353</ li >
5454< li >
5555< p > Extract the files and upload the content of the < code > Upload</ code > directory into the root directory of your store using FTP/SSH.</ p >
Original file line number Diff line number Diff line change 257257 <div class= " form-group" >
258258 <label class= " col-sm-2 control-label" ><?php echo $entry_version ; ?></label>
259259 <div class= " col-sm-10" >
260- <p class= " form-control-static" >1.0.51 </p>
260+ <p class= " form-control-static" >1.0.52 </p>
261261 </div>
262262 </div>
263263
264264 <div class= " form-group" >
265265 <label class= " col-sm-2 control-label" ><?php echo $entry_date ; ?></label>
266266 <div class= " col-sm-10" >
267- <p class= " form-control-static" >2022/10/07 10:58:21 </p>
267+ <p class= " form-control-static" >2022/10/24 14:50:26 </p>
268268 </div>
269269 </div>
270270 </fieldset>
Original file line number Diff line number Diff line change @@ -17,6 +17,13 @@ public function getMethod($address, $total){
1717 return array ();
1818 }
1919
20+ // for journal3 one step checkout the user data is empty by default
21+ // i assume this is some oversight by the folks at journal3
22+ $ data = $ this ->registry ->get ('session ' )->data ;
23+ if (isset ($ data ['j3_checkout_id ' ]) && !isset ($ this ->session ->data ['user_id ' ])) {
24+ $ this ->session ->data ['user_id ' ] = $ data ['j3_checkout_id ' ];
25+ }
26+
2027 // check if transaction can be saved to the session.
2128 if (\WalleeHelper::instance ($ this ->registry )->getCustomerSessionIdentifier () === null ) {
2229 return array ();
You can’t perform that action at this time.
0 commit comments