blob: e918cde7c483431d550cb1148a7b23148974aa8f [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
8from frappe.utils import cint, cstr, flt, get_link_to_form, nowtime
9
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):
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053019 def get_feed(self):
20 return _("To {0} | {1} {2}").format(self.customer_name, self.currency,
Nabin Hait5690be12015-02-12 16:09:11 +053021 self.grand_total)
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053022
Rushabh Mehtab5e76892014-07-29 16:07:43 +053023 def onload(self):
Rohit Waghchaure7d529892016-10-06 14:35:04 +053024 super(SellingController, self).onload()
Rushabh Mehtab5e76892014-07-29 16:07:43 +053025 if self.doctype in ("Sales Order", "Delivery Note", "Sales Invoice"):
Nabin Haitdd38a262014-12-26 13:15:21 +053026 for item in self.get("items"):
Nabin Hait877e1bb2017-11-17 12:27:43 +053027 item.update(get_bin_details(item.item_code, item.warehouse))
Rushabh Mehtab5e76892014-07-29 16:07:43 +053028
Nabin Haitd1fd1e22013-10-18 12:29:11 +053029 def validate(self):
30 super(SellingController, self).validate()
Zarrarfc03a042018-06-04 12:52:52 +053031 self.validate_items()
Nabin Haitd1fd1e22013-10-18 12:29:11 +053032 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()
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
rohitwaghchaure3ffe8962018-07-13 17:40:48 +053067 fetch_payment_terms_template = False
68 if (self.get("__islocal") or
69 self.company != frappe.db.get_value(self.doctype, self.name, 'company')):
70 fetch_payment_terms_template = True
71
Nabin Hait34c551d2019-07-03 10:34:31 +053072 party_details = _get_party_details(customer,
Nabin Hait7eba1a32017-10-02 15:59:27 +053073 ignore_permissions=self.flags.ignore_permissions,
rohitwaghchaure3ffe8962018-07-13 17:40:48 +053074 doctype=self.doctype, company=self.company,
Deepesh Gargc152b922020-09-20 20:04:10 +053075 posting_date=self.get('posting_date'),
Shreya Shah5615cb42018-10-07 11:42:07 +053076 fetch_payment_terms_template=fetch_payment_terms_template,
Deepesh Garg36f4fb02022-02-04 12:01:07 +053077 party_address=self.customer_address, shipping_address=self.shipping_address_name,
78 company_address=self.get('company_address'))
Nabin Hait6b039142014-05-02 15:45:10 +053079 if not self.meta.get_field("sales_team"):
80 party_details.pop("sales_team")
Nabin Hait6b039142014-05-02 15:45:10 +053081 self.update_if_missing(party_details)
Anand Doshid2946502014-04-08 20:10:03 +053082
Nabin Hait34c551d2019-07-03 10:34:31 +053083 elif lead:
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053084 from erpnext.crm.doctype.lead.lead import get_lead_details
Nabin Hait34c551d2019-07-03 10:34:31 +053085 self.update_if_missing(get_lead_details(lead,
Anand Doshi2f957f22016-04-08 17:36:10 +053086 posting_date=self.get('transaction_date') or self.get('posting_date'),
87 company=self.company))
Anand Doshid2946502014-04-08 20:10:03 +053088
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053089 if self.get('taxes_and_charges') and not self.get('taxes') and not for_validate:
90 taxes = get_taxes_and_charges('Sales Taxes and Charges Template', self.taxes_and_charges)
91 for tax in taxes:
92 self.append('taxes', tax)
93
mbauskar9e9d2422017-04-10 19:16:07 +053094 def set_price_list_and_item_details(self, for_validate=False):
Nabin Hait096d3632013-10-17 17:01:14 +053095 self.set_price_list_currency("Selling")
mbauskar287fe812017-04-10 19:15:57 +053096 self.set_missing_item_details(for_validate=for_validate)
Anand Doshid2946502014-04-08 20:10:03 +053097
Anand Doshiac32bad2014-04-18 01:30:14 +053098 def remove_shipping_charge(self):
99 if self.shipping_rule:
100 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Nabin Haite7d15362014-12-25 16:01:55 +0530101 existing_shipping_charge = self.get("taxes", {
Anand Doshiac32bad2014-04-18 01:30:14 +0530102 "doctype": "Sales Taxes and Charges",
103 "charge_type": "Actual",
104 "account_head": shipping_rule.account,
105 "cost_center": shipping_rule.cost_center
Anand Doshi0b4943c2013-07-04 23:45:22 +0530106 })
Anand Doshiac32bad2014-04-18 01:30:14 +0530107 if existing_shipping_charge:
Nabin Haite7d15362014-12-25 16:01:55 +0530108 self.get("taxes").remove(existing_shipping_charge[-1])
Anand Doshiac32bad2014-04-18 01:30:14 +0530109 self.calculate_taxes_and_totals()
Anand Doshid2946502014-04-08 20:10:03 +0530110
Nabin Haitec52db82013-01-22 11:53:14 +0530111 def set_total_in_words(self):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530112 from frappe.utils import money_in_words
Anand Doshid2946502014-04-08 20:10:03 +0530113
Nabin Hait5690be12015-02-12 16:09:11 +0530114 if self.meta.get_field("base_in_words"):
Nabin Hait877e1bb2017-11-17 12:27:43 +0530115 base_amount = abs(self.base_grand_total
116 if self.is_rounded_total_disabled() else self.base_rounded_total)
117 self.base_in_words = money_in_words(base_amount, self.company_currency)
118
Nabin Haitec52db82013-01-22 11:53:14 +0530119 if self.meta.get_field("in_words"):
Nabin Hait877e1bb2017-11-17 12:27:43 +0530120 amount = abs(self.grand_total if self.is_rounded_total_disabled() else self.rounded_total)
121 self.in_words = money_in_words(amount, self.currency)
Anand Doshid2946502014-04-08 20:10:03 +0530122
Anand Doshi923d41d2013-05-28 17:23:36 +0530123 def calculate_commission(self):
Raffael Meyere10ab162021-11-30 13:24:18 +0100124 if not self.meta.get_field("commission_rate"):
125 return
Anand Doshid2946502014-04-08 20:10:03 +0530126
Raffael Meyere10ab162021-11-30 13:24:18 +0100127 self.round_floats_in(
128 self, ("amount_eligible_for_commission", "commission_rate")
129 )
130
131 if not (0 <= self.commission_rate <= 100.0):
132 throw("{} {}".format(
133 _(self.meta.get_label("commission_rate")),
134 _("must be between 0 and 100"),
135 ))
136
137 self.amount_eligible_for_commission = sum(
138 item.base_net_amount for item in self.items if item.grant_commission
139 )
140
141 self.total_commission = flt(
142 self.amount_eligible_for_commission * self.commission_rate / 100.0,
143 self.precision("total_commission")
144 )
Anand Doshif3096132013-05-21 19:35:06 +0530145
146 def calculate_contribution(self):
Anand Doshiac32bad2014-04-18 01:30:14 +0530147 if not self.meta.get_field("sales_team"):
148 return
149
Anand Doshif3096132013-05-21 19:35:06 +0530150 total = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530151 sales_team = self.get("sales_team")
Anand Doshif3096132013-05-21 19:35:06 +0530152 for sales_person in sales_team:
153 self.round_floats_in(sales_person)
154
155 sales_person.allocated_amount = flt(
Raffael Meyere10ab162021-11-30 13:24:18 +0100156 self.amount_eligible_for_commission * sales_person.allocated_percentage / 100.0,
Anand Doshif3096132013-05-21 19:35:06 +0530157 self.precision("allocated_amount", sales_person))
Anand Doshid2946502014-04-08 20:10:03 +0530158
Anuja Pawar87553392021-03-01 10:44:13 +0530159 if sales_person.commission_rate:
160 sales_person.incentives = flt(
Sagar Voraf4a6c782021-03-17 19:57:53 +0530161 sales_person.allocated_amount * flt(sales_person.commission_rate) / 100.0,
Anuja Pawar87553392021-03-01 10:44:13 +0530162 self.precision("incentives", sales_person))
163
Anand Doshif3096132013-05-21 19:35:06 +0530164 total += sales_person.allocated_percentage
Anand Doshid2946502014-04-08 20:10:03 +0530165
Anand Doshif3096132013-05-21 19:35:06 +0530166 if sales_team and total != 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530167 throw(_("Total allocated percentage for sales team should be 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530168
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530169 def validate_max_discount(self):
Nabin Haitdd38a262014-12-26 13:15:21 +0530170 for d in self.get("items"):
Nabin Haitc35271a2018-08-10 19:01:04 +0530171 if d.item_code:
172 discount = flt(frappe.get_cached_value("Item", d.item_code, "max_discount"))
Anand Doshid2946502014-04-08 20:10:03 +0530173
Nabin Haitc35271a2018-08-10 19:01:04 +0530174 if discount and flt(d.discount_percentage) > discount:
175 frappe.throw(_("Maximum discount for Item {0} is {1}%").format(d.item_code, discount))
Anand Doshid2946502014-04-08 20:10:03 +0530176
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530177 def set_qty_as_per_stock_uom(self):
178 for d in self.get("items"):
179 if d.meta.get_field("stock_qty"):
180 if not d.conversion_factor:
181 frappe.throw(_("Row {0}: Conversion Factor is mandatory").format(d.idx))
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530182 d.stock_qty = flt(d.qty) * flt(d.conversion_factor)
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530183
shreyas1cfe2d72016-10-19 18:36:12 +0530184 def validate_selling_price(self):
Saqibfff00ce2020-05-05 16:14:17 +0530185 def throw_message(idx, item_name, rate, ref_rate_field):
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530186 throw(_("""Row #{0}: Selling rate for item {1} is lower than its {2}.
187 Selling {3} should be atleast {4}.<br><br>Alternatively,
188 you can disable selling price validation in {5} to bypass
189 this validation.""").format(
190 idx,
191 bold(item_name),
192 bold(ref_rate_field),
193 bold("net rate"),
194 bold(rate),
195 get_link_to_form("Selling Settings", "Selling Settings"),
196 ), title=_("Invalid Selling Price"))
mbauskare9747a82016-11-16 17:19:47 +0530197
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530198 if (
199 self.get("is_return")
200 or not frappe.db.get_single_value("Selling Settings", "validate_selling_price")
201 ):
rohitwaghchaure45ac31a2018-02-12 11:27:37 +0530202 return
203
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530204 is_internal_customer = self.get('is_internal_customer')
205 valuation_rate_map = {}
206
207 for item in self.items:
Krithi Ramani8c536ff2022-01-19 15:27:09 +0530208 if not item.item_code or item.is_free_item:
Saurabhd7e18692017-09-18 15:43:35 +0530209 continue
prssannab57b3c92020-10-22 15:37:47 +0530210
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530211 last_purchase_rate, is_stock_item = frappe.get_cached_value(
212 "Item", item.item_code, ("last_purchase_rate", "is_stock_item")
213 )
shreyase8aaa922016-10-20 14:03:59 +0530214
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530215 last_purchase_rate_in_sales_uom = (
216 last_purchase_rate * (item.conversion_factor or 1)
217 )
shreyase8aaa922016-10-20 14:03:59 +0530218
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530219 if flt(item.base_net_rate) < flt(last_purchase_rate_in_sales_uom):
220 throw_message(
221 item.idx,
222 item.item_name,
223 last_purchase_rate_in_sales_uom,
224 "last purchase rate"
225 )
226
227 if is_internal_customer or not is_stock_item:
228 continue
229
230 valuation_rate_map[(item.item_code, item.warehouse)] = None
231
232 if not valuation_rate_map:
233 return
234
235 or_conditions = (
236 f"""(item_code = {frappe.db.escape(valuation_rate[0])}
237 and warehouse = {frappe.db.escape(valuation_rate[1])})"""
238 for valuation_rate in valuation_rate_map
239 )
240
241 valuation_rates = frappe.db.sql(f"""
242 select
243 item_code, warehouse, valuation_rate
244 from
245 `tabBin`
246 where
247 ({" or ".join(or_conditions)})
248 and valuation_rate > 0
249 """, as_dict=True)
250
251 for rate in valuation_rates:
252 valuation_rate_map[(rate.item_code, rate.warehouse)] = rate.valuation_rate
253
254 for item in self.items:
Krithi Ramani8c536ff2022-01-19 15:27:09 +0530255 if not item.item_code or item.is_free_item:
Pruthvi Patel7c957d72021-08-24 21:24:25 +0530256 continue
257
258 last_valuation_rate = valuation_rate_map.get(
259 (item.item_code, item.warehouse)
260 )
261
262 if not last_valuation_rate:
263 continue
264
265 last_valuation_rate_in_sales_uom = (
266 last_valuation_rate * (item.conversion_factor or 1)
267 )
268
269 if flt(item.base_net_rate) < flt(last_valuation_rate_in_sales_uom):
270 throw_message(
271 item.idx,
272 item.item_name,
273 last_valuation_rate_in_sales_uom,
274 "valuation rate"
275 )
shreyas1cfe2d72016-10-19 18:36:12 +0530276
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530277 def get_item_list(self):
278 il = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530279 for d in self.get("items"):
nathando247e9ff2014-09-03 15:03:31 +0800280 if d.qty is None:
Nabin Haitc41a9482014-08-18 15:40:15 +0530281 frappe.throw(_("Row {0}: Qty is mandatory").format(d.idx))
Anand Doshi01de9452016-01-26 16:22:50 +0530282
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530283 if self.has_product_bundle(d.item_code):
Nabin Haite7d15362014-12-25 16:01:55 +0530284 for p in self.get("packed_items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530285 if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
286 # the packing details table's qty is already multiplied with parent's qty
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530287 il.append(frappe._dict({
mbauskare471b022017-04-12 16:12:10 +0530288 'warehouse': p.warehouse or d.warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530289 'item_code': p.item_code,
290 'qty': flt(p.qty),
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530291 'uom': p.uom,
292 'batch_no': cstr(p.batch_no).strip(),
293 'serial_no': cstr(p.serial_no).strip(),
Nabin Haitc865f222015-09-21 09:18:43 +0530294 'name': d.name,
rohitwaghchaurece8adec2017-12-15 12:13:50 +0530295 'target_warehouse': p.target_warehouse,
296 'company': self.company,
297 'voucher_type': self.doctype,
rohitwaghchaure019d4de2020-08-20 15:53:58 +0530298 'allow_zero_valuation': d.allow_zero_valuation_rate,
299 'sales_invoice_item': d.get("sales_invoice_item"),
Nabin Haita77b8c92020-12-21 14:45:50 +0530300 'dn_detail': d.get("dn_detail"),
Jannat Patel06a401f2021-01-05 11:54:34 +0530301 'incoming_rate': p.get("incoming_rate")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530302 }))
303 else:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530304 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530305 'warehouse': d.warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530306 'item_code': d.item_code,
Nabin Haite68f32c2017-03-03 15:00:41 +0530307 'qty': d.stock_qty,
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530308 'uom': d.uom,
Nabin Hait1d218422015-07-17 15:19:02 +0530309 'stock_uom': d.stock_uom,
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530310 'conversion_factor': d.conversion_factor,
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530311 'batch_no': cstr(d.get("batch_no")).strip(),
312 'serial_no': cstr(d.get("serial_no")).strip(),
Nabin Haitc865f222015-09-21 09:18:43 +0530313 'name': d.name,
rohitwaghchaurece8adec2017-12-15 12:13:50 +0530314 'target_warehouse': d.target_warehouse,
315 'company': self.company,
316 'voucher_type': self.doctype,
rohitwaghchaure019d4de2020-08-20 15:53:58 +0530317 'allow_zero_valuation': d.allow_zero_valuation_rate,
318 'sales_invoice_item': d.get("sales_invoice_item"),
Nabin Haita77b8c92020-12-21 14:45:50 +0530319 'dn_detail': d.get("dn_detail"),
Jannat Patel06a401f2021-01-05 11:54:34 +0530320 'incoming_rate': d.get("incoming_rate")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530321 }))
322 return il
Anand Doshid2946502014-04-08 20:10:03 +0530323
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530324 def has_product_bundle(self, item_code):
325 return frappe.db.sql("""select name from `tabProduct Bundle`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530326 where new_item_code=%s and docstatus != 2""", item_code)
Anand Doshid2946502014-04-08 20:10:03 +0530327
Nabin Hait453cc372015-07-29 12:21:03 +0530328 def get_already_delivered_qty(self, current_docname, so, so_detail):
329 delivered_via_dn = frappe.db.sql("""select sum(qty) from `tabDelivery Note Item`
ankitjavalkarworke69a6112014-10-08 12:46:02 +0530330 where so_detail = %s and docstatus = 1
Anand Doshid2946502014-04-08 20:10:03 +0530331 and against_sales_order = %s
Nabin Hait453cc372015-07-29 12:21:03 +0530332 and parent != %s""", (so_detail, so, current_docname))
Anand Doshi01de9452016-01-26 16:22:50 +0530333
334 delivered_via_si = frappe.db.sql("""select sum(si_item.qty)
Nabin Hait18267912015-08-17 15:36:23 +0530335 from `tabSales Invoice Item` si_item, `tabSales Invoice` si
Anand Doshi602e8252015-11-16 19:05:46 +0530336 where si_item.parent = si.name and si.update_stock = 1
Anand Doshi01de9452016-01-26 16:22:50 +0530337 and si_item.so_detail = %s and si.docstatus = 1
Nabin Hait18267912015-08-17 15:36:23 +0530338 and si_item.sales_order = %s
339 and si.name != %s""", (so_detail, so, current_docname))
Anand Doshi01de9452016-01-26 16:22:50 +0530340
Nabin Hait453cc372015-07-29 12:21:03 +0530341 total_delivered_qty = (flt(delivered_via_dn[0][0]) if delivered_via_dn else 0) \
342 + (flt(delivered_via_si[0][0]) if delivered_via_si else 0)
Anand Doshi01de9452016-01-26 16:22:50 +0530343
Nabin Hait453cc372015-07-29 12:21:03 +0530344 return total_delivered_qty
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530345
346 def get_so_qty_and_warehouse(self, so_detail):
Anand Doshie9baaa62014-02-26 12:35:33 +0530347 so_item = frappe.db.sql("""select qty, warehouse from `tabSales Order Item`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530348 where name = %s and docstatus = 1""", so_detail, as_dict=1)
349 so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
Nabin Haita7f757a2014-02-10 17:54:04 +0530350 so_warehouse = so_item and so_item[0]["warehouse"] or ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530351 return so_qty, so_warehouse
Anand Doshid2946502014-04-08 20:10:03 +0530352
Mangesh-Khairnare17b7092019-03-01 15:52:23 +0530353 def check_sales_order_on_hold_or_close(self, ref_fieldname):
Nabin Haitdd38a262014-12-26 13:15:21 +0530354 for d in self.get("items"):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530355 if d.get(ref_fieldname):
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530356 status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
Mangesh-Khairnar86e650c2019-03-02 20:30:21 +0530357 if status in ("Closed", "On Hold"):
Saurabh8a8ef852015-10-21 19:28:53 +0530358 frappe.throw(_("Sales Order {0} is {1}").format(d.get(ref_fieldname), status))
shreyas1cfe2d72016-10-19 18:36:12 +0530359
Nabin Hait14aa9c52016-04-18 15:54:01 +0530360 def update_reserved_qty(self):
361 so_map = {}
362 for d in self.get("items"):
363 if d.so_detail:
364 if self.doctype == "Delivery Note" and d.against_sales_order:
365 so_map.setdefault(d.against_sales_order, []).append(d.so_detail)
366 elif self.doctype == "Sales Invoice" and d.sales_order and self.update_stock:
367 so_map.setdefault(d.sales_order, []).append(d.so_detail)
368
369 for so, so_item_rows in so_map.items():
370 if so and so_item_rows:
371 sales_order = frappe.get_doc("Sales Order", so)
372
373 if sales_order.status in ["Closed", "Cancelled"]:
374 frappe.throw(_("{0} {1} is cancelled or closed").format(_("Sales Order"), so),
375 frappe.InvalidStatusError)
376
377 sales_order.update_reserved_qty(so_item_rows)
378
Nabin Haita77b8c92020-12-21 14:45:50 +0530379 def set_incoming_rate(self):
rohitwaghchaurefe4540d2021-08-26 12:52:36 +0530380 if self.doctype not in ("Delivery Note", "Sales Invoice"):
Nabin Haita77b8c92020-12-21 14:45:50 +0530381 return
382
383 items = self.get("items") + (self.get("packed_items") or [])
384 for d in items:
rohitwaghchaurece6c3b52021-04-13 20:55:52 +0530385 if not self.get("return_against"):
Nabin Haita77b8c92020-12-21 14:45:50 +0530386 # Get incoming rate based on original item cost based on valuation method
rohitwaghchaurece6c3b52021-04-13 20:55:52 +0530387 qty = flt(d.get('stock_qty') or d.get('actual_qty'))
388
Ankush Menatfcc885b2021-12-22 12:38:51 +0530389 if not (self.get("is_return") and d.incoming_rate):
rohitwaghchaurefe4540d2021-08-26 12:52:36 +0530390 d.incoming_rate = get_incoming_rate({
391 "item_code": d.item_code,
392 "warehouse": d.warehouse,
393 "posting_date": self.get('posting_date') or self.get('transaction_date'),
394 "posting_time": self.get('posting_time') or nowtime(),
395 "qty": qty if cint(self.get("is_return")) else (-1 * qty),
396 "serial_no": d.get('serial_no'),
Ankush Menat342d09a2022-02-19 14:28:51 +0530397 "batch_no": d.get("batch_no"),
rohitwaghchaurefe4540d2021-08-26 12:52:36 +0530398 "company": self.company,
399 "voucher_type": self.doctype,
400 "voucher_no": self.name,
401 "allow_zero_valuation": d.get("allow_zero_valuation")
402 }, raise_error_if_no_rate=False)
Deepesh Gargb4be2922021-01-28 13:09:56 +0530403
404 # For internal transfers use incoming rate as the valuation rate
405 if self.is_internal_transfer():
Noah Jacobac0bc1f2021-06-24 19:36:17 +0530406 if d.doctype == "Packed Item":
407 incoming_rate = flt(d.incoming_rate * d.conversion_factor, d.precision('incoming_rate'))
408 if d.incoming_rate != incoming_rate:
409 d.incoming_rate = incoming_rate
410 else:
411 rate = flt(d.incoming_rate * d.conversion_factor, d.precision('rate'))
412 if d.rate != rate:
413 d.rate = rate
414
Deepesh Gargb4be2922021-01-28 13:09:56 +0530415 d.discount_percentage = 0
416 d.discount_amount = 0
417 frappe.msgprint(_("Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer")
418 .format(d.idx), alert=1)
419
Nabin Haita77b8c92020-12-21 14:45:50 +0530420 elif self.get("return_against"):
421 # Get incoming rate of return entry from reference document
422 # based on original item cost as per valuation method
423 d.incoming_rate = get_rate_for_return(self.doctype, self.name, d.item_code, self.return_against, item_row=d)
424
Nabin Hait14aa9c52016-04-18 15:54:01 +0530425 def update_stock_ledger(self):
426 self.update_reserved_qty()
427
428 sl_entries = []
Nabin Haita77b8c92020-12-21 14:45:50 +0530429 # Loop over items and packed items table
Nabin Hait14aa9c52016-04-18 15:54:01 +0530430 for d in self.get_item_list():
Himanshu Mishra859d9422018-08-08 18:33:50 +0530431 if frappe.get_cached_value("Item", d.item_code, "is_stock_item") == 1 and flt(d.qty):
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530432 if flt(d.conversion_factor)==0.0:
433 d.conversion_factor = get_conversion_factor(d.item_code, d.uom).get("conversion_factor") or 1.0
rohitwaghchaure019d4de2020-08-20 15:53:58 +0530434
Nabin Haita77b8c92020-12-21 14:45:50 +0530435 # On cancellation or return entry submission, make stock ledger entry for
Nabin Hait14aa9c52016-04-18 15:54:01 +0530436 # target warehouse first, to update serial no values properly
437
438 if d.warehouse and ((not cint(self.is_return) and self.docstatus==1)
439 or (cint(self.is_return) and self.docstatus==2)):
Nabin Haita77b8c92020-12-21 14:45:50 +0530440 sl_entries.append(self.get_sle_for_source_warehouse(d))
Nabin Hait14aa9c52016-04-18 15:54:01 +0530441
mergify[bot]233bf5d2021-10-05 16:16:21 +0530442 if d.target_warehouse:
Nabin Haita77b8c92020-12-21 14:45:50 +0530443 sl_entries.append(self.get_sle_for_target_warehouse(d))
Nabin Hait14aa9c52016-04-18 15:54:01 +0530444
445 if d.warehouse and ((not cint(self.is_return) and self.docstatus==2)
446 or (cint(self.is_return) and self.docstatus==1)):
Nabin Haita77b8c92020-12-21 14:45:50 +0530447 sl_entries.append(self.get_sle_for_source_warehouse(d))
448
Nabin Hait14aa9c52016-04-18 15:54:01 +0530449 self.make_sl_entries(sl_entries)
Anand Doshid2946502014-04-08 20:10:03 +0530450
Nabin Haita77b8c92020-12-21 14:45:50 +0530451 def get_sle_for_source_warehouse(self, item_row):
452 sle = self.get_sl_entries(item_row, {
453 "actual_qty": -1*flt(item_row.qty),
454 "incoming_rate": item_row.incoming_rate,
455 "recalculate_rate": cint(self.is_return)
456 })
457 if item_row.target_warehouse and not cint(self.is_return):
458 sle.dependant_sle_voucher_detail_no = item_row.name
459
460 return sle
461
462 def get_sle_for_target_warehouse(self, item_row):
463 sle = self.get_sl_entries(item_row, {
464 "actual_qty": flt(item_row.qty),
465 "warehouse": item_row.target_warehouse
466 })
467
468 if self.docstatus == 1:
469 if not cint(self.is_return):
470 sle.update({
471 "incoming_rate": item_row.incoming_rate,
472 "recalculate_rate": 1
473 })
474 else:
475 sle.update({
476 "outgoing_rate": item_row.incoming_rate
477 })
478 if item_row.warehouse:
479 sle.dependant_sle_voucher_detail_no = item_row.name
Deepesh Gargb4be2922021-01-28 13:09:56 +0530480
Nabin Haita77b8c92020-12-21 14:45:50 +0530481 return sle
482
Afshan01eca122020-12-08 09:27:56 +0530483 def set_po_nos(self, for_validate=False):
Afshan3f971b22020-10-26 16:59:57 +0530484 if self.doctype == 'Sales Invoice' and hasattr(self, "items"):
Afshan01eca122020-12-08 09:27:56 +0530485 if for_validate and self.po_no:
486 return
Afshan3f971b22020-10-26 16:59:57 +0530487 self.set_pos_for_sales_invoice()
488 if self.doctype == 'Delivery Note' and hasattr(self, "items"):
Afshan01eca122020-12-08 09:27:56 +0530489 if for_validate and self.po_no:
490 return
Afshan3f971b22020-10-26 16:59:57 +0530491 self.set_pos_for_delivery_note()
492
493 def set_pos_for_sales_invoice(self):
Afshan0a6e1b32020-10-26 21:23:31 +0530494 po_nos = []
Afshan01eca122020-12-08 09:27:56 +0530495 if self.po_no:
496 po_nos.append(self.po_no)
Afshan0a6e1b32020-10-26 21:23:31 +0530497 self.get_po_nos('Sales Order', 'sales_order', po_nos)
498 self.get_po_nos('Delivery Note', 'delivery_note', po_nos)
Afshan1e564bc2020-11-10 13:23:59 +0530499 self.po_no = ', '.join(list(set(x.strip() for x in ','.join(po_nos).split(','))))
Afshan3f971b22020-10-26 16:59:57 +0530500
501 def set_pos_for_delivery_note(self):
Afshan0a6e1b32020-10-26 21:23:31 +0530502 po_nos = []
Afshan01eca122020-12-08 09:27:56 +0530503 if self.po_no:
504 po_nos.append(self.po_no)
Afshan0a6e1b32020-10-26 21:23:31 +0530505 self.get_po_nos('Sales Order', 'against_sales_order', po_nos)
506 self.get_po_nos('Sales Invoice', 'against_sales_invoice', po_nos)
Afshan1e564bc2020-11-10 13:23:59 +0530507 self.po_no = ', '.join(list(set(x.strip() for x in ','.join(po_nos).split(','))))
Afshan0a6e1b32020-10-26 21:23:31 +0530508
509 def get_po_nos(self, ref_doctype, ref_fieldname, po_nos):
Ankush Menat98917802021-06-11 18:40:22 +0530510 doc_list = list(set(d.get(ref_fieldname) for d in self.items if d.get(ref_fieldname)))
Afshan0a6e1b32020-10-26 21:23:31 +0530511 if doc_list:
Afshan19240192020-11-10 13:19:21 +0530512 po_nos += [d.po_no for d in frappe.get_all(ref_doctype, 'po_no', filters = {'name': ('in', doc_list)}) if d.get('po_no')]
Nabin Hait96f4b222018-03-13 15:46:59 +0530513
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500514 def set_gross_profit(self):
Abhishek Balam18e7b602020-05-26 18:37:02 +0530515 if self.doctype in ["Sales Order", "Quotation"]:
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500516 for item in self.items:
517 item.gross_profit = flt(((item.base_rate - item.valuation_rate) * item.stock_qty), self.precision("amount", item))
518
519
Rohit Waghchauref4dc7162018-11-15 17:04:02 +0530520 def set_customer_address(self):
521 address_dict = {
522 'customer_address': 'address_display',
523 'shipping_address_name': 'shipping_address',
524 'company_address': 'company_address_display'
525 }
526
527 for address_field, address_display_field in address_dict.items():
528 if self.get(address_field):
529 self.set(address_display_field, get_address_display(self.get(address_field)))
530
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530531 def validate_for_duplicate_items(self):
532 check_list, chk_dupl_itm = [], []
533 if cint(frappe.db.get_single_value("Selling Settings", "allow_multiple_items")):
534 return
Saqib0681a482021-02-11 14:06:15 +0530535 if self.doctype == "Sales Invoice" and self.is_consolidated:
536 return
537 if self.doctype == "POS Invoice":
538 return
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530539
540 for d in self.get('items'):
Saqib0681a482021-02-11 14:06:15 +0530541 if self.doctype == "Sales Invoice":
Jannat Patelc1187bc2020-11-19 13:10:24 +0530542 stock_items = [d.item_code, d.description, d.warehouse, d.sales_order or d.delivery_note, d.batch_no or '']
543 non_stock_items = [d.item_code, d.description, d.sales_order or d.delivery_note]
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530544 elif self.doctype == "Delivery Note":
Jannat Patelc1187bc2020-11-19 13:10:24 +0530545 stock_items = [d.item_code, d.description, d.warehouse, d.against_sales_order or d.against_sales_invoice, d.batch_no or '']
546 non_stock_items = [d.item_code, d.description, d.against_sales_order or d.against_sales_invoice]
Rohit Waghchaure13c7e182019-08-29 19:45:19 +0530547 elif self.doctype in ["Sales Order", "Quotation"]:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530548 stock_items = [d.item_code, d.description, d.warehouse, '']
549 non_stock_items = [d.item_code, d.description]
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530550
551 if frappe.db.get_value("Item", d.item_code, "is_stock_item") == 1:
Saqibac9e6ff2021-01-28 17:58:55 +0530552 duplicate_items_msg = _("Item {0} entered multiple times.").format(frappe.bold(d.item_code))
553 duplicate_items_msg += "<br><br>"
554 duplicate_items_msg += _("Please enable {} in {} to allow same item in multiple rows").format(
555 frappe.bold("Allow Item to Be Added Multiple Times in a Transaction"),
556 get_link_to_form("Selling Settings", "Selling Settings")
557 )
Jannat Patelc1187bc2020-11-19 13:10:24 +0530558 if stock_items in check_list:
Saqibac9e6ff2021-01-28 17:58:55 +0530559 frappe.throw(duplicate_items_msg)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530560 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530561 check_list.append(stock_items)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530562 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530563 if non_stock_items in chk_dupl_itm:
Saqibac9e6ff2021-01-28 17:58:55 +0530564 frappe.throw(duplicate_items_msg)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530565 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530566 chk_dupl_itm.append(non_stock_items)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530567
rohitwaghchaure6fa6caf2020-04-23 09:46:29 +0530568 def validate_target_warehouse(self):
569 items = self.get("items") + (self.get("packed_items") or [])
570
571 for d in items:
572 if d.get("target_warehouse") and d.get("warehouse") == d.get("target_warehouse"):
573 warehouse = frappe.bold(d.get("target_warehouse"))
574 frappe.throw(_("Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same")
575 .format(d.idx, warehouse, warehouse))
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530576
mergify[bot]233bf5d2021-10-05 16:16:21 +0530577 if not self.get("is_internal_customer") and any(d.get("target_warehouse") for d in items):
578 msg = _("Target Warehouse is set for some items but the customer is not an internal customer.")
579 msg += " " + _("This {} will be treated as material transfer.").format(_(self.doctype))
580 frappe.msgprint(msg, title="Internal Transfer", alert=True)
581
582
Zarrarfc03a042018-06-04 12:52:52 +0530583 def validate_items(self):
584 # validate items to see if they have is_sales_item enabled
585 from erpnext.controllers.buying_controller import validate_item_type
586 validate_item_type(self, "is_sales_item", "sales")
587
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530588def set_default_income_account_for_item(obj):
Nabin Haitdd38a262014-12-26 13:15:21 +0530589 for d in obj.get("items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530590 if d.item_code:
Manas Solanki5b935622018-05-16 17:44:51 +0530591 if getattr(d, "income_account", None):
Sagar Voraf4a6c782021-03-17 19:57:53 +0530592 set_item_default(d.item_code, obj.company, 'income_account', d.income_account)