blob: 51536834367cad2e5993b8838c8df1df7d4c503a [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302# License: GNU General Public License v3. See license.txt
Rushabh Mehta3966f1d2012-02-23 12:35:32 +05303
Anand Doshi486f9df2012-07-19 13:40:31 +05304from __future__ import unicode_literals
Chillar Anand915b3432021-09-02 16:44:59 +05305
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05306import frappe
Nabin Hait3cf67a42015-07-24 13:26:36 +05307import frappe.share
Nabin Haita1c96de2014-02-21 14:44:35 +05308from frappe import _
Chillar Anand915b3432021-09-02 16:44:59 +05309from frappe.utils import cint, cstr, flt, get_time, now_datetime
10from six import string_types
11
Rushabh Mehta1f847992013-12-12 19:12:19 +053012from erpnext.controllers.status_updater import StatusUpdater
Anand Doshi756dca72013-01-15 18:39:21 +053013
Achilles Rasquinha1697a7a2018-02-15 11:39:45 +053014
Nabin Hait3cf67a42015-07-24 13:26:36 +053015class UOMMustBeIntegerError(frappe.ValidationError): pass
Rushabh Mehtab09d9da2014-01-02 11:47:23 +053016
Nabin Haitb5be7ba2014-01-30 18:47:12 +053017class TransactionBase(StatusUpdater):
Anand Doshiee3d5cc2013-03-13 12:58:54 +053018 def validate_posting_time(self):
Makarand Bauskarb0df6612017-05-16 07:59:58 +053019 # set Edit Posting Date and Time to 1 while data import
Sagar Vora67fe1012017-06-19 12:12:22 +053020 if frappe.flags.in_import and self.posting_date:
Makarand Bauskarb0df6612017-05-16 07:59:58 +053021 self.set_posting_time = 1
22
Rushabh Mehta131866a2017-03-14 21:06:15 +053023 if not getattr(self, 'set_posting_time', None):
Rushabh Mehta6b537922017-03-14 16:59:11 +053024 now = now_datetime()
25 self.posting_date = now.strftime('%Y-%m-%d')
Nabin Hait945f5022017-09-29 15:11:50 +053026 self.posting_time = now.strftime('%H:%M:%S.%f')
Manas Solankic6d56112018-01-18 11:20:24 +053027 elif self.posting_time:
Faris Ansari184491b2018-01-15 14:18:53 +053028 try:
29 get_time(self.posting_time)
30 except ValueError:
31 frappe.throw(_('Invalid Posting Time'))
Rushabh Mehta2c458992014-04-15 14:36:12 +053032
Anand Doshi670199b2013-06-10 15:38:01 +053033 def add_calendar_event(self, opts, force=False):
Nabin Haite06d01e2015-06-29 18:38:27 +053034 if cstr(self.contact_by) != cstr(self._prev.contact_by) or \
Zarrar0702f292018-03-12 18:49:54 +053035 cstr(self.contact_date) != cstr(self._prev.contact_date) or force or \
36 (hasattr(self, "ends_on") and cstr(self.ends_on) != cstr(self._prev.ends_on)):
Rushabh Mehta2c458992014-04-15 14:36:12 +053037
Anand Doshie53a81d2013-06-10 15:15:40 +053038 self.delete_events()
39 self._add_calendar_event(opts)
Rushabh Mehta2c458992014-04-15 14:36:12 +053040
Anand Doshie53a81d2013-06-10 15:15:40 +053041 def delete_events(self):
Charles-Henri Decultot64b64212018-10-11 13:24:26 +020042 participations = frappe.get_all("Event Participants", filters={"reference_doctype": self.doctype, "reference_docname": self.name,
43 "parenttype": "Event"}, fields=["name", "parent"])
44
45 if participations:
46 for participation in participations:
47 total_participants = frappe.get_all("Event Participants", filters={"parenttype": "Event", "parent": participation.parent})
48
49 if len(total_participants) <= 1:
50 frappe.db.sql("delete from `tabEvent` where name='%s'" % participation.parent)
51
52 frappe.db.sql("delete from `tabEvent Participants` where name='%s'" % participation.name)
53
Anand Doshi414248b2015-08-26 17:56:40 +053054
Anand Doshie53a81d2013-06-10 15:15:40 +053055 def _add_calendar_event(self, opts):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053056 opts = frappe._dict(opts)
Rushabh Mehta2c458992014-04-15 14:36:12 +053057
Anand Doshif78d1ae2014-03-28 13:55:00 +053058 if self.contact_date:
Rushabh Mehta6efbc9d2015-02-13 10:16:41 +053059 event = frappe.get_doc({
Anand Doshie53a81d2013-06-10 15:15:40 +053060 "doctype": "Event",
Anand Doshif78d1ae2014-03-28 13:55:00 +053061 "owner": opts.owner or self.owner,
Anand Doshie53a81d2013-06-10 15:15:40 +053062 "subject": opts.subject,
63 "description": opts.description,
Anand Doshi414248b2015-08-26 17:56:40 +053064 "starts_on": self.contact_date,
Zarrar0702f292018-03-12 18:49:54 +053065 "ends_on": opts.ends_on,
Charles-Henri Decultot64b64212018-10-11 13:24:26 +020066 "event_type": "Private"
Rushabh Mehtae88bc8b2014-03-27 17:51:41 +053067 })
Anand Doshif9fc04c2015-02-23 22:14:12 +053068
Charles-Henri Decultot64b64212018-10-11 13:24:26 +020069 event.append('event_participants', {
70 "reference_doctype": self.doctype,
71 "reference_docname": self.name
72 }
73 )
74
Pratik Vyas7f9489e2015-02-20 16:22:24 +053075 event.insert(ignore_permissions=True)
Rushabh Mehta2c458992014-04-15 14:36:12 +053076
Anand Doshif78d1ae2014-03-28 13:55:00 +053077 if frappe.db.exists("User", self.contact_by):
Anand Doshi414248b2015-08-26 17:56:40 +053078 frappe.share.add("Event", event.name, self.contact_by,
Nabin Hait3b0adc52015-05-21 16:51:15 +053079 flags={"ignore_share_permission": True})
Rushabh Mehta2c458992014-04-15 14:36:12 +053080
Rushabh Mehta4dca4012013-07-25 17:45:59 +053081 def validate_uom_is_integer(self, uom_field, qty_fields):
Rushabh Mehtacfb6ccf2014-04-03 11:46:52 +053082 validate_uom_is_integer(self, uom_field, qty_fields)
Rushabh Mehta2c458992014-04-15 14:36:12 +053083
Nabin Haitdd38a262014-12-26 13:15:21 +053084 def validate_with_previous_doc(self, ref):
rohitwaghchaure0df95fa2018-03-01 11:31:33 +053085 self.exclude_fields = ["conversion_factor", "uom"] if self.get('is_return') else []
86
Nabin Hait2bd37772013-07-08 19:00:29 +053087 for key, val in ref.items():
Nabin Hait6e68e0e2013-07-10 15:33:29 +053088 is_child = val.get("is_child_table")
Nabin Hait2bd37772013-07-08 19:00:29 +053089 ref_doc = {}
Nabin Haita9ec49e2013-07-15 16:33:24 +053090 item_ref_dn = []
Nabin Haitdd38a262014-12-26 13:15:21 +053091 for d in self.get_all_children(self.doctype + " Item"):
Anand Doshif78d1ae2014-03-28 13:55:00 +053092 ref_dn = d.get(val["ref_dn_field"])
Nabin Hait6e68e0e2013-07-10 15:33:29 +053093 if ref_dn:
94 if is_child:
95 self.compare_values({key: [ref_dn]}, val["compare_fields"], d)
Nabin Haita9ec49e2013-07-15 16:33:24 +053096 if ref_dn not in item_ref_dn:
97 item_ref_dn.append(ref_dn)
Nabin Hait5e200e42013-07-29 15:29:51 +053098 elif not val.get("allow_duplicate_prev_row_id"):
Rushabh Mehta2c458992014-04-15 14:36:12 +053099 frappe.throw(_("Duplicate row {0} with same {1}").format(d.idx, key))
Nabin Haita9ec49e2013-07-15 16:33:24 +0530100 elif ref_dn:
Nabin Hait6e68e0e2013-07-10 15:33:29 +0530101 ref_doc.setdefault(key, [])
102 if ref_dn not in ref_doc[key]:
103 ref_doc[key].append(ref_dn)
104 if ref_doc:
Nabin Hait2bd37772013-07-08 19:00:29 +0530105 self.compare_values(ref_doc, val["compare_fields"])
Rushabh Mehta2c458992014-04-15 14:36:12 +0530106
Nabin Hait2bd37772013-07-08 19:00:29 +0530107 def compare_values(self, ref_doc, fields, doc=None):
Rushabh Mehta611b5132015-03-19 17:15:45 +0530108 for reference_doctype, ref_dn_list in ref_doc.items():
109 for reference_name in ref_dn_list:
110 prevdoc_values = frappe.db.get_value(reference_doctype, reference_name,
Nabin Hait6e68e0e2013-07-10 15:33:29 +0530111 [d[0] for d in fields], as_dict=1)
112
Rushabh Mehtaafacc3d2015-12-01 15:53:07 +0530113 if not prevdoc_values:
114 frappe.throw(_("Invalid reference {0} {1}").format(reference_doctype, reference_name))
115
Nabin Hait6e68e0e2013-07-10 15:33:29 +0530116 for field, condition in fields:
rohitwaghchaure0df95fa2018-03-01 11:31:33 +0530117 if prevdoc_values[field] is not None and field not in self.exclude_fields:
Anand Doshi63d844b2013-07-10 20:55:15 +0530118 self.validate_value(field, condition, prevdoc_values[field], doc)
Anand Doshi414248b2015-08-26 17:56:40 +0530119
120
Nabin Hait28a9e352015-07-08 13:10:52 +0530121 def validate_rate_with_reference_doc(self, ref_details):
Marica5f299a02020-07-06 18:26:56 +0530122 buying_doctypes = ["Purchase Order", "Purchase Invoice", "Purchase Receipt"]
Marica5f299a02020-07-06 18:26:56 +0530123
124 if self.doctype in buying_doctypes:
Deepesh Gargb7174202021-04-14 10:43:45 +0530125 action = frappe.db.get_single_value("Buying Settings", "maintain_same_rate_action")
126 settings_doc = "Buying Settings"
Marica5f299a02020-07-06 18:26:56 +0530127 else:
Deepesh Gargb7174202021-04-14 10:43:45 +0530128 action = frappe.db.get_single_value("Selling Settings", "maintain_same_rate_action")
129 settings_doc = "Selling Settings"
Marica5f299a02020-07-06 18:26:56 +0530130
Nabin Hait28a9e352015-07-08 13:10:52 +0530131 for ref_dt, ref_dn_field, ref_link_field in ref_details:
132 for d in self.get("items"):
133 if d.get(ref_link_field):
134 ref_rate = frappe.db.get_value(ref_dt + " Item", d.get(ref_link_field), "rate")
Anand Doshi414248b2015-08-26 17:56:40 +0530135
Nabin Hait28a9e352015-07-08 13:10:52 +0530136 if abs(flt(d.rate - ref_rate, d.precision("rate"))) >= .01:
Deepesh Gargb7174202021-04-14 10:43:45 +0530137 if action == "Stop":
138 role_allowed_to_override = frappe.db.get_single_value(settings_doc, 'role_to_override_stop_action')
139
140 if role_allowed_to_override not in frappe.get_roles():
141 frappe.throw(_("Row #{0}: Rate must be same as {1}: {2} ({3} / {4})").format(
142 d.idx, ref_dt, d.get(ref_dn_field), d.rate, ref_rate))
143 else:
144 frappe.msgprint(_("Row #{0}: Rate must be same as {1}: {2} ({3} / {4})").format(
145 d.idx, ref_dt, d.get(ref_dn_field), d.rate, ref_rate), title=_("Warning"), indicator="orange")
146
Rushabh Mehta2c458992014-04-15 14:36:12 +0530147
Saurabh8f24ecb2016-06-16 18:01:58 +0530148 def get_link_filters(self, for_doctype):
Saurabhb6d6b842016-06-27 14:48:26 +0530149 if hasattr(self, "prev_link_mapper") and self.prev_link_mapper.get(for_doctype):
Saurabh8f24ecb2016-06-16 18:01:58 +0530150 fieldname = self.prev_link_mapper[for_doctype]["fieldname"]
Rushabh Mehta6b537922017-03-14 16:59:11 +0530151
Ankush Menat98917802021-06-11 18:40:22 +0530152 values = filter(None, tuple(item.as_dict()[fieldname] for item in self.items))
Saurabh8f24ecb2016-06-16 18:01:58 +0530153
154 if values:
155 ret = {
156 for_doctype : {
157 "filters": [[for_doctype, "name", "in", values]]
158 }
159 }
160 else:
161 ret = None
162 else:
163 ret = None
Rushabh Mehta6b537922017-03-14 16:59:11 +0530164
Saurabh8f24ecb2016-06-16 18:01:58 +0530165 return ret
Anand Doshif9fc04c2015-02-23 22:14:12 +0530166
Anand Doshi11d31132013-06-17 12:51:36 +0530167def delete_events(ref_type, ref_name):
Rohit Waghchaure8f62aec2019-01-01 13:54:54 +0530168 events = frappe.db.sql_list(""" SELECT
169 distinct `tabEvent`.name
170 from
171 `tabEvent`, `tabEvent Participants`
172 where
173 `tabEvent`.name = `tabEvent Participants`.parent
174 and `tabEvent Participants`.reference_doctype = %s
175 and `tabEvent Participants`.reference_docname = %s
176 """, (ref_type, ref_name)) or []
177
178 if events:
179 frappe.delete_doc("Event", events, for_reload=True)
Rushabh Mehta4dca4012013-07-25 17:45:59 +0530180
Nabin Haitc5fb88c2015-02-09 16:46:46 +0530181def validate_uom_is_integer(doc, uom_field, qty_fields, child_dt=None):
Achilles Rasquinha1697a7a2018-02-15 11:39:45 +0530182 if isinstance(qty_fields, string_types):
Rushabh Mehta4dca4012013-07-25 17:45:59 +0530183 qty_fields = [qty_fields]
Rushabh Mehta2c458992014-04-15 14:36:12 +0530184
Ankush Menat98917802021-06-11 18:40:22 +0530185 distinct_uoms = list(set(d.get(uom_field) for d in doc.get_all_children()))
Rohan7c8aaba2020-01-07 11:23:53 +0530186 integer_uoms = list(filter(lambda uom: frappe.db.get_value("UOM", uom,
187 "must_be_whole_number", cache=True) or None, distinct_uoms))
Rushabh Mehta2c458992014-04-15 14:36:12 +0530188
Rushabh Mehta4dca4012013-07-25 17:45:59 +0530189 if not integer_uoms:
190 return
191
Nabin Haitc5fb88c2015-02-09 16:46:46 +0530192 for d in doc.get_all_children(parenttype=child_dt):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530193 if d.get(uom_field) in integer_uoms:
Rushabh Mehta4dca4012013-07-25 17:45:59 +0530194 for f in qty_fields:
Rushabh Mehtae385b5b2017-04-20 15:21:01 +0530195 qty = d.get(f)
196 if qty:
Rushabh Mehtab7b49f62017-06-19 09:58:48 +0530197 if abs(cint(qty) - flt(qty)) > 0.0000001:
Marica9ea1ad42020-04-21 12:52:29 +0530198 frappe.throw(_("Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}.") \
199 .format(qty, d.idx, frappe.bold(_("Must be Whole Number")), frappe.bold(d.get(uom_field))),
200 UOMMustBeIntegerError)