hi,
gibt es hier etwas neues?
vg
Alex
Ja, siehe oben
E-Mail Template oder falsche Einstellungen im Mailer
Hallo tzProfi,
ich hab dieses Thema schon längst vergessen…
Ja, ich habe damals alles angepasst. Jetzt läuft wie gewünscht. Wie es eben oben steht es waren verschiedene Bereiche. Was genau brauchst Du?
Mit besten Grüßen
Lago
Nur als Hinweis: …bei mir war dies der Fall da ich im Flow Builder einen zweiten Auslöser angelegt hatte (E-Mail an mich bei Bestellung) und dann ging überhaupt keine Bestellbestätigung mehr raus; 2. Auslöser wieder gelöscht und die Mail ging wieder raus; warum auch immer.
Hallo Lago,
wie hast Du Deine Variablen den nun angepasst? Und wo genau? Im Bestellbestätigungstemplate unten im html-Bereich? Ggf. welche Zeile?
Alles andere haben wir schon versucht (FlowBuilder, etc.) - hat nicht geholfen.
Würde mich freuen von Dir zu lesen, da wir seit heute bei zwei Shops schon diesen Fehler haben und gestern noch alles lief mit SW6.5.0.0. Keine Ahnung was da nun wieder los ist.
Danke schonmal!
Grüße
Eric
Hallo DCP2018,
nimm am besten kompletten Code. Da ist alles komplett angepasst
=============================================
{% set currencyIsoCode = order.currency.isoCode %}
Vielen Dank für Ihre Bestellung mit Bestellnummer {{ order.orderNumber }} bei Spielwolke.de!
{% if order.orderCustomer.salutation %}{{ order.orderCustomer.salutation.translated.letterName ~ ’ ’ }}{% endif %}{{ order.orderCustomer.firstName }} {{ order.orderCustomer.lastName }},
Ihre Bestellung ist am {{ order.orderDateTime|format_datetime(‚medium‘, ‚short‘, locale=‚de-DE‘) }} bei uns eingegangen.
Bestellnummer: {{ order.orderNumber }}
Sobald ein Zahlungseingang erfolgt ist, erhalten Sie eine separate Benachrichtigung und Ihre Bestellung wird verarbeitet.
Den aktuellen Status Ihrer Bestellung können Sie jederzeit über diesen Link abrufen: {{ rawUrl(‚frontend.account.order.single.page‘, { ‚deepLinkCode‘: order.deepLinkCode }, salesChannel.domains|first.url) }}
Über diesen Link können Sie auch die Bestellung bearbeiten, die Zahlungsart wechseln oder nachträglich eine Zahlung durchführen.
Informationen zu Ihrer Bestellung:
{% for lineItem in order.nestedLineItems %}
{% set nestingLevel = 0 %}
{% set nestedItem = lineItem %}
{% block lineItem %}
<tr>
<td>{% if nestedItem.payload.productNumber is defined %}{{ nestedItem.payload.productNumber|u.wordwrap(80) }}{% endif %}</td>
<td><img src="{{ searchMedia([lineItem.coverId], context).first()|sw_encode_media_url }}" width="75" height="auto"/></td>
<td>
{% if nestingLevel > 0 %}
{% for i in 1..nestingLevel %}
<span style="position: relative;">
<span style="display: inline-block;
position: absolute;
width: 6px;
height: 20px;
top: 0;
border-left: 2px solid rgba(0, 0, 0, 0.15);
margin-left: {{ i * 10 }}px;"></span>
</span>
{% endfor %}
{% endif %}
<div{% if nestingLevel > 0 %} style="padding-left: {{ (nestingLevel + 1) * 10 }}px"{% endif %}>
{{ nestedItem.label|u.wordwrap(80) }}
</div>
{% if nestedItem.payload.options is defined and nestedItem.payload.options|length >= 1 %}
<div>
{% for option in nestedItem.payload.options %}
{{ option.group }}: {{ option.option }}
{% if nestedItem.payload.options|last != option %}
{{ " | " }}
{% endif %}
{% endfor %}
</div>
{% endif %}
{% if nestedItem.payload.features is defined and nestedItem.payload.features|length >= 1 %}
{% set referencePriceFeatures = nestedItem.payload.features|filter(feature => feature.type == 'referencePrice') %}
{% if referencePriceFeatures|length >= 1 %}
{% set referencePriceFeature = referencePriceFeatures|first %}
<div>
{{ referencePriceFeature.value.purchaseUnit }} {{ referencePriceFeature.value.unitName }}
({{ referencePriceFeature.value.price|currency(currencyIsoCode) }}* / {{ referencePriceFeature.value.referenceUnit }} {{ referencePriceFeature.value.unitName }})
</div>
{% endif %}
{% endif %}
</td>
<td style="text-align: center">{{ nestedItem.quantity }}</td>
<td>{{ nestedItem.unitPrice|currency(currencyIsoCode) }}</td>
<td>{{ nestedItem.totalPrice|currency(currencyIsoCode) }}</td>
</tr>
{% if nestedItem.children.count > 0 %}
{% set nestingLevel = nestingLevel + 1 %}
{% for lineItem in nestedItem.children %}
{% set nestedItem = lineItem %}
{{ block('lineItem') }}
{% endfor %}
{% endif %}
{% endblock %}
{% endfor %}
Produkt-Nr. | Produktbild | Bezeichnung | Menge | Preis | Summe |
{% set delivery = order.deliveries.first %}
{% set displayRounded = order.totalRounding.interval != 0.01 or order.totalRounding.decimals != order.itemRounding.decimals %}
{% set decimals = order.totalRounding.decimals %}
{% set total = order.price.totalPrice %}
{% if displayRounded %}
{% set total = order.price.rawTotal %}
{% set decimals = order.itemRounding.decimals %}
{% endif %}
{% for shippingCost in order.deliveries %}
Versandkosten: {{ shippingCost.shippingCosts.totalPrice|currency(currencyIsoCode) }}
{% endfor %}
Gesamtkosten Netto: {{ order.amountNet|currency(currencyIsoCode) }}
{% for calculatedTax in order.price.calculatedTaxes %}
{% if order.taxStatus is same as('net') %}zzgl.{% else %}inkl.{% endif %} {{ calculatedTax.taxRate }}% MwSt. {{ calculatedTax.tax|currency(currencyIsoCode) }}
{% endfor %}
{% if not displayRounded %}{% endif %}Gesamtkosten Brutto: {{ total|currency(currencyIsoCode,decimals=decimals) }}{% if not displayRounded %}{% endif %}
{% if displayRounded %}
Gesamtkosten Brutto gerundet: {{ order.price.totalPrice|currency(currencyIsoCode,decimals=order.totalRounding.decimals) }}
{% endif %}
<strong>Gewählte Versandart:</strong> {{ delivery.shippingMethod.translated.name }}<br>
{{ delivery.shippingMethod.translated.description }}<br>
<strong>Gewählte Zahlungsart:</strong> {{ order.transactions.first.paymentMethod.translated.name }}
<br>
<br>
<strong>Zusätzliche Informationen:</strong> {{ order.customerComment }}<br>
<br>
{% set billingAddress = order.addresses.get(order.billingAddressId) %}
<strong>Rechnungsadresse:</strong><br>
{{ billingAddress.company }}<br>
{{ billingAddress.firstName }} {{ billingAddress.lastName }}<br>
E-Mail: {{ order.orderCustomer.email }}<br>
Telefonnummer: {{ billingAddress.phoneNumber }}<br>
{{ billingAddress.street }}<br>
{{ billingAddress.zipcode }} {{ billingAddress.city }}<br>
{{ billingAddress.country.translated.name }}<br>
<br>
<strong>Lieferadresse:</strong><br>
{{ delivery.shippingOrderAddress.company }}<br>
{{ delivery.shippingOrderAddress.firstName }} {{ delivery.shippingOrderAddress.lastName }}<br>
{{ delivery.shippingOrderAddress.street }} <br>
{{ delivery.shippingOrderAddress.zipcode}} {{ delivery.shippingOrderAddress.city }}<br>
{{ delivery.shippingOrderAddress.country.translated.name }}<br>
<br>
{% if order.orderCustomer.vatIds %}
Ihre Umsatzsteuer-ID: {{ order.orderCustomer.vatIds|first }}
Bei erfolgreicher Prüfung und sofern Sie aus dem EU-Ausland
bestellen, erhalten Sie Ihre Ware umsatzsteuerbefreit. <br>
{% endif %}
<br/>
<strong>Hinsichtlich der Voraussetzungen und Rechtsfolgen des Widerrufsrechts wird auf die Widerrufsbelehrung im Anhang verwiesen.</strong><br/><br/>
Für Rückfragen stehen wir Ihnen jederzeit gerne zur Verfügung<br/><br/><br/>
Mit besten Grüßen
=============================================
Mit besten Grüßen
Lago
Danke Lago für die Rückmeldung - funktioniert leider auch nicht.
Ich habe mir mal die Ereignis-Logs angeschaut zu meinen Testbestellungen.
Da ist ein Fehler aufgetreten, bekomme es nur gerade nicht gebacken, kann mir da jemand mal einen Stups bitte geben:
{
„source“: „core“,
„environment“: „prod“,
„additionalData“: {
„message“: „Could not render Mail-Template with error message: Failed rendering string template using Twig: Unexpected token "name" of value "’" ("end of print statement" expected) in "c0a1d170ab44396edf8ef8abe2a3b56d" at line 4.“,
„template“: „{% set currencyIsoCode = order.currency.isoCode %}\r\nVielen Dank für Ihre Bestellung mit Bestellnummer {{ order.orderNumber }} bei Darkcrypt-Production!\r\n\r\n{% if order.orderCustomer.salutation %}{{ order.orderCustomer.salutation.translated.letterName ~ ’ ’ }}{% endif %}{{ order.orderCustomer.firstName }} {{ order.orderCustomer.lastName }},\r\nIhre Bestellung ist am {{ order.orderDateTime|format_datetime(‚medium‘, ‚short‘, locale=‚de-DE‘) }} bei uns eingegangen.\r\n\r\nBestellnummer: {{ order.orderNumber }}\r\n\r\nSobald ein Zahlungseingang erfolgt ist, erhalten Sie eine separate Benachrichtigung und Ihre Bestellung wird verarbeitet.\r\n\r\nDen aktuellen Status Ihrer Bestellung können Sie jederzeit über diesen Link abrufen: {{ rawUrl(‚frontend.account.order.single.page‘, { ‚deepLinkCode‘: order.deepLinkCode }, salesChannel.domains|first.url) }}\r\nÜber diesen Link können Sie auch die Bestellung bearbeiten, die Zahlungsart wechseln oder nachträglich eine Zahlung durchführen.\r\n\r\nInformationen zu Ihrer Bestellung:\r\n{% for lineItem in order.nestedLineItems %}\r\n {% set nestingLevel = 0 %}\r\n {% set nestedItem = lineItem %}\r\n {% block lineItem %}\r\n \r\n {% if nestedItem.payload.productNumber is defined %}{{ nestedItem.payload.productNumber|u.wordwrap(80) }}{% endif %}\r\n <img src="{{ searchMedia([lineItem.coverId], context).first()|sw_encode_media_url }}" width="75" height="auto"/>\r\n \r\n {% if nestingLevel > 0 %}\r\n {% for i in 1…nestingLevel %}\r\n <span style="position: relative;">\r\n <span style="display: inline-block;\r\n position: absolute;\r\n width: 6px;\r\n height: 20px;\r\n top: 0;\r\n border-left: 2px solid rgba(0, 0, 0, 0.15);\r\n margin-left: {{ i * 10 }}px;">\r\n \r\n {% endfor %}\r\n {% endif %}\r\n\r\n <div{% if nestingLevel > 0 %} style="padding-left: {{ (nestingLevel + 1) * 10 }}px"{% endif %}>\r\n {{ nestedItem.label|u.wordwrap(80) }}\r\n \r\n\r\n {% if nestedItem.payload.options is defined and nestedItem.payload.options|length >= 1 %}\r\n
\r\n{{ delivery.shippingMethod.translated.description }}
\r\nGewählte Zahlungsart: {{ order.transactions.first.paymentMethod.translated.name }}\r\n
\r\n
\r\nZusätzliche Informationen: {{ order.customerComment }}
\r\n
\r\n{% set billingAddress = order.addresses.get(order.billingAddressId) %}\r\nRechnungsadresse:
\r\n{{ billingAddress.company }}
\r\n{{ billingAddress.firstName }} {{ billingAddress.lastName }}
\r\nE-Mail: {{ order.orderCustomer.email }}
\r\nTelefonnummer: {{ billingAddress.phoneNumber }}
\r\n{{ billingAddress.street }}
\r\n{{ billingAddress.zipcode }} {{ billingAddress.city }}
\r\n{{ billingAddress.country.translated.name }}
\r\n
\r\n\r\nLieferadresse:
\r\n{{ delivery.shippingOrderAddress.company }}
\r\n{{ delivery.shippingOrderAddress.firstName }} {{ delivery.shippingOrderAddress.lastName }}
\r\n{{ delivery.shippingOrderAddress.street }}
\r\n{{ delivery.shippingOrderAddress.zipcode}} {{ delivery.shippingOrderAddress.city }}
\r\n{{ delivery.shippingOrderAddress.country.translated.name }}
\r\n
\r\n{% if order.orderCustomer.vatIds %}\r\n Ihre Umsatzsteuer-ID: {{ order.orderCustomer.vatIds|first }}\r\n Bei erfolgreicher Prüfung und sofern Sie aus dem EU-Ausland\r\n bestellen, erhalten Sie Ihre Ware umsatzsteuerbefreit.
\r\n{% endif %}\r\n
\r\nHinsichtlich der Voraussetzungen und Rechtsfolgen des Widerrufsrechts wird auf die Widerrufsbelehrung im Anhang verwiesen.
\r\nFür Rückfragen stehen wir Ihnen jederzeit gerne zur Verfügung
\r\nMit besten Grüßen\r\n\n\n Addresse:\n {{ config(‚core.basicInformation.address‘)|striptags(‚
‘)|replace({"
":"\n"}) }}\n\n Bankverbindung:\n {{ config(‚core.basicInformation.bankAccount‘)|striptags(‚
‘)|replace({"
":"\n"}) }}\n“,
„eventName“: „checkout.order.placed“,
„exception“: "Shopware\Core\Framework\Adapter\Twig\Exception\StringTemplateRenderingException: Failed rendering string template using Twig: Unexpected token "name" of value "’" ("end of print statement" expected) in "c0a1d170ab44396edf8ef8abe2a3b56d" at line 4. in /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Framework/Adapter/Twig/StringTemplateRenderer.php:78\nStack trace:\n#0 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Content/Mail/Service/MailService.php(127): Shopware\Core\Framework\Adapter\Twig\StringTemplateRenderer->render()\n#1 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Content/Flow/Dispatching/Action/SendMailAction.php(158): Shopware\Core\Content\Mail\Service\MailService->send()\n#2 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Content/Flow/Dispatching/Action/SendMailAction.php(148): Shopware\Core\Content\Flow\Dispatching\Action\SendMailAction->send()\n#3 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Content/Flow/Dispatching/FlowExecutor.php(133): Shopware\Core\Content\Flow\Dispatching\Action\SendMailAction->handleFlow()\n#4 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Content/Flow/Dispatching/FlowExecutor.php(98): Shopware\Core\Content\Flow\Dispatching\FlowExecutor->callHandle()\n#5 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Content/Flow/Dispatching/FlowExecutor.php(81): Shopware\Core\Content\Flow\Dispatching\FlowExecutor->executeAction()\n#6 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Content/Flow/Dispatching/FlowExecutor.php(55): Shopware\Core\Content\Flow\Dispatching\FlowExecutor->executeSequence()\n#7 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php(128): Shopware\Core\Content\Flow\Dispatching\FlowExecutor->execute()\n#8 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php(60): Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->callFlowExecutor()\n#9 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php(54): Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()\n#10 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php(31): Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()\n#11 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Checkout/Cart/SalesChannel/CartOrderRoute.php(92): Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()\n#12 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Profiling/Profiler.php(59): Shopware\Core\Checkout\Cart\SalesChannel\CartOrderRoute->Shopware\Core\Checkout\Cart\SalesChannel\{closure}()\n#13 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Checkout/Cart/SalesChannel/CartOrderRoute.php(93): Shopware\Core\Profiling\Profiler::trace()\n#14 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Checkout/Cart/SalesChannel/CartService.php(122): Shopware\Core\Checkout\Cart\SalesChannel\CartOrderRoute->order()\n#15 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Checkout/Order/SalesChannel/OrderService.php(65): Shopware\Core\Checkout\Cart\SalesChannel\CartService->order()\n#16 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/storefront/Controller/CheckoutController.php(168): Shopware\Core\Checkout\Order\SalesChannel\OrderService->createOrder()\n#17 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/Profiling/Profiler.php(59): Shopware\Storefront\Controller\CheckoutController->Shopware\Storefront\Controller\{closure}()\n#18 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/storefront/Controller/CheckoutController.php(168): Shopware\Core\Profiling\Profiler::trace()\n#19 /homepages/2/d866897706/htdocs/larpshop/vendor/symfony/http-kernel/HttpKernel.php(163): Shopware\Storefront\Controller\CheckoutController->order()\n#20 /homepages/2/d866897706/htdocs/larpshop/vendor/symfony/http-kernel/HttpKernel.php(74): Symfony\Component\HttpKernel\HttpKernel->handleRaw()\n#21 /homepages/2/d866897706/htdocs/larpshop/vendor/symfony/http-kernel/Kernel.php(184): Symfony\Component\HttpKernel\HttpKernel->handle()\n#22 /homepages/2/d866897706/htdocs/larpshop/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php(86): Symfony\Component\HttpKernel\Kernel->handle()\n#23 /homepages/2/d866897706/htdocs/larpshop/vendor/symfony/http-kernel/HttpCache/HttpCache.php(464): Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle()\n#24 /homepages/2/d866897706/htdocs/larpshop/vendor/symfony/http-kernel/HttpCache/HttpCache.php(264): Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()\n#25 /homepages/2/d866897706/htdocs/larpshop/vendor/symfony/http-kernel/HttpCache/HttpCache.php(278): Symfony\Component\HttpKernel\HttpCache\HttpCache->pass()\n#26 /homepages/2/d866897706/htdocs/larpshop/vendor/symfony/http-kernel/HttpCache/HttpCache.php(204): Symfony\Component\HttpKernel\HttpCache\HttpCache->invalidate()\n#27 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/HttpKernel.php(139): Symfony\Component\HttpKernel\HttpCache\HttpCache->handle()\n#28 /homepages/2/d866897706/htdocs/larpshop/vendor/shopware/core/HttpKernel.php(61): Shopware\Core\HttpKernel->doHandle()\n#29 /homepages/2/d866897706/htdocs/larpshop/public/index.php(63): Shopware\Core\HttpKernel->handle()\n#30 /homepages/2/d866897706/htdocs/larpshop/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php(35): Symfony\Component\HttpKernel\HttpKernelInterface@anonymous->handle()\n#31 /homepages/2/d866897706/htdocs/larpshop/vendor/autoload_runtime.php(29): Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()\n#32 /homepages/2/d866897706/htdocs/larpshop/public/index.php(12):
require_once(‚/homepages/2/d8…‘)\n#33 {main}",
„templateData“: {
„order“: {
„id“: „16b9e597fbad471da3de5c20ee1c8ccc“,
„tags“: ,
„price“: {
„netPrice“: 0,
„rawTotal“: 0,
„taxRules“: [
{
„taxRate“: 19,
„extensions“: ,
„percentage“: 100
}
],
„taxStatus“: „gross“,
„extensions“: ,
„totalPrice“: 0,
„positionPrice“: 0,
„calculatedTaxes“: [
{
„tax“: 0,
„price“: 0,
„taxRate“: 19,
„extensions“:
}
]
},
„ruleIds“: [
„28a6392e39a944a3852b9f8a441d6a23“,
„3858957016644de4ae48c0500bf3ccc8“,
„5184e4e4951f41229356f97f017be71d“,
„5ff402a1ab314f74bc0ba30324273e5f“,
„e1378db7808a478f919e0d740d5d6c1a“,
„28caae75a5624f0d985abd0eb32aa160“,
„a2126161ec5c42fb82812a795b745a2b“,
„fca421791ca24508973a3430f4eb619e“
],
„stateId“: „ea6e22772797413dbe0fd07d83f0ce61“,
„currency“: {
„id“: „b7d2554b0ce847cd82f3ac9bd1c0dfca“,
„name“: „Euro“,
„factor“: 1,
„orders“: null,
„symbol“: „€“,
„isoCode“: „EUR“,
„position“: 1,
„createdAt“: „2021-04-12T10:09:53.767+00:00“,
„shortName“: „EUR“,
„updatedAt“: null,
„versionId“: null,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „currency_foreign_keys_extension“,
„extensions“:
},
„internal_mapping_storage“: {
„apiAlias“: null,
„extensions“:
}
},
„translated“: {
„name“: „Euro“,
„shortName“: „EUR“,
„customFields“:
},
„taxFreeFrom“: 0,
„customFields“: null,
„itemRounding“: {
„decimals“: 2,
„interval“: 0.01,
„extensions“: ,
„roundForNet“: true
},
„translations“: null,
„salesChannels“: null,
„totalRounding“: {
„decimals“: 2,
„interval“: 0.01,
„extensions“: ,
„roundForNet“: true
},
„productExports“: null,
„isSystemDefault“: true,
„countryRoundings“: null,
„_uniqueIdentifier“: „b7d2554b0ce847cd82f3ac9bd1c0dfca“,
„salesChannelDomains“: null,
„promotionDiscountPrices“: null,
„salesChannelDefaultAssignments“: null
},
„language“: null,
„addresses“: [
{
„id“: „c6fae23e03ad46afa06e455b50b3c111“,
„city“: „Steinbach“,
„order“: null,
„title“: null,
„vatId“: null,
„street“: „Berliner Str. 55“,
„company“: null,
„country“: {
„id“: „96997841d86143ad9e056e0f9326b673“,
„iso“: „DE“,
„iso3“: „DEU“,
„name“: „Deutschland“,
„active“: true,
„states“: null,
„position“: 1,
„taxRules“: null,
„createdAt“: „2021-04-12T10:09:50.765+00:00“,
„updatedAt“: null,
„versionId“: null,
„companyTax“: {
„amount“: 0,
„enabled“: false,
„currencyId“: „b7d2554b0ce847cd82f3ac9bd1c0dfca“,
„extensions“:
},
„extensions“: {
„foreignKeys“: {
„apiAlias“: „country_foreign_keys_extension“,
„extensions“:
},
„internal_mapping_storage“: {
„apiAlias“: null,
„extensions“:
}
},
„translated“: {
„name“: „Deutschland“,
„customFields“: ,
„addressFormat“: [
[
„address/company“,
„symbol/dash“,
„address/department“
],
[
„address/first_name“,
„address/last_name“
],
[
„address/street“
],
[
„address/zipcode“,
„address/city“
],
[
„address/country“
]
]
},
„customerTax“: {
„amount“: 0,
„enabled“: false,
„currencyId“: „b7d2554b0ce847cd82f3ac9bd1c0dfca“,
„extensions“:
},
„customFields“: null,
„translations“: null,
„vatIdPattern“: „(DE)?[0-9]{9}“,
„addressFormat“: [
[
„address/company“,
„symbol/dash“,
„address/department“
],
[
„address/first_name“,
„address/last_name“
],
[
„address/street“
],
[
„address/zipcode“,
„address/city“
],
[
„address/country“
]
],
„salesChannels“: null,
„vatIdRequired“: false,
„orderAddresses“: null,
„_uniqueIdentifier“: „96997841d86143ad9e056e0f9326b673“,
„checkVatIdPattern“: false,
„customerAddresses“: null,
„shippingAvailable“: true,
„postalCodeRequired“: false,
„checkPostalCodePattern“: false,
„currencyCountryRoundings“: null,
„defaultPostalCodePattern“: „\d{5}“,
„forceStateInRegistration“: false,
„advancedPostalCodePattern“: null,
„displayStateInRegistration“: false,
„checkAdvancedPostalCodePattern“: false,
„salesChannelDefaultAssignments“: null
},
„orderId“: „16b9e597fbad471da3de5c20ee1c8ccc“,
„zipcode“: „61449“,
„lastName“: „Testzeremonie“,
„countryId“: „96997841d86143ad9e056e0f9326b673“,
„createdAt“: „2024-02-15T12:25:35.675+00:00“,
„firstName“: „Christian“,
„updatedAt“: null,
„versionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„department“: null,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „order_address_foreign_keys_extension“,
„extensions“:
}
},
„salutation“: null,
„translated“: ,
„phoneNumber“: null,
„countryState“: null,
„customFields“: null,
„salutationId“: „115f6ac1d92748ad9a301010b2c29449“,
„countryStateId“: „4c0f5cc3c4d047dbb138b15f5ad71d90“,
„orderVersionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„orderDeliveries“: null,
„_uniqueIdentifier“: „c6fae23e03ad46afa06e455b50b3c111“,
„additionalAddressLine1“: null,
„additionalAddressLine2“: null
}
],
„amountNet“: 0,
„createdAt“: „2024-02-15T12:25:35.677+00:00“,
„createdBy“: null,
„documents“: null,
„lineItems“: [
{
„id“: „4776a4261f7f494c9fbc6f59d586df94“,
„good“: true,
„type“: „product“,
„cover“: null,
„label“: „Testartikel“,
„order“: null,
„price“: {
„quantity“: 1,
„taxRules“: [
{
„taxRate“: 19,
„extensions“: ,
„percentage“: 100
}
],
„listPrice“: null,
„unitPrice“: 0,
„extensions“: ,
„totalPrice“: 0,
„referencePrice“: null,
„calculatedTaxes“: [
{
„tax“: 0,
„price“: 0,
„taxRate“: 19,
„extensions“:
}
],
„regulationPrice“: null
},
„parent“: null,
„states“: [
„is-physical“
],
„coverId“: „f4b068af3b5c45528fd271fe43b6acbc“,
„orderId“: „16b9e597fbad471da3de5c20ee1c8ccc“,
„payload“: {
„isNew“: false,
„stock“: 10,
„taxId“: „7c9bb2afb1464ea5bae30df58c0d7d13“,
„tagIds“: null,
„options“: ,
„features“: ,
„parentId“: null,
„createdAt“: „2023-04-10 23:02:47.255“,
„optionIds“: null,
„streamIds“: null,
„isCloseout“: false,
„categoryIds“: [
„821f61645917417ba45ac61608546c77“,
„7b5461a705f349e193d47f5980628c31“,
„d03f579f453e468688fbbe8dcb1d53fa“
],
„propertyIds“: null,
„releaseDate“: null,
„customFields“: ,
„productNumber“: „DCP-Testart1“,
„manufacturerId“: „8c4cd492006149bbaf2b4e9127a941a1“,
„purchasePrices“: „{"extensions":,"currencyId":"b7d2554b0ce847cd82f3ac9bd1c0dfca","net":0,"gross":0,"linked":true,"listPrice":null,"percentage":null,"regulationPrice":null}“,
„markAsTopseller“: false
},
„product“: null,
„children“: null,
„parentId“: null,
„position“: 1,
„quantity“: 1,
„createdAt“: „2024-02-15T12:25:35.676+00:00“,
„downloads“: ,
„productId“: „bca1a79a62484ef8b7dba787da75f128“,
„promotion“: null,
„removable“: true,
„stackable“: true,
„unitPrice“: 0,
„updatedAt“: null,
„versionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „order_line_item_foreign_keys_extension“,
„extensions“:
}
},
„identifier“: „bca1a79a62484ef8b7dba787da75f128“,
„totalPrice“: 0,
„translated“: ,
„description“: null,
„promotionId“: null,
„customFields“: null,
„referencedId“: „bca1a79a62484ef8b7dba787da75f128“,
„orderVersionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„parentVersionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„priceDefinition“: {
„type“: „quantity“,
„price“: 0,
„quantity“: 1,
„taxRules“: [
{
„taxRate“: 19,
„extensions“: ,
„percentage“: 100
}
],
„listPrice“: null,
„extensions“: ,
„isCalculated“: true,
„regulationPrice“: null,
„referencePriceDefinition“: null
},
„productVersionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„_uniqueIdentifier“: „4776a4261f7f494c9fbc6f59d586df94“,
„orderDeliveryPositions“: null,
„orderTransactionCaptureRefundPositions“: null
}
],
„orderDate“: „2024-02-15T00:00:00.000+00:00“,
„taxStatus“: „gross“,
„updatedAt“: null,
„updatedBy“: null,
„versionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„currencyId“: „b7d2554b0ce847cd82f3ac9bd1c0dfca“,
„deliveries“: [
{
„id“: „9dea130c11f24d93bed0089a792d1593“,
„order“: null,
„orderId“: „16b9e597fbad471da3de5c20ee1c8ccc“,
„stateId“: „43b5adfc7d5144e8b4085724eb5a7cd1“,
„createdAt“: „2024-02-15T12:25:35.676+00:00“,
„positions“: null,
„updatedAt“: null,
„versionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „order_delivery_foreign_keys_extension“,
„extensions“:
}
},
„translated“: ,
„customFields“: null,
„shippingCosts“: {
„quantity“: 1,
„taxRules“: [
{
„taxRate“: 19,
„extensions“: ,
„percentage“: 0
}
],
„listPrice“: null,
„unitPrice“: 0,
„extensions“: ,
„totalPrice“: 0,
„referencePrice“: null,
„calculatedTaxes“: [
{
„tax“: 0,
„price“: 0,
„taxRate“: 19,
„extensions“:
}
],
„regulationPrice“: null
},
„trackingCodes“: ,
„orderVersionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„shippingMethod“: {
„id“: „4417102846dd4638807a2b0873fac666“,
„tax“: null,
„name“: „Standard“,
„tags“: null,
„media“: null,
„taxId“: null,
„active“: true,
„prices“: ,
„mediaId“: null,
„taxType“: „auto“,
„position“: 1,
„createdAt“: „2021-04-12T10:09:53.955+00:00“,
„updatedAt“: „2023-04-07T22:16:23.592+00:00“,
„versionId“: null,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „shipping_method_foreign_keys_extension“,
„extensions“:
},
„internal_mapping_storage“: {
„apiAlias“: null,
„extensions“:
}
},
„translated“: {
„name“: „Standard“,
„description“: null,
„trackingUrl“: null,
„customFields“:
},
„description“: null,
„trackingUrl“: null,
„customFields“: null,
„deliveryTime“: {
„id“: „05c7598dee13447a9f9897aa8ce4ae28“,
„max“: 4,
„min“: 3,
„name“: „3-4 Wochen“,
„unit“: „week“,
„products“: null,
„createdAt“: „2021-04-12T10:09:53.000+00:00“,
„updatedAt“: „2023-04-07T22:52:23.595+00:00“,
„versionId“: null,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „delivery_time_foreign_keys_extension“,
„extensions“:
},
„internal_mapping_storage“: {
„apiAlias“: null,
„extensions“:
}
},
„translated“: {
„name“: „3-4 Wochen“,
„customFields“:
},
„customFields“: null,
„translations“: null,
„shippingMethods“: null,
„_uniqueIdentifier“: „05c7598dee13447a9f9897aa8ce4ae28“
},
„translations“: null,
„salesChannels“: null,
„deliveryTimeId“: „05c7598dee13447a9f9897aa8ce4ae28“,
„orderDeliveries“: null,
„availabilityRule“: null,
„_uniqueIdentifier“: „4417102846dd4638807a2b0873fac666“,
„availabilityRuleId“: „fca421791ca24508973a3430f4eb619e“,
„salesChannelDefaultAssignments“: null
},
„shippingMethodId“: „4417102846dd4638807a2b0873fac666“,
„_uniqueIdentifier“: „9dea130c11f24d93bed0089a792d1593“,
„stateMachineState“: {
„id“: „43b5adfc7d5144e8b4085724eb5a7cd1“,
„name“: „Offen“,
„orders“: null,
„createdAt“: „2021-04-12T10:09:55.006+00:00“,
„updatedAt“: null,
„versionId“: null,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „state_machine_state_foreign_keys_extension“,
„extensions“:
},
„internal_mapping_storage“: {
„apiAlias“: null,
„extensions“:
}
},
„translated“: {
„name“: „Offen“,
„customFields“:
},
„customFields“: null,
„stateMachine“: null,
„translations“: null,
„technicalName“: „open“,
„stateMachineId“: „d2b405fef46f46299ca33e371012c559“,
„orderDeliveries“: null,
„_uniqueIdentifier“: „43b5adfc7d5144e8b4085724eb5a7cd1“,
„orderTransactions“: null,
„orderTransactionCaptures“: null,
„toStateMachineTransitions“: null,
„fromStateMachineTransitions“: null,
„toStateMachineHistoryEntries“: null,
„fromStateMachineHistoryEntries“: null,
„orderTransactionCaptureRefunds“: null
},
„shippingDateLatest“: „2024-02-23T00:00:00.000+00:00“,
„shippingDateEarliest“: „2024-02-15T00:00:00.000+00:00“,
„shippingOrderAddress“: {
„id“: „c6fae23e03ad46afa06e455b50b3c111“,
„city“: „Steinbach“,
„order“: null,
„title“: null,
„vatId“: null,
„street“: „Berliner Str. 55“,
„company“: null,
„country“: {
„id“: „96997841d86143ad9e056e0f9326b673“,
„iso“: „DE“,
„iso3“: „DEU“,
„name“: „Deutschland“,
„active“: true,
„states“: null,
„position“: 1,
„taxRules“: null,
„createdAt“: „2021-04-12T10:09:50.765+00:00“,
„updatedAt“: null,
„versionId“: null,
„companyTax“: {
„amount“: 0,
„enabled“: false,
„currencyId“: „b7d2554b0ce847cd82f3ac9bd1c0dfca“,
„extensions“:
},
„extensions“: {
„foreignKeys“: {
„apiAlias“: „country_foreign_keys_extension“,
„extensions“:
},
„internal_mapping_storage“: {
„apiAlias“: null,
„extensions“:
}
},
„translated“: {
„name“: „Deutschland“,
„customFields“: ,
„addressFormat“: [
[
„address/company“,
„symbol/dash“,
„address/department“
],
[
„address/first_name“,
„address/last_name“
],
[
„address/street“
],
[
„address/zipcode“,
„address/city“
],
[
„address/country“
]
]
},
„customerTax“: {
„amount“: 0,
„enabled“: false,
„currencyId“: „b7d2554b0ce847cd82f3ac9bd1c0dfca“,
„extensions“:
},
„customFields“: null,
„translations“: null,
„vatIdPattern“: „(DE)?[0-9]{9}“,
„addressFormat“: [
[
„address/company“,
„symbol/dash“,
„address/department“
],
[
„address/first_name“,
„address/last_name“
],
[
„address/street“
],
[
„address/zipcode“,
„address/city“
],
[
„address/country“
]
],
„salesChannels“: null,
„vatIdRequired“: false,
„orderAddresses“: null,
„_uniqueIdentifier“: „96997841d86143ad9e056e0f9326b673“,
„checkVatIdPattern“: false,
„customerAddresses“: null,
„shippingAvailable“: true,
„postalCodeRequired“: false,
„checkPostalCodePattern“: false,
„currencyCountryRoundings“: null,
„defaultPostalCodePattern“: „\d{5}“,
„forceStateInRegistration“: false,
„advancedPostalCodePattern“: null,
„displayStateInRegistration“: false,
„checkAdvancedPostalCodePattern“: false,
„salesChannelDefaultAssignments“: null
},
„orderId“: „16b9e597fbad471da3de5c20ee1c8ccc“,
„zipcode“: „61449“,
„lastName“: „Testzeremonie“,
„countryId“: „96997841d86143ad9e056e0f9326b673“,
„createdAt“: „2024-02-15T12:25:35.675+00:00“,
„firstName“: „Christian“,
„updatedAt“: null,
„versionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„department“: null,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „order_address_foreign_keys_extension“,
„extensions“:
}
},
„salutation“: null,
„translated“: ,
„phoneNumber“: null,
„countryState“: {
„id“: „4c0f5cc3c4d047dbb138b15f5ad71d90“,
„name“: „Hessen“,
„active“: true,
„country“: null,
„position“: 1,
„countryId“: „96997841d86143ad9e056e0f9326b673“,
„createdAt“: „2021-04-12T10:09:50.848+00:00“,
„shortCode“: „DE-HE“,
„updatedAt“: null,
„versionId“: null,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „country_state_foreign_keys_extension“,
„extensions“:
},
„internal_mapping_storage“: {
„apiAlias“: null,
„extensions“:
}
},
„translated“: {
„name“: „Hessen“,
„customFields“:
},
„customFields“: null,
„translations“: null,
„orderAddresses“: null,
„_uniqueIdentifier“: „4c0f5cc3c4d047dbb138b15f5ad71d90“,
„customerAddresses“: null
},
„customFields“: null,
„salutationId“: „115f6ac1d92748ad9a301010b2c29449“,
„countryStateId“: „4c0f5cc3c4d047dbb138b15f5ad71d90“,
„orderVersionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„orderDeliveries“: null,
„_uniqueIdentifier“: „c6fae23e03ad46afa06e455b50b3c111“,
„additionalAddressLine1“: null,
„additionalAddressLine2“: null
},
„shippingOrderAddressId“: „c6fae23e03ad46afa06e455b50b3c111“,
„shippingOrderAddressVersionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“
}
],
„extensions“: {
„foreignKeys“: {
„apiAlias“: „order_foreign_keys_extension“,
„extensions“:
}
},
"languageId": "2fbb5fe2e29a4d70aa5854ce7ce3e20b",
"translated": [],
"amountTotal": 0,
"createdById": null,
"orderNumber": "10021",
"updatedById": null,
"campaignCode": null,
"customFields": null,
"deepLinkCode": "OlWpYW8cRUuIHUVgFaZyFoPy76ZkTYKv",
"itemRounding": {
"decimals": 2,
"interval": 0.01,
"extensions": [],
"roundForNet": true
},
"salesChannel": null,
"transactions": [
{
"id": "9338b045777a4aee96729c0a04d33f33",
"order": null,
"amount": {
"quantity": 1,
"taxRules": [
{
"taxRate": 19,
"extensions": [],
"percentage": 100
}
],
"listPrice": null,
"unitPrice": 0,
"extensions": [],
"totalPrice": 0,
"referencePrice": null,
"calculatedTaxes": [
{
"tax": 0,
"price": 0,
"taxRate": 19,
"extensions": []
}
],
"regulationPrice": null
},
"orderId": "16b9e597fbad471da3de5c20ee1c8ccc",
"stateId": "6675836f86f64c00b781f876bb6d6951",
"captures": null,
"createdAt": "2024-02-15T12:25:35.677+00:00",
"updatedAt": null,
"versionId": "0fa91ce3e96a4bc2be4bd9ce752c3425",
"extensions": {
"foreignKeys": {
"apiAlias": "order_transaction_foreign_keys_extension",
"extensions": []
}
},
"translated": [],
"customFields": null,
"paymentMethod": {
"id": "ef801f9bce0843b39e8b4891af72f007",
"name": "Vorkasse",
"media": null,
"active": true,
"plugin": null,
"mediaId": null,
"pluginId": null,
"position": 2,
"prepared": false,
"createdAt": "2021-04-12T10:09:53.872+00:00",
"customers": null,
"shortName": "pre_payment",
"updatedAt": "2023-07-04T23:48:29.031+00:00",
"versionId": null,
"extensions": {
"foreignKeys": {
"apiAlias": "payment_method_foreign_keys_extension",
"extensions": []
},
"internal_mapping_storage": {
"apiAlias": null,
"extensions": []
}
},
"refundable": false,
"translated": {
"name": "Vorkasse",
"description": "Sie zahlen einfach vorab und erhalten die Ware bequem und günstig bei Zahlungseingang nach Hause geliefert.",
"customFields": [],
"distinguishableName": "Vorkasse"
},
"description": "Sie zahlen einfach vorab und erhalten die Ware bequem und günstig bei Zahlungseingang nach Hause geliefert.",
"synchronous": true,
"asynchronous": false,
"customFields": null,
"translations": null,
"salesChannels": null,
"appPaymentMethod": null,
"availabilityRule": null,
"_uniqueIdentifier": "ef801f9bce0843b39e8b4891af72f007",
"afterOrderEnabled": true,
"handlerIdentifier": "Shopware\\Core\\Checkout\\Payment\\Cart\\PaymentHandler\\PrePayment",
"orderTransactions": null,
"availabilityRuleId": "fca421791ca24508973a3430f4eb619e",
"distinguishableName": "Vorkasse",
"formattedHandlerIdentifier": "handler_shopware_prepayment",
"salesChannelDefaultAssignments": null
},
"orderVersionId": "0fa91ce3e96a4bc2be4bd9ce752c3425",
"paymentMethodId": "ef801f9bce0843b39e8b4891af72f007",
"_uniqueIdentifier": "9338b045777a4aee96729c0a04d33f33",
"stateMachineState": {
"id": "6675836f86f64c00b781f876bb6d6951",
"name": "Offen",
"orders": null,
"createdAt": "2021-04-12T10:09:55.141+00:00",
"updatedAt": null,
"versionId": null,
"extensions": {
"foreignKeys": {
"apiAlias": "state_machine_state_foreign_keys_extension",
"extensions": []
},
"internal_mapping_storage": {
"apiAlias": null,
"extensions": []
}
},
"translated": {
"name": "Offen",
"customFields": []
},
"customFields": null,
"stateMachine": null,
"translations": null,
"technicalName": "open",
"stateMachineId": "b43a192539db46ed9ace9cffa283ab56",
"orderDeliveries": null,
"_uniqueIdentifier": "6675836f86f64c00b781f876bb6d6951",
"orderTransactions": null,
"orderTransactionCaptures": null,
"toStateMachineTransitions": null,
"fromStateMachineTransitions": null,
"toStateMachineHistoryEntries": null,
"fromStateMachineHistoryEntries": null,
"orderTransactionCaptureRefunds": null
}
}
],
"affiliateCode": null,
"autoIncrement": 62,
"orderCustomer": {
"id": "77026e04d2a94622968c7e6e55f0b155",
"email": "watertown@web.de",
"order": null,
"title": null,
"vatIds": null,
"company": null,
"orderId": "16b9e597fbad471da3de5c20ee1c8ccc",
"customer": null,
"lastName": "Testzeremonie",
"createdAt": "2024-02-15T12:25:35.672+00:00",
"firstName": "Christian",
"updatedAt": null,
"versionId": "0fa91ce3e96a4bc2be4bd9ce752c3425",
"customerId": "6ca4e6263dac46dbbe862ed0e3c89a2f",
"extensions": {
"foreignKeys": {
"apiAlias": "order_customer_foreign_keys_extension",
"extensions": []
},
"internal_mapping_storage": {
"apiAlias": null,
"extensions": []
}
},
"salutation": null,
"translated": [],
"customFields": null,
"salutationId": "115f6ac1d92748ad9a301010b2c29449",
"remoteAddress": "217.24.9.0",
"customerNumber": "10004",
"orderVersionId": "0fa91ce3e96a4bc2be4bd9ce752c3425",
"_uniqueIdentifier": "77026e04d2a94622968c7e6e55f0b155"
},
"orderDateTime": "2024-02-15T12:25:35.636+00:00",
"positionPrice": 0,
"shippingCosts": {
"quantity": 1,
"taxRules": [
{
"taxRate": 19,
"extensions": [],
"percentage": 0
}
],
"listPrice": null,
"unitPrice": 0,
"extensions": [],
"totalPrice": 0,
"referencePrice": null,
"calculatedTaxes": [
{
"tax": 0,
"price": 0,
"taxRate": 19,
"extensions": []
}
],
"regulationPrice": null
},
"shippingTotal": 0,
"totalRounding": {
"decimals": 2,
"interval": 0.01,
"extensions": [],
"roundForNet": true
},
"billingAddress": null,
"currencyFactor": 1,
"salesChannelId": "55784d8ef3b849298ddc9e867f04fbb4",
"customerComment": null,
"billingAddressId": "c6fae23e03ad46afa06e455b50b3c111",
"_uniqueIdentifier": "16b9e597fbad471da3de5c20ee1c8ccc",
"stateMachineState": {
"id": "ea6e22772797413dbe0fd07d83f0ce61",
"name": "Offen",
"orders": null,
"createdAt": "2021-04-12T10:09:54.909+00:00",
"updatedAt": null,
"versionId": null,
"extensions": {
"foreignKeys": {
"apiAlias": "state_machine_state_foreign_keys_extension",
"extensions": []
},
"internal_mapping_storage": {
"apiAlias": null,
"extensions": []
}
},
"translated": {
"name": "Offen",
"customFields": []
},
"customFields": null,
"stateMachine": null,
"translations": null,
"technicalName": "open",
"stateMachineId": "1125b309747449e4811f299f8c102ec1",
"orderDeliveries": null,
"_uniqueIdentifier": "ea6e22772797413dbe0fd07d83f0ce61",
"orderTransactions": null,
"orderTransactionCaptures": null,
"toStateMachineTransitions": null,
"fromStateMachineTransitions": null,
"toStateMachineHistoryEntries": null,
"fromStateMachineHistoryEntries": null,
"orderTransactionCaptureRefunds": null
},
"billingAddressVersionId": "0fa91ce3e96a4bc2be4bd9ce752c3425"
},
"customer": {
"id": "6ca4e6263dac46dbbe862ed0e3c89a2f",
"hash": null,
"tags": null,
"email": "watertown@web.de",
"group": null,
"guest": false,
"title": null,
"active": true,
"tagIds": null,
"vatIds": null,
"company": null,
"groupId": "cfbd5018d38d41d8adca10d94fc8bdd6",
"birthday": null,
"language": null,
"lastName": "Testzeremonie",
"password": "$2y$10$uIX77dZX6tDWVCLPkq1Q9udDp86yo1ZVrnvLVSYTE/SKPGA.n1hRG",
"addresses": null,
"createdAt": "2023-04-10T22:58:06.465+00:00",
"createdBy": null,
"firstName": "Christian",
"lastLogin": "2024-02-15T11:30:19.058+00:00",
"updatedAt": "2024-02-15T11:30:19.111+00:00",
"updatedBy": null,
"versionId": null,
"wishlists": null,
"extensions": {
"foreignKeys": {
"apiAlias": "customer_foreign_keys_extension",
"extensions": []
}
},
"firstLogin": "2023-04-10T22:58:06.382+00:00",
"languageId": "2fbb5fe2e29a4d70aa5854ce7ce3e20b",
"orderCount": 0,
"promotions": null,
"salutation": {
"id": "115f6ac1d92748ad9a301010b2c29449",
"createdAt": "2021-04-12T10:09:50.726+00:00",
"customers": null,
"updatedAt": null,
"versionId": null,
"extensions": {
"foreignKeys": {
"apiAlias": "salutation_foreign_keys_extension",
"extensions": []
},
"internal_mapping_storage": {
"apiAlias": null,
"extensions": []
}
},
"letterName": "Sehr geehrter Herr",
"translated": {
"letterName": "Sehr geehrter Herr",
"displayName": "Herr",
"customFields": []
},
"displayName": "Herr",
"customFields": null,
"translations": null,
"salutationKey": "mr",
"orderAddresses": null,
"orderCustomers": null,
"_uniqueIdentifier": "115f6ac1d92748ad9a301010b2c29449",
"customerAddresses": null,
"newsletterRecipients": null
},
„translated“: ,
„createdById“: null,
„updatedById“: „969850c5acce4f40a468b667925288c2“,
„campaignCode“: null,
„customFields“: null,
„salesChannel“: null,
„salutationId“: „115f6ac1d92748ad9a301010b2c29449“,
„affiliateCode“: null,
„autoIncrement“: 6,
„lastOrderDate“: null,
„legacyEncoder“: null,
„remoteAddress“: „217.24.9.0“,
„customerNumber“: „10004“,
„legacyPassword“: null,
„orderCustomers“: null,
„productReviews“: null,
„requestedGroup“: null,
„salesChannelId“: „55784d8ef3b849298ddc9e867f04fbb4“,
„orderTotalAmount“: 0,
„recoveryCustomer“: null,
„requestedGroupId“: null,
„_uniqueIdentifier“: „6ca4e6263dac46dbbe862ed0e3c89a2f“,
„boundSalesChannel“: null,
„lastPaymentMethod“: null,
„boundSalesChannelId“: null,
„lastPaymentMethodId“: null,
„activeBillingAddress“: null,
„defaultPaymentMethod“: null,
„activeShippingAddress“: null,
„defaultBillingAddress“: null,
„defaultPaymentMethodId“: „22c91d8cee994c26927dd65bdd1493f7“,
„defaultShippingAddress“: null,
„doubleOptInConfirmDate“: null,
„defaultBillingAddressId“: „57ea98153ab24ff49cbe1cdcbcbb5af1“,
„doubleOptInRegistration“: false,
„defaultShippingAddressId“: „57ea98153ab24ff49cbe1cdcbcbb5af1“,
„doubleOptInEmailSentDate“: null,
„newsletterSalesChannelIds“: null
},
„eventName“: „checkout.order.placed“,
„mailStruct“: ,
„salesChannel“: {
„id“: „55784d8ef3b849298ddc9e867f04fbb4“,
„name“: „Darkcrypt-Shop“,
„type“: null,
„active“: true,
„orders“: null,
„typeId“: „8a243080f92e4c719546314b577cf82b“,
„country“: null,
„domains“: [
{
„id“: „10c50a463a0c4367b881c454242a0bc6“,
„url“: „http://dcpshop.darkcrypt.de“,
„currency“: null,
„language“: null,
„createdAt“: „2021-04-12T10:13:54.019+00:00“,
„updatedAt“: null,
„versionId“: null,
„currencyId“: „b7d2554b0ce847cd82f3ac9bd1c0dfca“,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „sales_channel_domain_foreign_keys_extension“,
„extensions“:
}
},
„languageId“: „2fbb5fe2e29a4d70aa5854ce7ce3e20b“,
„snippetSet“: null,
„translated“: ,
„customFields“: null,
„salesChannel“: null,
„snippetSetId“: „475560ae02ea4fc882e450303425da78“,
„productExports“: null,
„salesChannelId“: „55784d8ef3b849298ddc9e867f04fbb4“,
„_uniqueIdentifier“: „10c50a463a0c4367b881c454242a0bc6“,
„hreflangUseOnlyLocale“: false,
„salesChannelDefaultHreflang“: null
},
{
„id“: „7a4435e4033940c1a26ce82cd81d8c8b“,
„url“: „https://dcpshop.darkcrypt.de“,
„currency“: null,
„language“: null,
„createdAt“: „2021-04-12T10:13:54.024+00:00“,
„updatedAt“: null,
„versionId“: null,
„currencyId“: „b7d2554b0ce847cd82f3ac9bd1c0dfca“,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „sales_channel_domain_foreign_keys_extension“,
„extensions“:
}
},
„languageId“: „2fbb5fe2e29a4d70aa5854ce7ce3e20b“,
„snippetSet“: null,
„translated“: ,
„customFields“: null,
„salesChannel“: null,
„snippetSetId“: „475560ae02ea4fc882e450303425da78“,
„productExports“: null,
„salesChannelId“: „55784d8ef3b849298ddc9e867f04fbb4“,
„_uniqueIdentifier“: „7a4435e4033940c1a26ce82cd81d8c8b“,
„hreflangUseOnlyLocale“: false,
„salesChannelDefaultHreflang“: null
}
],
„seoUrls“: null,
„currency“: null,
„homeName“: null,
„language“: null,
„accessKey“: „SWSCK1CZFC1-NO4PQY4BEKFT1Q“,
„analytics“: null,
„countries“: null,
„countryId“: „96997841d86143ad9e056e0f9326b673“,
„createdAt“: „2021-04-12T10:13:53.977+00:00“,
„customers“: null,
„languages“: null,
„shortName“: null,
„updatedAt“: „2023-07-05T00:00:50.505+00:00“,
„versionId“: null,
„wishlists“: null,
„currencies“: null,
„currencyId“: „b7d2554b0ce847cd82f3ac9bd1c0dfca“,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „sales_channel_foreign_keys_extension“,
„extensions“:
}
},
„languageId“: „2fbb5fe2e29a4d70aa5854ce7ce3e20b“,
„translated“: {
„name“: „Darkcrypt-Shop“,
„homeName“: null,
„homeEnabled“: true,
„customFields“: ,
„homeKeywords“: null,
„homeMetaTitle“: null,
„homeSlotConfig“: null,
„homeMetaDescription“: null
},
„analyticsId“: null,
„homeCmsPage“: null,
„homeEnabled“: true,
„maintenance“: false,
„customFields“: null,
„homeKeywords“: null,
„landingPages“: null,
„translations“: null,
„configuration“: null,
„customerGroup“: null,
„homeCmsPageId“: null,
„homeMetaTitle“: null,
„paymentMethod“: null,
„systemConfigs“: null,
„boundCustomers“: null,
„footerCategory“: null,
„homeSlotConfig“: null,
„hreflangActive“: false,
„mainCategories“: null,
„paymentMethods“: null,
„productExports“: null,
„productReviews“: null,
„shippingMethod“: null,
„customerGroupId“: „cfbd5018d38d41d8adca10d94fc8bdd6“,
„paymentMethodId“: „ef801f9bce0843b39e8b4891af72f007“,
„seoUrlTemplates“: null,
„serviceCategory“: null,
„shippingMethods“: null,
„footerCategoryId“: „9b5826b7ba6242f4b1f9aeb7a38e8c62“,
„mailHeaderFooter“: {
„id“: „9c869750fbd248f7bee8d8fec7798f62“,
„name“: „Standard-E-Mail-Fußzeile“,
„createdAt“: „2021-09-21T09:31:27.840+00:00“,
„updatedAt“: „2023-07-05T00:00:50.505+00:00“,
„versionId“: null,
„extensions“: {
„foreignKeys“: {
„apiAlias“: „mail_header_footer_foreign_keys_extension“,
„extensions“:
},
„internal_mapping_storage“: {
„apiAlias“: null,
„extensions“:
}
},
„footerHtml“: „<div style="font-family:arial; font-size:12px;">\n Adresse:
\n {{ config(‚core.basicInformation.address‘)|raw }}\n
\n Bankverbindung:
\n {{ config(‚core.basicInformation.bankAccount‘)|raw }}\n\n“,
„headerHtml“: null,
„translated“: {
„name“: „Standard-E-Mail-Fußzeile“,
„footerHtml“: „<div style="font-family:arial; font-size:12px;">\n Adresse:
\n {{ config(‚core.basicInformation.address‘)|raw }}\n
\n Bankverbindung:
\n {{ config(‚core.basicInformation.bankAccount‘)|raw }}\n\n“,
„headerHtml“: null,
„description“: „Standard-E-Mail-Fußzeile basierend auf den Stammdaten“,
„footerPlain“: „\n\n Addresse:\n {{ config(‚core.basicInformation.address‘)|striptags(‚
‘)|replace({"
":"\n"}) }}\n\n Bankverbindung:\n {{ config(‚core.basicInformation.bankAccount‘)|striptags(‚
‘)|replace({"
":"\n"}) }}\n“,
„headerPlain“: null
},
„description“: „Standard-E-Mail-Fußzeile basierend auf den Stammdaten“,
„footerPlain“: „\n\n Addresse:\n {{ config(‚core.basicInformation.address‘)|striptags(‚
‘)|replace({"
":"\n"}) }}\n\n Bankverbindung:\n {{ config(‚core.basicInformation.bankAccount‘)|striptags(‚
‘)|replace({"
":"\n"}) }}\n“,
„headerPlain“: null,
„translations“: null,
„salesChannels“: null,
„systemDefault“: false,
„_uniqueIdentifier“: „9c869750fbd248f7bee8d8fec7798f62“
},
„paymentMethodIds“: [
„22c91d8cee994c26927dd65bdd1493f7“,
„ef801f9bce0843b39e8b4891af72f007“
],
„shippingMethodId“: „4417102846dd4638807a2b0873fac666“,
„_uniqueIdentifier“: „55784d8ef3b849298ddc9e867f04fbb4“,
„serviceCategoryId“: „35d67b1222554d289a23ec7b32df1cff“,
„mailHeaderFooterId“: „9c869750fbd248f7bee8d8fec7798f62“,
„navigationCategory“: null,
„taxCalculationType“: „horizontal“,
„homeMetaDescription“: null,
„productVisibilities“: null,
„homeCmsPageVersionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„navigationCategoryId“: „821f61645917417ba45ac61608546c77“,
„newsletterRecipients“: null,
„hreflangDefaultDomain“: null,
„maintenanceIpWhitelist“: [
„217.24.9.134“,
„172.16.1.190“
],
„promotionSalesChannels“: null,
„footerCategoryVersionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„hreflangDefaultDomainId“: null,
„navigationCategoryDepth“: 2,
„numberRangeSalesChannels“: null,
„serviceCategoryVersionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„customerGroupsRegistrations“: null,
„navigationCategoryVersionId“: „0fa91ce3e96a4bc2be4bd9ce752c3425“,
„documentBaseConfigSalesChannels“: null
}
}
}
}
Und es gab noch einen weiteren:
TypeError: Cannot set properties of undefined (setting ‚currentInlineEditId‘)
{
„url“: „Shopware Administration (c) shopware AG“,
„stack“: „TypeError: Cannot set properties of undefined (setting ‚currentInlineEditId‘)\n at s. (https://dcpshop.darkcrypt.de/bundles/administration/static/js/6d6d3550719d7d4cb43a.js:1:14858)\n at Array. (https://dcpshop.darkcrypt.de/bundles/administration/static/js/app.js?1683148182:2:556609)\n at et (https://dcpshop.darkcrypt.de/bundles/administration/static/js/app.js?1683148182:2:556052)“,
„component“: „Unknown component“
}
Habe dazu mal ein eigenes Thema aufgemacht, damit das hier nicht überhand nimmt:
Hier die Lösung.