diff --git a/Theme/Backend/item-create.tpl.php b/Theme/Backend/item-create.tpl.php
index a5e01d0..6e6b3b1 100644
--- a/Theme/Backend/item-create.tpl.php
+++ b/Theme/Backend/item-create.tpl.php
@@ -608,8 +608,8 @@ echo $this->getData('nav')->render(); ?>
| = $this->printHtml($this->request->getOrigin()); ?>
- | = $this->printHtml($this->request->header->account); ?>
- | = $this->printHtml($this->request->header->account); ?>
+ | = $this->printHtml((string) $this->request->header->account); ?>
+ | = $this->printHtml((string) $this->request->header->account); ?>
| Creating item
| = $this->printHtml((new \DateTime('now'))->format('Y-m-d H:i:s')); ?>
diff --git a/Theme/Backend/sales-item-profile.tpl.php b/Theme/Backend/sales-item-profile.tpl.php
index 1611b44..d44b602 100644
--- a/Theme/Backend/sales-item-profile.tpl.php
+++ b/Theme/Backend/sales-item-profile.tpl.php
@@ -257,7 +257,7 @@ echo $this->getData('nav')->render();
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/group/settings?{?}&id=' . $value->getId()); ?>
|
|
- | = $this->printHtml($value->getId()); ?>
+ | = $value->getId(); ?>
| = $this->printHtml($value->name); ?>
@@ -334,7 +334,7 @@ echo $this->getData('nav')->render();
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/group/settings?{?}&id=' . $value->getId()); ?>
|
|
- | = $this->printHtml($value->getId()); ?>
+ | = $value->getId(); ?>
| = $this->printHtml($value->name); ?>
@@ -413,7 +413,7 @@ echo $this->getData('nav')->render();
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/group/settings?{?}&id=' . $value->getId()); ?>
|
|
- | = $this->printHtml($value->getId()); ?>
+ | = $value->getId(); ?>
| = $this->printHtml($value->name); ?>
@@ -543,7 +543,7 @@ echo $this->getData('nav')->render();
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/group/settings?{?}&id=' . $value->getId()); ?>
|
|
- | = $this->printHtml($value->getId()); ?>
+ | = $value->getId(); ?>
| = $this->printHtml($value->name); ?>
@@ -712,8 +712,8 @@ echo $this->getData('nav')->render();
|
| = $this->printHtml($this->request->getOrigin()); ?>
- | = $this->printHtml($this->request->header->account); ?>
- | = $this->printHtml($this->request->header->account); ?>
+ | = $this->printHtml((string) $this->request->header->account); ?>
+ | = $this->printHtml((string) $this->request->header->account); ?>
| Creating item
| = $this->printHtml((new \DateTime('now'))->format('Y-m-d H:i:s')); ?>
diff --git a/Theme/Backend/stock-list.tpl.php b/Theme/Backend/stock-list.tpl.php
index da13ccd..dca1e81 100644
--- a/Theme/Backend/stock-list.tpl.php
+++ b/Theme/Backend/stock-list.tpl.php
@@ -41,7 +41,7 @@ echo $this->getData('nav')->render(); ?>
$value) : ++$c;
$url = \phpOMS\Uri\UriFactory::build('{/prefix}business/department/profile?{?}&id=' . $value->getId()); ?>
|
- | = $this->printHtml($value->getId()); ?>
+ | = $value->getId(); ?>
| = $this->printHtml($value->name); ?>
| = $this->printHtml($value->parent); ?>
| = $this->printHtml($value->getUnit()); ?>
|