wip
CI / testsuite (mysql, 8.1, ) (push) Failing after 0s Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 0s Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 1s Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 0s Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 1s Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 0s Details
CI / Coding Standard & Static Analysis (push) Failing after 0s Details

This commit is contained in:
Brandon Shipley 2025-04-01 02:19:01 -07:00
parent f724b86674
commit 56e526bc0f
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
3 changed files with 11 additions and 5 deletions

View File

@ -161,9 +161,14 @@ class ProductCategoriesController extends AppController
'product_catalog_id' => $this->request->getQuery('product_catalog_id', -1),
],
]);
$productCategories = $productCategoriesTable
->find('treeList')
// ->where(['product_catalog_id' => $this->request->getQuery('product_catalog_id', -1)])
$form = $this->request->getQuery('form', 'product_category');
if ($form === 'product') {
$productCategoriesQ = $productCategoriesTable
->find('treeList', keyPath: 'name', valuePath: 'internal_id');
} else {
$productCategoriesQ = $productCategoriesTable->find('treeList');
}
$productCategories = $productCategoriesQ
->orderBy(['ProductCategories.name'])
->toArray();

View File

@ -167,9 +167,9 @@ class ProductCategoryAttributesController extends AppController
return $this->redirect(['action' => 'index']);
}
public function form($categoryId = null)
public function form()
{
$productCategoryAttributes = $this->getTable()->getAllCategoryAttributesForCategoryId($categoryId);
$productCategoryAttributes = $this->getTable()->getAllCategoryAttributesForCategoryId($this->request->getQuery('product_category_id', '-1'));
$this->set(compact('productCategoryAttributes'));
}

View File

@ -10,6 +10,7 @@
<h4 class="mb-4">Basic Info</h4>
<?php
echo $this->Form->hidden('form', ['value' => 'product']);
echo $this->Form->control('name');
echo $this->Form->control('product_catalog_id', [
'empty' => 'Select a Catalog',