woocommerce/assets/js/admin/write-panels.js

430 lines
13 KiB
JavaScript
Raw Normal View History

2011-08-09 15:16:18 +00:00
jQuery( function($){
2011-09-19 14:57:17 +00:00
// Prevent enter submitting post form
$("#upsell_product_data").bind("keypress", function(e) {
2011-09-28 12:34:41 +00:00
if (e.keyCode == 13) return false;
2011-09-19 14:57:17 +00:00
});
2011-08-09 15:16:18 +00:00
// TABS
$('ul.tabs').show();
$('div.panel-wrap').each(function(){
$('div.panel:not(div.panel:first)', this).hide();
2011-08-09 15:16:18 +00:00
});
$('ul.tabs a').click(function(){
var panel_wrap = $(this).closest('div.panel-wrap');
$('ul.tabs li', panel_wrap).removeClass('active');
$(this).parent().addClass('active');
$('div.panel', panel_wrap).hide();
$( $(this).attr('href') ).show();
2011-08-09 15:16:18 +00:00
return false;
});
// ORDERS
$('#order_items_list button.remove_row').live('click', function(){
var answer = confirm(woocommerce_writepanel_params.remove_item_notice);
2011-08-09 15:16:18 +00:00
if (answer){
$(this).closest('tr.item').hide();
$('input', $(this).closest('tr.item')).val('');
2011-08-09 15:16:18 +00:00
}
return false;
});
$('button.calc_totals').live('click', function(){
var answer = confirm(woocommerce_writepanel_params.cart_total);
2011-08-09 15:16:18 +00:00
if (answer){
var item_count = $('#order_items_list tr.item').size();
2011-08-09 15:16:18 +00:00
var subtotal = 0;
var discount = $('input#_order_discount').val();
var shipping = $('input#_order_shipping').val();
var shipping_tax = parseFloat($('input#_order_shipping_tax').val());
2011-08-09 15:16:18 +00:00
var tax = 0;
var itemTotal = 0;
var total = 0;
if (!discount) discount = 0;
if (!shipping) shipping = 0;
if (!shipping_tax) shipping_tax = 0;
// Items
if (item_count>0) {
for (i=0; i<item_count; i++) {
itemCost = $('input[name^=item_cost]:eq(' + i + ')').val();
itemQty = parseInt($('input[name^=item_quantity]:eq(' + i + ')').val());
itemTax = $('input[name^=item_tax_rate]:eq(' + i + ')').val();
2011-08-09 15:16:18 +00:00
if (!itemCost) itemCost = 0;
if (!itemTax) itemTax = 0;
2011-10-13 12:25:24 +00:00
if (!itemQty) itemQty = 0;
2011-08-09 15:16:18 +00:00
totalItemTax = 0;
totalItemCost = itemCost * itemQty;
if (itemTax && itemTax>0) {
2011-08-11 22:54:26 +00:00
taxRate = itemTax/100;
2011-08-09 15:16:18 +00:00
2011-08-11 22:54:26 +00:00
itemTaxAmount = ((itemCost * taxRate) * 100 );
2011-08-09 15:16:18 +00:00
2011-08-11 22:39:02 +00:00
itemTaxAmount = itemTaxAmount.toFixed(2);
2011-08-09 15:16:18 +00:00
2011-08-11 22:39:02 +00:00
totalItemTax = Math.round( itemTaxAmount ) / 100;
2011-08-09 15:16:18 +00:00
totalItemTax = totalItemTax * itemQty;
2011-08-11 22:39:02 +00:00
2011-08-09 15:16:18 +00:00
}
itemTotal = itemTotal + totalItemCost;
tax = tax + totalItemTax;
}
}
2011-08-11 22:54:26 +00:00
subtotal = itemTotal;
2011-08-09 15:16:18 +00:00
total = parseFloat(subtotal) + parseFloat(tax) - parseFloat(discount) + parseFloat(shipping) + parseFloat(shipping_tax);
if (total < 0 ) total = 0;
$('input#_order_subtotal').val( subtotal.toFixed(2) );
$('input#_order_tax').val( tax.toFixed(2) );
$('input#_order_shipping_tax').val( shipping_tax.toFixed(2) );
$('input#_order_total').val( total.toFixed(2) );
2011-08-09 15:16:18 +00:00
}
return false;
});
$('button.add_shop_order_item').click(function(){
2011-08-09 15:16:18 +00:00
var add_item_id = $('select.add_item_id').val();
2011-08-09 15:16:18 +00:00
2011-08-12 10:22:07 +00:00
if (add_item_id) {
2011-08-19 20:11:04 +00:00
$('table.woocommerce_order_items').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_writepanel_params.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } });
2011-08-09 15:16:18 +00:00
var size = $('table.woocommerce_order_items tbody tr.item').size();
2011-08-19 20:11:04 +00:00
2011-08-09 15:16:18 +00:00
var data = {
2011-08-10 17:11:11 +00:00
action: 'woocommerce_add_order_item',
item_to_add: $('select.add_item_id').val(),
2011-08-19 20:11:04 +00:00
index: size,
security: woocommerce_writepanel_params.add_order_item_nonce
2011-08-09 15:16:18 +00:00
};
$.post( woocommerce_writepanel_params.ajax_url, data, function(response) {
2011-08-09 15:16:18 +00:00
$('table.woocommerce_order_items tbody#order_items_list').append( response );
$('table.woocommerce_order_items').unblock();
$('select.add_item_id').css('border-color', '').val('');
$(".tips").easyTooltip();
2011-08-20 15:41:42 +00:00
2011-08-09 15:16:18 +00:00
});
} else {
$('select.add_item_id').css('border-color', 'red');
2011-08-09 15:16:18 +00:00
}
});
$('button.add_meta').live('click', function(){
2011-08-09 15:16:18 +00:00
var index = $(this).closest('tr.item').attr('rel');
2011-08-19 20:11:04 +00:00
$(this).closest('table.meta').find('.meta_items').append('<tr><td><input type="text" name="meta_name[' + index + '][]" placeholder="' + woocommerce_writepanel_params.meta_name + '" /></td><td><input type="text" name="meta_value[' + index + '][]" placeholder="' + woocommerce_writepanel_params.meta_value + '" /></td><td><button class="remove_meta button">&times;</button></td></tr>');
2011-08-19 20:11:04 +00:00
return false;
2011-08-09 15:16:18 +00:00
});
$('button.remove_meta').live('click', function(){
2011-08-19 20:11:04 +00:00
var answer = confirm("Remove this meta key?")
if (answer){
$(this).closest('tr').remove();
2011-08-19 20:11:04 +00:00
}
return false;
});
$('button.billing-same-as-shipping').live('click', function(){
var answer = confirm(woocommerce_writepanel_params.copy_billing);
2011-08-09 15:16:18 +00:00
if (answer){
$('input#shipping_first_name').val( $('input#billing_first_name').val() );
$('input#shipping_last_name').val( $('input#billing_last_name').val() );
$('input#shipping_company').val( $('input#billing_company').val() );
$('input#shipping_address_1').val( $('input#billing_address_1').val() );
$('input#shipping_address_2').val( $('input#billing_address_2').val() );
$('input#shipping_city').val( $('input#billing_city').val() );
$('input#shipping_postcode').val( $('input#billing_postcode').val() );
$('input#shipping_country').val( $('input#billing_country').val() );
$('input#shipping_state').val( $('input#billing_state').val() );
2011-08-09 15:16:18 +00:00
}
return false;
});
// PRODUCT TYPE SPECIFIC OPTIONS
$('select#product-type').change(function(){
// Get value
var select_val = $(this).val();
$('.show_if_simple, .show_if_variable, .show_if_grouped').hide();
if (select_val=='simple') {
$('.show_if_simple').show();
2011-08-09 15:16:18 +00:00
}
else if (select_val=='variable') {
$('.show_if_variable').show();
}
else if (select_val=='grouped') {
$('.show_if_grouped').show();
$('input#downloadable').removeAttr('checked').change();
}
$('ul.tabs li:visible').eq(0).find('a').click();
$('input#manage_stock').change();
2011-08-10 17:11:11 +00:00
$('body').trigger('woocommerce-product-type-change', select_val, $(this) );
2011-08-09 15:16:18 +00:00
}).change();
$('input#downloadable').change(function(){
$('.show_if_downloadable').hide();
if ($('input#downloadable').is(':checked')) {
$('.show_if_downloadable').show();
}
if ($('.downloads_tab').is('.active')) $('ul.tabs li:visible').eq(0).find('a').click();
}).change();
$('input#virtual').change(function(){
$('.show_if_virtual').hide();
if ($('input#virtual').is(':checked')) {
$('.show_if_virtual').show();
}
}).change();
2011-08-09 15:16:18 +00:00
// STOCK OPTIONS
$('input#manage_stock').change(function(){
if ($(this).is(':checked')) $('div.stock_fields').show();
else $('div.stock_fields').hide();
2011-08-09 15:16:18 +00:00
}).change();
// DATE PICKER FIELDS
var dates = $( "#sale_price_dates_from, #sale_price_dates_to" ).datepicker({
defaultDate: "",
dateFormat: "yy-mm-dd",
numberOfMonths: 1,
showButtonPanel: true,
showOn: "button",
buttonImage: woocommerce_writepanel_params.calendar_image,
buttonImageOnly: true,
onSelect: function( selectedDate ) {
var option = this.id == "sale_price_dates_from" ? "minDate" : "maxDate",
instance = $( this ).data( "datepicker" ),
date = $.datepicker.parseDate(
instance.settings.dateFormat ||
$.datepicker._defaults.dateFormat,
selectedDate, instance.settings );
dates.not( this ).datepicker( "option", option, date );
2011-08-09 15:16:18 +00:00
}
});
2011-09-20 15:05:07 +00:00
$( ".date-picker" ).datepicker({
2011-09-20 15:05:07 +00:00
dateFormat: "yy-mm-dd",
numberOfMonths: 1,
showButtonPanel: true,
showOn: "button",
buttonImage: woocommerce_writepanel_params.calendar_image,
buttonImageOnly: true
});
2011-08-09 15:16:18 +00:00
// ATTRIBUTE TABLES
2011-09-11 17:35:22 +00:00
// Multiselect attributes
$("#attributes_list select.multiselect").multiselect({
noneSelectedText: woocommerce_writepanel_params.select_terms,
2011-09-11 17:35:22 +00:00
selectedList: 4
});
2011-08-09 15:16:18 +00:00
// Initial order
var woocommerce_attributes_table_items = $('#attributes_list').children('tr').get();
2011-08-10 17:11:11 +00:00
woocommerce_attributes_table_items.sort(function(a, b) {
var compA = $(a).attr('rel');
var compB = $(b).attr('rel');
2011-08-09 15:16:18 +00:00
return (compA < compB) ? -1 : (compA > compB) ? 1 : 0;
})
$(woocommerce_attributes_table_items).each( function(idx, itm) { $('#attributes_list').append(itm); } );
2011-08-09 15:16:18 +00:00
// Show
function show_attribute_table() {
$('table.woocommerce_attributes, table.woocommerce_variable_attributes').each(function(){
if ($('tbody tr', this).size()==0)
$(this).parent().hide();
2011-08-09 15:16:18 +00:00
else
$(this).parent().show();
2011-08-09 15:16:18 +00:00
});
}
show_attribute_table();
function row_indexes() {
$('#attributes_list tr').each(function(index, el){ $('.attribute_position', el).val( parseInt( $(el).index('#attributes_list tr') ) ); });
2011-08-09 15:16:18 +00:00
};
// Add rows
$('button.add_attribute').click(function(){
2011-08-09 15:16:18 +00:00
var size = $('table.woocommerce_attributes tbody tr').size();
2011-08-09 15:16:18 +00:00
var attribute_type = $('select.attribute_taxonomy').val();
2011-08-09 15:16:18 +00:00
if (!attribute_type) {
var product_type = $('select#product-type').val();
if (product_type!='variable') enable_variation = 'style="display:none;"'; else enable_variation = '';
2011-08-09 15:16:18 +00:00
// Add custom attribute row
$('table.woocommerce_attributes tbody').append('<tr><td><input type="text" name="attribute_names[' + size + ']" /><input type="hidden" name="attribute_is_taxonomy[' + size + ']" value="0" /><input type="hidden" name="attribute_position[' + size + ']" class="attribute_position" value="' + size + '" /></td><td><input type="text" name="attribute_values[' + size + ']" /></td><td class="center"><input type="checkbox" checked="checked" name="attribute_visibility[' + size + ']" value="1" /></td><td class="center enable_variation" ' + enable_variation + '><input type="checkbox" name="attribute_variation[' + size + ']" value="1" /></td><td class="center"><button type="button" class="remove_row button">&times;</button></td></tr>');
2011-08-09 15:16:18 +00:00
} else {
// Reveal taxonomy row
var thisrow = $('table.woocommerce_attributes tbody tr.' + attribute_type);
$('table.woocommerce_attributes tbody').append( $(thisrow) );
$(thisrow).show();
2011-08-09 15:16:18 +00:00
row_indexes();
}
show_attribute_table();
});
$('button.hide_row').live('click', function(){
2011-08-09 15:16:18 +00:00
var answer = confirm("Remove this attribute?")
if (answer){
$(this).parent().parent().find('select, input[type=text]').val('');
$(this).parent().parent().hide();
2011-08-09 15:16:18 +00:00
show_attribute_table();
}
return false;
});
$('#attributes_list button.remove_row').live('click', function(){
2011-08-09 15:16:18 +00:00
var answer = confirm("Remove this attribute?")
if (answer){
$(this).parent().parent().remove();
2011-08-09 15:16:18 +00:00
show_attribute_table();
row_indexes();
}
return false;
});
2011-09-19 14:57:17 +00:00
// Attribute ordering
$('table.woocommerce_attributes tbody').sortable({
2011-09-19 14:57:17 +00:00
items:'tr',
cursor:'move',
axis:'y',
scrollSensitivity:40,
helper:function(e,ui){
ui.children().each(function(){
$(this).width($(this).width());
2011-09-19 14:57:17 +00:00
});
return ui;
},
start:function(event,ui){
ui.item.css('background-color','#f6f6f6');
},
stop:function(event,ui){
ui.item.removeAttr('style');
row_indexes();
}
2011-08-09 15:16:18 +00:00
});
2011-09-19 14:57:17 +00:00
2011-08-11 10:51:33 +00:00
// Cross sells/Up sells
$('.multi_select_products button').live('click', function(){
var wrapper = $(this).parent().parent().parent().parent();
2011-08-11 10:51:33 +00:00
var button = $(this);
var button_parent = button.parent().parent();
if (button_parent.is('.multi_select_products_target_upsell') || button_parent.is('.multi_select_products_target_crosssell')) {
button.parent().remove();
2011-08-11 10:51:33 +00:00
} else {
if (button.is('.add_upsell')) {
var target = $('.multi_select_products_target_upsell', $(wrapper));
var product_id_field_name = 'upsell_ids[]';
} else {
var target = $('.multi_select_products_target_crosssell', $(wrapper));
var product_id_field_name = 'crosssell_ids[]';
}
var exists = $('li[rel=' + button.parent().attr('rel') + ']', target);
if ($(exists).size()>0) return false;
2011-08-11 10:51:33 +00:00
var cloned_item = button.parent().clone();
2011-08-11 10:51:33 +00:00
cloned_item.find('button:eq(0)').html('&times;');
cloned_item.find('button:eq(1)').remove();
cloned_item.find('input').val( button.parent().attr('rel') );
cloned_item.find('.product_id').attr('name', product_id_field_name);
2011-08-11 10:51:33 +00:00
cloned_item.appendTo(target);
2011-08-11 10:51:33 +00:00
}
});
2011-09-19 14:57:17 +00:00
var xhr;
$('.multi_select_products #product_search').bind('keyup click', function(){
2011-08-11 10:51:33 +00:00
$('.multi_select_products_source').addClass('loading');
$('.multi_select_products_source li:not(.product_search)').remove();
2011-08-11 10:51:33 +00:00
2011-09-19 14:57:17 +00:00
if (xhr) xhr.abort();
var search = $(this).val();
2011-08-11 10:51:33 +00:00
var input = this;
var name = $(this).attr('rel');
2011-08-11 10:51:33 +00:00
2011-09-19 14:57:17 +00:00
if (search.length<3) {
$('.multi_select_products_source').removeClass('loading');
2011-09-19 14:57:17 +00:00
return;
}
2011-08-11 10:51:33 +00:00
var data = {
name: name,
2011-09-19 14:57:17 +00:00
search: encodeURI(search),
2011-08-11 10:51:33 +00:00
action: 'woocommerce_upsell_crosssell_search_products',
security: woocommerce_writepanel_params.upsell_crosssell_search_products_nonce
2011-08-11 10:51:33 +00:00
};
xhr = $.ajax({
2011-09-19 14:57:17 +00:00
url: woocommerce_writepanel_params.ajax_url,
data: data,
type: 'POST',
success: function( response ) {
2011-08-11 10:51:33 +00:00
$('.multi_select_products_source').removeClass('loading');
$('.multi_select_products_source li:not(.product_search)').remove();
$(input).parent().parent().append( response );
2011-09-19 14:57:17 +00:00
}
});
2011-08-11 10:51:33 +00:00
});
2011-08-09 15:16:18 +00:00
});