blob: 359d7214292189f258debbe6ae777be45080e8fa [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 Haitec52db82013-01-22 11:53:14 +05303
Nabin Haitec52db82013-01-22 11:53:14 +05304
Chillar Anand915b3432021-09-02 16:44:59 +05305import frappe
6from frappe import _, bold, throw
Rohit Waghchaure6c9b2122022-12-05 14:48:18 +05307from frappe.utils import cint, flt, get_link_to_form, nowtime
Chillar Anand915b3432021-09-02 16:44:59 +05308
Ankush Menatf4d74992023-10-17 22:11:56 +05309from erpnext.accounts.party import render_address
Chillar Anand915b3432021-09-02 16:44:59 +053010from erpnext.controllers.accounts_controller import get_taxes_and_charges
Nabin Haita77b8c92020-12-21 14:45:50 +053011from erpnext.controllers.sales_and_purchase_return import get_rate_for_return
Chillar Anand915b3432021-09-02 16:44:59 +053012from erpnext.controllers.stock_controller import StockController
13from erpnext.stock.doctype.item.item import set_item_default
14from erpnext.stock.get_item_details import get_bin_details, get_conversion_factor
mergify[bot]40576822023-12-19 18:29:56 +053015from erpnext.stock.utils import get_incoming_rate, get_valuation_method
Chillar Anand915b3432021-09-02 16:44:59 +053016
Nabin Haitbf495c92013-01-30 12:49:08 +053017
Nabin Haitc3afb252013-03-19 12:01:24 +053018class SellingController(StockController):
Nabin Hait993c6c02022-04-12 12:24:47 +053019 def __setup__(self):
20 self.flags.ignore_permlevel_for_fields = ["selling_price_list", "price_list_currency"]
21
Rushabh Mehtab5e76892014-07-29 16:07:43 +053022 def onload(self):
Rohit Waghchaure7d529892016-10-06 14:35:04 +053023 super(SellingController, self).onload()
Rushabh Mehtab5e76892014-07-29 16:07:43 +053024 if self.doctype in ("Sales Order", "Delivery Note", "Sales Invoice"):
Rohit Waghchaure02566a02023-01-20 22:38:56 +053025 for item in self.get("items") + (self.get("packed_items") or []):
s-aga-rc716dcc2022-12-29 12:34:18 +053026 item.update(get_bin_details(item.item_code, item.warehouse, include_child_warehouses=True))
Rushabh Mehtab5e76892014-07-29 16:07:43 +053027
Nabin Haitd1fd1e22013-10-18 12:29:11 +053028 def validate(self):
29 super(SellingController, self).validate()
Zarrarfc03a042018-06-04 12:52:52 +053030 self.validate_items()
Gursheen Anand5a3b1332024-02-22 16:08:11 +053031 if not self.get("is_debit_note"):
32 self.validate_max_discount()
shreyas1cfe2d72016-10-19 18:36:12 +053033 self.validate_selling_price()
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +053034 self.set_qty_as_per_stock_uom()
Afshan01eca122020-12-08 09:27:56 +053035 self.set_po_nos(for_validate=True)
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +050036 self.set_gross_profit()
Rushabh Mehta708e47a2018-08-08 16:37:31 +053037 set_default_income_account_for_item(self)
Rohit Waghchauref4dc7162018-11-15 17:04:02 +053038 self.set_customer_address()
Deepesh Gargf3d78dd2019-08-23 11:42:35 +053039 self.validate_for_duplicate_items()
rohitwaghchaure6fa6caf2020-04-23 09:46:29 +053040 self.validate_target_warehouse()
Deepesh Gargfa152212022-11-28 19:22:35 +053041 self.validate_auto_repeat_subscription_dates()
Rohit Waghchaure674bd3e2023-03-17 16:42:59 +053042 for table_field in ["items", "packed_items"]:
43 if self.get(table_field):
44 self.set_serial_and_batch_bundle(table_field)
Anand Doshid2946502014-04-08 20:10:03 +053045
Anand Doshif3096132013-05-21 19:35:06 +053046 def set_missing_values(self, for_validate=False):
Anand Doshiabc10032013-06-14 17:44:03 +053047 super(SellingController, self).set_missing_values(for_validate)
Anand Doshid2946502014-04-08 20:10:03 +053048
Anand Doshif3096132013-05-21 19:35:06 +053049 # set contact and address details for customer, if they are not mentioned
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053050 self.set_missing_lead_customer_details(for_validate=for_validate)
mbauskar9e9d2422017-04-10 19:16:07 +053051 self.set_price_list_and_item_details(for_validate=for_validate)
Anand Doshid2946502014-04-08 20:10:03 +053052
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053053 def set_missing_lead_customer_details(self, for_validate=False):
Nabin Hait34c551d2019-07-03 10:34:31 +053054 customer, lead = None, None
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053055 if getattr(self, "customer", None):
Nabin Hait34c551d2019-07-03 10:34:31 +053056 customer = self.customer
57 elif self.doctype == "Opportunity" and self.party_name:
58 if self.opportunity_from == "Customer":
59 customer = self.party_name
60 else:
61 lead = self.party_name
62 elif self.doctype == "Quotation" and self.party_name:
63 if self.quotation_to == "Customer":
64 customer = self.party_name
Nabin Hait5a0aacc2023-06-06 15:39:22 +053065 elif self.quotation_to == "Lead":
Nabin Hait34c551d2019-07-03 10:34:31 +053066 lead = self.party_name
67
68 if customer:
Anand Doshi43624432014-02-25 15:42:16 +053069 from erpnext.accounts.party import _get_party_details
Ankush Menat494bd9e2022-03-28 18:52:46 +053070
rohitwaghchaure3ffe8962018-07-13 17:40:48 +053071 fetch_payment_terms_template = False
Ankush Menat494bd9e2022-03-28 18:52:46 +053072 if self.get("__islocal") or self.company != frappe.db.get_value(
73 self.doctype, self.name, "company"
74 ):
rohitwaghchaure3ffe8962018-07-13 17:40:48 +053075 fetch_payment_terms_template = True
76
Ankush Menat494bd9e2022-03-28 18:52:46 +053077 party_details = _get_party_details(
78 customer,
Nabin Hait7eba1a32017-10-02 15:59:27 +053079 ignore_permissions=self.flags.ignore_permissions,
Ankush Menat494bd9e2022-03-28 18:52:46 +053080 doctype=self.doctype,
81 company=self.company,
82 posting_date=self.get("posting_date"),
Shreya Shah5615cb42018-10-07 11:42:07 +053083 fetch_payment_terms_template=fetch_payment_terms_template,
Ankush Menat494bd9e2022-03-28 18:52:46 +053084 party_address=self.customer_address,
85 shipping_address=self.shipping_address_name,
86 company_address=self.get("company_address"),
87 )
Nabin Hait6b039142014-05-02 15:45:10 +053088 if not self.meta.get_field("sales_team"):
89 party_details.pop("sales_team")
Nabin Hait6b039142014-05-02 15:45:10 +053090 self.update_if_missing(party_details)
Anand Doshid2946502014-04-08 20:10:03 +053091
Nabin Hait34c551d2019-07-03 10:34:31 +053092 elif lead:
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053093 from erpnext.crm.doctype.lead.lead import get_lead_details
Anand Doshid2946502014-04-08 20:10:03 +053094
Ankush Menat494bd9e2022-03-28 18:52:46 +053095 self.update_if_missing(
96 get_lead_details(
97 lead,
98 posting_date=self.get("transaction_date") or self.get("posting_date"),
99 company=self.company,
100 )
101 )
102
103 if self.get("taxes_and_charges") and not self.get("taxes") and not for_validate:
104 taxes = get_taxes_and_charges("Sales Taxes and Charges Template", self.taxes_and_charges)
Deepesh Garg6f3d93e2020-09-18 11:23:35 +0530105 for tax in taxes:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530106 self.append("taxes", tax)
Deepesh Garg6f3d93e2020-09-18 11:23:35 +0530107
mbauskar9e9d2422017-04-10 19:16:07 +0530108 def set_price_list_and_item_details(self, for_validate=False):
Nabin Hait096d3632013-10-17 17:01:14 +0530109 self.set_price_list_currency("Selling")
mbauskar287fe812017-04-10 19:15:57 +0530110 self.set_missing_item_details(for_validate=for_validate)
Anand Doshid2946502014-04-08 20:10:03 +0530111
Anand Doshiac32bad2014-04-18 01:30:14 +0530112 def remove_shipping_charge(self):
113 if self.shipping_rule:
114 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530115 existing_shipping_charge = self.get(
116 "taxes",
117 {
118 "doctype": "Sales Taxes and Charges",
119 "charge_type": "Actual",
120 "account_head": shipping_rule.account,
121 "cost_center": shipping_rule.cost_center,
122 },
123 )
Anand Doshiac32bad2014-04-18 01:30:14 +0530124 if existing_shipping_charge:
Nabin Haite7d15362014-12-25 16:01:55 +0530125 self.get("taxes").remove(existing_shipping_charge[-1])
Anand Doshiac32bad2014-04-18 01:30:14 +0530126 self.calculate_taxes_and_totals()
Anand Doshid2946502014-04-08 20:10:03 +0530127
Nabin Haitec52db82013-01-22 11:53:14 +0530128 def set_total_in_words(self):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530129 from frappe.utils import money_in_words
Anand Doshid2946502014-04-08 20:10:03 +0530130
Nabin Hait5690be12015-02-12 16:09:11 +0530131 if self.meta.get_field("base_in_words"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530132 base_amount = abs(
133 self.base_grand_total if self.is_rounded_total_disabled() else self.base_rounded_total
134 )
Nabin Hait877e1bb2017-11-17 12:27:43 +0530135 self.base_in_words = money_in_words(base_amount, self.company_currency)
136
Nabin Haitec52db82013-01-22 11:53:14 +0530137 if self.meta.get_field("in_words"):
Nabin Hait877e1bb2017-11-17 12:27:43 +0530138 amount = abs(self.grand_total if self.is_rounded_total_disabled() else self.rounded_total)
139 self.in_words = money_in_words(amount, self.currency)
Anand Doshid2946502014-04-08 20:10:03 +0530140
Anand Doshi923d41d2013-05-28 17:23:36 +0530141 def calculate_commission(self):
Deepesh Garg10632d72023-03-07 11:44:09 +0530142 if not self.meta.get_field("commission_rate") or self.docstatus.is_submitted():
Raffael Meyere10ab162021-11-30 13:24:18 +0100143 return
Anand Doshid2946502014-04-08 20:10:03 +0530144
Ankush Menat494bd9e2022-03-28 18:52:46 +0530145 self.round_floats_in(self, ("amount_eligible_for_commission", "commission_rate"))
Raffael Meyere10ab162021-11-30 13:24:18 +0100146
147 if not (0 <= self.commission_rate <= 100.0):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530148 throw(
149 "{} {}".format(
150 _(self.meta.get_label("commission_rate")),
151 _("must be between 0 and 100"),
152 )
153 )
Raffael Meyere10ab162021-11-30 13:24:18 +0100154
155 self.amount_eligible_for_commission = sum(
156 item.base_net_amount for item in self.items if item.grant_commission
157 )
158
159 self.total_commission = flt(
160 self.amount_eligible_for_commission * self.commission_rate / 100.0,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530161 self.precision("total_commission"),
Raffael Meyere10ab162021-11-30 13:24:18 +0100162 )
Anand Doshif3096132013-05-21 19:35:06 +0530163
164 def calculate_contribution(self):
Anand Doshiac32bad2014-04-18 01:30:14 +0530165 if not self.meta.get_field("sales_team"):
166 return
167
Anand Doshif3096132013-05-21 19:35:06 +0530168 total = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530169 sales_team = self.get("sales_team")
Anand Doshif3096132013-05-21 19:35:06 +0530170 for sales_person in sales_team:
171 self.round_floats_in(sales_person)
172
173 sales_person.allocated_amount = flt(
Indrajith.vs0c8276e2023-05-14 11:47:46 +0530174 flt(self.amount_eligible_for_commission) * sales_person.allocated_percentage / 100.0,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530175 self.precision("allocated_amount", sales_person),
176 )
Anand Doshid2946502014-04-08 20:10:03 +0530177
Anuja Pawar87553392021-03-01 10:44:13 +0530178 if sales_person.commission_rate:
179 sales_person.incentives = flt(
Sagar Voraf4a6c782021-03-17 19:57:53 +0530180 sales_person.allocated_amount * flt(sales_person.commission_rate) / 100.0,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530181 self.precision("incentives", sales_person),
182 )
Anuja Pawar87553392021-03-01 10:44:13 +0530183
Anand Doshif3096132013-05-21 19:35:06 +0530184 total += sales_person.allocated_percentage
Anand Doshid2946502014-04-08 20:10:03 +0530185
Anand Doshif3096132013-05-21 19:35:06 +0530186 if sales_team and total != 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530187 throw(_("Total allocated percentage for sales team should be 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530188
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530189 def validate_max_discount(self):
Nabin Haitdd38a262014-12-26 13:15:21 +0530190 for d in self.get("items"):
Nabin Haitc35271a2018-08-10 19:01:04 +0530191 if d.item_code:
192 discount = flt(frappe.get_cached_value("Item", d.item_code, "max_discount"))
Anand Doshid2946502014-04-08 20:10:03 +0530193
Nabin Haitc35271a2018-08-10 19:01:04 +0530194 if discount and flt(d.discount_percentage) > discount:
195 frappe.throw(_("Maximum discount for Item {0} is {1}%").format(d.item_code, discount))
Anand Doshid2946502014-04-08 20:10:03 +0530196
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530197 def set_qty_as_per_stock_uom(self):
rohitwaghchauredd4769e2023-09-20 18:09:03 +0530198 allow_to_edit_stock_qty = frappe.db.get_single_value(
199 "Stock Settings", "allow_to_edit_stock_uom_qty_for_sales"
200 )
201
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530202 for d in self.get("items"):
203 if d.meta.get_field("stock_qty"):
204 if not d.conversion_factor:
205 frappe.throw(_("Row {0}: Conversion Factor is mandatory").format(d.idx))
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530206 d.stock_qty = flt(d.qty) * flt(d.conversion_factor)
rohitwaghchauredd4769e2023-09-20 18:09:03 +0530207 if allow_to_edit_stock_qty:
208 d.stock_qty = flt(d.stock_qty, d.precision("stock_qty"))
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530209
shreyas1cfe2d72016-10-19 18:36:12 +0530210 def validate_selling_price(self):
Saqibfff00ce2020-05-05 16:14:17 +0530211 def throw_message(idx, item_name, rate, ref_rate_field):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530212 throw(
213 _(
214 """Row #{0}: Selling rate for item {1} is lower than its {2}.
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530215 Selling {3} should be atleast {4}.<br><br>Alternatively,
216 you can disable selling price validation in {5} to bypass
Ankush Menat494bd9e2022-03-28 18:52:46 +0530217 this validation."""
218 ).format(
219 idx,
220 bold(item_name),
221 bold(ref_rate_field),
222 bold("net rate"),
223 bold(rate),
224 get_link_to_form("Selling Settings", "Selling Settings"),
225 ),
226 title=_("Invalid Selling Price"),
227 )
mbauskare9747a82016-11-16 17:19:47 +0530228
Ankush Menat494bd9e2022-03-28 18:52:46 +0530229 if self.get("is_return") or not frappe.db.get_single_value(
230 "Selling Settings", "validate_selling_price"
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530231 ):
rohitwaghchaure45ac31a2018-02-12 11:27:37 +0530232 return
233
Ankush Menat494bd9e2022-03-28 18:52:46 +0530234 is_internal_customer = self.get("is_internal_customer")
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530235 valuation_rate_map = {}
236
237 for item in self.items:
Krithi Ramani8c536ff2022-01-19 15:27:09 +0530238 if not item.item_code or item.is_free_item:
Saurabhd7e18692017-09-18 15:43:35 +0530239 continue
prssannab57b3c92020-10-22 15:37:47 +0530240
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530241 last_purchase_rate, is_stock_item = frappe.get_cached_value(
242 "Item", item.item_code, ("last_purchase_rate", "is_stock_item")
243 )
shreyase8aaa922016-10-20 14:03:59 +0530244
Ankush Menat494bd9e2022-03-28 18:52:46 +0530245 last_purchase_rate_in_sales_uom = last_purchase_rate * (item.conversion_factor or 1)
shreyase8aaa922016-10-20 14:03:59 +0530246
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530247 if flt(item.base_net_rate) < flt(last_purchase_rate_in_sales_uom):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530248 throw_message(item.idx, item.item_name, last_purchase_rate_in_sales_uom, "last purchase rate")
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530249
250 if is_internal_customer or not is_stock_item:
251 continue
252
253 valuation_rate_map[(item.item_code, item.warehouse)] = None
254
255 if not valuation_rate_map:
256 return
257
258 or_conditions = (
259 f"""(item_code = {frappe.db.escape(valuation_rate[0])}
260 and warehouse = {frappe.db.escape(valuation_rate[1])})"""
261 for valuation_rate in valuation_rate_map
262 )
263
Ankush Menat494bd9e2022-03-28 18:52:46 +0530264 valuation_rates = frappe.db.sql(
265 f"""
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530266 select
267 item_code, warehouse, valuation_rate
268 from
269 `tabBin`
270 where
271 ({" or ".join(or_conditions)})
272 and valuation_rate > 0
Ankush Menat494bd9e2022-03-28 18:52:46 +0530273 """,
274 as_dict=True,
275 )
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530276
277 for rate in valuation_rates:
278 valuation_rate_map[(rate.item_code, rate.warehouse)] = rate.valuation_rate
279
280 for item in self.items:
Krithi Ramani8c536ff2022-01-19 15:27:09 +0530281 if not item.item_code or item.is_free_item:
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530282 continue
283
Ankush Menat494bd9e2022-03-28 18:52:46 +0530284 last_valuation_rate = valuation_rate_map.get((item.item_code, item.warehouse))
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530285
286 if not last_valuation_rate:
287 continue
288
Ankush Menat494bd9e2022-03-28 18:52:46 +0530289 last_valuation_rate_in_sales_uom = last_valuation_rate * (item.conversion_factor or 1)
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530290
291 if flt(item.base_net_rate) < flt(last_valuation_rate_in_sales_uom):
mergify[bot]d2aa4d52023-10-05 18:13:23 +0530292 throw_message(
293 item.idx, item.item_name, last_valuation_rate_in_sales_uom, "valuation rate (Moving Average)"
294 )
shreyas1cfe2d72016-10-19 18:36:12 +0530295
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530296 def get_item_list(self):
297 il = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530298 for d in self.get("items"):
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530299 if self.has_product_bundle(d.item_code):
Nabin Haite7d15362014-12-25 16:01:55 +0530300 for p in self.get("packed_items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530301 if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
302 # the packing details table's qty is already multiplied with parent's qty
Ankush Menat494bd9e2022-03-28 18:52:46 +0530303 il.append(
304 frappe._dict(
305 {
306 "warehouse": p.warehouse or d.warehouse,
307 "item_code": p.item_code,
308 "qty": flt(p.qty),
rohitwaghchaure07432892023-12-17 12:42:07 +0530309 "serial_no": p.serial_no if self.docstatus == 2 else None,
310 "batch_no": p.batch_no if self.docstatus == 2 else None,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530311 "uom": p.uom,
Rohit Waghchaured3ceb072023-03-31 09:03:54 +0530312 "serial_and_batch_bundle": p.serial_and_batch_bundle
313 or get_serial_and_batch_bundle(p, self),
Ankush Menat494bd9e2022-03-28 18:52:46 +0530314 "name": d.name,
315 "target_warehouse": p.target_warehouse,
316 "company": self.company,
317 "voucher_type": self.doctype,
318 "allow_zero_valuation": d.allow_zero_valuation_rate,
319 "sales_invoice_item": d.get("sales_invoice_item"),
320 "dn_detail": d.get("dn_detail"),
321 "incoming_rate": p.get("incoming_rate"),
Rohit Waghchaure23729992022-09-02 18:43:55 +0530322 "item_row": p,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530323 }
324 )
325 )
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530326 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530327 il.append(
328 frappe._dict(
329 {
330 "warehouse": d.warehouse,
331 "item_code": d.item_code,
332 "qty": d.stock_qty,
rohitwaghchaure07432892023-12-17 12:42:07 +0530333 "serial_no": d.serial_no if self.docstatus == 2 else None,
334 "batch_no": d.batch_no if self.docstatus == 2 else None,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530335 "uom": d.uom,
336 "stock_uom": d.stock_uom,
337 "conversion_factor": d.conversion_factor,
Rohit Waghchaure6c9b2122022-12-05 14:48:18 +0530338 "serial_and_batch_bundle": d.serial_and_batch_bundle,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530339 "name": d.name,
340 "target_warehouse": d.target_warehouse,
341 "company": self.company,
342 "voucher_type": self.doctype,
343 "allow_zero_valuation": d.allow_zero_valuation_rate,
344 "sales_invoice_item": d.get("sales_invoice_item"),
345 "dn_detail": d.get("dn_detail"),
346 "incoming_rate": d.get("incoming_rate"),
Rohit Waghchaure23729992022-09-02 18:43:55 +0530347 "item_row": d,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530348 }
349 )
350 )
Rohit Waghchaured3ceb072023-03-31 09:03:54 +0530351
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530352 return il
Anand Doshid2946502014-04-08 20:10:03 +0530353
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530354 def has_product_bundle(self, item_code):
Gursheen Anand16573372023-11-22 16:45:14 +0530355 product_bundle = frappe.qb.DocType("Product Bundle")
356 return (
357 frappe.qb.from_(product_bundle)
358 .select(product_bundle.name)
359 .where((product_bundle.new_item_code == item_code) & (product_bundle.disabled == 0))
360 ).run()
Anand Doshid2946502014-04-08 20:10:03 +0530361
Nabin Hait453cc372015-07-29 12:21:03 +0530362 def get_already_delivered_qty(self, current_docname, so, so_detail):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530363 delivered_via_dn = frappe.db.sql(
364 """select sum(qty) from `tabDelivery Note Item`
ankitjavalkarworke69a6112014-10-08 12:46:02 +0530365 where so_detail = %s and docstatus = 1
Anand Doshid2946502014-04-08 20:10:03 +0530366 and against_sales_order = %s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530367 and parent != %s""",
368 (so_detail, so, current_docname),
369 )
Anand Doshi01de9452016-01-26 16:22:50 +0530370
Ankush Menat494bd9e2022-03-28 18:52:46 +0530371 delivered_via_si = frappe.db.sql(
372 """select sum(si_item.qty)
Nabin Hait18267912015-08-17 15:36:23 +0530373 from `tabSales Invoice Item` si_item, `tabSales Invoice` si
Anand Doshi602e8252015-11-16 19:05:46 +0530374 where si_item.parent = si.name and si.update_stock = 1
Anand Doshi01de9452016-01-26 16:22:50 +0530375 and si_item.so_detail = %s and si.docstatus = 1
Nabin Hait18267912015-08-17 15:36:23 +0530376 and si_item.sales_order = %s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530377 and si.name != %s""",
378 (so_detail, so, current_docname),
379 )
Anand Doshi01de9452016-01-26 16:22:50 +0530380
Ankush Menat494bd9e2022-03-28 18:52:46 +0530381 total_delivered_qty = (flt(delivered_via_dn[0][0]) if delivered_via_dn else 0) + (
382 flt(delivered_via_si[0][0]) if delivered_via_si else 0
383 )
Anand Doshi01de9452016-01-26 16:22:50 +0530384
Nabin Hait453cc372015-07-29 12:21:03 +0530385 return total_delivered_qty
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530386
387 def get_so_qty_and_warehouse(self, so_detail):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530388 so_item = frappe.db.sql(
389 """select qty, warehouse from `tabSales Order Item`
390 where name = %s and docstatus = 1""",
391 so_detail,
392 as_dict=1,
393 )
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530394 so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
Nabin Haita7f757a2014-02-10 17:54:04 +0530395 so_warehouse = so_item and so_item[0]["warehouse"] or ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530396 return so_qty, so_warehouse
Anand Doshid2946502014-04-08 20:10:03 +0530397
Mangesh-Khairnare17b7092019-03-01 15:52:23 +0530398 def check_sales_order_on_hold_or_close(self, ref_fieldname):
Nabin Haitdd38a262014-12-26 13:15:21 +0530399 for d in self.get("items"):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530400 if d.get(ref_fieldname):
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530401 status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
mergify[bot]35f72a12023-08-26 19:29:33 +0530402 if status in ("Closed", "On Hold") and not self.is_return:
Saurabh8a8ef852015-10-21 19:28:53 +0530403 frappe.throw(_("Sales Order {0} is {1}").format(d.get(ref_fieldname), status))
shreyas1cfe2d72016-10-19 18:36:12 +0530404
Nabin Hait14aa9c52016-04-18 15:54:01 +0530405 def update_reserved_qty(self):
406 so_map = {}
407 for d in self.get("items"):
408 if d.so_detail:
409 if self.doctype == "Delivery Note" and d.against_sales_order:
410 so_map.setdefault(d.against_sales_order, []).append(d.so_detail)
411 elif self.doctype == "Sales Invoice" and d.sales_order and self.update_stock:
412 so_map.setdefault(d.sales_order, []).append(d.so_detail)
413
414 for so, so_item_rows in so_map.items():
415 if so and so_item_rows:
416 sales_order = frappe.get_doc("Sales Order", so)
417
mergify[bot]35f72a12023-08-26 19:29:33 +0530418 if (sales_order.status == "Closed" and not self.is_return) or sales_order.status in [
419 "Cancelled"
420 ]:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530421 frappe.throw(
422 _("{0} {1} is cancelled or closed").format(_("Sales Order"), so), frappe.InvalidStatusError
423 )
Nabin Hait14aa9c52016-04-18 15:54:01 +0530424
425 sales_order.update_reserved_qty(so_item_rows)
426
Nabin Haita77b8c92020-12-21 14:45:50 +0530427 def set_incoming_rate(self):
rohitwaghchaurefe4540d2021-08-26 12:52:36 +0530428 if self.doctype not in ("Delivery Note", "Sales Invoice"):
Nabin Haita77b8c92020-12-21 14:45:50 +0530429 return
430
431 items = self.get("items") + (self.get("packed_items") or [])
432 for d in items:
s-aga-re1b0fff2024-01-04 11:43:02 +0530433 if not frappe.get_cached_value("Item", d.item_code, "is_stock_item"):
434 continue
435
mergify[bot]40576822023-12-19 18:29:56 +0530436 if not self.get("return_against") or (
437 get_valuation_method(d.item_code) == "Moving Average" and self.get("is_return")
438 ):
Nabin Haita77b8c92020-12-21 14:45:50 +0530439 # Get incoming rate based on original item cost based on valuation method
Ankush Menat494bd9e2022-03-28 18:52:46 +0530440 qty = flt(d.get("stock_qty") or d.get("actual_qty"))
rohitwaghchaurece6c3b52021-04-13 20:55:52 +0530441
mergify[bot]07175362023-12-21 14:40:52 +0530442 if not d.incoming_rate or (
443 get_valuation_method(d.item_code) == "Moving Average" and self.get("is_return")
444 ):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530445 d.incoming_rate = get_incoming_rate(
446 {
447 "item_code": d.item_code,
448 "warehouse": d.warehouse,
449 "posting_date": self.get("posting_date") or self.get("transaction_date"),
450 "posting_time": self.get("posting_time") or nowtime(),
451 "qty": qty if cint(self.get("is_return")) else (-1 * qty),
Rohit Waghchaure674bd3e2023-03-17 16:42:59 +0530452 "serial_and_batch_bundle": d.serial_and_batch_bundle,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530453 "company": self.company,
454 "voucher_type": self.doctype,
455 "voucher_no": self.name,
rohitwaghchaure5e9016f2023-12-01 21:42:22 +0530456 "voucher_detail_no": d.name,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530457 "allow_zero_valuation": d.get("allow_zero_valuation"),
458 },
459 raise_error_if_no_rate=False,
460 )
Deepesh Gargb4be2922021-01-28 13:09:56 +0530461
462 # For internal transfers use incoming rate as the valuation rate
463 if self.is_internal_transfer():
Deepesh Gargef9d1262022-12-05 10:17:19 +0530464 if self.doctype == "Delivery Note" or self.get("update_stock"):
465 if d.doctype == "Packed Item":
466 incoming_rate = flt(
467 flt(d.incoming_rate, d.precision("incoming_rate")) * d.conversion_factor,
468 d.precision("incoming_rate"),
Ankush Menatee0a2772022-05-12 18:17:09 +0530469 )
Deepesh Gargef9d1262022-12-05 10:17:19 +0530470 if d.incoming_rate != incoming_rate:
471 d.incoming_rate = incoming_rate
472 else:
473 rate = flt(
474 flt(d.incoming_rate, d.precision("incoming_rate")) * d.conversion_factor,
475 d.precision("rate"),
476 )
477 if d.rate != rate:
478 d.rate = rate
479 frappe.msgprint(
480 _(
481 "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
482 ).format(d.idx),
483 alert=1,
484 )
Noah Jacobac0bc1f2021-06-24 19:36:17 +0530485
Deepesh Gargef9d1262022-12-05 10:17:19 +0530486 d.discount_percentage = 0.0
487 d.discount_amount = 0.0
488 d.margin_rate_or_amount = 0.0
Deepesh Gargb4be2922021-01-28 13:09:56 +0530489
Nabin Haita77b8c92020-12-21 14:45:50 +0530490 elif self.get("return_against"):
491 # Get incoming rate of return entry from reference document
492 # based on original item cost as per valuation method
Ankush Menat494bd9e2022-03-28 18:52:46 +0530493 d.incoming_rate = get_rate_for_return(
494 self.doctype, self.name, d.item_code, self.return_against, item_row=d
495 )
Nabin Haita77b8c92020-12-21 14:45:50 +0530496
Nabin Hait14aa9c52016-04-18 15:54:01 +0530497 def update_stock_ledger(self):
498 self.update_reserved_qty()
499
500 sl_entries = []
Nabin Haita77b8c92020-12-21 14:45:50 +0530501 # Loop over items and packed items table
Nabin Hait14aa9c52016-04-18 15:54:01 +0530502 for d in self.get_item_list():
Himanshu Mishra859d9422018-08-08 18:33:50 +0530503 if frappe.get_cached_value("Item", d.item_code, "is_stock_item") == 1 and flt(d.qty):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530504 if flt(d.conversion_factor) == 0.0:
505 d.conversion_factor = (
506 get_conversion_factor(d.item_code, d.uom).get("conversion_factor") or 1.0
507 )
rohitwaghchaure019d4de2020-08-20 15:53:58 +0530508
Nabin Haita77b8c92020-12-21 14:45:50 +0530509 # On cancellation or return entry submission, make stock ledger entry for
Nabin Hait14aa9c52016-04-18 15:54:01 +0530510 # target warehouse first, to update serial no values properly
511
Ankush Menat494bd9e2022-03-28 18:52:46 +0530512 if d.warehouse and (
513 (not cint(self.is_return) and self.docstatus == 1)
514 or (cint(self.is_return) and self.docstatus == 2)
515 ):
516 sl_entries.append(self.get_sle_for_source_warehouse(d))
Nabin Hait14aa9c52016-04-18 15:54:01 +0530517
mergify[bot]233bf5d2021-10-05 16:16:21 +0530518 if d.target_warehouse:
Nabin Haita77b8c92020-12-21 14:45:50 +0530519 sl_entries.append(self.get_sle_for_target_warehouse(d))
Nabin Hait14aa9c52016-04-18 15:54:01 +0530520
Ankush Menat494bd9e2022-03-28 18:52:46 +0530521 if d.warehouse and (
522 (not cint(self.is_return) and self.docstatus == 2)
523 or (cint(self.is_return) and self.docstatus == 1)
524 ):
525 sl_entries.append(self.get_sle_for_source_warehouse(d))
Nabin Haita77b8c92020-12-21 14:45:50 +0530526
Nabin Hait14aa9c52016-04-18 15:54:01 +0530527 self.make_sl_entries(sl_entries)
Anand Doshid2946502014-04-08 20:10:03 +0530528
Nabin Haita77b8c92020-12-21 14:45:50 +0530529 def get_sle_for_source_warehouse(self, item_row):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530530 sle = self.get_sl_entries(
531 item_row,
532 {
533 "actual_qty": -1 * flt(item_row.qty),
534 "incoming_rate": item_row.incoming_rate,
535 "recalculate_rate": cint(self.is_return),
Rohit Waghchaured3ceb072023-03-31 09:03:54 +0530536 "serial_and_batch_bundle": item_row.serial_and_batch_bundle,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530537 },
538 )
Nabin Haita77b8c92020-12-21 14:45:50 +0530539 if item_row.target_warehouse and not cint(self.is_return):
540 sle.dependant_sle_voucher_detail_no = item_row.name
541
542 return sle
543
544 def get_sle_for_target_warehouse(self, item_row):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530545 sle = self.get_sl_entries(
546 item_row, {"actual_qty": flt(item_row.qty), "warehouse": item_row.target_warehouse}
547 )
Nabin Haita77b8c92020-12-21 14:45:50 +0530548
549 if self.docstatus == 1:
550 if not cint(self.is_return):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530551 sle.update({"incoming_rate": item_row.incoming_rate, "recalculate_rate": 1})
Nabin Haita77b8c92020-12-21 14:45:50 +0530552 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530553 sle.update({"outgoing_rate": item_row.incoming_rate})
Nabin Haita77b8c92020-12-21 14:45:50 +0530554 if item_row.warehouse:
555 sle.dependant_sle_voucher_detail_no = item_row.name
Deepesh Gargb4be2922021-01-28 13:09:56 +0530556
Rohit Waghchaure86da3062023-03-20 14:15:34 +0530557 if item_row.serial_and_batch_bundle:
558 sle["serial_and_batch_bundle"] = self.make_package_for_transfer(
559 item_row.serial_and_batch_bundle, item_row.target_warehouse
560 )
561
Nabin Haita77b8c92020-12-21 14:45:50 +0530562 return sle
563
Afshan01eca122020-12-08 09:27:56 +0530564 def set_po_nos(self, for_validate=False):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530565 if self.doctype == "Sales Invoice" and hasattr(self, "items"):
Afshan01eca122020-12-08 09:27:56 +0530566 if for_validate and self.po_no:
567 return
Afshan3f971b22020-10-26 16:59:57 +0530568 self.set_pos_for_sales_invoice()
Ankush Menat494bd9e2022-03-28 18:52:46 +0530569 if self.doctype == "Delivery Note" and hasattr(self, "items"):
Afshan01eca122020-12-08 09:27:56 +0530570 if for_validate and self.po_no:
571 return
Afshan3f971b22020-10-26 16:59:57 +0530572 self.set_pos_for_delivery_note()
573
574 def set_pos_for_sales_invoice(self):
Afshan0a6e1b32020-10-26 21:23:31 +0530575 po_nos = []
Afshan01eca122020-12-08 09:27:56 +0530576 if self.po_no:
577 po_nos.append(self.po_no)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530578 self.get_po_nos("Sales Order", "sales_order", po_nos)
579 self.get_po_nos("Delivery Note", "delivery_note", po_nos)
580 self.po_no = ", ".join(list(set(x.strip() for x in ",".join(po_nos).split(","))))
Afshan3f971b22020-10-26 16:59:57 +0530581
582 def set_pos_for_delivery_note(self):
Afshan0a6e1b32020-10-26 21:23:31 +0530583 po_nos = []
Afshan01eca122020-12-08 09:27:56 +0530584 if self.po_no:
585 po_nos.append(self.po_no)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530586 self.get_po_nos("Sales Order", "against_sales_order", po_nos)
587 self.get_po_nos("Sales Invoice", "against_sales_invoice", po_nos)
588 self.po_no = ", ".join(list(set(x.strip() for x in ",".join(po_nos).split(","))))
Afshan0a6e1b32020-10-26 21:23:31 +0530589
590 def get_po_nos(self, ref_doctype, ref_fieldname, po_nos):
Ankush Menat98917802021-06-11 18:40:22 +0530591 doc_list = list(set(d.get(ref_fieldname) for d in self.items if d.get(ref_fieldname)))
Afshan0a6e1b32020-10-26 21:23:31 +0530592 if doc_list:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530593 po_nos += [
594 d.po_no
595 for d in frappe.get_all(ref_doctype, "po_no", filters={"name": ("in", doc_list)})
596 if d.get("po_no")
597 ]
Nabin Hait96f4b222018-03-13 15:46:59 +0530598
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500599 def set_gross_profit(self):
Abhishek Balam18e7b602020-05-26 18:37:02 +0530600 if self.doctype in ["Sales Order", "Quotation"]:
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500601 for item in self.items:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530602 item.gross_profit = flt(
Rohit Waghchaure951023f2024-01-31 11:32:17 +0530603 ((item.base_rate - flt(item.valuation_rate)) * item.stock_qty), self.precision("amount", item)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530604 )
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500605
Rohit Waghchauref4dc7162018-11-15 17:04:02 +0530606 def set_customer_address(self):
607 address_dict = {
Ankush Menat494bd9e2022-03-28 18:52:46 +0530608 "customer_address": "address_display",
609 "shipping_address_name": "shipping_address",
610 "company_address": "company_address_display",
Deepesh Garg104fdcb2022-11-24 16:41:40 +0530611 "dispatch_address_name": "dispatch_address",
Rohit Waghchauref4dc7162018-11-15 17:04:02 +0530612 }
613
614 for address_field, address_display_field in address_dict.items():
615 if self.get(address_field):
Ankush Menatf4d74992023-10-17 22:11:56 +0530616 self.set(
617 address_display_field, render_address(self.get(address_field), check_permissions=False)
618 )
Rohit Waghchauref4dc7162018-11-15 17:04:02 +0530619
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530620 def validate_for_duplicate_items(self):
621 check_list, chk_dupl_itm = [], []
622 if cint(frappe.db.get_single_value("Selling Settings", "allow_multiple_items")):
623 return
Saqib0681a482021-02-11 14:06:15 +0530624 if self.doctype == "Sales Invoice" and self.is_consolidated:
625 return
626 if self.doctype == "POS Invoice":
627 return
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530628
Ankush Menat494bd9e2022-03-28 18:52:46 +0530629 for d in self.get("items"):
Saqib0681a482021-02-11 14:06:15 +0530630 if self.doctype == "Sales Invoice":
Ankush Menat494bd9e2022-03-28 18:52:46 +0530631 stock_items = [
632 d.item_code,
633 d.description,
634 d.warehouse,
635 d.sales_order or d.delivery_note,
636 d.batch_no or "",
637 ]
Jannat Patelc1187bc2020-11-19 13:10:24 +0530638 non_stock_items = [d.item_code, d.description, d.sales_order or d.delivery_note]
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530639 elif self.doctype == "Delivery Note":
Ankush Menat494bd9e2022-03-28 18:52:46 +0530640 stock_items = [
641 d.item_code,
642 d.description,
643 d.warehouse,
644 d.against_sales_order or d.against_sales_invoice,
645 d.batch_no or "",
646 ]
647 non_stock_items = [
648 d.item_code,
649 d.description,
650 d.against_sales_order or d.against_sales_invoice,
651 ]
Rohit Waghchaure13c7e182019-08-29 19:45:19 +0530652 elif self.doctype in ["Sales Order", "Quotation"]:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530653 stock_items = [d.item_code, d.description, d.warehouse, ""]
Jannat Patelc1187bc2020-11-19 13:10:24 +0530654 non_stock_items = [d.item_code, d.description]
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530655
mergify[bot]89f516c2022-07-21 13:57:03 +0530656 duplicate_items_msg = _("Item {0} entered multiple times.").format(frappe.bold(d.item_code))
657 duplicate_items_msg += "<br><br>"
658 duplicate_items_msg += _("Please enable {} in {} to allow same item in multiple rows").format(
659 frappe.bold("Allow Item to Be Added Multiple Times in a Transaction"),
660 get_link_to_form("Selling Settings", "Selling Settings"),
661 )
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530662 if frappe.db.get_value("Item", d.item_code, "is_stock_item") == 1:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530663 if stock_items in check_list:
Saqibac9e6ff2021-01-28 17:58:55 +0530664 frappe.throw(duplicate_items_msg)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530665 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530666 check_list.append(stock_items)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530667 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530668 if non_stock_items in chk_dupl_itm:
Saqibac9e6ff2021-01-28 17:58:55 +0530669 frappe.throw(duplicate_items_msg)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530670 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530671 chk_dupl_itm.append(non_stock_items)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530672
rohitwaghchaure6fa6caf2020-04-23 09:46:29 +0530673 def validate_target_warehouse(self):
674 items = self.get("items") + (self.get("packed_items") or [])
675
676 for d in items:
677 if d.get("target_warehouse") and d.get("warehouse") == d.get("target_warehouse"):
678 warehouse = frappe.bold(d.get("target_warehouse"))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530679 frappe.throw(
680 _("Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same").format(
681 d.idx, warehouse, warehouse
682 )
683 )
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530684
mergify[bot]233bf5d2021-10-05 16:16:21 +0530685 if not self.get("is_internal_customer") and any(d.get("target_warehouse") for d in items):
686 msg = _("Target Warehouse is set for some items but the customer is not an internal customer.")
687 msg += " " + _("This {} will be treated as material transfer.").format(_(self.doctype))
688 frappe.msgprint(msg, title="Internal Transfer", alert=True)
689
Zarrarfc03a042018-06-04 12:52:52 +0530690 def validate_items(self):
691 # validate items to see if they have is_sales_item enabled
692 from erpnext.controllers.buying_controller import validate_item_type
Ankush Menat494bd9e2022-03-28 18:52:46 +0530693
Zarrarfc03a042018-06-04 12:52:52 +0530694 validate_item_type(self, "is_sales_item", "sales")
695
Ankush Menat494bd9e2022-03-28 18:52:46 +0530696
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530697def set_default_income_account_for_item(obj):
Nabin Haitdd38a262014-12-26 13:15:21 +0530698 for d in obj.get("items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530699 if d.item_code:
Manas Solanki5b935622018-05-16 17:44:51 +0530700 if getattr(d, "income_account", None):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530701 set_item_default(d.item_code, obj.company, "income_account", d.income_account)
Rohit Waghchaured3ceb072023-03-31 09:03:54 +0530702
703
704def get_serial_and_batch_bundle(child, parent):
705 from erpnext.stock.serial_batch_bundle import SerialBatchCreation
706
rohitwaghchaurebc9c4802024-02-26 23:57:52 +0530707 if child.get("use_serial_batch_fields"):
708 return
709
Rohit Waghchaured3ceb072023-03-31 09:03:54 +0530710 if not frappe.db.get_single_value(
711 "Stock Settings", "auto_create_serial_and_batch_bundle_for_outward"
712 ):
713 return
714
715 item_details = frappe.db.get_value(
716 "Item", child.item_code, ["has_serial_no", "has_batch_no"], as_dict=1
717 )
718
719 if not item_details.has_serial_no and not item_details.has_batch_no:
720 return
721
722 sn_doc = SerialBatchCreation(
723 {
724 "item_code": child.item_code,
725 "warehouse": child.warehouse,
726 "voucher_type": parent.doctype,
727 "voucher_no": parent.name,
728 "voucher_detail_no": child.name,
729 "posting_date": parent.posting_date,
730 "posting_time": parent.posting_time,
731 "qty": child.qty,
732 "type_of_transaction": "Outward" if child.qty > 0 else "Inward",
733 "company": parent.company,
734 "do_not_submit": "True",
735 }
736 )
737
738 doc = sn_doc.make_serial_and_batch_bundle()
739 child.db_set("serial_and_batch_bundle", doc.name)
740
741 return doc.name