72 lines
2.4 KiB
Python
72 lines
2.4 KiB
Python
# Copyright (c) 2012 Web Notes Technologies Pvt Ltd (http://erpnext.com)
|
|
#
|
|
# MIT License (MIT)
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
# to deal in the Software without restriction, including without limitation
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
# PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
|
|
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
#
|
|
|
|
from __future__ import unicode_literals
|
|
import webnotes
|
|
from webnotes import msgprint, _
|
|
from webnotes.utils import flt, cint, cstr
|
|
|
|
error_coniditon_map = {
|
|
"=": "!=",
|
|
"!=": "=",
|
|
"<": ">=",
|
|
">": "<=",
|
|
">=": "<",
|
|
"<=": ">",
|
|
"in": _("not in"),
|
|
"not in": _("in"),
|
|
"^": _("cannot start with"),
|
|
}
|
|
|
|
class DocListController(object):
|
|
def __init__(self, doc, doclist):
|
|
self.doc, self.doclist = doc, doclist
|
|
if hasattr(self, "setup"):
|
|
self.setup()
|
|
|
|
@property
|
|
def meta(self):
|
|
if not hasattr(self, "_meta"):
|
|
self._meta = webnotes.get_doctype(self.doc.doctype)
|
|
return self._meta
|
|
|
|
def validate_value(self, fieldname, condition, val2, doc=None):
|
|
if not doc:
|
|
doc = self.doc
|
|
|
|
df = self.meta.get_field(fieldname, parent=doc.doctype)
|
|
|
|
val1 = doc.fields.get(fieldname)
|
|
if df.fieldtype in ("Currency", "Float"):
|
|
val1 = flt(val1)
|
|
elif df.fieldtype in ("Int", "Check"):
|
|
val1 = cint(val1)
|
|
|
|
if not webnotes.compare(val1, condition, val2):
|
|
msg = _("Error: ")
|
|
if doc.parentfield:
|
|
msg += _("Row") + (" # %d: " % doc.idx)
|
|
|
|
msg += _(self.meta.get_label(fieldname, parent=doc.doctype)) \
|
|
+ " " + error_coniditon_map.get(condition, "") + " " + cstr(val2)
|
|
|
|
msgprint(msg, raise_exception=True)
|