
//////////////////////////////////////////////////////
// Ajax-Functions
var ajaxFunctions = {};

(function($) {
    ajaxFunctions.loadDeliveryAmountList = function (idProducer) {
        var html;
        // Ajax-Request :: Liste mit Versandpauschalen zu Artikel
        $.ajax({
            url: '../php/ajax_requests/getDeliveryCostList.php',
            type: 'POST',
            data: { 'id_producer': idProducer },
            dataType: 'html',
            success: function (data) {
                html = data;
            },
            async: false
        });

        return html;
    };
})(jQuery);
// Ajax-Functions
//////////////////////////////////////////////////////

