blob: 247ab1f7d4772309ac657e805b56e57445e77191 [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Nabin Hait436f5262014-02-10 14:47:54 +05302# License: GNU General Public License v3. See license.txt
3
Chillar Anand915b3432021-09-02 16:44:59 +05304
5import json
6
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05307import frappe
8from frappe import _, throw
Ankush Menat1e976642022-02-15 10:57:06 +05309from frappe.model import child_table_fields, default_fields
Rushabh Mehta66e08e32014-09-29 12:17:03 +053010from frappe.model.meta import get_field_precision
Smit Vorab206b052023-11-23 15:10:47 +053011from frappe.model.utils import get_fetch_values
Rohit Waghchaure648efca2023-03-28 12:16:27 +053012from frappe.query_builder.functions import IfNull, Sum
Chillar Anand915b3432021-09-02 16:44:59 +053013from frappe.utils import add_days, add_months, cint, cstr, flt, getdate
Nabin Hait98c2a052014-05-05 18:41:41 +053014
Chillar Anand915b3432021-09-02 16:44:59 +053015from erpnext import get_company_currency
16from erpnext.accounts.doctype.pricing_rule.pricing_rule import (
17 get_pricing_rule_for_item,
18 set_transaction_type,
19)
20from erpnext.setup.doctype.brand.brand import get_brand_defaults
21from erpnext.setup.doctype.item_group.item_group import get_item_group_defaults
22from erpnext.setup.utils import get_exchange_rate
Chillar Anand915b3432021-09-02 16:44:59 +053023from erpnext.stock.doctype.item.item import get_item_defaults, get_uom_conv_factor
24from erpnext.stock.doctype.item_manufacturer.item_manufacturer import get_item_manufacturer_part_no
25from erpnext.stock.doctype.price_list.price_list import get_price_list_details
tundebabzyacccdb32017-11-23 08:35:15 +010026
Ankush Menat494bd9e2022-03-28 18:52:46 +053027sales_doctypes = ["Quotation", "Sales Order", "Delivery Note", "Sales Invoice", "POS Invoice"]
28purchase_doctypes = [
29 "Material Request",
30 "Supplier Quotation",
31 "Purchase Order",
32 "Purchase Receipt",
33 "Purchase Invoice",
34]
35
Nabin Hait0d1ccc32019-02-14 18:30:10 +053036
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053037@frappe.whitelist()
Deepesh Garga7051cb2023-04-14 09:59:42 +053038def get_item_details(args, doc=None, for_validate=False, overwrite_warehouse=True):
Nabin Hait436f5262014-02-10 14:47:54 +053039 """
Ankush Menat494bd9e2022-03-28 18:52:46 +053040 args = {
41 "item_code": "",
42 "warehouse": None,
43 "customer": "",
44 "conversion_rate": 1.0,
45 "selling_price_list": None,
46 "price_list_currency": None,
47 "plc_conversion_rate": 1.0,
48 "doctype": "",
49 "name": "",
50 "supplier": None,
51 "transaction_date": None,
52 "conversion_rate": 1.0,
53 "buying_price_list": None,
Sagar Sharma409df262022-04-19 14:57:31 +053054 "is_subcontracted": 0/1,
Ankush Menat494bd9e2022-03-28 18:52:46 +053055 "ignore_pricing_rule": 0/1
56 "project": ""
57 "set_warehouse": ""
58 }
Nabin Hait436f5262014-02-10 14:47:54 +053059 """
Suraj Shetty182f4de2019-08-16 08:16:22 +053060
Anand Doshidffec8f2014-07-01 17:45:15 +053061 args = process_args(args)
marination392f3232020-07-14 17:03:17 +053062 for_validate = process_string_args(for_validate)
63 overwrite_warehouse = process_string_args(overwrite_warehouse)
Rushabh Mehta708e47a2018-08-08 16:37:31 +053064 item = frappe.get_cached_doc("Item", args.item_code)
Nabin Hait436f5262014-02-10 14:47:54 +053065 validate_item_details(args, item)
Anand Doshibd67e872014-04-11 16:51:27 +053066
Ankush Menat8fe5feb2021-11-04 19:48:32 +053067 if isinstance(doc, str):
Deepesh Gargef0d26c2020-01-06 15:34:15 +053068 doc = json.loads(doc)
69
Deepesh Gargef0d26c2020-01-06 15:34:15 +053070 if doc:
Sagar Vora1a3997a2022-06-16 17:03:47 +000071 args["transaction_date"] = doc.get("transaction_date") or doc.get("posting_date")
Deepesh Gargef0d26c2020-01-06 15:34:15 +053072
Sagar Vora1a3997a2022-06-16 17:03:47 +000073 if doc.get("doctype") == "Purchase Invoice":
74 args["bill_date"] = doc.get("bill_date")
75
Deepesh Garga7051cb2023-04-14 09:59:42 +053076 out = get_basic_details(args, item, overwrite_warehouse)
Deepesh Garg4c61ee32023-04-02 09:35:27 +053077
Saif Ur Rehman67786682018-12-27 02:11:07 +050078 get_item_tax_template(args, item, out)
Ankush Menat494bd9e2022-03-28 18:52:46 +053079 out["item_tax_rate"] = get_item_tax_map(
80 args.company,
81 args.get("item_tax_template")
82 if out.get("item_tax_template") is None
83 else out.get("item_tax_template"),
84 as_json=True,
85 )
Saif Ur Rehman67786682018-12-27 02:11:07 +050086
Rushabh Mehta708e47a2018-08-08 16:37:31 +053087 get_party_item_code(args, item, out)
Nabin Hait436f5262014-02-10 14:47:54 +053088
Rohit Waghchaure951023f2024-01-31 11:32:17 +053089 if args.get("doctype") in ["Sales Order", "Quotation"]:
90 set_valuation_rate(out, args)
Anand Doshibd67e872014-04-11 16:51:27 +053091
Manas Solankie5e87f72018-05-28 20:07:08 +053092 update_party_blanket_order(args, out)
93
HENRY Florian231fe412023-02-13 16:26:05 +010094 # Never try to find a customer price if customer is set in these Doctype
95 current_customer = args.customer
96 if args.get("doctype") in ["Purchase Order", "Purchase Receipt", "Purchase Invoice"]:
97 args.customer = None
98
Ankush16d4de52021-08-09 10:41:24 +053099 out.update(get_price_list_rate(args, item))
Nabin Hait436f5262014-02-10 14:47:54 +0530100
HENRY Florian231fe412023-02-13 16:26:05 +0100101 args.customer = current_customer
102
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530103 if args.customer and cint(args.is_pos):
Anuja Pawarf132ed42021-05-07 12:11:09 +0530104 out.update(get_pos_profile_item_details(args.company, args, update_data=True))
Rushabh Mehta6b537922017-03-14 16:59:11 +0530105
Nabin Hait26202d92024-03-13 18:17:41 +0530106 if item.is_stock_item:
107 update_bin_details(args, out, doc)
Anand Doshibd67e872014-04-11 16:51:27 +0530108
Nabin Haita3dd72a2014-05-28 12:49:20 +0530109 # update args with out, if key or value not exists
Ankush Menat8fe5feb2021-11-04 19:48:32 +0530110 for key, value in out.items():
Nabin Haita3dd72a2014-05-28 12:49:20 +0530111 if args.get(key) is None:
112 args[key] = value
113
Deepesh Garg6192af52022-12-08 18:04:40 +0530114 data = get_pricing_rule_for_item(args, doc=doc, for_validate=for_validate)
rohitwaghchaurea85ddf22019-11-19 18:47:48 +0530115
Rohit Waghchaure8bfe3302019-03-18 14:34:19 +0530116 out.update(data)
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530117
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530118 if args.transaction_date and item.lead_time_days:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530119 out.schedule_date = out.lead_time_date = add_days(args.transaction_date, item.lead_time_days)
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530120
Sagar Sharma409df262022-04-19 14:57:31 +0530121 if args.get("is_subcontracted"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530122 out.bom = args.get("bom") or get_default_bom(args.item_code)
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530123
124 get_gross_profit(out)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530125 if args.doctype == "Material Request":
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530126 out.rate = args.rate or out.price_list_rate
Rohit Waghchaure1bc53a32021-03-31 15:28:26 +0530127 out.amount = flt(args.qty) * flt(out.rate)
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530128
Ankush Menat1e976642022-02-15 10:57:06 +0530129 out = remove_standard_fields(out)
Deepesh Garga7051cb2023-04-14 09:59:42 +0530130 return out
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530131
Ankush Menat494bd9e2022-03-28 18:52:46 +0530132
Ankush Menat1e976642022-02-15 10:57:06 +0530133def remove_standard_fields(details):
134 for key in child_table_fields + default_fields:
135 details.pop(key, None)
136 return details
137
138
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530139def set_valuation_rate(out, args):
Gursheen Anand8bdb61c2023-11-22 16:17:23 +0530140 if frappe.db.exists("Product Bundle", {"name": args.item_code, "disabled": 0}, cache=True):
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530141 valuation_rate = 0.0
142 bundled_items = frappe.get_doc("Product Bundle", args.item_code)
Rushabh Mehta0394aec2016-04-22 17:22:22 +0530143
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530144 for bundle_item in bundled_items.items:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530145 valuation_rate += flt(
146 get_valuation_rate(bundle_item.item_code, args.company, out.get("warehouse")).get(
147 "valuation_rate"
148 )
149 * bundle_item.qty
150 )
Anand Doshi70f57eb2015-11-27 14:37:40 +0530151
Ankush Menat494bd9e2022-03-28 18:52:46 +0530152 out.update({"valuation_rate": valuation_rate})
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530153
154 else:
155 out.update(get_valuation_rate(args.item_code, args.company, out.get("warehouse")))
156
Nabin Hait436f5262014-02-10 14:47:54 +0530157
Nabin Hait26202d92024-03-13 18:17:41 +0530158def update_bin_details(args, out, doc):
Akhil Narang3effaf22024-03-27 11:37:26 +0530159 if args.get("doctype") == "Material Request" and args.get("material_request_type") == "Material Transfer":
Nabin Hait26202d92024-03-13 18:17:41 +0530160 out.update(get_bin_details(args.item_code, args.get("from_warehouse")))
161
162 elif out.get("warehouse"):
163 company = args.company if (doc and doc.get("doctype") == "Purchase Order") else None
164
165 # calculate company_total_stock only for po
Akhil Narang3effaf22024-03-27 11:37:26 +0530166 bin_details = get_bin_details(args.item_code, out.warehouse, company, include_child_warehouses=True)
Nabin Hait26202d92024-03-13 18:17:41 +0530167
168 out.update(bin_details)
169
170
Anand Doshidffec8f2014-07-01 17:45:15 +0530171def process_args(args):
Ankush Menat8fe5feb2021-11-04 19:48:32 +0530172 if isinstance(args, str):
Anand Doshidffec8f2014-07-01 17:45:15 +0530173 args = json.loads(args)
174
175 args = frappe._dict(args)
176
Anand Doshidffec8f2014-07-01 17:45:15 +0530177 if not args.get("price_list"):
178 args.price_list = args.get("selling_price_list") or args.get("buying_price_list")
179
Devin Slauenwhite55276f12022-05-25 00:05:22 -0400180 if not args.item_code and args.barcode:
Anand Doshidffec8f2014-07-01 17:45:15 +0530181 args.item_code = get_item_code(barcode=args.barcode)
182 elif not args.item_code and args.serial_no:
183 args.item_code = get_item_code(serial_no=args.serial_no)
Rushabh Mehta0394aec2016-04-22 17:22:22 +0530184
mbauskar6f603392016-01-21 16:10:22 +0530185 set_transaction_type(args)
Anand Doshidffec8f2014-07-01 17:45:15 +0530186 return args
187
Ankush Menat494bd9e2022-03-28 18:52:46 +0530188
marination392f3232020-07-14 17:03:17 +0530189def process_string_args(args):
Ankush Menat8fe5feb2021-11-04 19:48:32 +0530190 if isinstance(args, str):
marination392f3232020-07-14 17:03:17 +0530191 args = json.loads(args)
192 return args
tundebabzyacccdb32017-11-23 08:35:15 +0100193
Ankush Menat494bd9e2022-03-28 18:52:46 +0530194
Nabin Hait436f5262014-02-10 14:47:54 +0530195def get_item_code(barcode=None, serial_no=None):
196 if barcode:
Giovanni2144e022017-12-10 17:27:09 +0100197 item_code = frappe.db.get_value("Item Barcode", {"barcode": barcode}, fieldname=["parent"])
Rushabh Mehtac38fc712014-04-16 17:21:25 +0530198 if not item_code:
199 frappe.throw(_("No Item with Barcode {0}").format(barcode))
Nabin Hait436f5262014-02-10 14:47:54 +0530200 elif serial_no:
Anand Doshie9baaa62014-02-26 12:35:33 +0530201 item_code = frappe.db.get_value("Serial No", serial_no, "item_code")
Rushabh Mehtac38fc712014-04-16 17:21:25 +0530202 if not item_code:
203 frappe.throw(_("No Item with Serial No {0}").format(serial_no))
Anand Doshibd67e872014-04-11 16:51:27 +0530204
Nabin Hait436f5262014-02-10 14:47:54 +0530205 return item_code
Anand Doshibd67e872014-04-11 16:51:27 +0530206
tundebabzyacccdb32017-11-23 08:35:15 +0100207
Nabin Hait436f5262014-02-10 14:47:54 +0530208def validate_item_details(args, item):
209 if not args.company:
210 throw(_("Please specify Company"))
Anand Doshibd67e872014-04-11 16:51:27 +0530211
Nabin Hait436f5262014-02-10 14:47:54 +0530212 from erpnext.stock.doctype.item.item import validate_end_of_life
Ankush Menat494bd9e2022-03-28 18:52:46 +0530213
Anand Doshi21e09a22015-10-29 12:21:41 +0530214 validate_end_of_life(item.name, item.end_of_life, item.disabled)
Anand Doshibd67e872014-04-11 16:51:27 +0530215
Rohit Waghchaure2c83fff2023-01-18 23:21:29 +0530216 if cint(item.has_variants):
217 msg = f"Item {item.name} is a template, please select one of its variants"
218
219 throw(_(msg), title=_("Template Item Selected"))
Rushabh Mehta0394aec2016-04-22 17:22:22 +0530220
tundebabzyacccdb32017-11-23 08:35:15 +0100221 elif args.transaction_type == "buying" and args.doctype != "Material Request":
s-aga-r6d89b2f2022-06-18 15:46:59 +0530222 if args.get("is_subcontracted"):
223 if args.get("is_old_subcontracting_flow"):
224 if item.is_sub_contracted_item != 1:
225 throw(_("Item {0} must be a Sub-contracted Item").format(item.name))
226 else:
227 if item.is_stock_item:
228 throw(_("Item {0} must be a Non-Stock Item").format(item.name))
Anand Doshibd67e872014-04-11 16:51:27 +0530229
tundebabzyacccdb32017-11-23 08:35:15 +0100230
Suraj Shetty182f4de2019-08-16 08:16:22 +0530231def get_basic_details(args, item, overwrite_warehouse=True):
tundebabzyacccdb32017-11-23 08:35:15 +0100232 """
233 :param args: {
Ankush Menat494bd9e2022-03-28 18:52:46 +0530234 "item_code": "",
235 "warehouse": None,
236 "customer": "",
237 "conversion_rate": 1.0,
238 "selling_price_list": None,
239 "price_list_currency": None,
240 "price_list_uom_dependant": None,
241 "plc_conversion_rate": 1.0,
242 "doctype": "",
243 "name": "",
244 "supplier": None,
245 "transaction_date": None,
246 "conversion_rate": 1.0,
247 "buying_price_list": None,
Sagar Sharma409df262022-04-19 14:57:31 +0530248 "is_subcontracted": 0/1,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530249 "ignore_pricing_rule": 0/1
250 "project": "",
251 barcode: "",
252 serial_no: "",
253 currency: "",
254 update_stock: "",
255 price_list: "",
256 company: "",
257 order_type: "",
258 is_pos: "",
259 project: "",
260 qty: "",
261 stock_qty: "",
262 conversion_factor: "",
263 against_blanket_order: 0/1
264 }
tundebabzyacccdb32017-11-23 08:35:15 +0100265 :param item: `item_code` of Item object
266 :return: frappe._dict
267 """
268
Rushabh Mehta1a763742014-10-03 16:36:43 +0530269 if not item:
270 item = frappe.get_doc("Item", args.get("item_code"))
Anand Doshibd67e872014-04-11 16:51:27 +0530271
Akhil Narang3effaf22024-03-27 11:37:26 +0530272 if item.variant_of and not item.taxes and frappe.db.exists("Item Tax", {"parent": item.variant_of}):
Rushabh Mehta724f9e52014-10-07 15:29:58 +0530273 item.update_template_tables()
274
Manas Solankib16a4ec2018-05-04 16:49:33 +0530275 item_defaults = get_item_defaults(item.name, args.company)
Shreya Shah3c9839f2018-07-17 18:01:44 +0530276 item_group_defaults = get_item_group_defaults(item.name, args.company)
Saif Ur Rehmanc819ea32018-09-25 14:53:12 +0500277 brand_defaults = get_brand_defaults(item.name, args.company)
Shreya Shah3c9839f2018-07-17 18:01:44 +0530278
Ankush Menat494bd9e2022-03-28 18:52:46 +0530279 defaults = frappe._dict(
280 {
281 "item_defaults": item_defaults,
282 "item_group_defaults": item_group_defaults,
283 "brand_defaults": brand_defaults,
284 }
285 )
marinatione05013e2020-04-06 22:13:13 +0530286
Saqib438e0432020-04-03 10:02:56 +0530287 warehouse = get_item_warehouse(item, args, overwrite_warehouse, defaults)
Nabin Hait36028bf2014-02-12 19:09:28 +0530288
Ankush Menat494bd9e2022-03-28 18:52:46 +0530289 if args.get("doctype") == "Material Request" and not args.get("material_request_type"):
290 args["material_request_type"] = frappe.db.get_value(
291 "Material Request", args.get("name"), "material_request_type", cache=True
292 )
rohitwaghchauree8ccc0e2017-11-21 16:17:22 +0530293
Anurag Mishraf3b393f2019-11-28 18:52:16 +0530294 expense_account = None
295
Ankush Menat494bd9e2022-03-28 18:52:46 +0530296 if args.get("doctype") == "Purchase Invoice" and item.is_fixed_asset:
Anurag Mishraf3b393f2019-11-28 18:52:16 +0530297 from erpnext.assets.doctype.asset_category.asset_category import get_asset_category_account
Anurag Mishraf3b393f2019-11-28 18:52:16 +0530298
Ankush Menat494bd9e2022-03-28 18:52:46 +0530299 expense_account = get_asset_category_account(
300 fieldname="fixed_asset_account", item=args.item_code, company=args.company
301 )
302
303 # Set the UOM to the Default Sales UOM or Default Purchase UOM if configured in the Item Master
304 if not args.get("uom"):
305 if args.get("doctype") in sales_doctypes:
Nabin Hait79a1d2a2017-09-29 18:14:10 +0530306 args.uom = item.sales_uom if item.sales_uom else item.stock_uom
Ankush Menat494bd9e2022-03-28 18:52:46 +0530307 elif (args.get("doctype") in ["Purchase Order", "Purchase Receipt", "Purchase Invoice"]) or (
308 args.get("doctype") == "Material Request" and args.get("material_request_type") == "Purchase"
309 ):
Nabin Hait79a1d2a2017-09-29 18:14:10 +0530310 args.uom = item.purchase_uom if item.purchase_uom else item.stock_uom
311 else:
312 args.uom = item.stock_uom
313
Sagar Vora57038c32022-11-09 18:56:09 +0530314 # Set stock UOM in args, so that it can be used while fetching item price
315 args.stock_uom = item.stock_uom
316
Akhil Narang3effaf22024-03-27 11:37:26 +0530317 if args.get("batch_no") and item.name != frappe.get_cached_value("Batch", args.get("batch_no"), "item"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530318 args["batch_no"] = ""
Rohit Waghchauree1f07042021-08-23 14:27:55 +0530319
Ankush Menat494bd9e2022-03-28 18:52:46 +0530320 out = frappe._dict(
321 {
322 "item_code": item.name,
323 "item_name": item.item_name,
324 "description": cstr(item.description).strip(),
325 "image": cstr(item.image).strip(),
326 "warehouse": warehouse,
327 "income_account": get_default_income_account(
328 args, item_defaults, item_group_defaults, brand_defaults
329 ),
330 "expense_account": expense_account
331 or get_default_expense_account(args, item_defaults, item_group_defaults, brand_defaults),
David Arnold1612d7b2023-10-26 14:03:22 +0200332 "discount_account": get_default_discount_account(
333 args, item_defaults, item_group_defaults, brand_defaults
334 ),
335 "provisional_expense_account": get_provisional_account(
336 args, item_defaults, item_group_defaults, brand_defaults
337 ),
Akhil Narang3effaf22024-03-27 11:37:26 +0530338 "cost_center": get_default_cost_center(args, item_defaults, item_group_defaults, brand_defaults),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530339 "has_serial_no": item.has_serial_no,
340 "has_batch_no": item.has_batch_no,
341 "batch_no": args.get("batch_no"),
342 "uom": args.uom,
maharshivpatelb3ccc4b2022-05-31 19:48:30 +0530343 "stock_uom": item.stock_uom,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530344 "min_order_qty": flt(item.min_order_qty) if args.doctype == "Material Request" else "",
345 "qty": flt(args.qty) or 1.0,
346 "stock_qty": flt(args.qty) or 1.0,
347 "price_list_rate": 0.0,
348 "base_price_list_rate": 0.0,
349 "rate": 0.0,
350 "base_rate": 0.0,
351 "amount": 0.0,
352 "base_amount": 0.0,
353 "net_rate": 0.0,
354 "net_amount": 0.0,
355 "discount_percentage": 0.0,
maharshivpatelb3ccc4b2022-05-31 19:48:30 +0530356 "discount_amount": flt(args.discount_amount) or 0.0,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530357 "update_stock": args.get("update_stock")
358 if args.get("doctype") in ["Sales Invoice", "Purchase Invoice"]
359 else 0,
360 "delivered_by_supplier": item.delivered_by_supplier
361 if args.get("doctype") in ["Sales Order", "Sales Invoice"]
362 else 0,
363 "is_fixed_asset": item.is_fixed_asset,
Akhil Narang3effaf22024-03-27 11:37:26 +0530364 "last_purchase_rate": item.last_purchase_rate if args.get("doctype") in ["Purchase Order"] else 0,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530365 "transaction_date": args.get("transaction_date"),
366 "against_blanket_order": args.get("against_blanket_order"),
367 "bom_no": item.get("default_bom"),
368 "weight_per_unit": args.get("weight_per_unit") or item.get("weight_per_unit"),
369 "weight_uom": args.get("weight_uom") or item.get("weight_uom"),
370 "grant_commission": item.get("grant_commission"),
371 }
372 )
Anand Doshibd67e872014-04-11 16:51:27 +0530373
rohitwaghchauredb24e242023-12-13 14:06:45 +0530374 default_supplier = get_default_supplier(args, item_defaults, item_group_defaults, brand_defaults)
375 if default_supplier:
376 out.supplier = default_supplier
377
Zlash65627be1d2019-01-15 14:16:32 +0530378 if item.get("enable_deferred_revenue") or item.get("enable_deferred_expense"):
Zlash6580f5cb02018-08-29 11:39:08 +0530379 out.update(calculate_service_end_date(args, item))
Manas Solanki03938482018-05-14 16:16:46 +0530380
Rohit Waghchauredc981dc2017-04-03 14:17:08 +0530381 # calculate conversion factor
mbauskar287fe812017-04-10 19:15:57 +0530382 if item.stock_uom == args.uom:
383 out.conversion_factor = 1.0
384 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530385 out.conversion_factor = args.conversion_factor or get_conversion_factor(item.name, args.uom).get(
386 "conversion_factor"
387 )
mbauskar287fe812017-04-10 19:15:57 +0530388
389 args.conversion_factor = out.conversion_factor
390 out.stock_qty = out.qty * out.conversion_factor
Saqib Ansari3713ae72022-02-14 11:33:34 +0530391 args.stock_qty = out.stock_qty
Rohit Waghchauredc981dc2017-04-03 14:17:08 +0530392
Shreya Shah44fa9a62018-01-08 14:58:20 +0530393 # calculate last purchase rate
Rohit Waghchaureec171fc2023-01-09 18:49:48 +0530394 if args.get("doctype") in purchase_doctypes and not frappe.db.get_single_value(
395 "Buying Settings", "disable_last_purchase_rate"
396 ):
Nabin Hait0d1ccc32019-02-14 18:30:10 +0530397 from erpnext.buying.doctype.purchase_order.purchase_order import item_last_purchase_rate
Ankush Menat494bd9e2022-03-28 18:52:46 +0530398
399 out.last_purchase_rate = item_last_purchase_rate(
400 args.name, args.conversion_rate, item.name, out.conversion_factor
401 )
Shreya Shah44fa9a62018-01-08 14:58:20 +0530402
Nabin Haitb09ed412015-02-17 10:33:58 +0530403 # if default specified in item is for another company, fetch from company
Rushabh Mehtae385b5b2017-04-20 15:21:01 +0530404 for d in [
405 ["Account", "income_account", "default_income_account"],
Rushabh Mehta0394aec2016-04-22 17:22:22 +0530406 ["Account", "expense_account", "default_expense_account"],
Rushabh Mehtae385b5b2017-04-20 15:21:01 +0530407 ["Cost Center", "cost_center", "cost_center"],
Ankush Menat494bd9e2022-03-28 18:52:46 +0530408 ["Warehouse", "warehouse", ""],
409 ]:
410 if not out[d[1]]:
411 out[d[1]] = frappe.get_cached_value("Company", args.company, d[2]) if d[2] else None
Nabin Haitb09ed412015-02-17 10:33:58 +0530412
Ankush Menat64905182022-03-09 15:37:14 +0530413 for fieldname in ("item_name", "item_group", "brand", "stock_uom"):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530414 out[fieldname] = item.get(fieldname)
Anand Doshibd67e872014-04-11 16:51:27 +0530415
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530416 if args.get("manufacturer"):
417 part_no = get_item_manufacturer_part_no(args.get("item_code"), args.get("manufacturer"))
418 if part_no:
419 out["manufacturer_part_no"] = part_no
420 else:
421 out["manufacturer_part_no"] = None
422 out["manufacturer"] = None
marination3e7a8ab2020-04-07 21:00:57 +0530423 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530424 data = frappe.get_value(
425 "Item", item.name, ["default_item_manufacturer", "default_manufacturer_part_no"], as_dict=1
426 )
rohitwaghchaurebe16e5c2020-05-01 10:50:17 +0530427
428 if data:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530429 out.update(
430 {
431 "manufacturer": data.default_item_manufacturer,
432 "manufacturer_part_no": data.default_manufacturer_part_no,
433 }
434 )
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530435
Ankush Menat494bd9e2022-03-28 18:52:46 +0530436 child_doctype = args.doctype + " Item"
Nabin Hait34c551d2019-07-03 10:34:31 +0530437 meta = frappe.get_meta(child_doctype)
438 if meta.get_field("barcode"):
439 update_barcode_value(out)
440
Rohit Waghchaurebde159a2021-03-22 23:36:48 +0530441 if out.get("weight_per_unit"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530442 out["total_weight"] = out.weight_per_unit * out.stock_qty
Rohit Waghchaurebde159a2021-03-22 23:36:48 +0530443
Nabin Hait436f5262014-02-10 14:47:54 +0530444 return out
Anand Doshibd67e872014-04-11 16:51:27 +0530445
Ankush Menat494bd9e2022-03-28 18:52:46 +0530446
Chillar Anand772d4752021-10-06 22:28:48 +0530447def get_item_warehouse(item, args, overwrite_warehouse, defaults=None):
Saqib438e0432020-04-03 10:02:56 +0530448 if not defaults:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530449 defaults = frappe._dict(
450 {
451 "item_defaults": get_item_defaults(item.name, args.company),
452 "item_group_defaults": get_item_group_defaults(item.name, args.company),
453 "brand_defaults": get_brand_defaults(item.name, args.company),
454 }
455 )
Saqib438e0432020-04-03 10:02:56 +0530456
457 if overwrite_warehouse or not args.warehouse:
458 warehouse = (
Ankush Menat494bd9e2022-03-28 18:52:46 +0530459 args.get("set_warehouse")
460 or defaults.item_defaults.get("default_warehouse")
461 or defaults.item_group_defaults.get("default_warehouse")
462 or defaults.brand_defaults.get("default_warehouse")
463 or args.get("warehouse")
Saqib438e0432020-04-03 10:02:56 +0530464 )
465
466 if not warehouse:
467 defaults = frappe.defaults.get_defaults() or {}
Ankush Menat494bd9e2022-03-28 18:52:46 +0530468 warehouse_exists = frappe.db.exists(
469 "Warehouse", {"name": defaults.default_warehouse, "company": args.company}
470 )
Saqib438e0432020-04-03 10:02:56 +0530471 if defaults.get("default_warehouse") and warehouse_exists:
472 warehouse = defaults.default_warehouse
473
474 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530475 warehouse = args.get("warehouse")
marinatione05013e2020-04-06 22:13:13 +0530476
Marica3b1be2b2020-10-22 17:04:31 +0530477 if not warehouse:
478 default_warehouse = frappe.db.get_single_value("Stock Settings", "default_warehouse")
479 if frappe.db.get_value("Warehouse", default_warehouse, "company") == args.company:
480 return default_warehouse
481
Saqib438e0432020-04-03 10:02:56 +0530482 return warehouse
483
Ankush Menat494bd9e2022-03-28 18:52:46 +0530484
Nabin Hait34c551d2019-07-03 10:34:31 +0530485def update_barcode_value(out):
Nabin Hait34c551d2019-07-03 10:34:31 +0530486 barcode_data = get_barcode_data([out])
487
488 # If item has one barcode then update the value of the barcode field
489 if barcode_data and len(barcode_data.get(out.item_code)) == 1:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530490 out["barcode"] = barcode_data.get(out.item_code)[0]
491
Nabin Hait34c551d2019-07-03 10:34:31 +0530492
Rohit Waghchaureb0730292024-04-01 22:40:53 +0530493def get_barcode_data(items_list=None, item_code=None):
Deepesh Gargf52d7c72024-01-02 13:37:39 +0530494 # get item-wise batch no data
495 # example: {'LED-GRE': [Batch001, Batch002]}
Saqiba6f98d42020-07-23 18:51:26 +0530496 # where LED-GRE is item code, SN0001 is serial no and Pune is warehouse
497
498 itemwise_barcode = {}
Rohit Waghchaureb0730292024-04-01 22:40:53 +0530499 if not items_list and item_code:
500 _dict_item_code = frappe._dict(
501 {
502 "item_code": item_code,
503 }
504 )
505
506 items_list = [frappe._dict(_dict_item_code)]
507
Saqiba6f98d42020-07-23 18:51:26 +0530508 for item in items_list:
Akhil Narang3effaf22024-03-27 11:37:26 +0530509 barcodes = frappe.db.get_all("Item Barcode", filters={"parent": item.item_code}, fields="barcode")
Saqiba6f98d42020-07-23 18:51:26 +0530510
511 for barcode in barcodes:
512 if item.item_code not in itemwise_barcode:
513 itemwise_barcode.setdefault(item.item_code, [])
514 itemwise_barcode[item.item_code].append(barcode.get("barcode"))
515
516 return itemwise_barcode
517
Ankush Menat494bd9e2022-03-28 18:52:46 +0530518
Zlash6580f5cb02018-08-29 11:39:08 +0530519@frappe.whitelist()
Deepesh Garg8cdd7ce2021-06-24 19:17:58 +0530520def get_item_tax_info(company, tax_category, item_codes, item_rates=None, item_tax_templates=None):
Saif Ur Rehman67786682018-12-27 02:11:07 +0500521 out = {}
Deepesh Gargcae42b482021-06-25 13:34:00 +0530522
Deepesh Garg8dd99c02021-06-25 13:38:06 +0530523 if item_tax_templates is None:
Deepesh Gargcae42b482021-06-25 13:34:00 +0530524 item_tax_templates = {}
Rohit Waghchaure4acbeec2021-07-13 11:45:41 +0530525
Deepesh Garg8dd99c02021-06-25 13:38:06 +0530526 if item_rates is None:
527 item_rates = {}
Deepesh Gargcae42b482021-06-25 13:34:00 +0530528
Akhil Narang3effaf22024-03-27 11:37:26 +0530529 if isinstance(item_codes, str):
Saif Ur Rehman67786682018-12-27 02:11:07 +0500530 item_codes = json.loads(item_codes)
531
Akhil Narang3effaf22024-03-27 11:37:26 +0530532 if isinstance(item_rates, str):
Deepesh Garg8a7e2832021-06-04 22:53:26 +0530533 item_rates = json.loads(item_rates)
534
Akhil Narang3effaf22024-03-27 11:37:26 +0530535 if isinstance(item_tax_templates, str):
Deepesh Garg94d46042021-06-23 20:56:27 +0530536 item_tax_templates = json.loads(item_tax_templates)
537
Saif Ur Rehman67786682018-12-27 02:11:07 +0500538 for item_code in item_codes:
Deepesh Garg94d46042021-06-23 20:56:27 +0530539 if not item_code or item_code[1] in out or not item_tax_templates.get(item_code[1]):
Saif Ur Rehman67786682018-12-27 02:11:07 +0500540 continue
Deepesh Garg94d46042021-06-23 20:56:27 +0530541
Deepesh Garg8a7e2832021-06-04 22:53:26 +0530542 out[item_code[1]] = {}
543 item = frappe.get_cached_doc("Item", item_code[0])
Ankush Menat494bd9e2022-03-28 18:52:46 +0530544 args = {
545 "company": company,
546 "tax_category": tax_category,
Divyam Mistrye9fe10c2024-02-01 16:15:43 +0530547 "base_net_rate": item_rates.get(item_code[1]),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530548 }
Deepesh Garg269962a2021-06-23 22:52:51 +0530549
550 if item_tax_templates:
551 args.update({"item_tax_template": item_tax_templates.get(item_code[1])})
Deepesh Garg94d46042021-06-23 20:56:27 +0530552
Deepesh Garg8a7e2832021-06-04 22:53:26 +0530553 get_item_tax_template(args, item, out[item_code[1]])
Ankush Menat494bd9e2022-03-28 18:52:46 +0530554 out[item_code[1]]["item_tax_rate"] = get_item_tax_map(
555 company, out[item_code[1]].get("item_tax_template"), as_json=True
556 )
Saif Ur Rehman67786682018-12-27 02:11:07 +0500557
558 return out
559
Ankush Menat494bd9e2022-03-28 18:52:46 +0530560
Saif Ur Rehman67786682018-12-27 02:11:07 +0500561def get_item_tax_template(args, item, out):
562 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530563 args = {
564 "tax_category": None
565 "item_tax_template": None
566 }
Saif Ur Rehman67786682018-12-27 02:11:07 +0500567 """
Saqib Ansarieb3aae82021-10-12 13:29:32 +0530568 item_tax_template = None
569 if item.taxes:
570 item_tax_template = _get_item_tax_template(args, item.taxes, out)
Saif Ur Rehman67786682018-12-27 02:11:07 +0500571
572 if not item_tax_template:
573 item_group = item.item_group
574 while item_group and not item_tax_template:
575 item_group_doc = frappe.get_cached_doc("Item Group", item_group)
576 item_tax_template = _get_item_tax_template(args, item_group_doc.taxes, out)
577 item_group = item_group_doc.parent_item_group
578
barredterra0465c9a2023-12-08 14:15:26 +0100579 if args.get("child_doctype") and item_tax_template:
580 out.update(get_fetch_values(args.get("child_doctype"), "item_tax_template", item_tax_template))
Smit Vorab206b052023-11-23 15:10:47 +0530581
Ankush Menat494bd9e2022-03-28 18:52:46 +0530582
18alantom308905b2021-05-03 23:34:34 +0530583def _get_item_tax_template(args, taxes, out=None, for_validate=False):
584 if out is None:
585 out = {}
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530586 taxes_with_validity = []
587 taxes_with_no_validity = []
588
589 for tax in taxes:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530590 tax_company = frappe.get_cached_value("Item Tax Template", tax.item_tax_template, "company")
591 if tax_company == args["company"]:
592 if tax.valid_from or tax.maximum_net_rate:
Saqib Ansarieb3aae82021-10-12 13:29:32 +0530593 # In purchase Invoice first preference will be given to supplier invoice date
594 # if supplier date is not present then posting date
Sagar Vora1a3997a2022-06-16 17:03:47 +0000595 validation_date = args.get("bill_date") or args.get("transaction_date")
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530596
Ankush Menat494bd9e2022-03-28 18:52:46 +0530597 if getdate(tax.valid_from) <= getdate(validation_date) and is_within_valid_range(args, tax):
Saqib Ansarieb3aae82021-10-12 13:29:32 +0530598 taxes_with_validity.append(tax)
599 else:
mohammadahmad1990e39649b2020-06-18 11:42:53 +0500600 taxes_with_no_validity.append(tax)
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530601
602 if taxes_with_validity:
Akhil Narang3effaf22024-03-27 11:37:26 +0530603 taxes = sorted(taxes_with_validity, key=lambda i: i.valid_from or tax.maximum_net_rate, reverse=True)
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530604 else:
605 taxes = taxes_with_no_validity
606
607 if for_validate:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530608 return [
609 tax.item_tax_template
610 for tax in taxes
611 if (
612 cstr(tax.tax_category) == cstr(args.get("tax_category"))
613 and (tax.item_tax_template not in taxes)
614 )
615 ]
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530616
617 # all templates have validity and no template is valid
618 if not taxes_with_validity and (not taxes_with_no_validity):
619 return None
620
Deepesh Garg8a7e2832021-06-04 22:53:26 +0530621 # do not change if already a valid template
Ankush Menat494bd9e2022-03-28 18:52:46 +0530622 if args.get("item_tax_template") in {t.item_tax_template for t in taxes}:
623 out["item_tax_template"] = args.get("item_tax_template")
624 return args.get("item_tax_template")
Deepesh Garg8a7e2832021-06-04 22:53:26 +0530625
Saif Ur Rehman67786682018-12-27 02:11:07 +0500626 for tax in taxes:
627 if cstr(tax.tax_category) == cstr(args.get("tax_category")):
628 out["item_tax_template"] = tax.item_tax_template
629 return tax.item_tax_template
630 return None
631
Ankush Menat494bd9e2022-03-28 18:52:46 +0530632
Deepesh Garg8a7e2832021-06-04 22:53:26 +0530633def is_within_valid_range(args, tax):
634 if not flt(tax.maximum_net_rate):
635 # No range specified, just ignore
636 return True
Divyam Mistrye9fe10c2024-02-01 16:15:43 +0530637 elif flt(tax.minimum_net_rate) <= flt(args.get("base_net_rate")) <= flt(tax.maximum_net_rate):
Deepesh Garg8a7e2832021-06-04 22:53:26 +0530638 return True
639
640 return False
641
Ankush Menat494bd9e2022-03-28 18:52:46 +0530642
Saif Ur Rehman67786682018-12-27 02:11:07 +0500643@frappe.whitelist()
Saif Ur Rehmaneeead1d2018-12-29 02:25:00 +0500644def get_item_tax_map(company, item_tax_template, as_json=True):
Saif Ur Rehman67786682018-12-27 02:11:07 +0500645 item_tax_map = {}
646 if item_tax_template:
647 template = frappe.get_cached_doc("Item Tax Template", item_tax_template)
648 for d in template.taxes:
Saif Ur Rehmaneeead1d2018-12-29 02:25:00 +0500649 if frappe.get_cached_value("Account", d.tax_type, "company") == company:
650 item_tax_map[d.tax_type] = d.tax_rate
Saif Ur Rehman67786682018-12-27 02:11:07 +0500651
652 return json.dumps(item_tax_map) if as_json else item_tax_map
653
Ankush Menat494bd9e2022-03-28 18:52:46 +0530654
Saif Ur Rehman67786682018-12-27 02:11:07 +0500655@frappe.whitelist()
Zlash6580f5cb02018-08-29 11:39:08 +0530656def calculate_service_end_date(args, item=None):
657 args = process_args(args)
658 if not item:
659 item = frappe.get_cached_doc("Item", args.item_code)
660
Zlash65627be1d2019-01-15 14:16:32 +0530661 doctype = args.get("parenttype") or args.get("doctype")
Zlash65a3dd7982019-01-15 14:36:11 +0530662 if doctype == "Sales Invoice":
663 enable_deferred = "enable_deferred_revenue"
664 no_of_months = "no_of_months"
665 account = "deferred_revenue_account"
666 else:
667 enable_deferred = "enable_deferred_expense"
668 no_of_months = "no_of_months_exp"
669 account = "deferred_expense_account"
Zarrare83ff382018-09-21 15:45:40 +0530670
Zlash6580f5cb02018-08-29 11:39:08 +0530671 service_start_date = args.service_start_date if args.service_start_date else args.transaction_date
Zarrare83ff382018-09-21 15:45:40 +0530672 service_end_date = add_months(service_start_date, item.get(no_of_months))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530673 deferred_detail = {"service_start_date": service_start_date, "service_end_date": service_end_date}
Zarrare83ff382018-09-21 15:45:40 +0530674 deferred_detail[enable_deferred] = item.get(enable_deferred)
675 deferred_detail[account] = get_default_deferred_account(args, item, fieldname=account)
Zlash6580f5cb02018-08-29 11:39:08 +0530676
677 return deferred_detail
tundebabzyacccdb32017-11-23 08:35:15 +0100678
Ankush Menat494bd9e2022-03-28 18:52:46 +0530679
Saif Ur Rehmanc819ea32018-09-25 14:53:12 +0500680def get_default_income_account(args, item, item_group, brand):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530681 return (
682 item.get("income_account")
Shreya Shah3c9839f2018-07-17 18:01:44 +0530683 or item_group.get("income_account")
Saif Ur Rehmanc819ea32018-09-25 14:53:12 +0500684 or brand.get("income_account")
Ankush Menat494bd9e2022-03-28 18:52:46 +0530685 or args.income_account
686 )
687
Rushabh Mehta1a763742014-10-03 16:36:43 +0530688
Saif Ur Rehmanc819ea32018-09-25 14:53:12 +0500689def get_default_expense_account(args, item, item_group, brand):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530690 return (
691 item.get("expense_account")
Shreya Shah3c9839f2018-07-17 18:01:44 +0530692 or item_group.get("expense_account")
Saif Ur Rehmanc819ea32018-09-25 14:53:12 +0500693 or brand.get("expense_account")
Ankush Menat494bd9e2022-03-28 18:52:46 +0530694 or args.expense_account
695 )
696
Rushabh Mehta1a763742014-10-03 16:36:43 +0530697
David Arnold1612d7b2023-10-26 14:03:22 +0200698def get_provisional_account(args, item, item_group, brand):
699 return (
700 item.get("default_provisional_account")
701 or item_group.get("default_provisional_account")
702 or brand.get("default_provisional_account")
703 or args.default_provisional_account
704 )
Deepesh Garg3ce64172022-04-11 14:35:22 +0530705
706
David Arnold1612d7b2023-10-26 14:03:22 +0200707def get_default_discount_account(args, item, item_group, brand):
708 return (
709 item.get("default_discount_account")
710 or item_group.get("default_discount_account")
711 or brand.get("default_discount_account")
712 or args.discount_account
713 )
Ankush Menat494bd9e2022-03-28 18:52:46 +0530714
GangaManoj657e9b52021-07-06 16:51:12 +0530715
Zarrare83ff382018-09-21 15:45:40 +0530716def get_default_deferred_account(args, item, fieldname=None):
Zlash65627be1d2019-01-15 14:16:32 +0530717 if item.get("enable_deferred_revenue") or item.get("enable_deferred_expense"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530718 return (
Gursheen Kaur Anand099468e2023-09-16 21:25:31 +0530719 frappe.get_cached_value(
720 "Item Default",
721 {"parent": args.item_code, "company": args.get("company")},
722 fieldname,
723 )
Zarrare83ff382018-09-21 15:45:40 +0530724 or args.get(fieldname)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530725 or frappe.get_cached_value("Company", args.company, "default_" + fieldname)
726 )
Manas Solanki03938482018-05-14 16:16:46 +0530727 else:
728 return None
729
Ankush Menat494bd9e2022-03-28 18:52:46 +0530730
rohitwaghchaure1c8c1d72020-11-15 09:40:44 +0530731def get_default_cost_center(args, item=None, item_group=None, brand=None, company=None):
Nabin Hait50238c32018-08-08 18:43:04 +0530732 cost_center = None
rohitwaghchaure1c8c1d72020-11-15 09:40:44 +0530733
734 if not company and args.get("company"):
735 company = args.get("company")
736
Ankush Menat494bd9e2022-03-28 18:52:46 +0530737 if args.get("project"):
Nabin Hait50238c32018-08-08 18:43:04 +0530738 cost_center = frappe.db.get_value("Project", args.get("project"), "cost_center", cache=True)
Rushabh Mehta49f97472018-08-30 18:50:48 +0530739
rohitwaghchaure1c8c1d72020-11-15 09:40:44 +0530740 if not cost_center and (item and item_group and brand):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530741 if args.get("customer"):
742 cost_center = (
743 item.get("selling_cost_center")
744 or item_group.get("selling_cost_center")
745 or brand.get("selling_cost_center")
746 )
Nabin Hait50238c32018-08-08 18:43:04 +0530747 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530748 cost_center = (
749 item.get("buying_cost_center")
750 or item_group.get("buying_cost_center")
751 or brand.get("buying_cost_center")
752 )
Rushabh Mehta49f97472018-08-30 18:50:48 +0530753
rohitwaghchaure1c8c1d72020-11-15 09:40:44 +0530754 elif not cost_center and args.get("item_code") and company:
755 for method in ["get_item_defaults", "get_item_group_defaults", "get_brand_defaults"]:
Akhil Narang3effaf22024-03-27 11:37:26 +0530756 path = f"erpnext.stock.get_item_details.{method}"
rohitwaghchaure1c8c1d72020-11-15 09:40:44 +0530757 data = frappe.get_attr(path)(args.get("item_code"), company)
758
759 if data and (data.selling_cost_center or data.buying_cost_center):
rohitwaghchaure14b009b2023-10-20 16:22:29 +0530760 if args.get("customer") and data.selling_cost_center:
761 return data.selling_cost_center
762
763 elif args.get("supplier") and data.buying_cost_center:
764 return data.buying_cost_center
765
rohitwaghchaure1c8c1d72020-11-15 09:40:44 +0530766 return data.selling_cost_center or data.buying_cost_center
767
768 if not cost_center and args.get("cost_center"):
769 cost_center = args.get("cost_center")
Rohit Waghchaure9a792c22019-05-15 12:42:37 +0530770
Akhil Narang3effaf22024-03-27 11:37:26 +0530771 if company and cost_center and frappe.get_cached_value("Cost Center", cost_center, "company") != company:
Rohit Waghchaure9a792c22019-05-15 12:42:37 +0530772 return None
773
rohitwaghchaure1c8c1d72020-11-15 09:40:44 +0530774 if not cost_center and company:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530775 cost_center = frappe.get_cached_value("Company", company, "cost_center")
rohitwaghchaure1c8c1d72020-11-15 09:40:44 +0530776
Rohit Waghchaure9a792c22019-05-15 12:42:37 +0530777 return cost_center
Rushabh Mehta1a763742014-10-03 16:36:43 +0530778
Ankush Menat494bd9e2022-03-28 18:52:46 +0530779
Saif Ur Rehmanc819ea32018-09-25 14:53:12 +0500780def get_default_supplier(args, item, item_group, brand):
Akhil Narang3effaf22024-03-27 11:37:26 +0530781 return item.get("default_supplier") or item_group.get("default_supplier") or brand.get("default_supplier")
Ankush Menat494bd9e2022-03-28 18:52:46 +0530782
Shreya Shah3c9839f2018-07-17 18:01:44 +0530783
Ankush16d4de52021-08-09 10:41:24 +0530784def get_price_list_rate(args, item_doc, out=None):
785 if out is None:
786 out = frappe._dict()
787
Anand Doshi39a28912016-02-15 11:42:18 +0530788 meta = frappe.get_meta(args.parenttype or args.doctype)
Nabin Hait436f5262014-02-10 14:47:54 +0530789
Ankush Menat494bd9e2022-03-28 18:52:46 +0530790 if meta.get_field("currency") or args.get("currency"):
Maricae8bc9122021-04-19 11:05:21 +0530791 if not args.get("price_list_currency") or not args.get("plc_conversion_rate"):
792 # if currency and plc_conversion_rate exist then
793 # `get_price_list_currency_and_exchange_rate` has already been called
794 pl_details = get_price_list_currency_and_exchange_rate(args)
795 args.update(pl_details)
796
Nabin Hait06c8cf42019-05-16 19:17:02 +0530797 if meta.get_field("currency"):
rohitwaghchaure4cccdbd2017-07-25 14:05:01 +0530798 validate_conversion_rate(args, meta)
Nabin Hait436f5262014-02-10 14:47:54 +0530799
Ankush16d4de52021-08-09 10:41:24 +0530800 price_list_rate = get_price_list_rate_for(args, item_doc.name)
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530801
hiousi1516e292019-01-08 18:34:08 +0100802 # variant
Ankush16d4de52021-08-09 10:41:24 +0530803 if price_list_rate is None and item_doc.variant_of:
hiousi1516e292019-01-08 18:34:08 +0100804 price_list_rate = get_price_list_rate_for(args, item_doc.variant_of)
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530805
806 # insert in database
rohitwaghchaure09ea7ed2024-03-19 12:10:24 +0530807 if price_list_rate is None or frappe.db.get_single_value(
808 "Stock Settings", "update_existing_price_list_rate"
809 ):
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530810 if args.price_list and args.rate:
811 insert_item_price(args)
Anand Doshibd67e872014-04-11 16:51:27 +0530812
Rohit Waghchaure6821baa2024-03-22 15:03:38 +0530813 if not price_list_rate:
814 return out
815
Akhil Narang3effaf22024-03-27 11:37:26 +0530816 out.price_list_rate = flt(price_list_rate) * flt(args.plc_conversion_rate) / flt(args.conversion_rate)
mbauskar287fe812017-04-10 19:15:57 +0530817
Rohit Waghchaured1d46712023-01-09 15:12:46 +0530818 if frappe.db.get_single_value("Buying Settings", "disable_last_purchase_rate"):
819 return out
820
Ankush Menat494bd9e2022-03-28 18:52:46 +0530821 if not out.price_list_rate and args.transaction_type == "buying":
Nabin Hait436f5262014-02-10 14:47:54 +0530822 from erpnext.stock.doctype.item.item import get_last_purchase_details
Ankush Menat494bd9e2022-03-28 18:52:46 +0530823
824 out.update(get_last_purchase_details(item_doc.name, args.name, args.conversion_rate))
Anand Doshibd67e872014-04-11 16:51:27 +0530825
Ankush16d4de52021-08-09 10:41:24 +0530826 return out
827
Ankush Menat494bd9e2022-03-28 18:52:46 +0530828
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530829def insert_item_price(args):
830 """Insert Item Price if Price List and Price List Rate are specified and currency is the same"""
Akhil Narang3effaf22024-03-27 11:37:26 +0530831 if frappe.db.get_value("Price List", args.price_list, "currency", cache=True) == args.currency and cint(
Ankush Menat494bd9e2022-03-28 18:52:46 +0530832 frappe.db.get_single_value("Stock Settings", "auto_insert_price_list_rate_if_missing")
833 ):
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530834 if frappe.has_permission("Item Price", "write"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530835 price_list_rate = (
Rohit Waghchaure0f280742022-12-15 16:34:06 +0530836 (flt(args.rate) + flt(args.discount_amount)) / args.get("conversion_factor")
maharshivpatelb3ccc4b2022-05-31 19:48:30 +0530837 if args.get("conversion_factor")
Rohit Waghchaure0f280742022-12-15 16:34:06 +0530838 else (flt(args.rate) + flt(args.discount_amount))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530839 )
Rushabh Mehta985cb822016-12-30 15:06:54 +0530840
Ankush Menat494bd9e2022-03-28 18:52:46 +0530841 item_price = frappe.db.get_value(
842 "Item Price",
843 {"item_code": args.item_code, "price_list": args.price_list, "currency": args.currency},
844 ["name", "price_list_rate"],
845 as_dict=1,
846 )
Nabin Haitb479a872018-09-07 13:17:11 +0530847 if item_price and item_price.name:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530848 if item_price.price_list_rate != price_list_rate and frappe.db.get_single_value(
849 "Stock Settings", "update_existing_price_list_rate"
850 ):
851 frappe.db.set_value("Item Price", item_price.name, "price_list_rate", price_list_rate)
852 frappe.msgprint(
Akhil Narang3effaf22024-03-27 11:37:26 +0530853 _("Item Price updated for {0} in Price List {1}").format(
854 args.item_code, args.price_list
855 ),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530856 alert=True,
857 )
Rushabh Mehta985cb822016-12-30 15:06:54 +0530858 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530859 item_price = frappe.get_doc(
860 {
861 "doctype": "Item Price",
862 "price_list": args.price_list,
863 "item_code": args.item_code,
864 "currency": args.currency,
865 "price_list_rate": price_list_rate,
maharshivpatelb3ccc4b2022-05-31 19:48:30 +0530866 "uom": args.stock_uom,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530867 }
868 )
Kanchan Chauhan5ee8fcc2016-06-24 17:11:15 +0530869 item_price.insert()
Ankush Menat494bd9e2022-03-28 18:52:46 +0530870 frappe.msgprint(
871 _("Item Price added for {0} in Price List {1}").format(args.item_code, args.price_list),
872 alert=True,
873 )
874
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530875
barredterra58b3ce62024-03-21 13:48:05 +0100876def get_item_price(args, item_code, ignore_party=False) -> list[dict]:
Nabin Haite45ec662018-08-01 17:44:34 +0530877 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530878 Get name, price_list_rate from Item Price based on conditions
879 Check if the desired qty is within the increment of the packing list.
880 :param args: dict (or frappe._dict) with mandatory fields price_list, uom
881 optional fields transaction_date, customer, supplier
882 :param item_code: str, Item Doctype field item_code
Nabin Haite45ec662018-08-01 17:44:34 +0530883 """
884
s-aga-r6b144ba2023-02-18 12:18:41 +0530885 ip = frappe.qb.DocType("Item Price")
886 query = (
887 frappe.qb.from_(ip)
888 .select(ip.name, ip.price_list_rate, ip.uom)
889 .where(
890 (ip.item_code == item_code)
891 & (ip.price_list == args.get("price_list"))
892 & (IfNull(ip.uom, "").isin(["", args.get("uom")]))
893 & (IfNull(ip.batch_no, "").isin(["", args.get("batch_no")]))
894 )
895 .orderby(ip.valid_from, order=frappe.qb.desc)
896 .orderby(IfNull(ip.batch_no, ""), order=frappe.qb.desc)
897 .orderby(ip.uom, order=frappe.qb.desc)
barredterrabe9fe732024-03-20 19:37:34 +0100898 .limit(1)
s-aga-r6b144ba2023-02-18 12:18:41 +0530899 )
Deepesh Gargbd9bdc52021-01-28 12:05:57 +0530900
Nabin Hait01ca3e52019-01-25 16:25:15 +0530901 if not ignore_party:
Nabin Hait01ca3e52019-01-25 16:25:15 +0530902 if args.get("customer"):
s-aga-r6b144ba2023-02-18 12:18:41 +0530903 query = query.where(ip.customer == args.get("customer"))
Nabin Hait4e456632019-01-29 14:02:08 +0530904 elif args.get("supplier"):
s-aga-r6b144ba2023-02-18 12:18:41 +0530905 query = query.where(ip.supplier == args.get("supplier"))
Nabin Hait4e456632019-01-29 14:02:08 +0530906 else:
s-aga-r6b144ba2023-02-18 12:18:41 +0530907 query = query.where((IfNull(ip.customer, "") == "") & (IfNull(ip.supplier, "") == ""))
Nabin Hait01ca3e52019-01-25 16:25:15 +0530908
Ankush Menat494bd9e2022-03-28 18:52:46 +0530909 if args.get("transaction_date"):
s-aga-r6b144ba2023-02-18 12:18:41 +0530910 query = query.where(
911 (IfNull(ip.valid_from, "2000-01-01") <= args["transaction_date"])
912 & (IfNull(ip.valid_upto, "2500-12-31") >= args["transaction_date"])
913 )
Deepesh Gargf15ff5f2020-07-11 13:58:53 +0530914
barredterra58b3ce62024-03-21 13:48:05 +0100915 return query.run(as_dict=True)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530916
Nabin Haite45ec662018-08-01 17:44:34 +0530917
918def get_price_list_rate_for(args, item_code):
919 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530920 :param customer: link to Customer DocType
921 :param supplier: link to Supplier DocType
922 :param price_list: str (Standard Buying or Standard Selling)
923 :param item_code: str, Item Doctype field item_code
924 :param qty: Desired Qty
925 :param transaction_date: Date of the price
Nabin Haite45ec662018-08-01 17:44:34 +0530926 """
927 item_price_args = {
Ankush Menat494bd9e2022-03-28 18:52:46 +0530928 "item_code": item_code,
929 "price_list": args.get("price_list"),
930 "customer": args.get("customer"),
931 "supplier": args.get("supplier"),
932 "uom": args.get("uom"),
933 "transaction_date": args.get("transaction_date"),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530934 "batch_no": args.get("batch_no"),
Nabin Haite45ec662018-08-01 17:44:34 +0530935 }
936
937 item_price_data = 0
938 price_list_rate = get_item_price(item_price_args, item_code)
939 if price_list_rate:
940 desired_qty = args.get("qty")
barredterra58b3ce62024-03-21 13:48:05 +0100941 if desired_qty and check_packing_list(price_list_rate[0].name, desired_qty, item_code):
Nabin Haite45ec662018-08-01 17:44:34 +0530942 item_price_data = price_list_rate
943 else:
Don-Leopardoccdf1932020-01-09 03:54:43 -0300944 for field in ["customer", "supplier"]:
Nabin Haite45ec662018-08-01 17:44:34 +0530945 del item_price_args[field]
946
Ankush Menat494bd9e2022-03-28 18:52:46 +0530947 general_price_list_rate = get_item_price(
948 item_price_args, item_code, ignore_party=args.get("ignore_party")
949 )
Don-Leopardoccdf1932020-01-09 03:54:43 -0300950
Nabin Haite45ec662018-08-01 17:44:34 +0530951 if not general_price_list_rate and args.get("uom") != args.get("stock_uom"):
Suraj Shettyc87b47a2019-04-29 23:18:47 +0530952 item_price_args["uom"] = args.get("stock_uom")
Ankush Menat494bd9e2022-03-28 18:52:46 +0530953 general_price_list_rate = get_item_price(
954 item_price_args, item_code, ignore_party=args.get("ignore_party")
955 )
Nabin Haite45ec662018-08-01 17:44:34 +0530956
957 if general_price_list_rate:
958 item_price_data = general_price_list_rate
959
960 if item_price_data:
barredterra58b3ce62024-03-21 13:48:05 +0100961 if item_price_data[0].uom == args.get("uom"):
962 return item_price_data[0].price_list_rate
Ankush Menat494bd9e2022-03-28 18:52:46 +0530963 elif not args.get("price_list_uom_dependant"):
barredterra58b3ce62024-03-21 13:48:05 +0100964 return flt(item_price_data[0].price_list_rate * flt(args.get("conversion_factor", 1)))
Nabin Haite45ec662018-08-01 17:44:34 +0530965 else:
barredterra58b3ce62024-03-21 13:48:05 +0100966 return item_price_data[0].price_list_rate
Nabin Haite45ec662018-08-01 17:44:34 +0530967
Ankush Menat494bd9e2022-03-28 18:52:46 +0530968
Nabin Haite45ec662018-08-01 17:44:34 +0530969def check_packing_list(price_list_rate_name, desired_qty, item_code):
970 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530971 Check if the desired qty is within the increment of the packing list.
972 :param price_list_rate_name: Name of Item Price
973 :param desired_qty: Desired Qt
974 :param item_code: str, Item Doctype field item_code
975 :param qty: Desired Qt
Nabin Haite45ec662018-08-01 17:44:34 +0530976 """
977
Rohit Waghchaurecd34c702019-02-27 18:01:25 +0530978 flag = True
Nabin Haite45ec662018-08-01 17:44:34 +0530979 item_price = frappe.get_doc("Item Price", price_list_rate_name)
Rohit Waghchaureb48effe2019-02-27 19:31:32 +0530980 if item_price.packing_unit:
Nabin Haite45ec662018-08-01 17:44:34 +0530981 packing_increment = desired_qty % item_price.packing_unit
982
Rohit Waghchaurecd34c702019-02-27 18:01:25 +0530983 if packing_increment != 0:
984 flag = False
985
986 return flag
Rushabh Mehta1a763742014-10-03 16:36:43 +0530987
Ankush Menat494bd9e2022-03-28 18:52:46 +0530988
Nabin Hait436f5262014-02-10 14:47:54 +0530989def validate_conversion_rate(args, meta):
Rushabh Mehta66e08e32014-09-29 12:17:03 +0530990 from erpnext.controllers.accounts_controller import validate_conversion_rate
Anand Doshibd67e872014-04-11 16:51:27 +0530991
Ankush Menat494bd9e2022-03-28 18:52:46 +0530992 company_currency = frappe.get_cached_value("Company", args.company, "default_currency")
993 if not args.conversion_rate and args.currency == company_currency:
Anand Doshife13bfe2015-08-25 12:49:40 +0530994 args.conversion_rate = 1.0
995
Akhil Narang3effaf22024-03-27 11:37:26 +0530996 if not args.ignore_conversion_rate and args.conversion_rate == 1 and args.currency != company_currency:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530997 args.conversion_rate = (
998 get_exchange_rate(args.currency, company_currency, args.transaction_date, "for_buying") or 1.0
999 )
Rohit Waghchaure4acbeec2021-07-13 11:45:41 +05301000
Nabin Hait436f5262014-02-10 14:47:54 +05301001 # validate currency conversion rate
Ankush Menat494bd9e2022-03-28 18:52:46 +05301002 validate_conversion_rate(
1003 args.currency, args.conversion_rate, meta.get_label("conversion_rate"), args.company
1004 )
Anand Doshibd67e872014-04-11 16:51:27 +05301005
Ankush Menat494bd9e2022-03-28 18:52:46 +05301006 args.conversion_rate = flt(
1007 args.conversion_rate,
1008 get_field_precision(meta.get_field("conversion_rate"), frappe._dict({"fields": args})),
1009 )
Anand Doshibd67e872014-04-11 16:51:27 +05301010
Nabin Hait06c8cf42019-05-16 19:17:02 +05301011 if args.price_list:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301012 if not args.plc_conversion_rate and args.price_list_currency == frappe.db.get_value(
1013 "Price List", args.price_list, "currency", cache=True
1014 ):
Nabin Hait06c8cf42019-05-16 19:17:02 +05301015 args.plc_conversion_rate = 1.0
Manas Solanki3504a232018-06-06 12:46:06 +05301016
Nabin Hait06c8cf42019-05-16 19:17:02 +05301017 # validate price list currency conversion rate
1018 if not args.get("price_list_currency"):
1019 throw(_("Price List Currency not selected"))
1020 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301021 validate_conversion_rate(
1022 args.price_list_currency,
1023 args.plc_conversion_rate,
1024 meta.get_label("plc_conversion_rate"),
1025 args.company,
1026 )
Anand Doshibd67e872014-04-11 16:51:27 +05301027
Nabin Hait06c8cf42019-05-16 19:17:02 +05301028 if meta.get_field("plc_conversion_rate"):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301029 args.plc_conversion_rate = flt(
1030 args.plc_conversion_rate,
Akhil Narang3effaf22024-03-27 11:37:26 +05301031 get_field_precision(
1032 meta.get_field("plc_conversion_rate"), frappe._dict({"fields": args})
1033 ),
Ankush Menat494bd9e2022-03-28 18:52:46 +05301034 )
1035
Anand Doshibd67e872014-04-11 16:51:27 +05301036
Rushabh Mehtaf14b8092014-04-03 14:30:42 +05301037def get_party_item_code(args, item_doc, out):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301038 if args.transaction_type == "selling" and args.customer:
Zarrar3fd63472018-03-09 12:10:45 +05301039 out.customer_item_code = None
Nabin Hait34c551d2019-07-03 10:34:31 +05301040
Ankush Menat494bd9e2022-03-28 18:52:46 +05301041 if args.quotation_to and args.quotation_to != "Customer":
Nabin Hait34c551d2019-07-03 10:34:31 +05301042 return
1043
Nabin Hait79f091e2014-12-26 11:41:15 +05301044 customer_item_code = item_doc.get("customer_items", {"customer_name": args.customer})
Zarrar3fd63472018-03-09 12:10:45 +05301045
1046 if customer_item_code:
1047 out.customer_item_code = customer_item_code[0].ref_code
1048 else:
Nabin Hait9a33bc62018-08-09 10:47:09 +05301049 customer_group = frappe.get_cached_value("Customer", args.customer, "customer_group")
Zarrar3fd63472018-03-09 12:10:45 +05301050 customer_group_item_code = item_doc.get("customer_items", {"customer_group": customer_group})
1051 if customer_group_item_code and not customer_group_item_code[0].customer_name:
1052 out.customer_item_code = customer_group_item_code[0].ref_code
Anand Doshi54abf022016-01-21 22:28:47 +05301053
Ankush Menat494bd9e2022-03-28 18:52:46 +05301054 if args.transaction_type == "buying" and args.supplier:
Nabin Hait79f091e2014-12-26 11:41:15 +05301055 item_supplier = item_doc.get("supplier_items", {"supplier": args.supplier})
Nabin Hait436f5262014-02-10 14:47:54 +05301056 out.supplier_part_no = item_supplier[0].supplier_part_no if item_supplier else None
Anand Doshibd67e872014-04-11 16:51:27 +05301057
Ankush Menat494bd9e2022-03-28 18:52:46 +05301058
rohitwaghchaure2ea593b2018-04-12 13:37:08 +05301059def get_pos_profile_item_details(company, args, pos_profile=None, update_data=False):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05301060 res = frappe._dict()
Anand Doshibd67e872014-04-11 16:51:27 +05301061
Rushabh Mehta708e47a2018-08-08 16:37:31 +05301062 if not frappe.flags.pos_profile and not pos_profile:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301063 pos_profile = frappe.flags.pos_profile = get_pos_profile(company, args.get("pos_profile"))
Anand Doshibd67e872014-04-11 16:51:27 +05301064
Rushabh Mehtaad9156a2015-08-18 15:29:42 +05301065 if pos_profile:
Nabin Hait436f5262014-02-10 14:47:54 +05301066 for fieldname in ("income_account", "cost_center", "warehouse", "expense_account"):
rohitwaghchaure2ea593b2018-04-12 13:37:08 +05301067 if (not args.get(fieldname) or update_data) and pos_profile.get(fieldname):
Rushabh Mehtaad9156a2015-08-18 15:29:42 +05301068 res[fieldname] = pos_profile.get(fieldname)
Anand Doshibd67e872014-04-11 16:51:27 +05301069
Nabin Hait436f5262014-02-10 14:47:54 +05301070 if res.get("warehouse"):
s-aga-rc716dcc2022-12-29 12:34:18 +05301071 res.actual_qty = get_bin_details(
1072 args.item_code, res.warehouse, include_child_warehouses=True
1073 ).get("actual_qty")
Anand Doshibd67e872014-04-11 16:51:27 +05301074
Nabin Hait436f5262014-02-10 14:47:54 +05301075 return res
1076
Ankush Menat494bd9e2022-03-28 18:52:46 +05301077
Rushabh Mehtaad9156a2015-08-18 15:29:42 +05301078@frappe.whitelist()
rohitwaghchaurec037dc72017-11-28 16:11:15 +05301079def get_pos_profile(company, pos_profile=None, user=None):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301080 if pos_profile:
1081 return frappe.get_cached_doc("POS Profile", pos_profile)
rohitwaghchaurec037dc72017-11-28 16:11:15 +05301082
1083 if not user:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301084 user = frappe.session["user"]
rohitwaghchaurec037dc72017-11-28 16:11:15 +05301085
s-aga-r6b144ba2023-02-18 12:18:41 +05301086 pf = frappe.qb.DocType("POS Profile")
1087 pfu = frappe.qb.DocType("POS Profile User")
Rohit Waghchauree8e3fb12019-04-05 00:42:48 +05301088
s-aga-r6b144ba2023-02-18 12:18:41 +05301089 query = (
1090 frappe.qb.from_(pf)
1091 .left_join(pfu)
1092 .on(pf.name == pfu.parent)
1093 .select(pf.star)
1094 .where((pfu.user == user) & (pfu.default == 1))
Ankush Menat494bd9e2022-03-28 18:52:46 +05301095 )
Anand Doshibd67e872014-04-11 16:51:27 +05301096
s-aga-r6b144ba2023-02-18 12:18:41 +05301097 if company:
1098 query = query.where(pf.company == company)
1099
1100 pos_profile = query.run(as_dict=True)
1101
Rohit Waghchauree8e3fb12019-04-05 00:42:48 +05301102 if not pos_profile and company:
s-aga-r6b144ba2023-02-18 12:18:41 +05301103 pos_profile = (
1104 frappe.qb.from_(pf)
1105 .left_join(pfu)
1106 .on(pf.name == pfu.parent)
1107 .select(pf.star)
1108 .where((pf.company == company) & (pf.disabled == 0))
1109 ).run(as_dict=True)
Rohit Waghchauree8e3fb12019-04-05 00:42:48 +05301110
Rushabh Mehtaad9156a2015-08-18 15:29:42 +05301111 return pos_profile and pos_profile[0] or None
Anand Doshibd67e872014-04-11 16:51:27 +05301112
Ankush Menat494bd9e2022-03-28 18:52:46 +05301113
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05301114@frappe.whitelist()
Nabin Hait436f5262014-02-10 14:47:54 +05301115def get_conversion_factor(item_code, uom):
Rushabh Mehta708e47a2018-08-08 16:37:31 +05301116 variant_of = frappe.db.get_value("Item", item_code, "variant_of", cache=True)
Rushabh Mehta724f9e52014-10-07 15:29:58 +05301117 filters = {"parent": item_code, "uom": uom}
s-aga-r58c027d2023-02-28 15:14:34 +05301118
Rushabh Mehta724f9e52014-10-07 15:29:58 +05301119 if variant_of:
Nabin Hait314086d2015-10-07 11:55:01 +05301120 filters["parent"] = ("in", (item_code, variant_of))
Ankush Menat494bd9e2022-03-28 18:52:46 +05301121 conversion_factor = frappe.db.get_value("UOM Conversion Detail", filters, "conversion_factor")
Sagar Vora508189e2018-09-11 17:22:25 +05301122 if not conversion_factor:
1123 stock_uom = frappe.db.get_value("Item", item_code, "stock_uom")
1124 conversion_factor = get_uom_conv_factor(uom, stock_uom)
s-aga-r6b144ba2023-02-18 12:18:41 +05301125
rohitwaghchaureffdadbf2019-01-08 16:21:25 +05301126 return {"conversion_factor": conversion_factor or 1.0}
Nabin Hait08222152014-02-28 11:30:47 +05301127
Ankush Menat494bd9e2022-03-28 18:52:46 +05301128
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05301129@frappe.whitelist()
Nabin Hait436f5262014-02-10 14:47:54 +05301130def get_projected_qty(item_code, warehouse):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301131 return {
1132 "projected_qty": frappe.db.get_value(
1133 "Bin", {"item_code": item_code, "warehouse": warehouse}, "projected_qty"
1134 )
1135 }
1136
Nabin Hait08222152014-02-28 11:30:47 +05301137
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05301138@frappe.whitelist()
s-aga-rc716dcc2022-12-29 12:34:18 +05301139def get_bin_details(item_code, warehouse, company=None, include_child_warehouses=False):
ruthra kumarbe382052023-01-16 08:50:39 +05301140 bin_details = {"projected_qty": 0, "actual_qty": 0, "reserved_qty": 0}
s-aga-rc716dcc2022-12-29 12:34:18 +05301141
1142 if warehouse:
s-aga-rc3911a52022-12-29 16:38:08 +05301143 from frappe.query_builder.functions import Coalesce, Sum
s-aga-r58c027d2023-02-28 15:14:34 +05301144
s-aga-rc716dcc2022-12-29 12:34:18 +05301145 from erpnext.stock.doctype.warehouse.warehouse import get_child_warehouses
1146
1147 warehouses = get_child_warehouses(warehouse) if include_child_warehouses else [warehouse]
s-aga-rc3911a52022-12-29 16:38:08 +05301148
1149 bin = frappe.qb.DocType("Bin")
1150 bin_details = (
1151 frappe.qb.from_(bin)
1152 .select(
1153 Coalesce(Sum(bin.projected_qty), 0).as_("projected_qty"),
1154 Coalesce(Sum(bin.actual_qty), 0).as_("actual_qty"),
1155 Coalesce(Sum(bin.reserved_qty), 0).as_("reserved_qty"),
1156 )
1157 .where((bin.item_code == item_code) & (bin.warehouse.isin(warehouses)))
1158 ).run(as_dict=True)[0]
s-aga-rc716dcc2022-12-29 12:34:18 +05301159
Anupam4980dd62021-03-15 11:37:46 +05301160 if company:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301161 bin_details["company_total_stock"] = get_company_total_stock(item_code, company)
s-aga-rb425c2d2023-01-02 11:25:13 +05301162
Anupam4980dd62021-03-15 11:37:46 +05301163 return bin_details
Kanchan Chauhanaf0d6372016-11-13 21:19:09 +05301164
Ankush Menat494bd9e2022-03-28 18:52:46 +05301165
Anupam4980dd62021-03-15 11:37:46 +05301166def get_company_total_stock(item_code, company):
s-aga-r6b144ba2023-02-18 12:18:41 +05301167 bin = frappe.qb.DocType("Bin")
1168 wh = frappe.qb.DocType("Warehouse")
1169
1170 return (
1171 frappe.qb.from_(bin)
1172 .inner_join(wh)
1173 .on(bin.warehouse == wh.name)
1174 .select(Sum(bin.actual_qty))
1175 .where((wh.company == company) & (bin.item_code == item_code))
1176 ).run()[0][0]
Ankush Menat494bd9e2022-03-28 18:52:46 +05301177
Anupam4980dd62021-03-15 11:37:46 +05301178
1179@frappe.whitelist()
Rushabh Mehtae385b5b2017-04-20 15:21:01 +05301180def get_batch_qty(batch_no, warehouse, item_code):
sburanaw66951e52017-04-25 15:28:57 +07001181 from erpnext.stock.doctype.batch import batch
Ankush Menat494bd9e2022-03-28 18:52:46 +05301182
Sambhaji Kolate98dbccd2015-03-10 15:04:28 +05301183 if batch_no:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301184 return {"actual_batch_qty": batch.get_batch_qty(batch_no, warehouse)}
1185
Rushabh Mehta1e8025b2015-07-24 15:16:25 +05301186
Anand Doshidffec8f2014-07-01 17:45:15 +05301187@frappe.whitelist()
Rushabh Mehtab46069d2016-01-15 16:59:26 +05301188def apply_price_list(args, as_doc=False):
1189 """Apply pricelist on a document-like dict object and return as
1190 {'parent': dict, 'children': list}
1191
1192 :param args: See below
1193 :param as_doc: Updates value in the passed dict
1194
Ankush Menat494bd9e2022-03-28 18:52:46 +05301195 args = {
1196 "doctype": "",
1197 "name": "",
1198 "items": [{"doctype": "", "name": "", "item_code": "", "brand": "", "item_group": ""}, ...],
1199 "conversion_rate": 1.0,
1200 "selling_price_list": None,
1201 "price_list_currency": None,
1202 "price_list_uom_dependant": None,
1203 "plc_conversion_rate": 1.0,
1204 "doctype": "",
1205 "name": "",
1206 "supplier": None,
1207 "transaction_date": None,
1208 "conversion_rate": 1.0,
1209 "buying_price_list": None,
1210 "ignore_pricing_rule": 0/1
1211 }
Anand Doshidffec8f2014-07-01 17:45:15 +05301212 """
1213 args = process_args(args)
1214
1215 parent = get_price_list_currency_and_exchange_rate(args)
Maricae8bc9122021-04-19 11:05:21 +05301216 args.update(parent)
1217
Anand Doshidffec8f2014-07-01 17:45:15 +05301218 children = []
1219
Rushabh Mehtab46069d2016-01-15 16:59:26 +05301220 if "items" in args:
1221 item_list = args.get("items")
Anand Doshidffec8f2014-07-01 17:45:15 +05301222 args.update(parent)
1223
1224 for item in item_list:
1225 args_copy = frappe._dict(args.copy())
1226 args_copy.update(item)
1227 item_details = apply_price_list_on_item(args_copy)
1228 children.append(item_details)
1229
Rushabh Mehtab46069d2016-01-15 16:59:26 +05301230 if as_doc:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301231 args.price_list_currency = (parent.price_list_currency,)
Rushabh Mehtab46069d2016-01-15 16:59:26 +05301232 args.plc_conversion_rate = parent.plc_conversion_rate
Ankush Menat494bd9e2022-03-28 18:52:46 +05301233 if args.get("items"):
1234 for i, item in enumerate(args.get("items")):
Rushabh Mehtab46069d2016-01-15 16:59:26 +05301235 for fieldname in children[i]:
1236 # if the field exists in the original doc
1237 # update the value
1238 if fieldname in item and fieldname not in ("name", "doctype"):
1239 item[fieldname] = children[i][fieldname]
Rushabh Mehtab46069d2016-01-15 16:59:26 +05301240 return args
1241 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301242 return {"parent": parent, "children": children}
1243
Anand Doshidffec8f2014-07-01 17:45:15 +05301244
1245def apply_price_list_on_item(args):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301246 item_doc = frappe.db.get_value("Item", args.item_code, ["name", "variant_of"], as_dict=1)
Ankush16d4de52021-08-09 10:41:24 +05301247 item_details = get_price_list_rate(args, item_doc)
Deepesh Gargb741ae12022-12-02 17:14:06 +05301248 item_details.update(get_pricing_rule_for_item(args))
Rushabh Mehtab46069d2016-01-15 16:59:26 +05301249
Anand Doshidffec8f2014-07-01 17:45:15 +05301250 return item_details
1251
Ankush Menat494bd9e2022-03-28 18:52:46 +05301252
Anand Doshidffec8f2014-07-01 17:45:15 +05301253def get_price_list_currency_and_exchange_rate(args):
Anand Doshi70f57eb2015-11-27 14:37:40 +05301254 if not args.price_list:
1255 return {}
1256
Ankush Menat494bd9e2022-03-28 18:52:46 +05301257 if args.doctype in ["Quotation", "Sales Order", "Delivery Note", "Sales Invoice"]:
Shreya3f778522018-05-15 16:59:20 +05301258 args.update({"exchange_rate": "for_selling"})
Ankush Menat494bd9e2022-03-28 18:52:46 +05301259 elif args.doctype in ["Purchase Order", "Purchase Receipt", "Purchase Invoice"]:
Shreya3f778522018-05-15 16:59:20 +05301260 args.update({"exchange_rate": "for_buying"})
1261
rohitwaghchaurea85ddf22019-11-19 18:47:48 +05301262 price_list_details = get_price_list_details(args.price_list)
1263
1264 price_list_currency = price_list_details.get("currency")
1265 price_list_uom_dependant = price_list_details.get("price_list_uom_dependant")
1266
Anand Doshidffec8f2014-07-01 17:45:15 +05301267 plc_conversion_rate = args.plc_conversion_rate
tundebabzy6e90f492018-02-12 10:48:57 +01001268 company_currency = get_company_currency(args.company)
Anand Doshidffec8f2014-07-01 17:45:15 +05301269
Ankush Menat494bd9e2022-03-28 18:52:46 +05301270 if (not plc_conversion_rate) or (
Akhil Narang3effaf22024-03-27 11:37:26 +05301271 price_list_currency and args.price_list_currency and price_list_currency != args.price_list_currency
Ankush Menat494bd9e2022-03-28 18:52:46 +05301272 ):
1273 # cksgb 19/09/2016: added args.transaction_date as posting_date argument for get_exchange_rate
1274 plc_conversion_rate = (
1275 get_exchange_rate(
1276 price_list_currency, company_currency, args.transaction_date, args.exchange_rate
1277 )
1278 or plc_conversion_rate
1279 )
Anand Doshidffec8f2014-07-01 17:45:15 +05301280
Ankush Menat494bd9e2022-03-28 18:52:46 +05301281 return frappe._dict(
1282 {
1283 "price_list_currency": price_list_currency,
1284 "price_list_uom_dependant": price_list_uom_dependant,
1285 "plc_conversion_rate": plc_conversion_rate or 1,
1286 }
1287 )
1288
ankitjavalkarwork5edae0e2014-11-05 20:14:53 +05301289
1290@frappe.whitelist()
1291def get_default_bom(item_code=None):
marination9f2d3252022-06-14 17:20:44 +05301292 def _get_bom(item):
Akhil Narang3effaf22024-03-27 11:37:26 +05301293 bom = frappe.get_all("BOM", dict(item=item, is_active=True, is_default=True, docstatus=1), limit=1)
marination9f2d3252022-06-14 17:20:44 +05301294 return bom[0].name if bom else None
1295
1296 if not item_code:
1297 return
1298
1299 bom_name = _get_bom(item_code)
1300
1301 template_item = frappe.db.get_value("Item", item_code, "variant_of")
1302 if not bom_name and template_item:
1303 bom_name = _get_bom(template_item)
1304
1305 return bom_name
Rushabh Mehta0394aec2016-04-22 17:22:22 +05301306
Ankush Menat494bd9e2022-03-28 18:52:46 +05301307
Deepesh Garg15ff6a52020-02-18 12:28:41 +05301308@frappe.whitelist()
Manas Solanki087a2252018-05-04 16:02:38 +05301309def get_valuation_rate(item_code, company, warehouse=None):
rohitwaghchauree6199dc2023-09-20 17:27:35 +05301310 if frappe.get_cached_value("Warehouse", warehouse, "is_group"):
1311 return {"valuation_rate": 0.0}
1312
Manas Solankib16a4ec2018-05-04 16:49:33 +05301313 item = get_item_defaults(item_code, company)
Shreya Shah3c9839f2018-07-17 18:01:44 +05301314 item_group = get_item_group_defaults(item_code, company)
Saif Ur Rehmanc819ea32018-09-25 14:53:12 +05001315 brand = get_brand_defaults(item_code, company)
Manas Solanki087a2252018-05-04 16:02:38 +05301316 # item = frappe.get_doc("Item", item_code)
Manas Solankie3910fb2018-05-16 15:50:17 +05301317 if item.get("is_stock_item"):
Saurabhbd01a812016-03-07 14:32:23 +05301318 if not warehouse:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301319 warehouse = (
1320 item.get("default_warehouse")
1321 or item_group.get("default_warehouse")
1322 or brand.get("default_warehouse")
1323 )
Rushabh Mehta0394aec2016-04-22 17:22:22 +05301324
Ankush Menat494bd9e2022-03-28 18:52:46 +05301325 return frappe.db.get_value(
1326 "Bin", {"item_code": item_code, "warehouse": warehouse}, ["valuation_rate"], as_dict=True
1327 ) or {"valuation_rate": 0}
Rushabh Mehta0394aec2016-04-22 17:22:22 +05301328
Manas Solankie3910fb2018-05-16 15:50:17 +05301329 elif not item.get("is_stock_item"):
s-aga-r6b144ba2023-02-18 12:18:41 +05301330 pi_item = frappe.qb.DocType("Purchase Invoice Item")
1331 valuation_rate = (
1332 frappe.qb.from_(pi_item)
Akhil Narang3effaf22024-03-27 11:37:26 +05301333 .select(Sum(pi_item.base_net_amount) / Sum(pi_item.qty * pi_item.conversion_factor))
s-aga-r58c027d2023-02-28 15:14:34 +05301334 .where((pi_item.docstatus == 1) & (pi_item.item_code == item_code))
s-aga-r6b144ba2023-02-18 12:18:41 +05301335 ).run()
Rushabh Mehta0394aec2016-04-22 17:22:22 +05301336
Saurabhbd01a812016-03-07 14:32:23 +05301337 if valuation_rate:
1338 return {"valuation_rate": valuation_rate[0][0] or 0.0}
1339 else:
1340 return {"valuation_rate": 0.0}
Rushabh Mehta0394aec2016-04-22 17:22:22 +05301341
Ankush Menat494bd9e2022-03-28 18:52:46 +05301342
Saurabh2d7af632016-02-26 11:09:20 +05301343def get_gross_profit(out):
Saurabh5ada14b2016-02-26 18:02:55 +05301344 if out.valuation_rate:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301345 out.update({"gross_profit": ((out.base_rate - out.valuation_rate) * out.stock_qty)})
Rushabh Mehta0394aec2016-04-22 17:22:22 +05301346
Saurabhd3135532016-02-25 18:59:20 +05301347 return out
mbauskar6f603392016-01-21 16:10:22 +05301348
Ankush Menat494bd9e2022-03-28 18:52:46 +05301349
Kanchan Chauhanaf0d6372016-11-13 21:19:09 +05301350@frappe.whitelist()
Ranjith Kurungadamd54991d2018-08-01 17:47:07 +05301351def get_serial_no(args, serial_nos=None, sales_order=None):
Rohit Waghchaure648efca2023-03-28 12:16:27 +05301352 serial_nos = serial_nos or []
1353 return serial_nos
Manas Solankie5e87f72018-05-28 20:07:08 +05301354
1355
1356def update_party_blanket_order(args, out):
ronelvcabrera370cdc02019-12-04 18:37:11 +08001357 if out["against_blanket_order"]:
1358 blanket_order_details = get_blanket_order_details(args)
1359 if blanket_order_details:
1360 out.update(blanket_order_details)
Manas Solankie5e87f72018-05-28 20:07:08 +05301361
Ankush Menat494bd9e2022-03-28 18:52:46 +05301362
Manas Solankie5e87f72018-05-28 20:07:08 +05301363@frappe.whitelist()
1364def get_blanket_order_details(args):
Ankush Menat8fe5feb2021-11-04 19:48:32 +05301365 if isinstance(args, str):
Manas Solankie5e87f72018-05-28 20:07:08 +05301366 args = frappe._dict(json.loads(args))
1367
1368 blanket_order_details = None
Nabin Hait2737b082018-06-14 18:07:22 +05301369
s-aga-r6b144ba2023-02-18 12:18:41 +05301370 if args.item_code:
1371 bo = frappe.qb.DocType("Blanket Order")
1372 bo_item = frappe.qb.DocType("Blanket Order Item")
1373
1374 query = (
1375 frappe.qb.from_(bo)
1376 .from_(bo_item)
1377 .select(bo_item.rate.as_("blanket_order_rate"), bo.name.as_("blanket_order"))
1378 .where(
1379 (bo.company == args.company)
1380 & (bo_item.item_code == args.item_code)
1381 & (bo.docstatus == 1)
1382 & (bo.name == bo_item.parent)
1383 )
Ankush Menat494bd9e2022-03-28 18:52:46 +05301384 )
Nabin Hait2737b082018-06-14 18:07:22 +05301385
s-aga-r6b144ba2023-02-18 12:18:41 +05301386 if args.customer and args.doctype == "Sales Order":
1387 query = query.where(bo.customer == args.customer)
1388 elif args.supplier and args.doctype == "Purchase Order":
1389 query = query.where(bo.supplier == args.supplier)
1390 if args.blanket_order:
1391 query = query.where(bo.name == args.blanket_order)
1392 if args.transaction_date:
1393 query = query.where(bo.to_date >= args.transaction_date)
1394
1395 blanket_order_details = query.run(as_dict=True)
Ankush Menat494bd9e2022-03-28 18:52:46 +05301396 blanket_order_details = blanket_order_details[0] if blanket_order_details else ""
s-aga-r6b144ba2023-02-18 12:18:41 +05301397
Manas Solankie5e87f72018-05-28 20:07:08 +05301398 return blanket_order_details