blob: fdbfd10a5da8dd3a6b981becbc83e2b46c2432f9 [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
rohitwaghchaure8fdc2442024-01-27 21:37:58 +05309from frappe import _, bold
rohitwaghchaure4b24fcd2024-02-20 23:45:07 +053010from frappe.utils import cint, cstr, flt, get_link_to_form, getdate
Rohan Bansal7f8b95e2021-04-14 14:12:03 +053011
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)
ruthra kumar46ea8142023-07-28 08:29:19 +053018from erpnext.accounts.utils import cancel_exchange_gain_loss_journal, 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
Rohit Waghchauredbec5cf2022-06-22 12:24:08 +053021from erpnext.stock.doctype.inventory_dimension.inventory_dimension import (
22 get_evaluated_inventory_dimension,
23)
Rohit Waghchaure01650122024-02-06 13:31:36 +053024from erpnext.stock.doctype.serial_and_batch_bundle.serial_and_batch_bundle import (
25 get_type_of_transaction,
26)
Ankush Menat8f577242022-01-07 11:10:23 +053027from erpnext.stock.stock_ledger import get_items_to_be_repost
Rohan Bansal7f8b95e2021-04-14 14:12:03 +053028
Nabin Haitc3afb252013-03-19 12:01:24 +053029
Ankush Menat494bd9e2022-03-28 18:52:46 +053030class QualityInspectionRequiredError(frappe.ValidationError):
31 pass
32
33
34class QualityInspectionRejectedError(frappe.ValidationError):
35 pass
36
37
38class QualityInspectionNotSubmittedError(frappe.ValidationError):
39 pass
40
Nabin Hait5a9579b2018-12-24 14:54:42 +053041
Rohit Waghchaure795c9432022-08-17 13:48:56 +053042class BatchExpiredError(frappe.ValidationError):
43 pass
44
45
Nabin Haitc3afb252013-03-19 12:01:24 +053046class StockController(AccountsController):
Nabin Hait8af429d2016-11-16 17:21:59 +053047 def validate(self):
48 super(StockController, self).validate()
s-aga-r094ecc12024-02-12 17:36:14 +053049
50 if self.docstatus == 0:
51 self.validate_duplicate_serial_and_batch_bundle()
Ankush Menat494bd9e2022-03-28 18:52:46 +053052 if not self.get("is_return"):
marination596560c2020-06-11 16:39:03 +053053 self.validate_inspection()
rohitwaghchaure9af557f2019-12-30 13:26:47 +053054 self.validate_serialized_batch()
marinationeecfc4c2021-07-22 13:23:54 +053055 self.clean_serial_nos()
marinationfd04e962020-04-03 15:46:48 +053056 self.validate_customer_provided_item()
Anupam Kumar7e1dcf92021-02-11 20:19:30 +053057 self.set_rate_of_stock_uom()
Deepesh Gargb4be2922021-01-28 13:09:56 +053058 self.validate_internal_transfer()
marinationfac40352020-12-07 21:35:49 +053059 self.validate_putaway_capacity()
Rushabh Mehtaffd80a62017-01-16 17:23:20 +053060
s-aga-r094ecc12024-02-12 17:36:14 +053061 def validate_duplicate_serial_and_batch_bundle(self):
62 if sbb_list := [
63 item.get("serial_and_batch_bundle")
64 for item in self.items
65 if item.get("serial_and_batch_bundle")
66 ]:
67 SLE = frappe.qb.DocType("Stock Ledger Entry")
68 data = (
69 frappe.qb.from_(SLE)
70 .select(SLE.voucher_type, SLE.voucher_no, SLE.serial_and_batch_bundle)
71 .where(
72 (SLE.docstatus == 1)
73 & (SLE.serial_and_batch_bundle.notnull())
74 & (SLE.serial_and_batch_bundle.isin(sbb_list))
75 )
76 .limit(1)
77 ).run(as_dict=True)
78
79 if data:
80 data = data[0]
81 frappe.throw(
82 _("Serial and Batch Bundle {0} is already used in {1} {2}.").format(
83 frappe.bold(data.serial_and_batch_bundle), data.voucher_type, data.voucher_no
84 )
85 )
86
Nabin Haita77b8c92020-12-21 14:45:50 +053087 def make_gl_entries(self, gl_entries=None, from_repost=False):
Anand Doshif78d1ae2014-03-28 13:55:00 +053088 if self.docstatus == 2:
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +053089 make_reverse_gl_entries(voucher_type=self.doctype, voucher_no=self.name)
Anand Doshi2ce39cf2014-04-07 18:51:58 +053090
Ankush Menat494bd9e2022-03-28 18:52:46 +053091 provisional_accounting_for_non_stock_items = cint(
Daizy Modi4efc9472022-11-07 09:21:03 +053092 frappe.get_cached_value(
Ankush Menat494bd9e2022-03-28 18:52:46 +053093 "Company", self.company, "enable_provisional_accounting_for_non_stock_items"
94 )
95 )
Deepesh Garg528c7132022-02-01 14:42:55 +053096
Deepesh Gargd1ec0a62023-10-23 00:16:40 +053097 is_asset_pr = any(d.get("is_fixed_asset") for d in self.get("items"))
98
Ankush Menat494bd9e2022-03-28 18:52:46 +053099 if (
100 cint(erpnext.is_perpetual_inventory_enabled(self.company))
101 or provisional_accounting_for_non_stock_items
Deepesh Gargd1ec0a62023-10-23 00:16:40 +0530102 or is_asset_pr
Ankush Menat494bd9e2022-03-28 18:52:46 +0530103 ):
Rohit Waghchaure6b33c9b2019-03-08 11:13:35 +0530104 warehouse_account = get_warehouse_account_map(self.company)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530105
Ankush Menat494bd9e2022-03-28 18:52:46 +0530106 if self.docstatus == 1:
Nabin Hait9784d272016-12-30 16:21:35 +0530107 if not gl_entries:
108 gl_entries = self.get_gl_entries(warehouse_account)
Nabin Haita77b8c92020-12-21 14:45:50 +0530109 make_gl_entries(gl_entries, from_repost=from_repost)
Nabin Hait145e5e22013-10-22 23:51:41 +0530110
rohitwaghchaure9af557f2019-12-30 13:26:47 +0530111 def validate_serialized_batch(self):
112 from erpnext.stock.doctype.serial_no.serial_no import get_serial_nos
Ankush Menat494bd9e2022-03-28 18:52:46 +0530113
Rohit Waghchaure795c9432022-08-17 13:48:56 +0530114 is_material_issue = False
115 if self.doctype == "Stock Entry" and self.purpose == "Material Issue":
116 is_material_issue = True
117
rohitwaghchaure9af557f2019-12-30 13:26:47 +0530118 for d in self.get("items"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530119 if hasattr(d, "serial_no") and hasattr(d, "batch_no") and d.serial_no and d.batch_no:
120 serial_nos = frappe.get_all(
121 "Serial No",
Rohit Waghchaure6b482eb2021-07-23 16:40:45 +0530122 fields=["batch_no", "name", "warehouse"],
Ankush Menat494bd9e2022-03-28 18:52:46 +0530123 filters={"name": ("in", get_serial_nos(d.serial_no))},
Rohit Waghchaure6b482eb2021-07-23 16:40:45 +0530124 )
125
126 for row in serial_nos:
127 if row.warehouse and row.batch_no != d.batch_no:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530128 frappe.throw(
129 _("Row #{0}: Serial No {1} does not belong to Batch {2}").format(
130 d.idx, row.name, d.batch_no
131 )
132 )
rohitwaghchaure9af557f2019-12-30 13:26:47 +0530133
Rohit Waghchaure795c9432022-08-17 13:48:56 +0530134 if is_material_issue:
135 continue
136
Saqib Ansari903055b2020-10-20 11:59:06 +0530137 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 +0530138 expiry_date = frappe.get_cached_value("Batch", d.get("batch_no"), "expiry_date")
139
140 if expiry_date and getdate(expiry_date) < getdate(self.posting_date):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530141 frappe.throw(
142 _("Row #{0}: The batch {1} has already expired.").format(
143 d.idx, get_link_to_form("Batch", d.get("batch_no"))
Rohit Waghchaure795c9432022-08-17 13:48:56 +0530144 ),
145 BatchExpiredError,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530146 )
rohitwaghchaure28a48802020-04-28 13:01:43 +0530147
marinationeecfc4c2021-07-22 13:23:54 +0530148 def clean_serial_nos(self):
Ankush Menatb20df372022-01-24 19:19:58 +0530149 from erpnext.stock.doctype.serial_no.serial_no import clean_serial_no_string
150
marinationeecfc4c2021-07-22 13:23:54 +0530151 for row in self.get("items"):
152 if hasattr(row, "serial_no") and row.serial_no:
Ankush Menatb20df372022-01-24 19:19:58 +0530153 # remove extra whitespace and store one serial no on each line
154 row.serial_no = clean_serial_no_string(row.serial_no)
marinationeecfc4c2021-07-22 13:23:54 +0530155
Ankush Menat494bd9e2022-03-28 18:52:46 +0530156 for row in self.get("packed_items") or []:
Ankush Menate177c522022-01-24 19:28:26 +0530157 if hasattr(row, "serial_no") and row.serial_no:
158 # remove extra whitespace and store one serial no on each line
159 row.serial_no = clean_serial_no_string(row.serial_no)
160
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530161 def make_bundle_using_old_serial_batch_fields(self):
162 from erpnext.stock.doctype.serial_no.serial_no import get_serial_nos
163 from erpnext.stock.serial_batch_bundle import SerialBatchCreation
164
rohitwaghchaurea4cbfab2024-02-19 10:25:36 +0530165 if self.get("_action") == "update_after_submit":
166 return
167
Rohit Waghchaurec1e869f2024-02-05 12:40:26 +0530168 # To handle test cases
169 if frappe.flags.in_test and frappe.flags.use_serial_and_batch_fields:
170 return
171
172 table_name = "items"
173 if self.doctype == "Asset Capitalization":
174 table_name = "stock_items"
175
176 for row in self.get(table_name):
rohitwaghchaure4b24fcd2024-02-20 23:45:07 +0530177 if row.serial_and_batch_bundle and (row.serial_no or row.batch_no):
178 self.validate_serial_nos_and_batches_with_bundle(row)
179
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530180 if not row.serial_no and not row.batch_no and not row.get("rejected_serial_no"):
181 continue
182
183 if not row.use_serial_batch_fields and (
184 row.serial_no or row.batch_no or row.get("rejected_serial_no")
185 ):
rohitwaghchaure4b24fcd2024-02-20 23:45:07 +0530186 row.use_serial_batch_fields = 1
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530187
188 if row.use_serial_batch_fields and (
Rohit Waghchaurec1e869f2024-02-05 12:40:26 +0530189 not row.serial_and_batch_bundle and not row.get("rejected_serial_and_batch_bundle")
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530190 ):
Rohit Waghchaure01650122024-02-06 13:31:36 +0530191 if self.doctype == "Stock Reconciliation":
192 qty = row.qty
193 type_of_transaction = "Inward"
rohitwaghchauree5824fc2024-02-11 11:10:21 +0530194 warehouse = row.warehouse
Rohit Waghchaure01650122024-02-06 13:31:36 +0530195 else:
rohitwaghchauree5824fc2024-02-11 11:10:21 +0530196 qty = row.stock_qty if self.doctype != "Stock Entry" else row.transfer_qty
Rohit Waghchaure01650122024-02-06 13:31:36 +0530197 type_of_transaction = get_type_of_transaction(self, row)
rohitwaghchauree5824fc2024-02-11 11:10:21 +0530198 warehouse = (
199 row.warehouse if self.doctype != "Stock Entry" else row.s_warehouse or row.t_warehouse
200 )
Rohit Waghchaure01650122024-02-06 13:31:36 +0530201
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530202 sn_doc = SerialBatchCreation(
203 {
204 "item_code": row.item_code,
rohitwaghchauree5824fc2024-02-11 11:10:21 +0530205 "warehouse": warehouse,
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530206 "posting_date": self.posting_date,
207 "posting_time": self.posting_time,
208 "voucher_type": self.doctype,
209 "voucher_no": self.name,
210 "voucher_detail_no": row.name,
Rohit Waghchaure01650122024-02-06 13:31:36 +0530211 "qty": qty,
212 "type_of_transaction": type_of_transaction,
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530213 "company": self.company,
214 "is_rejected": 1 if row.get("rejected_warehouse") else 0,
215 "serial_nos": get_serial_nos(row.serial_no) if row.serial_no else None,
Rohit Waghchaure01650122024-02-06 13:31:36 +0530216 "batches": frappe._dict({row.batch_no: qty}) if row.batch_no else None,
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530217 "batch_no": row.batch_no,
218 "use_serial_batch_fields": row.use_serial_batch_fields,
Rohit Waghchaure01650122024-02-06 13:31:36 +0530219 "do_not_submit": True,
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530220 }
221 ).make_serial_and_batch_bundle()
222
223 if sn_doc.is_rejected:
224 row.rejected_serial_and_batch_bundle = sn_doc.name
Rohit Waghchaurec1e869f2024-02-05 12:40:26 +0530225 row.db_set(
226 {
227 "rejected_serial_and_batch_bundle": sn_doc.name,
Rohit Waghchaurec1e869f2024-02-05 12:40:26 +0530228 }
229 )
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530230 else:
231 row.serial_and_batch_bundle = sn_doc.name
Rohit Waghchaurec1e869f2024-02-05 12:40:26 +0530232 row.db_set(
233 {
234 "serial_and_batch_bundle": sn_doc.name,
Rohit Waghchaurec1e869f2024-02-05 12:40:26 +0530235 }
236 )
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530237
rohitwaghchaure4b24fcd2024-02-20 23:45:07 +0530238 def validate_serial_nos_and_batches_with_bundle(self, row):
239 from erpnext.stock.doctype.serial_no.serial_no import get_serial_nos
240
241 throw_error = False
242 if row.serial_no:
243 serial_nos = frappe.get_all(
244 "Serial and Batch Entry", fields=["serial_no"], filters={"parent": row.serial_and_batch_bundle}
245 )
246 serial_nos = sorted([cstr(d.serial_no) for d in serial_nos])
247 parsed_serial_nos = get_serial_nos(row.serial_no)
248
249 if len(serial_nos) != len(parsed_serial_nos):
250 throw_error = True
251 elif serial_nos != parsed_serial_nos:
252 for serial_no in serial_nos:
253 if serial_no not in parsed_serial_nos:
254 throw_error = True
255 break
256
257 elif row.batch_no:
258 batches = frappe.get_all(
259 "Serial and Batch Entry", fields=["batch_no"], filters={"parent": row.serial_and_batch_bundle}
260 )
261 batches = sorted([d.batch_no for d in batches])
262
263 if batches != [row.batch_no]:
264 throw_error = True
265
266 if throw_error:
267 frappe.throw(
268 _(
269 "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields."
270 ).format(row.idx, row.serial_and_batch_bundle)
271 )
272
Rohit Waghchaure9fafc832024-02-04 10:42:31 +0530273 def set_use_serial_batch_fields(self):
274 if frappe.db.get_single_value("Stock Settings", "use_serial_batch_fields"):
275 for row in self.items:
276 row.use_serial_batch_fields = 1
277
Ankush Menat494bd9e2022-03-28 18:52:46 +0530278 def get_gl_entries(
279 self, warehouse_account=None, default_expense_account=None, default_cost_center=None
280 ):
Nabin Haitadeb9762014-10-06 11:53:52 +0530281
Nabin Hait142007a2013-09-17 15:15:16 +0530282 if not warehouse_account:
Rohit Waghchaure6b33c9b2019-03-08 11:13:35 +0530283 warehouse_account = get_warehouse_account_map(self.company)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530284
Anand Doshide1a97d2014-04-17 11:37:46 +0530285 sle_map = self.get_stock_ledger_details()
286 voucher_details = self.get_voucher_details(default_expense_account, default_cost_center, sle_map)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530287
Nabin Hait2e296fa2013-08-28 18:53:11 +0530288 gl_list = []
Nabin Hait7a75e102013-09-17 10:21:20 +0530289 warehouse_with_no_account = []
Nabin Hait19f8fa52021-02-22 22:27:22 +0530290 precision = self.get_debit_field_precision()
Nabin Hait8c61f342016-12-15 13:46:03 +0530291 for item_row in voucher_details:
292 sle_list = sle_map.get(item_row.name)
Deepesh Garg6e47fd52022-09-26 21:15:57 +0530293 sle_rounding_diff = 0.0
Nabin Hait2e296fa2013-08-28 18:53:11 +0530294 if sle_list:
295 for sle in sle_list:
296 if warehouse_account.get(sle.warehouse):
Deepesh Gargf17ea2c2020-12-11 21:30:39 +0530297 # from warehouse account
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530298
Deepesh Gargdf2a0e22022-10-11 14:55:09 +0530299 sle_rounding_diff += flt(sle.stock_value_difference)
Deepesh Garg6e47fd52022-09-26 21:15:57 +0530300
Nabin Hait8c61f342016-12-15 13:46:03 +0530301 self.check_expense_account(item_row)
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530302
Deepesh Gargf17ea2c2020-12-11 21:30:39 +0530303 # expense account/ target_warehouse / source_warehouse
Ankush Menat494bd9e2022-03-28 18:52:46 +0530304 if item_row.get("target_warehouse"):
305 warehouse = item_row.get("target_warehouse")
Deepesh Gargf17ea2c2020-12-11 21:30:39 +0530306 expense_account = warehouse_account[warehouse]["account"]
307 else:
308 expense_account = item_row.expense_account
309
Ankush Menat494bd9e2022-03-28 18:52:46 +0530310 gl_list.append(
311 self.get_gl_dict(
312 {
313 "account": warehouse_account[sle.warehouse]["account"],
314 "against": expense_account,
315 "cost_center": item_row.cost_center,
316 "project": item_row.project or self.get("project"),
317 "remarks": self.get("remarks") or _("Accounting Entry for Stock"),
318 "debit": flt(sle.stock_value_difference, precision),
319 "is_opening": item_row.get("is_opening") or self.get("is_opening") or "No",
320 },
321 warehouse_account[sle.warehouse]["account_currency"],
322 item=item_row,
323 )
324 )
Nabin Hait27994c22013-08-26 16:53:30 +0530325
Ankush Menat494bd9e2022-03-28 18:52:46 +0530326 gl_list.append(
327 self.get_gl_dict(
328 {
329 "account": expense_account,
330 "against": warehouse_account[sle.warehouse]["account"],
331 "cost_center": item_row.cost_center,
332 "remarks": self.get("remarks") or _("Accounting Entry for Stock"),
Ankush Menat65b21ee2022-06-07 14:49:24 +0530333 "debit": -1 * flt(sle.stock_value_difference, precision),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530334 "project": item_row.get("project") or self.get("project"),
335 "is_opening": item_row.get("is_opening") or self.get("is_opening") or "No",
336 },
337 item=item_row,
338 )
339 )
Nabin Hait7a75e102013-09-17 10:21:20 +0530340 elif sle.warehouse not in warehouse_with_no_account:
341 warehouse_with_no_account.append(sle.warehouse)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530342
Deepesh Garg9aa5e202022-10-12 15:53:28 +0530343 if abs(sle_rounding_diff) > (1.0 / (10**precision)) and self.is_internal_transfer():
Deepesh Garg1c05c002022-10-12 14:19:09 +0530344 warehouse_asset_account = ""
Deepesh Gargdf2a0e22022-10-11 14:55:09 +0530345 if self.get("is_internal_customer"):
Deepesh Garg1c05c002022-10-12 14:19:09 +0530346 warehouse_asset_account = warehouse_account[item_row.get("target_warehouse")]["account"]
Deepesh Gargdf2a0e22022-10-11 14:55:09 +0530347 elif self.get("is_internal_supplier"):
Deepesh Garg1c05c002022-10-12 14:19:09 +0530348 warehouse_asset_account = warehouse_account[item_row.get("warehouse")]["account"]
Deepesh Garg6e47fd52022-09-26 21:15:57 +0530349
Daizy Modi4efc9472022-11-07 09:21:03 +0530350 expense_account = frappe.get_cached_value("Company", self.company, "default_expense_account")
Deepesh Gargce9164e2023-07-11 12:03:38 +0530351 if not expense_account:
352 frappe.throw(
353 _(
354 "Please set default cost of goods sold account in company {0} for booking rounding gain and loss during stock transfer"
355 ).format(frappe.bold(self.company))
356 )
Deepesh Garg1c05c002022-10-12 14:19:09 +0530357
Deepesh Garg6e47fd52022-09-26 21:15:57 +0530358 gl_list.append(
359 self.get_gl_dict(
360 {
Deepesh Gargdf2a0e22022-10-11 14:55:09 +0530361 "account": expense_account,
Deepesh Garg1c05c002022-10-12 14:19:09 +0530362 "against": warehouse_asset_account,
Deepesh Garg6e47fd52022-09-26 21:15:57 +0530363 "cost_center": item_row.cost_center,
364 "project": item_row.project or self.get("project"),
Deepesh Gargdf2a0e22022-10-11 14:55:09 +0530365 "remarks": _("Rounding gain/loss Entry for Stock Transfer"),
Deepesh Garg6e47fd52022-09-26 21:15:57 +0530366 "debit": sle_rounding_diff,
367 "is_opening": item_row.get("is_opening") or self.get("is_opening") or "No",
368 },
369 warehouse_account[sle.warehouse]["account_currency"],
370 item=item_row,
371 )
372 )
373
374 gl_list.append(
375 self.get_gl_dict(
376 {
Deepesh Garg1c05c002022-10-12 14:19:09 +0530377 "account": warehouse_asset_account,
Deepesh Gargdf2a0e22022-10-11 14:55:09 +0530378 "against": expense_account,
Deepesh Garg6e47fd52022-09-26 21:15:57 +0530379 "cost_center": item_row.cost_center,
Deepesh Gargdf2a0e22022-10-11 14:55:09 +0530380 "remarks": _("Rounding gain/loss Entry for Stock Transfer"),
381 "credit": sle_rounding_diff,
Deepesh Garg6e47fd52022-09-26 21:15:57 +0530382 "project": item_row.get("project") or self.get("project"),
383 "is_opening": item_row.get("is_opening") or self.get("is_opening") or "No",
384 },
385 item=item_row,
386 )
387 )
388
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530389 if warehouse_with_no_account:
Nabin Haitd6625022016-10-24 18:17:57 +0530390 for wh in warehouse_with_no_account:
Daizy Modi4efc9472022-11-07 09:21:03 +0530391 if frappe.get_cached_value("Warehouse", wh, "company"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530392 frappe.throw(
393 _(
394 "Warehouse {0} is not linked to any account, please mention the account in the warehouse record or set default inventory account in company {1}."
395 ).format(wh, self.company)
396 )
Rushabh Mehta14a908b2015-10-15 12:28:20 +0530397
Nabin Hait19f8fa52021-02-22 22:27:22 +0530398 return process_gl_map(gl_list, precision=precision)
399
400 def get_debit_field_precision(self):
401 if not frappe.flags.debit_field_precision:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530402 frappe.flags.debit_field_precision = frappe.get_precision(
403 "GL Entry", "debit_in_account_currency"
404 )
Nabin Hait19f8fa52021-02-22 22:27:22 +0530405
406 return frappe.flags.debit_field_precision
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530407
Anand Doshide1a97d2014-04-17 11:37:46 +0530408 def get_voucher_details(self, default_expense_account, default_cost_center, sle_map):
409 if self.doctype == "Stock Reconciliation":
Nabin Hait3f119ec2019-05-16 17:28:39 +0530410 reconciliation_purpose = frappe.db.get_value(self.doctype, self.name, "purpose")
411 is_opening = "Yes" if reconciliation_purpose == "Opening Stock" else "No"
412 details = []
Nabin Hait34c551d2019-07-03 10:34:31 +0530413 for voucher_detail_no in sle_map:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530414 details.append(
415 frappe._dict(
416 {
417 "name": voucher_detail_no,
418 "expense_account": default_expense_account,
419 "cost_center": default_cost_center,
420 "is_opening": is_opening,
421 }
422 )
423 )
Nabin Hait3f119ec2019-05-16 17:28:39 +0530424 return details
Anand Doshide1a97d2014-04-17 11:37:46 +0530425 else:
Nabin Haitdd38a262014-12-26 13:15:21 +0530426 details = self.get("items")
Anand Doshi094610d2014-04-16 19:56:53 +0530427
Anand Doshide1a97d2014-04-17 11:37:46 +0530428 if default_expense_account or default_cost_center:
429 for d in details:
430 if default_expense_account and not d.get("expense_account"):
431 d.expense_account = default_expense_account
432 if default_cost_center and not d.get("cost_center"):
433 d.cost_center = default_cost_center
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530434
Anand Doshide1a97d2014-04-17 11:37:46 +0530435 return details
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530436
Ankush Menate6ab8df2022-02-06 13:02:34 +0530437 def get_items_and_warehouses(self) -> Tuple[List[str], List[str]]:
438 """Get list of items and warehouses affected by a transaction"""
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530439
Ankush Menate6ab8df2022-02-06 13:02:34 +0530440 if not (hasattr(self, "items") or hasattr(self, "packed_items")):
441 return [], []
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530442
Ankush Menate6ab8df2022-02-06 13:02:34 +0530443 item_rows = (self.get("items") or []) + (self.get("packed_items") or [])
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530444
Ankush Menate6ab8df2022-02-06 13:02:34 +0530445 items = {d.item_code for d in item_rows if d.item_code}
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530446
Ankush Menate6ab8df2022-02-06 13:02:34 +0530447 warehouses = set()
448 for d in item_rows:
449 if d.get("warehouse"):
450 warehouses.add(d.warehouse)
Nabin Haitbecf75d2014-03-27 17:18:29 +0530451
Ankush Menate6ab8df2022-02-06 13:02:34 +0530452 if self.doctype == "Stock Entry":
453 if d.get("s_warehouse"):
454 warehouses.add(d.s_warehouse)
455 if d.get("t_warehouse"):
456 warehouses.add(d.t_warehouse)
457
458 return list(items), list(warehouses)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530459
Nabin Hait2e296fa2013-08-28 18:53:11 +0530460 def get_stock_ledger_details(self):
461 stock_ledger = {}
Ankush Menat494bd9e2022-03-28 18:52:46 +0530462 stock_ledger_entries = frappe.db.sql(
463 """
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530464 select
Nabin Hait0a6aaf42017-02-07 01:23:26 +0530465 name, warehouse, stock_value_difference, valuation_rate,
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530466 voucher_detail_no, item_code, posting_date, posting_time,
Nabin Hait0a6aaf42017-02-07 01:23:26 +0530467 actual_qty, qty_after_transaction
Nabin Haitea8fab52017-02-06 17:13:39 +0530468 from
469 `tabStock Ledger Entry`
470 where
Ankush Menat0ca60af2022-02-08 10:24:19 +0530471 voucher_type=%s and voucher_no=%s and is_cancelled = 0
Ankush Menat494bd9e2022-03-28 18:52:46 +0530472 """,
473 (self.doctype, self.name),
474 as_dict=True,
475 )
Nabin Hait0a6aaf42017-02-07 01:23:26 +0530476
Nabin Haitea8fab52017-02-06 17:13:39 +0530477 for sle in stock_ledger_entries:
Deepesh Gargb4be2922021-01-28 13:09:56 +0530478 stock_ledger.setdefault(sle.voucher_detail_no, []).append(sle)
Nabin Hait2e296fa2013-08-28 18:53:11 +0530479 return stock_ledger
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530480
Nabin Hait27994c22013-08-26 16:53:30 +0530481 def check_expense_account(self, item):
Rushabh Mehta052fe822014-04-16 19:20:11 +0530482 if not item.get("expense_account"):
Rohit Waghchaureceab6922020-11-18 17:57:35 +0530483 msg = _("Please set an Expense Account in the Items table")
Ankush Menat494bd9e2022-03-28 18:52:46 +0530484 frappe.throw(
485 _("Row #{0}: Expense Account not set for the Item {1}. {2}").format(
486 item.idx, frappe.bold(item.item_code), msg
487 ),
488 title=_("Expense Account Missing"),
489 )
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530490
Anand Doshi496123a2014-06-19 19:25:19 +0530491 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530492 is_expense_account = (
493 frappe.get_cached_value("Account", item.get("expense_account"), "report_type")
494 == "Profit and Loss"
495 )
496 if (
497 self.doctype
Sagar Sharma2d04e712022-08-17 15:57:41 +0530498 not in (
499 "Purchase Receipt",
500 "Purchase Invoice",
501 "Stock Reconciliation",
502 "Stock Entry",
503 "Subcontracting Receipt",
504 )
Ankush Menat494bd9e2022-03-28 18:52:46 +0530505 and not is_expense_account
506 ):
507 frappe.throw(
508 _("Expense / Difference account ({0}) must be a 'Profit or Loss' account").format(
509 item.get("expense_account")
510 )
511 )
Anand Doshi496123a2014-06-19 19:25:19 +0530512 if is_expense_account and not item.get("cost_center"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530513 frappe.throw(
514 _("{0} {1}: Cost Center is mandatory for Item {2}").format(
515 _(self.doctype), self.name, item.get("item_code")
516 )
517 )
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530518
Rohit Waghchaure8996b7d2020-01-23 17:36:52 +0530519 def delete_auto_created_batches(self):
Rohit Waghchaurebc75a7e2022-10-10 13:28:19 +0530520 for row in self.items:
521 if row.serial_and_batch_bundle:
522 frappe.db.set_value(
523 "Serial and Batch Bundle", row.serial_and_batch_bundle, {"is_cancelled": 1}
524 )
Rohit Waghchaure8996b7d2020-01-23 17:36:52 +0530525
Rohit Waghchaurebc75a7e2022-10-10 13:28:19 +0530526 row.db_set("serial_and_batch_bundle", None)
Saqibe9ac3e02020-03-02 15:02:58 +0530527
Rohit Waghchaured3ceb072023-03-31 09:03:54 +0530528 def set_serial_and_batch_bundle(self, table_name=None, ignore_validate=False):
Rohit Waghchaure648efca2023-03-28 12:16:27 +0530529 if not table_name:
530 table_name = "items"
Rohit Waghchaure8996b7d2020-01-23 17:36:52 +0530531
Rohit Waghchaured3ceb072023-03-31 09:03:54 +0530532 QTY_FIELD = {
533 "serial_and_batch_bundle": "qty",
534 "current_serial_and_batch_bundle": "current_qty",
535 "rejected_serial_and_batch_bundle": "rejected_qty",
536 }
537
Rohit Waghchaure648efca2023-03-28 12:16:27 +0530538 for row in self.get(table_name):
s-aga-rc20241f2024-01-12 15:26:35 +0530539 for field in QTY_FIELD.keys():
Rohit Waghchaured3ceb072023-03-31 09:03:54 +0530540 if row.get(field):
541 frappe.get_doc("Serial and Batch Bundle", row.get(field)).set_serial_and_batch_values(
542 self, row, qty_field=QTY_FIELD[field]
543 )
Rohit Waghchaure648efca2023-03-28 12:16:27 +0530544
Rohit Waghchaure86da3062023-03-20 14:15:34 +0530545 def make_package_for_transfer(
546 self, serial_and_batch_bundle, warehouse, type_of_transaction=None, do_not_submit=None
547 ):
548 bundle_doc = frappe.get_doc("Serial and Batch Bundle", serial_and_batch_bundle)
549
550 if not type_of_transaction:
551 type_of_transaction = "Inward"
552
553 bundle_doc = frappe.copy_doc(bundle_doc)
554 bundle_doc.warehouse = warehouse
555 bundle_doc.type_of_transaction = type_of_transaction
556 bundle_doc.voucher_type = self.doctype
557 bundle_doc.voucher_no = self.name
558 bundle_doc.is_cancelled = 0
559
Rohit Waghchaure5bb31732023-03-21 10:54:41 +0530560 for row in bundle_doc.entries:
Rohit Waghchaure86da3062023-03-20 14:15:34 +0530561 row.is_outward = 0
562 row.qty = abs(row.qty)
563 row.stock_value_difference = abs(row.stock_value_difference)
564 if type_of_transaction == "Outward":
565 row.qty *= -1
566 row.stock_value_difference *= row.stock_value_difference
567 row.is_outward = 1
568
569 row.warehouse = warehouse
570
Rohit Waghchaure5bb31732023-03-21 10:54:41 +0530571 bundle_doc.calculate_qty_and_amount()
Rohit Waghchaure86da3062023-03-20 14:15:34 +0530572 bundle_doc.flags.ignore_permissions = True
Rohit Waghchaured3ceb072023-03-31 09:03:54 +0530573 bundle_doc.save(ignore_permissions=True)
Rohit Waghchaure86da3062023-03-20 14:15:34 +0530574
Rohit Waghchaure86da3062023-03-20 14:15:34 +0530575 return bundle_doc.name
Rohit Waghchaure4f4dbf12020-01-23 12:42:42 +0530576
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530577 def get_sl_entries(self, d, args):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530578 sl_dict = frappe._dict(
579 {
580 "item_code": d.get("item_code", None),
581 "warehouse": d.get("warehouse", None),
Rohit Waghchaurebc75a7e2022-10-10 13:28:19 +0530582 "serial_and_batch_bundle": d.get("serial_and_batch_bundle"),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530583 "posting_date": self.posting_date,
584 "posting_time": self.posting_time,
585 "fiscal_year": get_fiscal_year(self.posting_date, company=self.company)[0],
586 "voucher_type": self.doctype,
587 "voucher_no": self.name,
588 "voucher_detail_no": d.name,
589 "actual_qty": (self.docstatus == 1 and 1 or -1) * flt(d.get("stock_qty")),
Rohit Waghchaure2d5ccc02023-05-01 21:17:18 +0530590 "stock_uom": frappe.get_cached_value(
Ankush Menat494bd9e2022-03-28 18:52:46 +0530591 "Item", args.get("item_code") or d.get("item_code"), "stock_uom"
592 ),
593 "incoming_rate": 0,
594 "company": self.company,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530595 "project": d.get("project") or self.get("project"),
596 "is_cancelled": 1 if self.docstatus == 2 else 0,
597 }
598 )
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530599
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530600 sl_dict.update(args)
Rohit Waghchauree576f7f2022-06-30 19:12:06 +0530601 self.update_inventory_dimensions(d, sl_dict)
Rohit Waghchauredbec5cf2022-06-22 12:24:08 +0530602
rohitwaghchaure07432892023-12-17 12:42:07 +0530603 if self.docstatus == 2:
604 # To handle denormalized serial no records, will br deprecated in v16
605 for field in ["serial_no", "batch_no"]:
606 if d.get(field):
607 sl_dict[field] = d.get(field)
608
Nabin Hait1e2f20a2013-08-02 11:42:11 +0530609 return sl_dict
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530610
Rohit Waghchauredbec5cf2022-06-22 12:24:08 +0530611 def update_inventory_dimensions(self, row, sl_dict) -> None:
Rohit Waghchaure23729992022-09-02 18:43:55 +0530612 # To handle delivery note and sales invoice
613 if row.get("item_row"):
614 row = row.get("item_row")
615
Rohit Waghchaure289e6cd2022-07-15 15:43:38 +0530616 dimensions = get_evaluated_inventory_dimension(row, sl_dict, parent_doc=self)
617 for dimension in dimensions:
Rohit Waghchaure0b39a012022-08-17 11:56:13 +0530618 if not dimension:
619 continue
620
Rohit Waghchaure6798b902023-05-09 16:07:14 +0530621 if self.doctype in [
622 "Purchase Invoice",
623 "Purchase Receipt",
624 "Sales Invoice",
625 "Delivery Note",
626 "Stock Entry",
627 ]:
Rohit Waghchaure38aaba52023-05-13 13:00:05 +0530628 if (
629 (
630 sl_dict.actual_qty > 0
631 and not self.get("is_return")
632 or sl_dict.actual_qty < 0
633 and self.get("is_return")
634 )
635 and self.doctype in ["Purchase Invoice", "Purchase Receipt"]
636 ) or (
637 (
638 sl_dict.actual_qty < 0
639 and not self.get("is_return")
640 or sl_dict.actual_qty > 0
641 and self.get("is_return")
642 )
643 and self.doctype in ["Sales Invoice", "Delivery Note", "Stock Entry"]
Rohit Waghchaure6798b902023-05-09 16:07:14 +0530644 ):
645 sl_dict[dimension.target_fieldname] = row.get(dimension.source_fieldname)
646 else:
647 fieldname_start_with = "to"
648 if self.doctype in ["Purchase Invoice", "Purchase Receipt"]:
649 fieldname_start_with = "from"
650
651 fieldname = f"{fieldname_start_with}_{dimension.source_fieldname}"
652 sl_dict[dimension.target_fieldname] = row.get(fieldname)
653
654 if not sl_dict.get(dimension.target_fieldname):
655 sl_dict[dimension.target_fieldname] = row.get(dimension.source_fieldname)
656
657 elif row.get(dimension.source_fieldname):
Rohit Waghchaure289e6cd2022-07-15 15:43:38 +0530658 sl_dict[dimension.target_fieldname] = row.get(dimension.source_fieldname)
Rohit Waghchauredbec5cf2022-06-22 12:24:08 +0530659
Rohit Waghchaure0b39a012022-08-17 11:56:13 +0530660 if not sl_dict.get(dimension.target_fieldname) and dimension.fetch_from_parent:
661 sl_dict[dimension.target_fieldname] = self.get(dimension.fetch_from_parent)
662
663 # Get value based on doctype name
664 if not sl_dict.get(dimension.target_fieldname):
Daizy Modi4efc9472022-11-07 09:21:03 +0530665 fieldname = next(
666 (
667 field.fieldname
668 for field in frappe.get_meta(self.doctype).fields
669 if field.options == dimension.fetch_from_parent
670 ),
671 None,
Rohit Waghchaure0b39a012022-08-17 11:56:13 +0530672 )
673
674 if fieldname and self.get(fieldname):
675 sl_dict[dimension.target_fieldname] = self.get(fieldname)
676
Rohit Waghchaure75fcab02022-09-03 17:09:24 +0530677 if sl_dict[dimension.target_fieldname] and self.docstatus == 1:
678 row.db_set(dimension.source_fieldname, sl_dict[dimension.target_fieldname])
Rohit Waghchaure23729992022-09-02 18:43:55 +0530679
Ankush Menat494bd9e2022-03-28 18:52:46 +0530680 def make_sl_entries(self, sl_entries, allow_negative_stock=False, via_landed_cost_voucher=False):
Rushabh Mehta1f847992013-12-12 19:12:19 +0530681 from erpnext.stock.stock_ledger import make_sl_entries
Ankush Menat494bd9e2022-03-28 18:52:46 +0530682
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +0530683 make_sl_entries(sl_entries, allow_negative_stock, via_landed_cost_voucher)
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530684
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +0530685 def make_gl_entries_on_cancel(self):
ruthra kumar46ea8142023-07-28 08:29:19 +0530686 cancel_exchange_gain_loss_journal(frappe._dict(doctype=self.doctype, name=self.name))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530687 if frappe.db.sql(
688 """select name from `tabGL Entry` where voucher_type=%s
689 and voucher_no=%s""",
690 (self.doctype, self.name),
691 ):
692 self.make_gl_entries()
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530693
Anand Doshia740f752014-06-25 13:31:02 +0530694 def get_serialized_items(self):
695 serialized_items = []
Ankush Menata9c84f72021-06-11 16:00:48 +0530696 item_codes = list(set(d.item_code for d in self.get("items")))
Anand Doshia740f752014-06-25 13:31:02 +0530697 if item_codes:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530698 serialized_items = frappe.db.sql_list(
699 """select name from `tabItem`
700 where has_serial_no=1 and name in ({})""".format(
701 ", ".join(["%s"] * len(item_codes))
702 ),
703 tuple(item_codes),
704 )
Anand Doshia740f752014-06-25 13:31:02 +0530705
706 return serialized_items
Rushabh Mehtab16b9cd2015-08-03 16:13:33 +0530707
Saurabh2e292062015-11-18 17:03:33 +0530708 def validate_warehouse(self):
Rohan Bansal7f8b95e2021-04-14 14:12:03 +0530709 from erpnext.stock.utils import validate_disabled_warehouse, validate_warehouse_company
Saurabh2e292062015-11-18 17:03:33 +0530710
Ankush Menat494bd9e2022-03-28 18:52:46 +0530711 warehouses = list(set(d.warehouse for d in self.get("items") if getattr(d, "warehouse", None)))
Saurabh2e292062015-11-18 17:03:33 +0530712
Ankush Menat494bd9e2022-03-28 18:52:46 +0530713 target_warehouses = list(
714 set([d.target_warehouse for d in self.get("items") if getattr(d, "target_warehouse", None)])
715 )
Deepesh Garg15ff6a52020-02-18 12:28:41 +0530716
717 warehouses.extend(target_warehouses)
718
Ankush Menat494bd9e2022-03-28 18:52:46 +0530719 from_warehouse = list(
720 set([d.from_warehouse for d in self.get("items") if getattr(d, "from_warehouse", None)])
721 )
Deepesh Garg15ff6a52020-02-18 12:28:41 +0530722
723 warehouses.extend(from_warehouse)
724
Saurabh2e292062015-11-18 17:03:33 +0530725 for w in warehouses:
Jannat Patel30c88732021-02-11 11:46:48 +0530726 validate_disabled_warehouse(w)
Saurabh2e292062015-11-18 17:03:33 +0530727 validate_warehouse_company(w, self.company)
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530728
Anand Doshi6b71ef52016-01-06 16:32:06 +0530729 def update_billing_percentage(self, update_modified=True):
marinationd6596a12020-11-02 15:07:48 +0530730 target_ref_field = "amount"
731 if self.doctype == "Delivery Note":
732 target_ref_field = "amount - (returned_qty * rate)"
733
Ankush Menat494bd9e2022-03-28 18:52:46 +0530734 self._update_percent_field(
735 {
736 "target_dt": self.doctype + " Item",
737 "target_parent_dt": self.doctype,
738 "target_parent_field": "per_billed",
739 "target_ref_field": target_ref_field,
740 "target_field": "billed_amt",
741 "name": self.name,
742 },
743 update_modified,
744 )
Anand Doshia740f752014-06-25 13:31:02 +0530745
Nabin Hait8af429d2016-11-16 17:21:59 +0530746 def validate_inspection(self):
marination9ac9a4e2021-06-21 16:18:35 +0530747 """Checks if quality inspection is set/ is valid for Items that require inspection."""
748 inspection_fieldname_map = {
749 "Purchase Receipt": "inspection_required_before_purchase",
750 "Purchase Invoice": "inspection_required_before_purchase",
s-aga-r3fdcd332023-08-23 12:15:35 +0530751 "Subcontracting Receipt": "inspection_required_before_purchase",
marination9ac9a4e2021-06-21 16:18:35 +0530752 "Sales Invoice": "inspection_required_before_delivery",
Ankush Menat494bd9e2022-03-28 18:52:46 +0530753 "Delivery Note": "inspection_required_before_delivery",
marination9ac9a4e2021-06-21 16:18:35 +0530754 }
755 inspection_required_fieldname = inspection_fieldname_map.get(self.doctype)
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530756
marination9ac9a4e2021-06-21 16:18:35 +0530757 # return if inspection is not required on document level
Ankush Menat494bd9e2022-03-28 18:52:46 +0530758 if (
759 (not inspection_required_fieldname and self.doctype != "Stock Entry")
760 or (self.doctype == "Stock Entry" and not self.inspection_required)
761 or (self.doctype in ["Sales Invoice", "Purchase Invoice"] and not self.update_stock)
762 ):
763 return
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530764
Ankush Menat494bd9e2022-03-28 18:52:46 +0530765 for row in self.get("items"):
marination9ac9a4e2021-06-21 16:18:35 +0530766 qi_required = False
Ankush Menat494bd9e2022-03-28 18:52:46 +0530767 if inspection_required_fieldname and frappe.db.get_value(
768 "Item", row.item_code, inspection_required_fieldname
769 ):
marination9ac9a4e2021-06-21 16:18:35 +0530770 qi_required = True
771 elif self.doctype == "Stock Entry" and row.t_warehouse:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530772 qi_required = True # inward stock needs inspection
Rushabh Mehtaffd80a62017-01-16 17:23:20 +0530773
Ankush Menat494bd9e2022-03-28 18:52:46 +0530774 if qi_required: # validate row only if inspection is required on item level
marination9ac9a4e2021-06-21 16:18:35 +0530775 self.validate_qi_presence(row)
776 if self.docstatus == 1:
777 self.validate_qi_submission(row)
778 self.validate_qi_rejection(row)
779
780 def validate_qi_presence(self, row):
781 """Check if QI is present on row level. Warn on save and stop on submit if missing."""
782 if not row.quality_inspection:
marination654e9d82021-06-21 16:51:12 +0530783 msg = f"Row #{row.idx}: Quality Inspection is required for Item {frappe.bold(row.item_code)}"
marination9ac9a4e2021-06-21 16:18:35 +0530784 if self.docstatus == 1:
marination654e9d82021-06-21 16:51:12 +0530785 frappe.throw(_(msg), title=_("Inspection Required"), exc=QualityInspectionRequiredError)
marination9ac9a4e2021-06-21 16:18:35 +0530786 else:
marination654e9d82021-06-21 16:51:12 +0530787 frappe.msgprint(_(msg), title=_("Inspection Required"), indicator="blue")
marination9ac9a4e2021-06-21 16:18:35 +0530788
789 def validate_qi_submission(self, row):
790 """Check if QI is submitted on row level, during submission"""
Ankush Menat494bd9e2022-03-28 18:52:46 +0530791 action = frappe.db.get_single_value(
792 "Stock Settings", "action_if_quality_inspection_is_not_submitted"
793 )
marination9ac9a4e2021-06-21 16:18:35 +0530794 qa_docstatus = frappe.db.get_value("Quality Inspection", row.quality_inspection, "docstatus")
795
barredterraeb9ee3f2023-12-05 11:22:55 +0100796 if qa_docstatus != 1:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530797 link = frappe.utils.get_link_to_form("Quality Inspection", row.quality_inspection)
798 msg = (
799 f"Row #{row.idx}: Quality Inspection {link} is not submitted for the item: {row.item_code}"
800 )
marination9ac9a4e2021-06-21 16:18:35 +0530801 if action == "Stop":
marination654e9d82021-06-21 16:51:12 +0530802 frappe.throw(_(msg), title=_("Inspection Submission"), exc=QualityInspectionNotSubmittedError)
marination9ac9a4e2021-06-21 16:18:35 +0530803 else:
Marica9ba3fce2021-06-22 11:20:17 +0530804 frappe.msgprint(_(msg), alert=True, indicator="orange")
marination9ac9a4e2021-06-21 16:18:35 +0530805
806 def validate_qi_rejection(self, row):
807 """Check if QI is rejected on row level, during submission"""
marinationf67f13c2021-07-10 18:24:24 +0530808 action = frappe.db.get_single_value("Stock Settings", "action_if_quality_inspection_is_rejected")
marination9ac9a4e2021-06-21 16:18:35 +0530809 qa_status = frappe.db.get_value("Quality Inspection", row.quality_inspection, "status")
810
811 if qa_status == "Rejected":
Ankush Menat494bd9e2022-03-28 18:52:46 +0530812 link = frappe.utils.get_link_to_form("Quality Inspection", row.quality_inspection)
marination654e9d82021-06-21 16:51:12 +0530813 msg = f"Row #{row.idx}: Quality Inspection {link} was rejected for item {row.item_code}"
marination9ac9a4e2021-06-21 16:18:35 +0530814 if action == "Stop":
marination654e9d82021-06-21 16:51:12 +0530815 frappe.throw(_(msg), title=_("Inspection Rejected"), exc=QualityInspectionRejectedError)
marination9ac9a4e2021-06-21 16:18:35 +0530816 else:
marination654e9d82021-06-21 16:51:12 +0530817 frappe.msgprint(_(msg), alert=True, indicator="orange")
Manas Solankicc902412016-11-10 19:15:11 +0530818
Nabin Haitb2d3c0f2018-06-14 15:54:34 +0530819 def update_blanket_order(self):
Nabin Haitd1f40ad2018-06-14 17:09:55 +0530820 blanket_orders = list(set([d.blanket_order for d in self.items if d.blanket_order]))
Nabin Haitb2d3c0f2018-06-14 15:54:34 +0530821 for blanket_order in blanket_orders:
822 frappe.get_doc("Blanket Order", blanket_order).update_ordered_qty()
Manas Solankie5e87f72018-05-28 20:07:08 +0530823
marinationfd04e962020-04-03 15:46:48 +0530824 def validate_customer_provided_item(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530825 for d in self.get("items"):
marinationfd04e962020-04-03 15:46:48 +0530826 # Customer Provided parts will have zero valuation rate
Rohit Waghchaure2d5ccc02023-05-01 21:17:18 +0530827 if frappe.get_cached_value("Item", d.item_code, "is_customer_provided_item"):
marinationfd04e962020-04-03 15:46:48 +0530828 d.allow_zero_valuation_rate = 1
Anand Doshi2ce39cf2014-04-07 18:51:58 +0530829
Anupam Kumar7e1dcf92021-02-11 20:19:30 +0530830 def set_rate_of_stock_uom(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530831 if self.doctype in [
832 "Purchase Receipt",
833 "Purchase Invoice",
834 "Purchase Order",
835 "Sales Invoice",
836 "Sales Order",
837 "Delivery Note",
838 "Quotation",
839 ]:
Anupam Kumar7e1dcf92021-02-11 20:19:30 +0530840 for d in self.get("items"):
Rohit Waghchaure13584432021-03-26 14:11:50 +0530841 d.stock_uom_rate = d.rate / (d.conversion_factor or 1)
Anupam Kumar7e1dcf92021-02-11 20:19:30 +0530842
Deepesh Gargb4be2922021-01-28 13:09:56 +0530843 def validate_internal_transfer(self):
rohitwaghchaure5136fe12023-10-22 20:03:02 +0530844 if self.doctype in ("Sales Invoice", "Delivery Note", "Purchase Invoice", "Purchase Receipt"):
845 if self.is_internal_transfer():
846 self.validate_in_transit_warehouses()
847 self.validate_multi_currency()
848 self.validate_packed_items()
rohitwaghchaure8fdc2442024-01-27 21:37:58 +0530849
850 if self.get("is_internal_supplier"):
851 self.validate_internal_transfer_qty()
rohitwaghchaure5136fe12023-10-22 20:03:02 +0530852 else:
853 self.validate_internal_transfer_warehouse()
854
855 def validate_internal_transfer_warehouse(self):
856 for row in self.items:
857 if row.get("target_warehouse"):
858 row.target_warehouse = None
859
860 if row.get("from_warehouse"):
861 row.from_warehouse = None
Deepesh Gargb4be2922021-01-28 13:09:56 +0530862
863 def validate_in_transit_warehouses(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530864 if (
865 self.doctype == "Sales Invoice" and self.get("update_stock")
866 ) or self.doctype == "Delivery Note":
867 for item in self.get("items"):
Deepesh Gargb4be2922021-01-28 13:09:56 +0530868 if not item.target_warehouse:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530869 frappe.throw(
870 _("Row {0}: Target Warehouse is mandatory for internal transfers").format(item.idx)
871 )
Deepesh Gargb4be2922021-01-28 13:09:56 +0530872
Ankush Menat494bd9e2022-03-28 18:52:46 +0530873 if (
874 self.doctype == "Purchase Invoice" and self.get("update_stock")
875 ) or self.doctype == "Purchase Receipt":
876 for item in self.get("items"):
Deepesh Gargb4be2922021-01-28 13:09:56 +0530877 if not item.from_warehouse:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530878 frappe.throw(
879 _("Row {0}: From Warehouse is mandatory for internal transfers").format(item.idx)
880 )
Deepesh Gargb4be2922021-01-28 13:09:56 +0530881
882 def validate_multi_currency(self):
883 if self.currency != self.company_currency:
884 frappe.throw(_("Internal transfers can only be done in company's default currency"))
885
886 def validate_packed_items(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530887 if self.doctype in ("Sales Invoice", "Delivery Note Item") and self.get("packed_items"):
Deepesh Gargb4be2922021-01-28 13:09:56 +0530888 frappe.throw(_("Packed Items cannot be transferred internally"))
889
rohitwaghchaure8fdc2442024-01-27 21:37:58 +0530890 def validate_internal_transfer_qty(self):
891 if self.doctype not in ["Purchase Invoice", "Purchase Receipt"]:
892 return
893
894 item_wise_transfer_qty = self.get_item_wise_inter_transfer_qty()
895 if not item_wise_transfer_qty:
896 return
897
898 item_wise_received_qty = self.get_item_wise_inter_received_qty()
899 precision = frappe.get_precision(self.doctype + " Item", "qty")
900
901 over_receipt_allowance = frappe.db.get_single_value(
902 "Stock Settings", "over_delivery_receipt_allowance"
903 )
904
905 parent_doctype = {
906 "Purchase Receipt": "Delivery Note",
907 "Purchase Invoice": "Sales Invoice",
908 }.get(self.doctype)
909
910 for key, transferred_qty in item_wise_transfer_qty.items():
911 recevied_qty = flt(item_wise_received_qty.get(key), precision)
912 if over_receipt_allowance:
913 transferred_qty = transferred_qty + flt(
914 transferred_qty * over_receipt_allowance / 100, precision
915 )
916
917 if recevied_qty > flt(transferred_qty, precision):
918 frappe.throw(
919 _("For Item {0} cannot be received more than {1} qty against the {2} {3}").format(
920 bold(key[1]),
921 bold(flt(transferred_qty, precision)),
922 bold(parent_doctype),
923 get_link_to_form(parent_doctype, self.get("inter_company_reference")),
924 )
925 )
926
927 def get_item_wise_inter_transfer_qty(self):
928 reference_field = "inter_company_reference"
929 if self.doctype == "Purchase Invoice":
930 reference_field = "inter_company_invoice_reference"
931
932 parent_doctype = {
933 "Purchase Receipt": "Delivery Note",
934 "Purchase Invoice": "Sales Invoice",
935 }.get(self.doctype)
936
937 child_doctype = parent_doctype + " Item"
938
939 parent_tab = frappe.qb.DocType(parent_doctype)
940 child_tab = frappe.qb.DocType(child_doctype)
941
942 query = (
943 frappe.qb.from_(parent_doctype)
944 .inner_join(child_tab)
945 .on(child_tab.parent == parent_tab.name)
946 .select(
947 child_tab.name,
948 child_tab.item_code,
949 child_tab.qty,
950 )
951 .where((parent_tab.name == self.get(reference_field)) & (parent_tab.docstatus == 1))
952 )
953
954 data = query.run(as_dict=True)
955 item_wise_transfer_qty = defaultdict(float)
956 for row in data:
957 item_wise_transfer_qty[(row.name, row.item_code)] += flt(row.qty)
958
959 return item_wise_transfer_qty
960
961 def get_item_wise_inter_received_qty(self):
962 child_doctype = self.doctype + " Item"
963
964 parent_tab = frappe.qb.DocType(self.doctype)
965 child_tab = frappe.qb.DocType(child_doctype)
966
967 query = (
968 frappe.qb.from_(self.doctype)
969 .inner_join(child_tab)
970 .on(child_tab.parent == parent_tab.name)
971 .select(
972 child_tab.item_code,
973 child_tab.qty,
974 )
975 .where(parent_tab.docstatus < 2)
976 )
977
978 if self.doctype == "Purchase Invoice":
979 query = query.select(
980 child_tab.sales_invoice_item.as_("name"),
981 )
982
983 query = query.where(
984 parent_tab.inter_company_invoice_reference == self.inter_company_invoice_reference
985 )
986 else:
987 query = query.select(
988 child_tab.delivery_note_item.as_("name"),
989 )
990
991 query = query.where(parent_tab.inter_company_reference == self.inter_company_reference)
992
993 data = query.run(as_dict=True)
994 item_wise_transfer_qty = defaultdict(float)
995 for row in data:
996 item_wise_transfer_qty[(row.name, row.item_code)] += flt(row.qty)
997
998 return item_wise_transfer_qty
999
marinationfac40352020-12-07 21:35:49 +05301000 def validate_putaway_capacity(self):
1001 # if over receipt is attempted while 'apply putaway rule' is disabled
1002 # and if rule was applied on the transaction, validate it.
marination957615b2021-01-18 23:47:24 +05301003 from erpnext.stock.doctype.putaway_rule.putaway_rule import get_available_putaway_capacity
Ankush Menat494bd9e2022-03-28 18:52:46 +05301004
1005 valid_doctype = self.doctype in (
1006 "Purchase Receipt",
1007 "Stock Entry",
1008 "Purchase Invoice",
1009 "Stock Reconciliation",
1010 )
marinationfac40352020-12-07 21:35:49 +05301011
rohitwaghchaureb966c062024-02-12 12:49:09 +05301012 if not frappe.get_all("Putaway Rule", limit=1):
1013 return
1014
marination957615b2021-01-18 23:47:24 +05301015 if self.doctype == "Purchase Invoice" and self.get("update_stock") == 0:
1016 valid_doctype = False
1017
1018 if valid_doctype:
marinationfac40352020-12-07 21:35:49 +05301019 rule_map = defaultdict(dict)
1020 for item in self.get("items"):
marination957615b2021-01-18 23:47:24 +05301021 warehouse_field = "t_warehouse" if self.doctype == "Stock Entry" else "warehouse"
Ankush Menat494bd9e2022-03-28 18:52:46 +05301022 rule = frappe.db.get_value(
1023 "Putaway Rule",
1024 {"item_code": item.get("item_code"), "warehouse": item.get(warehouse_field)},
1025 ["name", "disable"],
1026 as_dict=True,
1027 )
marination957615b2021-01-18 23:47:24 +05301028 if rule:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301029 if rule.get("disabled"):
1030 continue # dont validate for disabled rule
marination957615b2021-01-18 23:47:24 +05301031
1032 if self.doctype == "Stock Reconciliation":
1033 stock_qty = flt(item.qty)
1034 else:
1035 stock_qty = flt(item.transfer_qty) if self.doctype == "Stock Entry" else flt(item.stock_qty)
1036
1037 rule_name = rule.get("name")
1038 if not rule_map[rule_name]:
1039 rule_map[rule_name]["warehouse"] = item.get(warehouse_field)
1040 rule_map[rule_name]["item"] = item.get("item_code")
1041 rule_map[rule_name]["qty_put"] = 0
1042 rule_map[rule_name]["capacity"] = get_available_putaway_capacity(rule_name)
1043 rule_map[rule_name]["qty_put"] += flt(stock_qty)
marinationfac40352020-12-07 21:35:49 +05301044
1045 for rule, values in rule_map.items():
1046 if flt(values["qty_put"]) > flt(values["capacity"]):
marination957615b2021-01-18 23:47:24 +05301047 message = self.prepare_over_receipt_message(rule, values)
marinationfac40352020-12-07 21:35:49 +05301048 frappe.throw(msg=message, title=_("Over Receipt"))
marination957615b2021-01-18 23:47:24 +05301049
1050 def prepare_over_receipt_message(self, rule, values):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301051 message = _(
1052 "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
1053 ).format(
1054 frappe.bold(values["qty_put"]),
1055 frappe.bold(values["item"]),
1056 frappe.bold(values["warehouse"]),
1057 frappe.bold(values["capacity"]),
1058 )
marination957615b2021-01-18 23:47:24 +05301059 message += "<br><br>"
1060 rule_link = frappe.utils.get_link_to_form("Putaway Rule", rule)
Ankush Menatad6a2652021-04-17 16:50:02 +05301061 message += _("Please adjust the qty or edit {0} to proceed.").format(rule_link)
marination957615b2021-01-18 23:47:24 +05301062 return message
marinationfac40352020-12-07 21:35:49 +05301063
Rohit Waghchaure2d5ccc02023-05-01 21:17:18 +05301064 def repost_future_sle_and_gle(self, force=False):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301065 args = frappe._dict(
1066 {
1067 "posting_date": self.posting_date,
1068 "posting_time": self.posting_time,
1069 "voucher_type": self.doctype,
1070 "voucher_no": self.name,
1071 "company": self.company,
1072 }
1073 )
Ankush Menat3638fbf2022-03-01 18:17:14 +05301074
Rohit Waghchaure6e661e72023-05-16 16:23:52 +05301075 if self.docstatus == 2:
1076 force = True
1077
Rohit Waghchaure2d5ccc02023-05-01 21:17:18 +05301078 if force or future_sle_exists(args) or repost_required_for_queue(self):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301079 item_based_reposting = cint(
1080 frappe.db.get_single_value("Stock Reposting Settings", "item_based_reposting")
1081 )
Ankush Menat45dd46b2021-11-02 10:50:52 +05301082 if item_based_reposting:
1083 create_item_wise_repost_entries(voucher_type=self.doctype, voucher_no=self.name)
1084 else:
1085 create_repost_item_valuation_entry(args)
1086
Sagar Sharmaf4673942022-08-21 21:26:06 +05301087 def add_gl_entry(
1088 self,
1089 gl_entries,
1090 account,
1091 cost_center,
1092 debit,
1093 credit,
1094 remarks,
1095 against_account,
1096 debit_in_account_currency=None,
1097 credit_in_account_currency=None,
1098 account_currency=None,
1099 project=None,
1100 voucher_detail_no=None,
1101 item=None,
1102 posting_date=None,
1103 ):
1104
1105 gl_entry = {
1106 "account": account,
1107 "cost_center": cost_center,
1108 "debit": debit,
1109 "credit": credit,
1110 "against": against_account,
1111 "remarks": remarks,
1112 }
1113
1114 if voucher_detail_no:
1115 gl_entry.update({"voucher_detail_no": voucher_detail_no})
1116
1117 if debit_in_account_currency:
1118 gl_entry.update({"debit_in_account_currency": debit_in_account_currency})
1119
1120 if credit_in_account_currency:
1121 gl_entry.update({"credit_in_account_currency": credit_in_account_currency})
1122
1123 if posting_date:
1124 gl_entry.update({"posting_date": posting_date})
1125
1126 gl_entries.append(self.get_gl_dict(gl_entry, item=item))
1127
Ankush Menat494bd9e2022-03-28 18:52:46 +05301128
Deepesh Garg2e52a632023-06-04 19:20:28 +05301129@frappe.whitelist()
Deepesh Garg0e68da52023-06-22 15:43:32 +05301130def show_accounting_ledger_preview(company, doctype, docname):
Smit Vora77cc91d2023-10-19 22:35:55 +05301131 filters = frappe._dict(company=company, include_dimensions=1)
Deepesh Garg0e68da52023-06-22 15:43:32 +05301132 doc = frappe.get_doc(doctype, docname)
Smit Vora77cc91d2023-10-19 22:35:55 +05301133 doc.run_method("before_gl_preview")
Deepesh Garg0e68da52023-06-22 15:43:32 +05301134
1135 gl_columns, gl_data = get_accounting_ledger_preview(doc, filters)
1136
Deepesh Gargd9e7bc52023-06-22 16:07:32 +05301137 frappe.db.rollback()
Deepesh Garg0e68da52023-06-22 15:43:32 +05301138
1139 return {"gl_columns": gl_columns, "gl_data": gl_data}
1140
1141
1142@frappe.whitelist()
1143def show_stock_ledger_preview(company, doctype, docname):
Smit Vora77cc91d2023-10-19 22:35:55 +05301144 filters = frappe._dict(company=company)
Deepesh Garg2e52a632023-06-04 19:20:28 +05301145 doc = frappe.get_doc(doctype, docname)
Smit Vora77cc91d2023-10-19 22:35:55 +05301146 doc.run_method("before_sl_preview")
Deepesh Garge30c3ea2023-06-12 11:46:51 +05301147
Deepesh Garg011ac132023-06-12 18:42:49 +05301148 sl_columns, sl_data = get_stock_ledger_preview(doc, filters)
Deepesh Garge30c3ea2023-06-12 11:46:51 +05301149
Deepesh Gargd9e7bc52023-06-22 16:07:32 +05301150 frappe.db.rollback()
Deepesh Garge30c3ea2023-06-12 11:46:51 +05301151
Deepesh Garg2e52a632023-06-04 19:20:28 +05301152 return {
Deepesh Garg011ac132023-06-12 18:42:49 +05301153 "sl_columns": sl_columns,
1154 "sl_data": sl_data,
Deepesh Garg2e52a632023-06-04 19:20:28 +05301155 }
1156
1157
Deepesh Garg011ac132023-06-12 18:42:49 +05301158def get_accounting_ledger_preview(doc, filters):
1159 from erpnext.accounts.report.general_ledger.general_ledger import get_columns as get_gl_columns
1160
1161 gl_columns, gl_data = [], []
1162 fields = [
1163 "posting_date",
1164 "account",
1165 "debit",
1166 "credit",
1167 "against",
1168 "party",
1169 "party_type",
Deepesh Garg0e68da52023-06-22 15:43:32 +05301170 "cost_center",
Deepesh Garg011ac132023-06-12 18:42:49 +05301171 "against_voucher_type",
1172 "against_voucher",
1173 ]
1174
1175 doc.docstatus = 1
Deepesh Garg0e68da52023-06-22 15:43:32 +05301176
1177 if doc.get("update_stock") or doc.doctype in ("Purchase Receipt", "Delivery Note"):
1178 doc.update_stock_ledger()
1179
Deepesh Garg011ac132023-06-12 18:42:49 +05301180 doc.make_gl_entries()
1181 columns = get_gl_columns(filters)
1182 gl_entries = get_gl_entries_for_preview(doc.doctype, doc.name, fields)
1183
1184 gl_columns = get_columns(columns, fields)
1185 gl_data = get_data(fields, gl_entries)
1186
1187 return gl_columns, gl_data
1188
1189
1190def get_stock_ledger_preview(doc, filters):
1191 from erpnext.stock.report.stock_ledger.stock_ledger import get_columns as get_sl_columns
1192
1193 sl_columns, sl_data = [], []
1194 fields = [
1195 "item_code",
1196 "stock_uom",
1197 "actual_qty",
1198 "qty_after_transaction",
1199 "warehouse",
1200 "incoming_rate",
1201 "valuation_rate",
1202 "stock_value",
1203 "stock_value_difference",
1204 ]
1205 columns_fields = [
1206 "item_code",
1207 "stock_uom",
1208 "in_qty",
1209 "out_qty",
1210 "qty_after_transaction",
1211 "warehouse",
1212 "incoming_rate",
Deepesh Garg0e68da52023-06-22 15:43:32 +05301213 "in_out_rate",
Deepesh Garg011ac132023-06-12 18:42:49 +05301214 "stock_value",
1215 "stock_value_difference",
1216 ]
1217
Deepesh Garg0e68da52023-06-22 15:43:32 +05301218 if doc.get("update_stock") or doc.doctype in ("Purchase Receipt", "Delivery Note"):
Deepesh Garg011ac132023-06-12 18:42:49 +05301219 doc.docstatus = 1
1220 doc.update_stock_ledger()
1221 columns = get_sl_columns(filters)
1222 sl_entries = get_sl_entries_for_preview(doc.doctype, doc.name, fields)
1223
1224 sl_columns = get_columns(columns, columns_fields)
1225 sl_data = get_data(columns_fields, sl_entries)
1226
1227 return sl_columns, sl_data
1228
1229
1230def get_sl_entries_for_preview(doctype, docname, fields):
1231 sl_entries = frappe.get_all(
1232 "Stock Ledger Entry", filters={"voucher_type": doctype, "voucher_no": docname}, fields=fields
1233 )
1234
1235 for entry in sl_entries:
1236 if entry.actual_qty > 0:
1237 entry["in_qty"] = entry.actual_qty
1238 entry["out_qty"] = 0
1239 else:
1240 entry["out_qty"] = abs(entry.actual_qty)
1241 entry["in_qty"] = 0
1242
Deepesh Garg0e68da52023-06-22 15:43:32 +05301243 entry["in_out_rate"] = entry["valuation_rate"]
1244
Deepesh Garg011ac132023-06-12 18:42:49 +05301245 return sl_entries
1246
1247
1248def get_gl_entries_for_preview(doctype, docname, fields):
Deepesh Garge30c3ea2023-06-12 11:46:51 +05301249 return frappe.get_all(
Deepesh Garg011ac132023-06-12 18:42:49 +05301250 "GL Entry", filters={"voucher_type": doctype, "voucher_no": docname}, fields=fields
Deepesh Garge30c3ea2023-06-12 11:46:51 +05301251 )
1252
1253
Deepesh Garg011ac132023-06-12 18:42:49 +05301254def get_columns(raw_columns, fields):
Deepesh Garge30c3ea2023-06-12 11:46:51 +05301255 return [
Deepesh Garg011ac132023-06-12 18:42:49 +05301256 {"name": d.get("label"), "editable": False, "width": 110}
Deepesh Garge30c3ea2023-06-12 11:46:51 +05301257 for d in raw_columns
Deepesh Garg011ac132023-06-12 18:42:49 +05301258 if not d.get("hidden") and d.get("fieldname") in fields
Deepesh Garge30c3ea2023-06-12 11:46:51 +05301259 ]
1260
1261
1262def get_data(raw_columns, raw_data):
1263 datatable_data = []
1264 for row in raw_data:
1265 data_row = []
1266 for column in raw_columns:
Deepesh Garg011ac132023-06-12 18:42:49 +05301267 data_row.append(row.get(column) or "")
Deepesh Garge30c3ea2023-06-12 11:46:51 +05301268
1269 datatable_data.append(data_row)
1270
1271 return datatable_data
1272
1273
Ankush Menat3638fbf2022-03-01 18:17:14 +05301274def repost_required_for_queue(doc: StockController) -> bool:
1275 """check if stock document contains repeated item-warehouse with queue based valuation.
1276
1277 if queue exists for repeated items then SLEs need to reprocessed in background again.
1278 """
1279
Ankush Menat494bd9e2022-03-28 18:52:46 +05301280 consuming_sles = frappe.db.get_all(
1281 "Stock Ledger Entry",
Ankush Menat3638fbf2022-03-01 18:17:14 +05301282 filters={
1283 "voucher_type": doc.doctype,
1284 "voucher_no": doc.name,
1285 "actual_qty": ("<", 0),
Ankush Menat494bd9e2022-03-28 18:52:46 +05301286 "is_cancelled": 0,
Ankush Menat3638fbf2022-03-01 18:17:14 +05301287 },
Ankush Menat494bd9e2022-03-28 18:52:46 +05301288 fields=["item_code", "warehouse", "stock_queue"],
Ankush Menat3638fbf2022-03-01 18:17:14 +05301289 )
1290 item_warehouses = [(sle.item_code, sle.warehouse) for sle in consuming_sles]
1291
1292 unique_item_warehouses = set(item_warehouses)
1293
1294 if len(unique_item_warehouses) == len(item_warehouses):
1295 return False
1296
1297 for sle in consuming_sles:
1298 if sle.stock_queue != "[]": # using FIFO/LIFO valuation
1299 return True
1300 return False
1301
Nabin Hait19f8fa52021-02-22 22:27:22 +05301302
Rohan Bansal7f8b95e2021-04-14 14:12:03 +05301303@frappe.whitelist()
1304def make_quality_inspections(doctype, docname, items):
Rohan Bansala06ec032021-06-02 14:55:31 +05301305 if isinstance(items, str):
1306 items = json.loads(items)
Rohan Bansal7f8b95e2021-04-14 14:12:03 +05301307
Rohan Bansala06ec032021-06-02 14:55:31 +05301308 inspections = []
Rohan Bansal7f8b95e2021-04-14 14:12:03 +05301309 for item in items:
Rohan Bansal1cdf5a02021-05-26 14:42:15 +05301310 if flt(item.get("sample_size")) > flt(item.get("qty")):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301311 frappe.throw(
1312 _(
1313 "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
1314 ).format(
1315 item_name=item.get("item_name"),
1316 sample_size=item.get("sample_size"),
1317 accepted_quantity=item.get("qty"),
1318 )
1319 )
Rohan Bansal7f8b95e2021-04-14 14:12:03 +05301320
Ankush Menat494bd9e2022-03-28 18:52:46 +05301321 quality_inspection = frappe.get_doc(
1322 {
1323 "doctype": "Quality Inspection",
1324 "inspection_type": "Incoming",
1325 "inspected_by": frappe.session.user,
1326 "reference_type": doctype,
1327 "reference_name": docname,
1328 "item_code": item.get("item_code"),
1329 "description": item.get("description"),
1330 "sample_size": flt(item.get("sample_size")),
1331 "item_serial_no": item.get("serial_no").split("\n")[0] if item.get("serial_no") else None,
1332 "batch_no": item.get("batch_no"),
1333 }
1334 ).insert()
Rohan Bansal7f8b95e2021-04-14 14:12:03 +05301335 quality_inspection.save()
Rohan Bansal1cdf5a02021-05-26 14:42:15 +05301336 inspections.append(quality_inspection.name)
Rohan Bansal7f8b95e2021-04-14 14:12:03 +05301337
Rohan Bansal1cdf5a02021-05-26 14:42:15 +05301338 return inspections
Rohan Bansal7f8b95e2021-04-14 14:12:03 +05301339
Ankush Menat494bd9e2022-03-28 18:52:46 +05301340
Nabin Haitb99c77b2020-12-25 18:12:35 +05301341def is_reposting_pending():
Ankush Menat494bd9e2022-03-28 18:52:46 +05301342 return frappe.db.exists(
1343 "Repost Item Valuation", {"docstatus": 1, "status": ["in", ["Queued", "In Progress"]]}
1344 )
1345
Nabin Haitb99c77b2020-12-25 18:12:35 +05301346
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301347def future_sle_exists(args, sl_entries=None):
1348 key = (args.voucher_type, args.voucher_no)
Rohit Waghchaured9dd64b2023-04-14 13:00:12 +05301349 if not hasattr(frappe.local, "future_sle"):
1350 frappe.local.future_sle = {}
Nabin Haita77b8c92020-12-21 14:45:50 +05301351
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301352 if validate_future_sle_not_exists(args, key, sl_entries):
1353 return False
1354 elif get_cached_data(args, key):
1355 return True
1356
1357 if not sl_entries:
1358 sl_entries = get_sle_entries_against_voucher(args)
1359 if not sl_entries:
1360 return
1361
1362 or_conditions = get_conditions_to_validate_future_sle(sl_entries)
1363
Ankush Menat494bd9e2022-03-28 18:52:46 +05301364 data = frappe.db.sql(
1365 """
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301366 select item_code, warehouse, count(name) as total_row
Deepesh Garg6f107da2021-10-12 20:15:55 +05301367 from `tabStock Ledger Entry` force index (item_warehouse)
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301368 where
1369 ({})
1370 and timestamp(posting_date, posting_time)
1371 >= timestamp(%(posting_date)s, %(posting_time)s)
1372 and voucher_no != %(voucher_no)s
1373 and is_cancelled = 0
1374 GROUP BY
1375 item_code, warehouse
Ankush Menat494bd9e2022-03-28 18:52:46 +05301376 """.format(
1377 " or ".join(or_conditions)
1378 ),
1379 args,
1380 as_dict=1,
1381 )
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301382
1383 for d in data:
1384 frappe.local.future_sle[key][(d.item_code, d.warehouse)] = d.total_row
1385
1386 return len(data)
1387
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301388
Ankush Menat494bd9e2022-03-28 18:52:46 +05301389def validate_future_sle_not_exists(args, key, sl_entries=None):
1390 item_key = ""
1391 if args.get("item_code"):
1392 item_key = (args.get("item_code"), args.get("warehouse"))
1393
1394 if not sl_entries and hasattr(frappe.local, "future_sle"):
Rohit Waghchaured9dd64b2023-04-14 13:00:12 +05301395 if key not in frappe.local.future_sle:
1396 return False
1397
Ankush Menat494bd9e2022-03-28 18:52:46 +05301398 if not frappe.local.future_sle.get(key) or (
1399 item_key and item_key not in frappe.local.future_sle.get(key)
1400 ):
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301401 return True
1402
Ankush Menat494bd9e2022-03-28 18:52:46 +05301403
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301404def get_cached_data(args, key):
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301405 if key not in frappe.local.future_sle:
Rohit Waghchaure2d5ccc02023-05-01 21:17:18 +05301406 frappe.local.future_sle[key] = frappe._dict({})
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301407
Ankush Menat494bd9e2022-03-28 18:52:46 +05301408 if args.get("item_code"):
1409 item_key = (args.get("item_code"), args.get("warehouse"))
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301410 count = frappe.local.future_sle[key].get(item_key)
1411
1412 return True if (count or count == 0) else False
1413 else:
1414 return frappe.local.future_sle[key]
1415
Ankush Menat494bd9e2022-03-28 18:52:46 +05301416
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301417def get_sle_entries_against_voucher(args):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301418 return frappe.get_all(
1419 "Stock Ledger Entry",
Nabin Haita77b8c92020-12-21 14:45:50 +05301420 filters={"voucher_type": args.voucher_type, "voucher_no": args.voucher_no},
1421 fields=["item_code", "warehouse"],
Ankush Menat494bd9e2022-03-28 18:52:46 +05301422 order_by="creation asc",
1423 )
1424
Nabin Haita77b8c92020-12-21 14:45:50 +05301425
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301426def get_conditions_to_validate_future_sle(sl_entries):
Sagar Vora868c0bf2021-03-27 16:10:20 +05301427 warehouse_items_map = {}
1428 for entry in sl_entries:
1429 if entry.warehouse not in warehouse_items_map:
1430 warehouse_items_map[entry.warehouse] = set()
Nabin Haita77b8c92020-12-21 14:45:50 +05301431
Sagar Vora868c0bf2021-03-27 16:10:20 +05301432 warehouse_items_map[entry.warehouse].add(entry.item_code)
1433
1434 or_conditions = []
1435 for warehouse, items in warehouse_items_map.items():
1436 or_conditions.append(
Noah Jacobb5a14912021-06-15 12:44:04 +05301437 f"""warehouse = {frappe.db.escape(warehouse)}
Ankush Menat494bd9e2022-03-28 18:52:46 +05301438 and item_code in ({', '.join(frappe.db.escape(item) for item in items)})"""
1439 )
Sagar Vora868c0bf2021-03-27 16:10:20 +05301440
Rohit Waghchaure8520edc2021-06-15 10:21:44 +05301441 return or_conditions
Nabin Haita77b8c92020-12-21 14:45:50 +05301442
Ankush Menat494bd9e2022-03-28 18:52:46 +05301443
Nabin Haita77b8c92020-12-21 14:45:50 +05301444def create_repost_item_valuation_entry(args):
1445 args = frappe._dict(args)
1446 repost_entry = frappe.new_doc("Repost Item Valuation")
1447 repost_entry.based_on = args.based_on
1448 if not args.based_on:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301449 repost_entry.based_on = "Transaction" if args.voucher_no else "Item and Warehouse"
Nabin Haita77b8c92020-12-21 14:45:50 +05301450 repost_entry.voucher_type = args.voucher_type
1451 repost_entry.voucher_no = args.voucher_no
1452 repost_entry.item_code = args.item_code
1453 repost_entry.warehouse = args.warehouse
1454 repost_entry.posting_date = args.posting_date
1455 repost_entry.posting_time = args.posting_time
1456 repost_entry.company = args.company
1457 repost_entry.allow_zero_rate = args.allow_zero_rate
1458 repost_entry.flags.ignore_links = True
Ankush Menataa024fc2021-11-18 12:51:26 +05301459 repost_entry.flags.ignore_permissions = True
Nabin Haita77b8c92020-12-21 14:45:50 +05301460 repost_entry.save()
Sagar Vora868c0bf2021-03-27 16:10:20 +05301461 repost_entry.submit()
Ankush Menat6dc9b822021-10-28 15:53:18 +05301462
1463
1464def create_item_wise_repost_entries(voucher_type, voucher_no, allow_zero_rate=False):
1465 """Using a voucher create repost item valuation records for all item-warehouse pairs."""
1466
Ankush Menatd220e082021-10-28 17:47:00 +05301467 stock_ledger_entries = get_items_to_be_repost(voucher_type, voucher_no)
1468
Ankush Menat6dc9b822021-10-28 15:53:18 +05301469 distinct_item_warehouses = set()
Ankush Menat6dc9b822021-10-28 15:53:18 +05301470 repost_entries = []
1471
1472 for sle in stock_ledger_entries:
1473 item_wh = (sle.item_code, sle.warehouse)
1474 if item_wh in distinct_item_warehouses:
1475 continue
1476 distinct_item_warehouses.add(item_wh)
1477
1478 repost_entry = frappe.new_doc("Repost Item Valuation")
1479 repost_entry.based_on = "Item and Warehouse"
Ankush Menat6dc9b822021-10-28 15:53:18 +05301480
1481 repost_entry.item_code = sle.item_code
1482 repost_entry.warehouse = sle.warehouse
1483 repost_entry.posting_date = sle.posting_date
1484 repost_entry.posting_time = sle.posting_time
1485 repost_entry.allow_zero_rate = allow_zero_rate
1486 repost_entry.flags.ignore_links = True
Ankush Menat0a2964d2021-11-24 15:55:31 +05301487 repost_entry.flags.ignore_permissions = True
Ankush Menat6dc9b822021-10-28 15:53:18 +05301488 repost_entry.submit()
1489 repost_entries.append(repost_entry)
1490
1491 return repost_entries