Rushabh Mehta | ad45e31 | 2013-11-20 12:59:58 +0530 | [diff] [blame] | 1 | # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors |
Rushabh Mehta | e67d1fb | 2013-08-05 14:59:54 +0530 | [diff] [blame] | 2 | # License: GNU General Public License v3. See license.txt |
Rushabh Mehta | 3966f1d | 2012-02-23 12:35:32 +0530 | [diff] [blame] | 3 | |
Anand Doshi | 486f9df | 2012-07-19 13:40:31 +0530 | [diff] [blame] | 4 | from __future__ import unicode_literals |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 5 | import frappe |
Nabin Hait | a1c96de | 2014-02-21 14:44:35 +0530 | [diff] [blame] | 6 | from frappe import _ |
| 7 | from frappe.utils import cstr, now_datetime, cint |
Pratik Vyas | c1e6e4c | 2011-06-08 14:37:15 +0530 | [diff] [blame] | 8 | |
Rushabh Mehta | 1f84799 | 2013-12-12 19:12:19 +0530 | [diff] [blame] | 9 | from erpnext.controllers.status_updater import StatusUpdater |
Anand Doshi | 756dca7 | 2013-01-15 18:39:21 +0530 | [diff] [blame] | 10 | |
Rushabh Mehta | b09d9da | 2014-01-02 11:47:23 +0530 | [diff] [blame] | 11 | |
Nabin Hait | b5be7ba | 2014-01-30 18:47:12 +0530 | [diff] [blame] | 12 | class TransactionBase(StatusUpdater): |
Rushabh Mehta | 35c017a | 2012-11-30 10:57:28 +0530 | [diff] [blame] | 13 | def load_notification_message(self): |
| 14 | dt = self.doc.doctype.lower().replace(" ", "_") |
Anand Doshi | e9baaa6 | 2014-02-26 12:35:33 +0530 | [diff] [blame] | 15 | if int(frappe.db.get_value("Notification Control", None, dt) or 0): |
Rushabh Mehta | 35c017a | 2012-11-30 10:57:28 +0530 | [diff] [blame] | 16 | self.doc.fields["__notification_message"] = \ |
Anand Doshi | e9baaa6 | 2014-02-26 12:35:33 +0530 | [diff] [blame] | 17 | frappe.db.get_value("Notification Control", None, dt + "_message") |
Rushabh Mehta | 96690eb | 2013-09-02 17:04:27 +0530 | [diff] [blame] | 18 | |
Anand Doshi | ee3d5cc | 2013-03-13 12:58:54 +0530 | [diff] [blame] | 19 | def validate_posting_time(self): |
| 20 | if not self.doc.posting_time: |
Anand Doshi | acec022 | 2013-03-26 12:33:43 +0530 | [diff] [blame] | 21 | self.doc.posting_time = now_datetime().strftime('%H:%M:%S') |
Anand Doshi | e53a81d | 2013-06-10 15:15:40 +0530 | [diff] [blame] | 22 | |
Anand Doshi | 670199b | 2013-06-10 15:38:01 +0530 | [diff] [blame] | 23 | def add_calendar_event(self, opts, force=False): |
Anand Doshi | e53a81d | 2013-06-10 15:15:40 +0530 | [diff] [blame] | 24 | if self.doc.contact_by != cstr(self._prev.contact_by) or \ |
Anand Doshi | 670199b | 2013-06-10 15:38:01 +0530 | [diff] [blame] | 25 | self.doc.contact_date != cstr(self._prev.contact_date) or force: |
Anand Doshi | e53a81d | 2013-06-10 15:15:40 +0530 | [diff] [blame] | 26 | |
| 27 | self.delete_events() |
| 28 | self._add_calendar_event(opts) |
| 29 | |
| 30 | def delete_events(self): |
Anand Doshi | e9baaa6 | 2014-02-26 12:35:33 +0530 | [diff] [blame] | 31 | frappe.delete_doc("Event", frappe.db.sql_list("""select name from `tabEvent` |
Nabin Hait | ad6ce4e | 2013-09-19 11:02:24 +0530 | [diff] [blame] | 32 | where ref_type=%s and ref_name=%s""", (self.doc.doctype, self.doc.name)), |
| 33 | ignore_permissions=True) |
Anand Doshi | e53a81d | 2013-06-10 15:15:40 +0530 | [diff] [blame] | 34 | |
| 35 | def _add_calendar_event(self, opts): |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 36 | opts = frappe._dict(opts) |
Anand Doshi | e53a81d | 2013-06-10 15:15:40 +0530 | [diff] [blame] | 37 | |
| 38 | if self.doc.contact_date: |
| 39 | event_doclist = [{ |
| 40 | "doctype": "Event", |
| 41 | "owner": opts.owner or self.doc.owner, |
| 42 | "subject": opts.subject, |
| 43 | "description": opts.description, |
| 44 | "starts_on": self.doc.contact_date + " 10:00:00", |
| 45 | "event_type": "Private", |
| 46 | "ref_type": self.doc.doctype, |
| 47 | "ref_name": self.doc.name |
| 48 | }] |
| 49 | |
Rushabh Mehta | 7c93200 | 2014-03-11 16:15:05 +0530 | [diff] [blame^] | 50 | if frappe.db.exists("User", self.doc.contact_by): |
Anand Doshi | e53a81d | 2013-06-10 15:15:40 +0530 | [diff] [blame] | 51 | event_doclist.append({ |
| 52 | "doctype": "Event User", |
| 53 | "parentfield": "event_individuals", |
| 54 | "person": self.doc.contact_by |
| 55 | }) |
| 56 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 57 | frappe.bean(event_doclist).insert() |
Nabin Hait | 2bd3777 | 2013-07-08 19:00:29 +0530 | [diff] [blame] | 58 | |
Rushabh Mehta | 4dca401 | 2013-07-25 17:45:59 +0530 | [diff] [blame] | 59 | def validate_uom_is_integer(self, uom_field, qty_fields): |
| 60 | validate_uom_is_integer(self.doclist, uom_field, qty_fields) |
| 61 | |
Nabin Hait | 2bd3777 | 2013-07-08 19:00:29 +0530 | [diff] [blame] | 62 | def validate_with_previous_doc(self, source_dt, ref): |
| 63 | for key, val in ref.items(): |
Nabin Hait | 6e68e0e | 2013-07-10 15:33:29 +0530 | [diff] [blame] | 64 | is_child = val.get("is_child_table") |
Nabin Hait | 2bd3777 | 2013-07-08 19:00:29 +0530 | [diff] [blame] | 65 | ref_doc = {} |
Nabin Hait | a9ec49e | 2013-07-15 16:33:24 +0530 | [diff] [blame] | 66 | item_ref_dn = [] |
Nabin Hait | 2bd3777 | 2013-07-08 19:00:29 +0530 | [diff] [blame] | 67 | for d in self.doclist.get({"doctype": source_dt}): |
Nabin Hait | 6e68e0e | 2013-07-10 15:33:29 +0530 | [diff] [blame] | 68 | ref_dn = d.fields.get(val["ref_dn_field"]) |
| 69 | if ref_dn: |
| 70 | if is_child: |
| 71 | self.compare_values({key: [ref_dn]}, val["compare_fields"], d) |
Nabin Hait | a9ec49e | 2013-07-15 16:33:24 +0530 | [diff] [blame] | 72 | if ref_dn not in item_ref_dn: |
| 73 | item_ref_dn.append(ref_dn) |
Nabin Hait | 5e200e4 | 2013-07-29 15:29:51 +0530 | [diff] [blame] | 74 | elif not val.get("allow_duplicate_prev_row_id"): |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 75 | frappe.msgprint(_("Row ") + cstr(d.idx + 1) + |
Nabin Hait | a9ec49e | 2013-07-15 16:33:24 +0530 | [diff] [blame] | 76 | _(": Duplicate row from same ") + key, raise_exception=1) |
| 77 | elif ref_dn: |
Nabin Hait | 6e68e0e | 2013-07-10 15:33:29 +0530 | [diff] [blame] | 78 | ref_doc.setdefault(key, []) |
| 79 | if ref_dn not in ref_doc[key]: |
| 80 | ref_doc[key].append(ref_dn) |
| 81 | if ref_doc: |
Nabin Hait | 2bd3777 | 2013-07-08 19:00:29 +0530 | [diff] [blame] | 82 | self.compare_values(ref_doc, val["compare_fields"]) |
| 83 | |
| 84 | def compare_values(self, ref_doc, fields, doc=None): |
Nabin Hait | 6e68e0e | 2013-07-10 15:33:29 +0530 | [diff] [blame] | 85 | for ref_doctype, ref_dn_list in ref_doc.items(): |
| 86 | for ref_docname in ref_dn_list: |
Anand Doshi | e9baaa6 | 2014-02-26 12:35:33 +0530 | [diff] [blame] | 87 | prevdoc_values = frappe.db.get_value(ref_doctype, ref_docname, |
Nabin Hait | 6e68e0e | 2013-07-10 15:33:29 +0530 | [diff] [blame] | 88 | [d[0] for d in fields], as_dict=1) |
| 89 | |
| 90 | for field, condition in fields: |
Anand Doshi | 63d844b | 2013-07-10 20:55:15 +0530 | [diff] [blame] | 91 | if prevdoc_values[field] is not None: |
| 92 | self.validate_value(field, condition, prevdoc_values[field], doc) |
Anand Doshi | 1dde46a | 2013-05-15 21:15:57 +0530 | [diff] [blame] | 93 | |
Anand Doshi | 11d3113 | 2013-06-17 12:51:36 +0530 | [diff] [blame] | 94 | def delete_events(ref_type, ref_name): |
Anand Doshi | e9baaa6 | 2014-02-26 12:35:33 +0530 | [diff] [blame] | 95 | frappe.delete_doc("Event", frappe.db.sql_list("""select name from `tabEvent` |
Anand Doshi | b5fd788 | 2013-06-17 12:55:05 +0530 | [diff] [blame] | 96 | where ref_type=%s and ref_name=%s""", (ref_type, ref_name)), for_reload=True) |
Rushabh Mehta | 4dca401 | 2013-07-25 17:45:59 +0530 | [diff] [blame] | 97 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 98 | class UOMMustBeIntegerError(frappe.ValidationError): pass |
Rushabh Mehta | c4f5e4f | 2013-07-26 11:21:45 +0530 | [diff] [blame] | 99 | |
Rushabh Mehta | 4dca401 | 2013-07-25 17:45:59 +0530 | [diff] [blame] | 100 | def validate_uom_is_integer(doclist, uom_field, qty_fields): |
| 101 | if isinstance(qty_fields, basestring): |
| 102 | qty_fields = [qty_fields] |
| 103 | |
Anand Doshi | e9baaa6 | 2014-02-26 12:35:33 +0530 | [diff] [blame] | 104 | integer_uoms = filter(lambda uom: frappe.db.get_value("UOM", uom, |
Rushabh Mehta | 4dca401 | 2013-07-25 17:45:59 +0530 | [diff] [blame] | 105 | "must_be_whole_number") or None, doclist.get_distinct_values(uom_field)) |
| 106 | |
| 107 | if not integer_uoms: |
| 108 | return |
| 109 | |
| 110 | for d in doclist: |
| 111 | if d.fields.get(uom_field) in integer_uoms: |
| 112 | for f in qty_fields: |
| 113 | if d.fields.get(f): |
| 114 | if cint(d.fields[f])!=d.fields[f]: |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 115 | frappe.msgprint(_("For UOM") + " '" + d.fields[uom_field] \ |
Rushabh Mehta | 4dca401 | 2013-07-25 17:45:59 +0530 | [diff] [blame] | 116 | + "': " + _("Quantity cannot be a fraction.") \ |
| 117 | + " " + _("In Row") + ": " + str(d.idx), |
Rushabh Mehta | c4f5e4f | 2013-07-26 11:21:45 +0530 | [diff] [blame] | 118 | raise_exception=UOMMustBeIntegerError) |