Вижла тупит

This commit is contained in:
Yunusov_Niyaz 2024-05-25 23:20:26 +04:00
parent f81beec0f4
commit a3bd1787dc
2 changed files with 29 additions and 26 deletions

View File

@ -72,10 +72,10 @@ namespace VeterinaryBusinessLogic.BusinessLogic
{
throw new ArgumentNullException("Цена заказа должна быть больше 0", nameof(model.Sum));
}
if (model.DateCreate < DateTime.Now)
{
throw new ArgumentNullException("Дата покупки не должна быть в прошлом", nameof(model.DateCreate));
}
//if (model.DateCreate <= DateTime.Now)
//{
// throw new ArgumentNullException("Дата покупки не должна быть в прошлом", nameof(model.DateCreate));
//}
if (model.Count <= 0)
{
throw new ArgumentNullException("Количество элементов в заказе должно быть больше 0", nameof(model.Count));

View File

@ -42,26 +42,29 @@
</div>
</div>
</form>
<script>
$('#drug').on('change', function () {
check();
});
$('#count').on('change', function () {
check();
});
function check() {
var count = $('#count').val();
var drug = $('#drug').val();
if (count && drug) {
$.ajax({
method: "POST",
url: "/Home/Calc",
data: { count: count, drug: drug },
success: function (result) {
$("#sum").val(result);
}
@section Scripts
{
<script>
$('#drug').on('change', function () {
check();
});
};
}
</script>
$('#count').on('change', function () {
check();
});
function check() {
var count = $('#count').val();
var drug = $('#drug').val();
if (count && drug) {
$.ajax({
method: "POST",
url: "/Home/Calc",
data: { count: count, drug: drug },
success: function (result) {
$("#sum").val(result);
}
});
};
}
</script>
}