brotherton-erpnext/erpnext/utilities/transaction_base.py

119 lines
4.1 KiB
Python
Raw Normal View History

2013-11-20 07:29:58 +00:00
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
2012-02-23 07:05:32 +00:00
from __future__ import unicode_literals
2014-02-14 10:17:51 +00:00
import frappe
2014-02-21 09:14:35 +00:00
from frappe import _
from frappe.utils import cstr, now_datetime, cint
from erpnext.controllers.status_updater import StatusUpdater
class TransactionBase(StatusUpdater):
def load_notification_message(self):
dt = self.doc.doctype.lower().replace(" ", "_")
2014-02-26 07:05:33 +00:00
if int(frappe.db.get_value("Notification Control", None, dt) or 0):
self.doc.fields["__notification_message"] = \
2014-02-26 07:05:33 +00:00
frappe.db.get_value("Notification Control", None, dt + "_message")
2013-09-02 11:34:27 +00:00
2013-03-13 07:28:54 +00:00
def validate_posting_time(self):
if not self.doc.posting_time:
2013-03-26 07:03:43 +00:00
self.doc.posting_time = now_datetime().strftime('%H:%M:%S')
def add_calendar_event(self, opts, force=False):
if self.doc.contact_by != cstr(self._prev.contact_by) or \
self.doc.contact_date != cstr(self._prev.contact_date) or force:
self.delete_events()
self._add_calendar_event(opts)
def delete_events(self):
2014-02-26 07:05:33 +00:00
frappe.delete_doc("Event", frappe.db.sql_list("""select name from `tabEvent`
where ref_type=%s and ref_name=%s""", (self.doc.doctype, self.doc.name)),
ignore_permissions=True)
def _add_calendar_event(self, opts):
2014-02-14 10:17:51 +00:00
opts = frappe._dict(opts)
if self.doc.contact_date:
event_doclist = [{
"doctype": "Event",
"owner": opts.owner or self.doc.owner,
"subject": opts.subject,
"description": opts.description,
"starts_on": self.doc.contact_date + " 10:00:00",
"event_type": "Private",
"ref_type": self.doc.doctype,
"ref_name": self.doc.name
}]
if frappe.db.exists("User", self.doc.contact_by):
event_doclist.append({
"doctype": "Event User",
"parentfield": "event_individuals",
"person": self.doc.contact_by
})
2014-02-14 10:17:51 +00:00
frappe.bean(event_doclist).insert()
2013-07-08 13:30:29 +00:00
def validate_uom_is_integer(self, uom_field, qty_fields):
validate_uom_is_integer(self.doclist, uom_field, qty_fields)
2013-07-08 13:30:29 +00:00
def validate_with_previous_doc(self, source_dt, ref):
for key, val in ref.items():
2013-07-10 10:03:29 +00:00
is_child = val.get("is_child_table")
2013-07-08 13:30:29 +00:00
ref_doc = {}
item_ref_dn = []
2013-07-08 13:30:29 +00:00
for d in self.doclist.get({"doctype": source_dt}):
2013-07-10 10:03:29 +00:00
ref_dn = d.fields.get(val["ref_dn_field"])
if ref_dn:
if is_child:
self.compare_values({key: [ref_dn]}, val["compare_fields"], d)
if ref_dn not in item_ref_dn:
item_ref_dn.append(ref_dn)
elif not val.get("allow_duplicate_prev_row_id"):
2014-02-14 10:17:51 +00:00
frappe.msgprint(_("Row ") + cstr(d.idx + 1) +
_(": Duplicate row from same ") + key, raise_exception=1)
elif ref_dn:
2013-07-10 10:03:29 +00:00
ref_doc.setdefault(key, [])
if ref_dn not in ref_doc[key]:
ref_doc[key].append(ref_dn)
if ref_doc:
2013-07-08 13:30:29 +00:00
self.compare_values(ref_doc, val["compare_fields"])
def compare_values(self, ref_doc, fields, doc=None):
2013-07-10 10:03:29 +00:00
for ref_doctype, ref_dn_list in ref_doc.items():
for ref_docname in ref_dn_list:
2014-02-26 07:05:33 +00:00
prevdoc_values = frappe.db.get_value(ref_doctype, ref_docname,
2013-07-10 10:03:29 +00:00
[d[0] for d in fields], as_dict=1)
for field, condition in fields:
if prevdoc_values[field] is not None:
self.validate_value(field, condition, prevdoc_values[field], doc)
def delete_events(ref_type, ref_name):
2014-02-26 07:05:33 +00:00
frappe.delete_doc("Event", frappe.db.sql_list("""select name from `tabEvent`
where ref_type=%s and ref_name=%s""", (ref_type, ref_name)), for_reload=True)
2014-02-14 10:17:51 +00:00
class UOMMustBeIntegerError(frappe.ValidationError): pass
def validate_uom_is_integer(doclist, uom_field, qty_fields):
if isinstance(qty_fields, basestring):
qty_fields = [qty_fields]
2014-02-26 07:05:33 +00:00
integer_uoms = filter(lambda uom: frappe.db.get_value("UOM", uom,
"must_be_whole_number") or None, doclist.get_distinct_values(uom_field))
if not integer_uoms:
return
for d in doclist:
if d.fields.get(uom_field) in integer_uoms:
for f in qty_fields:
if d.fields.get(f):
if cint(d.fields[f])!=d.fields[f]:
2014-02-14 10:17:51 +00:00
frappe.msgprint(_("For UOM") + " '" + d.fields[uom_field] \
+ "': " + _("Quantity cannot be a fraction.") \
+ " " + _("In Row") + ": " + str(d.idx),
raise_exception=UOMMustBeIntegerError)