Hello everyone i am dealing with the same situation database tables are correct but the quantities with the label on the backoffice are matched wrong. Version 1.6.13
Note. In the quantities.tpl, in the admin i see this
<div class="form-group"> <div class="col-lg-9 col-lg-offset-3"> <table class="table"> <thead> <tr> <th><span class="title_box">{l s='Quantity'}</span></th> <th><span class="title_box">{l s='Designation'}</span></th> </tr> </thead> {foreach from=$attributes item=attribute} <tr> <td class="available_quantity" id="qty_{$attribute['id_product_attribute']}"> <span>{$available_quantity[$attribute['id_product_attribute']]}</span> <input type="text" name="qty_{$attribute['id_product_attribute']}" class="fixed-width-sm" value="{$available_quantity[$attribute['id_product_attribute']]|htmlentities}"/> </td> <td>{$product_designation[$attribute['id_product_attribute']]}</td> </tr> {/foreach} </table> </div> </div>
And the correlation between variants and quantities are correct.