blob: e90a4f62411a3acb98726bd2bcd2960ad2114a9e [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 Haitc3afb252013-03-19 12:01:24 +05303
Rohan Bansal7f8b95e2021-04-14 14:12:03 +05304import json
marinationfac40352020-12-07 21:35:49 +05305from collections import defaultdict
Ankush Menate6ab8df2022-02-06 13:02:34 +05306from typing import List, Tuple
Rohan Bansal7f8b95e2021-04-14 14:12:03 +05307
8import frappe
Rohan Bansal7f8b95e2021-04-14 14:12:03 +05309from frappe import _
10from frappe.utils import cint, cstr, flt, get_link_to_form, getdate
11
12import erpnext
Chillar Anand915b3432021-09-02 16:44:59 +053013from erpnext.accounts.general_ledger import (
14 make_gl_entries,
15 make_reverse_gl_entries,
16 process_gl_map,
17)
Rohit Waghchaure5d5dc562021-06-22 15:23:04 +053018from erpnext.accounts.utils import get_fiscal_year
Rushabh Mehta1f847992013-12-12 19:12:19 +053019from erpnext.controllers.accounts_controller import AccountsController
Nabin Hait6d7b0ce2017-06-15 11:09:27 +053020from erpnext.stock import get_warehouse_account_map
Ankush Menat8f577242022-01-07 11:10:23 +053021from erpnext.stock.stock_ledger import get_items_to_be_repost
Rohan Bansal7f8b95e2021-04-14 14:12:03 +053022
Nabin Haitc3afb252013-03-19 12:01:24 +053023
Ankush Menat494bd9e2022-03-28 18:52:46 +053024class QualityInspectionRequiredError(frappe.ValidationError):
25 pass
26
27
28class QualityInspectionRejectedError(frappe.ValidationError):
29 pass
30
31
32class QualityInspectionNotSubmittedError(frappe.ValidationError):
33 pass
34
Nabin Hait5a9579b2018-12-24 14:54:42 +053035
Nabin Haitc3afb252013-03-19 12:01:24 +053036class StockController(AccountsController):
Nabin Hait8af429d2016-11-16 17:21:59 +053037 def validate(self):
38 super(StockController, self).validate()
Ankush Menat494bd9e2022-03-28 18:52:46 +053039 if not self.get("is_return"):
marination596560c2020-06-11 16:39:03 +053040 self.validate_inspection()
rohitwaghchaure9af557f2019-12-30 13:26:47 +053041 self.validate_serialized_batch()
marinationeecfc4c2021-07-22 13:23:54 +053042 self.clean_serial_nos()
marinationfd04e962020-04-03 15:46:48 +053043 self.validate_customer_provided_item()
Anupam Kumar7e1dcf92021-02-11 20:19:30 +053044 self.set_rate_of_stock_uom()
Deepesh Gargb4be2922021-01-28 13:09:56 +053045 self.validate_internal_transfer()
marinationfac40352020-12-07 21:35:49 +053046 self.validate_putaway_capacity()
Rushabh Mehtaffd80a62017-01-16 17:23:20 +053047
Nabin Haita77b8c92020-12-21 14:45:50 +053048 def make_gl_entries(self, gl_entries=None, from_repost=False):
Anand Doshif78d1ae2014-03-28 13:55:00 +053049 if self.docstatus == 2:
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +053050 make_reverse_gl_entries(voucher_type=self.doctype, voucher_no=self.name)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053051
Ankush Menat494bd9e2022-03-28 18:52:46 +053052 provisional_accounting_for_non_stock_items = cint(
53 frappe.db.get_value(
54 "Company", self.company, "enable_provisional_accounting_for_non_stock_items"
55 )
56 )
Deepesh Garg528c7132022-02-01 14:42:55 +053057
Ankush Menat494bd9e2022-03-28 18:52:46 +053058 if (
59 cint(erpnext.is_perpetual_inventory_enabled(self.company))
60 or provisional_accounting_for_non_stock_items
61 ):
Rohit Waghchaure6b33c9b2019-03-08 11:13:35 +053062 warehouse_account = get_warehouse_account_map(self.company)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053063
Ankush Menat494bd9e2022-03-28 18:52:46 +053064 if self.docstatus == 1:
Nabin Hait9784d272016-12-30 16:21:35 +053065 if not gl_entries:
66 gl_entries = self.get_gl_entries(warehouse_account)
Nabin Haita77b8c92020-12-21 14:45:50 +053067 make_gl_entries(gl_entries, from_repost=from_repost)
Nabin Hait145e5e22013-10-22 23:51:41 +053068
Ankush Menat494bd9e2022-03-28 18:52:46 +053069 elif self.doctype in ["Purchase Receipt", "Purchase Invoice"] and self.docstatus == 1:
Rohit Waghchaure42169722018-05-16 18:16:08 +053070 gl_entries = []
71 gl_entries = self.get_asset_gl_entry(gl_entries)
Nabin Haita77b8c92020-12-21 14:45:50 +053072 make_gl_entries(gl_entries, from_repost=from_repost)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053073
rohitwaghchaure9af557f2019-12-30 13:26:47 +053074 def validate_serialized_batch(self):
75 from erpnext.stock.doctype.serial_no.serial_no import get_serial_nos
Ankush Menat494bd9e2022-03-28 18:52:46 +053076
rohitwaghchaure9af557f2019-12-30 13:26:47 +053077 for d in self.get("items"):
Ankush Menat494bd9e2022-03-28 18:52:46 +053078 if hasattr(d, "serial_no") and hasattr(d, "batch_no") and d.serial_no and d.batch_no:
79 serial_nos = frappe.get_all(
80 "Serial No",
Rohit Waghchaure6b482eb2021-07-23 16:40:45 +053081 fields=["batch_no", "name", "warehouse"],
Ankush Menat494bd9e2022-03-28 18:52:46 +053082 filters={"name": ("in", get_serial_nos(d.serial_no))},
Rohit Waghchaure6b482eb2021-07-23 16:40:45 +053083 )
84
85 for row in serial_nos:
86 if row.warehouse and row.batch_no != d.batch_no:
Ankush Menat494bd9e2022-03-28 18:52:46 +053087 frappe.throw(
88 _("Row #{0}: Serial No {1} does not belong to Batch {2}").format(
89 d.idx, row.name, d.batch_no
90 )
91 )
rohitwaghchaure9af557f2019-12-30 13:26:47 +053092
Saqib Ansari903055b2020-10-20 11:59:06 +053093 if flt(d.qty) > 0.0 and d.get("batch_no") and self.get("posting_date") and self.docstatus < 2:
rohitwaghchaure28a48802020-04-28 13:01:43 +053094 expiry_date = frappe.get_cached_value("Batch", d.get("batch_no"), "expiry_date")
95
96 if expiry_date and getdate(expiry_date) < getdate(self.posting_date):
Ankush Menat494bd9e2022-03-28 18:52:46 +053097 frappe.throw(
98 _("Row #{0}: The batch {1} has already expired.").format(
99 d.idx, get_link_to_form("Batch", d.get("batch_no"))
100 )
101 )
rohitwaghchaure28a48802020-04-28 13:01:43 +0530102
marinationeecfc4c2021-07-22 13:23:54 +0530103 def clean_serial_nos(self):
Ankush Menatb20df372022-01-24 19:19:58 +0530104 from erpnext.stock.doctype.serial_no.serial_no import clean_serial_no_string
105
marinationeecfc4c2021-07-22 13:23:54 +0530106 for row in self.get("items"):
107 if hasattr(row, "serial_no") and row.serial_no:
Ankush Menatb20df372022-01-24 19:19:58 +0530108 # remove extra whitespace and store one serial no on each line
109 row.serial_no = clean_serial_no_string(row.serial_no)
marinationeecfc4c2021-07-22 13:23:54 +0530110
Ankush Menat494bd9e2022-03-28 18:52:46 +0530111 for row in self.get("packed_items") or []:
Ankush Menate177c522022-01-24 19:28:26 +0530112 if hasattr(row, "serial_no") and row.serial_no:
113 # remove extra whitespace and store one serial no on each line
114 row.serial_no = clean_serial_no_string(row.serial_no)
115
Ankush Menat494bd9e2022-03-28 18:52:46 +0530116 def get_gl_entries(
117 self, warehouse_account=None, default_expense_account=None, default_cost_center=None
118 ):
Nabin Haitadeb9762014-10-06 11:53:52 +0530119
Nabin Hait142007a2013-09-17 15:15:16 +0530120 if not warehouse_account:
Rohit Waghchaure6b33c9b2019-03-08 11:13:35 +0530121 warehouse_account = get_warehouse_account_map(self.company)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530122
Anand Doshide1a97d2014-04-17 11:37:46 +0530123 sle_map = self.get_stock_ledger_details()
124 voucher_details = self.get_voucher_details(default_expense_account, default_cost_center, sle_map)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530125
Nabin Hait2e296fa2013-08-28 18:53:11 +0530126 gl_list = []
Nabin Hait7a75e102013-09-17 10:21:20 +0530127 warehouse_with_no_account = []
Nabin Hait19f8fa52021-02-22 22:27:22 +0530128 precision = self.get_debit_field_precision()
Nabin Hait8c61f342016-12-15 13:46:03 +0530129 for item_row in voucher_details:
Deepesh Gargb4be2922021-01-28 13:09:56 +0530130
Nabin Hait8c61f342016-12-15 13:46:03 +0530131 sle_list = sle_map.get(item_row.name)
Nabin Hait2e296fa2013-08-28 18:53:11 +0530132 if sle_list:
133 for sle in sle_list:
134 if warehouse_account.get(sle.warehouse):
Deepesh Gargf17ea2c2020-12-11 21:30:39 +0530135 # from warehouse account
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530136
Nabin Hait8c61f342016-12-15 13:46:03 +0530137 self.check_expense_account(item_row)
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530138
Deepesh Gargf17ea2c2020-12-11 21:30:39 +0530139 # expense account/ target_warehouse / source_warehouse
Ankush Menat494bd9e2022-03-28 18:52:46 +0530140 if item_row.get("target_warehouse"):
141 warehouse = item_row.get("target_warehouse")
Deepesh Gargf17ea2c2020-12-11 21:30:39 +0530142 expense_account = warehouse_account[warehouse]["account"]
143 else:
144 expense_account = item_row.expense_account
145
Ankush Menat494bd9e2022-03-28 18:52:46 +0530146 gl_list.append(
147 self.get_gl_dict(
148 {
149 "account": warehouse_account[sle.warehouse]["account"],
150 "against": expense_account,
151 "cost_center": item_row.cost_center,
152 "project": item_row.project or self.get("project"),
153 "remarks": self.get("remarks") or _("Accounting Entry for Stock"),
154 "debit": flt(sle.stock_value_difference, precision),
155 "is_opening": item_row.get("is_opening") or self.get("is_opening") or "No",
156 },
157 warehouse_account[sle.warehouse]["account_currency"],
158 item=item_row,
159 )
160 )
Nabin Hait27994c22013-08-26 16:53:30 +0530161
Ankush Menat494bd9e2022-03-28 18:52:46 +0530162 gl_list.append(
163 self.get_gl_dict(
164 {
165 "account": expense_account,
166 "against": warehouse_account[sle.warehouse]["account"],
167 "cost_center": item_row.cost_center,
168 "remarks": self.get("remarks") or _("Accounting Entry for Stock"),
Ankush Menat65b21ee2022-06-07 14:49:24 +0530169 "debit": -1 * flt(sle.stock_value_difference, precision),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530170 "project": item_row.get("project") or self.get("project"),
171 "is_opening": item_row.get("is_opening") or self.get("is_opening") or "No",
172 },
173 item=item_row,
174 )
175 )
Nabin Hait7a75e102013-09-17 10:21:20 +0530176 elif sle.warehouse not in warehouse_with_no_account:
177 warehouse_with_no_account.append(sle.warehouse)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530178
179 if warehouse_with_no_account:
Nabin Haitd6625022016-10-24 18:17:57 +0530180 for wh in warehouse_with_no_account:
181 if frappe.db.get_value("Warehouse", wh, "company"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530182 frappe.throw(
183 _(
184 "Warehouse {0} is not linked to any account, please mention the account in the warehouse record or set default inventory account in company {1}."
185 ).format(wh, self.company)
186 )
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530187
Nabin Hait19f8fa52021-02-22 22:27:22 +0530188 return process_gl_map(gl_list, precision=precision)
189
190 def get_debit_field_precision(self):
191 if not frappe.flags.debit_field_precision:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530192 frappe.flags.debit_field_precision = frappe.get_precision(
193 "GL Entry", "debit_in_account_currency"
194 )
Nabin Hait19f8fa52021-02-22 22:27:22 +0530195
196 return frappe.flags.debit_field_precision
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530197
Anand Doshide1a97d2014-04-17 11:37:46 +0530198 def get_voucher_details(self, default_expense_account, default_cost_center, sle_map):
199 if self.doctype == "Stock Reconciliation":
Nabin Hait3f119ec2019-05-16 17:28:39 +0530200 reconciliation_purpose = frappe.db.get_value(self.doctype, self.name, "purpose")
201 is_opening = "Yes" if reconciliation_purpose == "Opening Stock" else "No"
202 details = []
Nabin Hait34c551d2019-07-03 10:34:31 +0530203 for voucher_detail_no in sle_map:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530204 details.append(
205 frappe._dict(
206 {
207 "name": voucher_detail_no,
208 "expense_account": default_expense_account,
209 "cost_center": default_cost_center,
210 "is_opening": is_opening,
211 }
212 )
213 )
Nabin Hait3f119ec2019-05-16 17:28:39 +0530214 return details
Anand Doshide1a97d2014-04-17 11:37:46 +0530215 else:
Nabin Haitdd38a262014-12-26 13:15:21 +0530216 details = self.get("items")
Anand Doshi094610d2014-04-16 19:56:53 +0530217
Anand Doshide1a97d2014-04-17 11:37:46 +0530218 if default_expense_account or default_cost_center:
219 for d in details:
220 if default_expense_account and not d.get("expense_account"):
221 d.expense_account = default_expense_account
222 if default_cost_center and not d.get("cost_center"):
223 d.cost_center = default_cost_center
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530224
Anand Doshide1a97d2014-04-17 11:37:46 +0530225 return details
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530226
Ankush Menate6ab8df2022-02-06 13:02:34 +0530227 def get_items_and_warehouses(self) -> Tuple[List[str], List[str]]:
228 """Get list of items and warehouses affected by a transaction"""
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530229
Ankush Menate6ab8df2022-02-06 13:02:34 +0530230 if not (hasattr(self, "items") or hasattr(self, "packed_items")):
231 return [], []
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530232
Ankush Menate6ab8df2022-02-06 13:02:34 +0530233 item_rows = (self.get("items") or []) + (self.get("packed_items") or [])
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530234
Ankush Menate6ab8df2022-02-06 13:02:34 +0530235 items = {d.item_code for d in item_rows if d.item_code}
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530236
Ankush Menate6ab8df2022-02-06 13:02:34 +0530237 warehouses = set()
238 for d in item_rows:
239 if d.get("warehouse"):
240 warehouses.add(d.warehouse)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530241
Ankush Menate6ab8df2022-02-06 13:02:34 +0530242 if self.doctype == "Stock Entry":
243 if d.get("s_warehouse"):
244 warehouses.add(d.s_warehouse)
245 if d.get("t_warehouse"):
246 warehouses.add(d.t_warehouse)
247
248 return list(items), list(warehouses)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530249
Nabin Hait2e296fa2013-08-28 18:53:11 +0530250 def get_stock_ledger_details(self):
251 stock_ledger = {}
Ankush Menat494bd9e2022-03-28 18:52:46 +0530252 stock_ledger_entries = frappe.db.sql(
253 """
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530254 select
Nabin Hait0a6aaf42017-02-07 01:23:26 +0530255 name, warehouse, stock_value_difference, valuation_rate,
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530256 voucher_detail_no, item_code, posting_date, posting_time,
Nabin Hait0a6aaf42017-02-07 01:23:26 +0530257 actual_qty, qty_after_transaction
Nabin Haitea8fab52017-02-06 17:13:39 +0530258 from
259 `tabStock Ledger Entry`
260 where
Ankush Menat0ca60af2022-02-08 10:24:19 +0530261 voucher_type=%s and voucher_no=%s and is_cancelled = 0
Ankush Menat494bd9e2022-03-28 18:52:46 +0530262 """,
263 (self.doctype, self.name),
264 as_dict=True,
265 )
Nabin Hait0a6aaf42017-02-07 01:23:26 +0530266
Nabin Haitea8fab52017-02-06 17:13:39 +0530267 for sle in stock_ledger_entries:
Deepesh Gargb4be2922021-01-28 13:09:56 +0530268 stock_ledger.setdefault(sle.voucher_detail_no, []).append(sle)
Nabin Hait2e296fa2013-08-28 18:53:11 +0530269 return stock_ledger
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530270
Rushabh Mehta551406a2017-04-21 12:40:19 +0530271 def make_batches(self, warehouse_field):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530272 """Create batches if required. Called before submit"""
Rushabh Mehtae385b5b2017-04-20 15:21:01 +0530273 for d in self.items:
Rushabh Mehta551406a2017-04-21 12:40:19 +0530274 if d.get(warehouse_field) and not d.batch_no:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530275 has_batch_no, create_new_batch = frappe.db.get_value(
276 "Item", d.item_code, ["has_batch_no", "create_new_batch"]
277 )
Rushabh Mehta551406a2017-04-21 12:40:19 +0530278 if has_batch_no and create_new_batch:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530279 d.batch_no = (
280 frappe.get_doc(
281 dict(
282 doctype="Batch",
283 item=d.item_code,
284 supplier=getattr(self, "supplier", None),
285 reference_doctype=self.doctype,
286 reference_name=self.name,
287 )
288 )
289 .insert()
290 .name
291 )
Rushabh Mehtae385b5b2017-04-20 15:21:01 +0530292
Nabin Hait27994c22013-08-26 16:53:30 +0530293 def check_expense_account(self, item):
Rushabh Mehta052fe822014-04-16 19:20:11 +0530294 if not item.get("expense_account"):
Rohit Waghchaureceab6922020-11-18 17:57:35 +0530295 msg = _("Please set an Expense Account in the Items table")
Ankush Menat494bd9e2022-03-28 18:52:46 +0530296 frappe.throw(
297 _("Row #{0}: Expense Account not set for the Item {1}. {2}").format(
298 item.idx, frappe.bold(item.item_code), msg
299 ),
300 title=_("Expense Account Missing"),
301 )
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530302
Anand Doshi496123a2014-06-19 19:25:19 +0530303 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530304 is_expense_account = (
305 frappe.get_cached_value("Account", item.get("expense_account"), "report_type")
306 == "Profit and Loss"
307 )
308 if (
309 self.doctype
310 not in ("Purchase Receipt", "Purchase Invoice", "Stock Reconciliation", "Stock Entry")
311 and not is_expense_account
312 ):
313 frappe.throw(
314 _("Expense / Difference account ({0}) must be a 'Profit or Loss' account").format(
315 item.get("expense_account")
316 )
317 )
Anand Doshi496123a2014-06-19 19:25:19 +0530318 if is_expense_account and not item.get("cost_center"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530319 frappe.throw(
320 _("{0} {1}: Cost Center is mandatory for Item {2}").format(
321 _(self.doctype), self.name, item.get("item_code")
322 )
323 )
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530324
Rohit Waghchaure8996b7d2020-01-23 17:36:52 +0530325 def delete_auto_created_batches(self):
326 for d in self.items:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530327 if not d.batch_no:
328 continue
Rohit Waghchaure8996b7d2020-01-23 17:36:52 +0530329
Ankush Menat494bd9e2022-03-28 18:52:46 +0530330 frappe.db.set_value(
331 "Serial No", {"batch_no": d.batch_no, "status": "Inactive"}, "batch_no", None
332 )
Saqibe9ac3e02020-03-02 15:02:58 +0530333
Rohit Waghchaure8996b7d2020-01-23 17:36:52 +0530334 d.batch_no = None
335 d.db_set("batch_no", None)
336
Ankush Menat494bd9e2022-03-28 18:52:46 +0530337 for data in frappe.get_all(
338 "Batch", {"reference_name": self.name, "reference_doctype": self.doctype}
339 ):
Rohit Waghchaure8996b7d2020-01-23 17:36:52 +0530340 frappe.delete_doc("Batch", data.name)
Rohit Waghchaure4f4dbf12020-01-23 12:42:42 +0530341
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530342 def get_sl_entries(self, d, args):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530343 sl_dict = frappe._dict(
344 {
345 "item_code": d.get("item_code", None),
346 "warehouse": d.get("warehouse", None),
347 "posting_date": self.posting_date,
348 "posting_time": self.posting_time,
349 "fiscal_year": get_fiscal_year(self.posting_date, company=self.company)[0],
350 "voucher_type": self.doctype,
351 "voucher_no": self.name,
352 "voucher_detail_no": d.name,
353 "actual_qty": (self.docstatus == 1 and 1 or -1) * flt(d.get("stock_qty")),
354 "stock_uom": frappe.db.get_value(
355 "Item", args.get("item_code") or d.get("item_code"), "stock_uom"
356 ),
357 "incoming_rate": 0,
358 "company": self.company,
359 "batch_no": cstr(d.get("batch_no")).strip(),
360 "serial_no": d.get("serial_no"),
361 "project": d.get("project") or self.get("project"),
362 "is_cancelled": 1 if self.docstatus == 2 else 0,
363 }
364 )
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530365
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530366 sl_dict.update(args)
367 return sl_dict
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530368
Ankush Menat494bd9e2022-03-28 18:52:46 +0530369 def make_sl_entries(self, sl_entries, allow_negative_stock=False, via_landed_cost_voucher=False):
Rushabh Mehta1f847992013-12-12 19:12:19 +0530370 from erpnext.stock.stock_ledger import make_sl_entries
Ankush Menat494bd9e2022-03-28 18:52:46 +0530371
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +0530372 make_sl_entries(sl_entries, allow_negative_stock, via_landed_cost_voucher)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530373
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +0530374 def make_gl_entries_on_cancel(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530375 if frappe.db.sql(
376 """select name from `tabGL Entry` where voucher_type=%s
377 and voucher_no=%s""",
378 (self.doctype, self.name),
379 ):
380 self.make_gl_entries()
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530381
Anand Doshia740f752014-06-25 13:31:02 +0530382 def get_serialized_items(self):
383 serialized_items = []
Ankush Menata9c84f72021-06-11 16:00:48 +0530384 item_codes = list(set(d.item_code for d in self.get("items")))
Anand Doshia740f752014-06-25 13:31:02 +0530385 if item_codes:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530386 serialized_items = frappe.db.sql_list(
387 """select name from `tabItem`
388 where has_serial_no=1 and name in ({})""".format(
389 ", ".join(["%s"] * len(item_codes))
390 ),
391 tuple(item_codes),
392 )
Anand Doshia740f752014-06-25 13:31:02 +0530393
394 return serialized_items
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530395
Saurabh2e292062015-11-18 17:03:33 +0530396 def validate_warehouse(self):
Rohan Bansal7f8b95e2021-04-14 14:12:03 +0530397 from erpnext.stock.utils import validate_disabled_warehouse, validate_warehouse_company
Saurabh2e292062015-11-18 17:03:33 +0530398
Ankush Menat494bd9e2022-03-28 18:52:46 +0530399 warehouses = list(set(d.warehouse for d in self.get("items") if getattr(d, "warehouse", None)))
Saurabh2e292062015-11-18 17:03:33 +0530400
Ankush Menat494bd9e2022-03-28 18:52:46 +0530401 target_warehouses = list(
402 set([d.target_warehouse for d in self.get("items") if getattr(d, "target_warehouse", None)])
403 )
Deepesh Garg15ff6a52020-02-18 12:28:41 +0530404
405 warehouses.extend(target_warehouses)
406
Ankush Menat494bd9e2022-03-28 18:52:46 +0530407 from_warehouse = list(
408 set([d.from_warehouse for d in self.get("items") if getattr(d, "from_warehouse", None)])
409 )
Deepesh Garg15ff6a52020-02-18 12:28:41 +0530410
411 warehouses.extend(from_warehouse)
412
Saurabh2e292062015-11-18 17:03:33 +0530413 for w in warehouses:
Jannat Patel30c88732021-02-11 11:46:48 +0530414 validate_disabled_warehouse(w)
Saurabh2e292062015-11-18 17:03:33 +0530415 validate_warehouse_company(w, self.company)
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530416
Anand Doshi6b71ef52016-01-06 16:32:06 +0530417 def update_billing_percentage(self, update_modified=True):
marinationd6596a12020-11-02 15:07:48 +0530418 target_ref_field = "amount"
419 if self.doctype == "Delivery Note":
420 target_ref_field = "amount - (returned_qty * rate)"
421
Ankush Menat494bd9e2022-03-28 18:52:46 +0530422 self._update_percent_field(
423 {
424 "target_dt": self.doctype + " Item",
425 "target_parent_dt": self.doctype,
426 "target_parent_field": "per_billed",
427 "target_ref_field": target_ref_field,
428 "target_field": "billed_amt",
429 "name": self.name,
430 },
431 update_modified,
432 )
Anand Doshia740f752014-06-25 13:31:02 +0530433
Nabin Hait8af429d2016-11-16 17:21:59 +0530434 def validate_inspection(self):
marination9ac9a4e2021-06-21 16:18:35 +0530435 """Checks if quality inspection is set/ is valid for Items that require inspection."""
436 inspection_fieldname_map = {
437 "Purchase Receipt": "inspection_required_before_purchase",
438 "Purchase Invoice": "inspection_required_before_purchase",
439 "Sales Invoice": "inspection_required_before_delivery",
Ankush Menat494bd9e2022-03-28 18:52:46 +0530440 "Delivery Note": "inspection_required_before_delivery",
marination9ac9a4e2021-06-21 16:18:35 +0530441 }
442 inspection_required_fieldname = inspection_fieldname_map.get(self.doctype)
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530443
marination9ac9a4e2021-06-21 16:18:35 +0530444 # return if inspection is not required on document level
Ankush Menat494bd9e2022-03-28 18:52:46 +0530445 if (
446 (not inspection_required_fieldname and self.doctype != "Stock Entry")
447 or (self.doctype == "Stock Entry" and not self.inspection_required)
448 or (self.doctype in ["Sales Invoice", "Purchase Invoice"] and not self.update_stock)
449 ):
450 return
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530451
Ankush Menat494bd9e2022-03-28 18:52:46 +0530452 for row in self.get("items"):
marination9ac9a4e2021-06-21 16:18:35 +0530453 qi_required = False
Ankush Menat494bd9e2022-03-28 18:52:46 +0530454 if inspection_required_fieldname and frappe.db.get_value(
455 "Item", row.item_code, inspection_required_fieldname
456 ):
marination9ac9a4e2021-06-21 16:18:35 +0530457 qi_required = True
458 elif self.doctype == "Stock Entry" and row.t_warehouse:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530459 qi_required = True # inward stock needs inspection
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530460
Ankush Menat494bd9e2022-03-28 18:52:46 +0530461 if qi_required: # validate row only if inspection is required on item level
marination9ac9a4e2021-06-21 16:18:35 +0530462 self.validate_qi_presence(row)
463 if self.docstatus == 1:
464 self.validate_qi_submission(row)
465 self.validate_qi_rejection(row)
466
467 def validate_qi_presence(self, row):
468 """Check if QI is present on row level. Warn on save and stop on submit if missing."""
469 if not row.quality_inspection:
marination654e9d82021-06-21 16:51:12 +0530470 msg = f"Row #{row.idx}: Quality Inspection is required for Item {frappe.bold(row.item_code)}"
marination9ac9a4e2021-06-21 16:18:35 +0530471 if self.docstatus == 1:
marination654e9d82021-06-21 16:51:12 +0530472 frappe.throw(_(msg), title=_("Inspection Required"), exc=QualityInspectionRequiredError)
marination9ac9a4e2021-06-21 16:18:35 +0530473 else:
marination654e9d82021-06-21 16:51:12 +0530474 frappe.msgprint(_(msg), title=_("Inspection Required"), indicator="blue")
marination9ac9a4e2021-06-21 16:18:35 +0530475
476 def validate_qi_submission(self, row):
477 """Check if QI is submitted on row level, during submission"""
Ankush Menat494bd9e2022-03-28 18:52:46 +0530478 action = frappe.db.get_single_value(
479 "Stock Settings", "action_if_quality_inspection_is_not_submitted"
480 )
marination9ac9a4e2021-06-21 16:18:35 +0530481 qa_docstatus = frappe.db.get_value("Quality Inspection", row.quality_inspection, "docstatus")
482
483 if not qa_docstatus == 1:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530484 link = frappe.utils.get_link_to_form("Quality Inspection", row.quality_inspection)
485 msg = (
486 f"Row #{row.idx}: Quality Inspection {link} is not submitted for the item: {row.item_code}"
487 )
marination9ac9a4e2021-06-21 16:18:35 +0530488 if action == "Stop":
marination654e9d82021-06-21 16:51:12 +0530489 frappe.throw(_(msg), title=_("Inspection Submission"), exc=QualityInspectionNotSubmittedError)
marination9ac9a4e2021-06-21 16:18:35 +0530490 else:
Marica9ba3fce2021-06-22 11:20:17 +0530491 frappe.msgprint(_(msg), alert=True, indicator="orange")
marination9ac9a4e2021-06-21 16:18:35 +0530492
493 def validate_qi_rejection(self, row):
494 """Check if QI is rejected on row level, during submission"""
marinationf67f13c2021-07-10 18:24:24 +0530495 action = frappe.db.get_single_value("Stock Settings", "action_if_quality_inspection_is_rejected")
marination9ac9a4e2021-06-21 16:18:35 +0530496 qa_status = frappe.db.get_value("Quality Inspection", row.quality_inspection, "status")
497
498 if qa_status == "Rejected":
Ankush Menat494bd9e2022-03-28 18:52:46 +0530499 link = frappe.utils.get_link_to_form("Quality Inspection", row.quality_inspection)
marination654e9d82021-06-21 16:51:12 +0530500 msg = f"Row #{row.idx}: Quality Inspection {link} was rejected for item {row.item_code}"
marination9ac9a4e2021-06-21 16:18:35 +0530501 if action == "Stop":
marination654e9d82021-06-21 16:51:12 +0530502 frappe.throw(_(msg), title=_("Inspection Rejected"), exc=QualityInspectionRejectedError)
marination9ac9a4e2021-06-21 16:18:35 +0530503 else:
marination654e9d82021-06-21 16:51:12 +0530504 frappe.msgprint(_(msg), alert=True, indicator="orange")
Manas Solankicc902412016-11-10 19:15:11 +0530505
Nabin Haitb2d3c0f2018-06-14 15:54:34 +0530506 def update_blanket_order(self):
Nabin Haitd1f40ad2018-06-14 17:09:55 +0530507 blanket_orders = list(set([d.blanket_order for d in self.items if d.blanket_order]))
Nabin Haitb2d3c0f2018-06-14 15:54:34 +0530508 for blanket_order in blanket_orders:
509 frappe.get_doc("Blanket Order", blanket_order).update_ordered_qty()
Manas Solankie5e87f72018-05-28 20:07:08 +0530510
marinationfd04e962020-04-03 15:46:48 +0530511 def validate_customer_provided_item(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530512 for d in self.get("items"):
marinationfd04e962020-04-03 15:46:48 +0530513 # Customer Provided parts will have zero valuation rate
Ankush Menat494bd9e2022-03-28 18:52:46 +0530514 if frappe.db.get_value("Item", d.item_code, "is_customer_provided_item"):
marinationfd04e962020-04-03 15:46:48 +0530515 d.allow_zero_valuation_rate = 1
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530516
Anupam Kumar7e1dcf92021-02-11 20:19:30 +0530517 def set_rate_of_stock_uom(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530518 if self.doctype in [
519 "Purchase Receipt",
520 "Purchase Invoice",
521 "Purchase Order",
522 "Sales Invoice",
523 "Sales Order",
524 "Delivery Note",
525 "Quotation",
526 ]:
Anupam Kumar7e1dcf92021-02-11 20:19:30 +0530527 for d in self.get("items"):
Rohit Waghchaure13584432021-03-26 14:11:50 +0530528 d.stock_uom_rate = d.rate / (d.conversion_factor or 1)
Anupam Kumar7e1dcf92021-02-11 20:19:30 +0530529
Deepesh Gargb4be2922021-01-28 13:09:56 +0530530 def validate_internal_transfer(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530531 if (
532 self.doctype in ("Sales Invoice", "Delivery Note", "Purchase Invoice", "Purchase Receipt")
533 and self.is_internal_transfer()
534 ):
Deepesh Gargb4be2922021-01-28 13:09:56 +0530535 self.validate_in_transit_warehouses()
536 self.validate_multi_currency()
537 self.validate_packed_items()
538
539 def validate_in_transit_warehouses(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530540 if (
541 self.doctype == "Sales Invoice" and self.get("update_stock")
542 ) or self.doctype == "Delivery Note":
543 for item in self.get("items"):
Deepesh Gargb4be2922021-01-28 13:09:56 +0530544 if not item.target_warehouse:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530545 frappe.throw(
546 _("Row {0}: Target Warehouse is mandatory for internal transfers").format(item.idx)
547 )
Deepesh Gargb4be2922021-01-28 13:09:56 +0530548
Ankush Menat494bd9e2022-03-28 18:52:46 +0530549 if (
550 self.doctype == "Purchase Invoice" and self.get("update_stock")
551 ) or self.doctype == "Purchase Receipt":
552 for item in self.get("items"):
Deepesh Gargb4be2922021-01-28 13:09:56 +0530553 if not item.from_warehouse:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530554 frappe.throw(
555 _("Row {0}: From Warehouse is mandatory for internal transfers").format(item.idx)
556 )
Deepesh Gargb4be2922021-01-28 13:09:56 +0530557
558 def validate_multi_currency(self):
559 if self.currency != self.company_currency:
560 frappe.throw(_("Internal transfers can only be done in company's default currency"))
561
562 def validate_packed_items(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530563 if self.doctype in ("Sales Invoice", "Delivery Note Item") and self.get("packed_items"):
Deepesh Gargb4be2922021-01-28 13:09:56 +0530564 frappe.throw(_("Packed Items cannot be transferred internally"))
565
marinationfac40352020-12-07 21:35:49 +0530566 def validate_putaway_capacity(self):
567 # if over receipt is attempted while 'apply putaway rule' is disabled
568 # and if rule was applied on the transaction, validate it.
marination957615b2021-01-18 23:47:24 +0530569 from erpnext.stock.doctype.putaway_rule.putaway_rule import get_available_putaway_capacity
Ankush Menat494bd9e2022-03-28 18:52:46 +0530570
571 valid_doctype = self.doctype in (
572 "Purchase Receipt",
573 "Stock Entry",
574 "Purchase Invoice",
575 "Stock Reconciliation",
576 )
marinationfac40352020-12-07 21:35:49 +0530577
marination957615b2021-01-18 23:47:24 +0530578 if self.doctype == "Purchase Invoice" and self.get("update_stock") == 0:
579 valid_doctype = False
580
581 if valid_doctype:
marinationfac40352020-12-07 21:35:49 +0530582 rule_map = defaultdict(dict)
583 for item in self.get("items"):
marination957615b2021-01-18 23:47:24 +0530584 warehouse_field = "t_warehouse" if self.doctype == "Stock Entry" else "warehouse"
Ankush Menat494bd9e2022-03-28 18:52:46 +0530585 rule = frappe.db.get_value(
586 "Putaway Rule",
587 {"item_code": item.get("item_code"), "warehouse": item.get(warehouse_field)},
588 ["name", "disable"],
589 as_dict=True,
590 )
marination957615b2021-01-18 23:47:24 +0530591 if rule:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530592 if rule.get("disabled"):
593 continue # dont validate for disabled rule
marination957615b2021-01-18 23:47:24 +0530594
595 if self.doctype == "Stock Reconciliation":
596 stock_qty = flt(item.qty)
597 else:
598 stock_qty = flt(item.transfer_qty) if self.doctype == "Stock Entry" else flt(item.stock_qty)
599
600 rule_name = rule.get("name")
601 if not rule_map[rule_name]:
602 rule_map[rule_name]["warehouse"] = item.get(warehouse_field)
603 rule_map[rule_name]["item"] = item.get("item_code")
604 rule_map[rule_name]["qty_put"] = 0
605 rule_map[rule_name]["capacity"] = get_available_putaway_capacity(rule_name)
606 rule_map[rule_name]["qty_put"] += flt(stock_qty)
marinationfac40352020-12-07 21:35:49 +0530607
608 for rule, values in rule_map.items():
609 if flt(values["qty_put"]) > flt(values["capacity"]):
marination957615b2021-01-18 23:47:24 +0530610 message = self.prepare_over_receipt_message(rule, values)
marinationfac40352020-12-07 21:35:49 +0530611 frappe.throw(msg=message, title=_("Over Receipt"))
marination957615b2021-01-18 23:47:24 +0530612
613 def prepare_over_receipt_message(self, rule, values):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530614 message = _(
615 "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
616 ).format(
617 frappe.bold(values["qty_put"]),
618 frappe.bold(values["item"]),
619 frappe.bold(values["warehouse"]),
620 frappe.bold(values["capacity"]),
621 )
marination957615b2021-01-18 23:47:24 +0530622 message += "<br><br>"
623 rule_link = frappe.utils.get_link_to_form("Putaway Rule", rule)
Ankush Menatad6a2652021-04-17 16:50:02 +0530624 message += _("Please adjust the qty or edit {0} to proceed.").format(rule_link)
marination957615b2021-01-18 23:47:24 +0530625 return message
marinationfac40352020-12-07 21:35:49 +0530626
Nabin Haita77b8c92020-12-21 14:45:50 +0530627 def repost_future_sle_and_gle(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530628 args = frappe._dict(
629 {
630 "posting_date": self.posting_date,
631 "posting_time": self.posting_time,
632 "voucher_type": self.doctype,
633 "voucher_no": self.name,
634 "company": self.company,
635 }
636 )
Ankush Menat3638fbf2022-03-01 18:17:14 +0530637
638 if future_sle_exists(args) or repost_required_for_queue(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530639 item_based_reposting = cint(
640 frappe.db.get_single_value("Stock Reposting Settings", "item_based_reposting")
641 )
Ankush Menat45dd46b2021-11-02 10:50:52 +0530642 if item_based_reposting:
643 create_item_wise_repost_entries(voucher_type=self.doctype, voucher_no=self.name)
644 else:
645 create_repost_item_valuation_entry(args)
646
Ankush Menat494bd9e2022-03-28 18:52:46 +0530647
Ankush Menat3638fbf2022-03-01 18:17:14 +0530648def repost_required_for_queue(doc: StockController) -> bool:
649 """check if stock document contains repeated item-warehouse with queue based valuation.
650
651 if queue exists for repeated items then SLEs need to reprocessed in background again.
652 """
653
Ankush Menat494bd9e2022-03-28 18:52:46 +0530654 consuming_sles = frappe.db.get_all(
655 "Stock Ledger Entry",
Ankush Menat3638fbf2022-03-01 18:17:14 +0530656 filters={
657 "voucher_type": doc.doctype,
658 "voucher_no": doc.name,
659 "actual_qty": ("<", 0),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530660 "is_cancelled": 0,
Ankush Menat3638fbf2022-03-01 18:17:14 +0530661 },
Ankush Menat494bd9e2022-03-28 18:52:46 +0530662 fields=["item_code", "warehouse", "stock_queue"],
Ankush Menat3638fbf2022-03-01 18:17:14 +0530663 )
664 item_warehouses = [(sle.item_code, sle.warehouse) for sle in consuming_sles]
665
666 unique_item_warehouses = set(item_warehouses)
667
668 if len(unique_item_warehouses) == len(item_warehouses):
669 return False
670
671 for sle in consuming_sles:
672 if sle.stock_queue != "[]": # using FIFO/LIFO valuation
673 return True
674 return False
675
Nabin Hait19f8fa52021-02-22 22:27:22 +0530676
Rohan Bansal7f8b95e2021-04-14 14:12:03 +0530677@frappe.whitelist()
678def make_quality_inspections(doctype, docname, items):
Rohan Bansala06ec032021-06-02 14:55:31 +0530679 if isinstance(items, str):
680 items = json.loads(items)
Rohan Bansal7f8b95e2021-04-14 14:12:03 +0530681
Rohan Bansala06ec032021-06-02 14:55:31 +0530682 inspections = []
Rohan Bansal7f8b95e2021-04-14 14:12:03 +0530683 for item in items:
Rohan Bansal1cdf5a02021-05-26 14:42:15 +0530684 if flt(item.get("sample_size")) > flt(item.get("qty")):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530685 frappe.throw(
686 _(
687 "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
688 ).format(
689 item_name=item.get("item_name"),
690 sample_size=item.get("sample_size"),
691 accepted_quantity=item.get("qty"),
692 )
693 )
Rohan Bansal7f8b95e2021-04-14 14:12:03 +0530694
Ankush Menat494bd9e2022-03-28 18:52:46 +0530695 quality_inspection = frappe.get_doc(
696 {
697 "doctype": "Quality Inspection",
698 "inspection_type": "Incoming",
699 "inspected_by": frappe.session.user,
700 "reference_type": doctype,
701 "reference_name": docname,
702 "item_code": item.get("item_code"),
703 "description": item.get("description"),
704 "sample_size": flt(item.get("sample_size")),
705 "item_serial_no": item.get("serial_no").split("\n")[0] if item.get("serial_no") else None,
706 "batch_no": item.get("batch_no"),
707 }
708 ).insert()
Rohan Bansal7f8b95e2021-04-14 14:12:03 +0530709 quality_inspection.save()
Rohan Bansal1cdf5a02021-05-26 14:42:15 +0530710 inspections.append(quality_inspection.name)
Rohan Bansal7f8b95e2021-04-14 14:12:03 +0530711
Rohan Bansal1cdf5a02021-05-26 14:42:15 +0530712 return inspections
Rohan Bansal7f8b95e2021-04-14 14:12:03 +0530713
Ankush Menat494bd9e2022-03-28 18:52:46 +0530714
Nabin Haitb99c77b2020-12-25 18:12:35 +0530715def is_reposting_pending():
Ankush Menat494bd9e2022-03-28 18:52:46 +0530716 return frappe.db.exists(
717 "Repost Item Valuation", {"docstatus": 1, "status": ["in", ["Queued", "In Progress"]]}
718 )
719
Nabin Haitb99c77b2020-12-25 18:12:35 +0530720
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530721def future_sle_exists(args, sl_entries=None):
722 key = (args.voucher_type, args.voucher_no)
Nabin Haita77b8c92020-12-21 14:45:50 +0530723
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530724 if validate_future_sle_not_exists(args, key, sl_entries):
725 return False
726 elif get_cached_data(args, key):
727 return True
728
729 if not sl_entries:
730 sl_entries = get_sle_entries_against_voucher(args)
731 if not sl_entries:
732 return
733
734 or_conditions = get_conditions_to_validate_future_sle(sl_entries)
735
Ankush Menat494bd9e2022-03-28 18:52:46 +0530736 data = frappe.db.sql(
737 """
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530738 select item_code, warehouse, count(name) as total_row
Deepesh Garg6f107da2021-10-12 20:15:55 +0530739 from `tabStock Ledger Entry` force index (item_warehouse)
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530740 where
741 ({})
742 and timestamp(posting_date, posting_time)
743 >= timestamp(%(posting_date)s, %(posting_time)s)
744 and voucher_no != %(voucher_no)s
745 and is_cancelled = 0
746 GROUP BY
747 item_code, warehouse
Ankush Menat494bd9e2022-03-28 18:52:46 +0530748 """.format(
749 " or ".join(or_conditions)
750 ),
751 args,
752 as_dict=1,
753 )
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530754
755 for d in data:
756 frappe.local.future_sle[key][(d.item_code, d.warehouse)] = d.total_row
757
758 return len(data)
759
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530760
Ankush Menat494bd9e2022-03-28 18:52:46 +0530761def validate_future_sle_not_exists(args, key, sl_entries=None):
762 item_key = ""
763 if args.get("item_code"):
764 item_key = (args.get("item_code"), args.get("warehouse"))
765
766 if not sl_entries and hasattr(frappe.local, "future_sle"):
767 if not frappe.local.future_sle.get(key) or (
768 item_key and item_key not in frappe.local.future_sle.get(key)
769 ):
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530770 return True
771
Ankush Menat494bd9e2022-03-28 18:52:46 +0530772
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530773def get_cached_data(args, key):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530774 if not hasattr(frappe.local, "future_sle"):
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530775 frappe.local.future_sle = {}
776
777 if key not in frappe.local.future_sle:
778 frappe.local.future_sle[key] = frappe._dict({})
779
Ankush Menat494bd9e2022-03-28 18:52:46 +0530780 if args.get("item_code"):
781 item_key = (args.get("item_code"), args.get("warehouse"))
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530782 count = frappe.local.future_sle[key].get(item_key)
783
784 return True if (count or count == 0) else False
785 else:
786 return frappe.local.future_sle[key]
787
Ankush Menat494bd9e2022-03-28 18:52:46 +0530788
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530789def get_sle_entries_against_voucher(args):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530790 return frappe.get_all(
791 "Stock Ledger Entry",
Nabin Haita77b8c92020-12-21 14:45:50 +0530792 filters={"voucher_type": args.voucher_type, "voucher_no": args.voucher_no},
793 fields=["item_code", "warehouse"],
Ankush Menat494bd9e2022-03-28 18:52:46 +0530794 order_by="creation asc",
795 )
796
Nabin Haita77b8c92020-12-21 14:45:50 +0530797
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530798def get_conditions_to_validate_future_sle(sl_entries):
Sagar Vora868c0bf2021-03-27 16:10:20 +0530799 warehouse_items_map = {}
800 for entry in sl_entries:
801 if entry.warehouse not in warehouse_items_map:
802 warehouse_items_map[entry.warehouse] = set()
Nabin Haita77b8c92020-12-21 14:45:50 +0530803
Sagar Vora868c0bf2021-03-27 16:10:20 +0530804 warehouse_items_map[entry.warehouse].add(entry.item_code)
805
806 or_conditions = []
807 for warehouse, items in warehouse_items_map.items():
808 or_conditions.append(
Noah Jacobb5a14912021-06-15 12:44:04 +0530809 f"""warehouse = {frappe.db.escape(warehouse)}
Ankush Menat494bd9e2022-03-28 18:52:46 +0530810 and item_code in ({', '.join(frappe.db.escape(item) for item in items)})"""
811 )
Sagar Vora868c0bf2021-03-27 16:10:20 +0530812
Rohit Waghchaure8520edc2021-06-15 10:21:44 +0530813 return or_conditions
Nabin Haita77b8c92020-12-21 14:45:50 +0530814
Ankush Menat494bd9e2022-03-28 18:52:46 +0530815
Nabin Haita77b8c92020-12-21 14:45:50 +0530816def create_repost_item_valuation_entry(args):
817 args = frappe._dict(args)
818 repost_entry = frappe.new_doc("Repost Item Valuation")
819 repost_entry.based_on = args.based_on
820 if not args.based_on:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530821 repost_entry.based_on = "Transaction" if args.voucher_no else "Item and Warehouse"
Nabin Haita77b8c92020-12-21 14:45:50 +0530822 repost_entry.voucher_type = args.voucher_type
823 repost_entry.voucher_no = args.voucher_no
824 repost_entry.item_code = args.item_code
825 repost_entry.warehouse = args.warehouse
826 repost_entry.posting_date = args.posting_date
827 repost_entry.posting_time = args.posting_time
828 repost_entry.company = args.company
829 repost_entry.allow_zero_rate = args.allow_zero_rate
830 repost_entry.flags.ignore_links = True
Ankush Menataa024fc2021-11-18 12:51:26 +0530831 repost_entry.flags.ignore_permissions = True
Nabin Haita77b8c92020-12-21 14:45:50 +0530832 repost_entry.save()
Sagar Vora868c0bf2021-03-27 16:10:20 +0530833 repost_entry.submit()
Ankush Menat6dc9b822021-10-28 15:53:18 +0530834
835
836def create_item_wise_repost_entries(voucher_type, voucher_no, allow_zero_rate=False):
837 """Using a voucher create repost item valuation records for all item-warehouse pairs."""
838
Ankush Menatd220e082021-10-28 17:47:00 +0530839 stock_ledger_entries = get_items_to_be_repost(voucher_type, voucher_no)
840
Ankush Menat6dc9b822021-10-28 15:53:18 +0530841 distinct_item_warehouses = set()
Ankush Menat6dc9b822021-10-28 15:53:18 +0530842 repost_entries = []
843
844 for sle in stock_ledger_entries:
845 item_wh = (sle.item_code, sle.warehouse)
846 if item_wh in distinct_item_warehouses:
847 continue
848 distinct_item_warehouses.add(item_wh)
849
850 repost_entry = frappe.new_doc("Repost Item Valuation")
851 repost_entry.based_on = "Item and Warehouse"
852 repost_entry.voucher_type = voucher_type
853 repost_entry.voucher_no = voucher_no
854
855 repost_entry.item_code = sle.item_code
856 repost_entry.warehouse = sle.warehouse
857 repost_entry.posting_date = sle.posting_date
858 repost_entry.posting_time = sle.posting_time
859 repost_entry.allow_zero_rate = allow_zero_rate
860 repost_entry.flags.ignore_links = True
Ankush Menat0a2964d2021-11-24 15:55:31 +0530861 repost_entry.flags.ignore_permissions = True
Ankush Menat6dc9b822021-10-28 15:53:18 +0530862 repost_entry.submit()
863 repost_entries.append(repost_entry)
864
865 return repost_entries