var CounterBtn;
$(document).ready(function () {
$("#btn-check-finance").click(function () {
$(".txtTotal").text("100");
$(".txtDiscount").text("20");
$(".txtNetPayable").text("80");
$('#financeModal').modal('show');
});
$('#btn-check-offers').click(function (e) {
$(".txtTotal").text("100");
$(".txtDiscount").text("20");
$(".txtNetPayable").text("80");
});
});
function chkbtn_Scheme_Change(param) {
if ($(param).is(":checked")) {
$(param).closest('tr').find(".planQuantity").val("1");
}
else {
$(param).closest('tr').find(".planQuantity").val("0");
}
}
$('.input-number').focusin(function () {
$(this).data('oldValue', $(this).val());
});
function OnChangeCountButton(param) {