wip product category variants

This commit is contained in:
2025-06-29 21:52:07 -07:00
parent a01805dc53
commit f61a4161be
12 changed files with 502 additions and 16 deletions

View File

@@ -16,14 +16,7 @@
<?= $this->Form->create($productSku) ?>
<fieldset>
<legend><?= __('Add Product Sku') ?></legend>
<?php
echo $this->Form->control('product_id');
echo $this->Form->control('sku');
echo $this->Form->control('barcode');
echo $this->Form->control('price');
echo $this->Form->control('cost');
echo $this->Form->control('deleted', ['empty' => true]);
?>
<?= $this->element('ProductSkus/form'); ?>
</fieldset>
<?= $this->Form->button(__('Submit')) ?>
<?= $this->Form->end() ?>

View File

@@ -21,13 +21,7 @@
<?= $this->Form->create($productSku) ?>
<fieldset>
<legend><?= __('Edit Product Skus') ?></legend>
<?php
echo $this->Form->control('product_id');
echo $this->Form->control('sku');
echo $this->Form->control('barcode');
echo $this->Form->control('price');
echo $this->Form->control('cost');
?>
<?= $this->element('ProductSkus/form'); ?>
</fieldset>
<?= $this->Form->button(__('Submit')) ?>
<?= $this->Form->end() ?>