woocommerce/assets/js/admin/meta-boxes-order.js

957 lines
32 KiB
JavaScript
Raw Normal View History

/*global woocommerce_admin_meta_boxes */
jQuery( function ( $ ) {
2013-11-12 17:01:13 +00:00
/**
* Add order items loading block
*/
function addOrderItemsLoading() {
2014-07-16 20:12:33 +00:00
$( '#woocommerce-order-items' ).block({
message: null,
overlayCSS: {
background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center',
opacity: 0.6
}
});
}
/**
* Remove order items loading block
*/
function removeOrderItemsLoading() {
2014-07-16 20:12:33 +00:00
$( '#woocommerce-order-items' ).unblock();
}
2011-08-09 15:16:18 +00:00
// ORDERS
$( '#woocommerce-order-actions input, #woocommerce-order-actions a' ).click( function () {
window.onbeforeunload = '';
});
2012-08-01 12:43:46 +00:00
$( 'a.edit_address' ).click( function ( e ) {
e.preventDefault();
$( this ).hide();
$( this ).closest( '.order_data_column' ).find( 'div.address' ).hide();
$( this ).closest( '.order_data_column' ).find( 'div.edit_address' ).show();
2011-11-25 19:31:06 +00:00
});
2012-11-27 16:22:47 +00:00
2012-09-18 18:07:13 +00:00
// When the page is loaded, store the unit costs
$('#order_items_list tr.item, #order_items_list tr.fee').each( function() {
2012-09-18 18:07:13 +00:00
$(this).trigger('init_row');
$(this).find('.edit').hide();
} );
2014-07-10 10:25:50 +00:00
$('#order_items_list')
.on( 'init_row', 'tr.item', function() {
var $row = $(this);
var $qty = $row.find('input.quantity');
var qty = $qty.val();
var line_subtotal = accounting.unformat( $row.find('input.line_subtotal').val(), woocommerce_admin.mon_decimal_point );
var line_total = accounting.unformat( $row.find('input.line_total').val(), woocommerce_admin.mon_decimal_point );
var line_tax = accounting.unformat( $row.find('input.line_tax').val(), woocommerce_admin.mon_decimal_point );
var line_subtotal_tax = accounting.unformat( $row.find('input.line_subtotal_tax').val(), woocommerce_admin.mon_decimal_point );
if ( qty ) {
unit_subtotal = parseFloat( accounting.toFixed( ( line_subtotal / qty ), woocommerce_admin_meta_boxes.rounding_precision ) );
unit_subtotal_tax = parseFloat( accounting.toFixed( ( line_subtotal_tax / qty ), woocommerce_admin_meta_boxes.rounding_precision ) );
unit_total = parseFloat( accounting.toFixed( ( line_total / qty ), woocommerce_admin_meta_boxes.rounding_precision ) );
unit_total_tax = parseFloat( accounting.toFixed( ( line_tax / qty ), woocommerce_admin_meta_boxes.rounding_precision ) );
} else {
unit_subtotal = unit_subtotal_tax = unit_total = unit_total_tax = 0;
}
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
$qty.attr( 'data-o_qty', qty );
$row.attr( 'data-unit_subtotal', unit_subtotal );
$row.attr( 'data-unit_subtotal_tax', unit_subtotal_tax );
$row.attr( 'data-unit_total', unit_total );
$row.attr( 'data-unit_total_tax', unit_total_tax );
})
.on( 'init_row', 'tr.fee', function() {
var $row = $(this);
var line_total = accounting.unformat( $row.find('input.line_total').val(), woocommerce_admin.mon_decimal_point );
var line_tax = accounting.unformat( $row.find('input.line_tax').val(), woocommerce_admin.mon_decimal_point );
unit_total = parseFloat( accounting.toFixed( line_total, woocommerce_admin_meta_boxes.rounding_precision ) );
unit_total_tax = parseFloat( accounting.toFixed( line_tax, woocommerce_admin_meta_boxes.rounding_precision ) );
$row.attr( 'data-unit_total', unit_total );
$row.attr( 'data-unit_total_tax', unit_total_tax );
})
.on( 'click', 'a.edit_order_item', function() {
$(this).closest('tr').find('.view').hide();
$(this).closest('tr').find('.edit').show();
$(this).hide();
return false;
})
.on( 'click', 'a.delete_order_item', function () {
var answer = window.confirm( woocommerce_admin_meta_boxes.remove_item_notice );
2014-07-10 10:25:50 +00:00
if ( answer ) {
var $item = $( this ).closest( 'tr.item, tr.fee, tr.shipping' );
2014-07-10 10:25:50 +00:00
var order_item_id = $item.attr( 'data-order_item_id' );
addOrderItemsLoading();
2014-07-10 10:25:50 +00:00
var data = {
order_item_ids: order_item_id,
action: 'woocommerce_remove_order_item',
security: woocommerce_admin_meta_boxes.order_item_nonce
2014-07-10 10:25:50 +00:00
};
$.ajax({
url: woocommerce_admin_meta_boxes.ajax_url,
data: data,
type: 'POST',
success: function ( response ) {
2014-07-10 10:25:50 +00:00
$item.remove();
removeOrderItemsLoading();
2014-07-10 10:25:50 +00:00
}
});
2014-07-10 10:25:50 +00:00
}
return false;
})
2014-07-16 20:12:33 +00:00
.on( 'click', '.delete_refund', function () {
if ( window.confirm( woocommerce_admin_meta_boxes.i18n_delete_refund ) ) {
var $refund = $( this ).closest( 'tr.refund' );
var refund_id = $refund.attr( 'data-order_refund_id' );
addOrderItemsLoading();
var data = {
action: 'woocommerce_delete_refund',
refund_id: refund_id,
security: woocommerce_admin_meta_boxes.order_item_nonce,
};
$.ajax({
url: woocommerce_admin_meta_boxes.ajax_url,
data: data,
type: 'POST',
success: function ( response ) {
$refund.remove();
window.location.reload();
}
});
}
return false;
})
2014-07-10 10:25:50 +00:00
// When the qty is changed, increase or decrease costs
.on( 'change', 'input.quantity', function() {
var $row = $(this).closest('tr.item');
var qty = $(this).val();
var unit_subtotal = $row.attr('data-unit_subtotal');
var unit_subtotal_tax = $row.attr('data-unit_subtotal_tax');
var unit_total = $row.attr('data-unit_total');
var unit_total_tax = $row.attr('data-unit_total_tax');
var o_qty = $(this).attr('data-o_qty');
var subtotal = parseFloat( accounting.formatNumber( unit_subtotal * qty, woocommerce_admin_meta_boxes.rounding_precision, '' ) );
var tax = parseFloat( accounting.formatNumber( unit_subtotal_tax * qty, woocommerce_admin_meta_boxes.rounding_precision, '' ) );
var total = parseFloat( accounting.formatNumber( unit_total * qty, woocommerce_admin_meta_boxes.rounding_precision, '' ) );
var total_tax = parseFloat( accounting.formatNumber( unit_total_tax * qty, woocommerce_admin_meta_boxes.rounding_precision, '' ) );
subtotal = subtotal.toString().replace( '.', woocommerce_admin.mon_decimal_point );
tax = tax.toString().replace( '.', woocommerce_admin.mon_decimal_point );
total = total.toString().replace( '.', woocommerce_admin.mon_decimal_point );
total_tax = total_tax.toString().replace( '.', woocommerce_admin.mon_decimal_point );
$row.find('input.line_subtotal').val( subtotal );
$row.find('input.line_total').val( total );
$row.find('input.line_subtotal_tax').val( tax );
$row.find('input.line_tax').val( total_tax );
$(this).trigger('quantity_changed');
})
// When subtotal is changed, update the unit costs
.on( 'change', 'input.line_subtotal', function() {
var $row = $(this).closest('tr.item');
var $qty = $row.find('input.quantity');
var qty = $qty.val();
var value = ( qty ) ? accounting.toFixed( ( $(this).val() / qty ), woocommerce_admin_meta_boxes.rounding_precision ) : 0;
$row.attr( 'data-unit_subtotal', value );
})
// When total is changed, update the unit costs + discount amount
.on( 'change', 'input.line_total', function() {
var $row = $(this).closest('tr.item');
var $qty = $row.find('input.quantity');
var qty = $qty.val();
var value = ( qty ) ? accounting.toFixed( ( $(this).val() / qty ), woocommerce_admin_meta_boxes.rounding_precision ) : 0;
$row.attr( 'data-unit_total', value );
})
// When total is changed, update the unit costs + discount amount
.on( 'change', 'input.line_subtotal_tax', function() {
var $row = $(this).closest('tr.item');
var $qty = $row.find('input.quantity');
var qty = $qty.val();
var value = ( qty ) ? accounting.toFixed( ( $(this).val() / qty ), woocommerce_admin_meta_boxes.rounding_precision ) : 0;
$row.attr( 'data-unit_subtotal_tax', value );
})
// When total is changed, update the unit costs + discount amount
.on( 'change', 'input.line_tax', function() {
var $row = $(this).closest('tr.item');
var $qty = $row.find('input.quantity');
var qty = $qty.val();
var value = ( qty ) ? accounting.toFixed( ( $(this).val() / qty ), woocommerce_admin_meta_boxes.rounding_precision ) : 0;
$row.attr( 'data-unit_total_tax', value );
})
.on( 'change', '.wc-order-item-refund-quantity input', function() {
var refund_amount = 0;
var $items = $('#order_items_list').find('tr.item, tr.fee');
$items.each(function() {
var $row = $(this);
var refund_qty = $row.find( '.wc-order-item-refund-quantity input' ).val();
2014-07-10 10:25:50 +00:00
if ( refund_qty ) {
refund_amount = parseFloat( refund_amount ) + ( refund_qty * ( parseFloat( $row.attr( 'data-unit_total' ) ) + parseFloat( $row.attr( 'data-unit_total_tax' ) ) ) );
}
} );
$('#refund_amount').val( refund_amount ).change();
})
// Add some meta to a line item
.on( 'click', 'button.add_order_item_meta', function () {
2014-07-10 10:25:50 +00:00
var $button = $( this );
var $item = $button.closest( 'tr.item' );
var data = {
2014-07-10 10:25:50 +00:00
order_item_id: $item.attr( 'data-order_item_id' ),
action: 'woocommerce_add_order_item_meta',
security: woocommerce_admin_meta_boxes.order_item_nonce
};
addOrderItemsLoading();
2014-07-10 10:25:50 +00:00
$.ajax( {
url: woocommerce_admin_meta_boxes.ajax_url,
data: data,
type: 'POST',
success: function( response ) {
2014-07-10 10:25:50 +00:00
$item.find('tbody.meta_items').append( response );
removeOrderItemsLoading();
}
} );
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
return false;
})
// Remove some meta from a line item
.on('click', 'button.remove_order_item_meta', function(){
var answer = confirm( woocommerce_admin_meta_boxes.remove_item_meta )
if ( answer ) {
var $row = $(this).closest('tr');
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
var data = {
meta_id: $row.attr( 'data-meta_id' ),
action: 'woocommerce_remove_order_item_meta',
security: woocommerce_admin_meta_boxes.order_item_nonce
};
2012-11-27 16:22:47 +00:00
addOrderItemsLoading();
2014-07-10 10:25:50 +00:00
$.ajax( {
url: woocommerce_admin_meta_boxes.ajax_url,
data: data,
type: 'POST',
success: function( response ) {
$row.hide();
removeOrderItemsLoading();
2014-07-10 10:25:50 +00:00
}
} );
}
2014-07-10 10:25:50 +00:00
return false;
});
2014-07-10 10:25:50 +00:00
$('#woocommerce-order-items')
.on( 'click', 'button.add_line_item', function() {
$('div.wc-order-add-item').slideDown();
$('div.wc-order-bulk-actions').slideUp();
return false;
})
.on( 'click', 'button.refund_items', function() {
$('div.wc-order-refund-items').slideDown();
$('div.wc-order-bulk-actions').slideUp();
$('.wc-order-item-refund-quantity').show();
$('.wc-order-edit-line-item').hide();
return false;
})
.on( 'click', '.cancel-action', function() {
$(this).closest('div.wc-order-data-row').slideUp();
$('div.wc-order-bulk-actions').slideDown();
$('.wc-order-item-refund-quantity').hide();
$('.wc-order-edit-line-item').show();
return false;
})
.on( 'click', 'button.add_order_item', function () {
if ( window.WCBackbone.Modal.__instance === undefined ) {
window.WCBackbone.Modal.__instance = new WCBackbone.Modal.View({ target: '#wc-modal-add-products' });
2012-01-13 21:25:39 +00:00
}
return false;
})
.on( 'click', 'button.add_order_fee', function () {
addOrderItemsLoading();
var data = {
action: 'woocommerce_add_order_fee',
order_id: woocommerce_admin_meta_boxes.post_id,
security: woocommerce_admin_meta_boxes.order_item_nonce
};
$.post( woocommerce_admin_meta_boxes.ajax_url, data, function ( response ) {
$( 'table.woocommerce_order_items tbody#order_items_list' ).append( response );
removeOrderItemsLoading();
});
return false;
2014-07-10 10:25:50 +00:00
})
.on( 'click', 'button.add_order_shipping', function () {
addOrderItemsLoading();
2012-11-12 18:53:40 +00:00
var data = {
action: 'woocommerce_add_order_shipping',
order_id: woocommerce_admin_meta_boxes.post_id,
security: woocommerce_admin_meta_boxes.order_item_nonce
2012-11-12 18:53:40 +00:00
};
$.post( woocommerce_admin_meta_boxes.ajax_url, data, function ( response ) {
$( 'table.woocommerce_order_items tbody#order_items_list' ).append( response );
removeOrderItemsLoading();
2012-01-13 21:25:39 +00:00
});
2014-07-10 10:25:50 +00:00
return false;
})
// Bulk actions for line items
.on( 'click', 'input.check-column', function() {
if ( $(this).is(':checked') ) {
2014-07-10 10:25:50 +00:00
$('#woocommerce-order-items').find('.check-column input').attr('checked', 'checked');
} else {
2014-07-10 10:25:50 +00:00
$('#woocommerce-order-items').find('.check-column input').removeAttr('checked');
}
2014-07-10 10:25:50 +00:00
})
.on( 'click', '.do_bulk_action', function() {
var action = $(this).closest('.bulk_actions').find('select').val();
var selected_rows = $('#woocommerce-order-items').find('.check-column input:checked');
var item_ids = [];
2012-01-13 21:25:39 +00:00
2014-07-10 10:25:50 +00:00
$(selected_rows).each( function() {
var $item = $(this).closest('tr.item, tr.fee');
2014-07-10 10:25:50 +00:00
item_ids.push( $item.attr( 'data-order_item_id' ) );
} );
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
if ( item_ids.length == 0 ) {
alert( woocommerce_admin_meta_boxes.i18n_select_items );
return;
}
2012-08-01 12:43:46 +00:00
2014-07-10 10:25:50 +00:00
if ( action == 'delete' ) {
2012-08-01 12:43:46 +00:00
2014-07-10 10:25:50 +00:00
var answer = confirm( woocommerce_admin_meta_boxes.remove_item_notice );
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
if ( answer ) {
2012-08-01 12:43:46 +00:00
addOrderItemsLoading();
2011-08-09 15:16:18 +00:00
2014-07-10 10:25:50 +00:00
var data = {
order_item_ids: item_ids,
action: 'woocommerce_remove_order_item',
security: woocommerce_admin_meta_boxes.order_item_nonce
};
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
$.ajax( {
url: woocommerce_admin_meta_boxes.ajax_url,
data: data,
type: 'POST',
success: function( response ) {
$(selected_rows).each( function() {
$(this).closest('tr.item, tr.fee').remove();
} );
removeOrderItemsLoading();
2014-07-10 10:25:50 +00:00
}
} );
}
2014-07-10 10:25:50 +00:00
} else if ( action == 'reduce_stock' ) {
2012-11-27 16:22:47 +00:00
addOrderItemsLoading();
2012-08-01 12:43:46 +00:00
2014-07-10 10:25:50 +00:00
var quantities = {};
2012-08-01 12:43:46 +00:00
2014-07-10 10:25:50 +00:00
$(selected_rows).each( function() {
2012-08-01 12:43:46 +00:00
2014-07-10 10:25:50 +00:00
var $item = $(this).closest('tr.item, tr.fee');
var $qty = $item.find('input.quantity');
2012-08-01 12:43:46 +00:00
2014-07-10 10:25:50 +00:00
quantities[ $item.attr( 'data-order_item_id' ) ] = $qty.val();
} );
2012-08-01 12:43:46 +00:00
var data = {
2014-07-10 10:25:50 +00:00
order_id: woocommerce_admin_meta_boxes.post_id,
order_item_ids: item_ids,
order_item_qty: quantities,
action: 'woocommerce_reduce_order_item_stock',
security: woocommerce_admin_meta_boxes.order_item_nonce
};
2012-08-01 12:43:46 +00:00
2014-07-10 10:25:50 +00:00
$.ajax( {
url: woocommerce_admin_meta_boxes.ajax_url,
data: data,
type: 'POST',
success: function( response ) {
alert( response );
removeOrderItemsLoading();
2014-07-10 10:25:50 +00:00
}
} );
2012-08-01 12:43:46 +00:00
2014-07-10 10:25:50 +00:00
} else if ( action == 'increase_stock' ) {
addOrderItemsLoading();
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
var quantities = {};
2012-08-01 12:43:46 +00:00
2014-07-10 10:25:50 +00:00
$(selected_rows).each( function() {
2011-08-09 15:16:18 +00:00
2014-07-10 10:25:50 +00:00
var $item = $(this).closest('tr.item, tr.fee');
var $qty = $item.find('input.quantity');
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
quantities[ $item.attr( 'data-order_item_id' ) ] = $qty.val();
} );
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
var data = {
order_id: woocommerce_admin_meta_boxes.post_id,
order_item_ids: item_ids,
order_item_qty: quantities,
action: 'woocommerce_increase_order_item_stock',
security: woocommerce_admin_meta_boxes.order_item_nonce
};
2012-11-12 13:41:54 +00:00
2014-07-10 10:25:50 +00:00
$.ajax( {
url: woocommerce_admin_meta_boxes.ajax_url,
data: data,
type: 'POST',
success: function( response ) {
alert( response );
removeOrderItemsLoading();
2014-07-10 10:25:50 +00:00
}
} );
}
2012-11-12 13:41:54 +00:00
2014-07-10 10:25:50 +00:00
return false;
2012-11-12 13:41:54 +00:00
});
2014-07-16 20:12:33 +00:00
$( '.wc-order-refund-items' )
.on( 'change', '#refund_amount', function () {
$( 'button .wc-order-refund-amount .amount' ).text( accounting.formatMoney( $( this ).val(), {
symbol: woocommerce_admin_meta_boxes.currency_format_symbol,
decimal: woocommerce_admin_meta_boxes.currency_format_decimal_sep,
thousand: woocommerce_admin_meta_boxes.currency_format_thousand_sep,
precision: woocommerce_admin_meta_boxes.currency_format_num_decimals,
format: woocommerce_admin_meta_boxes.currency_format
2014-07-10 10:25:50 +00:00
} ) );
})
2014-07-16 20:12:33 +00:00
.on( 'click', 'button.do-api-refund, button.do-manual-refund', function () {
addOrderItemsLoading();
if ( window.confirm( woocommerce_admin_meta_boxes.i18n_do_refund ) ) {
var refund_amount = $( 'input#refund_amount' ).val();
var refund_reason = $( 'input#refund_reason' ).val();
var refund_qty = $.map( $( 'input[type=number][name^=order_item_refund_qty]' ), function( item ) {
var result = [];
result.push( $( item ).closest( 'tr.item,tr.fee' ).data( 'order_item_id' ), item.value );
2014-07-10 12:33:05 +00:00
return result;
});
var data = {
action: 'woocommerce_refund_line_items',
order_id: woocommerce_admin_meta_boxes.post_id,
refund_amount: refund_amount,
refund_reason: refund_reason,
refund_qty: JSON.stringify( refund_qty, null, '' ),
2014-07-16 20:12:33 +00:00
api_refund: $( this ).is( '.do-api-refund' ),
2014-07-10 12:33:05 +00:00
security: woocommerce_admin_meta_boxes.order_item_nonce
};
$.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) {
2014-07-10 13:49:04 +00:00
if ( response === true ) {
2014-07-10 12:33:05 +00:00
window.location.reload();
2014-07-10 13:49:04 +00:00
} else if ( response.error ) {
alert( response.error );
2014-07-16 20:12:33 +00:00
removeOrderItemsLoading();
2014-07-10 12:33:05 +00:00
}
});
} else {
2014-07-16 20:12:33 +00:00
removeOrderItemsLoading();
2014-07-10 12:33:05 +00:00
}
2014-07-10 10:25:50 +00:00
});
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
// Display a total for taxes
$('#woocommerce-order-totals')
.on( 'change input', '.order_taxes_amount, .order_taxes_shipping_amount, .shipping_cost, #_order_discount', function() {
var $this = $(this);
var fields = $this.closest('.totals_group').find('input[type=number], .wc_input_price');
var total = 0;
fields.each(function(){
if ( $(this).val() )
total = total + accounting.unformat( $(this).val(), woocommerce_admin.mon_decimal_point );
});
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
if ( $this.is('.order_taxes_amount') || $this.is('.order_taxes_shipping_amount') ) {
total = round( total, woocommerce_admin_meta_boxes.currency_format_num_decimals, woocommerce_admin_meta_boxes.tax_rounding_mode );
2012-10-18 17:56:28 +00:00
}
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
var formatted_total = accounting.formatMoney( total, {
symbol : woocommerce_admin_meta_boxes.currency_format_symbol,
decimal : woocommerce_admin_meta_boxes.currency_format_decimal_sep,
thousand : woocommerce_admin_meta_boxes.currency_format_thousand_sep,
precision : woocommerce_admin_meta_boxes.currency_format_num_decimals,
format : woocommerce_admin_meta_boxes.currency_format
2012-10-18 17:56:28 +00:00
} );
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
$this.closest('.totals_group').find('span.inline_total').text( formatted_total );
})
// Calculate totals
.on('click', 'button.calc_line_taxes', function(){
// Block write panel
$('.woocommerce_order_items_wrapper').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } });
var answer = confirm(woocommerce_admin_meta_boxes.calc_line_taxes);
if (answer) {
var $items = $('#order_items_list').find('tr.item, tr.fee');
var shipping_country = $('#_shipping_country').val();
var billing_country = $('#_billing_country').val();
if (shipping_country) {
var country = shipping_country;
var state = $('#_shipping_state').val();
var postcode = $('#_shipping_postcode').val();
var city = $('#_shipping_city').val();
} else if(billing_country) {
var country = billing_country;
var state = $('#_billing_state').val();
var postcode = $('#_billing_postcode').val();
var city = $('#_billing_city').val();
} else {
var country = woocommerce_admin_meta_boxes.base_country;
var state = '';
var postcode = '';
var city = '';
}
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
// Get items and values
var calculate_items = {};
2012-11-12 12:22:35 +00:00
2014-07-10 10:25:50 +00:00
$items.each( function() {
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
var $row = $(this);
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
var item_id = $row.find('input.order_item_id').val();
var line_subtotal = $row.find('input.line_subtotal').val();
var line_total = $row.find('input.line_total').val();
var tax_class = $row.find('select.tax_class').val();
2014-07-10 10:25:50 +00:00
calculate_items[ item_id ] = {};
calculate_items[ item_id ].line_subtotal = line_subtotal;
calculate_items[ item_id ].line_total = line_total;
calculate_items[ item_id ].tax_class = tax_class;
} );
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
order_shipping = 0;
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
$('#shipping_rows').find('input[type=number], .wc_input_price').each(function(){
cost = $(this).val() || '0';
cost = accounting.unformat( cost, woocommerce_admin.mon_decimal_point );
order_shipping = order_shipping + parseFloat( cost );
});
2012-11-27 16:22:47 +00:00
2012-11-12 12:22:35 +00:00
var data = {
2014-07-10 10:25:50 +00:00
action: 'woocommerce_calc_line_taxes',
order_id: woocommerce_admin_meta_boxes.post_id,
items: calculate_items,
shipping: order_shipping,
country: country,
state: state,
postcode: postcode,
city: city,
security: woocommerce_admin_meta_boxes.calc_totals_nonce
2012-11-12 12:22:35 +00:00
};
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
$.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) {
if ( response ) {
$items.each( function() {
var $row = $(this);
var item_id = $row.find('input.order_item_id').val();
$row.find('.edit_order_item').click();
if ( response['item_taxes'][ item_id ] ) {
$row.find('input.line_tax').val( response['item_taxes'][ item_id ]['line_tax'] ).change();
$row.find('input.line_subtotal_tax').val( response['item_taxes'][ item_id ]['line_subtotal_tax'] ).change();
}
if ( response['tax_row_html'] )
$('#tax_rows').empty().append( response['tax_row_html'] );
2012-11-12 14:34:10 +00:00
} );
2014-07-10 10:25:50 +00:00
$('#tax_rows').find('input').change();
2012-11-12 12:22:35 +00:00
}
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
$('.woocommerce_order_items_wrapper').unblock();
});
} else {
$('.woocommerce_order_items_wrapper').unblock();
2012-11-10 16:18:20 +00:00
}
2014-07-10 10:25:50 +00:00
return false;
})
.on('click', 'button.calc_totals', function(){
// Block write panel
$('#woocommerce-order-totals').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } });
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
var answer = confirm(woocommerce_admin_meta_boxes.calc_totals);
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
if (answer) {
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
// Get row totals
var line_totals = 0;
var tax = 0;
var shipping = 0;
var order_discount = $('#_order_discount').val() || '0';
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
order_discount = accounting.unformat( order_discount.replace(',', '.') );
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
$('#shipping_rows').find('input[type=number], .wc_input_price').each(function(){
cost = $(this).val() || '0';
cost = accounting.unformat( cost, woocommerce_admin.mon_decimal_point );
shipping = shipping + parseFloat( cost );
});
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
$('#tax_rows').find('input[type=number], .wc_input_price').each(function(){
cost = $(this).val() || '0';
cost = accounting.unformat( cost, woocommerce_admin.mon_decimal_point );
tax = tax + parseFloat( cost );
});
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
$('#order_items_list tr.item, #order_items_list tr.fee').each(function(){
line_total = $(this).find('input.line_total').val() || '0';
line_totals = line_totals + accounting.unformat( line_total.replace(',', '.') );
});
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
// Tax
if ( woocommerce_admin_meta_boxes.round_at_subtotal == 'yes' )
tax = parseFloat( accounting.toFixed( tax, woocommerce_admin_meta_boxes.rounding_precision ) );
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
// Set Total
$('#_order_total').val( accounting.formatNumber( line_totals + tax + shipping - order_discount, woocommerce_admin_meta_boxes.currency_format_num_decimals, '', woocommerce_admin.mon_decimal_point ) ).change();
}
2012-11-12 12:22:35 +00:00
2014-07-10 10:25:50 +00:00
$('#woocommerce-order-totals').unblock();
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
return false;
});
2012-11-27 16:22:47 +00:00
// Adds new products in order items
$( 'body' ).on( 'wc_backbone_modal_response', function ( e, target ) {
if ( '#wc-modal-add-products' !== target ) {
return;
}
var add_item_ids = $( 'select#add_item_id' ).val();
if ( add_item_ids ) {
count = add_item_ids.length;
addOrderItemsLoading();
$.each( add_item_ids, function( index, value ) {
var data = {
action: 'woocommerce_add_order_item',
item_to_add: value,
order_id: woocommerce_admin_meta_boxes.post_id,
security: woocommerce_admin_meta_boxes.order_item_nonce
};
$.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) {
$( 'table.woocommerce_order_items tbody#order_items_list' ).append( response );
if ( !--count ) {
$( 'select#add_item_id, #add_item_id_chosen .chosen-choices' ).css( 'border-color', '' ).val( '' );
$( '#tiptip_holder' ).removeAttr( 'style' );
$( '#tiptip_arrow' ).removeAttr( 'style' );
$( '.tips' ).tipTip({
'attribute': 'data-tip',
'fadeIn': 50,
'fadeOut': 50,
'delay': 200
});
$( 'select#add_item_id' ).trigger( 'chosen:updated' );
$( 'table.woocommerce_order_items' ).unblock();
}
$( '#order_items_list tr.new_row' ).trigger( 'init_row' ).removeClass( 'new_row' );
});
});
} else {
$( 'select#add_item_id, #add_item_id_chosen .chosen-choices' ).css( 'border-color', 'red' );
}
});
2014-07-10 10:25:50 +00:00
$('span.inline_total').closest('.totals_group').find('input').change();
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
// Download permissions
$('.order_download_permissions')
.on('click', 'button.grant_access', function(){
var products = $('select#grant_access_id').val();
if (!products) return;
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
$('.order_download_permissions').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } });
2012-11-27 16:22:47 +00:00
2012-11-12 12:22:35 +00:00
var data = {
2014-07-10 10:25:50 +00:00
action: 'woocommerce_grant_access_to_download',
product_ids: products,
loop: $('.order_download_permissions .wc-metabox').size(),
order_id: woocommerce_admin_meta_boxes.post_id,
security: woocommerce_admin_meta_boxes.grant_access_nonce,
2012-11-12 12:22:35 +00:00
};
2012-11-27 16:22:47 +00:00
2014-07-10 10:25:50 +00:00
$.post( woocommerce_admin_meta_boxes.ajax_url, data, function( response ) {
2014-07-10 10:25:50 +00:00
if ( response ) {
$('.order_download_permissions .wc-metaboxes').append( response );
} else {
alert( woocommerce_admin_meta_boxes.i18n_download_permission_fail );
}
2014-07-10 10:25:50 +00:00
$( ".date-picker" ).datepicker({
dateFormat: "yy-mm-dd",
numberOfMonths: 1,
showButtonPanel: true,
showOn: "button",
buttonImage: woocommerce_admin_meta_boxes.calendar_image,
buttonImageOnly: true
});
$('#grant_access_id').val('').trigger('chosen:updated');
$('.order_download_permissions').unblock();
});
2014-07-10 10:25:50 +00:00
return false;
})
.on('click', 'button.revoke_access', function(e){
e.preventDefault();
var answer = confirm( woocommerce_admin_meta_boxes.i18n_permission_revoke );
if ( answer ) {
var el = $(this).parent().parent();
var product = $(this).attr('rel').split(",")[0];
var file = $(this).attr('rel').split(",")[1];
if ( product > 0 ) {
$(el).block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } });
var data = {
action: 'woocommerce_revoke_access_to_download',
product_id: product,
download_id: file,
order_id: woocommerce_admin_meta_boxes.post_id,
security: woocommerce_admin_meta_boxes.revoke_access_nonce,
};
$.post( woocommerce_admin_meta_boxes.ajax_url, data, function(response) {
// Success
$(el).fadeOut('300', function(){
$(el).remove();
});
});
2014-07-10 10:25:50 +00:00
} else {
$(el).fadeOut('300', function(){
$(el).remove();
});
2014-07-10 10:25:50 +00:00
}
}
2014-07-10 10:25:50 +00:00
return false;
});
2012-08-01 12:43:46 +00:00
2012-12-28 13:02:12 +00:00
$('button.load_customer_billing').click(function(){
2013-08-06 10:41:20 +00:00
var answer = confirm(woocommerce_admin_meta_boxes.load_billing);
2011-11-26 16:15:25 +00:00
if (answer){
2012-08-01 12:43:46 +00:00
2011-11-26 16:15:25 +00:00
// Get user ID to load data for
var user_id = $('#customer_user').val();
2012-08-01 12:43:46 +00:00
2011-11-26 16:15:25 +00:00
if (!user_id) {
2013-08-06 10:41:20 +00:00
alert(woocommerce_admin_meta_boxes.no_customer_selected);
2011-11-26 16:15:25 +00:00
return false;
}
2012-08-01 12:43:46 +00:00
2011-11-26 16:15:25 +00:00
var data = {
user_id: user_id,
type_to_load: 'billing',
action: 'woocommerce_get_customer_details',
2013-08-06 10:41:20 +00:00
security: woocommerce_admin_meta_boxes.get_customer_details_nonce
2011-11-26 16:15:25 +00:00
};
2012-08-01 12:43:46 +00:00
2013-08-06 10:41:20 +00:00
$(this).closest('.edit_address').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } });
2012-08-01 12:43:46 +00:00
2011-11-26 16:15:25 +00:00
$.ajax({
2013-08-06 10:41:20 +00:00
url: woocommerce_admin_meta_boxes.ajax_url,
2011-11-26 16:15:25 +00:00
data: data,
type: 'POST',
success: function( response ) {
2013-01-22 14:35:10 +00:00
var info = response;
2012-08-01 12:43:46 +00:00
2011-11-26 16:15:25 +00:00
if (info) {
$('input#_billing_first_name').val( info.billing_first_name );
$('input#_billing_last_name').val( info.billing_last_name );
$('input#_billing_company').val( info.billing_company );
$('input#_billing_address_1').val( info.billing_address_1 );
$('input#_billing_address_2').val( info.billing_address_2 );
$('input#_billing_city').val( info.billing_city );
$('input#_billing_postcode').val( info.billing_postcode );
$('#_billing_country').val( info.billing_country );
2011-11-26 16:15:25 +00:00
$('input#_billing_state').val( info.billing_state );
$('input#_billing_email').val( info.billing_email );
$('input#_billing_phone').val( info.billing_phone );
}
2012-08-01 12:43:46 +00:00
2011-11-26 16:15:25 +00:00
$('.edit_address').unblock();
}
});
}
return false;
});
2012-08-01 12:43:46 +00:00
2012-12-28 13:02:12 +00:00
$('button.load_customer_shipping').click(function(){
2012-08-01 12:43:46 +00:00
2013-08-06 10:41:20 +00:00
var answer = confirm(woocommerce_admin_meta_boxes.load_shipping);
2011-11-26 16:15:25 +00:00
if (answer){
2012-08-01 12:43:46 +00:00
2011-11-26 16:15:25 +00:00
// Get user ID to load data for
var user_id = $('#customer_user').val();
2012-08-01 12:43:46 +00:00
2011-11-26 16:15:25 +00:00
if (!user_id) {
2013-08-06 10:41:20 +00:00
alert(woocommerce_admin_meta_boxes.no_customer_selected);
2011-11-26 16:15:25 +00:00
return false;
}
2012-08-01 12:43:46 +00:00
2011-11-26 16:15:25 +00:00
var data = {
user_id: user_id,
type_to_load: 'shipping',
action: 'woocommerce_get_customer_details',
2013-08-06 10:41:20 +00:00
security: woocommerce_admin_meta_boxes.get_customer_details_nonce
2011-11-26 16:15:25 +00:00
};
2012-08-01 12:43:46 +00:00
2013-08-06 10:41:20 +00:00
$(this).closest('.edit_address').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } });
2012-08-01 12:43:46 +00:00
2011-11-26 16:15:25 +00:00
$.ajax({
2013-08-06 10:41:20 +00:00
url: woocommerce_admin_meta_boxes.ajax_url,
2011-11-26 16:15:25 +00:00
data: data,
type: 'POST',
success: function( response ) {
2013-01-22 14:35:10 +00:00
var info = response;
2013-01-22 16:48:28 +00:00
2011-11-26 16:15:25 +00:00
if (info) {
$('input#_shipping_first_name').val( info.shipping_first_name );
$('input#_shipping_last_name').val( info.shipping_last_name );
$('input#_shipping_company').val( info.shipping_company );
$('input#_shipping_address_1').val( info.shipping_address_1 );
$('input#_shipping_address_2').val( info.shipping_address_2 );
$('input#_shipping_city').val( info.shipping_city );
$('input#_shipping_postcode').val( info.shipping_postcode );
$('#_shipping_country').val( info.shipping_country );
2011-11-26 16:15:25 +00:00
$('input#_shipping_state').val( info.shipping_state );
}
2012-08-01 12:43:46 +00:00
2011-11-26 16:15:25 +00:00
$('.edit_address').unblock();
}
});
}
return false;
});
2012-08-01 12:43:46 +00:00
2012-12-28 13:02:12 +00:00
$('button.billing-same-as-shipping').click(function(){
2013-08-06 10:41:20 +00:00
var answer = confirm(woocommerce_admin_meta_boxes.copy_billing);
2011-08-09 15:16:18 +00:00
if (answer){
2011-11-26 16:15:25 +00:00
$('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() );
$('#_shipping_country').val( $('#_billing_country').val() );
2012-08-01 12:43:46 +00:00
$('input#_shipping_state').val( $('input#_billing_state').val() );
2011-08-09 15:16:18 +00:00
}
return false;
});
2012-08-01 12:43:46 +00:00
$('.totals_group').on('click','a.add_total_row',function(){
$(this).closest('.totals_group').find('.total_rows').append( $(this).data( 'row' ) );
return false;
});
2012-11-27 16:22:47 +00:00
$('.total_rows').on('click','a.delete_total_row',function(){
$row = $(this).closest('.total_row');
2013-01-25 03:26:16 +00:00
var row_id = $row.attr( 'data-order_item_id' );
2012-11-27 16:22:47 +00:00
if ( row_id ) {
$row.append('<input type="hidden" name="delete_order_item_id[]" value="' + row_id + '" />').hide();
} else {
$row.remove();
}
2012-11-27 16:22:47 +00:00
2011-12-31 19:03:41 +00:00
return false;
});
2012-08-01 12:43:46 +00:00
2013-11-28 12:03:29 +00:00
// Order notes
2014-07-10 10:25:50 +00:00
$('#woocommerce-order-notes')
.on( 'click', 'a.add_note', function() {
if ( ! $('textarea#add_order_note').val() ) return;
2013-11-28 12:03:29 +00:00
2014-07-10 10:25:50 +00:00
$('#woocommerce-order-notes').block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } });
var data = {
action: 'woocommerce_add_order_note',
post_id: woocommerce_admin_meta_boxes.post_id,
note: $('textarea#add_order_note').val(),
note_type: $('select#order_note_type').val(),
security: woocommerce_admin_meta_boxes.add_order_note_nonce,
};
2013-11-28 12:03:29 +00:00
2014-07-10 10:25:50 +00:00
$.post( woocommerce_admin_meta_boxes.ajax_url, data, function(response) {
$('ul.order_notes').prepend( response );
$('#woocommerce-order-notes').unblock();
$('#add_order_note').val('');
});
2013-11-28 12:03:29 +00:00
2014-07-10 10:25:50 +00:00
return false;
2013-11-28 12:03:29 +00:00
2014-07-10 10:25:50 +00:00
})
.on( 'click', 'a.delete_note', function() {
var note = $(this).closest('li.note');
$(note).block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_admin_meta_boxes.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', opacity: 0.6 } });
2013-11-28 12:03:29 +00:00
2014-07-10 10:25:50 +00:00
var data = {
action: 'woocommerce_delete_order_note',
note_id: $(note).attr('rel'),
security: woocommerce_admin_meta_boxes.delete_order_note_nonce,
};
2013-11-28 12:03:29 +00:00
2014-07-10 10:25:50 +00:00
$.post( woocommerce_admin_meta_boxes.ajax_url, data, function(response) {
$(note).remove();
});
return false;
});
});