accessible field/entity update default ksu
This commit is contained in:
parent
25957f7d8b
commit
75714137b7
|
@ -18,6 +18,7 @@ use Cake\ORM\Entity;
|
||||||
* @property DateTime $created
|
* @property DateTime $created
|
||||||
* @property DateTime|null $modified
|
* @property DateTime|null $modified
|
||||||
* @property DateTime|null $deleted
|
* @property DateTime|null $deleted
|
||||||
|
* @property bool $default_sku
|
||||||
*
|
*
|
||||||
* @property Product $product
|
* @property Product $product
|
||||||
* @property ProductSkuVariantValue[] $product_sku_variant_values
|
* @property ProductSkuVariantValue[] $product_sku_variant_values
|
||||||
|
@ -42,6 +43,7 @@ class ProductSku extends Entity
|
||||||
'created' => true,
|
'created' => true,
|
||||||
'modified' => true,
|
'modified' => true,
|
||||||
'deleted' => true,
|
'deleted' => true,
|
||||||
|
'default_sku' => true,
|
||||||
|
|
||||||
// entities
|
// entities
|
||||||
'product' => false,
|
'product' => false,
|
||||||
|
|
Loading…
Reference in New Issue