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 |
Nabin Hait | b5be7ba | 2014-01-30 18:47:12 +0530 | [diff] [blame] | 5 | import webnotes |
Anand Doshi | 1dde46a | 2013-05-15 21:15:57 +0530 | [diff] [blame] | 6 | from webnotes import msgprint, _ |
Rushabh Mehta | 1f84799 | 2013-12-12 19:12:19 +0530 | [diff] [blame] | 7 | from webnotes.utils import cstr, flt, 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): |
Anand Doshi | 2ac0a83 | 2013-07-10 20:49:44 +0530 | [diff] [blame] | 13 | def set_contact_fields(self): |
| 14 | party_type, party_name = self.get_party_type_and_name() |
| 15 | |
| 16 | if party_type == "Lead": |
| 17 | contact_dict = map_lead_contact_details(party_name) |
| 18 | else: |
| 19 | contact_dict = map_party_contact_details(self.doc.contact_person, party_type, party_name) |
| 20 | |
| 21 | for fieldname, value in contact_dict.items(): |
| 22 | if self.meta.get_field(fieldname): |
| 23 | self.doc.fields[fieldname] = value |
| 24 | |
| 25 | def get_party_type_and_name(self): |
| 26 | if not hasattr(self, "_party_type_and_name"): |
| 27 | for party_type in ("Lead", "Customer", "Supplier"): |
| 28 | party_field = party_type.lower() |
| 29 | if self.meta.get_field(party_field) and self.doc.fields.get(party_field): |
| 30 | self._party_type_and_name = (party_type, self.doc.fields.get(party_field)) |
| 31 | break |
| 32 | |
| 33 | return self._party_type_and_name |
Anand Doshi | f2045fb | 2013-07-25 17:46:02 +0530 | [diff] [blame] | 34 | |
Anand Doshi | 99100a4 | 2013-07-04 17:13:53 +0530 | [diff] [blame] | 35 | def get_lead_defaults(self): |
| 36 | out = self.get_default_address_and_contact("lead") |
Pratik Vyas | c1e6e4c | 2011-06-08 14:37:15 +0530 | [diff] [blame] | 37 | |
Anand Doshi | 99100a4 | 2013-07-04 17:13:53 +0530 | [diff] [blame] | 38 | lead = webnotes.conn.get_value("Lead", self.doc.lead, |
| 39 | ["territory", "company_name", "lead_name"], as_dict=True) or {} |
Pratik Vyas | c1e6e4c | 2011-06-08 14:37:15 +0530 | [diff] [blame] | 40 | |
Anand Doshi | 99100a4 | 2013-07-04 17:13:53 +0530 | [diff] [blame] | 41 | out["territory"] = lead.get("territory") |
| 42 | out["customer_name"] = lead.get("company_name") or lead.get("lead_name") |
| 43 | |
| 44 | return out |
| 45 | |
| 46 | def set_lead_defaults(self): |
| 47 | self.doc.fields.update(self.get_lead_defaults()) |
Nabin Hait | 41cc327 | 2012-04-30 14:36:18 +0530 | [diff] [blame] | 48 | |
Rushabh Mehta | 35c017a | 2012-11-30 10:57:28 +0530 | [diff] [blame] | 49 | def load_notification_message(self): |
| 50 | dt = self.doc.doctype.lower().replace(" ", "_") |
| 51 | if int(webnotes.conn.get_value("Notification Control", None, dt) or 0): |
| 52 | self.doc.fields["__notification_message"] = \ |
| 53 | webnotes.conn.get_value("Notification Control", None, dt + "_message") |
Rushabh Mehta | 96690eb | 2013-09-02 17:04:27 +0530 | [diff] [blame] | 54 | |
Anand Doshi | ee3d5cc | 2013-03-13 12:58:54 +0530 | [diff] [blame] | 55 | def validate_posting_time(self): |
| 56 | if not self.doc.posting_time: |
Anand Doshi | acec022 | 2013-03-26 12:33:43 +0530 | [diff] [blame] | 57 | self.doc.posting_time = now_datetime().strftime('%H:%M:%S') |
Anand Doshi | e53a81d | 2013-06-10 15:15:40 +0530 | [diff] [blame] | 58 | |
Anand Doshi | 670199b | 2013-06-10 15:38:01 +0530 | [diff] [blame] | 59 | def add_calendar_event(self, opts, force=False): |
Anand Doshi | e53a81d | 2013-06-10 15:15:40 +0530 | [diff] [blame] | 60 | if self.doc.contact_by != cstr(self._prev.contact_by) or \ |
Anand Doshi | 670199b | 2013-06-10 15:38:01 +0530 | [diff] [blame] | 61 | self.doc.contact_date != cstr(self._prev.contact_date) or force: |
Anand Doshi | e53a81d | 2013-06-10 15:15:40 +0530 | [diff] [blame] | 62 | |
| 63 | self.delete_events() |
| 64 | self._add_calendar_event(opts) |
| 65 | |
| 66 | def delete_events(self): |
| 67 | webnotes.delete_doc("Event", webnotes.conn.sql_list("""select name from `tabEvent` |
Nabin Hait | ad6ce4e | 2013-09-19 11:02:24 +0530 | [diff] [blame] | 68 | where ref_type=%s and ref_name=%s""", (self.doc.doctype, self.doc.name)), |
| 69 | ignore_permissions=True) |
Anand Doshi | e53a81d | 2013-06-10 15:15:40 +0530 | [diff] [blame] | 70 | |
| 71 | def _add_calendar_event(self, opts): |
| 72 | opts = webnotes._dict(opts) |
| 73 | |
| 74 | if self.doc.contact_date: |
| 75 | event_doclist = [{ |
| 76 | "doctype": "Event", |
| 77 | "owner": opts.owner or self.doc.owner, |
| 78 | "subject": opts.subject, |
| 79 | "description": opts.description, |
| 80 | "starts_on": self.doc.contact_date + " 10:00:00", |
| 81 | "event_type": "Private", |
| 82 | "ref_type": self.doc.doctype, |
| 83 | "ref_name": self.doc.name |
| 84 | }] |
| 85 | |
| 86 | if webnotes.conn.exists("Profile", self.doc.contact_by): |
| 87 | event_doclist.append({ |
| 88 | "doctype": "Event User", |
| 89 | "parentfield": "event_individuals", |
| 90 | "person": self.doc.contact_by |
| 91 | }) |
| 92 | |
| 93 | webnotes.bean(event_doclist).insert() |
Nabin Hait | 2bd3777 | 2013-07-08 19:00:29 +0530 | [diff] [blame] | 94 | |
Rushabh Mehta | 4dca401 | 2013-07-25 17:45:59 +0530 | [diff] [blame] | 95 | def validate_uom_is_integer(self, uom_field, qty_fields): |
| 96 | validate_uom_is_integer(self.doclist, uom_field, qty_fields) |
| 97 | |
Nabin Hait | 2bd3777 | 2013-07-08 19:00:29 +0530 | [diff] [blame] | 98 | def validate_with_previous_doc(self, source_dt, ref): |
| 99 | for key, val in ref.items(): |
Nabin Hait | 6e68e0e | 2013-07-10 15:33:29 +0530 | [diff] [blame] | 100 | is_child = val.get("is_child_table") |
Nabin Hait | 2bd3777 | 2013-07-08 19:00:29 +0530 | [diff] [blame] | 101 | ref_doc = {} |
Nabin Hait | a9ec49e | 2013-07-15 16:33:24 +0530 | [diff] [blame] | 102 | item_ref_dn = [] |
Nabin Hait | 2bd3777 | 2013-07-08 19:00:29 +0530 | [diff] [blame] | 103 | for d in self.doclist.get({"doctype": source_dt}): |
Nabin Hait | 6e68e0e | 2013-07-10 15:33:29 +0530 | [diff] [blame] | 104 | ref_dn = d.fields.get(val["ref_dn_field"]) |
| 105 | if ref_dn: |
| 106 | if is_child: |
| 107 | self.compare_values({key: [ref_dn]}, val["compare_fields"], d) |
Nabin Hait | a9ec49e | 2013-07-15 16:33:24 +0530 | [diff] [blame] | 108 | if ref_dn not in item_ref_dn: |
| 109 | item_ref_dn.append(ref_dn) |
Nabin Hait | 5e200e4 | 2013-07-29 15:29:51 +0530 | [diff] [blame] | 110 | elif not val.get("allow_duplicate_prev_row_id"): |
Nabin Hait | a9ec49e | 2013-07-15 16:33:24 +0530 | [diff] [blame] | 111 | webnotes.msgprint(_("Row ") + cstr(d.idx + 1) + |
| 112 | _(": Duplicate row from same ") + key, raise_exception=1) |
| 113 | elif ref_dn: |
Nabin Hait | 6e68e0e | 2013-07-10 15:33:29 +0530 | [diff] [blame] | 114 | ref_doc.setdefault(key, []) |
| 115 | if ref_dn not in ref_doc[key]: |
| 116 | ref_doc[key].append(ref_dn) |
| 117 | if ref_doc: |
Nabin Hait | 2bd3777 | 2013-07-08 19:00:29 +0530 | [diff] [blame] | 118 | self.compare_values(ref_doc, val["compare_fields"]) |
| 119 | |
| 120 | def compare_values(self, ref_doc, fields, doc=None): |
Nabin Hait | 6e68e0e | 2013-07-10 15:33:29 +0530 | [diff] [blame] | 121 | for ref_doctype, ref_dn_list in ref_doc.items(): |
| 122 | for ref_docname in ref_dn_list: |
| 123 | prevdoc_values = webnotes.conn.get_value(ref_doctype, ref_docname, |
| 124 | [d[0] for d in fields], as_dict=1) |
| 125 | |
| 126 | for field, condition in fields: |
Anand Doshi | 63d844b | 2013-07-10 20:55:15 +0530 | [diff] [blame] | 127 | if prevdoc_values[field] is not None: |
| 128 | self.validate_value(field, condition, prevdoc_values[field], doc) |
Anand Doshi | 2ac0a83 | 2013-07-10 20:49:44 +0530 | [diff] [blame] | 129 | |
| 130 | def get_default_contact(party_field, party_name): |
| 131 | contact = webnotes.conn.sql("""select name from `tabContact` where `%s`=%s |
| 132 | order by is_primary_contact desc, name asc limit 1""" % (party_field, "%s"), |
| 133 | (party_name,)) |
| 134 | |
| 135 | return contact[0][0] if contact else None |
Anand Doshi | 2ac0a83 | 2013-07-10 20:49:44 +0530 | [diff] [blame] | 136 | |
Anand Doshi | 2ac0a83 | 2013-07-10 20:49:44 +0530 | [diff] [blame] | 137 | def map_lead_contact_details(party_name): |
Anand Doshi | 99100a4 | 2013-07-04 17:13:53 +0530 | [diff] [blame] | 138 | out = {} |
| 139 | for fieldname in ["contact_display", "contact_email", "contact_mobile", "contact_phone"]: |
| 140 | out[fieldname] = None |
| 141 | |
| 142 | lead = webnotes.conn.sql("""select * from `tabLead` where name=%s""", party_name, as_dict=True) |
| 143 | if lead: |
| 144 | lead = lead[0] |
| 145 | out.update({ |
| 146 | "contact_display": lead.get("lead_name"), |
| 147 | "contact_email": lead.get("email_id"), |
| 148 | "contact_mobile": lead.get("mobile_no"), |
| 149 | "contact_phone": lead.get("phone"), |
| 150 | }) |
| 151 | |
| 152 | return out |
| 153 | |
Anand Doshi | 2ac0a83 | 2013-07-10 20:49:44 +0530 | [diff] [blame] | 154 | def map_party_contact_details(contact_name=None, party_field=None, party_name=None): |
Anand Doshi | 99100a4 | 2013-07-04 17:13:53 +0530 | [diff] [blame] | 155 | out = {} |
| 156 | for fieldname in ["contact_person", "contact_display", "contact_email", |
| 157 | "contact_mobile", "contact_phone", "contact_designation", "contact_department"]: |
| 158 | out[fieldname] = None |
Nabin Hait | deff578 | 2013-07-24 11:30:35 +0530 | [diff] [blame] | 159 | |
Anand Doshi | ba8ea7d | 2013-07-24 12:08:42 +0530 | [diff] [blame] | 160 | if not contact_name and party_field: |
| 161 | contact_name = get_default_contact(party_field, party_name) |
| 162 | |
Nabin Hait | 02a3d7a | 2013-07-24 16:33:30 +0530 | [diff] [blame] | 163 | if contact_name: |
| 164 | contact = webnotes.conn.sql("""select * from `tabContact` where name=%s""", |
| 165 | contact_name, as_dict=True) |
Anand Doshi | 2ac0a83 | 2013-07-10 20:49:44 +0530 | [diff] [blame] | 166 | |
Nabin Hait | 02a3d7a | 2013-07-24 16:33:30 +0530 | [diff] [blame] | 167 | if contact: |
| 168 | contact = contact[0] |
| 169 | out.update({ |
| 170 | "contact_person": contact.get("name"), |
| 171 | "contact_display": " ".join(filter(None, |
| 172 | [contact.get("first_name"), contact.get("last_name")])), |
| 173 | "contact_email": contact.get("email_id"), |
| 174 | "contact_mobile": contact.get("mobile_no"), |
| 175 | "contact_phone": contact.get("phone"), |
| 176 | "contact_designation": contact.get("designation"), |
| 177 | "contact_department": contact.get("department") |
| 178 | }) |
Anand Doshi | ba8ea7d | 2013-07-24 12:08:42 +0530 | [diff] [blame] | 179 | |
Anand Doshi | 99100a4 | 2013-07-04 17:13:53 +0530 | [diff] [blame] | 180 | return out |
| 181 | |
| 182 | def get_address_territory(address_doc): |
| 183 | territory = None |
| 184 | for fieldname in ("city", "state", "country"): |
| 185 | value = address_doc.fields.get(fieldname) |
| 186 | if value: |
| 187 | territory = webnotes.conn.get_value("Territory", value.strip()) |
| 188 | if territory: |
| 189 | break |
| 190 | |
| 191 | return territory |
Anand Doshi | 1dde46a | 2013-05-15 21:15:57 +0530 | [diff] [blame] | 192 | |
Anand Doshi | 11d3113 | 2013-06-17 12:51:36 +0530 | [diff] [blame] | 193 | def delete_events(ref_type, ref_name): |
| 194 | webnotes.delete_doc("Event", webnotes.conn.sql_list("""select name from `tabEvent` |
Anand Doshi | b5fd788 | 2013-06-17 12:55:05 +0530 | [diff] [blame] | 195 | 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] | 196 | |
Rushabh Mehta | c4f5e4f | 2013-07-26 11:21:45 +0530 | [diff] [blame] | 197 | class UOMMustBeIntegerError(webnotes.ValidationError): pass |
| 198 | |
Rushabh Mehta | 4dca401 | 2013-07-25 17:45:59 +0530 | [diff] [blame] | 199 | def validate_uom_is_integer(doclist, uom_field, qty_fields): |
| 200 | if isinstance(qty_fields, basestring): |
| 201 | qty_fields = [qty_fields] |
| 202 | |
| 203 | integer_uoms = filter(lambda uom: webnotes.conn.get_value("UOM", uom, |
| 204 | "must_be_whole_number") or None, doclist.get_distinct_values(uom_field)) |
| 205 | |
| 206 | if not integer_uoms: |
| 207 | return |
| 208 | |
| 209 | for d in doclist: |
| 210 | if d.fields.get(uom_field) in integer_uoms: |
| 211 | for f in qty_fields: |
| 212 | if d.fields.get(f): |
| 213 | if cint(d.fields[f])!=d.fields[f]: |
| 214 | webnotes.msgprint(_("For UOM") + " '" + d.fields[uom_field] \ |
| 215 | + "': " + _("Quantity cannot be a fraction.") \ |
| 216 | + " " + _("In Row") + ": " + str(d.idx), |
Rushabh Mehta | c4f5e4f | 2013-07-26 11:21:45 +0530 | [diff] [blame] | 217 | raise_exception=UOMMustBeIntegerError) |