Skip to content

Commit

Permalink
Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
regdos committed Apr 3, 2024
1 parent ee2ba34 commit 965be29
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 13 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 3.2.20
* Fixed credit logotypes
* Added credit logotypes for Prestashop 1.6
* Added option "Save logs"

## 3.2.19
* Klarna as separate payment method
* PayPo as separate payment method
Expand Down
17 changes: 9 additions & 8 deletions README.EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,15 @@ The following PHP extensions are required: [cURL][ext1] and [hash][ext2].

### Integration method

| Parameter | Description |
|---------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Bank List | `Yes` choosing the PayU payment method will be possible on checkout page when selected *Pay by online transfer*<br>`No` after placing an order on PrestaShop, you will be automatically redirected to PayU.<br>Do not enable these options if you are using PrestaShop and OPC module [more info](#prestashop-16-and-opc-module). |
| Payment method order | enables custom payment method ordering [more info](#payment-method-order) |
| Card payment as separate method | sets card payment as separate method [more info](#card-payment) |
| Card payment widget | renders a widget on Presta summary instead of redirecting to PayU [more info](#card-payment-widget) |
| BLIK payment as separate method | sets BLIK payment as separate method |
| Sandbox mode | **Yes** - transactions will be processed on PayU Sandbox environment<br>**No** - transactions will be processed on PayU production environment |
| Parameter | Description |
|---------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Bank List | `Yes` choosing the PayU payment method will be possible on checkout page when selected *Pay by online transfer*<br>`No` after placing an order on PrestaShop, you will be automatically redirected to PayU.<br>Do not enable these options if you are using PrestaShop and OPC module [more info](#prestashop-16-and-opc-module). |
| Payment method order | enables custom payment method ordering [more info](#payment-method-order) |
| Card payment as separate method | sets card payment as separate method [more info](#card-payment) |
| Card payment widget | renders a widget on Presta summary instead of redirecting to PayU [more info](#card-payment-widget) |
| BLIK payment as separate method | sets BLIK payment as separate method |
| Sandbox mode | `Yes` - transactions will be processed on PayU Sandbox environment<br>`No` - transactions will be processed on PayU production environment |
| Save logs | Specifies whether the plugin will save information to logs. |

#### POS Parameters

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Do prawidłowego funkcjonowania modułu wymagane są następujące rozszerzenia

## Logowanie

Gdy sklep Prestashop przełączymy w tryb debugowania plugin zapisuje informacje do logów. Pliki logów znajdą się w katalogu:
Gdy sklep Prestashop przełączymy w tryb debugowania lub włączymy opcję `Zapisuj logi` plugin zapisuje informacje do logów. Pliki logów znajdą się w katalogu:
* Prestashop 1.7 - `/var/logs`
* Prestashop 1.6 - `/log`

Expand All @@ -101,12 +101,13 @@ Gdy sklep Prestashop przełączymy w tryb debugowania plugin zapisuje informacje
| Parameter | Opis |
|---------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Lista banków | `Tak` wybór metody płatności PayU będzie możliwy na stronie składania zamówienia gdy wybrana zostanie płatność *Zapłać przelewem online*<br>`Nie` po złożeniu zamówienia w PrestaShop nastąpi automatyczne przekierowanie do PayU.<br>Nie włączaj te opcji jeżeli używasz PrestaShop i modułu OPC [więcej informacji](#prestashop-16-i-modu-opc). |
| Kolejność metod płatności (dotyczy tylko listy banków) | Określa kolejność wyświetlanych metod płatności [więcej informacji](#kolejność-metod-płatności). |
| Kolejność metod płatności (dotyczy tylko listy banków) | Określa kolejność wyświetlanych metod płatności [więcej informacji](#kolejność-metod-płatności). |
| Płatność kartą jako osobna metoda płatności | Określa czy płatność kartą będzie dostępna jako osobna metoda [więcej informacji](#płatność-kartą). |
| Płatność kartą w widżecie | Określa czy płatność kartą będzie dostępna jako widżet [więcej informacji](#widżet-do-płatności-kartą). |
| Płatność BLIK jako osobna metoda płatności | Określa czy BLIK będzie dostępna jako osobna metoda płatności. |
|
| Tryb testowy (Sandbox) | **Tak** - transakcje będą procesowane przez system Sandbox PayU.<br>**Nie** - transakcje będą procesowane przez system produkcyjny PayU. |
| Tryb testowy (Sandbox) | `Tak` - transakcje będą procesowane przez system Sandbox PayU.<br>`Nie` - transakcje będą procesowane przez system produkcyjny PayU. |
| Zapisuj logi | Specifies whether the plugin will save information to logs. |

### Parametry POS-ów

Expand Down
2 changes: 1 addition & 1 deletion payu/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>payu</name>
<displayName><![CDATA[PayU]]></displayName>
<version><![CDATA[3.2.19]]></version>
<version><![CDATA[3.2.20]]></version>
<description><![CDATA[Accepts payments by PayU]]></description>
<author><![CDATA[PayU]]></author>
<tab><![CDATA[payments_gateways]]></tab>
Expand Down
2 changes: 1 addition & 1 deletion payu/payu.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function __construct()
$this->name = 'payu';
$this->displayName = 'PayU';
$this->tab = 'payments_gateways';
$this->version = '3.2.19';
$this->version = '3.2.20';
$this->author = 'PayU';
$this->need_instance = 1;
$this->bootstrap = true;
Expand Down

0 comments on commit 965be29

Please sign in to comment.