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

This commit is contained in:
Brandon Shipley 2025-03-27 23:05:06 -07:00
parent d17302dcc4
commit ad4c16bb9e
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
5 changed files with 1 additions and 39 deletions

View File

@ -11,7 +11,6 @@
<table> <table>
<thead> <thead>
<tr> <tr>
<th><?= $this->Paginator->sort('id') ?></th>
<th><?= $this->Paginator->sort('product_catalog_id') ?></th> <th><?= $this->Paginator->sort('product_catalog_id') ?></th>
<th><?= $this->Paginator->sort('base_url') ?></th> <th><?= $this->Paginator->sort('base_url') ?></th>
<th><?= $this->Paginator->sort('api_url') ?></th> <th><?= $this->Paginator->sort('api_url') ?></th>
@ -24,7 +23,6 @@
<tbody> <tbody>
<?php foreach ($externalProductCatalogs as $externalProductCatalog): ?> <?php foreach ($externalProductCatalogs as $externalProductCatalog): ?>
<tr> <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><?= $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->base_url) ?></td>
<td><?= h($externalProductCatalog->api_url) ?></td> <td><?= h($externalProductCatalog->api_url) ?></td>

View File

@ -26,10 +26,6 @@
<th><?= __('Catalog Description') ?></th> <th><?= __('Catalog Description') ?></th>
<td><?= h($productCatalog->catalog_description) ?></td> <td><?= h($productCatalog->catalog_description) ?></td>
</tr> </tr>
<tr>
<th><?= __('Id') ?></th>
<td><?= $productCatalog->id; ?></td>
</tr>
<tr> <tr>
<th><?= __('Enabled') ?></th> <th><?= __('Enabled') ?></th>
<td><?= $productCatalog->enabled ? __('Yes') : __('No'); ?></td> <td><?= $productCatalog->enabled ? __('Yes') : __('No'); ?></td>
@ -41,8 +37,6 @@
<div class="table-responsive"> <div class="table-responsive">
<table> <table>
<tr> <tr>
<th><?= __('Id') ?></th>
<th><?= __('Product Catalog Id') ?></th>
<th><?= __('Name') ?></th> <th><?= __('Name') ?></th>
<th><?= __('Category Description') ?></th> <th><?= __('Category Description') ?></th>
<th><?= __('Parent Id') ?></th> <th><?= __('Parent Id') ?></th>
@ -51,8 +45,6 @@
</tr> </tr>
<?php foreach ($productCatalog->product_categories as $productCategories) : ?> <?php foreach ($productCatalog->product_categories as $productCategories) : ?>
<tr> <tr>
<td><?= h($productCategories->id) ?></td>
<td><?= h($productCategories->product_catalog_id) ?></td>
<td><?= h($productCategories->name) ?></td> <td><?= h($productCategories->name) ?></td>
<td><?= h($productCategories->category_description) ?></td> <td><?= h($productCategories->category_description) ?></td>
<td><?= h($productCategories->parent_id) ?></td> <td><?= h($productCategories->parent_id) ?></td>

View File

@ -30,18 +30,6 @@
<th><?= __('Parent Product Category') ?></th> <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> <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>
<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> <tr>
<th><?= __('Enabled') ?></th> <th><?= __('Enabled') ?></th>
<td><?= $productCategory->enabled ? __('Yes') : __('No'); ?></td> <td><?= $productCategory->enabled ? __('Yes') : __('No'); ?></td>
@ -59,25 +47,15 @@
<div class="table-responsive"> <div class="table-responsive">
<table> <table>
<tr> <tr>
<th><?= __('Id') ?></th>
<th><?= __('Product Catalog Id') ?></th>
<th><?= __('Name') ?></th> <th><?= __('Name') ?></th>
<th><?= __('Category Description') ?></th> <th><?= __('Category Description') ?></th>
<th><?= __('Parent Id') ?></th>
<th><?= __('Lft') ?></th>
<th><?= __('Rght') ?></th>
<th><?= __('Enabled') ?></th> <th><?= __('Enabled') ?></th>
<th class="actions"><?= __('Actions') ?></th> <th class="actions"><?= __('Actions') ?></th>
</tr> </tr>
<?php foreach ($productCategory->child_product_categories as $childProductCategories) : ?> <?php foreach ($productCategory->child_product_categories as $childProductCategories) : ?>
<tr> <tr>
<td><?= h($childProductCategories->id) ?></td>
<td><?= h($childProductCategories->product_catalog_id) ?></td>
<td><?= h($childProductCategories->name) ?></td> <td><?= h($childProductCategories->name) ?></td>
<td><?= h($childProductCategories->category_description) ?></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><?= h($childProductCategories->enabled) ?></td>
<td class="actions"> <td class="actions">
<?= $this->Html->link(__('View'), ['controller' => 'ProductCategories', 'action' => 'view', $childProductCategories->id]) ?> <?= $this->Html->link(__('View'), ['controller' => 'ProductCategories', 'action' => 'view', $childProductCategories->id]) ?>

View File

@ -41,7 +41,6 @@
<div class="table-responsive"> <div class="table-responsive">
<table> <table>
<tr> <tr>
<th><?= __('Id') ?></th>
<th><?= __('Attribute Value') ?></th> <th><?= __('Attribute Value') ?></th>
<th><?= __('Attribute Label') ?></th> <th><?= __('Attribute Label') ?></th>
<th><?= __('Enabled') ?></th> <th><?= __('Enabled') ?></th>
@ -49,7 +48,6 @@
</tr> </tr>
<?php foreach ($productCategoryAttribute->product_category_attribute_options as $productCategoryAttributeOptions) : ?> <?php foreach ($productCategoryAttribute->product_category_attribute_options as $productCategoryAttributeOptions) : ?>
<tr> <tr>
<td><?= h($productCategoryAttributeOptions->id) ?></td>
<td><?= h($productCategoryAttributeOptions->attribute_value) ?></td> <td><?= h($productCategoryAttributeOptions->attribute_value) ?></td>
<td><?= h($productCategoryAttributeOptions->attribute_label) ?></td> <td><?= h($productCategoryAttributeOptions->attribute_label) ?></td>
<td><?= h($productCategoryAttributeOptions->enabled) ?></td> <td><?= h($productCategoryAttributeOptions->enabled) ?></td>

View File

@ -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> <td><?= $product->hasValue('product_category') ? $this->Html->link($product->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $product->product_category->id]) : '' ?></td>
</tr> </tr>
<tr> <tr>
<th><?= __('Id') ?></th> <th><?= __('Product Type') ?></th>
<td><?= $this->Number->format($product->id) ?></td>
</tr>
<tr>
<th><?= __('Product Type Id') ?></th>
<td><?= $product->product_type_id->name ?></td> <td><?= $product->product_type_id->name ?></td>
</tr> </tr>
</table> </table>