blob: 58861715c273a64e3dba617991b97e66d2ca7ffa [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
Saqib3daad222020-10-12 18:31:23 +05306from frappe.utils import cint, flt, cstr, comma_or, get_link_to_form
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 Haitbf495c92013-01-30 12:49:08 +053016
Nabin Haitc3afb252013-03-19 12:01:24 +053017class SellingController(StockController):
Rushabh Mehtaf84c2402014-07-18 16:39:31 +053018 def __setup__(self):
Nabin Haitde9c8a92015-02-23 01:06:00 +053019 if hasattr(self, "taxes"):
Nabin Hait45dce892017-09-14 15:17:38 +053020 self.flags.print_taxes_with_zero_amount = cint(frappe.db.get_single_value("Print Settings",
Ameya Shenoy2806d832018-11-28 08:12:48 +000021 "print_taxes_with_zero_amount"))
rohitwaghchaurebf4c1142018-01-08 15:20:15 +053022 self.flags.show_inclusive_tax_in_print = self.is_inclusive_tax()
23
Rushabh Mehtac567e8e2015-02-03 17:55:52 +053024 self.print_templates = {
rohitwaghchaurebf4c1142018-01-08 15:20:15 +053025 "total": "templates/print_formats/includes/total.html",
Rushabh Mehtac567e8e2015-02-03 17:55:52 +053026 "taxes": "templates/print_formats/includes/taxes.html"
Rushabh Mehta5b51cc82014-07-21 18:25:45 +053027 }
Rushabh Mehtaf84c2402014-07-18 16:39:31 +053028
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053029 def get_feed(self):
30 return _("To {0} | {1} {2}").format(self.customer_name, self.currency,
Nabin Hait5690be12015-02-12 16:09:11 +053031 self.grand_total)
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053032
Rushabh Mehtab5e76892014-07-29 16:07:43 +053033 def onload(self):
Rohit Waghchaure7d529892016-10-06 14:35:04 +053034 super(SellingController, self).onload()
Rushabh Mehtab5e76892014-07-29 16:07:43 +053035 if self.doctype in ("Sales Order", "Delivery Note", "Sales Invoice"):
Nabin Haitdd38a262014-12-26 13:15:21 +053036 for item in self.get("items"):
Nabin Hait877e1bb2017-11-17 12:27:43 +053037 item.update(get_bin_details(item.item_code, item.warehouse))
Rushabh Mehtab5e76892014-07-29 16:07:43 +053038
Nabin Haitd1fd1e22013-10-18 12:29:11 +053039 def validate(self):
40 super(SellingController, self).validate()
Zarrarfc03a042018-06-04 12:52:52 +053041 self.validate_items()
Nabin Haitd1fd1e22013-10-18 12:29:11 +053042 self.validate_max_discount()
shreyas1cfe2d72016-10-19 18:36:12 +053043 self.validate_selling_price()
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +053044 self.set_qty_as_per_stock_uom()
Nabin Hait96f4b222018-03-13 15:46:59 +053045 self.set_po_nos()
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +050046 self.set_gross_profit()
Rushabh Mehta708e47a2018-08-08 16:37:31 +053047 set_default_income_account_for_item(self)
Rohit Waghchauref4dc7162018-11-15 17:04:02 +053048 self.set_customer_address()
Deepesh Gargf3d78dd2019-08-23 11:42:35 +053049 self.validate_for_duplicate_items()
rohitwaghchaure6fa6caf2020-04-23 09:46:29 +053050 self.validate_target_warehouse()
Anand Doshid2946502014-04-08 20:10:03 +053051
Anand Doshif3096132013-05-21 19:35:06 +053052 def set_missing_values(self, for_validate=False):
Shreya Shah5615cb42018-10-07 11:42:07 +053053
Anand Doshiabc10032013-06-14 17:44:03 +053054 super(SellingController, self).set_missing_values(for_validate)
Anand Doshid2946502014-04-08 20:10:03 +053055
Anand Doshif3096132013-05-21 19:35:06 +053056 # set contact and address details for customer, if they are not mentioned
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053057 self.set_missing_lead_customer_details(for_validate=for_validate)
mbauskar9e9d2422017-04-10 19:16:07 +053058 self.set_price_list_and_item_details(for_validate=for_validate)
Anand Doshid2946502014-04-08 20:10:03 +053059
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053060 def set_missing_lead_customer_details(self, for_validate=False):
Nabin Hait34c551d2019-07-03 10:34:31 +053061 customer, lead = None, None
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053062 if getattr(self, "customer", None):
Nabin Hait34c551d2019-07-03 10:34:31 +053063 customer = self.customer
64 elif self.doctype == "Opportunity" and self.party_name:
65 if self.opportunity_from == "Customer":
66 customer = self.party_name
67 else:
68 lead = self.party_name
69 elif self.doctype == "Quotation" and self.party_name:
70 if self.quotation_to == "Customer":
71 customer = self.party_name
72 else:
73 lead = self.party_name
74
75 if customer:
Anand Doshi43624432014-02-25 15:42:16 +053076 from erpnext.accounts.party import _get_party_details
rohitwaghchaure3ffe8962018-07-13 17:40:48 +053077 fetch_payment_terms_template = False
78 if (self.get("__islocal") or
79 self.company != frappe.db.get_value(self.doctype, self.name, 'company')):
80 fetch_payment_terms_template = True
81
Nabin Hait34c551d2019-07-03 10:34:31 +053082 party_details = _get_party_details(customer,
Nabin Hait7eba1a32017-10-02 15:59:27 +053083 ignore_permissions=self.flags.ignore_permissions,
rohitwaghchaure3ffe8962018-07-13 17:40:48 +053084 doctype=self.doctype, company=self.company,
Deepesh Gargc152b922020-09-20 20:04:10 +053085 posting_date=self.get('posting_date'),
Shreya Shah5615cb42018-10-07 11:42:07 +053086 fetch_payment_terms_template=fetch_payment_terms_template,
Shreya Shah22913232018-10-11 10:13:27 +053087 party_address=self.customer_address, shipping_address=self.shipping_address_name)
Nabin Hait6b039142014-05-02 15:45:10 +053088 if not self.meta.get_field("sales_team"):
89 party_details.pop("sales_team")
Nabin Hait6b039142014-05-02 15:45:10 +053090 self.update_if_missing(party_details)
Anand Doshid2946502014-04-08 20:10:03 +053091
Nabin Hait34c551d2019-07-03 10:34:31 +053092 elif lead:
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053093 from erpnext.crm.doctype.lead.lead import get_lead_details
Nabin Hait34c551d2019-07-03 10:34:31 +053094 self.update_if_missing(get_lead_details(lead,
Anand Doshi2f957f22016-04-08 17:36:10 +053095 posting_date=self.get('transaction_date') or self.get('posting_date'),
96 company=self.company))
Anand Doshid2946502014-04-08 20:10:03 +053097
Deepesh Garg6f3d93e2020-09-18 11:23:35 +053098 if self.get('taxes_and_charges') and not self.get('taxes') and not for_validate:
99 taxes = get_taxes_and_charges('Sales Taxes and Charges Template', self.taxes_and_charges)
100 for tax in taxes:
101 self.append('taxes', tax)
102
mbauskar9e9d2422017-04-10 19:16:07 +0530103 def set_price_list_and_item_details(self, for_validate=False):
Nabin Hait096d3632013-10-17 17:01:14 +0530104 self.set_price_list_currency("Selling")
mbauskar287fe812017-04-10 19:15:57 +0530105 self.set_missing_item_details(for_validate=for_validate)
Anand Doshid2946502014-04-08 20:10:03 +0530106
Anand Doshiac32bad2014-04-18 01:30:14 +0530107 def remove_shipping_charge(self):
108 if self.shipping_rule:
109 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Nabin Haite7d15362014-12-25 16:01:55 +0530110 existing_shipping_charge = self.get("taxes", {
Anand Doshiac32bad2014-04-18 01:30:14 +0530111 "doctype": "Sales Taxes and Charges",
112 "charge_type": "Actual",
113 "account_head": shipping_rule.account,
114 "cost_center": shipping_rule.cost_center
Anand Doshi0b4943c2013-07-04 23:45:22 +0530115 })
Anand Doshiac32bad2014-04-18 01:30:14 +0530116 if existing_shipping_charge:
Nabin Haite7d15362014-12-25 16:01:55 +0530117 self.get("taxes").remove(existing_shipping_charge[-1])
Anand Doshiac32bad2014-04-18 01:30:14 +0530118 self.calculate_taxes_and_totals()
Anand Doshid2946502014-04-08 20:10:03 +0530119
Nabin Haitec52db82013-01-22 11:53:14 +0530120 def set_total_in_words(self):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530121 from frappe.utils import money_in_words
Anand Doshid2946502014-04-08 20:10:03 +0530122
Nabin Hait5690be12015-02-12 16:09:11 +0530123 if self.meta.get_field("base_in_words"):
Nabin Hait877e1bb2017-11-17 12:27:43 +0530124 base_amount = abs(self.base_grand_total
125 if self.is_rounded_total_disabled() else self.base_rounded_total)
126 self.base_in_words = money_in_words(base_amount, self.company_currency)
127
Nabin Haitec52db82013-01-22 11:53:14 +0530128 if self.meta.get_field("in_words"):
Nabin Hait877e1bb2017-11-17 12:27:43 +0530129 amount = abs(self.grand_total if self.is_rounded_total_disabled() else self.rounded_total)
130 self.in_words = money_in_words(amount, self.currency)
Anand Doshid2946502014-04-08 20:10:03 +0530131
Anand Doshi923d41d2013-05-28 17:23:36 +0530132 def calculate_commission(self):
133 if self.meta.get_field("commission_rate"):
Nabin Hait5690be12015-02-12 16:09:11 +0530134 self.round_floats_in(self, ["base_net_total", "commission_rate"])
Anand Doshif78d1ae2014-03-28 13:55:00 +0530135 if self.commission_rate > 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530136 throw(_("Commission rate cannot be greater than 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530137
Nabin Hait5690be12015-02-12 16:09:11 +0530138 self.total_commission = flt(self.base_net_total * self.commission_rate / 100.0,
Anand Doshi923d41d2013-05-28 17:23:36 +0530139 self.precision("total_commission"))
Anand Doshif3096132013-05-21 19:35:06 +0530140
141 def calculate_contribution(self):
Anand Doshiac32bad2014-04-18 01:30:14 +0530142 if not self.meta.get_field("sales_team"):
143 return
144
Anand Doshif3096132013-05-21 19:35:06 +0530145 total = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530146 sales_team = self.get("sales_team")
Anand Doshif3096132013-05-21 19:35:06 +0530147 for sales_person in sales_team:
148 self.round_floats_in(sales_person)
149
150 sales_person.allocated_amount = flt(
Nabin Hait5690be12015-02-12 16:09:11 +0530151 self.base_net_total * sales_person.allocated_percentage / 100.0,
Anand Doshif3096132013-05-21 19:35:06 +0530152 self.precision("allocated_amount", sales_person))
Anand Doshid2946502014-04-08 20:10:03 +0530153
Anand Doshif3096132013-05-21 19:35:06 +0530154 total += sales_person.allocated_percentage
Anand Doshid2946502014-04-08 20:10:03 +0530155
Anand Doshif3096132013-05-21 19:35:06 +0530156 if sales_team and total != 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530157 throw(_("Total allocated percentage for sales team should be 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530158
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530159 def validate_max_discount(self):
Nabin Haitdd38a262014-12-26 13:15:21 +0530160 for d in self.get("items"):
Nabin Haitc35271a2018-08-10 19:01:04 +0530161 if d.item_code:
162 discount = flt(frappe.get_cached_value("Item", d.item_code, "max_discount"))
Anand Doshid2946502014-04-08 20:10:03 +0530163
Nabin Haitc35271a2018-08-10 19:01:04 +0530164 if discount and flt(d.discount_percentage) > discount:
165 frappe.throw(_("Maximum discount for Item {0} is {1}%").format(d.item_code, discount))
Anand Doshid2946502014-04-08 20:10:03 +0530166
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530167 def set_qty_as_per_stock_uom(self):
168 for d in self.get("items"):
169 if d.meta.get_field("stock_qty"):
170 if not d.conversion_factor:
171 frappe.throw(_("Row {0}: Conversion Factor is mandatory").format(d.idx))
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +0530172 d.stock_qty = flt(d.qty) * flt(d.conversion_factor)
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530173
shreyas1cfe2d72016-10-19 18:36:12 +0530174 def validate_selling_price(self):
Saqibfff00ce2020-05-05 16:14:17 +0530175 def throw_message(idx, item_name, rate, ref_rate_field):
Saqib3daad222020-10-12 18:31:23 +0530176 bold_net_rate = frappe.bold("net rate")
177 msg = (_("""Row #{}: Selling rate for item {} is lower than its {}. Selling {} should be atleast {}""")
178 .format(idx, frappe.bold(item_name), frappe.bold(ref_rate_field), bold_net_rate, frappe.bold(rate)))
179 msg += "<br><br>"
180 msg += (_("""You can alternatively disable selling price validation in {} to bypass this validation.""")
181 .format(get_link_to_form("Selling Settings", "Selling Settings")))
182 frappe.throw(msg, title=_("Invalid Selling Price"))
mbauskare9747a82016-11-16 17:19:47 +0530183
Nabin Hait9f26bc12016-10-20 16:45:53 +0530184 if not frappe.db.get_single_value("Selling Settings", "validate_selling_price"):
shreyas1cfe2d72016-10-19 18:36:12 +0530185 return
rohitwaghchaure45ac31a2018-02-12 11:27:37 +0530186 if hasattr(self, "is_return") and self.is_return:
187 return
188
shreyas1cfe2d72016-10-19 18:36:12 +0530189 for it in self.get("items"):
Saurabhd7e18692017-09-18 15:43:35 +0530190 if not it.item_code:
191 continue
Saqib3daad222020-10-12 18:31:23 +0530192
Himanshu Mishra859d9422018-08-08 18:33:50 +0530193 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 +0530194 last_purchase_rate_in_sales_uom = last_purchase_rate * (it.conversion_factor or 1)
195 if flt(it.base_net_rate) < flt(last_purchase_rate_in_sales_uom):
Saqibfff00ce2020-05-05 16:14:17 +0530196 throw_message(it.idx, frappe.bold(it.item_name), last_purchase_rate_in_sales_uom, "last purchase rate")
shreyase8aaa922016-10-20 14:03:59 +0530197
198 last_valuation_rate = frappe.db.sql("""
199 SELECT valuation_rate FROM `tabStock Ledger Entry` WHERE item_code = %s
200 AND warehouse = %s AND valuation_rate > 0
Aditya Hase0c164242019-01-07 22:07:13 +0530201 ORDER BY posting_date DESC, posting_time DESC, creation DESC LIMIT 1
shreyase8aaa922016-10-20 14:03:59 +0530202 """, (it.item_code, it.warehouse))
Nabin Hait42343bb2017-05-05 17:23:17 +0530203 if last_valuation_rate:
Saqib3daad222020-10-12 18:31:23 +0530204 last_valuation_rate_in_sales_uom = last_valuation_rate[0][0] * (it.conversion_factor or 1)
205 if is_stock_item and flt(it.base_net_rate) < flt(last_valuation_rate_in_sales_uom) \
Deepesh Garg15ff6a52020-02-18 12:28:41 +0530206 and not self.get('is_internal_customer'):
Saqibfff00ce2020-05-05 16:14:17 +0530207 throw_message(it.idx, frappe.bold(it.item_name), last_valuation_rate_in_sales_uom, "valuation rate")
shreyase8aaa922016-10-20 14:03:59 +0530208
shreyas1cfe2d72016-10-19 18:36:12 +0530209
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530210 def get_item_list(self):
211 il = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530212 for d in self.get("items"):
nathando247e9ff2014-09-03 15:03:31 +0800213 if d.qty is None:
Nabin Haitc41a9482014-08-18 15:40:15 +0530214 frappe.throw(_("Row {0}: Qty is mandatory").format(d.idx))
Anand Doshi01de9452016-01-26 16:22:50 +0530215
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530216 if self.has_product_bundle(d.item_code):
Nabin Haite7d15362014-12-25 16:01:55 +0530217 for p in self.get("packed_items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530218 if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
219 # the packing details table's qty is already multiplied with parent's qty
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530220 il.append(frappe._dict({
mbauskare471b022017-04-12 16:12:10 +0530221 'warehouse': p.warehouse or d.warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530222 'item_code': p.item_code,
223 'qty': flt(p.qty),
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530224 'uom': p.uom,
225 'batch_no': cstr(p.batch_no).strip(),
226 'serial_no': cstr(p.serial_no).strip(),
Nabin Haitc865f222015-09-21 09:18:43 +0530227 'name': d.name,
rohitwaghchaurece8adec2017-12-15 12:13:50 +0530228 'target_warehouse': p.target_warehouse,
229 'company': self.company,
230 'voucher_type': self.doctype,
rohitwaghchaure019d4de2020-08-20 15:53:58 +0530231 'allow_zero_valuation': d.allow_zero_valuation_rate,
232 'sales_invoice_item': d.get("sales_invoice_item"),
233 'delivery_note_item': d.get("dn_detail")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530234 }))
235 else:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530236 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530237 'warehouse': d.warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530238 'item_code': d.item_code,
Nabin Haite68f32c2017-03-03 15:00:41 +0530239 'qty': d.stock_qty,
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530240 'uom': d.uom,
Nabin Hait1d218422015-07-17 15:19:02 +0530241 'stock_uom': d.stock_uom,
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530242 'conversion_factor': d.conversion_factor,
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530243 'batch_no': cstr(d.get("batch_no")).strip(),
244 'serial_no': cstr(d.get("serial_no")).strip(),
Nabin Haitc865f222015-09-21 09:18:43 +0530245 'name': d.name,
rohitwaghchaurece8adec2017-12-15 12:13:50 +0530246 'target_warehouse': d.target_warehouse,
247 'company': self.company,
248 'voucher_type': self.doctype,
rohitwaghchaure019d4de2020-08-20 15:53:58 +0530249 'allow_zero_valuation': d.allow_zero_valuation_rate,
250 'sales_invoice_item': d.get("sales_invoice_item"),
251 'delivery_note_item': d.get("dn_detail")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530252 }))
253 return il
Anand Doshid2946502014-04-08 20:10:03 +0530254
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530255 def has_product_bundle(self, item_code):
256 return frappe.db.sql("""select name from `tabProduct Bundle`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530257 where new_item_code=%s and docstatus != 2""", item_code)
Anand Doshid2946502014-04-08 20:10:03 +0530258
Nabin Hait453cc372015-07-29 12:21:03 +0530259 def get_already_delivered_qty(self, current_docname, so, so_detail):
260 delivered_via_dn = frappe.db.sql("""select sum(qty) from `tabDelivery Note Item`
ankitjavalkarworke69a6112014-10-08 12:46:02 +0530261 where so_detail = %s and docstatus = 1
Anand Doshid2946502014-04-08 20:10:03 +0530262 and against_sales_order = %s
Nabin Hait453cc372015-07-29 12:21:03 +0530263 and parent != %s""", (so_detail, so, current_docname))
Anand Doshi01de9452016-01-26 16:22:50 +0530264
265 delivered_via_si = frappe.db.sql("""select sum(si_item.qty)
Nabin Hait18267912015-08-17 15:36:23 +0530266 from `tabSales Invoice Item` si_item, `tabSales Invoice` si
Anand Doshi602e8252015-11-16 19:05:46 +0530267 where si_item.parent = si.name and si.update_stock = 1
Anand Doshi01de9452016-01-26 16:22:50 +0530268 and si_item.so_detail = %s and si.docstatus = 1
Nabin Hait18267912015-08-17 15:36:23 +0530269 and si_item.sales_order = %s
270 and si.name != %s""", (so_detail, so, current_docname))
Anand Doshi01de9452016-01-26 16:22:50 +0530271
Nabin Hait453cc372015-07-29 12:21:03 +0530272 total_delivered_qty = (flt(delivered_via_dn[0][0]) if delivered_via_dn else 0) \
273 + (flt(delivered_via_si[0][0]) if delivered_via_si else 0)
Anand Doshi01de9452016-01-26 16:22:50 +0530274
Nabin Hait453cc372015-07-29 12:21:03 +0530275 return total_delivered_qty
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530276
277 def get_so_qty_and_warehouse(self, so_detail):
Anand Doshie9baaa62014-02-26 12:35:33 +0530278 so_item = frappe.db.sql("""select qty, warehouse from `tabSales Order Item`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530279 where name = %s and docstatus = 1""", so_detail, as_dict=1)
280 so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
Nabin Haita7f757a2014-02-10 17:54:04 +0530281 so_warehouse = so_item and so_item[0]["warehouse"] or ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530282 return so_qty, so_warehouse
Anand Doshid2946502014-04-08 20:10:03 +0530283
Mangesh-Khairnare17b7092019-03-01 15:52:23 +0530284 def check_sales_order_on_hold_or_close(self, ref_fieldname):
Nabin Haitdd38a262014-12-26 13:15:21 +0530285 for d in self.get("items"):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530286 if d.get(ref_fieldname):
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530287 status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
Mangesh-Khairnar86e650c2019-03-02 20:30:21 +0530288 if status in ("Closed", "On Hold"):
Saurabh8a8ef852015-10-21 19:28:53 +0530289 frappe.throw(_("Sales Order {0} is {1}").format(d.get(ref_fieldname), status))
shreyas1cfe2d72016-10-19 18:36:12 +0530290
Nabin Hait14aa9c52016-04-18 15:54:01 +0530291 def update_reserved_qty(self):
292 so_map = {}
293 for d in self.get("items"):
294 if d.so_detail:
295 if self.doctype == "Delivery Note" and d.against_sales_order:
296 so_map.setdefault(d.against_sales_order, []).append(d.so_detail)
297 elif self.doctype == "Sales Invoice" and d.sales_order and self.update_stock:
298 so_map.setdefault(d.sales_order, []).append(d.so_detail)
299
300 for so, so_item_rows in so_map.items():
301 if so and so_item_rows:
302 sales_order = frappe.get_doc("Sales Order", so)
303
304 if sales_order.status in ["Closed", "Cancelled"]:
305 frappe.throw(_("{0} {1} is cancelled or closed").format(_("Sales Order"), so),
306 frappe.InvalidStatusError)
307
308 sales_order.update_reserved_qty(so_item_rows)
309
310 def update_stock_ledger(self):
311 self.update_reserved_qty()
312
313 sl_entries = []
314 for d in self.get_item_list():
Himanshu Mishra859d9422018-08-08 18:33:50 +0530315 if frappe.get_cached_value("Item", d.item_code, "is_stock_item") == 1 and flt(d.qty):
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530316 if flt(d.conversion_factor)==0.0:
317 d.conversion_factor = get_conversion_factor(d.item_code, d.uom).get("conversion_factor") or 1.0
Nabin Hait14aa9c52016-04-18 15:54:01 +0530318 return_rate = 0
319 if cint(self.is_return) and self.return_against and self.docstatus==1:
rohitwaghchaure019d4de2020-08-20 15:53:58 +0530320 against_document_no = (d.get("sales_invoice_item")
321 if self.doctype == "Sales Invoice" else d.get("delivery_note_item"))
322
323 return_rate = self.get_incoming_rate_for_return(d.item_code,
324 self.return_against, against_document_no)
Nabin Hait14aa9c52016-04-18 15:54:01 +0530325
326 # On cancellation or if return entry submission, make stock ledger entry for
327 # target warehouse first, to update serial no values properly
328
329 if d.warehouse and ((not cint(self.is_return) and self.docstatus==1)
330 or (cint(self.is_return) and self.docstatus==2)):
331 sl_entries.append(self.get_sl_entries(d, {
Nabin Haite68f32c2017-03-03 15:00:41 +0530332 "actual_qty": -1*flt(d.qty),
Nabin Hait14aa9c52016-04-18 15:54:01 +0530333 "incoming_rate": return_rate
334 }))
335
336 if d.target_warehouse:
337 target_warehouse_sle = self.get_sl_entries(d, {
Nabin Haite68f32c2017-03-03 15:00:41 +0530338 "actual_qty": flt(d.qty),
Nabin Hait14aa9c52016-04-18 15:54:01 +0530339 "warehouse": d.target_warehouse
340 })
341
342 if self.docstatus == 1:
343 if not cint(self.is_return):
344 args = frappe._dict({
345 "item_code": d.item_code,
346 "warehouse": d.warehouse,
347 "posting_date": self.posting_date,
348 "posting_time": self.posting_time,
349 "qty": -1*flt(d.qty),
rohitwaghchaurece8adec2017-12-15 12:13:50 +0530350 "serial_no": d.serial_no,
351 "company": d.company,
352 "voucher_type": d.voucher_type,
353 "voucher_no": d.name,
354 "allow_zero_valuation": d.allow_zero_valuation
Nabin Hait14aa9c52016-04-18 15:54:01 +0530355 })
356 target_warehouse_sle.update({
357 "incoming_rate": get_incoming_rate(args)
358 })
359 else:
360 target_warehouse_sle.update({
361 "outgoing_rate": return_rate
362 })
363 sl_entries.append(target_warehouse_sle)
364
365 if d.warehouse and ((not cint(self.is_return) and self.docstatus==2)
366 or (cint(self.is_return) and self.docstatus==1)):
367 sl_entries.append(self.get_sl_entries(d, {
Nabin Haite68f32c2017-03-03 15:00:41 +0530368 "actual_qty": -1*flt(d.qty),
Nabin Hait14aa9c52016-04-18 15:54:01 +0530369 "incoming_rate": return_rate
370 }))
Nabin Hait14aa9c52016-04-18 15:54:01 +0530371 self.make_sl_entries(sl_entries)
Anand Doshid2946502014-04-08 20:10:03 +0530372
Nabin Hait96f4b222018-03-13 15:46:59 +0530373 def set_po_nos(self):
Shreyaf7b39432018-03-19 11:32:39 +0530374 if self.doctype in ("Delivery Note", "Sales Invoice") and hasattr(self, "items"):
Nabin Hait96f4b222018-03-13 15:46:59 +0530375 ref_fieldname = "against_sales_order" if self.doctype == "Delivery Note" else "sales_order"
Nabin Hait1e4cfb42018-03-15 12:27:24 +0530376 sales_orders = list(set([d.get(ref_fieldname) for d in self.items if d.get(ref_fieldname)]))
Nabin Hait96f4b222018-03-13 15:46:59 +0530377 if sales_orders:
378 po_nos = frappe.get_all('Sales Order', 'po_no', filters = {'name': ('in', sales_orders)})
patilsangram667f0fb2018-11-08 12:51:41 +0530379 if po_nos and po_nos[0].get('po_no'):
380 self.po_no = ', '.join(list(set([d.po_no for d in po_nos if d.po_no])))
Nabin Hait96f4b222018-03-13 15:46:59 +0530381
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500382 def set_gross_profit(self):
Abhishek Balam18e7b602020-05-26 18:37:02 +0530383 if self.doctype in ["Sales Order", "Quotation"]:
Saif Ur Rehman5fdbc682018-11-26 19:32:16 +0500384 for item in self.items:
385 item.gross_profit = flt(((item.base_rate - item.valuation_rate) * item.stock_qty), self.precision("amount", item))
386
387
Rohit Waghchauref4dc7162018-11-15 17:04:02 +0530388 def set_customer_address(self):
389 address_dict = {
390 'customer_address': 'address_display',
391 'shipping_address_name': 'shipping_address',
392 'company_address': 'company_address_display'
393 }
394
395 for address_field, address_display_field in address_dict.items():
396 if self.get(address_field):
397 self.set(address_display_field, get_address_display(self.get(address_field)))
398
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530399 def validate_for_duplicate_items(self):
400 check_list, chk_dupl_itm = [], []
401 if cint(frappe.db.get_single_value("Selling Settings", "allow_multiple_items")):
402 return
403
404 for d in self.get('items'):
405 if self.doctype == "Sales Invoice":
406 e = [d.item_code, d.description, d.warehouse, d.sales_order or d.delivery_note, d.batch_no or '']
407 f = [d.item_code, d.description, d.sales_order or d.delivery_note]
408 elif self.doctype == "Delivery Note":
409 e = [d.item_code, d.description, d.warehouse, d.against_sales_order or d.against_sales_invoice, d.batch_no or '']
410 f = [d.item_code, d.description, d.against_sales_order or d.against_sales_invoice]
Rohit Waghchaure13c7e182019-08-29 19:45:19 +0530411 elif self.doctype in ["Sales Order", "Quotation"]:
412 e = [d.item_code, d.description, d.warehouse, '']
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530413 f = [d.item_code, d.description]
414
415 if frappe.db.get_value("Item", d.item_code, "is_stock_item") == 1:
416 if e in check_list:
417 frappe.throw(_("Note: Item {0} entered multiple times").format(d.item_code))
418 else:
419 check_list.append(e)
420 else:
421 if f in chk_dupl_itm:
422 frappe.throw(_("Note: Item {0} entered multiple times").format(d.item_code))
423 else:
424 chk_dupl_itm.append(f)
425
rohitwaghchaure6fa6caf2020-04-23 09:46:29 +0530426 def validate_target_warehouse(self):
427 items = self.get("items") + (self.get("packed_items") or [])
428
429 for d in items:
430 if d.get("target_warehouse") and d.get("warehouse") == d.get("target_warehouse"):
431 warehouse = frappe.bold(d.get("target_warehouse"))
432 frappe.throw(_("Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same")
433 .format(d.idx, warehouse, warehouse))
Deepesh Gargf3d78dd2019-08-23 11:42:35 +0530434
Zarrarfc03a042018-06-04 12:52:52 +0530435 def validate_items(self):
436 # validate items to see if they have is_sales_item enabled
437 from erpnext.controllers.buying_controller import validate_item_type
438 validate_item_type(self, "is_sales_item", "sales")
439
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530440def set_default_income_account_for_item(obj):
Nabin Haitdd38a262014-12-26 13:15:21 +0530441 for d in obj.get("items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530442 if d.item_code:
Manas Solanki5b935622018-05-16 17:44:51 +0530443 if getattr(d, "income_account", None):
Rushabh Mehta708e47a2018-08-08 16:37:31 +0530444 set_item_default(d.item_code, obj.company, 'income_account', d.income_account)