var initProductActions = function(){ $(".product_autocomplete").product_autocomplete(); $('.calculator-fields').each(function(){ var $fields_container = $(this); var $type_select = $fields_container.find('.type-select'); var $settings = $fields_container.find('.settings'); var $warning = $fields_container.find('.warning'); var originalType = $type_select.val(); $warning.hide(); $type_select.change(function(){ if( $(this).val() == originalType ){ $warning.hide(); $settings.show(); $settings.find('input').removeAttr('disabled'); } else { $warning.show(); $settings.hide(); $settings.find('input').attr('disabled', 'disabled'); } }); }); // // CreateLineItems Promotion Action // ( function(){ var hideOrShowItemTables = function(){ $('.promotion_action table').each(function(){ if($(this).find('td').length == 0){ $(this).hide(); } else { $(this).show(); } }); }; hideOrShowItemTables(); // Remove line item var setupRemoveLineItems = function(){ $(".remove_promotion_line_item").click(function(){ line_items_el = $($('.line_items_string')[0]) finder = RegExp($(this).data("variant-id") + "x\\d+") line_items_el.val(line_items_el.val().replace(finder, "")) $(this).parents('tr').remove(); hideOrShowItemTables(); }); }; setupRemoveLineItems(); // Add line item to list $(".promotion_action.create_line_items button.add").unbind('click').click(function(e){ var $container = $(this).parents('.promotion_action'); var product_name = $container.find("input[name='add_product_name']").val(); var variant_id = $container.find("input[name='add_variant_id']").val(); var quantity = $container.find("input[name='add_quantity']").val(); if(variant_id){ // Add to the table var newRow = "