Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

$(document).on('click', ".invoice-summary", function () {
    loadInvoiceSummary('');
});

function loadInvoiceSummary(yearMonth) {
    doGetAjaxRequestHandler(`${context}/invoice-summary/${yearMonth}`, function (
        response) {
        $('#main-content').html(response);
    });
}