testing
CI / testsuite (mysql, 8.1, ) (push) Failing after 1s
Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 1s
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 1s
Details
CI / testsuite (mysql, 8.1, ) (push) Failing after 1s
Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 1s
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 1s
Details
This commit is contained in:
parent
fad4f575b8
commit
17de2e97dd
|
@ -60,7 +60,9 @@ class ProductCategoriesController extends AppController
|
||||||
'ProductCategoryAttributes',
|
'ProductCategoryAttributes',
|
||||||
'ProductCategoryAttributes.ProductCategoryAttributeOptions',
|
'ProductCategoryAttributes.ProductCategoryAttributeOptions',
|
||||||
]);
|
]);
|
||||||
$this->set(compact('productCategory'));
|
|
||||||
|
$productCategoryAttributes = $this->getTable()->ProductCategoryAttributes->getAllCategoryAttributesForCategoryId($productCategory->internal_id);
|
||||||
|
$this->set(compact('productCategory', 'productCategoryAttributes'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -61,6 +61,7 @@ class ProductCategoryAttributesController extends AppController
|
||||||
'ProductCategories',
|
'ProductCategories',
|
||||||
'ProductCategoryAttributeOptions',
|
'ProductCategoryAttributeOptions',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$this->set(compact('productCategoryAttribute'));
|
$this->set(compact('productCategoryAttribute'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -165,4 +166,11 @@ class ProductCategoryAttributesController extends AppController
|
||||||
|
|
||||||
return $this->redirect(['action' => 'index']);
|
return $this->redirect(['action' => 'index']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function form($categoryId = null)
|
||||||
|
{
|
||||||
|
$productCategoryAttributes = $this->getTable()->getAllCategoryAttributesForCategoryId($categoryId);
|
||||||
|
|
||||||
|
$this->set(compact('productCategoryAttributes'));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,8 +77,9 @@ class ProductsController extends AppController
|
||||||
Log::debug(print_r($product->getErrors(), true));
|
Log::debug(print_r($product->getErrors(), true));
|
||||||
$this->Flash->error(__('The product could not be saved. Please, try again.'));
|
$this->Flash->error(__('The product could not be saved. Please, try again.'));
|
||||||
}
|
}
|
||||||
$productCategories = $productsTable->ProductCategories->find('list', keyField: 'internal_id', valueField: 'name' )->all();
|
$productCategory = $product->product_category_id ? $productsTable->ProductCategories->find()->where(['internal_id' => $product->product_category_id])->first() : null;
|
||||||
$this->set(compact('product', 'productCategories'));
|
$productCatalogs = $productsTable->ProductCategories->ProductCatalogs->find('list')->toArray();
|
||||||
|
$this->set(compact('product', 'productCatalogs', 'productCategory'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -110,4 +110,12 @@ class ProductCategoryAttributesTable extends Table
|
||||||
|
|
||||||
return $rules;
|
return $rules;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getAllCategoryAttributesForCategoryId(string $internalCategoryId)
|
||||||
|
{
|
||||||
|
$category = $this->ProductCategories->find()->where(['internal_id' => $internalCategoryId])->firstOrFail();
|
||||||
|
$categories = $this->ProductCategories->find('path', for: $category->id)->all();
|
||||||
|
|
||||||
|
return $categories;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,11 +17,7 @@
|
||||||
<?= $this->Form->create($product) ?>
|
<?= $this->Form->create($product) ?>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend><?= __('Add Product') ?></legend>
|
<legend><?= __('Add Product') ?></legend>
|
||||||
<?php
|
<?= $this->element('Products/form'); ?>
|
||||||
echo $this->Form->control('name');
|
|
||||||
echo $this->Form->control('product_category_id', ['options' => $productCategories]);
|
|
||||||
echo $this->Form->control('product_type_id');
|
|
||||||
?>
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<?= $this->Form->button(__('Submit')) ?>
|
<?= $this->Form->button(__('Submit')) ?>
|
||||||
<?= $this->Form->end() ?>
|
<?= $this->Form->end() ?>
|
||||||
|
|
|
@ -22,11 +22,7 @@
|
||||||
<?= $this->Form->create($product) ?>
|
<?= $this->Form->create($product) ?>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend><?= __('Edit Product') ?></legend>
|
<legend><?= __('Edit Product') ?></legend>
|
||||||
<?php
|
<?= $this->element('Products/form'); ?>
|
||||||
echo $this->Form->control('name');
|
|
||||||
echo $this->Form->control('product_category_id', ['options' => $productCategories]);
|
|
||||||
echo $this->Form->control('product_type_id');
|
|
||||||
?>
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<?= $this->Form->button(__('Submit')) ?>
|
<?= $this->Form->button(__('Submit')) ?>
|
||||||
<?= $this->Form->end() ?>
|
<?= $this->Form->end() ?>
|
||||||
|
|
|
@ -19,7 +19,6 @@ echo $this->Form->control('api_url');
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<hr>
|
<hr>
|
||||||
<h6></h6>
|
|
||||||
<h4 class="mb-4">Product Catalogs
|
<h4 class="mb-4">Product Catalogs
|
||||||
<small class="ms-2 font-size-xs">
|
<small class="ms-2 font-size-xs">
|
||||||
<?= $this->Html->link('Add Catalog', '#', [
|
<?= $this->Html->link('Add Catalog', '#', [
|
||||||
|
|
|
@ -0,0 +1,45 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @var \App\View\AppView $this
|
||||||
|
* @var \Cake\Datasource\EntityInterface $product
|
||||||
|
* @var \Cake\Datasource\EntityInterface $productCategory
|
||||||
|
* @var \Cake\Collection\CollectionInterface|string[] $productCatalogs
|
||||||
|
* @var \Cake\Collection\CollectionInterface|string[] $productCategories
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
<h4 class="mb-4">Basic Info</h4>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
echo $this->Form->control('name');
|
||||||
|
echo $this->Form->control('product_catalog_id', [
|
||||||
|
'options' => $productCatalogs,
|
||||||
|
'hx-trigger' => 'change, load delay:1s',
|
||||||
|
'hx-get' => $this->Url->build([
|
||||||
|
'controller' => 'ProductCategories',
|
||||||
|
'action' => 'select',
|
||||||
|
0 => $productCategory ? $productCategory->product_catalog_id : '',
|
||||||
|
]),
|
||||||
|
'hx-target' => '#product_category_id',
|
||||||
|
]);
|
||||||
|
echo $this->Form->control('product_category_id', [
|
||||||
|
'options' => $productCategories ?? [],
|
||||||
|
'empty' => true,
|
||||||
|
'id' => 'product_category_id',
|
||||||
|
]);
|
||||||
|
echo $this->Form->control('product_type_id');
|
||||||
|
?>
|
||||||
|
<hr>
|
||||||
|
<h4 class="mb-4">Product Attributes</h4>
|
||||||
|
<div id="product-attributes-container" class="container">
|
||||||
|
<?php if (false && $product->hasValue('product_attributes')) : ?>
|
||||||
|
<?php
|
||||||
|
$cnt = 0;
|
||||||
|
foreach ($product->product_attributes as $productAttribute) {
|
||||||
|
$prefix = 'product_attributes.' . $cnt . '.';
|
||||||
|
|
||||||
|
echo '<hr class="my-2">';
|
||||||
|
|
||||||
|
$cnt++;
|
||||||
|
} ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
Loading…
Reference in New Issue