Skip to content

Commit 4c7d562

Browse files
committed
fixes
1 parent 2688e03 commit 4c7d562

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/base/controllers/Admin/Json/CartBilling.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ protected function getJsonData(): array
6262
$cartsController = $this->containerMake(Carts::class);
6363
$form = $cartsController->getForm();
6464

65-
$form->setAction($this->getUrl('admin.carts') . '?action=' . $this->getRequest()->query->get('action').'&cart_id='.$this->getRequest()->query->get('cart_id'));
65+
$form->setAction($this->getUrl('admin.commerce.carts') . '?action=' . $this->getRequest()->query->get('action').'&cart_id='.$this->getRequest()->query->get('cart_id'));
6666
$form->addField(
6767
'cart_id',
6868
[

app/base/controllers/Admin/Json/CartDiscounts.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function ($el) {
8080
$cartsController = $this->containerMake(Carts::class);
8181
$form = $cartsController->getForm();
8282

83-
$form->setAction($this->getUrl('admin.carts') . '?action=' . $this->getRequest()->query->get('action').'&cart_id='.$this->getRequest()->query->get('cart_id'));
83+
$form->setAction($this->getUrl('admin.commerce.carts') . '?action=' . $this->getRequest()->query->get('action').'&cart_id='.$this->getRequest()->query->get('cart_id'));
8484
$form->addField(
8585
'cart_id',
8686
[

app/base/controllers/Admin/Json/CartShipping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ protected function getJsonData(): array
6262
$cartsController = $this->containerMake(Carts::class);
6363
$form = $cartsController->getForm();
6464

65-
$form->setAction($this->getUrl('admin.carts') . '?action=' . $this->getRequest()->query->get('action').'&cart_id='.$this->getRequest()->query->get('cart_id'));
65+
$form->setAction($this->getUrl('admin.commerce.carts') . '?action=' . $this->getRequest()->query->get('action').'&cart_id='.$this->getRequest()->query->get('cart_id'));
6666
$form->addField(
6767
'cart_id',
6868
[

0 commit comments

Comments
 (0)