blob: bd4bc18fb8696108de4b6bea4d296133b483033f [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
7from frappe.contacts.doctype.address.address import get_address_display
Rohit Waghchaure6c9b2122022-12-05 14:48:18 +05308from frappe.utils import cint, flt, get_link_to_form, nowtime
Chillar Anand915b3432021-09-02 16:44:59 +05309
10from 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
15from erpnext.stock.utils import get_incoming_rate
16
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()
Nabin Haitd1fd1e22013-10-18 12:29:11 +053031 self.validate_max_discount()
shreyas1cfe2d72016-10-19 18:36:12 +053032 self.validate_selling_price()
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +053033 self.set_qty_as_per_stock_uom()
Afshan01eca122020-12-08 09:27:56 +053034 self.set_po_nos(for_validate=True)
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +050035 self.set_gross_profit()
Rushabh Mehta708e47a2018-08-08 16:37:31 +053036 set_default_income_account_for_item(self)
Rohit Waghchauref4dc7162018-11-15 17:04:02 +053037 self.set_customer_address()
Deepesh Gargf3d78dd2019-08-23 11:42:35 +053038 self.validate_for_duplicate_items()
rohitwaghchaure6fa6caf2020-04-23 09:46:29 +053039 self.validate_target_warehouse()
Deepesh Gargfa152212022-11-28 19:22:35 +053040 self.validate_auto_repeat_subscription_dates()
Anand Doshid2946502014-04-08 20:10:03 +053041
Anand Doshif3096132013-05-21 19:35:06 +053042 def set_missing_values(self, for_validate=False):
Shreya Shah5615cb42018-10-07 11:42:07 +053043
Anand Doshiabc10032013-06-14 17:44:03 +053044 super(SellingController, self).set_missing_values(for_validate)
Anand Doshid2946502014-04-08 20:10:03 +053045
Anand Doshif3096132013-05-21 19:35:06 +053046 # set contact and address details for customer, if they are not mentioned
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053047 self.set_missing_lead_customer_details(for_validate=for_validate)
mbauskar9e9d2422017-04-10 19:16:07 +053048 self.set_price_list_and_item_details(for_validate=for_validate)
Anand Doshid2946502014-04-08 20:10:03 +053049
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053050 def set_missing_lead_customer_details(self, for_validate=False):
Nabin Hait34c551d2019-07-03 10:34:31 +053051 customer, lead = None, None
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053052 if getattr(self, "customer", None):
Nabin Hait34c551d2019-07-03 10:34:31 +053053 customer = self.customer
54 elif self.doctype == "Opportunity" and self.party_name:
55 if self.opportunity_from == "Customer":
56 customer = self.party_name
57 else:
58 lead = self.party_name
59 elif self.doctype == "Quotation" and self.party_name:
60 if self.quotation_to == "Customer":
61 customer = self.party_name
62 else:
63 lead = self.party_name
64
65 if customer:
Anand Doshi43624432014-02-25 15:42:16 +053066 from erpnext.accounts.party import _get_party_details
Ankush Menat494bd9e2022-03-28 18:52:46 +053067
rohitwaghchaure3ffe8962018-07-13 17:40:48 +053068 fetch_payment_terms_template = False
Ankush Menat494bd9e2022-03-28 18:52:46 +053069 if self.get("__islocal") or self.company != frappe.db.get_value(
70 self.doctype, self.name, "company"
71 ):
rohitwaghchaure3ffe8962018-07-13 17:40:48 +053072 fetch_payment_terms_template = True
73
Ankush Menat494bd9e2022-03-28 18:52:46 +053074 party_details = _get_party_details(
75 customer,
Nabin Hait7eba1a32017-10-02 15:59:27 +053076 ignore_permissions=self.flags.ignore_permissions,
Ankush Menat494bd9e2022-03-28 18:52:46 +053077 doctype=self.doctype,
78 company=self.company,
79 posting_date=self.get("posting_date"),
Shreya Shah5615cb42018-10-07 11:42:07 +053080 fetch_payment_terms_template=fetch_payment_terms_template,
Ankush Menat494bd9e2022-03-28 18:52:46 +053081 party_address=self.customer_address,
82 shipping_address=self.shipping_address_name,
83 company_address=self.get("company_address"),
84 )
Nabin Hait6b039142014-05-02 15:45:10 +053085 if not self.meta.get_field("sales_team"):
86 party_details.pop("sales_team")
Nabin Hait6b039142014-05-02 15:45:10 +053087 self.update_if_missing(party_details)
Anand Doshid2946502014-04-08 20:10:03 +053088
Nabin Hait34c551d2019-07-03 10:34:31 +053089 elif lead:
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053090 from erpnext.crm.doctype.lead.lead import get_lead_details
Anand Doshid2946502014-04-08 20:10:03 +053091
Ankush Menat494bd9e2022-03-28 18:52:46 +053092 self.update_if_missing(
93 get_lead_details(
94 lead,
95 posting_date=self.get("transaction_date") or self.get("posting_date"),
96 company=self.company,
97 )
98 )
99
100 if self.get("taxes_and_charges") and not self.get("taxes") and not for_validate:
101 taxes = get_taxes_and_charges("Sales Taxes and Charges Template", self.taxes_and_charges)
Deepesh Garg6f3d93e2020-09-18 11:23:35 +0530102 for tax in taxes:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530103 self.append("taxes", tax)
Deepesh Garg6f3d93e2020-09-18 11:23:35 +0530104
mbauskar9e9d2422017-04-10 19:16:07 +0530105 def set_price_list_and_item_details(self, for_validate=False):
Nabin Hait096d3632013-10-17 17:01:14 +0530106 self.set_price_list_currency("Selling")
mbauskar287fe812017-04-10 19:15:57 +0530107 self.set_missing_item_details(for_validate=for_validate)
Anand Doshid2946502014-04-08 20:10:03 +0530108
Anand Doshiac32bad2014-04-18 01:30:14 +0530109 def remove_shipping_charge(self):
110 if self.shipping_rule:
111 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530112 existing_shipping_charge = self.get(
113 "taxes",
114 {
115 "doctype": "Sales Taxes and Charges",
116 "charge_type": "Actual",
117 "account_head": shipping_rule.account,
118 "cost_center": shipping_rule.cost_center,
119 },
120 )
Anand Doshiac32bad2014-04-18 01:30:14 +0530121 if existing_shipping_charge:
Nabin Haite7d15362014-12-25 16:01:55 +0530122 self.get("taxes").remove(existing_shipping_charge[-1])
Anand Doshiac32bad2014-04-18 01:30:14 +0530123 self.calculate_taxes_and_totals()
Anand Doshid2946502014-04-08 20:10:03 +0530124
Nabin Haitec52db82013-01-22 11:53:14 +0530125 def set_total_in_words(self):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530126 from frappe.utils import money_in_words
Anand Doshid2946502014-04-08 20:10:03 +0530127
Nabin Hait5690be12015-02-12 16:09:11 +0530128 if self.meta.get_field("base_in_words"):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530129 base_amount = abs(
130 self.base_grand_total if self.is_rounded_total_disabled() else self.base_rounded_total
131 )
Nabin Hait877e1bb2017-11-17 12:27:43 +0530132 self.base_in_words = money_in_words(base_amount, self.company_currency)
133
Nabin Haitec52db82013-01-22 11:53:14 +0530134 if self.meta.get_field("in_words"):
Nabin Hait877e1bb2017-11-17 12:27:43 +0530135 amount = abs(self.grand_total if self.is_rounded_total_disabled() else self.rounded_total)
136 self.in_words = money_in_words(amount, self.currency)
Anand Doshid2946502014-04-08 20:10:03 +0530137
Anand Doshi923d41d2013-05-28 17:23:36 +0530138 def calculate_commission(self):
Deepesh Garg10632d72023-03-07 11:44:09 +0530139 if not self.meta.get_field("commission_rate") or self.docstatus.is_submitted():
Raffael Meyere10ab162021-11-30 13:24:18 +0100140 return
Anand Doshid2946502014-04-08 20:10:03 +0530141
Ankush Menat494bd9e2022-03-28 18:52:46 +0530142 self.round_floats_in(self, ("amount_eligible_for_commission", "commission_rate"))
Raffael Meyere10ab162021-11-30 13:24:18 +0100143
144 if not (0 <= self.commission_rate <= 100.0):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530145 throw(
146 "{} {}".format(
147 _(self.meta.get_label("commission_rate")),
148 _("must be between 0 and 100"),
149 )
150 )
Raffael Meyere10ab162021-11-30 13:24:18 +0100151
152 self.amount_eligible_for_commission = sum(
153 item.base_net_amount for item in self.items if item.grant_commission
154 )
155
156 self.total_commission = flt(
157 self.amount_eligible_for_commission * self.commission_rate / 100.0,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530158 self.precision("total_commission"),
Raffael Meyere10ab162021-11-30 13:24:18 +0100159 )
Anand Doshif3096132013-05-21 19:35:06 +0530160
161 def calculate_contribution(self):
Anand Doshiac32bad2014-04-18 01:30:14 +0530162 if not self.meta.get_field("sales_team"):
163 return
164
Anand Doshif3096132013-05-21 19:35:06 +0530165 total = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530166 sales_team = self.get("sales_team")
Anand Doshif3096132013-05-21 19:35:06 +0530167 for sales_person in sales_team:
168 self.round_floats_in(sales_person)
169
170 sales_person.allocated_amount = flt(
Indrajith.vs0c8276e2023-05-14 11:47:46 +0530171 flt(self.amount_eligible_for_commission) * sales_person.allocated_percentage / 100.0,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530172 self.precision("allocated_amount", sales_person),
173 )
Anand Doshid2946502014-04-08 20:10:03 +0530174
Anuja Pawar87553392021-03-01 10:44:13 +0530175 if sales_person.commission_rate:
176 sales_person.incentives = flt(
Sagar Voraf4a6c782021-03-17 19:57:53 +0530177 sales_person.allocated_amount * flt(sales_person.commission_rate) / 100.0,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530178 self.precision("incentives", sales_person),
179 )
Anuja Pawar87553392021-03-01 10:44:13 +0530180
Anand Doshif3096132013-05-21 19:35:06 +0530181 total += sales_person.allocated_percentage
Anand Doshid2946502014-04-08 20:10:03 +0530182
Anand Doshif3096132013-05-21 19:35:06 +0530183 if sales_team and total != 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530184 throw(_("Total allocated percentage for sales team should be 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530185
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530186 def validate_max_discount(self):
Nabin Haitdd38a262014-12-26 13:15:21 +0530187 for d in self.get("items"):
Nabin Haitc35271a2018-08-10 19:01:04 +0530188 if d.item_code:
189 discount = flt(frappe.get_cached_value("Item", d.item_code, "max_discount"))
Anand Doshid2946502014-04-08 20:10:03 +0530190
Nabin Haitc35271a2018-08-10 19:01:04 +0530191 if discount and flt(d.discount_percentage) > discount:
192 frappe.throw(_("Maximum discount for Item {0} is {1}%").format(d.item_code, discount))
Anand Doshid2946502014-04-08 20:10:03 +0530193
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530194 def set_qty_as_per_stock_uom(self):
195 for d in self.get("items"):
196 if d.meta.get_field("stock_qty"):
197 if not d.conversion_factor:
198 frappe.throw(_("Row {0}: Conversion Factor is mandatory").format(d.idx))
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530199 d.stock_qty = flt(d.qty) * flt(d.conversion_factor)
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530200
shreyas1cfe2d72016-10-19 18:36:12 +0530201 def validate_selling_price(self):
Saqibfff00ce2020-05-05 16:14:17 +0530202 def throw_message(idx, item_name, rate, ref_rate_field):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530203 throw(
204 _(
205 """Row #{0}: Selling rate for item {1} is lower than its {2}.
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530206 Selling {3} should be atleast {4}.<br><br>Alternatively,
207 you can disable selling price validation in {5} to bypass
Ankush Menat494bd9e2022-03-28 18:52:46 +0530208 this validation."""
209 ).format(
210 idx,
211 bold(item_name),
212 bold(ref_rate_field),
213 bold("net rate"),
214 bold(rate),
215 get_link_to_form("Selling Settings", "Selling Settings"),
216 ),
217 title=_("Invalid Selling Price"),
218 )
mbauskare9747a82016-11-16 17:19:47 +0530219
Ankush Menat494bd9e2022-03-28 18:52:46 +0530220 if self.get("is_return") or not frappe.db.get_single_value(
221 "Selling Settings", "validate_selling_price"
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530222 ):
rohitwaghchaure45ac31a2018-02-12 11:27:37 +0530223 return
224
Ankush Menat494bd9e2022-03-28 18:52:46 +0530225 is_internal_customer = self.get("is_internal_customer")
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530226 valuation_rate_map = {}
227
228 for item in self.items:
Krithi Ramani8c536ff2022-01-19 15:27:09 +0530229 if not item.item_code or item.is_free_item:
Saurabhd7e18692017-09-18 15:43:35 +0530230 continue
prssannab57b3c92020-10-22 15:37:47 +0530231
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530232 last_purchase_rate, is_stock_item = frappe.get_cached_value(
233 "Item", item.item_code, ("last_purchase_rate", "is_stock_item")
234 )
shreyase8aaa922016-10-20 14:03:59 +0530235
Ankush Menat494bd9e2022-03-28 18:52:46 +0530236 last_purchase_rate_in_sales_uom = last_purchase_rate * (item.conversion_factor or 1)
shreyase8aaa922016-10-20 14:03:59 +0530237
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530238 if flt(item.base_net_rate) < flt(last_purchase_rate_in_sales_uom):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530239 throw_message(item.idx, item.item_name, last_purchase_rate_in_sales_uom, "last purchase rate")
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530240
241 if is_internal_customer or not is_stock_item:
242 continue
243
244 valuation_rate_map[(item.item_code, item.warehouse)] = None
245
246 if not valuation_rate_map:
247 return
248
249 or_conditions = (
250 f"""(item_code = {frappe.db.escape(valuation_rate[0])}
251 and warehouse = {frappe.db.escape(valuation_rate[1])})"""
252 for valuation_rate in valuation_rate_map
253 )
254
Ankush Menat494bd9e2022-03-28 18:52:46 +0530255 valuation_rates = frappe.db.sql(
256 f"""
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530257 select
258 item_code, warehouse, valuation_rate
259 from
260 `tabBin`
261 where
262 ({" or ".join(or_conditions)})
263 and valuation_rate > 0
Ankush Menat494bd9e2022-03-28 18:52:46 +0530264 """,
265 as_dict=True,
266 )
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530267
268 for rate in valuation_rates:
269 valuation_rate_map[(rate.item_code, rate.warehouse)] = rate.valuation_rate
270
271 for item in self.items:
Krithi Ramani8c536ff2022-01-19 15:27:09 +0530272 if not item.item_code or item.is_free_item:
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530273 continue
274
Ankush Menat494bd9e2022-03-28 18:52:46 +0530275 last_valuation_rate = valuation_rate_map.get((item.item_code, item.warehouse))
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530276
277 if not last_valuation_rate:
278 continue
279
Ankush Menat494bd9e2022-03-28 18:52:46 +0530280 last_valuation_rate_in_sales_uom = last_valuation_rate * (item.conversion_factor or 1)
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530281
282 if flt(item.base_net_rate) < flt(last_valuation_rate_in_sales_uom):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530283 throw_message(item.idx, item.item_name, last_valuation_rate_in_sales_uom, "valuation rate")
shreyas1cfe2d72016-10-19 18:36:12 +0530284
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530285 def get_item_list(self):
286 il = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530287 for d in self.get("items"):
nathando247e9ff2014-09-03 15:03:31 +0800288 if d.qty is None:
Nabin Haitc41a9482014-08-18 15:40:15 +0530289 frappe.throw(_("Row {0}: Qty is mandatory").format(d.idx))
Anand Doshi01de9452016-01-26 16:22:50 +0530290
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530291 if self.has_product_bundle(d.item_code):
Nabin Haite7d15362014-12-25 16:01:55 +0530292 for p in self.get("packed_items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530293 if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
294 # the packing details table's qty is already multiplied with parent's qty
Ankush Menat494bd9e2022-03-28 18:52:46 +0530295 il.append(
296 frappe._dict(
297 {
298 "warehouse": p.warehouse or d.warehouse,
299 "item_code": p.item_code,
300 "qty": flt(p.qty),
301 "uom": p.uom,
Rohit Waghchaure6c9b2122022-12-05 14:48:18 +0530302 "serial_and_batch_bundle": p.serial_and_batch_bundle,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530303 "name": d.name,
304 "target_warehouse": p.target_warehouse,
305 "company": self.company,
306 "voucher_type": self.doctype,
307 "allow_zero_valuation": d.allow_zero_valuation_rate,
308 "sales_invoice_item": d.get("sales_invoice_item"),
309 "dn_detail": d.get("dn_detail"),
310 "incoming_rate": p.get("incoming_rate"),
Rohit Waghchaure23729992022-09-02 18:43:55 +0530311 "item_row": p,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530312 }
313 )
314 )
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530315 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530316 il.append(
317 frappe._dict(
318 {
319 "warehouse": d.warehouse,
320 "item_code": d.item_code,
321 "qty": d.stock_qty,
322 "uom": d.uom,
323 "stock_uom": d.stock_uom,
324 "conversion_factor": d.conversion_factor,
Rohit Waghchaure6c9b2122022-12-05 14:48:18 +0530325 "serial_and_batch_bundle": d.serial_and_batch_bundle,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530326 "name": d.name,
327 "target_warehouse": d.target_warehouse,
328 "company": self.company,
329 "voucher_type": self.doctype,
330 "allow_zero_valuation": d.allow_zero_valuation_rate,
331 "sales_invoice_item": d.get("sales_invoice_item"),
332 "dn_detail": d.get("dn_detail"),
333 "incoming_rate": d.get("incoming_rate"),
Rohit Waghchaure23729992022-09-02 18:43:55 +0530334 "item_row": d,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530335 }
336 )
337 )
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530338 return il
Anand Doshid2946502014-04-08 20:10:03 +0530339
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530340 def has_product_bundle(self, item_code):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530341 return frappe.db.sql(
342 """select name from `tabProduct Bundle`
343 where new_item_code=%s and docstatus != 2""",
344 item_code,
345 )
Anand Doshid2946502014-04-08 20:10:03 +0530346
Nabin Hait453cc372015-07-29 12:21:03 +0530347 def get_already_delivered_qty(self, current_docname, so, so_detail):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530348 delivered_via_dn = frappe.db.sql(
349 """select sum(qty) from `tabDelivery Note Item`
ankitjavalkarworke69a6112014-10-08 12:46:02 +0530350 where so_detail = %s and docstatus = 1
Anand Doshid2946502014-04-08 20:10:03 +0530351 and against_sales_order = %s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530352 and parent != %s""",
353 (so_detail, so, current_docname),
354 )
Anand Doshi01de9452016-01-26 16:22:50 +0530355
Ankush Menat494bd9e2022-03-28 18:52:46 +0530356 delivered_via_si = frappe.db.sql(
357 """select sum(si_item.qty)
Nabin Hait18267912015-08-17 15:36:23 +0530358 from `tabSales Invoice Item` si_item, `tabSales Invoice` si
Anand Doshi602e8252015-11-16 19:05:46 +0530359 where si_item.parent = si.name and si.update_stock = 1
Anand Doshi01de9452016-01-26 16:22:50 +0530360 and si_item.so_detail = %s and si.docstatus = 1
Nabin Hait18267912015-08-17 15:36:23 +0530361 and si_item.sales_order = %s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530362 and si.name != %s""",
363 (so_detail, so, current_docname),
364 )
Anand Doshi01de9452016-01-26 16:22:50 +0530365
Ankush Menat494bd9e2022-03-28 18:52:46 +0530366 total_delivered_qty = (flt(delivered_via_dn[0][0]) if delivered_via_dn else 0) + (
367 flt(delivered_via_si[0][0]) if delivered_via_si else 0
368 )
Anand Doshi01de9452016-01-26 16:22:50 +0530369
Nabin Hait453cc372015-07-29 12:21:03 +0530370 return total_delivered_qty
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530371
372 def get_so_qty_and_warehouse(self, so_detail):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530373 so_item = frappe.db.sql(
374 """select qty, warehouse from `tabSales Order Item`
375 where name = %s and docstatus = 1""",
376 so_detail,
377 as_dict=1,
378 )
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530379 so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
Nabin Haita7f757a2014-02-10 17:54:04 +0530380 so_warehouse = so_item and so_item[0]["warehouse"] or ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530381 return so_qty, so_warehouse
Anand Doshid2946502014-04-08 20:10:03 +0530382
Mangesh-Khairnare17b7092019-03-01 15:52:23 +0530383 def check_sales_order_on_hold_or_close(self, ref_fieldname):
Nabin Haitdd38a262014-12-26 13:15:21 +0530384 for d in self.get("items"):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530385 if d.get(ref_fieldname):
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530386 status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
Mangesh-Khairnar86e650c2019-03-02 20:30:21 +0530387 if status in ("Closed", "On Hold"):
Saurabh8a8ef852015-10-21 19:28:53 +0530388 frappe.throw(_("Sales Order {0} is {1}").format(d.get(ref_fieldname), status))
shreyas1cfe2d72016-10-19 18:36:12 +0530389
Nabin Hait14aa9c52016-04-18 15:54:01 +0530390 def update_reserved_qty(self):
391 so_map = {}
392 for d in self.get("items"):
393 if d.so_detail:
394 if self.doctype == "Delivery Note" and d.against_sales_order:
395 so_map.setdefault(d.against_sales_order, []).append(d.so_detail)
396 elif self.doctype == "Sales Invoice" and d.sales_order and self.update_stock:
397 so_map.setdefault(d.sales_order, []).append(d.so_detail)
398
399 for so, so_item_rows in so_map.items():
400 if so and so_item_rows:
401 sales_order = frappe.get_doc("Sales Order", so)
402
403 if sales_order.status in ["Closed", "Cancelled"]:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530404 frappe.throw(
405 _("{0} {1} is cancelled or closed").format(_("Sales Order"), so), frappe.InvalidStatusError
406 )
Nabin Hait14aa9c52016-04-18 15:54:01 +0530407
408 sales_order.update_reserved_qty(so_item_rows)
409
Nabin Haita77b8c92020-12-21 14:45:50 +0530410 def set_incoming_rate(self):
rohitwaghchaurefe4540d2021-08-26 12:52:36 +0530411 if self.doctype not in ("Delivery Note", "Sales Invoice"):
Nabin Haita77b8c92020-12-21 14:45:50 +0530412 return
413
414 items = self.get("items") + (self.get("packed_items") or [])
415 for d in items:
rohitwaghchaurece6c3b52021-04-13 20:55:52 +0530416 if not self.get("return_against"):
Nabin Haita77b8c92020-12-21 14:45:50 +0530417 # Get incoming rate based on original item cost based on valuation method
Ankush Menat494bd9e2022-03-28 18:52:46 +0530418 qty = flt(d.get("stock_qty") or d.get("actual_qty"))
rohitwaghchaurece6c3b52021-04-13 20:55:52 +0530419
Ankush Menatfcc885b2021-12-22 12:38:51 +0530420 if not (self.get("is_return") and d.incoming_rate):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530421 d.incoming_rate = get_incoming_rate(
422 {
423 "item_code": d.item_code,
424 "warehouse": d.warehouse,
425 "posting_date": self.get("posting_date") or self.get("transaction_date"),
426 "posting_time": self.get("posting_time") or nowtime(),
427 "qty": qty if cint(self.get("is_return")) else (-1 * qty),
428 "serial_no": d.get("serial_no"),
429 "batch_no": d.get("batch_no"),
430 "company": self.company,
431 "voucher_type": self.doctype,
432 "voucher_no": self.name,
433 "allow_zero_valuation": d.get("allow_zero_valuation"),
434 },
435 raise_error_if_no_rate=False,
436 )
Deepesh Gargb4be2922021-01-28 13:09:56 +0530437
438 # For internal transfers use incoming rate as the valuation rate
439 if self.is_internal_transfer():
Deepesh Gargef9d1262022-12-05 10:17:19 +0530440 if self.doctype == "Delivery Note" or self.get("update_stock"):
441 if d.doctype == "Packed Item":
442 incoming_rate = flt(
443 flt(d.incoming_rate, d.precision("incoming_rate")) * d.conversion_factor,
444 d.precision("incoming_rate"),
Ankush Menatee0a2772022-05-12 18:17:09 +0530445 )
Deepesh Gargef9d1262022-12-05 10:17:19 +0530446 if d.incoming_rate != incoming_rate:
447 d.incoming_rate = incoming_rate
448 else:
449 rate = flt(
450 flt(d.incoming_rate, d.precision("incoming_rate")) * d.conversion_factor,
451 d.precision("rate"),
452 )
453 if d.rate != rate:
454 d.rate = rate
455 frappe.msgprint(
456 _(
457 "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
458 ).format(d.idx),
459 alert=1,
460 )
Noah Jacobac0bc1f2021-06-24 19:36:17 +0530461
Deepesh Gargef9d1262022-12-05 10:17:19 +0530462 d.discount_percentage = 0.0
463 d.discount_amount = 0.0
464 d.margin_rate_or_amount = 0.0
Deepesh Gargb4be2922021-01-28 13:09:56 +0530465
Nabin Haita77b8c92020-12-21 14:45:50 +0530466 elif self.get("return_against"):
467 # Get incoming rate of return entry from reference document
468 # based on original item cost as per valuation method
Ankush Menat494bd9e2022-03-28 18:52:46 +0530469 d.incoming_rate = get_rate_for_return(
470 self.doctype, self.name, d.item_code, self.return_against, item_row=d
471 )
Nabin Haita77b8c92020-12-21 14:45:50 +0530472
Nabin Hait14aa9c52016-04-18 15:54:01 +0530473 def update_stock_ledger(self):
474 self.update_reserved_qty()
475
476 sl_entries = []
Nabin Haita77b8c92020-12-21 14:45:50 +0530477 # Loop over items and packed items table
Nabin Hait14aa9c52016-04-18 15:54:01 +0530478 for d in self.get_item_list():
Himanshu Mishra859d9422018-08-08 18:33:50 +0530479 if frappe.get_cached_value("Item", d.item_code, "is_stock_item") == 1 and flt(d.qty):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530480 if flt(d.conversion_factor) == 0.0:
481 d.conversion_factor = (
482 get_conversion_factor(d.item_code, d.uom).get("conversion_factor") or 1.0
483 )
rohitwaghchaure019d4de2020-08-20 15:53:58 +0530484
Nabin Haita77b8c92020-12-21 14:45:50 +0530485 # On cancellation or return entry submission, make stock ledger entry for
Nabin Hait14aa9c52016-04-18 15:54:01 +0530486 # target warehouse first, to update serial no values properly
487
Ankush Menat494bd9e2022-03-28 18:52:46 +0530488 if d.warehouse and (
489 (not cint(self.is_return) and self.docstatus == 1)
490 or (cint(self.is_return) and self.docstatus == 2)
491 ):
492 sl_entries.append(self.get_sle_for_source_warehouse(d))
Nabin Hait14aa9c52016-04-18 15:54:01 +0530493
mergify[bot]233bf5d2021-10-05 16:16:21 +0530494 if d.target_warehouse:
Nabin Haita77b8c92020-12-21 14:45:50 +0530495 sl_entries.append(self.get_sle_for_target_warehouse(d))
Nabin Hait14aa9c52016-04-18 15:54:01 +0530496
Ankush Menat494bd9e2022-03-28 18:52:46 +0530497 if d.warehouse and (
498 (not cint(self.is_return) and self.docstatus == 2)
499 or (cint(self.is_return) and self.docstatus == 1)
500 ):
501 sl_entries.append(self.get_sle_for_source_warehouse(d))
Nabin Haita77b8c92020-12-21 14:45:50 +0530502
Nabin Hait14aa9c52016-04-18 15:54:01 +0530503 self.make_sl_entries(sl_entries)
Anand Doshid2946502014-04-08 20:10:03 +0530504
Nabin Haita77b8c92020-12-21 14:45:50 +0530505 def get_sle_for_source_warehouse(self, item_row):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530506 sle = self.get_sl_entries(
507 item_row,
508 {
509 "actual_qty": -1 * flt(item_row.qty),
510 "incoming_rate": item_row.incoming_rate,
511 "recalculate_rate": cint(self.is_return),
512 },
513 )
Nabin Haita77b8c92020-12-21 14:45:50 +0530514 if item_row.target_warehouse and not cint(self.is_return):
515 sle.dependant_sle_voucher_detail_no = item_row.name
516
517 return sle
518
519 def get_sle_for_target_warehouse(self, item_row):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530520 sle = self.get_sl_entries(
521 item_row, {"actual_qty": flt(item_row.qty), "warehouse": item_row.target_warehouse}
522 )
Nabin Haita77b8c92020-12-21 14:45:50 +0530523
524 if self.docstatus == 1:
525 if not cint(self.is_return):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530526 sle.update({"incoming_rate": item_row.incoming_rate, "recalculate_rate": 1})
Nabin Haita77b8c92020-12-21 14:45:50 +0530527 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530528 sle.update({"outgoing_rate": item_row.incoming_rate})
Nabin Haita77b8c92020-12-21 14:45:50 +0530529 if item_row.warehouse:
530 sle.dependant_sle_voucher_detail_no = item_row.name
Deepesh Gargb4be2922021-01-28 13:09:56 +0530531
Nabin Haita77b8c92020-12-21 14:45:50 +0530532 return sle
533
Afshan01eca122020-12-08 09:27:56 +0530534 def set_po_nos(self, for_validate=False):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530535 if self.doctype == "Sales Invoice" and hasattr(self, "items"):
Afshan01eca122020-12-08 09:27:56 +0530536 if for_validate and self.po_no:
537 return
Afshan3f971b22020-10-26 16:59:57 +0530538 self.set_pos_for_sales_invoice()
Ankush Menat494bd9e2022-03-28 18:52:46 +0530539 if self.doctype == "Delivery Note" and hasattr(self, "items"):
Afshan01eca122020-12-08 09:27:56 +0530540 if for_validate and self.po_no:
541 return
Afshan3f971b22020-10-26 16:59:57 +0530542 self.set_pos_for_delivery_note()
543
544 def set_pos_for_sales_invoice(self):
Afshan0a6e1b32020-10-26 21:23:31 +0530545 po_nos = []
Afshan01eca122020-12-08 09:27:56 +0530546 if self.po_no:
547 po_nos.append(self.po_no)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530548 self.get_po_nos("Sales Order", "sales_order", po_nos)
549 self.get_po_nos("Delivery Note", "delivery_note", po_nos)
550 self.po_no = ", ".join(list(set(x.strip() for x in ",".join(po_nos).split(","))))
Afshan3f971b22020-10-26 16:59:57 +0530551
552 def set_pos_for_delivery_note(self):
Afshan0a6e1b32020-10-26 21:23:31 +0530553 po_nos = []
Afshan01eca122020-12-08 09:27:56 +0530554 if self.po_no:
555 po_nos.append(self.po_no)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530556 self.get_po_nos("Sales Order", "against_sales_order", po_nos)
557 self.get_po_nos("Sales Invoice", "against_sales_invoice", po_nos)
558 self.po_no = ", ".join(list(set(x.strip() for x in ",".join(po_nos).split(","))))
Afshan0a6e1b32020-10-26 21:23:31 +0530559
560 def get_po_nos(self, ref_doctype, ref_fieldname, po_nos):
Ankush Menat98917802021-06-11 18:40:22 +0530561 doc_list = list(set(d.get(ref_fieldname) for d in self.items if d.get(ref_fieldname)))
Afshan0a6e1b32020-10-26 21:23:31 +0530562 if doc_list:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530563 po_nos += [
564 d.po_no
565 for d in frappe.get_all(ref_doctype, "po_no", filters={"name": ("in", doc_list)})
566 if d.get("po_no")
567 ]
Nabin Hait96f4b222018-03-13 15:46:59 +0530568
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500569 def set_gross_profit(self):
Abhishek Balam18e7b602020-05-26 18:37:02 +0530570 if self.doctype in ["Sales Order", "Quotation"]:
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500571 for item in self.items:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530572 item.gross_profit = flt(
573 ((item.base_rate - item.valuation_rate) * item.stock_qty), self.precision("amount", item)
574 )
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500575
Rohit Waghchauref4dc7162018-11-15 17:04:02 +0530576 def set_customer_address(self):
577 address_dict = {
Ankush Menat494bd9e2022-03-28 18:52:46 +0530578 "customer_address": "address_display",
579 "shipping_address_name": "shipping_address",
580 "company_address": "company_address_display",
Deepesh Garg104fdcb2022-11-24 16:41:40 +0530581 "dispatch_address_name": "dispatch_address",
Rohit Waghchauref4dc7162018-11-15 17:04:02 +0530582 }
583
584 for address_field, address_display_field in address_dict.items():
585 if self.get(address_field):
586 self.set(address_display_field, get_address_display(self.get(address_field)))
587
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530588 def validate_for_duplicate_items(self):
589 check_list, chk_dupl_itm = [], []
590 if cint(frappe.db.get_single_value("Selling Settings", "allow_multiple_items")):
591 return
Saqib0681a482021-02-11 14:06:15 +0530592 if self.doctype == "Sales Invoice" and self.is_consolidated:
593 return
594 if self.doctype == "POS Invoice":
595 return
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530596
Ankush Menat494bd9e2022-03-28 18:52:46 +0530597 for d in self.get("items"):
Saqib0681a482021-02-11 14:06:15 +0530598 if self.doctype == "Sales Invoice":
Ankush Menat494bd9e2022-03-28 18:52:46 +0530599 stock_items = [
600 d.item_code,
601 d.description,
602 d.warehouse,
603 d.sales_order or d.delivery_note,
604 d.batch_no or "",
605 ]
Jannat Patelc1187bc2020-11-19 13:10:24 +0530606 non_stock_items = [d.item_code, d.description, d.sales_order or d.delivery_note]
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530607 elif self.doctype == "Delivery Note":
Ankush Menat494bd9e2022-03-28 18:52:46 +0530608 stock_items = [
609 d.item_code,
610 d.description,
611 d.warehouse,
612 d.against_sales_order or d.against_sales_invoice,
613 d.batch_no or "",
614 ]
615 non_stock_items = [
616 d.item_code,
617 d.description,
618 d.against_sales_order or d.against_sales_invoice,
619 ]
Rohit Waghchaure13c7e182019-08-29 19:45:19 +0530620 elif self.doctype in ["Sales Order", "Quotation"]:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530621 stock_items = [d.item_code, d.description, d.warehouse, ""]
Jannat Patelc1187bc2020-11-19 13:10:24 +0530622 non_stock_items = [d.item_code, d.description]
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530623
mergify[bot]89f516c2022-07-21 13:57:03 +0530624 duplicate_items_msg = _("Item {0} entered multiple times.").format(frappe.bold(d.item_code))
625 duplicate_items_msg += "<br><br>"
626 duplicate_items_msg += _("Please enable {} in {} to allow same item in multiple rows").format(
627 frappe.bold("Allow Item to Be Added Multiple Times in a Transaction"),
628 get_link_to_form("Selling Settings", "Selling Settings"),
629 )
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530630 if frappe.db.get_value("Item", d.item_code, "is_stock_item") == 1:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530631 if stock_items in check_list:
Saqibac9e6ff2021-01-28 17:58:55 +0530632 frappe.throw(duplicate_items_msg)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530633 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530634 check_list.append(stock_items)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530635 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530636 if non_stock_items in chk_dupl_itm:
Saqibac9e6ff2021-01-28 17:58:55 +0530637 frappe.throw(duplicate_items_msg)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530638 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530639 chk_dupl_itm.append(non_stock_items)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530640
rohitwaghchaure6fa6caf2020-04-23 09:46:29 +0530641 def validate_target_warehouse(self):
642 items = self.get("items") + (self.get("packed_items") or [])
643
644 for d in items:
645 if d.get("target_warehouse") and d.get("warehouse") == d.get("target_warehouse"):
646 warehouse = frappe.bold(d.get("target_warehouse"))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530647 frappe.throw(
648 _("Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same").format(
649 d.idx, warehouse, warehouse
650 )
651 )
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530652
mergify[bot]233bf5d2021-10-05 16:16:21 +0530653 if not self.get("is_internal_customer") and any(d.get("target_warehouse") for d in items):
654 msg = _("Target Warehouse is set for some items but the customer is not an internal customer.")
655 msg += " " + _("This {} will be treated as material transfer.").format(_(self.doctype))
656 frappe.msgprint(msg, title="Internal Transfer", alert=True)
657
Zarrarfc03a042018-06-04 12:52:52 +0530658 def validate_items(self):
659 # validate items to see if they have is_sales_item enabled
660 from erpnext.controllers.buying_controller import validate_item_type
Ankush Menat494bd9e2022-03-28 18:52:46 +0530661
Zarrarfc03a042018-06-04 12:52:52 +0530662 validate_item_type(self, "is_sales_item", "sales")
663
Ankush Menat494bd9e2022-03-28 18:52:46 +0530664
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530665def set_default_income_account_for_item(obj):
Nabin Haitdd38a262014-12-26 13:15:21 +0530666 for d in obj.get("items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530667 if d.item_code:
Manas Solanki5b935622018-05-16 17:44:51 +0530668 if getattr(d, "income_account", None):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530669 set_item_default(d.item_code, obj.company, "income_account", d.income_account)