blob: 9e2bf1d76be2ae0fd1b2d592e0cf629d52b6fb8e [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
Nabin Hait3237c752015-02-17 11:11:11 +05306from frappe.utils import cint, flt, cstr, comma_or
Rushabh Mehta1f847992013-12-12 19:12:19 +05307from erpnext.setup.utils import get_company_currency
Rushabh Mehta9f0d6252014-04-14 19:20:45 +05308from frappe import _, throw
Rushabh Mehtab5e76892014-07-29 16:07:43 +05309from erpnext.stock.get_item_details import get_available_qty
Nabin Haitec52db82013-01-22 11:53:14 +053010
Rushabh Mehta1f847992013-12-12 19:12:19 +053011from erpnext.controllers.stock_controller import StockController
Nabin Haitbf495c92013-01-30 12:49:08 +053012
Nabin Haitc3afb252013-03-19 12:01:24 +053013class SellingController(StockController):
Rushabh Mehtaf84c2402014-07-18 16:39:31 +053014 def __setup__(self):
Nabin Haitde9c8a92015-02-23 01:06:00 +053015 if hasattr(self, "taxes"):
Rushabh Mehtac567e8e2015-02-03 17:55:52 +053016 self.print_templates = {
17 "taxes": "templates/print_formats/includes/taxes.html"
Rushabh Mehta5b51cc82014-07-21 18:25:45 +053018 }
Rushabh Mehtaf84c2402014-07-18 16:39:31 +053019
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053020 def get_feed(self):
21 return _("To {0} | {1} {2}").format(self.customer_name, self.currency,
Nabin Hait5690be12015-02-12 16:09:11 +053022 self.grand_total)
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053023
Rushabh Mehtab5e76892014-07-29 16:07:43 +053024 def onload(self):
25 if self.doctype in ("Sales Order", "Delivery Note", "Sales Invoice"):
Nabin Haitdd38a262014-12-26 13:15:21 +053026 for item in self.get("items"):
Rushabh Mehtab5e76892014-07-29 16:07:43 +053027 item.update(get_available_qty(item.item_code,
28 item.warehouse))
29
Nabin Haitd1fd1e22013-10-18 12:29:11 +053030 def validate(self):
31 super(SellingController, self).validate()
32 self.validate_max_discount()
33 check_active_sales_items(self)
Anand Doshid2946502014-04-08 20:10:03 +053034
Nabin Haite9daefe2014-08-27 16:46:33 +053035 def check_credit_limit(self):
36 from erpnext.selling.doctype.customer.customer import check_credit_limit
37 check_credit_limit(self.customer, self.company)
38
Anand Doshif3096132013-05-21 19:35:06 +053039 def set_missing_values(self, for_validate=False):
Anand Doshiabc10032013-06-14 17:44:03 +053040 super(SellingController, self).set_missing_values(for_validate)
Anand Doshid2946502014-04-08 20:10:03 +053041
Anand Doshif3096132013-05-21 19:35:06 +053042 # set contact and address details for customer, if they are not mentioned
Anand Doshiabc10032013-06-14 17:44:03 +053043 self.set_missing_lead_customer_details()
Nabin Hait096d3632013-10-17 17:01:14 +053044 self.set_price_list_and_item_details()
Anand Doshid2946502014-04-08 20:10:03 +053045
Anand Doshiabc10032013-06-14 17:44:03 +053046 def set_missing_lead_customer_details(self):
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053047 if getattr(self, "customer", None):
Anand Doshi43624432014-02-25 15:42:16 +053048 from erpnext.accounts.party import _get_party_details
Rushabh Mehta2cc585f2015-02-26 15:01:23 +053049 party_details = _get_party_details(self.customer,
50 ignore_permissions=self.flags.ignore_permissions)
Nabin Hait6b039142014-05-02 15:45:10 +053051 if not self.meta.get_field("sales_team"):
52 party_details.pop("sales_team")
53
54 self.update_if_missing(party_details)
Anand Doshid2946502014-04-08 20:10:03 +053055
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053056 elif getattr(self, "lead", None):
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053057 from erpnext.crm.doctype.lead.lead import get_lead_details
Anand Doshif78d1ae2014-03-28 13:55:00 +053058 self.update_if_missing(get_lead_details(self.lead))
Anand Doshid2946502014-04-08 20:10:03 +053059
Nabin Hait096d3632013-10-17 17:01:14 +053060 def set_price_list_and_item_details(self):
61 self.set_price_list_currency("Selling")
Nabin Hait0aa71a52014-02-11 16:14:52 +053062 self.set_missing_item_details()
Anand Doshid2946502014-04-08 20:10:03 +053063
Anand Doshi99100a42013-07-04 17:13:53 +053064 def apply_shipping_rule(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +053065 if self.shipping_rule:
Rushabh Mehtab385ecf2014-03-28 16:44:37 +053066 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Nabin Hait5690be12015-02-12 16:09:11 +053067 value = self.base_net_total
Anand Doshid2946502014-04-08 20:10:03 +053068
Anand Doshi99100a42013-07-04 17:13:53 +053069 # TODO
70 # shipping rule calculation based on item's net weight
Anand Doshid2946502014-04-08 20:10:03 +053071
Anand Doshi99100a42013-07-04 17:13:53 +053072 shipping_amount = 0.0
Nabin Haite7d15362014-12-25 16:01:55 +053073 for condition in shipping_rule.get("conditions"):
Anand Doshi99100a42013-07-04 17:13:53 +053074 if not condition.to_value or (flt(condition.from_value) <= value <= flt(condition.to_value)):
75 shipping_amount = condition.shipping_amount
76 break
Anand Doshid2946502014-04-08 20:10:03 +053077
Anand Doshiac32bad2014-04-18 01:30:14 +053078 shipping_charge = {
Anand Doshi0b4943c2013-07-04 23:45:22 +053079 "doctype": "Sales Taxes and Charges",
Anand Doshi0b4943c2013-07-04 23:45:22 +053080 "charge_type": "Actual",
Anand Doshif78d1ae2014-03-28 13:55:00 +053081 "account_head": shipping_rule.account,
Anand Doshiac32bad2014-04-18 01:30:14 +053082 "cost_center": shipping_rule.cost_center
83 }
84
Nabin Haite7d15362014-12-25 16:01:55 +053085 existing_shipping_charge = self.get("taxes", filters=shipping_charge)
Anand Doshiac32bad2014-04-18 01:30:14 +053086 if existing_shipping_charge:
87 # take the last record found
Anand Doshiff8a8542015-05-26 18:06:09 -040088 existing_shipping_charge[-1].tax_amount = shipping_amount
Anand Doshiac32bad2014-04-18 01:30:14 +053089 else:
Anand Doshiff8a8542015-05-26 18:06:09 -040090 shipping_charge["tax_amount"] = shipping_amount
Anand Doshiac32bad2014-04-18 01:30:14 +053091 shipping_charge["description"] = shipping_rule.label
Nabin Haite7d15362014-12-25 16:01:55 +053092 self.append("taxes", shipping_charge)
Anand Doshiac32bad2014-04-18 01:30:14 +053093
94 self.calculate_taxes_and_totals()
95
96 def remove_shipping_charge(self):
97 if self.shipping_rule:
98 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Nabin Haite7d15362014-12-25 16:01:55 +053099 existing_shipping_charge = self.get("taxes", {
Anand Doshiac32bad2014-04-18 01:30:14 +0530100 "doctype": "Sales Taxes and Charges",
101 "charge_type": "Actual",
102 "account_head": shipping_rule.account,
103 "cost_center": shipping_rule.cost_center
Anand Doshi0b4943c2013-07-04 23:45:22 +0530104 })
Anand Doshiac32bad2014-04-18 01:30:14 +0530105 if existing_shipping_charge:
Nabin Haite7d15362014-12-25 16:01:55 +0530106 self.get("taxes").remove(existing_shipping_charge[-1])
Anand Doshiac32bad2014-04-18 01:30:14 +0530107 self.calculate_taxes_and_totals()
Anand Doshid2946502014-04-08 20:10:03 +0530108
Nabin Haitec52db82013-01-22 11:53:14 +0530109 def set_total_in_words(self):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530110 from frappe.utils import money_in_words
Anand Doshif78d1ae2014-03-28 13:55:00 +0530111 company_currency = get_company_currency(self.company)
Anand Doshid2946502014-04-08 20:10:03 +0530112
Nabin Hait04d244a2015-07-22 17:47:49 +0530113 disable_rounded_total = cint(frappe.db.get_value("Global Defaults", None, "disable_rounded_total"))
Anand Doshid2946502014-04-08 20:10:03 +0530114
Nabin Hait5690be12015-02-12 16:09:11 +0530115 if self.meta.get_field("base_in_words"):
116 self.base_in_words = money_in_words(disable_rounded_total and
Nabin Hait04d244a2015-07-22 17:47:49 +0530117 abs(self.base_grand_total) or abs(self.base_rounded_total), company_currency)
Nabin Haitec52db82013-01-22 11:53:14 +0530118 if self.meta.get_field("in_words"):
Anand Doshid2946502014-04-08 20:10:03 +0530119 self.in_words = money_in_words(disable_rounded_total and
Nabin Hait04d244a2015-07-22 17:47:49 +0530120 abs(self.grand_total) or abs(self.rounded_total), self.currency)
Anand Doshid2946502014-04-08 20:10:03 +0530121
Anand Doshi923d41d2013-05-28 17:23:36 +0530122 def calculate_commission(self):
123 if self.meta.get_field("commission_rate"):
Nabin Hait5690be12015-02-12 16:09:11 +0530124 self.round_floats_in(self, ["base_net_total", "commission_rate"])
Anand Doshif78d1ae2014-03-28 13:55:00 +0530125 if self.commission_rate > 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530126 throw(_("Commission rate cannot be greater than 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530127
Nabin Hait5690be12015-02-12 16:09:11 +0530128 self.total_commission = flt(self.base_net_total * self.commission_rate / 100.0,
Anand Doshi923d41d2013-05-28 17:23:36 +0530129 self.precision("total_commission"))
Anand Doshif3096132013-05-21 19:35:06 +0530130
131 def calculate_contribution(self):
Anand Doshiac32bad2014-04-18 01:30:14 +0530132 if not self.meta.get_field("sales_team"):
133 return
134
Anand Doshif3096132013-05-21 19:35:06 +0530135 total = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530136 sales_team = self.get("sales_team")
Anand Doshif3096132013-05-21 19:35:06 +0530137 for sales_person in sales_team:
138 self.round_floats_in(sales_person)
139
140 sales_person.allocated_amount = flt(
Nabin Hait5690be12015-02-12 16:09:11 +0530141 self.base_net_total * sales_person.allocated_percentage / 100.0,
Anand Doshif3096132013-05-21 19:35:06 +0530142 self.precision("allocated_amount", sales_person))
Anand Doshid2946502014-04-08 20:10:03 +0530143
Anand Doshif3096132013-05-21 19:35:06 +0530144 total += sales_person.allocated_percentage
Anand Doshid2946502014-04-08 20:10:03 +0530145
Anand Doshif3096132013-05-21 19:35:06 +0530146 if sales_team and total != 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530147 throw(_("Total allocated percentage for sales team should be 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530148
Anand Doshi1dde46a2013-05-15 21:15:57 +0530149 def validate_order_type(self):
Anand Doshiabc10032013-06-14 17:44:03 +0530150 valid_types = ["Sales", "Maintenance", "Shopping Cart"]
Anand Doshif78d1ae2014-03-28 13:55:00 +0530151 if not self.order_type:
152 self.order_type = "Sales"
153 elif self.order_type not in valid_types:
Anand Doshi80a988c2014-07-07 11:35:54 +0530154 throw(_("Order Type must be one of {0}").format(comma_or(valid_types)))
Anand Doshid2946502014-04-08 20:10:03 +0530155
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530156 def validate_max_discount(self):
Nabin Haitdd38a262014-12-26 13:15:21 +0530157 for d in self.get("items"):
Anand Doshie9baaa62014-02-26 12:35:33 +0530158 discount = flt(frappe.db.get_value("Item", d.item_code, "max_discount"))
Anand Doshid2946502014-04-08 20:10:03 +0530159
Nabin Haita7f757a2014-02-10 17:54:04 +0530160 if discount and flt(d.discount_percentage) > discount:
Rushabh Mehtac38fc712014-04-16 17:21:25 +0530161 frappe.throw(_("Maxiumm discount for Item {0} is {1}%").format(d.item_code, discount))
Anand Doshid2946502014-04-08 20:10:03 +0530162
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530163 def get_item_list(self):
164 il = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530165 for d in self.get("items"):
Nabin Hait0aa71a52014-02-11 16:14:52 +0530166 reserved_warehouse = ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530167 reserved_qty_for_main_item = 0
Anand Doshid2946502014-04-08 20:10:03 +0530168
nathando247e9ff2014-09-03 15:03:31 +0800169 if d.qty is None:
Nabin Haitc41a9482014-08-18 15:40:15 +0530170 frappe.throw(_("Row {0}: Qty is mandatory").format(d.idx))
171
Anand Doshif78d1ae2014-03-28 13:55:00 +0530172 if self.doctype == "Sales Order":
Nabin Hait0aa71a52014-02-11 16:14:52 +0530173 reserved_warehouse = d.warehouse
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530174 if flt(d.qty) > flt(d.delivered_qty):
175 reserved_qty_for_main_item = flt(d.qty) - flt(d.delivered_qty)
Anand Doshid2946502014-04-08 20:10:03 +0530176
Nabin Hait453cc372015-07-29 12:21:03 +0530177 elif (((self.doctype == "Delivery Note" and d.against_sales_order)
178 or (self.doctype == "Sales Invoice" and d.sales_order and self.update_stock))
179 and not self.is_return):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530180 # if SO qty is 10 and there is tolerance of 20%, then it will allow DN of 12.
181 # But in this case reserved qty should only be reduced by 10 and not 12
Anand Doshid2946502014-04-08 20:10:03 +0530182
183 already_delivered_qty = self.get_already_delivered_qty(self.name,
Nabin Hait453cc372015-07-29 12:21:03 +0530184 d.against_sales_order if self.doctype=="Delivery Note" else d.sales_order, d.so_detail)
ankitjavalkarworke69a6112014-10-08 12:46:02 +0530185 so_qty, reserved_warehouse = self.get_so_qty_and_warehouse(d.so_detail)
Anand Doshid2946502014-04-08 20:10:03 +0530186
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530187 if already_delivered_qty + d.qty > so_qty:
188 reserved_qty_for_main_item = -(so_qty - already_delivered_qty)
189 else:
190 reserved_qty_for_main_item = -flt(d.qty)
Nabin Hait18267912015-08-17 15:36:23 +0530191
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530192 if self.has_product_bundle(d.item_code):
Nabin Haite7d15362014-12-25 16:01:55 +0530193 for p in self.get("packed_items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530194 if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
195 # the packing details table's qty is already multiplied with parent's qty
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530196 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530197 'warehouse': p.warehouse,
Nabin Hait0aa71a52014-02-11 16:14:52 +0530198 'reserved_warehouse': reserved_warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530199 'item_code': p.item_code,
200 'qty': flt(p.qty),
201 'reserved_qty': (flt(p.qty)/flt(d.qty)) * reserved_qty_for_main_item,
202 'uom': p.uom,
203 'batch_no': cstr(p.batch_no).strip(),
204 'serial_no': cstr(p.serial_no).strip(),
205 'name': d.name
206 }))
207 else:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530208 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530209 'warehouse': d.warehouse,
Nabin Hait0aa71a52014-02-11 16:14:52 +0530210 'reserved_warehouse': reserved_warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530211 'item_code': d.item_code,
212 'qty': d.qty,
213 'reserved_qty': reserved_qty_for_main_item,
214 'uom': d.stock_uom,
Nabin Hait1d218422015-07-17 15:19:02 +0530215 'stock_uom': d.stock_uom,
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530216 'batch_no': cstr(d.get("batch_no")).strip(),
217 'serial_no': cstr(d.get("serial_no")).strip(),
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530218 'name': d.name
219 }))
220 return il
Anand Doshid2946502014-04-08 20:10:03 +0530221
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530222 def has_product_bundle(self, item_code):
223 return frappe.db.sql("""select name from `tabProduct Bundle`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530224 where new_item_code=%s and docstatus != 2""", item_code)
Anand Doshid2946502014-04-08 20:10:03 +0530225
Nabin Hait453cc372015-07-29 12:21:03 +0530226 def get_already_delivered_qty(self, current_docname, so, so_detail):
227 delivered_via_dn = frappe.db.sql("""select sum(qty) from `tabDelivery Note Item`
ankitjavalkarworke69a6112014-10-08 12:46:02 +0530228 where so_detail = %s and docstatus = 1
Anand Doshid2946502014-04-08 20:10:03 +0530229 and against_sales_order = %s
Nabin Hait453cc372015-07-29 12:21:03 +0530230 and parent != %s""", (so_detail, so, current_docname))
231
Nabin Hait18267912015-08-17 15:36:23 +0530232 delivered_via_si = frappe.db.sql("""select sum(si_item.qty)
233 from `tabSales Invoice Item` si_item, `tabSales Invoice` si
234 where si_item.parent = si.name and ifnull(si.update_stock, 0) = 1
235 and si_item.so_detail = %s and si.docstatus = 1
236 and si_item.sales_order = %s
237 and si.name != %s""", (so_detail, so, current_docname))
Nabin Hait453cc372015-07-29 12:21:03 +0530238
239 total_delivered_qty = (flt(delivered_via_dn[0][0]) if delivered_via_dn else 0) \
240 + (flt(delivered_via_si[0][0]) if delivered_via_si else 0)
241
242 return total_delivered_qty
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530243
244 def get_so_qty_and_warehouse(self, so_detail):
Anand Doshie9baaa62014-02-26 12:35:33 +0530245 so_item = frappe.db.sql("""select qty, warehouse from `tabSales Order Item`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530246 where name = %s and docstatus = 1""", so_detail, as_dict=1)
247 so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
Nabin Haita7f757a2014-02-10 17:54:04 +0530248 so_warehouse = so_item and so_item[0]["warehouse"] or ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530249 return so_qty, so_warehouse
Anand Doshid2946502014-04-08 20:10:03 +0530250
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530251 def check_stop_sales_order(self, ref_fieldname):
Nabin Haitdd38a262014-12-26 13:15:21 +0530252 for d in self.get("items"):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530253 if d.get(ref_fieldname):
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530254 status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530255 if status == "Stopped":
Rushabh Mehta8a40c132014-04-15 16:30:55 +0530256 frappe.throw(_("Sales Order {0} is stopped").format(d.get(ref_fieldname)))
Anand Doshid2946502014-04-08 20:10:03 +0530257
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530258def check_active_sales_items(obj):
Nabin Haitdd38a262014-12-26 13:15:21 +0530259 for d in obj.get("items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530260 if d.item_code:
Anand Doshid2946502014-04-08 20:10:03 +0530261 item = frappe.db.sql("""select docstatus, is_sales_item,
262 is_service_item, income_account from tabItem where name = %s""",
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530263 d.item_code, as_dict=True)[0]
Rushabh Mehta1e8025b2015-07-24 15:16:25 +0530264 if item.is_sales_item == 0 and item.is_service_item == 0:
Rushabh Mehtac38fc712014-04-16 17:21:25 +0530265 frappe.throw(_("Item {0} must be Sales or Service Item in {1}").format(d.item_code, d.idx))
Nabin Hait365ae272014-04-03 17:38:54 +0530266 if getattr(d, "income_account", None) and not item.income_account:
Anand Doshid2946502014-04-08 20:10:03 +0530267 frappe.db.set_value("Item", d.item_code, "income_account",
Nabin Hait89ad6f22013-10-18 12:55:59 +0530268 d.income_account)