stock_graphSale.js 1.07 KB
Newer Older
Administrator committed
1 2 3
var myChart;


4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
function get_ajax_data(product_id) {

    $.ajax({
        type: 'GET',
        url: 'get_list_sale_breaking/' + product_id,
        dataType:"json",
        timeout: 3000,
        beforeSend: function () { },
        complete: function () { },
        success: function(data) {
            myChart.data = data['data'];
            myChart.update();


        },
        error: function() {
            alert('Les données n\'ont pas pu être récupérées, réessayez plus tard.');
        }
    });
Administrator committed
23
}
24

Administrator committed
25 26

var config = {
27 28 29
    type: 'bar',
    data: {},
    options: {
Administrator committed
30
        title: {
31 32
            display: true,
            text: 'Graph. des ventes'
Administrator committed
33 34
        },
        legend: { display: false }
35 36
    }
};
Administrator committed
37 38 39 40



window.onload = function() {
41 42
    myChart = new Chart(document.getElementById("mixed-chart"), config);
};
Administrator committed
43

44
$(function() {
Administrator committed
45
    $('.modal').on('show.bs.modal', function (e) {
46 47 48 49 50 51 52 53
        var button = $(e.relatedTarget);
        var index = button.data('remote');
        //$(this).find('.modal-content').load('remote' + index + '.html')

        get_ajax_data(index);

    });
});