Merge branch 'bugfix/e-shop' into 'master'

fixed error while creating shipping note for e-shop order

See merge request fronk/thetool!660
This commit is contained in:
Luca Haid
2024-10-10 12:35:04 +00:00

View File

@@ -63,7 +63,7 @@ class WarehouseEShopOrderController extends TTCrud {
}
protected function createShippingNote() {
$id = $this->request->id;
$id = intval($this->request->id);
if (!$id) {
self::returnJson(['success' => false, 'message' => 'Keine ID angegeben']);
die();