daybook validation

This commit is contained in:
venbatechnologies@gmail.com 2018-09-17 14:04:07 +05:30
parent 33d3b0d557
commit 139f5b8d6d

View File

@ -630,6 +630,10 @@ $scope.loadStaring = true;
var id = id;
var reason = prompt("Reason For Deletion!", "");
$scope.deleteFeePayableEntry(reason, id);
//console.log($scope.deleteFeePayableEntry)
}
//delete the income entry From the fees payable
$scope.deleteFeePayableEntry = function (reason, id) {
@ -642,9 +646,26 @@ $scope.loadStaring = true;
confirmButtonColor: "#007aff",
confirmButtonText: "Yes!"
}, function (res) {
//console.log(res);
if (res === true) {
// alert(id);
// alert(stuId);
// alert(reason);
//alert(stuId);
//
if(reason == '')
{
alert('Please Enter Reason for Deletion');
// swal("Please Enter Reason!", "", "error");
return false;
}
else{
var deleteFeePayableDetails = {
method: 'POST',
url: apiPoint.url + 'deleteDayBookFeePayableDetails/',
@ -665,6 +686,8 @@ $scope.loadStaring = true;
swal(" ", response.data.message, "error");
}
});
}
}
});
}