This commit is contained in:
Dennis Eichhorn 2022-12-10 22:17:54 +01:00
parent a8818f6a23
commit 43ac2cf73f
4 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@
"type": 2,
"subtype": 1,
"name": "Stock",
"uri": "{/prefix}warehouse/stock/list",
"uri": "{/lang}/{/app}/warehouse/stock/list",
"target": "self",
"icon": null,
"order": 1,
@ -33,7 +33,7 @@
"type": 3,
"subtype": 1,
"name": "Stocks",
"uri": "{/prefix}warehouse/stock/list",
"uri": "{/lang}/{/app}/warehouse/stock/list",
"target": "self",
"icon": null,
"order": 1,
@ -48,7 +48,7 @@
"type": 3,
"subtype": 1,
"name": "Locations",
"uri": "{/prefix}warehouse/stock/location/list",
"uri": "{/lang}/{/app}/warehouse/stock/location/list",
"target": "self",
"icon": null,
"order": 1,

View File

@ -32,7 +32,7 @@ echo $this->getData('nav')->render(); ?>
<tbody>
<?php $count = 0; foreach ($stocks as $key => $value) :
++$count;
$url = UriFactory::build('warehouse/stock?{?}&id=' . $value->getId());
$url = UriFactory::build('{/lang}/{/app}/warehouse/stock?{?}&id=' . $value->getId());
?>
<tr data-href="<?= $url; ?>">
<td><a href="<?= $url; ?>"><?= $value->getId(); ?></a>

View File

@ -32,7 +32,7 @@ echo $this->getData('nav')->render(); ?>
<tbody>
<?php $count = 0; foreach ($locations as $key => $value) :
++$count;
$url = UriFactory::build('warehouse/stock/location?{?}&id=' . $value->getId());
$url = UriFactory::build('{/lang}/{/app}/warehouse/stock/location?{?}&id=' . $value->getId());
?>
<tr data-href="<?= $url; ?>">
<td><a href="<?= $url; ?>"><?= $value->getId(); ?></a>

View File

@ -12,7 +12,7 @@
},
"creator": {
"name": "Karaka",
"website": "www.spl1nes.com"
"website": "jingga.app"
},
"description": "Warehousing module.",
"directory": "WarehouseManagement",