From 2f80ba1fa3e7d78b7bf0400dd0ffee16fc434d42 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Wed, 2 Apr 2025 01:27:25 -0700 Subject: [PATCH] attributes form wip --- .../ProductCategoriesController.php | 11 +-- .../Table/ProductCategoryAttributesTable.php | 15 ++-- templates/ProductCategories/add.php | 3 + templates/ProductCategoryAttributes/form.php | 89 +++++++------------ 4 files changed, 48 insertions(+), 70 deletions(-) diff --git a/src/Controller/ProductCategoriesController.php b/src/Controller/ProductCategoriesController.php index deb41d7..58ef02b 100644 --- a/src/Controller/ProductCategoriesController.php +++ b/src/Controller/ProductCategoriesController.php @@ -161,13 +161,10 @@ class ProductCategoriesController extends AppController '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: 'internal_id', valuePath: 'name'); - } else { - $productCategoriesQ = $productCategoriesTable->find('treeList'); - } + $productCategoriesQ = $this->request->getQuery('form', 'product_category') === 'product' ? + $productCategoriesTable->find('treeList', keyPath: 'internal_id', valuePath: 'name') : + $productCategoriesTable->find('treeList'); + $productCategories = $productCategoriesQ ->orderBy(['ProductCategories.name']) ->toArray(); diff --git a/src/Model/Table/ProductCategoryAttributesTable.php b/src/Model/Table/ProductCategoryAttributesTable.php index 5336f39..ae2a70c 100644 --- a/src/Model/Table/ProductCategoryAttributesTable.php +++ b/src/Model/Table/ProductCategoryAttributesTable.php @@ -114,11 +114,16 @@ class ProductCategoryAttributesTable extends Table public function getAllCategoryAttributesForCategoryId(string $internalCategoryId) { $category = $this->ProductCategories->find()->where(['internal_id' => $internalCategoryId])->first(); - $categories = []; - if ($category) { - $categories = $this->ProductCategories->find('path', for: $category->id)->all(); - } - return $categories; + $this->ProductCategories->behaviors()->get('Tree')->setConfig([ + 'scope' => [ + 'product_catalog_id' => $category->product_catalog_id ?? 1, + ], + ]); + + return $category ? $this->ProductCategories + ->find('path', for: $category->id) + ->contain(['ProductCategoryAttributes', 'ProductCategoryAttributes.ProductCategoryAttributeOptions']) + ->toArray() : []; } } diff --git a/templates/ProductCategories/add.php b/templates/ProductCategories/add.php index 49df7fa..83753a5 100644 --- a/templates/ProductCategories/add.php +++ b/templates/ProductCategories/add.php @@ -4,7 +4,10 @@ * @var \Cake\Datasource\EntityInterface $productCategory * @var \Cake\Collection\CollectionInterface|string[] $productCatalogs * @var \Cake\Collection\CollectionInterface|string[] $parentProductCategories + * */ + + ?>