<script type="text/javascript">
$(document).on('click', '.toggleProductionAndSetup', function () {
let uuidCustomerAdvertisingArea = $(this).data('uuid-area');
$.ajax({
url: "{{ path('app_frontend_cart_toogle-production-and-setup') }}",
method: "POST",
data: {
'uuidCustomerAdvertisingArea': uuidCustomerAdvertisingArea,
},
success: function () {
refreshShoppingCart();
}
});
});
</script>