Skip to content
Snippets Groups Projects
Commit 55be0847 authored by juanf's avatar juanf
Browse files

SSDM-4210 : Price not mandatory anymore, forgotten field

SVN: 37235
parent ee7b164e
No related branches found
No related tags found
No related merge requests found
......@@ -58,20 +58,22 @@ function NewProductsView(newProductsController, newProductsModel) {
}
});
var priceField = FormUtil.getRealInputField(null, "Price", true);
var priceField = FormUtil.getRealInputField(null, "Price", false);
priceField.change(function() {
var value = $(this).val();
try {
var valueParsed = parseFloat(value);
if("" + valueParsed === "NaN") {
if(value) {
try {
var valueParsed = parseFloat(value);
if("" + valueParsed === "NaN") {
Util.showError("Please input a correct price.");
$(this).val("");
} else {
$(this).val(valueParsed);
}
} catch(err) {
Util.showError("Please input a correct price.");
$(this).val("");
} else {
$(this).val(valueParsed);
}
} catch(err) {
Util.showError("Please input a correct price.");
$(this).val("");
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment