Skip to content

Commit

Permalink
Release 1.0.29
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrowanwallee committed Jan 17, 2022
1 parent e47db64 commit 475d333
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 14 deletions.
6 changes: 1 addition & 5 deletions Extend/Application/Model/Order.php
Expand Up @@ -80,14 +80,10 @@ public function PostFinanceCheckoutAuthorize(){
"Attempted to call " . __METHOD__ . " on non-PostFinanceCheckout order {$this->getId()}, skipping.");
return;
}
$basket = $this->getPostFinanceCheckoutTransaction()->getTempBasket();
$basket = $this->getPostFinanceCheckoutBasket();
$basket->onUpdate();
$basket->calculateBasket();
$res = $this->_sendOrderByEmail($this->getOrderUser(), $basket, $this->getPaymentType());
if ($res === self::ORDER_STATE_OK) {
$this->getPostFinanceCheckoutTransaction()->setTempBasket(null);
$this->getPostFinanceCheckoutTransaction()->save();
}
}

public function setPostFinanceCheckoutPaid(){
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -2,7 +2,7 @@

# OXID 6.X

v1.0.28, 2021-7
v1.0.29, 2022-1

This repository contains the OXID PostFinance Checkout payment module that enables the shop to process payments with [PostFinance Checkout](https://www.postfinance.ch/checkout).

Expand Down Expand Up @@ -33,8 +33,8 @@ Support queries can be issued on the [PostFinance Checkout support site](https:/

## Documentation

* [English](https://plugin-documentation.postfinance-checkout.ch/pfpayments/oxid-6.0/1.0.28/docs/en/documentation.html)
* [English](https://plugin-documentation.postfinance-checkout.ch/pfpayments/oxid-6.0/1.0.29/docs/en/documentation.html)

## License

Please see the [license file](https://github.com/pfpayments/oxid-6.0/blob/1.0.28/LICENSE) for more information.
Please see the [license file](https://github.com/pfpayments/oxid-6.0/blob/1.0.29/LICENSE) for more information.
6 changes: 3 additions & 3 deletions docs/README.md
Expand Up @@ -2,7 +2,7 @@

# OXID 6.X

v1.0.28, 2021-7
v1.0.29, 2022-1

This repository contains the OXID PostFinance Checkout payment module that enables the shop to process payments with [PostFinance Checkout](https://www.postfinance.ch/checkout).

Expand Down Expand Up @@ -33,8 +33,8 @@ Support queries can be issued on the [PostFinance Checkout support site](https:/

## Documentation

* [English](https://plugin-documentation.postfinance-checkout.ch/pfpayments/oxid-6.0/1.0.28/docs/en/documentation.html)
* [English](https://plugin-documentation.postfinance-checkout.ch/pfpayments/oxid-6.0/1.0.29/docs/en/documentation.html)

## License

Please see the [license file](https://github.com/pfpayments/oxid-6.0/blob/1.0.28/LICENSE) for more information.
Please see the [license file](https://github.com/pfpayments/oxid-6.0/blob/1.0.29/LICENSE) for more information.
4 changes: 2 additions & 2 deletions docs/en/documentation.html
Expand Up @@ -22,7 +22,7 @@ <h2>Documentation</h2> </div>
</a>
</li>
<li>
<a href="https://github.com/pfpayments/oxid-6.0/releases/tag/1.0.28/">
<a href="https://github.com/pfpayments/oxid-6.0/releases/tag/1.0.29/">
Source
</a>
</li>
Expand All @@ -49,7 +49,7 @@ <h1>
<div class="olist arabic">
<ol class="arabic">
<li>
<p><a href="https://github.com/pfpayments/oxid-6.0/releases/tag/1.0.28/">Download</a> the extension.</p>
<p><a href="https://github.com/pfpayments/oxid-6.0/releases/tag/1.0.29/">Download</a> the extension.</p>
</li>
<li>
<p>Extract the files and upload them to the root directory of your store using FTP/SSH.</p>
Expand Down
2 changes: 1 addition & 1 deletion metadata.php
Expand Up @@ -29,7 +29,7 @@
'en' => 'PFC PostFinanceCheckout Module'
),
'thumbnail' => 'out/pictures/picture.png',
'version' => '1.0.28',
'version' => '1.0.29',
'author' => 'customweb GmbH',
'url' => 'https://www.customweb.com',
'email' => 'info@customweb.com',
Expand Down

0 comments on commit 475d333

Please sign in to comment.