2015-03-03 09:25:30 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
2012-02-23 07:05:32 +00:00
|
|
|
|
2012-07-19 08:10:31 +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
|
2015-02-13 04:46:41 +00:00
|
|
|
import frappe.share
|
2011-06-08 09:07:15 +00:00
|
|
|
|
2013-12-12 13:42:19 +00:00
|
|
|
from erpnext.controllers.status_updater import StatusUpdater
|
2013-01-15 13:09:21 +00:00
|
|
|
|
2014-01-02 06:17:23 +00:00
|
|
|
|
2014-01-30 13:17:12 +00:00
|
|
|
class TransactionBase(StatusUpdater):
|
2012-11-30 05:27:28 +00:00
|
|
|
def load_notification_message(self):
|
2014-03-28 08:25:00 +00:00
|
|
|
dt = self.doctype.lower().replace(" ", "_")
|
2014-02-26 07:05:33 +00:00
|
|
|
if int(frappe.db.get_value("Notification Control", None, dt) or 0):
|
2014-04-02 09:33:35 +00:00
|
|
|
self.set("__notification_message",
|
|
|
|
frappe.db.get_value("Notification Control", None, dt + "_message"))
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2013-03-13 07:28:54 +00:00
|
|
|
def validate_posting_time(self):
|
2014-03-28 08:25:00 +00:00
|
|
|
if not self.posting_time:
|
|
|
|
self.posting_time = now_datetime().strftime('%H:%M:%S')
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2013-06-10 10:08:01 +00:00
|
|
|
def add_calendar_event(self, opts, force=False):
|
2014-03-28 08:25:00 +00:00
|
|
|
if self.contact_by != cstr(self._prev.contact_by) or \
|
|
|
|
self.contact_date != cstr(self._prev.contact_date) or force:
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2013-06-10 09:45:40 +00:00
|
|
|
self.delete_events()
|
|
|
|
self._add_calendar_event(opts)
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2013-06-10 09:45:40 +00:00
|
|
|
def delete_events(self):
|
2014-04-15 09:06:12 +00:00
|
|
|
frappe.delete_doc("Event", frappe.db.sql_list("""select name from `tabEvent`
|
|
|
|
where ref_type=%s and ref_name=%s""", (self.doctype, self.name)),
|
2013-09-19 05:32:24 +00:00
|
|
|
ignore_permissions=True)
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2013-06-10 09:45:40 +00:00
|
|
|
def _add_calendar_event(self, opts):
|
2014-02-14 10:17:51 +00:00
|
|
|
opts = frappe._dict(opts)
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2014-03-28 08:25:00 +00:00
|
|
|
if self.contact_date:
|
2015-02-13 04:46:41 +00:00
|
|
|
event = frappe.get_doc({
|
2013-06-10 09:45:40 +00:00
|
|
|
"doctype": "Event",
|
2014-03-28 08:25:00 +00:00
|
|
|
"owner": opts.owner or self.owner,
|
2013-06-10 09:45:40 +00:00
|
|
|
"subject": opts.subject,
|
|
|
|
"description": opts.description,
|
2014-03-28 08:25:00 +00:00
|
|
|
"starts_on": self.contact_date + " 10:00:00",
|
2013-06-10 09:45:40 +00:00
|
|
|
"event_type": "Private",
|
2014-03-28 08:25:00 +00:00
|
|
|
"ref_type": self.doctype,
|
|
|
|
"ref_name": self.name
|
2014-03-27 12:21:41 +00:00
|
|
|
})
|
2015-02-23 16:44:12 +00:00
|
|
|
|
2015-02-20 10:52:24 +00:00
|
|
|
event.insert(ignore_permissions=True)
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2014-03-28 08:25:00 +00:00
|
|
|
if frappe.db.exists("User", self.contact_by):
|
2015-02-19 14:35:45 +00:00
|
|
|
frappe.share.add("Event", event.name, self.contact_by)
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2013-07-25 12:15:59 +00:00
|
|
|
def validate_uom_is_integer(self, uom_field, qty_fields):
|
2014-04-03 06:16:52 +00:00
|
|
|
validate_uom_is_integer(self, uom_field, qty_fields)
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2014-12-26 07:45:21 +00:00
|
|
|
def validate_with_previous_doc(self, ref):
|
2013-07-08 13:30:29 +00:00
|
|
|
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 = {}
|
2013-07-15 11:03:24 +00:00
|
|
|
item_ref_dn = []
|
2014-12-26 07:45:21 +00:00
|
|
|
for d in self.get_all_children(self.doctype + " Item"):
|
2014-03-28 08:25:00 +00:00
|
|
|
ref_dn = d.get(val["ref_dn_field"])
|
2013-07-10 10:03:29 +00:00
|
|
|
if ref_dn:
|
|
|
|
if is_child:
|
|
|
|
self.compare_values({key: [ref_dn]}, val["compare_fields"], d)
|
2013-07-15 11:03:24 +00:00
|
|
|
if ref_dn not in item_ref_dn:
|
|
|
|
item_ref_dn.append(ref_dn)
|
2013-07-29 09:59:51 +00:00
|
|
|
elif not val.get("allow_duplicate_prev_row_id"):
|
2014-04-15 09:06:12 +00:00
|
|
|
frappe.throw(_("Duplicate row {0} with same {1}").format(d.idx, key))
|
2013-07-15 11:03:24 +00:00
|
|
|
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"])
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2013-07-08 13:30:29 +00:00
|
|
|
def compare_values(self, ref_doc, fields, doc=None):
|
2015-03-19 11:45:45 +00:00
|
|
|
for reference_doctype, ref_dn_list in ref_doc.items():
|
|
|
|
for reference_name in ref_dn_list:
|
|
|
|
prevdoc_values = frappe.db.get_value(reference_doctype, reference_name,
|
2013-07-10 10:03:29 +00:00
|
|
|
[d[0] for d in fields], as_dict=1)
|
|
|
|
|
|
|
|
for field, condition in fields:
|
2013-07-10 15:25:15 +00:00
|
|
|
if prevdoc_values[field] is not None:
|
|
|
|
self.validate_value(field, condition, prevdoc_values[field], doc)
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2015-02-23 16:44:12 +00:00
|
|
|
|
2013-06-17 07:21:36 +00:00
|
|
|
def delete_events(ref_type, ref_name):
|
2014-04-15 09:06:12 +00:00
|
|
|
frappe.delete_doc("Event", frappe.db.sql_list("""select name from `tabEvent`
|
2013-06-17 07:25:05 +00:00
|
|
|
where ref_type=%s and ref_name=%s""", (ref_type, ref_name)), for_reload=True)
|
2013-07-25 12:15:59 +00:00
|
|
|
|
2014-02-14 10:17:51 +00:00
|
|
|
class UOMMustBeIntegerError(frappe.ValidationError): pass
|
2013-07-26 05:51:45 +00:00
|
|
|
|
2015-02-09 11:16:46 +00:00
|
|
|
def validate_uom_is_integer(doc, uom_field, qty_fields, child_dt=None):
|
2013-07-25 12:15:59 +00:00
|
|
|
if isinstance(qty_fields, basestring):
|
|
|
|
qty_fields = [qty_fields]
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2014-04-02 12:39:34 +00:00
|
|
|
distinct_uoms = list(set([d.get(uom_field) for d in doc.get_all_children()]))
|
2014-04-15 09:06:12 +00:00
|
|
|
integer_uoms = filter(lambda uom: frappe.db.get_value("UOM", uom,
|
2014-04-02 12:39:34 +00:00
|
|
|
"must_be_whole_number") or None, distinct_uoms)
|
2014-04-15 09:06:12 +00:00
|
|
|
|
2013-07-25 12:15:59 +00:00
|
|
|
if not integer_uoms:
|
|
|
|
return
|
|
|
|
|
2015-02-09 11:16:46 +00:00
|
|
|
for d in doc.get_all_children(parenttype=child_dt):
|
2014-03-28 08:25:00 +00:00
|
|
|
if d.get(uom_field) in integer_uoms:
|
2013-07-25 12:15:59 +00:00
|
|
|
for f in qty_fields:
|
2014-03-28 08:25:00 +00:00
|
|
|
if d.get(f):
|
2014-03-31 18:07:40 +00:00
|
|
|
if cint(d.get(f))!=d.get(f):
|
2014-04-15 09:06:12 +00:00
|
|
|
frappe.throw(_("Quantity cannot be a fraction in row {0}").format(d.idx), UOMMustBeIntegerError)
|