GX-Bug #70678
offenBeim Ändern des Bestellstatus über die API wird die E-Mail nicht automatisch gesendet, wenn "customer_notified" true ist
0%
Beschreibung
Beim Ändern des Bestellstatus über die API wird die E-Mail nicht automatisch gesendet, wenn "customer_notified" true ist
Es sollte beim Endpunkt "api.php/v2/orders/{order_id}/status" automatisch die E-Mail für den Statuswechsel gesendet werden, wenn "customerNotified" mit true übergeben wird
Aktuell wird der Status nur geändert und es geht keine E-Mail raus, egal ob customerNotified true ist.
Kann wie folgt reproduziert werden:
- Shop installieren
- Eine Testbestellung im Shop durchführen
- Per REST API den Endpunkt api.php/v2/orders/{order_id}/status mit den folgenden Daten ausführen
PATCH
{
"comment": "",
"customerId": 1,
"customerNotified": true,
"dateAdded": "2015-11-06 12:22:39",
"statusId": 3
}
...................................
When changing the order status via the API, the email is not sent automatically if "customer_notified" is true
It should be at the endpoint "api.php/v2/orders/{order_id}/status" automatically send the email for the status change if "customerNotified" is passed with true
Currently the status is only changed and no email goes out no matter if customerNotified is true.
Nichts anzuzeigen