Subversion Repositories SmartDukaan

Rev

Rev 30016 | Rev 30022 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30016 Rev 30019
Line 17... Line 17...
17
        });
17
        });
18
    }
18
    }
19
});
19
});
20
 
20
 
21
$(document).on('click', '.notify-po', function () {
21
$(document).on('click', '.notify-po', function () {
22
    createPO();
22
    sendPONotification();
23
});
23
});
24
 
24
 
25
function createPO() {
25
function sendPONotification() {
26
    doGetAjaxRequestHandler(`${context}/indent/send-po-notification`, function (response) {
26
    doGetAjaxRequestHandler(`${context}/indent/send-po-notification`, function (response) {
27
        $('#main-content').html(response);
27
        $('#main-content').html(response);
28
    });
28
    });
29
}
29
}