Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Fix bug #152 #163

Merged
merged 1 commit into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ protected void doPost(HttpServletRequest request, HttpServletResponse response)

Integer productId = Integer.parseInt(productIdParam);
Integer productQuantity = Integer.parseInt(productQuantityParam);

if(productQuantity <= 0){
request.setAttribute("message", "productQuantityNotPositive");
this.doGet(request, response);
return;
}

Optional<Product> product = Singleton.productDAO.getByID(productId);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@
Nhập sai định dạng số lượng sản phẩm. Vui lòng kiểm tra lại.
</div>
</c:when>
<c:when test="${requestScope.message eq 'productQuantityNotPositive'}">
<div class="alert alert-danger text-center" role="alert">
Số lượng sản phẩm phải lớn hơn 0. Vui lòng kiểm tra lại.
</div>
</c:when>
<c:when test="${requestScope.message eq 'missingCustomer'}">
<div class="alert alert-danger text-center" role="alert">
Tên người dùng bị trống. Vui lòng kiểm tra và nhập vào.
Expand Down Expand Up @@ -192,7 +197,9 @@
formGroupSelector: '.form-group',
rules: [
Validator.isRequired('#product-name', 'Vui lòng nhập tên sản phẩm!'),
Validator.isRequired('#product-quantity', 'Vui lòng nhập số lượng sản phẩm!')

Validator.isRequired('#product-quantity', 'Vui lòng nhập số lượng sản phẩm!'),
Validator.isPositive('#product-quantity', 'Vui lòng nhập số lượng sản phẩm lớn hơn 0!')
]
});
</script>
Expand Down
Loading