blob: 17f072ebb07b033a011a5f2662e9834317ba1151 [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
Nabin Hait0feebc12013-06-03 16:45:38 +05303
Chillar Anand915b3432021-09-02 16:44:59 +05304
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05305import frappe
Rushabh Mehtaea0ff232016-07-07 14:02:26 +05306from frappe import _
Anand Doshi424c0332014-04-21 15:06:56 +05307from frappe.model.document import Document
ruthra kumara0fc6852023-08-14 17:38:44 +05308from frappe.utils import comma_or, flt, get_link_to_form, getdate, now, nowdate
Chillar Anand915b3432021-09-02 16:44:59 +05309
Nabin Hait0feebc12013-06-03 16:45:38 +053010
Ankush Menat494bd9e2022-03-28 18:52:46 +053011class OverAllowanceError(frappe.ValidationError):
12 pass
13
Nabin Hait868766d2019-07-15 18:02:58 +053014
Rushabh Mehta9dd8aab2015-05-18 11:18:55 +053015def validate_status(status, options):
16 if status not in options:
17 frappe.throw(_("Status must be one of {0}").format(comma_or(options)))
18
Ankush Menat494bd9e2022-03-28 18:52:46 +053019
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053020status_map = {
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053021 "Lead": [
Nabin Haitf49bbe12016-12-15 11:51:54 +053022 ["Lost Quotation", "has_lost_quotation"],
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053023 ["Opportunity", "has_opportunity"],
Alec Ruiz-Ramonfcaaa292016-06-09 14:19:51 -040024 ["Quotation", "has_quotation"],
25 ["Converted", "has_customer"],
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053026 ],
27 "Opportunity": [
Valmik Jangla29563272016-03-29 11:13:07 +053028 ["Lost", "eval:self.status=='Lost'"],
Alec Ruiz-Ramonfcaaa292016-06-09 14:19:51 -040029 ["Lost", "has_lost_quotation"],
Nabin Hait6a5cf672017-05-30 15:34:20 +053030 ["Quotation", "has_active_quotation"],
31 ["Converted", "has_ordered_quotation"],
Ankush Menat494bd9e2022-03-28 18:52:46 +053032 ["Closed", "eval:self.status=='Closed'"],
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053033 ],
34 "Quotation": [
Rushabh Mehta4ac30942015-04-13 16:56:03 +053035 ["Draft", None],
Deepesh Gargea057462019-06-26 11:05:51 +053036 ["Open", "eval:self.docstatus==1"],
Anand Doshif78d1ae2014-03-28 13:55:00 +053037 ["Lost", "eval:self.status=='Lost'"],
Deepesh Garg118c7862022-06-11 21:55:59 +053038 ["Partially Ordered", "is_partially_ordered"],
39 ["Ordered", "is_fully_ordered"],
Anand Doshif78d1ae2014-03-28 13:55:00 +053040 ["Cancelled", "eval:self.docstatus==2"],
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053041 ],
42 "Sales Order": [
43 ["Draft", None],
Ankush Menat494bd9e2022-03-28 18:52:46 +053044 [
45 "To Deliver and Bill",
46 "eval:self.per_delivered < 100 and self.per_billed < 100 and self.docstatus == 1",
47 ],
48 [
49 "To Bill",
Gursheen Anandd69b0d72023-10-25 13:59:37 +053050 "eval:(self.per_delivered >= 100 or self.skip_delivery_note) and self.per_billed < 100 and self.docstatus == 1",
Ankush Menat494bd9e2022-03-28 18:52:46 +053051 ],
52 [
53 "To Deliver",
Gursheen Anandd69b0d72023-10-25 13:59:37 +053054 "eval:self.per_delivered < 100 and self.per_billed >= 100 and self.docstatus == 1 and not self.skip_delivery_note",
Ankush Menat494bd9e2022-03-28 18:52:46 +053055 ],
56 [
David Arnold8b21ca22023-10-14 16:34:18 +020057 "To Pay",
58 "eval:self.advance_payment_status == 'Requested' and self.docstatus == 1",
59 ],
60 [
Ankush Menat494bd9e2022-03-28 18:52:46 +053061 "Completed",
Gursheen Anandd69b0d72023-10-25 13:59:37 +053062 "eval:(self.per_delivered >= 100 or self.skip_delivery_note) and self.per_billed >= 100 and self.docstatus == 1",
Ankush Menat494bd9e2022-03-28 18:52:46 +053063 ],
Rushabh Mehtad10ba852015-10-02 12:42:48 +053064 ["Cancelled", "eval:self.docstatus==2"],
Deepesh Garg597ef0a2023-01-20 19:44:06 +053065 ["Closed", "eval:self.status=='Closed' and self.docstatus != 2"],
Mangesh-Khairnar5eb66ae2019-03-01 16:23:27 +053066 ["On Hold", "eval:self.status=='On Hold'"],
Rushabh Mehtad10ba852015-10-02 12:42:48 +053067 ],
68 "Purchase Order": [
69 ["Draft", None],
KanchanChauhand114c8f2019-09-05 15:11:43 +053070 ["To Bill", "eval:self.per_received >= 100 and self.per_billed < 100 and self.docstatus == 1"],
Ankush Menat494bd9e2022-03-28 18:52:46 +053071 [
72 "To Receive",
73 "eval:self.per_received < 100 and self.per_billed == 100 and self.docstatus == 1",
74 ],
75 [
David Arnold8b21ca22023-10-14 16:34:18 +020076 "To Receive and Bill",
77 "eval:self.per_received < 100 and self.per_billed < 100 and self.docstatus == 1",
78 ],
79 [
80 "To Pay",
81 "eval:self.advance_payment_status == 'Initiated' and self.docstatus == 1",
82 ],
83 [
Ankush Menat494bd9e2022-03-28 18:52:46 +053084 "Completed",
85 "eval:self.per_received >= 100 and self.per_billed == 100 and self.docstatus == 1",
86 ],
Saurabh6d64fe32015-10-23 10:40:32 +053087 ["Delivered", "eval:self.status=='Delivered'"],
Anand Doshif78d1ae2014-03-28 13:55:00 +053088 ["Cancelled", "eval:self.docstatus==2"],
Mangesh-Khairnar439546c2019-03-11 16:40:27 +053089 ["On Hold", "eval:self.status=='On Hold'"],
Deepesh Garg597ef0a2023-01-20 19:44:06 +053090 ["Closed", "eval:self.status=='Closed' and self.docstatus != 2"],
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053091 ],
Rushabh Mehta9dd8aab2015-05-18 11:18:55 +053092 "Delivery Note": [
93 ["Draft", None],
Nabin Hait5b13b992015-12-28 13:03:55 +053094 ["To Bill", "eval:self.per_billed < 100 and self.docstatus == 1"],
marinationba37fe72020-07-31 20:01:06 +053095 ["Return Issued", "eval:self.per_returned == 100 and self.docstatus == 1"],
Nabin Hait5b13b992015-12-28 13:03:55 +053096 ["Completed", "eval:self.per_billed == 100 and self.docstatus == 1"],
Rushabh Mehta9dd8aab2015-05-18 11:18:55 +053097 ["Cancelled", "eval:self.docstatus==2"],
Deepesh Garg597ef0a2023-01-20 19:44:06 +053098 ["Closed", "eval:self.status=='Closed' and self.docstatus != 2"],
Rushabh Mehta9dd8aab2015-05-18 11:18:55 +053099 ],
100 "Purchase Receipt": [
101 ["Draft", None],
Deepesh Garga6732202024-01-29 19:56:46 +0530102 ["To Bill", "eval:self.per_billed == 0 and self.docstatus == 1"],
103 ["Partly Billed", "eval:self.per_billed > 0 and self.per_billed < 100 and self.docstatus == 1"],
marination66069df2020-07-31 15:54:05 +0530104 ["Return Issued", "eval:self.per_returned == 100 and self.docstatus == 1"],
Nabin Haitbdab0ee2015-12-30 19:08:11 +0530105 ["Completed", "eval:self.per_billed == 100 and self.docstatus == 1"],
Rushabh Mehta9dd8aab2015-05-18 11:18:55 +0530106 ["Cancelled", "eval:self.docstatus==2"],
Deepesh Garg597ef0a2023-01-20 19:44:06 +0530107 ["Closed", "eval:self.status=='Closed' and self.docstatus != 2"],
tundebabzy99b734b2017-06-07 07:32:07 +0100108 ],
109 "Material Request": [
110 ["Draft", None],
111 ["Stopped", "eval:self.status == 'Stopped'"],
112 ["Cancelled", "eval:self.docstatus == 2"],
113 ["Pending", "eval:self.status != 'Stopped' and self.per_ordered == 0 and self.docstatus == 1"],
Ankush Menat494bd9e2022-03-28 18:52:46 +0530114 [
115 "Ordered",
116 "eval:self.status != 'Stopped' and self.per_ordered == 100 and self.docstatus == 1 and self.material_request_type == 'Purchase'",
117 ],
118 [
119 "Transferred",
120 "eval:self.status != 'Stopped' and self.per_ordered == 100 and self.docstatus == 1 and self.material_request_type == 'Material Transfer'",
121 ],
122 [
123 "Issued",
124 "eval:self.status != 'Stopped' and self.per_ordered == 100 and self.docstatus == 1 and self.material_request_type == 'Material Issue'",
125 ],
126 [
127 "Received",
128 "eval:self.status != 'Stopped' and self.per_received == 100 and self.docstatus == 1 and self.material_request_type == 'Purchase'",
129 ],
130 [
131 "Partially Received",
132 "eval:self.status != 'Stopped' and self.per_received > 0 and self.per_received < 100 and self.docstatus == 1 and self.material_request_type == 'Purchase'",
133 ],
134 [
135 "Partially Ordered",
136 "eval:self.status != 'Stopped' and self.per_ordered < 100 and self.per_ordered > 0 and self.docstatus == 1",
137 ],
138 [
139 "Manufactured",
140 "eval:self.status != 'Stopped' and self.per_ordered == 100 and self.docstatus == 1 and self.material_request_type == 'Manufacture'",
141 ],
Nabin Hait34c551d2019-07-03 10:34:31 +0530142 ],
Saqiba6f98d42020-07-23 18:51:26 +0530143 "POS Opening Entry": [
144 ["Draft", None],
145 ["Open", "eval:self.docstatus == 1 and not self.pos_closing_entry"],
146 ["Closed", "eval:self.docstatus == 1 and self.pos_closing_entry"],
147 ["Cancelled", "eval:self.docstatus == 2"],
Saqib675a8332021-01-28 18:42:43 +0530148 ],
149 "POS Closing Entry": [
150 ["Draft", None],
151 ["Submitted", "eval:self.docstatus == 1"],
152 ["Queued", "eval:self.status == 'Queued'"],
Saqib900a8fb2021-05-06 17:02:47 +0530153 ["Failed", "eval:self.status == 'Failed'"],
Saqib675a8332021-01-28 18:42:43 +0530154 ["Cancelled", "eval:self.docstatus == 2"],
Ganga Manojf2eb8dd2021-05-10 14:02:58 +0530155 ],
156 "Transaction Deletion Record": [
157 ["Draft", None],
158 ["Completed", "eval:self.docstatus == 1"],
Ankush Menat494bd9e2022-03-28 18:52:46 +0530159 ],
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530160}
161
Ankush Menat494bd9e2022-03-28 18:52:46 +0530162
Anand Doshi424c0332014-04-21 15:06:56 +0530163class StatusUpdater(Document):
Nabin Hait0feebc12013-06-03 16:45:38 +0530164 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530165 Updates the status of the calling records
166 Delivery Note: Update Delivered Qty, Update Percent and Validate over delivery
167 Sales Invoice: Update Billed Amt, Update Percent and Validate over billing
168 Installation Note: Update Installed Qty, Update Percent Qty and Validate over installation
Nabin Hait0feebc12013-06-03 16:45:38 +0530169 """
170
171 def update_prevdoc_status(self):
172 self.update_qty()
173 self.validate_qty()
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530174
Saurabh70ed6ed2015-12-08 14:02:53 +0530175 def set_status(self, update=False, status=None, update_modified=True):
Rushabh Mehtacb067aa2014-08-19 16:20:04 +0530176 if self.is_new():
Ankush Menat494bd9e2022-03-28 18:52:46 +0530177 if self.get("amended_from"):
178 self.status = "Draft"
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530179 return
Anand Doshi6b71ef52016-01-06 16:32:06 +0530180
Anand Doshif78d1ae2014-03-28 13:55:00 +0530181 if self.doctype in status_map:
Nabin Haitcabf9c52014-08-21 16:34:38 +0530182 _status = self.status
Rushabh Mehtad48c2392015-11-04 15:20:50 +0530183 if status and update:
184 self.db_set("status", status)
185
Anand Doshif78d1ae2014-03-28 13:55:00 +0530186 sl = status_map[self.doctype][:]
Rushabh Mehta6856d742013-10-03 18:12:36 +0530187 sl.reverse()
188 for s in sl:
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530189 if not s[1]:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530190 self.status = s[0]
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530191 break
Rushabh Mehta6856d742013-10-03 18:12:36 +0530192 elif s[1].startswith("eval:"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530193 if frappe.safe_eval(
194 s[1][5:],
195 None,
196 {
197 "self": self.as_dict(),
198 "getdate": getdate,
199 "nowdate": nowdate,
200 "get_value": frappe.db.get_value,
201 },
202 ):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530203 self.status = s[0]
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530204 break
205 elif getattr(self, s[1])():
Anand Doshif78d1ae2014-03-28 13:55:00 +0530206 self.status = s[0]
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530207 break
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530208
Ankush Menat494bd9e2022-03-28 18:52:46 +0530209 if self.status != _status and self.status not in (
210 "Cancelled",
211 "Partially Ordered",
212 "Ordered",
213 "Issued",
214 "Transferred",
215 ):
Anand Doshi7b34ebe2015-01-07 15:41:32 +0530216 self.add_comment("Label", _(self.status))
Anand Doshi6b71ef52016-01-06 16:32:06 +0530217
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530218 if update:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530219 self.db_set("status", self.status, update_modified=update_modified)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530220
Nabin Hait0feebc12013-06-03 16:45:38 +0530221 def validate_qty(self):
Rushabh Mehtaa9ba5ef2014-12-19 16:20:32 +0530222 """Validates qty at row level"""
Nabin Hait868766d2019-07-15 18:02:58 +0530223 self.item_allowance = {}
224 self.global_qty_allowance = None
225 self.global_amount_allowance = None
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530226
Nabin Hait0feebc12013-06-03 16:45:38 +0530227 for args in self.status_updater:
Anand Doshife13bfe2015-08-25 12:49:40 +0530228 if "target_ref_field" not in args:
229 # if target_ref_field is not specified, the programmer does not want to validate qty / amount
230 continue
231
Nabin Hait0feebc12013-06-03 16:45:38 +0530232 # get unique transactions to update
Rushabh Mehtaf191f852014-04-02 18:09:34 +0530233 for d in self.get_all_children():
Ankush Menat494bd9e2022-03-28 18:52:46 +0530234 if hasattr(d, "qty") and d.qty < 0 and not self.get("is_return"):
rohitwaghchaure12aa4262018-03-12 11:20:30 +0530235 frappe.throw(_("For an item {0}, quantity must be positive number").format(d.item_code))
236
Ankush Menat494bd9e2022-03-28 18:52:46 +0530237 if hasattr(d, "qty") and d.qty > 0 and self.get("is_return"):
rohitwaghchaure70489252018-06-11 12:02:14 +0530238 frappe.throw(_("For an item {0}, quantity must be negative number").format(d.item_code))
239
ruthra kumara0fc6852023-08-14 17:38:44 +0530240 if not frappe.db.get_single_value("Selling Settings", "allow_negative_rates_for_items"):
241 if hasattr(d, "item_code") and hasattr(d, "rate") and flt(d.rate) < 0:
242 frappe.throw(
243 _(
244 "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
245 ).format(
246 frappe.bold(d.item_code),
247 frappe.bold(_("`Allow Negative rates for Items`")),
248 get_link_to_form("Selling Settings", "Selling Settings"),
249 ),
250 )
Devin Slauenwhitededf24b2023-08-02 06:56:55 -0400251
Ankush Menat494bd9e2022-03-28 18:52:46 +0530252 if d.doctype == args["source_dt"] and d.get(args["join_field"]):
253 args["name"] = d.get(args["join_field"])
Nabin Hait0feebc12013-06-03 16:45:38 +0530254
255 # get all qty where qty > target_field
Ankush Menat494bd9e2022-03-28 18:52:46 +0530256 item = frappe.db.sql(
257 """select item_code, `{target_ref_field}`,
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530258 `{target_field}`, parenttype, parent from `tab{target_dt}`
259 where `{target_ref_field}` < `{target_field}`
Akhil Narang3effaf22024-03-27 11:37:26 +0530260 and name=%s and docstatus=1""".format(**args),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530261 args["name"],
262 as_dict=1,
263 )
Nabin Hait0feebc12013-06-03 16:45:38 +0530264 if item:
265 item = item[0]
Ankush Menat494bd9e2022-03-28 18:52:46 +0530266 item["idx"] = d.idx
267 item["target_ref_field"] = args["target_ref_field"].replace("_", " ")
Nabin Hait0feebc12013-06-03 16:45:38 +0530268
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530269 # if not item[args['target_ref_field']]:
270 # msgprint(_("Note: System will not check over-delivery and over-booking for Item {0} as quantity or amount is 0").format(item.item_code))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530271 if args.get("no_allowance"):
272 item["reduce_by"] = item[args["target_field"]] - item[args["target_ref_field"]]
273 if item["reduce_by"] > 0.01:
Marica4e6b3ad2020-01-15 19:22:35 +0530274 self.limits_crossed_error(args, item, "qty")
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530275
Ankush Menat494bd9e2022-03-28 18:52:46 +0530276 elif item[args["target_ref_field"]]:
Nabin Hait868766d2019-07-15 18:02:58 +0530277 self.check_overflow_with_allowance(item, args)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530278
Nabin Hait868766d2019-07-15 18:02:58 +0530279 def check_overflow_with_allowance(self, item, args):
Nabin Hait0feebc12013-06-03 16:45:38 +0530280 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530281 Checks if there is overflow condering a relaxation allowance
Nabin Hait0feebc12013-06-03 16:45:38 +0530282 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530283 qty_or_amount = "qty" if "qty" in args["target_ref_field"] else "amount"
Nabin Hait868766d2019-07-15 18:02:58 +0530284
285 # check if overflow is within allowance
Ankush Menat494bd9e2022-03-28 18:52:46 +0530286 (
287 allowance,
288 self.item_allowance,
289 self.global_qty_allowance,
290 self.global_amount_allowance,
291 ) = get_allowance_for(
292 item["item_code"],
293 self.item_allowance,
294 self.global_qty_allowance,
295 self.global_amount_allowance,
296 qty_or_amount,
297 )
Nabin Hait868766d2019-07-15 18:02:58 +0530298
Ankush Menat494bd9e2022-03-28 18:52:46 +0530299 role_allowed_to_over_deliver_receive = frappe.db.get_single_value(
300 "Stock Settings", "role_allowed_to_over_deliver_receive"
301 )
302 role_allowed_to_over_bill = frappe.db.get_single_value(
303 "Accounts Settings", "role_allowed_to_over_bill"
304 )
Akhil Narang3effaf22024-03-27 11:37:26 +0530305 role = role_allowed_to_over_deliver_receive if qty_or_amount == "qty" else role_allowed_to_over_bill
nabinhait711e8be2014-07-19 17:00:15 +0530306
Ankush Menat494bd9e2022-03-28 18:52:46 +0530307 overflow_percent = (
308 (item[args["target_field"]] - item[args["target_ref_field"]]) / item[args["target_ref_field"]]
309 ) * 100
Deepesh Gargcb718fc2021-04-19 13:25:15 +0530310
Ankush Menat6ec047c2021-10-27 10:30:05 +0530311 if overflow_percent - allowance > 0.01:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530312 item["max_allowed"] = flt(item[args["target_ref_field"]] * (100 + allowance) / 100)
313 item["reduce_by"] = item[args["target_field"]] - item["max_allowed"]
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530314
Ankush Menat6ec047c2021-10-27 10:30:05 +0530315 if role not in frappe.get_roles():
316 self.limits_crossed_error(args, item, qty_or_amount)
317 else:
318 self.warn_about_bypassing_with_role(item, qty_or_amount, role)
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530319
Nabin Hait868766d2019-07-15 18:02:58 +0530320 def limits_crossed_error(self, args, item, qty_or_amount):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530321 """Raise exception for limits crossed"""
Rohit Waghchaureb4a102d2022-09-06 16:22:00 +0530322 if (
323 self.doctype in ["Sales Invoice", "Delivery Note"]
324 and qty_or_amount == "amount"
325 and self.is_internal_customer
326 ):
327 return
328
329 elif (
330 self.doctype in ["Purchase Invoice", "Purchase Receipt"]
331 and qty_or_amount == "amount"
332 and self.is_internal_supplier
333 ):
334 return
335
Nabin Hait868766d2019-07-15 18:02:58 +0530336 if qty_or_amount == "qty":
Ankush Menat494bd9e2022-03-28 18:52:46 +0530337 action_msg = _(
338 'To allow over receipt / delivery, update "Over Receipt/Delivery Allowance" in Stock Settings or the Item.'
339 )
Nabin Hait868766d2019-07-15 18:02:58 +0530340 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530341 action_msg = _(
342 'To allow over billing, update "Over Billing Allowance" in Accounts Settings or the Item.'
343 )
Nabin Hait868766d2019-07-15 18:02:58 +0530344
Ankush Menat494bd9e2022-03-28 18:52:46 +0530345 frappe.throw(
346 _(
347 "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
348 ).format(
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530349 frappe.bold(_(item["target_ref_field"].title())),
350 frappe.bold(item["reduce_by"]),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530351 frappe.bold(_(args.get("target_dt"))),
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530352 frappe.bold(_(self.doctype)),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530353 frappe.bold(item.get("item_code")),
354 )
355 + "<br><br>"
356 + action_msg,
357 OverAllowanceError,
358 title=_("Limit Crossed"),
359 )
Nabin Hait0feebc12013-06-03 16:45:38 +0530360
Ankush Menat6ec047c2021-10-27 10:30:05 +0530361 def warn_about_bypassing_with_role(self, item, qty_or_amount, role):
barredterra36997d92022-12-13 18:59:20 +0100362 if qty_or_amount == "qty":
363 msg = _("Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role.")
364 else:
365 msg = _("Overbilling of {0} {1} ignored for item {2} because you have {3} role.")
Ankush Menat6ec047c2021-10-27 10:30:05 +0530366
barredterra36997d92022-12-13 18:59:20 +0100367 frappe.msgprint(
368 msg.format(
369 _(item["target_ref_field"].title()),
370 frappe.bold(item["reduce_by"]),
371 frappe.bold(item.get("item_code")),
372 role,
373 ),
374 indicator="orange",
375 alert=True,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530376 )
Ankush Menat6ec047c2021-10-27 10:30:05 +0530377
Anand Doshi6b71ef52016-01-06 16:32:06 +0530378 def update_qty(self, update_modified=True):
Anand Doshife13bfe2015-08-25 12:49:40 +0530379 """Updates qty or amount at row level
380
Ankush Menat494bd9e2022-03-28 18:52:46 +0530381 :param update_modified: If true, updates `modified` and `modified_by` for target parent doc
Nabin Hait0feebc12013-06-03 16:45:38 +0530382 """
383 for args in self.status_updater:
384 # condition to include current record (if submit or no if cancel)
Anand Doshif78d1ae2014-03-28 13:55:00 +0530385 if self.docstatus == 1:
Conor74a782d2022-06-17 06:31:27 -0500386 args["cond"] = " or parent='%s'" % self.name.replace('"', '"')
Nabin Hait0feebc12013-06-03 16:45:38 +0530387 else:
Conor74a782d2022-06-17 06:31:27 -0500388 args["cond"] = " and parent!='%s'" % self.name.replace('"', '"')
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530389
Anand Doshi6b71ef52016-01-06 16:32:06 +0530390 self._update_children(args, update_modified)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530391
marination66069df2020-07-31 15:54:05 +0530392 if "percent_join_field" in args or "percent_join_field_parent" in args:
Anand Doshi6b71ef52016-01-06 16:32:06 +0530393 self._update_percent_field_in_targets(args, update_modified)
ankitjavalkarwork9aadb0d2014-10-07 17:38:46 +0530394
Anand Doshi6b71ef52016-01-06 16:32:06 +0530395 def _update_children(self, args, update_modified):
Anand Doshife13bfe2015-08-25 12:49:40 +0530396 """Update quantities or amount in child table"""
397 for d in self.get_all_children():
Ankush Menat494bd9e2022-03-28 18:52:46 +0530398 if d.doctype != args["source_dt"]:
Anand Doshife13bfe2015-08-25 12:49:40 +0530399 continue
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530400
Anand Doshi6b71ef52016-01-06 16:32:06 +0530401 self._update_modified(args, update_modified)
402
Anand Doshife13bfe2015-08-25 12:49:40 +0530403 # updates qty in the child table
Ankush Menat494bd9e2022-03-28 18:52:46 +0530404 args["detail_id"] = d.get(args["join_field"])
ankitjavalkarwork9aadb0d2014-10-07 17:38:46 +0530405
Ankush Menat494bd9e2022-03-28 18:52:46 +0530406 args["second_source_condition"] = ""
407 if (
408 args.get("second_source_dt")
409 and args.get("second_source_field")
410 and args.get("second_join_field")
411 ):
Anand Doshife13bfe2015-08-25 12:49:40 +0530412 if not args.get("second_source_extra_cond"):
413 args["second_source_extra_cond"] = ""
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530414
Ankush Menat494bd9e2022-03-28 18:52:46 +0530415 args["second_source_condition"] = frappe.db.sql(
Akhil Narang3effaf22024-03-27 11:37:26 +0530416 """ select ifnull((select sum({second_source_field})
417 from `tab{second_source_dt}`
418 where `{second_join_field}`='{detail_id}'
419 and (`tab{second_source_dt}`.docstatus=1)
420 {second_source_extra_cond}), 0) """.format(**args)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530421 )[0][0]
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530422
Ankush Menat494bd9e2022-03-28 18:52:46 +0530423 if args["detail_id"]:
424 if not args.get("extra_cond"):
425 args["extra_cond"] = ""
Alcheze52ae4e2018-09-06 18:27:06 +0530426
Ankush Menat494bd9e2022-03-28 18:52:46 +0530427 args["source_dt_value"] = (
428 frappe.db.sql(
429 """
Akhil Narang3effaf22024-03-27 11:37:26 +0530430 (select ifnull(sum({source_field}), 0)
431 from `tab{source_dt}` where `{join_field}`='{detail_id}'
432 and (docstatus=1 {cond}) {extra_cond})
433 """.format(**args)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530434 )[0][0]
435 or 0.0
436 )
Rohit Waghchaure3eea3c62020-11-18 20:17:52 +0530437
Ankush Menat494bd9e2022-03-28 18:52:46 +0530438 if args["second_source_condition"]:
439 args["source_dt_value"] += flt(args["second_source_condition"])
Rohit Waghchaure3eea3c62020-11-18 20:17:52 +0530440
Ankush Menat494bd9e2022-03-28 18:52:46 +0530441 frappe.db.sql(
Akhil Narang3effaf22024-03-27 11:37:26 +0530442 """update `tab{target_dt}`
443 set {target_field} = {source_dt_value} {update_modified}
444 where name='{detail_id}'""".format(**args)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530445 )
Anand Doshi6b71ef52016-01-06 16:32:06 +0530446
447 def _update_percent_field_in_targets(self, args, update_modified=True):
Anand Doshife13bfe2015-08-25 12:49:40 +0530448 """Update percent field in parent transaction"""
Ankush Menat494bd9e2022-03-28 18:52:46 +0530449 if args.get("percent_join_field_parent"):
marination66069df2020-07-31 15:54:05 +0530450 # if reference to target doc where % is to be updated, is
451 # in source doc's parent form, consider percent_join_field_parent
Ankush Menat494bd9e2022-03-28 18:52:46 +0530452 args["name"] = self.get(args["percent_join_field_parent"])
marination66069df2020-07-31 15:54:05 +0530453 self._update_percent_field(args, update_modified)
454 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530455 distinct_transactions = set(
456 d.get(args["percent_join_field"]) for d in self.get_all_children(args["source_dt"])
457 )
Anand Doshife13bfe2015-08-25 12:49:40 +0530458
marination66069df2020-07-31 15:54:05 +0530459 for name in distinct_transactions:
460 if name:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530461 args["name"] = name
marination66069df2020-07-31 15:54:05 +0530462 self._update_percent_field(args, update_modified)
Anand Doshife13bfe2015-08-25 12:49:40 +0530463
Anand Doshi6b71ef52016-01-06 16:32:06 +0530464 def _update_percent_field(self, args, update_modified=True):
Nabin Haitbdab0ee2015-12-30 19:08:11 +0530465 """Update percent field in parent transaction"""
Anand Doshi6b71ef52016-01-06 16:32:06 +0530466
467 self._update_modified(args, update_modified)
Alcheze52ae4e2018-09-06 18:27:06 +0530468
Ankush Menat494bd9e2022-03-28 18:52:46 +0530469 if args.get("target_parent_field"):
470 frappe.db.sql(
Akhil Narang3effaf22024-03-27 11:37:26 +0530471 """update `tab{target_parent_dt}`
472 set {target_parent_field} = round(
Nabin Haitbdab0ee2015-12-30 19:08:11 +0530473 ifnull((select
Akhil Narang3effaf22024-03-27 11:37:26 +0530474 ifnull(sum(case when abs({target_ref_field}) > abs({target_field}) then abs({target_field}) else abs({target_ref_field}) end), 0)
475 / sum(abs({target_ref_field})) * 100
476 from `tab{target_dt}` where parent='{name}' and parenttype='{target_parent_dt}' having sum(abs({target_ref_field})) > 0), 0), 6)
477 {update_modified}
478 where name='{name}'""".format(**args)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530479 )
Anand Doshife13bfe2015-08-25 12:49:40 +0530480
rohitwaghchaure7be942d2016-11-16 11:14:33 +0530481 # update field
Ankush Menat494bd9e2022-03-28 18:52:46 +0530482 if args.get("status_field"):
483 frappe.db.sql(
Akhil Narang3effaf22024-03-27 11:37:26 +0530484 """update `tab{target_parent_dt}`
485 set {status_field} = (case when {target_parent_field}<0.001 then 'Not {keyword}'
486 else case when {target_parent_field}>=99.999999 then 'Fully {keyword}'
487 else 'Partly {keyword}' end end)
488 where name='{name}'""".format(**args)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530489 )
Anand Doshife13bfe2015-08-25 12:49:40 +0530490
rohitwaghchaure7be942d2016-11-16 11:14:33 +0530491 if update_modified:
492 target = frappe.get_doc(args["target_parent_dt"], args["name"])
493 target.set_status(update=True)
494 target.notify_update()
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530495
Anand Doshi6b71ef52016-01-06 16:32:06 +0530496 def _update_modified(self, args, update_modified):
Sagar Vorad932cba2021-08-17 13:17:09 +0530497 if not update_modified:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530498 args["update_modified"] = ""
Sagar Vorad932cba2021-08-17 13:17:09 +0530499 return
500
Akhil Narang3effaf22024-03-27 11:37:26 +0530501 args["update_modified"] = ", modified = {}, modified_by = {}".format(
Ankush Menat494bd9e2022-03-28 18:52:46 +0530502 frappe.db.escape(now()), frappe.db.escape(frappe.session.user)
Sagar Vorad932cba2021-08-17 13:17:09 +0530503 )
Anand Doshi6b71ef52016-01-06 16:32:06 +0530504
Nabin Hait39eb7fa2014-01-15 17:36:18 +0530505 def update_billing_status_for_zero_amount_refdoc(self, ref_dt):
Himanshu Mishra70029b82019-05-29 14:19:35 +0530506 ref_fieldname = frappe.scrub(ref_dt)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530507
Akhil Narang3effaf22024-03-27 11:37:26 +0530508 ref_docs = [item.get(ref_fieldname) for item in (self.get("items") or []) if item.get(ref_fieldname)]
Himanshu Mishra70029b82019-05-29 14:19:35 +0530509 if not ref_docs:
510 return
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530511
Ankush Menat494bd9e2022-03-28 18:52:46 +0530512 zero_amount_refdocs = frappe.db.sql_list(
Akhil Narang3effaf22024-03-27 11:37:26 +0530513 f"""
Himanshu Mishra70029b82019-05-29 14:19:35 +0530514 SELECT
515 name
516 from
517 `tab{ref_dt}`
518 where
519 docstatus = 1
520 and base_net_total = 0
521 and name in %(ref_docs)s
Akhil Narang3effaf22024-03-27 11:37:26 +0530522 """,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530523 {"ref_docs": ref_docs},
524 )
Himanshu Mishra70029b82019-05-29 14:19:35 +0530525
526 if zero_amount_refdocs:
527 self.update_billing_status(zero_amount_refdocs, ref_dt, ref_fieldname)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530528
Rushabh Mehtad48c2392015-11-04 15:20:50 +0530529 def update_billing_status(self, zero_amount_refdoc, ref_dt, ref_fieldname):
Nabin Hait39eb7fa2014-01-15 17:36:18 +0530530 for ref_dn in zero_amount_refdoc:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530531 ref_doc_qty = flt(
532 frappe.db.sql(
Akhil Narang3effaf22024-03-27 11:37:26 +0530533 """select ifnull(sum(qty), 0) from `tab{} Item`
534 where parent={}""".format(ref_dt, "%s"),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530535 (ref_dn),
536 )[0][0]
537 )
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530538
Ankush Menat494bd9e2022-03-28 18:52:46 +0530539 billed_qty = flt(
540 frappe.db.sql(
541 """select ifnull(sum(qty), 0)
Akhil Narang3effaf22024-03-27 11:37:26 +0530542 from `tab{} Item` where {}={} and docstatus=1""".format(self.doctype, ref_fieldname, "%s"),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530543 (ref_dn),
544 )[0][0]
545 )
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530546
Alcheze52ae4e2018-09-06 18:27:06 +0530547 per_billed = (min(ref_doc_qty, billed_qty) / ref_doc_qty) * 100
Rushabh Mehtafc8e5892016-07-20 12:08:47 +0530548
549 ref_doc = frappe.get_doc(ref_dt, ref_dn)
550
551 ref_doc.db_set("per_billed", per_billed)
Deepesh Gargd6796922022-02-06 11:35:23 +0530552
553 # set billling status
Ankush Menat494bd9e2022-03-28 18:52:46 +0530554 if hasattr(ref_doc, "billing_status"):
Deepesh Gargd6796922022-02-06 11:35:23 +0530555 if ref_doc.per_billed < 0.001:
556 ref_doc.db_set("billing_status", "Not Billed")
557 elif ref_doc.per_billed > 99.999999:
558 ref_doc.db_set("billing_status", "Fully Billed")
559 else:
560 ref_doc.db_set("billing_status", "Partly Billed")
561
Rohit Waghchaure770d04e2016-10-05 23:02:15 +0530562 ref_doc.set_status(update=True)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530563
Ankush Menat494bd9e2022-03-28 18:52:46 +0530564
Nabin Hait26202d92024-03-13 18:17:41 +0530565@frappe.request_cache
Ankush Menat494bd9e2022-03-28 18:52:46 +0530566def get_allowance_for(
567 item_code,
568 item_allowance=None,
569 global_qty_allowance=None,
570 global_amount_allowance=None,
571 qty_or_amount="qty",
572):
Nabin Hait7f0406f2014-01-03 17:43:19 +0530573 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530574 Returns the allowance for the item, if not set, returns global allowance
Nabin Hait7f0406f2014-01-03 17:43:19 +0530575 """
Ankush Menat7eac4a22021-04-19 10:33:39 +0530576 if item_allowance is None:
577 item_allowance = {}
Nabin Hait868766d2019-07-15 18:02:58 +0530578 if qty_or_amount == "qty":
579 if item_allowance.get(item_code, frappe._dict()).get("qty"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530580 return (
581 item_allowance[item_code].qty,
582 item_allowance,
583 global_qty_allowance,
584 global_amount_allowance,
585 )
Nabin Hait868766d2019-07-15 18:02:58 +0530586 else:
587 if item_allowance.get(item_code, frappe._dict()).get("amount"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530588 return (
589 item_allowance[item_code].amount,
590 item_allowance,
591 global_qty_allowance,
592 global_amount_allowance,
593 )
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530594
Nabin Hait26202d92024-03-13 18:17:41 +0530595 qty_allowance, over_billing_allowance = frappe.get_cached_value(
Ankush Menat494bd9e2022-03-28 18:52:46 +0530596 "Item", item_code, ["over_delivery_receipt_allowance", "over_billing_allowance"]
597 )
Nabin Hait7f0406f2014-01-03 17:43:19 +0530598
Nabin Hait868766d2019-07-15 18:02:58 +0530599 if qty_or_amount == "qty" and not qty_allowance:
Akhil Narang3effaf22024-03-27 11:37:26 +0530600 if global_qty_allowance is None:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530601 global_qty_allowance = flt(
Nabin Hait26202d92024-03-13 18:17:41 +0530602 frappe.get_cached_value("Stock Settings", None, "over_delivery_receipt_allowance")
Ankush Menat494bd9e2022-03-28 18:52:46 +0530603 )
Nabin Hait868766d2019-07-15 18:02:58 +0530604 qty_allowance = global_qty_allowance
605 elif qty_or_amount == "amount" and not over_billing_allowance:
Akhil Narang3effaf22024-03-27 11:37:26 +0530606 if global_amount_allowance is None:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530607 global_amount_allowance = flt(
Nabin Hait26202d92024-03-13 18:17:41 +0530608 frappe.get_cached_value("Accounts Settings", None, "over_billing_allowance")
Ankush Menat494bd9e2022-03-28 18:52:46 +0530609 )
Nabin Hait868766d2019-07-15 18:02:58 +0530610 over_billing_allowance = global_amount_allowance
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530611
Nabin Hait868766d2019-07-15 18:02:58 +0530612 if qty_or_amount == "qty":
613 allowance = qty_allowance
614 item_allowance.setdefault(item_code, frappe._dict()).setdefault("qty", qty_allowance)
615 else:
616 allowance = over_billing_allowance
617 item_allowance.setdefault(item_code, frappe._dict()).setdefault("amount", over_billing_allowance)
618
619 return allowance, item_allowance, global_qty_allowance, global_amount_allowance