blob: e085048f99bd17169db873d7887af0e9ef5d32cb [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
4from __future__ import unicode_literals
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05305import frappe
Deepesh Gargb4be2922021-01-28 13:09:56 +05306from frappe.utils import cint, flt, cstr, get_link_to_form, nowtime
Rushabh Mehta9f0d6252014-04-14 19:20:45 +05307from frappe import _, throw
Saurabhd3135532016-02-25 18:59:20 +05308from erpnext.stock.get_item_details import get_bin_details
Nabin Hait14aa9c52016-04-18 15:54:01 +05309from erpnext.stock.utils import get_incoming_rate
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +053010from erpnext.stock.get_item_details import get_conversion_factor
Aditya Hasef79937d2019-01-23 00:28:37 +053011from erpnext.stock.doctype.item.item import set_item_default
Rohit Waghchauref4dc7162018-11-15 17:04:02 +053012from frappe.contacts.doctype.address.address import get_address_display
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053013from erpnext.controllers.accounts_controller import get_taxes_and_charges
Nabin Haitec52db82013-01-22 11:53:14 +053014
Rushabh Mehta1f847992013-12-12 19:12:19 +053015from erpnext.controllers.stock_controller import StockController
Nabin Haita77b8c92020-12-21 14:45:50 +053016from erpnext.controllers.sales_and_purchase_return import get_rate_for_return
Nabin Haitbf495c92013-01-30 12:49:08 +053017
Nabin Haitc3afb252013-03-19 12:01:24 +053018class SellingController(StockController):
Rushabh Mehtaf84c2402014-07-18 16:39:31 +053019 def __setup__(self):
Nabin Haitde9c8a92015-02-23 01:06:00 +053020 if hasattr(self, "taxes"):
Nabin Hait45dce892017-09-14 15:17:38 +053021 self.flags.print_taxes_with_zero_amount = cint(frappe.db.get_single_value("Print Settings",
Ameya Shenoy2806d832018-11-28 08:12:48 +000022 "print_taxes_with_zero_amount"))
rohitwaghchaurebf4c1142018-01-08 15:20:15 +053023 self.flags.show_inclusive_tax_in_print = self.is_inclusive_tax()
24
Rushabh Mehtac567e8e2015-02-03 17:55:52 +053025 self.print_templates = {
rohitwaghchaurebf4c1142018-01-08 15:20:15 +053026 "total": "templates/print_formats/includes/total.html",
Rushabh Mehtac567e8e2015-02-03 17:55:52 +053027 "taxes": "templates/print_formats/includes/taxes.html"
Rushabh Mehta5b51cc82014-07-21 18:25:45 +053028 }
Rushabh Mehtaf84c2402014-07-18 16:39:31 +053029
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053030 def get_feed(self):
31 return _("To {0} | {1} {2}").format(self.customer_name, self.currency,
Nabin Hait5690be12015-02-12 16:09:11 +053032 self.grand_total)
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053033
Rushabh Mehtab5e76892014-07-29 16:07:43 +053034 def onload(self):
Rohit Waghchaure7d529892016-10-06 14:35:04 +053035 super(SellingController, self).onload()
Rushabh Mehtab5e76892014-07-29 16:07:43 +053036 if self.doctype in ("Sales Order", "Delivery Note", "Sales Invoice"):
Nabin Haitdd38a262014-12-26 13:15:21 +053037 for item in self.get("items"):
Nabin Hait877e1bb2017-11-17 12:27:43 +053038 item.update(get_bin_details(item.item_code, item.warehouse))
Rushabh Mehtab5e76892014-07-29 16:07:43 +053039
Nabin Haitd1fd1e22013-10-18 12:29:11 +053040 def validate(self):
41 super(SellingController, self).validate()
Zarrarfc03a042018-06-04 12:52:52 +053042 self.validate_items()
Nabin Haitd1fd1e22013-10-18 12:29:11 +053043 self.validate_max_discount()
shreyas1cfe2d72016-10-19 18:36:12 +053044 self.validate_selling_price()
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +053045 self.set_qty_as_per_stock_uom()
Afshan01eca122020-12-08 09:27:56 +053046 self.set_po_nos(for_validate=True)
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +050047 self.set_gross_profit()
Rushabh Mehta708e47a2018-08-08 16:37:31 +053048 set_default_income_account_for_item(self)
Rohit Waghchauref4dc7162018-11-15 17:04:02 +053049 self.set_customer_address()
Deepesh Gargf3d78dd2019-08-23 11:42:35 +053050 self.validate_for_duplicate_items()
rohitwaghchaure6fa6caf2020-04-23 09:46:29 +053051 self.validate_target_warehouse()
Anand Doshid2946502014-04-08 20:10:03 +053052
Anand Doshif3096132013-05-21 19:35:06 +053053 def set_missing_values(self, for_validate=False):
Shreya Shah5615cb42018-10-07 11:42:07 +053054
Anand Doshiabc10032013-06-14 17:44:03 +053055 super(SellingController, self).set_missing_values(for_validate)
Anand Doshid2946502014-04-08 20:10:03 +053056
Anand Doshif3096132013-05-21 19:35:06 +053057 # set contact and address details for customer, if they are not mentioned
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053058 self.set_missing_lead_customer_details(for_validate=for_validate)
mbauskar9e9d2422017-04-10 19:16:07 +053059 self.set_price_list_and_item_details(for_validate=for_validate)
Anand Doshid2946502014-04-08 20:10:03 +053060
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053061 def set_missing_lead_customer_details(self, for_validate=False):
Nabin Hait34c551d2019-07-03 10:34:31 +053062 customer, lead = None, None
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053063 if getattr(self, "customer", None):
Nabin Hait34c551d2019-07-03 10:34:31 +053064 customer = self.customer
65 elif self.doctype == "Opportunity" and self.party_name:
66 if self.opportunity_from == "Customer":
67 customer = self.party_name
68 else:
69 lead = self.party_name
70 elif self.doctype == "Quotation" and self.party_name:
71 if self.quotation_to == "Customer":
72 customer = self.party_name
73 else:
74 lead = self.party_name
75
76 if customer:
Anand Doshi43624432014-02-25 15:42:16 +053077 from erpnext.accounts.party import _get_party_details
rohitwaghchaure3ffe8962018-07-13 17:40:48 +053078 fetch_payment_terms_template = False
79 if (self.get("__islocal") or
80 self.company != frappe.db.get_value(self.doctype, self.name, 'company')):
81 fetch_payment_terms_template = True
82
Nabin Hait34c551d2019-07-03 10:34:31 +053083 party_details = _get_party_details(customer,
Nabin Hait7eba1a32017-10-02 15:59:27 +053084 ignore_permissions=self.flags.ignore_permissions,
rohitwaghchaure3ffe8962018-07-13 17:40:48 +053085 doctype=self.doctype, company=self.company,
Deepesh Gargc152b922020-09-20 20:04:10 +053086 posting_date=self.get('posting_date'),
Shreya Shah5615cb42018-10-07 11:42:07 +053087 fetch_payment_terms_template=fetch_payment_terms_template,
Shreya Shah22913232018-10-11 10:13:27 +053088 party_address=self.customer_address, shipping_address=self.shipping_address_name)
Nabin Hait6b039142014-05-02 15:45:10 +053089 if not self.meta.get_field("sales_team"):
90 party_details.pop("sales_team")
Nabin Hait6b039142014-05-02 15:45:10 +053091 self.update_if_missing(party_details)
Anand Doshid2946502014-04-08 20:10:03 +053092
Nabin Hait34c551d2019-07-03 10:34:31 +053093 elif lead:
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053094 from erpnext.crm.doctype.lead.lead import get_lead_details
Nabin Hait34c551d2019-07-03 10:34:31 +053095 self.update_if_missing(get_lead_details(lead,
Anand Doshi2f957f22016-04-08 17:36:10 +053096 posting_date=self.get('transaction_date') or self.get('posting_date'),
97 company=self.company))
Anand Doshid2946502014-04-08 20:10:03 +053098
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053099 if self.get('taxes_and_charges') and not self.get('taxes') and not for_validate:
100 taxes = get_taxes_and_charges('Sales Taxes and Charges Template', self.taxes_and_charges)
101 for tax in taxes:
102 self.append('taxes', tax)
103
mbauskar9e9d2422017-04-10 19:16:07 +0530104 def set_price_list_and_item_details(self, for_validate=False):
Nabin Hait096d3632013-10-17 17:01:14 +0530105 self.set_price_list_currency("Selling")
mbauskar287fe812017-04-10 19:15:57 +0530106 self.set_missing_item_details(for_validate=for_validate)
Anand Doshid2946502014-04-08 20:10:03 +0530107
Anand Doshiac32bad2014-04-18 01:30:14 +0530108 def remove_shipping_charge(self):
109 if self.shipping_rule:
110 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Nabin Haite7d15362014-12-25 16:01:55 +0530111 existing_shipping_charge = self.get("taxes", {
Anand Doshiac32bad2014-04-18 01:30:14 +0530112 "doctype": "Sales Taxes and Charges",
113 "charge_type": "Actual",
114 "account_head": shipping_rule.account,
115 "cost_center": shipping_rule.cost_center
Anand Doshi0b4943c2013-07-04 23:45:22 +0530116 })
Anand Doshiac32bad2014-04-18 01:30:14 +0530117 if existing_shipping_charge:
Nabin Haite7d15362014-12-25 16:01:55 +0530118 self.get("taxes").remove(existing_shipping_charge[-1])
Anand Doshiac32bad2014-04-18 01:30:14 +0530119 self.calculate_taxes_and_totals()
Anand Doshid2946502014-04-08 20:10:03 +0530120
Nabin Haitec52db82013-01-22 11:53:14 +0530121 def set_total_in_words(self):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530122 from frappe.utils import money_in_words
Anand Doshid2946502014-04-08 20:10:03 +0530123
Nabin Hait5690be12015-02-12 16:09:11 +0530124 if self.meta.get_field("base_in_words"):
Nabin Hait877e1bb2017-11-17 12:27:43 +0530125 base_amount = abs(self.base_grand_total
126 if self.is_rounded_total_disabled() else self.base_rounded_total)
127 self.base_in_words = money_in_words(base_amount, self.company_currency)
128
Nabin Haitec52db82013-01-22 11:53:14 +0530129 if self.meta.get_field("in_words"):
Nabin Hait877e1bb2017-11-17 12:27:43 +0530130 amount = abs(self.grand_total if self.is_rounded_total_disabled() else self.rounded_total)
131 self.in_words = money_in_words(amount, self.currency)
Anand Doshid2946502014-04-08 20:10:03 +0530132
Anand Doshi923d41d2013-05-28 17:23:36 +0530133 def calculate_commission(self):
134 if self.meta.get_field("commission_rate"):
Nabin Hait5690be12015-02-12 16:09:11 +0530135 self.round_floats_in(self, ["base_net_total", "commission_rate"])
Anand Doshif78d1ae2014-03-28 13:55:00 +0530136 if self.commission_rate > 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530137 throw(_("Commission rate cannot be greater than 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530138
Nabin Hait5690be12015-02-12 16:09:11 +0530139 self.total_commission = flt(self.base_net_total * self.commission_rate / 100.0,
Anand Doshi923d41d2013-05-28 17:23:36 +0530140 self.precision("total_commission"))
Anand Doshif3096132013-05-21 19:35:06 +0530141
142 def calculate_contribution(self):
Anand Doshiac32bad2014-04-18 01:30:14 +0530143 if not self.meta.get_field("sales_team"):
144 return
145
Anand Doshif3096132013-05-21 19:35:06 +0530146 total = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530147 sales_team = self.get("sales_team")
Anand Doshif3096132013-05-21 19:35:06 +0530148 for sales_person in sales_team:
149 self.round_floats_in(sales_person)
150
151 sales_person.allocated_amount = flt(
Nabin Hait5690be12015-02-12 16:09:11 +0530152 self.base_net_total * sales_person.allocated_percentage / 100.0,
Anand Doshif3096132013-05-21 19:35:06 +0530153 self.precision("allocated_amount", sales_person))
Anand Doshid2946502014-04-08 20:10:03 +0530154
Anand Doshif3096132013-05-21 19:35:06 +0530155 total += sales_person.allocated_percentage
Anand Doshid2946502014-04-08 20:10:03 +0530156
Anand Doshif3096132013-05-21 19:35:06 +0530157 if sales_team and total != 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530158 throw(_("Total allocated percentage for sales team should be 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530159
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530160 def validate_max_discount(self):
Nabin Haitdd38a262014-12-26 13:15:21 +0530161 for d in self.get("items"):
Nabin Haitc35271a2018-08-10 19:01:04 +0530162 if d.item_code:
163 discount = flt(frappe.get_cached_value("Item", d.item_code, "max_discount"))
Anand Doshid2946502014-04-08 20:10:03 +0530164
Nabin Haitc35271a2018-08-10 19:01:04 +0530165 if discount and flt(d.discount_percentage) > discount:
166 frappe.throw(_("Maximum discount for Item {0} is {1}%").format(d.item_code, discount))
Anand Doshid2946502014-04-08 20:10:03 +0530167
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530168 def set_qty_as_per_stock_uom(self):
169 for d in self.get("items"):
170 if d.meta.get_field("stock_qty"):
171 if not d.conversion_factor:
172 frappe.throw(_("Row {0}: Conversion Factor is mandatory").format(d.idx))
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530173 d.stock_qty = flt(d.qty) * flt(d.conversion_factor)
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530174
shreyas1cfe2d72016-10-19 18:36:12 +0530175 def validate_selling_price(self):
Saqibfff00ce2020-05-05 16:14:17 +0530176 def throw_message(idx, item_name, rate, ref_rate_field):
Saqib3daad222020-10-12 18:31:23 +0530177 bold_net_rate = frappe.bold("net rate")
178 msg = (_("""Row #{}: Selling rate for item {} is lower than its {}. Selling {} should be atleast {}""")
179 .format(idx, frappe.bold(item_name), frappe.bold(ref_rate_field), bold_net_rate, frappe.bold(rate)))
180 msg += "<br><br>"
181 msg += (_("""You can alternatively disable selling price validation in {} to bypass this validation.""")
182 .format(get_link_to_form("Selling Settings", "Selling Settings")))
183 frappe.throw(msg, title=_("Invalid Selling Price"))
mbauskare9747a82016-11-16 17:19:47 +0530184
Nabin Hait9f26bc12016-10-20 16:45:53 +0530185 if not frappe.db.get_single_value("Selling Settings", "validate_selling_price"):
shreyas1cfe2d72016-10-19 18:36:12 +0530186 return
rohitwaghchaure45ac31a2018-02-12 11:27:37 +0530187 if hasattr(self, "is_return") and self.is_return:
188 return
189
shreyas1cfe2d72016-10-19 18:36:12 +0530190 for it in self.get("items"):
Saurabhd7e18692017-09-18 15:43:35 +0530191 if not it.item_code:
192 continue
Deepesh Gargb4be2922021-01-28 13:09:56 +0530193
Himanshu Mishra859d9422018-08-08 18:33:50 +0530194 last_purchase_rate, is_stock_item = frappe.get_cached_value("Item", it.item_code, ["last_purchase_rate", "is_stock_item"])
Saqib3daad222020-10-12 18:31:23 +0530195 last_purchase_rate_in_sales_uom = last_purchase_rate * (it.conversion_factor or 1)
196 if flt(it.base_net_rate) < flt(last_purchase_rate_in_sales_uom):
Saqibfff00ce2020-05-05 16:14:17 +0530197 throw_message(it.idx, frappe.bold(it.item_name), last_purchase_rate_in_sales_uom, "last purchase rate")
shreyase8aaa922016-10-20 14:03:59 +0530198
199 last_valuation_rate = frappe.db.sql("""
200 SELECT valuation_rate FROM `tabStock Ledger Entry` WHERE item_code = %s
201 AND warehouse = %s AND valuation_rate > 0
Aditya Hase0c164242019-01-07 22:07:13 +0530202 ORDER BY posting_date DESC, posting_time DESC, creation DESC LIMIT 1
shreyase8aaa922016-10-20 14:03:59 +0530203 """, (it.item_code, it.warehouse))
Nabin Hait42343bb2017-05-05 17:23:17 +0530204 if last_valuation_rate:
Saqib3daad222020-10-12 18:31:23 +0530205 last_valuation_rate_in_sales_uom = last_valuation_rate[0][0] * (it.conversion_factor or 1)
206 if is_stock_item and flt(it.base_net_rate) < flt(last_valuation_rate_in_sales_uom) \
Deepesh Garg15ff6a52020-02-18 12:28:41 +0530207 and not self.get('is_internal_customer'):
Saqibfff00ce2020-05-05 16:14:17 +0530208 throw_message(it.idx, frappe.bold(it.item_name), last_valuation_rate_in_sales_uom, "valuation rate")
shreyase8aaa922016-10-20 14:03:59 +0530209
shreyas1cfe2d72016-10-19 18:36:12 +0530210
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530211 def get_item_list(self):
212 il = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530213 for d in self.get("items"):
nathando247e9ff2014-09-03 15:03:31 +0800214 if d.qty is None:
Nabin Haitc41a9482014-08-18 15:40:15 +0530215 frappe.throw(_("Row {0}: Qty is mandatory").format(d.idx))
Anand Doshi01de9452016-01-26 16:22:50 +0530216
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530217 if self.has_product_bundle(d.item_code):
Nabin Haite7d15362014-12-25 16:01:55 +0530218 for p in self.get("packed_items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530219 if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
220 # the packing details table's qty is already multiplied with parent's qty
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530221 il.append(frappe._dict({
mbauskare471b022017-04-12 16:12:10 +0530222 'warehouse': p.warehouse or d.warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530223 'item_code': p.item_code,
224 'qty': flt(p.qty),
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530225 'uom': p.uom,
226 'batch_no': cstr(p.batch_no).strip(),
227 'serial_no': cstr(p.serial_no).strip(),
Nabin Haitc865f222015-09-21 09:18:43 +0530228 'name': d.name,
rohitwaghchaurece8adec2017-12-15 12:13:50 +0530229 'target_warehouse': p.target_warehouse,
230 'company': self.company,
231 'voucher_type': self.doctype,
rohitwaghchaure019d4de2020-08-20 15:53:58 +0530232 'allow_zero_valuation': d.allow_zero_valuation_rate,
233 'sales_invoice_item': d.get("sales_invoice_item"),
Nabin Haita77b8c92020-12-21 14:45:50 +0530234 'dn_detail': d.get("dn_detail"),
Jannat Patel06a401f2021-01-05 11:54:34 +0530235 'incoming_rate': p.get("incoming_rate")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530236 }))
237 else:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530238 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530239 'warehouse': d.warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530240 'item_code': d.item_code,
Nabin Haite68f32c2017-03-03 15:00:41 +0530241 'qty': d.stock_qty,
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530242 'uom': d.uom,
Nabin Hait1d218422015-07-17 15:19:02 +0530243 'stock_uom': d.stock_uom,
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530244 'conversion_factor': d.conversion_factor,
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530245 'batch_no': cstr(d.get("batch_no")).strip(),
246 'serial_no': cstr(d.get("serial_no")).strip(),
Nabin Haitc865f222015-09-21 09:18:43 +0530247 'name': d.name,
rohitwaghchaurece8adec2017-12-15 12:13:50 +0530248 'target_warehouse': d.target_warehouse,
249 'company': self.company,
250 'voucher_type': self.doctype,
rohitwaghchaure019d4de2020-08-20 15:53:58 +0530251 'allow_zero_valuation': d.allow_zero_valuation_rate,
252 'sales_invoice_item': d.get("sales_invoice_item"),
Nabin Haita77b8c92020-12-21 14:45:50 +0530253 'dn_detail': d.get("dn_detail"),
Jannat Patel06a401f2021-01-05 11:54:34 +0530254 'incoming_rate': d.get("incoming_rate")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530255 }))
256 return il
Anand Doshid2946502014-04-08 20:10:03 +0530257
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530258 def has_product_bundle(self, item_code):
259 return frappe.db.sql("""select name from `tabProduct Bundle`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530260 where new_item_code=%s and docstatus != 2""", item_code)
Anand Doshid2946502014-04-08 20:10:03 +0530261
Nabin Hait453cc372015-07-29 12:21:03 +0530262 def get_already_delivered_qty(self, current_docname, so, so_detail):
263 delivered_via_dn = frappe.db.sql("""select sum(qty) from `tabDelivery Note Item`
ankitjavalkarworke69a6112014-10-08 12:46:02 +0530264 where so_detail = %s and docstatus = 1
Anand Doshid2946502014-04-08 20:10:03 +0530265 and against_sales_order = %s
Nabin Hait453cc372015-07-29 12:21:03 +0530266 and parent != %s""", (so_detail, so, current_docname))
Anand Doshi01de9452016-01-26 16:22:50 +0530267
268 delivered_via_si = frappe.db.sql("""select sum(si_item.qty)
Nabin Hait18267912015-08-17 15:36:23 +0530269 from `tabSales Invoice Item` si_item, `tabSales Invoice` si
Anand Doshi602e8252015-11-16 19:05:46 +0530270 where si_item.parent = si.name and si.update_stock = 1
Anand Doshi01de9452016-01-26 16:22:50 +0530271 and si_item.so_detail = %s and si.docstatus = 1
Nabin Hait18267912015-08-17 15:36:23 +0530272 and si_item.sales_order = %s
273 and si.name != %s""", (so_detail, so, current_docname))
Anand Doshi01de9452016-01-26 16:22:50 +0530274
Nabin Hait453cc372015-07-29 12:21:03 +0530275 total_delivered_qty = (flt(delivered_via_dn[0][0]) if delivered_via_dn else 0) \
276 + (flt(delivered_via_si[0][0]) if delivered_via_si else 0)
Anand Doshi01de9452016-01-26 16:22:50 +0530277
Nabin Hait453cc372015-07-29 12:21:03 +0530278 return total_delivered_qty
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530279
280 def get_so_qty_and_warehouse(self, so_detail):
Anand Doshie9baaa62014-02-26 12:35:33 +0530281 so_item = frappe.db.sql("""select qty, warehouse from `tabSales Order Item`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530282 where name = %s and docstatus = 1""", so_detail, as_dict=1)
283 so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
Nabin Haita7f757a2014-02-10 17:54:04 +0530284 so_warehouse = so_item and so_item[0]["warehouse"] or ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530285 return so_qty, so_warehouse
Anand Doshid2946502014-04-08 20:10:03 +0530286
Mangesh-Khairnare17b7092019-03-01 15:52:23 +0530287 def check_sales_order_on_hold_or_close(self, ref_fieldname):
Nabin Haitdd38a262014-12-26 13:15:21 +0530288 for d in self.get("items"):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530289 if d.get(ref_fieldname):
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530290 status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
Mangesh-Khairnar86e650c2019-03-02 20:30:21 +0530291 if status in ("Closed", "On Hold"):
Saurabh8a8ef852015-10-21 19:28:53 +0530292 frappe.throw(_("Sales Order {0} is {1}").format(d.get(ref_fieldname), status))
shreyas1cfe2d72016-10-19 18:36:12 +0530293
Nabin Hait14aa9c52016-04-18 15:54:01 +0530294 def update_reserved_qty(self):
295 so_map = {}
296 for d in self.get("items"):
297 if d.so_detail:
298 if self.doctype == "Delivery Note" and d.against_sales_order:
299 so_map.setdefault(d.against_sales_order, []).append(d.so_detail)
300 elif self.doctype == "Sales Invoice" and d.sales_order and self.update_stock:
301 so_map.setdefault(d.sales_order, []).append(d.so_detail)
302
303 for so, so_item_rows in so_map.items():
304 if so and so_item_rows:
305 sales_order = frappe.get_doc("Sales Order", so)
306
307 if sales_order.status in ["Closed", "Cancelled"]:
308 frappe.throw(_("{0} {1} is cancelled or closed").format(_("Sales Order"), so),
309 frappe.InvalidStatusError)
310
311 sales_order.update_reserved_qty(so_item_rows)
312
Nabin Haita77b8c92020-12-21 14:45:50 +0530313 def set_incoming_rate(self):
Deepesh Gargb4be2922021-01-28 13:09:56 +0530314 if self.doctype not in ("Delivery Note", "Sales Invoice", "Sales Order"):
Nabin Haita77b8c92020-12-21 14:45:50 +0530315 return
316
317 items = self.get("items") + (self.get("packed_items") or [])
318 for d in items:
319 if not cint(self.get("is_return")):
320 # Get incoming rate based on original item cost based on valuation method
321 d.incoming_rate = get_incoming_rate({
322 "item_code": d.item_code,
323 "warehouse": d.warehouse,
Deepesh Gargb4be2922021-01-28 13:09:56 +0530324 "posting_date": self.get('posting_date') or self.get('transaction_date'),
325 "posting_time": self.get('posting_time') or nowtime(),
326 "qty": -1 * flt(d.get('stock_qty') or d.get('actual_qty')),
327 "serial_no": d.get('serial_no'),
Nabin Haita77b8c92020-12-21 14:45:50 +0530328 "company": self.company,
329 "voucher_type": self.doctype,
330 "voucher_no": self.name,
331 "allow_zero_valuation": d.get("allow_zero_valuation")
332 }, raise_error_if_no_rate=False)
Deepesh Gargb4be2922021-01-28 13:09:56 +0530333
334 # For internal transfers use incoming rate as the valuation rate
335 if self.is_internal_transfer():
336 rate = flt(d.incoming_rate * d.conversion_factor, d.precision('rate'))
337 if d.rate != rate:
338 d.rate = rate
339 d.discount_percentage = 0
340 d.discount_amount = 0
341 frappe.msgprint(_("Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer")
342 .format(d.idx), alert=1)
343
Nabin Haita77b8c92020-12-21 14:45:50 +0530344 elif self.get("return_against"):
345 # Get incoming rate of return entry from reference document
346 # based on original item cost as per valuation method
347 d.incoming_rate = get_rate_for_return(self.doctype, self.name, d.item_code, self.return_against, item_row=d)
348
Nabin Hait14aa9c52016-04-18 15:54:01 +0530349 def update_stock_ledger(self):
350 self.update_reserved_qty()
351
352 sl_entries = []
Nabin Haita77b8c92020-12-21 14:45:50 +0530353 # Loop over items and packed items table
Nabin Hait14aa9c52016-04-18 15:54:01 +0530354 for d in self.get_item_list():
Himanshu Mishra859d9422018-08-08 18:33:50 +0530355 if frappe.get_cached_value("Item", d.item_code, "is_stock_item") == 1 and flt(d.qty):
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530356 if flt(d.conversion_factor)==0.0:
357 d.conversion_factor = get_conversion_factor(d.item_code, d.uom).get("conversion_factor") or 1.0
rohitwaghchaure019d4de2020-08-20 15:53:58 +0530358
Nabin Haita77b8c92020-12-21 14:45:50 +0530359 # On cancellation or return entry submission, make stock ledger entry for
Nabin Hait14aa9c52016-04-18 15:54:01 +0530360 # target warehouse first, to update serial no values properly
361
362 if d.warehouse and ((not cint(self.is_return) and self.docstatus==1)
363 or (cint(self.is_return) and self.docstatus==2)):
Nabin Haita77b8c92020-12-21 14:45:50 +0530364 sl_entries.append(self.get_sle_for_source_warehouse(d))
Nabin Hait14aa9c52016-04-18 15:54:01 +0530365
366 if d.target_warehouse:
Nabin Haita77b8c92020-12-21 14:45:50 +0530367 sl_entries.append(self.get_sle_for_target_warehouse(d))
Nabin Hait14aa9c52016-04-18 15:54:01 +0530368
369 if d.warehouse and ((not cint(self.is_return) and self.docstatus==2)
370 or (cint(self.is_return) and self.docstatus==1)):
Nabin Haita77b8c92020-12-21 14:45:50 +0530371 sl_entries.append(self.get_sle_for_source_warehouse(d))
372
Nabin Hait14aa9c52016-04-18 15:54:01 +0530373 self.make_sl_entries(sl_entries)
Anand Doshid2946502014-04-08 20:10:03 +0530374
Nabin Haita77b8c92020-12-21 14:45:50 +0530375 def get_sle_for_source_warehouse(self, item_row):
376 sle = self.get_sl_entries(item_row, {
377 "actual_qty": -1*flt(item_row.qty),
378 "incoming_rate": item_row.incoming_rate,
379 "recalculate_rate": cint(self.is_return)
380 })
381 if item_row.target_warehouse and not cint(self.is_return):
382 sle.dependant_sle_voucher_detail_no = item_row.name
383
384 return sle
385
386 def get_sle_for_target_warehouse(self, item_row):
387 sle = self.get_sl_entries(item_row, {
388 "actual_qty": flt(item_row.qty),
389 "warehouse": item_row.target_warehouse
390 })
391
392 if self.docstatus == 1:
393 if not cint(self.is_return):
394 sle.update({
395 "incoming_rate": item_row.incoming_rate,
396 "recalculate_rate": 1
397 })
398 else:
399 sle.update({
400 "outgoing_rate": item_row.incoming_rate
401 })
402 if item_row.warehouse:
403 sle.dependant_sle_voucher_detail_no = item_row.name
Deepesh Gargb4be2922021-01-28 13:09:56 +0530404
Nabin Haita77b8c92020-12-21 14:45:50 +0530405 return sle
406
Afshan01eca122020-12-08 09:27:56 +0530407 def set_po_nos(self, for_validate=False):
Afshan3f971b22020-10-26 16:59:57 +0530408 if self.doctype == 'Sales Invoice' and hasattr(self, "items"):
Afshan01eca122020-12-08 09:27:56 +0530409 if for_validate and self.po_no:
410 return
Afshan3f971b22020-10-26 16:59:57 +0530411 self.set_pos_for_sales_invoice()
412 if self.doctype == 'Delivery Note' and hasattr(self, "items"):
Afshan01eca122020-12-08 09:27:56 +0530413 if for_validate and self.po_no:
414 return
Afshan3f971b22020-10-26 16:59:57 +0530415 self.set_pos_for_delivery_note()
416
417 def set_pos_for_sales_invoice(self):
Afshan0a6e1b32020-10-26 21:23:31 +0530418 po_nos = []
Afshan01eca122020-12-08 09:27:56 +0530419 if self.po_no:
420 po_nos.append(self.po_no)
Afshan0a6e1b32020-10-26 21:23:31 +0530421 self.get_po_nos('Sales Order', 'sales_order', po_nos)
422 self.get_po_nos('Delivery Note', 'delivery_note', po_nos)
Afshan1e564bc2020-11-10 13:23:59 +0530423 self.po_no = ', '.join(list(set(x.strip() for x in ','.join(po_nos).split(','))))
Afshan3f971b22020-10-26 16:59:57 +0530424
425 def set_pos_for_delivery_note(self):
Afshan0a6e1b32020-10-26 21:23:31 +0530426 po_nos = []
Afshan01eca122020-12-08 09:27:56 +0530427 if self.po_no:
428 po_nos.append(self.po_no)
Afshan0a6e1b32020-10-26 21:23:31 +0530429 self.get_po_nos('Sales Order', 'against_sales_order', po_nos)
430 self.get_po_nos('Sales Invoice', 'against_sales_invoice', po_nos)
Afshan1e564bc2020-11-10 13:23:59 +0530431 self.po_no = ', '.join(list(set(x.strip() for x in ','.join(po_nos).split(','))))
Afshan0a6e1b32020-10-26 21:23:31 +0530432
433 def get_po_nos(self, ref_doctype, ref_fieldname, po_nos):
434 doc_list = list(set([d.get(ref_fieldname) for d in self.items if d.get(ref_fieldname)]))
435 if doc_list:
Afshan19240192020-11-10 13:19:21 +0530436 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 +0530437
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500438 def set_gross_profit(self):
Abhishek Balam18e7b602020-05-26 18:37:02 +0530439 if self.doctype in ["Sales Order", "Quotation"]:
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500440 for item in self.items:
441 item.gross_profit = flt(((item.base_rate - item.valuation_rate) * item.stock_qty), self.precision("amount", item))
442
443
Rohit Waghchauref4dc7162018-11-15 17:04:02 +0530444 def set_customer_address(self):
445 address_dict = {
446 'customer_address': 'address_display',
447 'shipping_address_name': 'shipping_address',
448 'company_address': 'company_address_display'
449 }
450
451 for address_field, address_display_field in address_dict.items():
452 if self.get(address_field):
453 self.set(address_display_field, get_address_display(self.get(address_field)))
454
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530455 def validate_for_duplicate_items(self):
456 check_list, chk_dupl_itm = [], []
457 if cint(frappe.db.get_single_value("Selling Settings", "allow_multiple_items")):
458 return
459
460 for d in self.get('items'):
Jannat Patelc1187bc2020-11-19 13:10:24 +0530461 if self.doctype in ["POS Invoice","Sales Invoice"]:
462 stock_items = [d.item_code, d.description, d.warehouse, d.sales_order or d.delivery_note, d.batch_no or '']
463 non_stock_items = [d.item_code, d.description, d.sales_order or d.delivery_note]
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530464 elif self.doctype == "Delivery Note":
Jannat Patelc1187bc2020-11-19 13:10:24 +0530465 stock_items = [d.item_code, d.description, d.warehouse, d.against_sales_order or d.against_sales_invoice, d.batch_no or '']
466 non_stock_items = [d.item_code, d.description, d.against_sales_order or d.against_sales_invoice]
Rohit Waghchaure13c7e182019-08-29 19:45:19 +0530467 elif self.doctype in ["Sales Order", "Quotation"]:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530468 stock_items = [d.item_code, d.description, d.warehouse, '']
469 non_stock_items = [d.item_code, d.description]
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530470
471 if frappe.db.get_value("Item", d.item_code, "is_stock_item") == 1:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530472 if stock_items in check_list:
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530473 frappe.throw(_("Note: Item {0} entered multiple times").format(d.item_code))
474 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530475 check_list.append(stock_items)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530476 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530477 if non_stock_items in chk_dupl_itm:
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530478 frappe.throw(_("Note: Item {0} entered multiple times").format(d.item_code))
479 else:
Jannat Patelc1187bc2020-11-19 13:10:24 +0530480 chk_dupl_itm.append(non_stock_items)
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530481
rohitwaghchaure6fa6caf2020-04-23 09:46:29 +0530482 def validate_target_warehouse(self):
483 items = self.get("items") + (self.get("packed_items") or [])
484
485 for d in items:
486 if d.get("target_warehouse") and d.get("warehouse") == d.get("target_warehouse"):
487 warehouse = frappe.bold(d.get("target_warehouse"))
488 frappe.throw(_("Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same")
489 .format(d.idx, warehouse, warehouse))
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530490
Zarrarfc03a042018-06-04 12:52:52 +0530491 def validate_items(self):
492 # validate items to see if they have is_sales_item enabled
493 from erpnext.controllers.buying_controller import validate_item_type
494 validate_item_type(self, "is_sales_item", "sales")
495
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530496def set_default_income_account_for_item(obj):
Nabin Haitdd38a262014-12-26 13:15:21 +0530497 for d in obj.get("items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530498 if d.item_code:
Manas Solanki5b935622018-05-16 17:44:51 +0530499 if getattr(d, "income_account", None):
Nabin Haita77b8c92020-12-21 14:45:50 +0530500 set_item_default(d.item_code, obj.company, 'income_account', d.income_account)