blob: 73cbcd4094cf13470b24e810be5e2128981dde19 [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
Chillar Anand915b3432021-09-02 16:44:59 +05304
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05305import frappe
Nabin Hait3cf67a42015-07-24 13:26:36 +05306import frappe.share
Nabin Haita1c96de2014-02-21 14:44:35 +05307from frappe import _
Chillar Anand915b3432021-09-02 16:44:59 +05308from frappe.utils import cint, cstr, flt, get_time, now_datetime
Chillar Anand915b3432021-09-02 16:44:59 +05309
Rushabh Mehta1f847992013-12-12 19:12:19 +053010from erpnext.controllers.status_updater import StatusUpdater
Anand Doshi756dca72013-01-15 18:39:21 +053011
Achilles Rasquinha1697a7a2018-02-15 11:39:45 +053012
Ankush Menat494bd9e2022-03-28 18:52:46 +053013class UOMMustBeIntegerError(frappe.ValidationError):
14 pass
15
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
Ankush Menat494bd9e2022-03-28 18:52:46 +053023 if not getattr(self, "set_posting_time", None):
Rushabh Mehta6b537922017-03-14 16:59:11 +053024 now = now_datetime()
Ankush Menat494bd9e2022-03-28 18:52:46 +053025 self.posting_date = now.strftime("%Y-%m-%d")
26 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:
Ankush Menat494bd9e2022-03-28 18:52:46 +053031 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):
Ankush Menat494bd9e2022-03-28 18:52:46 +053034 if (
35 cstr(self.contact_by) != cstr(self._prev.contact_by)
36 or cstr(self.contact_date) != cstr(self._prev.contact_date)
37 or force
38 or (hasattr(self, "ends_on") and cstr(self.ends_on) != cstr(self._prev.ends_on))
39 ):
Rushabh Mehta2c458992014-04-15 14:36:12 +053040
Anand Doshie53a81d2013-06-10 15:15:40 +053041 self.delete_events()
42 self._add_calendar_event(opts)
Rushabh Mehta2c458992014-04-15 14:36:12 +053043
Anand Doshie53a81d2013-06-10 15:15:40 +053044 def delete_events(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +053045 participations = frappe.get_all(
46 "Event Participants",
47 filters={
48 "reference_doctype": self.doctype,
49 "reference_docname": self.name,
50 "parenttype": "Event",
51 },
52 fields=["name", "parent"],
53 )
Charles-Henri Decultot64b64212018-10-11 13:24:26 +020054
55 if participations:
56 for participation in participations:
Ankush Menat494bd9e2022-03-28 18:52:46 +053057 total_participants = frappe.get_all(
58 "Event Participants", filters={"parenttype": "Event", "parent": participation.parent}
59 )
Charles-Henri Decultot64b64212018-10-11 13:24:26 +020060
61 if len(total_participants) <= 1:
62 frappe.db.sql("delete from `tabEvent` where name='%s'" % participation.parent)
63
64 frappe.db.sql("delete from `tabEvent Participants` where name='%s'" % participation.name)
65
Anand Doshie53a81d2013-06-10 15:15:40 +053066 def _add_calendar_event(self, opts):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053067 opts = frappe._dict(opts)
Rushabh Mehta2c458992014-04-15 14:36:12 +053068
Anand Doshif78d1ae2014-03-28 13:55:00 +053069 if self.contact_date:
Ankush Menat494bd9e2022-03-28 18:52:46 +053070 event = frappe.get_doc(
71 {
72 "doctype": "Event",
73 "owner": opts.owner or self.owner,
74 "subject": opts.subject,
75 "description": opts.description,
76 "starts_on": self.contact_date,
77 "ends_on": opts.ends_on,
78 "event_type": "Private",
Charles-Henri Decultot64b64212018-10-11 13:24:26 +020079 }
80 )
81
Ankush Menat494bd9e2022-03-28 18:52:46 +053082 event.append(
83 "event_participants", {"reference_doctype": self.doctype, "reference_docname": self.name}
84 )
85
Pratik Vyas7f9489e2015-02-20 16:22:24 +053086 event.insert(ignore_permissions=True)
Rushabh Mehta2c458992014-04-15 14:36:12 +053087
Anand Doshif78d1ae2014-03-28 13:55:00 +053088 if frappe.db.exists("User", self.contact_by):
Ankush Menat494bd9e2022-03-28 18:52:46 +053089 frappe.share.add("Event", event.name, self.contact_by, flags={"ignore_share_permission": True})
Rushabh Mehta2c458992014-04-15 14:36:12 +053090
Rushabh Mehta4dca4012013-07-25 17:45:59 +053091 def validate_uom_is_integer(self, uom_field, qty_fields):
Rushabh Mehtacfb6ccf2014-04-03 11:46:52 +053092 validate_uom_is_integer(self, uom_field, qty_fields)
Rushabh Mehta2c458992014-04-15 14:36:12 +053093
Nabin Haitdd38a262014-12-26 13:15:21 +053094 def validate_with_previous_doc(self, ref):
Ankush Menat494bd9e2022-03-28 18:52:46 +053095 self.exclude_fields = ["conversion_factor", "uom"] if self.get("is_return") else []
rohitwaghchaure0df95fa2018-03-01 11:31:33 +053096
Nabin Hait2bd37772013-07-08 19:00:29 +053097 for key, val in ref.items():
Nabin Hait6e68e0e2013-07-10 15:33:29 +053098 is_child = val.get("is_child_table")
Nabin Hait2bd37772013-07-08 19:00:29 +053099 ref_doc = {}
Nabin Haita9ec49e2013-07-15 16:33:24 +0530100 item_ref_dn = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530101 for d in self.get_all_children(self.doctype + " Item"):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530102 ref_dn = d.get(val["ref_dn_field"])
Nabin Hait6e68e0e2013-07-10 15:33:29 +0530103 if ref_dn:
104 if is_child:
105 self.compare_values({key: [ref_dn]}, val["compare_fields"], d)
Nabin Haita9ec49e2013-07-15 16:33:24 +0530106 if ref_dn not in item_ref_dn:
107 item_ref_dn.append(ref_dn)
Nabin Hait5e200e42013-07-29 15:29:51 +0530108 elif not val.get("allow_duplicate_prev_row_id"):
Rushabh Mehta2c458992014-04-15 14:36:12 +0530109 frappe.throw(_("Duplicate row {0} with same {1}").format(d.idx, key))
Nabin Haita9ec49e2013-07-15 16:33:24 +0530110 elif ref_dn:
Nabin Hait6e68e0e2013-07-10 15:33:29 +0530111 ref_doc.setdefault(key, [])
112 if ref_dn not in ref_doc[key]:
113 ref_doc[key].append(ref_dn)
114 if ref_doc:
Nabin Hait2bd37772013-07-08 19:00:29 +0530115 self.compare_values(ref_doc, val["compare_fields"])
Rushabh Mehta2c458992014-04-15 14:36:12 +0530116
Nabin Hait2bd37772013-07-08 19:00:29 +0530117 def compare_values(self, ref_doc, fields, doc=None):
Rushabh Mehta611b5132015-03-19 17:15:45 +0530118 for reference_doctype, ref_dn_list in ref_doc.items():
119 for reference_name in ref_dn_list:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530120 prevdoc_values = frappe.db.get_value(
121 reference_doctype, reference_name, [d[0] for d in fields], as_dict=1
122 )
Nabin Hait6e68e0e2013-07-10 15:33:29 +0530123
Rushabh Mehtaafacc3d2015-12-01 15:53:07 +0530124 if not prevdoc_values:
125 frappe.throw(_("Invalid reference {0} {1}").format(reference_doctype, reference_name))
126
Nabin Hait6e68e0e2013-07-10 15:33:29 +0530127 for field, condition in fields:
rohitwaghchaure0df95fa2018-03-01 11:31:33 +0530128 if prevdoc_values[field] is not None and field not in self.exclude_fields:
Anand Doshi63d844b2013-07-10 20:55:15 +0530129 self.validate_value(field, condition, prevdoc_values[field], doc)
Anand Doshi414248b2015-08-26 17:56:40 +0530130
Nabin Hait28a9e352015-07-08 13:10:52 +0530131 def validate_rate_with_reference_doc(self, ref_details):
Marica5f299a02020-07-06 18:26:56 +0530132 buying_doctypes = ["Purchase Order", "Purchase Invoice", "Purchase Receipt"]
Marica5f299a02020-07-06 18:26:56 +0530133
134 if self.doctype in buying_doctypes:
Deepesh Gargb7174202021-04-14 10:43:45 +0530135 action = frappe.db.get_single_value("Buying Settings", "maintain_same_rate_action")
136 settings_doc = "Buying Settings"
Marica5f299a02020-07-06 18:26:56 +0530137 else:
Deepesh Gargb7174202021-04-14 10:43:45 +0530138 action = frappe.db.get_single_value("Selling Settings", "maintain_same_rate_action")
139 settings_doc = "Selling Settings"
Marica5f299a02020-07-06 18:26:56 +0530140
Nabin Hait28a9e352015-07-08 13:10:52 +0530141 for ref_dt, ref_dn_field, ref_link_field in ref_details:
142 for d in self.get("items"):
143 if d.get(ref_link_field):
144 ref_rate = frappe.db.get_value(ref_dt + " Item", d.get(ref_link_field), "rate")
Anand Doshi414248b2015-08-26 17:56:40 +0530145
Ankush Menat494bd9e2022-03-28 18:52:46 +0530146 if abs(flt(d.rate - ref_rate, d.precision("rate"))) >= 0.01:
Deepesh Gargb7174202021-04-14 10:43:45 +0530147 if action == "Stop":
Ankush Menat494bd9e2022-03-28 18:52:46 +0530148 role_allowed_to_override = frappe.db.get_single_value(
149 settings_doc, "role_to_override_stop_action"
150 )
Deepesh Gargb7174202021-04-14 10:43:45 +0530151
152 if role_allowed_to_override not in frappe.get_roles():
Ankush Menat494bd9e2022-03-28 18:52:46 +0530153 frappe.throw(
154 _("Row #{0}: Rate must be same as {1}: {2} ({3} / {4})").format(
155 d.idx, ref_dt, d.get(ref_dn_field), d.rate, ref_rate
156 )
157 )
Deepesh Gargb7174202021-04-14 10:43:45 +0530158 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530159 frappe.msgprint(
160 _("Row #{0}: Rate must be same as {1}: {2} ({3} / {4})").format(
161 d.idx, ref_dt, d.get(ref_dn_field), d.rate, ref_rate
162 ),
163 title=_("Warning"),
164 indicator="orange",
165 )
Rushabh Mehta2c458992014-04-15 14:36:12 +0530166
Saurabh8f24ecb2016-06-16 18:01:58 +0530167 def get_link_filters(self, for_doctype):
Saurabhb6d6b842016-06-27 14:48:26 +0530168 if hasattr(self, "prev_link_mapper") and self.prev_link_mapper.get(for_doctype):
Saurabh8f24ecb2016-06-16 18:01:58 +0530169 fieldname = self.prev_link_mapper[for_doctype]["fieldname"]
Rushabh Mehta6b537922017-03-14 16:59:11 +0530170
Ankush Menat98917802021-06-11 18:40:22 +0530171 values = filter(None, tuple(item.as_dict()[fieldname] for item in self.items))
Saurabh8f24ecb2016-06-16 18:01:58 +0530172
173 if values:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530174 ret = {for_doctype: {"filters": [[for_doctype, "name", "in", values]]}}
Saurabh8f24ecb2016-06-16 18:01:58 +0530175 else:
176 ret = None
177 else:
178 ret = None
Rushabh Mehta6b537922017-03-14 16:59:11 +0530179
Saurabh8f24ecb2016-06-16 18:01:58 +0530180 return ret
Anand Doshif9fc04c2015-02-23 22:14:12 +0530181
Sagar Sharma6485ac42021-12-09 17:04:00 +0530182 def reset_default_field_value(self, default_field: str, child_table: str, child_table_field: str):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530183 """Reset "Set default X" fields on forms to avoid confusion.
Sagar Sharma6485ac42021-12-09 17:04:00 +0530184
Ankush Menat494bd9e2022-03-28 18:52:46 +0530185 example:
186 doc = {
187 "set_from_warehouse": "Warehouse A",
188 "items": [{"from_warehouse": "warehouse B"}, {"from_warehouse": "warehouse A"}],
189 }
190 Since this has dissimilar values in child table, the default field will be erased.
Sagar Sharma6485ac42021-12-09 17:04:00 +0530191
Ankush Menat494bd9e2022-03-28 18:52:46 +0530192 doc.reset_default_field_value("set_from_warehouse", "items", "from_warehouse")
193 """
Sagar Sharma6485ac42021-12-09 17:04:00 +0530194 child_table_values = set()
195
196 for row in self.get(child_table):
197 child_table_values.add(row.get(child_table_field))
198
199 if len(child_table_values) > 1:
200 self.set(default_field, None)
Sagar Sharma6485ac42021-12-09 17:04:00 +0530201
Ankush Menat494bd9e2022-03-28 18:52:46 +0530202
Anand Doshi11d31132013-06-17 12:51:36 +0530203def delete_events(ref_type, ref_name):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530204 events = (
205 frappe.db.sql_list(
206 """ SELECT
Rohit Waghchaure8f62aec2019-01-01 13:54:54 +0530207 distinct `tabEvent`.name
208 from
209 `tabEvent`, `tabEvent Participants`
210 where
211 `tabEvent`.name = `tabEvent Participants`.parent
212 and `tabEvent Participants`.reference_doctype = %s
213 and `tabEvent Participants`.reference_docname = %s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530214 """,
215 (ref_type, ref_name),
216 )
217 or []
218 )
Rohit Waghchaure8f62aec2019-01-01 13:54:54 +0530219
220 if events:
221 frappe.delete_doc("Event", events, for_reload=True)
Rushabh Mehta4dca4012013-07-25 17:45:59 +0530222
Ankush Menat494bd9e2022-03-28 18:52:46 +0530223
Nabin Haitc5fb88c2015-02-09 16:46:46 +0530224def validate_uom_is_integer(doc, uom_field, qty_fields, child_dt=None):
Ankush Menat8fe5feb2021-11-04 19:48:32 +0530225 if isinstance(qty_fields, str):
Rushabh Mehta4dca4012013-07-25 17:45:59 +0530226 qty_fields = [qty_fields]
Rushabh Mehta2c458992014-04-15 14:36:12 +0530227
Ankush Menat98917802021-06-11 18:40:22 +0530228 distinct_uoms = list(set(d.get(uom_field) for d in doc.get_all_children()))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530229 integer_uoms = list(
230 filter(
231 lambda uom: frappe.db.get_value("UOM", uom, "must_be_whole_number", cache=True) or None,
232 distinct_uoms,
233 )
234 )
Rushabh Mehta2c458992014-04-15 14:36:12 +0530235
Rushabh Mehta4dca4012013-07-25 17:45:59 +0530236 if not integer_uoms:
237 return
238
Nabin Haitc5fb88c2015-02-09 16:46:46 +0530239 for d in doc.get_all_children(parenttype=child_dt):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530240 if d.get(uom_field) in integer_uoms:
Rushabh Mehta4dca4012013-07-25 17:45:59 +0530241 for f in qty_fields:
Rushabh Mehtae385b5b2017-04-20 15:21:01 +0530242 qty = d.get(f)
243 if qty:
Rushabh Mehtab7b49f62017-06-19 09:58:48 +0530244 if abs(cint(qty) - flt(qty)) > 0.0000001:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530245 frappe.throw(
246 _(
247 "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}."
248 ).format(
249 qty, d.idx, frappe.bold(_("Must be Whole Number")), frappe.bold(d.get(uom_field))
250 ),
251 UOMMustBeIntegerError,
252 )