Lines 61-67
Link Here
|
61 |
|
61 |
|
62 |
$(document).ready(function () { |
62 |
$(document).ready(function () { |
63 |
$.validator.addMethod("gt", function(value, element, params) { |
63 |
$.validator.addMethod("gt", function(value, element, params) { |
64 |
return parseInt(value) > parseInt($(params).val()); |
64 |
return parseInt(value) >= parseInt($(params).val()); |
65 |
}, _("Must be greater than from value.")); |
65 |
}, _("Must be greater than from value.")); |
66 |
|
66 |
|
67 |
$("form[name=add_by_number]").validate({ |
67 |
$("form[name=add_by_number]").validate({ |
Lines 88-91
Link Here
|
88 |
</script> |
88 |
</script> |
89 |
[% END %] |
89 |
[% END %] |
90 |
|
90 |
|
91 |
[% INCLUDE 'intranet-bottom.inc' %] |
91 |
[% INCLUDE 'intranet-bottom.inc' %] |
92 |
- |
|
|