Subversion Repositories SmartDukaan

Rev

Rev 30033 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30022 amit.gupta 1
$(document).on('click', 'a.notify-po', function () {
30019 amit.gupta 2
    sendPONotification();
30016 amit.gupta 3
});
30073 amit.gupta 4
$(document).on('click', 'button.mk_remove_model', function () {
5
    $(this).closest('tr').remove();
6
});
30016 amit.gupta 7
 
30019 amit.gupta 8
function sendPONotification() {
30016 amit.gupta 9
    doGetAjaxRequestHandler(`${context}/indent/send-po-notification`, function (response) {
10
        $('#main-content').html(response);
11
    });
12
}