Hi,
It looks like there is a big bug when using bulk update in Easystore ("edit variant" button on the product page).
I tried to change change the SKU on one of my products and to enable "Track Quantity" . It works fine but when I come back on the same page afterwards, the SKU has disapperead and track quantity is disabled.
I checked in DB and both the SKU and the track quantity looks correct, so this is more of a display but, but with the side effect that if you save again without re-adding the SKU and re-enabling "Track Quantity" those will be overwritten with wrong values. Even if I check on console with a small JS, I see the values I correctly loaded, they are simply not assigned correctly to the form field.
For reference I used this JS to check the loaded values on console:
console.table(
Joomla.getOptions('easystore_option_variants').variants.map(v => ({
id: v.id,
variante: v.combination?.name,
sku: v.sku,
track_quantity: v.is_tracking_inventory,
quantité: v.inventory_amount
}))
);
Could you please have a look at that ?
Thanks