blob: 3c0a10e08600d561bdb951a45b64d0cdffeb47a6 [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
Chillar Anand915b3432021-09-02 16:44:59 +05308from frappe.utils import comma_or, flt, getdate, now, nowdate
9
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'"],
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053038 ["Ordered", "has_sales_order"],
Anand Doshif78d1ae2014-03-28 13:55:00 +053039 ["Cancelled", "eval:self.docstatus==2"],
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053040 ],
41 "Sales Order": [
42 ["Draft", None],
Ankush Menat494bd9e2022-03-28 18:52:46 +053043 [
44 "To Deliver and Bill",
45 "eval:self.per_delivered < 100 and self.per_billed < 100 and self.docstatus == 1",
46 ],
47 [
48 "To Bill",
49 "eval:(self.per_delivered == 100 or self.skip_delivery_note) and self.per_billed < 100 and self.docstatus == 1",
50 ],
51 [
52 "To Deliver",
53 "eval:self.per_delivered < 100 and self.per_billed == 100 and self.docstatus == 1 and not self.skip_delivery_note",
54 ],
55 [
56 "Completed",
57 "eval:(self.per_delivered == 100 or self.skip_delivery_note) and self.per_billed == 100 and self.docstatus == 1",
58 ],
Rushabh Mehtad10ba852015-10-02 12:42:48 +053059 ["Cancelled", "eval:self.docstatus==2"],
Saurabhc6dbe702015-10-19 14:17:52 +053060 ["Closed", "eval:self.status=='Closed'"],
Mangesh-Khairnar5eb66ae2019-03-01 16:23:27 +053061 ["On Hold", "eval:self.status=='On Hold'"],
Rushabh Mehtad10ba852015-10-02 12:42:48 +053062 ],
63 "Purchase Order": [
64 ["Draft", None],
Ankush Menat494bd9e2022-03-28 18:52:46 +053065 [
66 "To Receive and Bill",
67 "eval:self.per_received < 100 and self.per_billed < 100 and self.docstatus == 1",
68 ],
KanchanChauhand114c8f2019-09-05 15:11:43 +053069 ["To Bill", "eval:self.per_received >= 100 and self.per_billed < 100 and self.docstatus == 1"],
Ankush Menat494bd9e2022-03-28 18:52:46 +053070 [
71 "To Receive",
72 "eval:self.per_received < 100 and self.per_billed == 100 and self.docstatus == 1",
73 ],
74 [
75 "Completed",
76 "eval:self.per_received >= 100 and self.per_billed == 100 and self.docstatus == 1",
77 ],
Saurabh6d64fe32015-10-23 10:40:32 +053078 ["Delivered", "eval:self.status=='Delivered'"],
Anand Doshif78d1ae2014-03-28 13:55:00 +053079 ["Cancelled", "eval:self.docstatus==2"],
Mangesh-Khairnar439546c2019-03-11 16:40:27 +053080 ["On Hold", "eval:self.status=='On Hold'"],
Saurabh98b28752015-10-19 15:16:17 +053081 ["Closed", "eval:self.status=='Closed'"],
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053082 ],
Rushabh Mehta9dd8aab2015-05-18 11:18:55 +053083 "Delivery Note": [
84 ["Draft", None],
Nabin Hait5b13b992015-12-28 13:03:55 +053085 ["To Bill", "eval:self.per_billed < 100 and self.docstatus == 1"],
marinationba37fe72020-07-31 20:01:06 +053086 ["Return Issued", "eval:self.per_returned == 100 and self.docstatus == 1"],
Nabin Hait5b13b992015-12-28 13:03:55 +053087 ["Completed", "eval:self.per_billed == 100 and self.docstatus == 1"],
Rushabh Mehta9dd8aab2015-05-18 11:18:55 +053088 ["Cancelled", "eval:self.docstatus==2"],
Saurabha8a91cc2015-11-02 12:57:08 +053089 ["Closed", "eval:self.status=='Closed'"],
Rushabh Mehta9dd8aab2015-05-18 11:18:55 +053090 ],
91 "Purchase Receipt": [
92 ["Draft", None],
Nabin Haitbdab0ee2015-12-30 19:08:11 +053093 ["To Bill", "eval:self.per_billed < 100 and self.docstatus == 1"],
marination66069df2020-07-31 15:54:05 +053094 ["Return Issued", "eval:self.per_returned == 100 and self.docstatus == 1"],
Nabin Haitbdab0ee2015-12-30 19:08:11 +053095 ["Completed", "eval:self.per_billed == 100 and self.docstatus == 1"],
Rushabh Mehta9dd8aab2015-05-18 11:18:55 +053096 ["Cancelled", "eval:self.docstatus==2"],
Saurabha8a91cc2015-11-02 12:57:08 +053097 ["Closed", "eval:self.status=='Closed'"],
tundebabzy99b734b2017-06-07 07:32:07 +010098 ],
99 "Material Request": [
100 ["Draft", None],
101 ["Stopped", "eval:self.status == 'Stopped'"],
102 ["Cancelled", "eval:self.docstatus == 2"],
103 ["Pending", "eval:self.status != 'Stopped' and self.per_ordered == 0 and self.docstatus == 1"],
Ankush Menat494bd9e2022-03-28 18:52:46 +0530104 [
105 "Ordered",
106 "eval:self.status != 'Stopped' and self.per_ordered == 100 and self.docstatus == 1 and self.material_request_type == 'Purchase'",
107 ],
108 [
109 "Transferred",
110 "eval:self.status != 'Stopped' and self.per_ordered == 100 and self.docstatus == 1 and self.material_request_type == 'Material Transfer'",
111 ],
112 [
113 "Issued",
114 "eval:self.status != 'Stopped' and self.per_ordered == 100 and self.docstatus == 1 and self.material_request_type == 'Material Issue'",
115 ],
116 [
117 "Received",
118 "eval:self.status != 'Stopped' and self.per_received == 100 and self.docstatus == 1 and self.material_request_type == 'Purchase'",
119 ],
120 [
121 "Partially Received",
122 "eval:self.status != 'Stopped' and self.per_received > 0 and self.per_received < 100 and self.docstatus == 1 and self.material_request_type == 'Purchase'",
123 ],
124 [
125 "Partially Ordered",
126 "eval:self.status != 'Stopped' and self.per_ordered < 100 and self.per_ordered > 0 and self.docstatus == 1",
127 ],
128 [
129 "Manufactured",
130 "eval:self.status != 'Stopped' and self.per_ordered == 100 and self.docstatus == 1 and self.material_request_type == 'Manufacture'",
131 ],
Nabin Hait34c551d2019-07-03 10:34:31 +0530132 ],
133 "Bank Transaction": [
134 ["Unreconciled", "eval:self.docstatus == 1 and self.unallocated_amount>0"],
Saqib62114b22021-08-25 16:25:51 +0530135 ["Reconciled", "eval:self.docstatus == 1 and self.unallocated_amount<=0"],
Ankush Menat494bd9e2022-03-28 18:52:46 +0530136 ["Cancelled", "eval:self.docstatus == 2"],
Saqiba6f98d42020-07-23 18:51:26 +0530137 ],
138 "POS Opening Entry": [
139 ["Draft", None],
140 ["Open", "eval:self.docstatus == 1 and not self.pos_closing_entry"],
141 ["Closed", "eval:self.docstatus == 1 and self.pos_closing_entry"],
142 ["Cancelled", "eval:self.docstatus == 2"],
Saqib675a8332021-01-28 18:42:43 +0530143 ],
144 "POS Closing Entry": [
145 ["Draft", None],
146 ["Submitted", "eval:self.docstatus == 1"],
147 ["Queued", "eval:self.status == 'Queued'"],
Saqib900a8fb2021-05-06 17:02:47 +0530148 ["Failed", "eval:self.status == 'Failed'"],
Saqib675a8332021-01-28 18:42:43 +0530149 ["Cancelled", "eval:self.docstatus == 2"],
Ganga Manojf2eb8dd2021-05-10 14:02:58 +0530150 ],
151 "Transaction Deletion Record": [
152 ["Draft", None],
153 ["Completed", "eval:self.docstatus == 1"],
Ankush Menat494bd9e2022-03-28 18:52:46 +0530154 ],
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530155}
156
Ankush Menat494bd9e2022-03-28 18:52:46 +0530157
Anand Doshi424c0332014-04-21 15:06:56 +0530158class StatusUpdater(Document):
Nabin Hait0feebc12013-06-03 16:45:38 +0530159 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530160 Updates the status of the calling records
161 Delivery Note: Update Delivered Qty, Update Percent and Validate over delivery
162 Sales Invoice: Update Billed Amt, Update Percent and Validate over billing
163 Installation Note: Update Installed Qty, Update Percent Qty and Validate over installation
Nabin Hait0feebc12013-06-03 16:45:38 +0530164 """
165
166 def update_prevdoc_status(self):
167 self.update_qty()
168 self.validate_qty()
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530169
Saurabh70ed6ed2015-12-08 14:02:53 +0530170 def set_status(self, update=False, status=None, update_modified=True):
Rushabh Mehtacb067aa2014-08-19 16:20:04 +0530171 if self.is_new():
Ankush Menat494bd9e2022-03-28 18:52:46 +0530172 if self.get("amended_from"):
173 self.status = "Draft"
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530174 return
Anand Doshi6b71ef52016-01-06 16:32:06 +0530175
Anand Doshif78d1ae2014-03-28 13:55:00 +0530176 if self.doctype in status_map:
Nabin Haitcabf9c52014-08-21 16:34:38 +0530177 _status = self.status
Rushabh Mehtad48c2392015-11-04 15:20:50 +0530178 if status and update:
179 self.db_set("status", status)
180
Anand Doshif78d1ae2014-03-28 13:55:00 +0530181 sl = status_map[self.doctype][:]
Rushabh Mehta6856d742013-10-03 18:12:36 +0530182 sl.reverse()
183 for s in sl:
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530184 if not s[1]:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530185 self.status = s[0]
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530186 break
Rushabh Mehta6856d742013-10-03 18:12:36 +0530187 elif s[1].startswith("eval:"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530188 if frappe.safe_eval(
189 s[1][5:],
190 None,
191 {
192 "self": self.as_dict(),
193 "getdate": getdate,
194 "nowdate": nowdate,
195 "get_value": frappe.db.get_value,
196 },
197 ):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530198 self.status = s[0]
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530199 break
200 elif getattr(self, s[1])():
Anand Doshif78d1ae2014-03-28 13:55:00 +0530201 self.status = s[0]
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530202 break
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530203
Ankush Menat494bd9e2022-03-28 18:52:46 +0530204 if self.status != _status and self.status not in (
205 "Cancelled",
206 "Partially Ordered",
207 "Ordered",
208 "Issued",
209 "Transferred",
210 ):
Anand Doshi7b34ebe2015-01-07 15:41:32 +0530211 self.add_comment("Label", _(self.status))
Anand Doshi6b71ef52016-01-06 16:32:06 +0530212
Rushabh Mehta800b3aa2013-10-03 17:26:33 +0530213 if update:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530214 self.db_set("status", self.status, update_modified=update_modified)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530215
Nabin Hait0feebc12013-06-03 16:45:38 +0530216 def validate_qty(self):
Rushabh Mehtaa9ba5ef2014-12-19 16:20:32 +0530217 """Validates qty at row level"""
Nabin Hait868766d2019-07-15 18:02:58 +0530218 self.item_allowance = {}
219 self.global_qty_allowance = None
220 self.global_amount_allowance = None
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530221
Nabin Hait0feebc12013-06-03 16:45:38 +0530222 for args in self.status_updater:
Anand Doshife13bfe2015-08-25 12:49:40 +0530223 if "target_ref_field" not in args:
224 # if target_ref_field is not specified, the programmer does not want to validate qty / amount
225 continue
226
Nabin Hait0feebc12013-06-03 16:45:38 +0530227 # get unique transactions to update
Rushabh Mehtaf191f852014-04-02 18:09:34 +0530228 for d in self.get_all_children():
Ankush Menat494bd9e2022-03-28 18:52:46 +0530229 if hasattr(d, "qty") and d.qty < 0 and not self.get("is_return"):
rohitwaghchaure12aa4262018-03-12 11:20:30 +0530230 frappe.throw(_("For an item {0}, quantity must be positive number").format(d.item_code))
231
Ankush Menat494bd9e2022-03-28 18:52:46 +0530232 if hasattr(d, "qty") and d.qty > 0 and self.get("is_return"):
rohitwaghchaure70489252018-06-11 12:02:14 +0530233 frappe.throw(_("For an item {0}, quantity must be negative number").format(d.item_code))
234
Ankush Menat494bd9e2022-03-28 18:52:46 +0530235 if d.doctype == args["source_dt"] and d.get(args["join_field"]):
236 args["name"] = d.get(args["join_field"])
Nabin Hait0feebc12013-06-03 16:45:38 +0530237
238 # get all qty where qty > target_field
Ankush Menat494bd9e2022-03-28 18:52:46 +0530239 item = frappe.db.sql(
240 """select item_code, `{target_ref_field}`,
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530241 `{target_field}`, parenttype, parent from `tab{target_dt}`
242 where `{target_ref_field}` < `{target_field}`
Ankush Menat494bd9e2022-03-28 18:52:46 +0530243 and name=%s and docstatus=1""".format(
244 **args
245 ),
246 args["name"],
247 as_dict=1,
248 )
Nabin Hait0feebc12013-06-03 16:45:38 +0530249 if item:
250 item = item[0]
Ankush Menat494bd9e2022-03-28 18:52:46 +0530251 item["idx"] = d.idx
252 item["target_ref_field"] = args["target_ref_field"].replace("_", " ")
Nabin Hait0feebc12013-06-03 16:45:38 +0530253
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530254 # if not item[args['target_ref_field']]:
255 # 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 +0530256 if args.get("no_allowance"):
257 item["reduce_by"] = item[args["target_field"]] - item[args["target_ref_field"]]
258 if item["reduce_by"] > 0.01:
Marica4e6b3ad2020-01-15 19:22:35 +0530259 self.limits_crossed_error(args, item, "qty")
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530260
Ankush Menat494bd9e2022-03-28 18:52:46 +0530261 elif item[args["target_ref_field"]]:
Nabin Hait868766d2019-07-15 18:02:58 +0530262 self.check_overflow_with_allowance(item, args)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530263
Nabin Hait868766d2019-07-15 18:02:58 +0530264 def check_overflow_with_allowance(self, item, args):
Nabin Hait0feebc12013-06-03 16:45:38 +0530265 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530266 Checks if there is overflow condering a relaxation allowance
Nabin Hait0feebc12013-06-03 16:45:38 +0530267 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530268 qty_or_amount = "qty" if "qty" in args["target_ref_field"] else "amount"
Nabin Hait868766d2019-07-15 18:02:58 +0530269
270 # check if overflow is within allowance
Ankush Menat494bd9e2022-03-28 18:52:46 +0530271 (
272 allowance,
273 self.item_allowance,
274 self.global_qty_allowance,
275 self.global_amount_allowance,
276 ) = get_allowance_for(
277 item["item_code"],
278 self.item_allowance,
279 self.global_qty_allowance,
280 self.global_amount_allowance,
281 qty_or_amount,
282 )
Nabin Hait868766d2019-07-15 18:02:58 +0530283
Ankush Menat494bd9e2022-03-28 18:52:46 +0530284 role_allowed_to_over_deliver_receive = frappe.db.get_single_value(
285 "Stock Settings", "role_allowed_to_over_deliver_receive"
286 )
287 role_allowed_to_over_bill = frappe.db.get_single_value(
288 "Accounts Settings", "role_allowed_to_over_bill"
289 )
290 role = (
291 role_allowed_to_over_deliver_receive if qty_or_amount == "qty" else role_allowed_to_over_bill
292 )
nabinhait711e8be2014-07-19 17:00:15 +0530293
Ankush Menat494bd9e2022-03-28 18:52:46 +0530294 overflow_percent = (
295 (item[args["target_field"]] - item[args["target_ref_field"]]) / item[args["target_ref_field"]]
296 ) * 100
Deepesh Gargcb718fc2021-04-19 13:25:15 +0530297
Ankush Menat6ec047c2021-10-27 10:30:05 +0530298 if overflow_percent - allowance > 0.01:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530299 item["max_allowed"] = flt(item[args["target_ref_field"]] * (100 + allowance) / 100)
300 item["reduce_by"] = item[args["target_field"]] - item["max_allowed"]
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530301
Ankush Menat6ec047c2021-10-27 10:30:05 +0530302 if role not in frappe.get_roles():
303 self.limits_crossed_error(args, item, qty_or_amount)
304 else:
305 self.warn_about_bypassing_with_role(item, qty_or_amount, role)
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530306
Nabin Hait868766d2019-07-15 18:02:58 +0530307 def limits_crossed_error(self, args, item, qty_or_amount):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530308 """Raise exception for limits crossed"""
Nabin Hait868766d2019-07-15 18:02:58 +0530309 if qty_or_amount == "qty":
Ankush Menat494bd9e2022-03-28 18:52:46 +0530310 action_msg = _(
311 'To allow over receipt / delivery, update "Over Receipt/Delivery Allowance" in Stock Settings or the Item.'
312 )
Nabin Hait868766d2019-07-15 18:02:58 +0530313 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530314 action_msg = _(
315 'To allow over billing, update "Over Billing Allowance" in Accounts Settings or the Item.'
316 )
Nabin Hait868766d2019-07-15 18:02:58 +0530317
Ankush Menat494bd9e2022-03-28 18:52:46 +0530318 frappe.throw(
319 _(
320 "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
321 ).format(
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530322 frappe.bold(_(item["target_ref_field"].title())),
323 frappe.bold(item["reduce_by"]),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530324 frappe.bold(_(args.get("target_dt"))),
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530325 frappe.bold(_(self.doctype)),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530326 frappe.bold(item.get("item_code")),
327 )
328 + "<br><br>"
329 + action_msg,
330 OverAllowanceError,
331 title=_("Limit Crossed"),
332 )
Nabin Hait0feebc12013-06-03 16:45:38 +0530333
Ankush Menat6ec047c2021-10-27 10:30:05 +0530334 def warn_about_bypassing_with_role(self, item, qty_or_amount, role):
335 action = _("Over Receipt/Delivery") if qty_or_amount == "qty" else _("Overbilling")
336
Ankush Menat494bd9e2022-03-28 18:52:46 +0530337 msg = _("{} of {} {} ignored for item {} because you have {} role.").format(
338 action,
339 _(item["target_ref_field"].title()),
340 frappe.bold(item["reduce_by"]),
341 frappe.bold(item.get("item_code")),
342 role,
343 )
Ankush Menat6ec047c2021-10-27 10:30:05 +0530344 frappe.msgprint(msg, indicator="orange", alert=True)
345
Anand Doshi6b71ef52016-01-06 16:32:06 +0530346 def update_qty(self, update_modified=True):
Anand Doshife13bfe2015-08-25 12:49:40 +0530347 """Updates qty or amount at row level
348
Ankush Menat494bd9e2022-03-28 18:52:46 +0530349 :param update_modified: If true, updates `modified` and `modified_by` for target parent doc
Nabin Hait0feebc12013-06-03 16:45:38 +0530350 """
351 for args in self.status_updater:
352 # condition to include current record (if submit or no if cancel)
Anand Doshif78d1ae2014-03-28 13:55:00 +0530353 if self.docstatus == 1:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530354 args["cond"] = ' or parent="%s"' % self.name.replace('"', '"')
Nabin Hait0feebc12013-06-03 16:45:38 +0530355 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530356 args["cond"] = ' and parent!="%s"' % self.name.replace('"', '"')
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530357
Anand Doshi6b71ef52016-01-06 16:32:06 +0530358 self._update_children(args, update_modified)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530359
marination66069df2020-07-31 15:54:05 +0530360 if "percent_join_field" in args or "percent_join_field_parent" in args:
Anand Doshi6b71ef52016-01-06 16:32:06 +0530361 self._update_percent_field_in_targets(args, update_modified)
ankitjavalkarwork9aadb0d2014-10-07 17:38:46 +0530362
Anand Doshi6b71ef52016-01-06 16:32:06 +0530363 def _update_children(self, args, update_modified):
Anand Doshife13bfe2015-08-25 12:49:40 +0530364 """Update quantities or amount in child table"""
365 for d in self.get_all_children():
Ankush Menat494bd9e2022-03-28 18:52:46 +0530366 if d.doctype != args["source_dt"]:
Anand Doshife13bfe2015-08-25 12:49:40 +0530367 continue
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530368
Anand Doshi6b71ef52016-01-06 16:32:06 +0530369 self._update_modified(args, update_modified)
370
Anand Doshife13bfe2015-08-25 12:49:40 +0530371 # updates qty in the child table
Ankush Menat494bd9e2022-03-28 18:52:46 +0530372 args["detail_id"] = d.get(args["join_field"])
ankitjavalkarwork9aadb0d2014-10-07 17:38:46 +0530373
Ankush Menat494bd9e2022-03-28 18:52:46 +0530374 args["second_source_condition"] = ""
375 if (
376 args.get("second_source_dt")
377 and args.get("second_source_field")
378 and args.get("second_join_field")
379 ):
Anand Doshife13bfe2015-08-25 12:49:40 +0530380 if not args.get("second_source_extra_cond"):
381 args["second_source_extra_cond"] = ""
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530382
Ankush Menat494bd9e2022-03-28 18:52:46 +0530383 args["second_source_condition"] = frappe.db.sql(
384 """ select ifnull((select sum(%(second_source_field)s)
Anand Doshife13bfe2015-08-25 12:49:40 +0530385 from `tab%(second_source_dt)s`
386 where `%(second_join_field)s`="%(detail_id)s"
Rohit Waghchaure3eea3c62020-11-18 20:17:52 +0530387 and (`tab%(second_source_dt)s`.docstatus=1)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530388 %(second_source_extra_cond)s), 0) """
389 % args
390 )[0][0]
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530391
Ankush Menat494bd9e2022-03-28 18:52:46 +0530392 if args["detail_id"]:
393 if not args.get("extra_cond"):
394 args["extra_cond"] = ""
Alcheze52ae4e2018-09-06 18:27:06 +0530395
Ankush Menat494bd9e2022-03-28 18:52:46 +0530396 args["source_dt_value"] = (
397 frappe.db.sql(
398 """
Anand Doshi6b71ef52016-01-06 16:32:06 +0530399 (select ifnull(sum(%(source_field)s), 0)
400 from `tab%(source_dt)s` where `%(join_field)s`="%(detail_id)s"
401 and (docstatus=1 %(cond)s) %(extra_cond)s)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530402 """
403 % args
404 )[0][0]
405 or 0.0
406 )
Rohit Waghchaure3eea3c62020-11-18 20:17:52 +0530407
Ankush Menat494bd9e2022-03-28 18:52:46 +0530408 if args["second_source_condition"]:
409 args["source_dt_value"] += flt(args["second_source_condition"])
Rohit Waghchaure3eea3c62020-11-18 20:17:52 +0530410
Ankush Menat494bd9e2022-03-28 18:52:46 +0530411 frappe.db.sql(
412 """update `tab%(target_dt)s`
Rohit Waghchaure3eea3c62020-11-18 20:17:52 +0530413 set %(target_field)s = %(source_dt_value)s %(update_modified)s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530414 where name='%(detail_id)s'"""
415 % args
416 )
Anand Doshi6b71ef52016-01-06 16:32:06 +0530417
418 def _update_percent_field_in_targets(self, args, update_modified=True):
Anand Doshife13bfe2015-08-25 12:49:40 +0530419 """Update percent field in parent transaction"""
Ankush Menat494bd9e2022-03-28 18:52:46 +0530420 if args.get("percent_join_field_parent"):
marination66069df2020-07-31 15:54:05 +0530421 # if reference to target doc where % is to be updated, is
422 # in source doc's parent form, consider percent_join_field_parent
Ankush Menat494bd9e2022-03-28 18:52:46 +0530423 args["name"] = self.get(args["percent_join_field_parent"])
marination66069df2020-07-31 15:54:05 +0530424 self._update_percent_field(args, update_modified)
425 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530426 distinct_transactions = set(
427 d.get(args["percent_join_field"]) for d in self.get_all_children(args["source_dt"])
428 )
Anand Doshife13bfe2015-08-25 12:49:40 +0530429
marination66069df2020-07-31 15:54:05 +0530430 for name in distinct_transactions:
431 if name:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530432 args["name"] = name
marination66069df2020-07-31 15:54:05 +0530433 self._update_percent_field(args, update_modified)
Anand Doshife13bfe2015-08-25 12:49:40 +0530434
Anand Doshi6b71ef52016-01-06 16:32:06 +0530435 def _update_percent_field(self, args, update_modified=True):
Nabin Haitbdab0ee2015-12-30 19:08:11 +0530436 """Update percent field in parent transaction"""
Anand Doshi6b71ef52016-01-06 16:32:06 +0530437
438 self._update_modified(args, update_modified)
Alcheze52ae4e2018-09-06 18:27:06 +0530439
Ankush Menat494bd9e2022-03-28 18:52:46 +0530440 if args.get("target_parent_field"):
441 frappe.db.sql(
442 """update `tab%(target_parent_dt)s`
Nabin Haitbdab0ee2015-12-30 19:08:11 +0530443 set %(target_parent_field)s = round(
444 ifnull((select
Rohit Waghchaure5d4d70b2019-07-05 16:59:27 +0530445 ifnull(sum(if(abs(%(target_ref_field)s) > abs(%(target_field)s), abs(%(target_field)s), abs(%(target_ref_field)s))), 0)
RobertSchoutendb33ebb2016-09-12 14:54:46 +0800446 / sum(abs(%(target_ref_field)s)) * 100
rohitwaghchaure85f63a32018-03-27 11:31:44 +0530447 from `tab%(target_dt)s` where parent="%(name)s" having sum(abs(%(target_ref_field)s)) > 0), 0), 6)
Anand Doshi6b71ef52016-01-06 16:32:06 +0530448 %(update_modified)s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530449 where name='%(name)s'"""
450 % args
451 )
Anand Doshife13bfe2015-08-25 12:49:40 +0530452
rohitwaghchaure7be942d2016-11-16 11:14:33 +0530453 # update field
Ankush Menat494bd9e2022-03-28 18:52:46 +0530454 if args.get("status_field"):
455 frappe.db.sql(
456 """update `tab%(target_parent_dt)s`
rohitwaghchaure7be942d2016-11-16 11:14:33 +0530457 set %(status_field)s = if(%(target_parent_field)s<0.001,
rohitwaghchaure85f63a32018-03-27 11:31:44 +0530458 'Not %(keyword)s', if(%(target_parent_field)s>=99.999999,
rohitwaghchaure7be942d2016-11-16 11:14:33 +0530459 'Fully %(keyword)s', 'Partly %(keyword)s'))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530460 where name='%(name)s'"""
461 % args
462 )
Anand Doshife13bfe2015-08-25 12:49:40 +0530463
rohitwaghchaure7be942d2016-11-16 11:14:33 +0530464 if update_modified:
465 target = frappe.get_doc(args["target_parent_dt"], args["name"])
466 target.set_status(update=True)
467 target.notify_update()
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530468
Anand Doshi6b71ef52016-01-06 16:32:06 +0530469 def _update_modified(self, args, update_modified):
Sagar Vorad932cba2021-08-17 13:17:09 +0530470 if not update_modified:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530471 args["update_modified"] = ""
Sagar Vorad932cba2021-08-17 13:17:09 +0530472 return
473
Ankush Menat494bd9e2022-03-28 18:52:46 +0530474 args["update_modified"] = ", modified = {0}, modified_by = {1}".format(
475 frappe.db.escape(now()), frappe.db.escape(frappe.session.user)
Sagar Vorad932cba2021-08-17 13:17:09 +0530476 )
Anand Doshi6b71ef52016-01-06 16:32:06 +0530477
Nabin Hait39eb7fa2014-01-15 17:36:18 +0530478 def update_billing_status_for_zero_amount_refdoc(self, ref_dt):
Himanshu Mishra70029b82019-05-29 14:19:35 +0530479 ref_fieldname = frappe.scrub(ref_dt)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530480
Ankush Menat494bd9e2022-03-28 18:52:46 +0530481 ref_docs = [
482 item.get(ref_fieldname) for item in (self.get("items") or []) if item.get(ref_fieldname)
483 ]
Himanshu Mishra70029b82019-05-29 14:19:35 +0530484 if not ref_docs:
485 return
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530486
Ankush Menat494bd9e2022-03-28 18:52:46 +0530487 zero_amount_refdocs = frappe.db.sql_list(
488 """
Himanshu Mishra70029b82019-05-29 14:19:35 +0530489 SELECT
490 name
491 from
492 `tab{ref_dt}`
493 where
494 docstatus = 1
495 and base_net_total = 0
496 and name in %(ref_docs)s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530497 """.format(
498 ref_dt=ref_dt
499 ),
500 {"ref_docs": ref_docs},
501 )
Himanshu Mishra70029b82019-05-29 14:19:35 +0530502
503 if zero_amount_refdocs:
504 self.update_billing_status(zero_amount_refdocs, ref_dt, ref_fieldname)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530505
Rushabh Mehtad48c2392015-11-04 15:20:50 +0530506 def update_billing_status(self, zero_amount_refdoc, ref_dt, ref_fieldname):
Nabin Hait39eb7fa2014-01-15 17:36:18 +0530507 for ref_dn in zero_amount_refdoc:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530508 ref_doc_qty = flt(
509 frappe.db.sql(
510 """select ifnull(sum(qty), 0) from `tab%s Item`
511 where parent=%s"""
512 % (ref_dt, "%s"),
513 (ref_dn),
514 )[0][0]
515 )
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530516
Ankush Menat494bd9e2022-03-28 18:52:46 +0530517 billed_qty = flt(
518 frappe.db.sql(
519 """select ifnull(sum(qty), 0)
520 from `tab%s Item` where %s=%s and docstatus=1"""
521 % (self.doctype, ref_fieldname, "%s"),
522 (ref_dn),
523 )[0][0]
524 )
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530525
Alcheze52ae4e2018-09-06 18:27:06 +0530526 per_billed = (min(ref_doc_qty, billed_qty) / ref_doc_qty) * 100
Rushabh Mehtafc8e5892016-07-20 12:08:47 +0530527
528 ref_doc = frappe.get_doc(ref_dt, ref_dn)
529
530 ref_doc.db_set("per_billed", per_billed)
Deepesh Gargd6796922022-02-06 11:35:23 +0530531
532 # set billling status
Ankush Menat494bd9e2022-03-28 18:52:46 +0530533 if hasattr(ref_doc, "billing_status"):
Deepesh Gargd6796922022-02-06 11:35:23 +0530534 if ref_doc.per_billed < 0.001:
535 ref_doc.db_set("billing_status", "Not Billed")
536 elif ref_doc.per_billed > 99.999999:
537 ref_doc.db_set("billing_status", "Fully Billed")
538 else:
539 ref_doc.db_set("billing_status", "Partly Billed")
540
Rohit Waghchaure770d04e2016-10-05 23:02:15 +0530541 ref_doc.set_status(update=True)
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530542
Ankush Menat494bd9e2022-03-28 18:52:46 +0530543
544def get_allowance_for(
545 item_code,
546 item_allowance=None,
547 global_qty_allowance=None,
548 global_amount_allowance=None,
549 qty_or_amount="qty",
550):
Nabin Hait7f0406f2014-01-03 17:43:19 +0530551 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530552 Returns the allowance for the item, if not set, returns global allowance
Nabin Hait7f0406f2014-01-03 17:43:19 +0530553 """
Ankush Menat7eac4a22021-04-19 10:33:39 +0530554 if item_allowance is None:
555 item_allowance = {}
Nabin Hait868766d2019-07-15 18:02:58 +0530556 if qty_or_amount == "qty":
557 if item_allowance.get(item_code, frappe._dict()).get("qty"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530558 return (
559 item_allowance[item_code].qty,
560 item_allowance,
561 global_qty_allowance,
562 global_amount_allowance,
563 )
Nabin Hait868766d2019-07-15 18:02:58 +0530564 else:
565 if item_allowance.get(item_code, frappe._dict()).get("amount"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530566 return (
567 item_allowance[item_code].amount,
568 item_allowance,
569 global_qty_allowance,
570 global_amount_allowance,
571 )
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530572
Ankush Menat494bd9e2022-03-28 18:52:46 +0530573 qty_allowance, over_billing_allowance = frappe.db.get_value(
574 "Item", item_code, ["over_delivery_receipt_allowance", "over_billing_allowance"]
575 )
Nabin Hait7f0406f2014-01-03 17:43:19 +0530576
Nabin Hait868766d2019-07-15 18:02:58 +0530577 if qty_or_amount == "qty" and not qty_allowance:
578 if global_qty_allowance == None:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530579 global_qty_allowance = flt(
580 frappe.db.get_single_value("Stock Settings", "over_delivery_receipt_allowance")
581 )
Nabin Hait868766d2019-07-15 18:02:58 +0530582 qty_allowance = global_qty_allowance
583 elif qty_or_amount == "amount" and not over_billing_allowance:
584 if global_amount_allowance == None:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530585 global_amount_allowance = flt(
586 frappe.db.get_single_value("Accounts Settings", "over_billing_allowance")
587 )
Nabin Hait868766d2019-07-15 18:02:58 +0530588 over_billing_allowance = global_amount_allowance
Anand Doshi9fd50bc2014-04-09 19:20:01 +0530589
Nabin Hait868766d2019-07-15 18:02:58 +0530590 if qty_or_amount == "qty":
591 allowance = qty_allowance
592 item_allowance.setdefault(item_code, frappe._dict()).setdefault("qty", qty_allowance)
593 else:
594 allowance = over_billing_allowance
595 item_allowance.setdefault(item_code, frappe._dict()).setdefault("amount", over_billing_allowance)
596
597 return allowance, item_allowance, global_qty_allowance, global_amount_allowance