template updates removing ids
CI / testsuite (mysql, 8.1, ) (push) Waiting to run
Details
CI / testsuite (mysql, 8.4, ) (push) Waiting to run
Details
CI / testsuite (pgsql, 8.1, ) (push) Waiting to run
Details
CI / testsuite (pgsql, 8.4, ) (push) Waiting to run
Details
CI / testsuite (sqlite, 8.1, ) (push) Waiting to run
Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Waiting to run
Details
CI / testsuite (sqlite, 8.4, ) (push) Waiting to run
Details
CI / Coding Standard & Static Analysis (push) Waiting to run
Details
CI / testsuite (mysql, 8.1, ) (push) Waiting to run
Details
CI / testsuite (mysql, 8.4, ) (push) Waiting to run
Details
CI / testsuite (pgsql, 8.1, ) (push) Waiting to run
Details
CI / testsuite (pgsql, 8.4, ) (push) Waiting to run
Details
CI / testsuite (sqlite, 8.1, ) (push) Waiting to run
Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Waiting to run
Details
CI / testsuite (sqlite, 8.4, ) (push) Waiting to run
Details
CI / Coding Standard & Static Analysis (push) Waiting to run
Details
This commit is contained in:
parent
d17302dcc4
commit
ad4c16bb9e
|
@ -11,7 +11,6 @@
|
|||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th><?= $this->Paginator->sort('id') ?></th>
|
||||
<th><?= $this->Paginator->sort('product_catalog_id') ?></th>
|
||||
<th><?= $this->Paginator->sort('base_url') ?></th>
|
||||
<th><?= $this->Paginator->sort('api_url') ?></th>
|
||||
|
@ -24,7 +23,6 @@
|
|||
<tbody>
|
||||
<?php foreach ($externalProductCatalogs as $externalProductCatalog): ?>
|
||||
<tr>
|
||||
<td><?= $this->Number->format($externalProductCatalog->id) ?></td>
|
||||
<td><?= $externalProductCatalog->hasValue('product_catalog') ? $this->Html->link($externalProductCatalog->product_catalog->name, ['controller' => 'ProductCatalogs', 'action' => 'view', $externalProductCatalog->product_catalog->id]) : '' ?></td>
|
||||
<td><?= h($externalProductCatalog->base_url) ?></td>
|
||||
<td><?= h($externalProductCatalog->api_url) ?></td>
|
||||
|
|
|
@ -26,10 +26,6 @@
|
|||
<th><?= __('Catalog Description') ?></th>
|
||||
<td><?= h($productCatalog->catalog_description) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('Id') ?></th>
|
||||
<td><?= $productCatalog->id; ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('Enabled') ?></th>
|
||||
<td><?= $productCatalog->enabled ? __('Yes') : __('No'); ?></td>
|
||||
|
@ -41,8 +37,6 @@
|
|||
<div class="table-responsive">
|
||||
<table>
|
||||
<tr>
|
||||
<th><?= __('Id') ?></th>
|
||||
<th><?= __('Product Catalog Id') ?></th>
|
||||
<th><?= __('Name') ?></th>
|
||||
<th><?= __('Category Description') ?></th>
|
||||
<th><?= __('Parent Id') ?></th>
|
||||
|
@ -51,8 +45,6 @@
|
|||
</tr>
|
||||
<?php foreach ($productCatalog->product_categories as $productCategories) : ?>
|
||||
<tr>
|
||||
<td><?= h($productCategories->id) ?></td>
|
||||
<td><?= h($productCategories->product_catalog_id) ?></td>
|
||||
<td><?= h($productCategories->name) ?></td>
|
||||
<td><?= h($productCategories->category_description) ?></td>
|
||||
<td><?= h($productCategories->parent_id) ?></td>
|
||||
|
|
|
@ -30,18 +30,6 @@
|
|||
<th><?= __('Parent Product Category') ?></th>
|
||||
<td><?= $productCategory->hasValue('parent_product_category') ? $this->Html->link($productCategory->parent_product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $productCategory->parent_product_category->id]) : '' ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('Id') ?></th>
|
||||
<td><?= $productCategory->id; ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('Lft') ?></th>
|
||||
<td><?= $this->Number->format($productCategory->lft) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('Rght') ?></th>
|
||||
<td><?= $this->Number->format($productCategory->rght) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('Enabled') ?></th>
|
||||
<td><?= $productCategory->enabled ? __('Yes') : __('No'); ?></td>
|
||||
|
@ -59,25 +47,15 @@
|
|||
<div class="table-responsive">
|
||||
<table>
|
||||
<tr>
|
||||
<th><?= __('Id') ?></th>
|
||||
<th><?= __('Product Catalog Id') ?></th>
|
||||
<th><?= __('Name') ?></th>
|
||||
<th><?= __('Category Description') ?></th>
|
||||
<th><?= __('Parent Id') ?></th>
|
||||
<th><?= __('Lft') ?></th>
|
||||
<th><?= __('Rght') ?></th>
|
||||
<th><?= __('Enabled') ?></th>
|
||||
<th class="actions"><?= __('Actions') ?></th>
|
||||
</tr>
|
||||
<?php foreach ($productCategory->child_product_categories as $childProductCategories) : ?>
|
||||
<tr>
|
||||
<td><?= h($childProductCategories->id) ?></td>
|
||||
<td><?= h($childProductCategories->product_catalog_id) ?></td>
|
||||
<td><?= h($childProductCategories->name) ?></td>
|
||||
<td><?= h($childProductCategories->category_description) ?></td>
|
||||
<td><?= h($childProductCategories->parent_id) ?></td>
|
||||
<td><?= h($childProductCategories->lft) ?></td>
|
||||
<td><?= h($childProductCategories->rght) ?></td>
|
||||
<td><?= h($childProductCategories->enabled) ?></td>
|
||||
<td class="actions">
|
||||
<?= $this->Html->link(__('View'), ['controller' => 'ProductCategories', 'action' => 'view', $childProductCategories->id]) ?>
|
||||
|
|
|
@ -41,7 +41,6 @@
|
|||
<div class="table-responsive">
|
||||
<table>
|
||||
<tr>
|
||||
<th><?= __('Id') ?></th>
|
||||
<th><?= __('Attribute Value') ?></th>
|
||||
<th><?= __('Attribute Label') ?></th>
|
||||
<th><?= __('Enabled') ?></th>
|
||||
|
@ -49,7 +48,6 @@
|
|||
</tr>
|
||||
<?php foreach ($productCategoryAttribute->product_category_attribute_options as $productCategoryAttributeOptions) : ?>
|
||||
<tr>
|
||||
<td><?= h($productCategoryAttributeOptions->id) ?></td>
|
||||
<td><?= h($productCategoryAttributeOptions->attribute_value) ?></td>
|
||||
<td><?= h($productCategoryAttributeOptions->attribute_label) ?></td>
|
||||
<td><?= h($productCategoryAttributeOptions->enabled) ?></td>
|
||||
|
|
|
@ -27,11 +27,7 @@
|
|||
<td><?= $product->hasValue('product_category') ? $this->Html->link($product->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $product->product_category->id]) : '' ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('Id') ?></th>
|
||||
<td><?= $this->Number->format($product->id) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= __('Product Type Id') ?></th>
|
||||
<th><?= __('Product Type') ?></th>
|
||||
<td><?= $product->product_type_id->name ?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
Loading…
Reference in New Issue