From fad4f575b8ba9a1f1bc37ce482dcb0339021536e Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Mon, 31 Mar 2025 20:52:12 -0700 Subject: [PATCH] view category, attribute options table --- src/Model/Table/ProductCategoryAttributeOptionsTable.php | 4 ++-- templates/ProductCategories/view.php | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/Model/Table/ProductCategoryAttributeOptionsTable.php b/src/Model/Table/ProductCategoryAttributeOptionsTable.php index 6e4b0e9..6244718 100644 --- a/src/Model/Table/ProductCategoryAttributeOptionsTable.php +++ b/src/Model/Table/ProductCategoryAttributeOptionsTable.php @@ -65,7 +65,7 @@ class ProductCategoryAttributeOptionsTable extends Table public function validationDefault(Validator $validator): Validator { $validator - ->integer('product_category_attribute_id') + ->uuid('product_category_attribute_id') ->notEmptyString('product_category_attribute_id'); $validator @@ -96,7 +96,7 @@ class ProductCategoryAttributeOptionsTable extends Table */ public function buildRules(RulesChecker $rules): RulesChecker { - $rules->add($rules->existsIn(['product_category_attribute_id'], 'ProductCategoryAttributes'), ['errorField' => '0']); + $rules->add($rules->existsIn(['product_category_attribute_id'], 'ProductCategoryAttributes'), ['errorField' => 'product_category_attribute_id']); return $rules; } diff --git a/templates/ProductCategories/view.php b/templates/ProductCategories/view.php index e2c4669..4bcd11d 100644 --- a/templates/ProductCategories/view.php +++ b/templates/ProductCategories/view.php @@ -75,16 +75,12 @@ - product_category_attributes as $productCategoryAttribute) : ?> -
name) ?> - options - enabled) ?> Html->link(__('View'), ['controller' => 'ProductCategoryAttributes', 'action' => 'view', $productCategoryAttribute->id]) ?>