Compare commits

...

8 Commits

Author SHA1 Message Date
andrewrowanwallee e47682eb87 release 7.1.0 2025-09-17 11:08:33 +02:00
andrewrowanwallee edf474acea Release 7.1.0 2025-09-17 10:55:21 +02:00
andrewrowanwallee 5af3e0e298 Release 6.1.15 2025-09-16 11:13:06 +02:00
Alberto G. Viu 2aafa38085 Release 7.1.0 2025-09-11 10:20:45 +02:00
Alberto G. Viu d91a29c6b7 Revert "Release 7.1.0"
This reverts commit aa4aa15c54.
2025-09-11 10:09:53 +02:00
andrewrowanwallee aa4aa15c54 Release 7.1.0 2025-09-10 13:49:39 +02:00
andrewrowanwallee 88e706b44f Release 7.0.1 2025-07-23 14:54:54 +02:00
andrewrowanwallee 2f5789aea8 Release 7.0.0 2025-06-24 11:48:03 +02:00
160 changed files with 1294 additions and 448 deletions
+24
View File
@@ -1,3 +1,27 @@
# 7.1.0
## Feature
- Support subscription payment methods
- Support Shopware 6.7.2.0
## Bugfix
- Fixed issue with shipping costs not being processed correctly
# 7.0.1
## Feature
- Add plugin version metric
## Bugfix
- Fixed error message when refund amount exceeds total
- Fixed bug where only 25 sales channels showed in the dropdown
- Removed erroneous logs
# 7.0.0
- Compatibility with Shopware 6.7.0
# 6.1.14
- Disable Recreate Cart for Headless Storefront Order
- Added the correct Exception Type to the finalize method
# 6.1.13
- Updated English documentation
- Added French, German and Italian documentation
+18
View File
@@ -1,3 +1,21 @@
# 7.1.0
Unterstützung für Abonnement-Zahlungsmethoden
Support für Shopware 6.7.2.0
Problem mit fehlerhafter Bearbeitung der Versandkosten behoben
# 7.0.1
- Plugin-Versionsmetrik hinzugefügt
- Fehlermeldung behoben, wenn der Rückerstattungsbetrag den Gesamtbetrag überschreitet
- Fehler behoben, bei dem nur 25 Vertriebskanäle in der Dropdown-Liste angezeigt wurden
- Fehlerhafte Protokolle entfernt
# 7.0.0
- Kompatibilität mit Shopware 6.7.0
# 6.1.14
Warenkorb neu erstellen für Headless Storefront Order deaktivieren
Der korrekte Ausnahmetyp wurde zur Finalisierungsmethode hinzugefügt
# 6.1.13
Englische Dokumentation aktualisiert
Französische, deutsche und italienische Dokumentation hinzugefügt
+12 -10
View File
@@ -3,21 +3,20 @@
VR Payment Integration for Shopware 6
=============================
## **Overview**
The VR Payment Payment Plugin integrates modern payment processing into Shopware 6, offering features like iFrame-based payments, refunds, captures, and PCI compliance. It supports seamless integration with the [VR Payment Portal](https://gateway.vr-payment.de/) for managing transactions and payment methods.
The VR Payment plugin wraps around the VR Payment API. This library facilitates your interaction with various services such as transactions.
Please note that this plugin is for versions 6.5, 6.6 or 6.7. For the 6.4 plugin please visit [our Shopware 6.4 plugin](https://github.com/vr-payment/shopware-6-4).
## Requirements
- **Shopware Version:** 6.5.x or 6.6.x (see [compatibility table](#compatibility)).
- **PHP:** Minimum version as required by your Shopware installation (e.g., 7.4+).
- **VR Payment Account:** Obtain `Space ID`, `User ID`, and `API Key` from the [VR Payment Dashboard](https://gateway.vr-payment.de/).
- Shopware 6.7.x, 6.6.x or 6.5.x. See table below.
- PHP minimum version supported by the each shop version.
## Documentation
- For English documentation click [here](https://plugin-documentation.vr-payment.de/vr-payment/shopware-6/6.1.14/docs/en/documentation.html)
- Für die deutsche Dokumentation klicken Sie [hier](https://plugin-documentation.vr-payment.de/vr-payment/shopware-6/6.1.14/docs/de/documentation.html)
- Pour la documentation Française, cliquez [ici](https://plugin-documentation.vr-payment.de/vr-payment/shopware-6/6.1.14/docs/fr/documentation.html)
- Per la documentazione in tedesco, clicca [qui](https://plugin-documentation.vr-payment.de/vr-payment/shopware-6/6.1.14/docs/it/documentation.html)
- For English documentation click [here](@WalleeDocPath(/docs/en/documentation.html))
- Für die deutsche Dokumentation klicken Sie [hier](@WalleeDocPath(/docs/de/documentation.html))
- Pour la documentation Française, cliquez [ici](@WalleeDocPath(/docs/fr/documentation.html))
- Per la documentazione in tedesco, clicca [qui](@WalleeDocPath(/docs/it/documentation.html))
## Installation
@@ -62,12 +61,15 @@ Configure supported methods (e.g., credit cards, Apple Pay) via the [VR Payment
**Automatic Updates**: Payment methods sync dynamically via the VRPayment API.
**Subscriptions**: Make recurring payments with Subscriptions (Shopware Commercial) and VRPayment.
## Compatibiliity
___________________________________________________________________________________
| Shopware 6 version | Plugin major version | Supported until |
|-------------------------------|------------------------|------------------------|
| Shopware 6.6.x | 6.x | Further notice |
| Shopware 6.7.x | 7.x | Further notice |
| Shopware 6.6.x | 6.x | December 2025 |
| Shopware 6.5.x | 5.x | October 2024 |
-----------------------------------------------------------------------------------
+4 -4
View File
@@ -53,11 +53,11 @@
"ext-json": "*",
"ext-mbstring": "*",
"php": ">=8.2",
"shopware/core": "~6.6.0",
"shopware/administration": "~6.6.0",
"shopware/storefront":"~6.6.0",
"shopware/core": "~6.7.0",
"shopware/administration": "~6.7.0",
"shopware/storefront":"~6.7.0",
"vrpayment/sdk": "^4.0.0"
},
"type": "shopware-platform-plugin",
"version": "6.1.14"
"version": "7.1.0"
}
+43 -19
View File
@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="keywords" value="VR Payment, Shopware, Shopware Plugin, Payment, Payment Integration, Documentation"><meta name="description" value="The documentation for the Shopware 6 plugin that enables processing payments with VR Payment.">
<link rel="canonical" href="https://plugin-documentation.wallee.com/wallee-payment/shopware-6/master/VRPaymentPayment/docs/de/documentation.html" />
<link rel="canonical" href="@WalleeCanonicalPath(https://plugin-documentation.wallee.com/wallee-payment, VRPaymentPayment/docs/de/documentation.html)" />
<title>VR Payment Zahlungs-Plugin für Shopware 6</title>
<link href="assets/monokai-sublime.css" rel="stylesheet" />
<link href="assets/base.css" rel="stylesheet" />
@@ -23,7 +23,7 @@
</a>
</li>
<li>
<a href="https://github.com/vr-payment/shopware-6/releases/tag/6.1.14/">
<a href="@WalleeReleasePath()">
Source
</a>
</li>
@@ -52,7 +52,7 @@
<div class="ulist">
<ul>
<li>
<p>Shopware Version: 6.5.x oder 6.6.x (see <a href="#compatibility">Kompatibilitätstabelle</a>).</p>
<p>Shopware Version: 6.5.x, 6.6.x oder 6.7.x (see <a href="#compatibility">Kompatibilitätstabelle</a>).</p>
</li>
<li>
<p>PHP: Mindestversion, wie von Ihrer Shopware-Installation erforderlich (z.B. 7.4+).</p>
@@ -77,22 +77,28 @@
</colgroup>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Shopware Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Plugin Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>PHP Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Support Until</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Shopware-Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Plugin-Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>PHP-Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Unterstützt bis</strong></p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.7.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">7.x.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 und 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Laufend</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.6.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.x.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 and 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Ongoing</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 und 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Dezember 2025</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.5.x - Deprecated</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.5.x Veraltet</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">5.x.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 and 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">October 2024</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 und 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Oktober 2024</p></td>
</tr>
</tbody>
</table> </div>
@@ -185,7 +191,7 @@ php bin/console plugin:install --activate --clearCache VRPaymentPayment</code></
</div>
<div class="chapter-body">
<div class="paragraph">
<p>Gehen Sie zu <a href="https://gateway.vr-payment.de/user/login/user/login">VR Payment</a> und erstellen Sie ein Konto, falls Sie noch keines haben.</p>
<p>Gehen Sie zu <a href="https://gateway.vr-payment.de/user/login">VR Payment</a> und erstellen Sie ein Konto, falls Sie noch keines haben.</p>
</div><div class="admonitionblock tip">
<table>
<tr>
@@ -714,10 +720,20 @@ Die Tokenisierung ist für Gast-Checkouts nicht verfügbar
</tr>
</table>
</div> </div>
</div> <div class="section" id="_wiederkehrende_zahlungen">
<div class="section-title">
<h2>
<span class="title-number">8.7</span>Wiederkehrende Zahlungen </h2>
</div>
<div class="section-body">
<div class="paragraph">
<p>Shopware bietet das Paket "Shopware Commercial" mit zusätzlichen Funktionen, unter anderem Abonnements. Dieses Plugin unterstützt Zahlungen, die für Abonnements geeignet sind. Solange der Konnektor der Zahlungsmethode
Tokenisierung unterstützt, kann er für Abonnements verwendet werden. Die wiederkehrende Zahlung wird vollständig vom Shopware Commercial Plugin verwaltet. Weitere Informationen finden Sie in deren Dokumentation.</p>
</div> </div>
</div> <div class="section" id="_hauptfunktionen">
<div class="section-title">
<h2>
<span class="title-number">8.7</span>Hauptfunktionen </h2>
<span class="title-number">8.8</span>Hauptfunktionen </h2>
</div>
<div class="section-body">
<div class="ulist">
@@ -734,12 +750,15 @@ Die Tokenisierung ist für Gast-Checkouts nicht verfügbar
<li>
<p><strong>Automatic Updates</strong>: Zahlungsmethoden werden dynamisch über die VR Payment API synchronisiert.</p>
</li>
<li>
<p><strong>Wiederkehrende Zahlungen</strong>: Führen Sie wiederkehrende Zahlungen mit Abonnements (Shopware Commercial) und VRPayment durch.</p>
</li>
</ul>
</div> </div>
</div> <div class="section" id="_fehlerbehebung">
<div class="section-title">
<h2>
<span class="title-number">8.8</span>Fehlerbehebung </h2>
<span class="title-number">8.9</span>Fehlerbehebung </h2>
</div>
<div class="section-body">
<div class="ulist">
@@ -771,7 +790,7 @@ tail -f var/log/whitelabelname_payment*.log</code></pre>
</div> <div class="section" id="_faqs">
<div class="section-title">
<h2>
<span class="title-number">8.9</span>FAQs </h2>
<span class="title-number">8.10</span>FAQs </h2>
</div>
<div class="section-body">
<div class="paragraph">
@@ -965,18 +984,23 @@ A: Ja, das Plugin unterstützt Wallets wie Apple Pay.</p>
<span class="item-title">Tokenisierung</span>
</a>
</li> <li class="nav-level-2">
<a href="#_hauptfunktionen">
<a href="#_wiederkehrende_zahlungen">
<span class="item-number">8.7</span>
<span class="item-title">Wiederkehrende Zahlungen</span>
</a>
</li> <li class="nav-level-2">
<a href="#_hauptfunktionen">
<span class="item-number">8.8</span>
<span class="item-title">Hauptfunktionen</span>
</a>
</li> <li class="nav-level-2">
<a href="#_fehlerbehebung">
<span class="item-number">8.8</span>
<span class="item-number">8.9</span>
<span class="item-title">Fehlerbehebung</span>
</a>
</li> <li class="nav-level-2">
<a href="#_faqs">
<span class="item-number">8.9</span>
<span class="item-number">8.10</span>
<span class="item-title">FAQs</span>
</a>
</li> </ul>
Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 372 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

+37 -11
View File
@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="keywords" value="VR Payment, Shopware, Shopware Plugin, Payment, Payment Integration, Documentation"><meta name="description" value="The documentation for the Shopware 6 plugin that enables processing payments with VR Payment.">
<link rel="canonical" href="https://plugin-documentation.wallee.com/wallee-payment/shopware-6/master/VRPaymentPayment/docs/en/documentation.html" />
<link rel="canonical" href="@WalleeCanonicalPath(https://plugin-documentation.wallee.com/wallee-payment, VRPaymentPayment/docs/en/documentation.html)" />
<title>VR Payment Shopware 6 Documentation</title>
<link href="assets/monokai-sublime.css" rel="stylesheet" />
<link href="assets/base.css" rel="stylesheet" />
@@ -23,7 +23,7 @@
</a>
</li>
<li>
<a href="https://github.com/vr-payment/shopware-6/releases/tag/6.1.14/">
<a href="@WalleeReleasePath()">
Source
</a>
</li>
@@ -50,11 +50,13 @@
</div>
<div class="chapter-body">
<div class="paragraph">
<p>Shopware Version: 6.5.x or 6.6.x (see <a href="#compatibility">compatibility table</a>).</p>
<p>Shopware Version: 6.5.x, 6.6.x or 6.7.x (see <a href="#compatibility">compatibility table</a>).</p>
</div><div class="paragraph">
<p>PHP: Minimum version as required by your Shopware installation (e.g., 7.4+).</p>
</div><div class="paragraph">
<p>VR Payment Account: Obtain Space ID, User ID, and API Key from VR Payment Portal (see <a href="#portal-startup-guide">Portal Start-up Guide</a>).</p>
</div><div class="paragraph">
<p>For using recurring payments, you also need Showpare Commercial package, which is a paid product.</p>
</div> </div>
</div> <div class="chapter" id="compatibility">
<div class="chapter-title">
@@ -77,10 +79,16 @@
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Support Until</strong></p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.7.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">7.x.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 and 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Ongoing</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.6.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.x.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 and 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Ongoing</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">December 2025</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.5.x - Deprecated</p></td>
@@ -179,7 +187,7 @@ php bin/console plugin:install --activate --clearCache VRPaymentPayment</code></
</div>
<div class="chapter-body">
<div class="paragraph">
<p>Go to <a href="https://gateway.vr-payment.de/user/login/user/login">VR Payment</a> and create an Account if you do not already have one.</p>
<p>Go to <a href="https://gateway.vr-payment.de/user/login">VR Payment</a> and create an Account if you do not already have one.</p>
</div><div class="admonitionblock tip">
<table>
<tr>
@@ -727,10 +735,20 @@ Tokenization is not available for guest checkouts.
</tr>
</table>
</div> </div>
</div> <div class="section" id="_recurring_payments">
<div class="section-title">
<h2>
<span class="title-number">8.7</span>Recurring payments </h2>
</div>
<div class="section-body">
<div class="paragraph">
<p>Shopware provides the package "Shopware Commercial" with additional features, among others, subscriptions. This plugin supports making payments that are suitable for subscriptions. As long as the payment method&#8217;s conector supports
tokenization, it can be used for subscriptions. The recurring payment is fully managed by Shopware Commercial plugin. Please refer to their documentation for more information.</p>
</div> </div>
</div> <div class="section" id="_key_features">
<div class="section-title">
<h2>
<span class="title-number">8.7</span>Key Features </h2>
<span class="title-number">8.8</span>Key Features </h2>
</div>
<div class="section-body">
<div class="ulist">
@@ -747,12 +765,15 @@ Tokenization is not available for guest checkouts.
<li>
<p><strong>Automatic Updates</strong>: Payment methods sync dynamically via the VR Payment API.</p>
</li>
<li>
<p><strong>Recurring payments</strong>: Make recurring payments with Subscriptions (Shopware Commercial) and VRPayment.</p>
</li>
</ul>
</div> </div>
</div> <div class="section" id="_troubleshooting">
<div class="section-title">
<h2>
<span class="title-number">8.8</span>Troubleshooting </h2>
<span class="title-number">8.9</span>Troubleshooting </h2>
</div>
<div class="section-body">
<div class="ulist">
@@ -783,7 +804,7 @@ Tokenization is not available for guest checkouts.
</div> <div class="section" id="_faqs">
<div class="section-title">
<h2>
<span class="title-number">8.9</span>FAQs </h2>
<span class="title-number">8.10</span>FAQs </h2>
</div>
<div class="section-body">
<div class="paragraph">
@@ -980,18 +1001,23 @@ Tokenization is not available for guest checkouts.
<span class="item-title">Tokenization</span>
</a>
</li> <li class="nav-level-2">
<a href="#_key_features">
<a href="#_recurring_payments">
<span class="item-number">8.7</span>
<span class="item-title">Recurring payments</span>
</a>
</li> <li class="nav-level-2">
<a href="#_key_features">
<span class="item-number">8.8</span>
<span class="item-title">Key Features</span>
</a>
</li> <li class="nav-level-2">
<a href="#_troubleshooting">
<span class="item-number">8.8</span>
<span class="item-number">8.9</span>
<span class="item-title">Troubleshooting</span>
</a>
</li> <li class="nav-level-2">
<a href="#_faqs">
<span class="item-number">8.9</span>
<span class="item-number">8.10</span>
<span class="item-title">FAQs</span>
</a>
</li> </ul>
Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 372 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

+42 -19
View File
@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="keywords" value="VR Payment, Shopware, Shopware Plugin, Payment, Payment Integration, Documentation"><meta name="description" value="The documentation for the Shopware 6 plugin that enables processing payments with VR Payment.">
<link rel="canonical" href="https://plugin-documentation.wallee.com/wallee-payment/shopware-6/master/VRPaymentPayment/docs/fr/documentation.html" />
<link rel="canonical" href="@WalleeCanonicalPath(https://plugin-documentation.wallee.com/wallee-payment, VRPaymentPayment/docs/fr/documentation.html)" />
<title>Wallee Payment Plugin pour Shopware 6</title>
<link href="assets/monokai-sublime.css" rel="stylesheet" />
<link href="assets/base.css" rel="stylesheet" />
@@ -23,7 +23,7 @@
</a>
</li>
<li>
<a href="https://github.com/vr-payment/shopware-6/releases/tag/6.1.14/">
<a href="@WalleeReleasePath()">
Source
</a>
</li>
@@ -50,7 +50,7 @@
</div>
<div class="chapter-body">
<div class="paragraph">
<p><strong>Shopware Version</strong>: 6.5.x or 6.6.x (voir <a href="#compatibility">tableau de compatibilité</a>).</p>
<p><strong>Shopware Version</strong>: 6.5.x, 6.6.x or 6.7.x (voir <a href="#compatibility">tableau de compatibilité</a>).</p>
</div><div class="paragraph">
<p><strong>PHP</strong>: Version minimale requise pour votre installation Shopware (e.g., 7.4+).</p>
</div><div class="paragraph">
@@ -71,22 +71,28 @@
</colgroup>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Shopware Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Plugin Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>PHP Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Support Until</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Version Shopware</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Version du Plugin</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Version PHP</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Support jusqu’à</strong></p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.7.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">7.x.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 et 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">En cours</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.6.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.x.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 and 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">En cours</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 et 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Décembre 2025</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.5.x - Deprecated</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.5.x Obsolète</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">5.x.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 and 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">October 2024</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 et 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Octobre 2024</p></td>
</tr>
</tbody>
</table> </div>
@@ -172,7 +178,7 @@ php bin/console plugin:install --activate --clearCache VRPaymentPayment</code></
</div>
<div class="chapter-body">
<div class="paragraph">
<p>Allez sur <a href="https://gateway.vr-payment.de/user/login/user/login">VR Payment</a> et créez un Compte si vous nen avez pas déjà un</p>
<p>Allez sur hhttps://gateway.vr-payment.de/user/login[VR Payment] et créez un Compte si vous nen avez pas déjà un</p>
</div><div class="admonitionblock tip">
<table>
<tr>
@@ -705,10 +711,19 @@ La tokenisation n&#8217;est pas disponible pour les paiements par les invités.
</tr>
</table>
</div> </div>
</div> <div class="section" id="_paiements_récurrents">
<div class="section-title">
<h2>
<span class="title-number">8.7</span>Paiements récurrents </h2>
</div>
<div class="section-body">
<div class="paragraph">
<p>Shopware fournit le package "Shopware Commercial" avec des fonctionnalités supplémentaires, entre autres, les abonnements. Ce plugin prend en charge les paiements adaptés aux abonnements. Tant que le connecteur de la méthode de paiement prend en charge la tokenisation, il peut être utilisé pour les abonnements. Le paiement récurrent est entièrement géré par le plugin Shopware Commercial. Veuillez vous référer à leur documentation pour plus d&#8217;informations.</p>
</div> </div>
</div> <div class="section" id="_caractéristiques_pricinpales">
<div class="section-title">
<h2>
<span class="title-number">8.7</span>Caractéristiques Pricinpales </h2>
<span class="title-number">8.8</span>Caractéristiques Pricinpales </h2>
</div>
<div class="section-body">
<div class="ulist">
@@ -725,12 +740,15 @@ La tokenisation n&#8217;est pas disponible pour les paiements par les invités.
<li>
<p><strong>Mises à jour automatiques</strong>: Les méthodes de paiement se synchronisent dynamiquement via l&#8217;API Wallee.</p>
</li>
<li>
<p><strong>Paiements récurrents</strong>: Effectuez des paiements récurrents avec les abonnements (Shopware Commercial) et VRPayment.</p>
</li>
</ul>
</div> </div>
</div> <div class="section" id="_troubleshooting">
<div class="section-title">
<h2>
<span class="title-number">8.8</span>Troubleshooting </h2>
<span class="title-number">8.9</span>Troubleshooting </h2>
</div>
<div class="section-body">
<div class="ulist">
@@ -761,7 +779,7 @@ La tokenisation n&#8217;est pas disponible pour les paiements par les invités.
</div> <div class="section" id="_faqs">
<div class="section-title">
<h2>
<span class="title-number">8.9</span>FAQs </h2>
<span class="title-number">8.10</span>FAQs </h2>
</div>
<div class="section-body">
<div class="paragraph">
@@ -954,18 +972,23 @@ A: Oui, le plugin prend en charge les portefeuilles comme Apple Pay.</p>
<span class="item-title">Tokenisation</span>
</a>
</li> <li class="nav-level-2">
<a href="#_caractéristiques_pricinpales">
<a href="#_paiements_récurrents">
<span class="item-number">8.7</span>
<span class="item-title">Paiements récurrents</span>
</a>
</li> <li class="nav-level-2">
<a href="#_caractéristiques_pricinpales">
<span class="item-number">8.8</span>
<span class="item-title">Caractéristiques Pricinpales</span>
</a>
</li> <li class="nav-level-2">
<a href="#_troubleshooting">
<span class="item-number">8.8</span>
<span class="item-number">8.9</span>
<span class="item-title">Troubleshooting</span>
</a>
</li> <li class="nav-level-2">
<a href="#_faqs">
<span class="item-number">8.9</span>
<span class="item-number">8.10</span>
<span class="item-title">FAQs</span>
</a>
</li> </ul>
Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 372 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

+42 -19
View File
@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="keywords" value="VR Payment, Shopware, Shopware Plugin, Payment, Payment Integration, Documentation"><meta name="description" value="The documentation for the Shopware 6 plugin that enables processing payments with VR Payment.">
<link rel="canonical" href="https://plugin-documentation.wallee.com/wallee-payment/shopware-6/master/VRPaymentPayment/docs/it/documentation.html" />
<link rel="canonical" href="@WalleeCanonicalPath(https://plugin-documentation.wallee.com/wallee-payment, VRPaymentPayment/docs/it/documentation.html)" />
<title>VR Payment Shopware 6 Documentation</title>
<link href="assets/monokai-sublime.css" rel="stylesheet" />
<link href="assets/base.css" rel="stylesheet" />
@@ -23,7 +23,7 @@
</a>
</li>
<li>
<a href="https://github.com/vr-payment/shopware-6/releases/tag/6.1.14/">
<a href="@WalleeReleasePath()">
Source
</a>
</li>
@@ -50,7 +50,7 @@
</div>
<div class="chapter-body">
<div class="paragraph">
<p>Versione di Shopware: 6.5.x o 6.6.x (vedere la <a href="#compatibility">tabella di compatibilità</a>).</p>
<p>Versione di Shopware: 6.5.x, 6.6.x o 6.7.x (vedere la <a href="#compatibility">tabella di compatibilità</a>).</p>
</div><div class="paragraph">
<p>PHP: Versione minima richiesta dalla vostra installazione di Shopware (ad es. 7.4+).</p>
</div><div class="paragraph">
@@ -71,22 +71,28 @@
</colgroup>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Shopware Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Plugin Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>PHP Version</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Support Until</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Versione Shopware</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Versione Plugin</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Versione PHP</strong></p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Supporto fino a</strong></p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.7.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">7.x.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 e 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">In corso</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.6.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.x.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 and 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Ongoing</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 e 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Dicembre 2025</p></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.5.x - Deprecated</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">6.5.x Deprecato</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">5.x.x</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 and 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">October 2024</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">PHP 8.2 e 8.3</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Ottobre 2024</p></td>
</tr>
</tbody>
</table> </div>
@@ -179,7 +185,7 @@ php bin/console plugin:install --activate --clearCache VRPaymentPayment</code></
</div>
<div class="chapter-body">
<div class="paragraph">
<p>Andate su <a href="https://gateway.vr-payment.de/user/login/user/login">VR Payment</a> e create un account se non ne avete già uno.</p>
<p>Andate su <a href="https://gateway.vr-payment.de/user/login">VR Payment</a> e create un account se non ne avete già uno.</p>
</div><div class="admonitionblock tip">
<table>
<tr>
@@ -712,10 +718,19 @@ La tokenizzazione non è disponibile per i checkout degli ospiti.
</tr>
</table>
</div> </div>
</div> <div class="section" id="_pagamenti_ricorrenti">
<div class="section-title">
<h2>
<span class="title-number">8.7</span>Pagamenti ricorrenti </h2>
</div>
<div class="section-body">
<div class="paragraph">
<p>Shopware fornisce il pacchetto "Shopware Commercial" con funzionalità aggiuntive, tra cui gli abbonamenti. Questo plugin supporta l&#8217;esecuzione di pagamenti adatti per gli abbonamenti. Finché il connettore del metodo di pagamento supporta la tokenizzazione, può essere utilizzato per gli abbonamenti. Il pagamento ricorrente è completamente gestito dal plugin Shopware Commercial. Si prega di fare riferimento alla loro documentazione per maggiori informazioni.</p>
</div> </div>
</div> <div class="section" id="_key_features">
<div class="section-title">
<h2>
<span class="title-number">8.7</span>Key Features </h2>
<span class="title-number">8.8</span>Key Features </h2>
</div>
<div class="section-body">
<div class="ulist">
@@ -732,12 +747,15 @@ La tokenizzazione non è disponibile per i checkout degli ospiti.
<li>
<p><strong>Automatic Updates</strong>: I metodi di pagamento si sincronizzano dinamicamente tramite l&#8217;API VR Payment.</p>
</li>
<li>
<p><strong>Pagamenti ricorrenti</strong>: Effettua pagamenti ricorrenti con Abbonamenti (Shopware Commercial) e VRPayment.</p>
</li>
</ul>
</div> </div>
</div> <div class="section" id="_risoluzione_dei_problemi">
<div class="section-title">
<h2>
<span class="title-number">8.8</span>Risoluzione dei Problemi </h2>
<span class="title-number">8.9</span>Risoluzione dei Problemi </h2>
</div>
<div class="section-body">
<div class="ulist">
@@ -768,7 +786,7 @@ La tokenizzazione non è disponibile per i checkout degli ospiti.
</div> <div class="section" id="_faqs">
<div class="section-title">
<h2>
<span class="title-number">8.9</span>FAQs </h2>
<span class="title-number">8.10</span>FAQs </h2>
</div>
<div class="section-body">
<div class="paragraph">
@@ -965,18 +983,23 @@ La tokenizzazione non è disponibile per i checkout degli ospiti.
<span class="item-title">Tokenization</span>
</a>
</li> <li class="nav-level-2">
<a href="#_key_features">
<a href="#_pagamenti_ricorrenti">
<span class="item-number">8.7</span>
<span class="item-title">Pagamenti ricorrenti</span>
</a>
</li> <li class="nav-level-2">
<a href="#_key_features">
<span class="item-number">8.8</span>
<span class="item-title">Key Features</span>
</a>
</li> <li class="nav-level-2">
<a href="#_risoluzione_dei_problemi">
<span class="item-number">8.8</span>
<span class="item-number">8.9</span>
<span class="item-title">Risoluzione dei Problemi</span>
</a>
</li> <li class="nav-level-2">
<a href="#_faqs">
<span class="item-number">8.9</span>
<span class="item-number">8.10</span>
<span class="item-title">FAQs</span>
</a>
</li> </ul>
Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Some files were not shown because too many files have changed in this diff Show More