{#
* Plugin Name : SalesRestrictions4
*
* Copyright (C) BraTech Co., Ltd. All Rights Reserved.
* http://www.bratech.co.jp/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
#}
<div id="sales_restrictions" style="display:none;">
{{ include('Product/sales_restrictions_cart.twig') }}
</div>
<script>
$(function() {
var hiddenIds = {{ hiddenIds }};
var product_id;
for (var key in hiddenIds) {
product_id = hiddenIds[key];
$elem = $('button[form="productForm'+product_id+'"]');
$elem.after($('#sales_restrictions').html());
$elem.remove();
}
});
</script>