blob: 41586c891605bdc5e059ccb51bee083ec872f9d4 [file] [log] [blame]
Rushabh Mehtaad45e312013-11-20 12:59:58 +05301# Copyright (c) 2013, Web Notes 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
Anand Doshi62b1cbf2014-07-25 12:50:00 +05306from frappe.utils import cint, flt, rounded, 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 Haitdd38a262014-12-26 13:15:21 +053015 if hasattr(self, "items"):
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 Doshif78d1ae2014-03-28 13:55:00 +053045 if self.get("__islocal"):
Nabin Haite7d15362014-12-25 16:01:55 +053046 self.set_taxes("taxes", "taxes_and_charges")
Anand Doshid2946502014-04-08 20:10:03 +053047
Anand Doshiabc10032013-06-14 17:44:03 +053048 def set_missing_lead_customer_details(self):
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053049 if getattr(self, "customer", None):
Anand Doshi43624432014-02-25 15:42:16 +053050 from erpnext.accounts.party import _get_party_details
Anand Doshi6dfd4302015-02-10 14:41:27 +053051 party_details = _get_party_details(self.customer, ignore_permissions=self.flags.ignore_permissions)
Nabin Hait6b039142014-05-02 15:45:10 +053052 if not self.meta.get_field("sales_team"):
53 party_details.pop("sales_team")
54
55 self.update_if_missing(party_details)
Anand Doshid2946502014-04-08 20:10:03 +053056
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053057 elif getattr(self, "lead", None):
Nabin Hait9d1f0772014-02-19 17:43:24 +053058 from erpnext.selling.doctype.lead.lead import get_lead_details
Anand Doshif78d1ae2014-03-28 13:55:00 +053059 self.update_if_missing(get_lead_details(self.lead))
Anand Doshid2946502014-04-08 20:10:03 +053060
Nabin Hait096d3632013-10-17 17:01:14 +053061 def set_price_list_and_item_details(self):
62 self.set_price_list_currency("Selling")
Nabin Hait0aa71a52014-02-11 16:14:52 +053063 self.set_missing_item_details()
Anand Doshid2946502014-04-08 20:10:03 +053064
Anand Doshi99100a42013-07-04 17:13:53 +053065 def apply_shipping_rule(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +053066 if self.shipping_rule:
Rushabh Mehtab385ecf2014-03-28 16:44:37 +053067 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Nabin Hait5690be12015-02-12 16:09:11 +053068 value = self.base_net_total
Anand Doshid2946502014-04-08 20:10:03 +053069
Anand Doshi99100a42013-07-04 17:13:53 +053070 # TODO
71 # shipping rule calculation based on item's net weight
Anand Doshid2946502014-04-08 20:10:03 +053072
Anand Doshi99100a42013-07-04 17:13:53 +053073 shipping_amount = 0.0
Nabin Haite7d15362014-12-25 16:01:55 +053074 for condition in shipping_rule.get("conditions"):
Anand Doshi99100a42013-07-04 17:13:53 +053075 if not condition.to_value or (flt(condition.from_value) <= value <= flt(condition.to_value)):
76 shipping_amount = condition.shipping_amount
77 break
Anand Doshid2946502014-04-08 20:10:03 +053078
Anand Doshiac32bad2014-04-18 01:30:14 +053079 shipping_charge = {
Anand Doshi0b4943c2013-07-04 23:45:22 +053080 "doctype": "Sales Taxes and Charges",
Anand Doshi0b4943c2013-07-04 23:45:22 +053081 "charge_type": "Actual",
Anand Doshif78d1ae2014-03-28 13:55:00 +053082 "account_head": shipping_rule.account,
Anand Doshiac32bad2014-04-18 01:30:14 +053083 "cost_center": shipping_rule.cost_center
84 }
85
Nabin Haite7d15362014-12-25 16:01:55 +053086 existing_shipping_charge = self.get("taxes", filters=shipping_charge)
Anand Doshiac32bad2014-04-18 01:30:14 +053087 if existing_shipping_charge:
88 # take the last record found
89 existing_shipping_charge[-1].rate = shipping_amount
90 else:
91 shipping_charge["rate"] = shipping_amount
92 shipping_charge["description"] = shipping_rule.label
Nabin Haite7d15362014-12-25 16:01:55 +053093 self.append("taxes", shipping_charge)
Anand Doshiac32bad2014-04-18 01:30:14 +053094
95 self.calculate_taxes_and_totals()
96
97 def remove_shipping_charge(self):
98 if self.shipping_rule:
99 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Nabin Haite7d15362014-12-25 16:01:55 +0530100 existing_shipping_charge = self.get("taxes", {
Anand Doshiac32bad2014-04-18 01:30:14 +0530101 "doctype": "Sales Taxes and Charges",
102 "charge_type": "Actual",
103 "account_head": shipping_rule.account,
104 "cost_center": shipping_rule.cost_center
Anand Doshi0b4943c2013-07-04 23:45:22 +0530105 })
Anand Doshiac32bad2014-04-18 01:30:14 +0530106 if existing_shipping_charge:
Nabin Haite7d15362014-12-25 16:01:55 +0530107 self.get("taxes").remove(existing_shipping_charge[-1])
Anand Doshiac32bad2014-04-18 01:30:14 +0530108 self.calculate_taxes_and_totals()
Anand Doshid2946502014-04-08 20:10:03 +0530109
Nabin Haitec52db82013-01-22 11:53:14 +0530110 def set_total_in_words(self):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530111 from frappe.utils import money_in_words
Anand Doshif78d1ae2014-03-28 13:55:00 +0530112 company_currency = get_company_currency(self.company)
Anand Doshid2946502014-04-08 20:10:03 +0530113
114 disable_rounded_total = cint(frappe.db.get_value("Global Defaults", None,
Nabin Hait6f1a5ec2013-02-20 16:25:05 +0530115 "disable_rounded_total"))
Anand Doshid2946502014-04-08 20:10:03 +0530116
Nabin Hait5690be12015-02-12 16:09:11 +0530117 if self.meta.get_field("base_in_words"):
118 self.base_in_words = money_in_words(disable_rounded_total and
119 self.base_grand_total or self.base_rounded_total, company_currency)
Nabin Haitec52db82013-01-22 11:53:14 +0530120 if self.meta.get_field("in_words"):
Anand Doshid2946502014-04-08 20:10:03 +0530121 self.in_words = money_in_words(disable_rounded_total and
Nabin Hait5690be12015-02-12 16:09:11 +0530122 self.grand_total or self.rounded_total, self.currency)
Anand Doshid2946502014-04-08 20:10:03 +0530123
Anand Doshi21f4ea32013-05-10 18:08:32 +0530124 def calculate_taxes_and_totals(self):
Anand Doshi3543f302013-05-24 19:25:01 +0530125 super(SellingController, self).calculate_taxes_and_totals()
Anand Doshid2946502014-04-08 20:10:03 +0530126
Nabin Haite7d15362014-12-25 16:01:55 +0530127 self.calculate_total_advance("Sales Invoice", "advances")
Anand Doshif3096132013-05-21 19:35:06 +0530128 self.calculate_commission()
129 self.calculate_contribution()
Anand Doshid2946502014-04-08 20:10:03 +0530130
Anand Doshif3096132013-05-21 19:35:06 +0530131 def determine_exclusive_rate(self):
Nabin Haitdd38a262014-12-26 13:15:21 +0530132 if not any((cint(tax.included_in_print_rate) for tax in self.get("taxes"))):
Anand Doshi21f4ea32013-05-10 18:08:32 +0530133 # no inclusive tax
134 return
Anand Doshid2946502014-04-08 20:10:03 +0530135
Nabin Haitdd38a262014-12-26 13:15:21 +0530136 for item in self.get("items"):
Anand Doshi21f4ea32013-05-10 18:08:32 +0530137 item_tax_map = self._load_item_tax_rate(item.item_tax_rate)
138 cumulated_tax_fraction = 0
Nabin Haitdd38a262014-12-26 13:15:21 +0530139 for i, tax in enumerate(self.get("taxes")):
Anand Doshif3096132013-05-21 19:35:06 +0530140 tax.tax_fraction_for_current_item = self.get_current_tax_fraction(tax, item_tax_map)
Anand Doshid2946502014-04-08 20:10:03 +0530141
Anand Doshi21f4ea32013-05-10 18:08:32 +0530142 if i==0:
Anand Doshif3096132013-05-21 19:35:06 +0530143 tax.grand_total_fraction_for_current_item = 1 + tax.tax_fraction_for_current_item
Anand Doshi21f4ea32013-05-10 18:08:32 +0530144 else:
145 tax.grand_total_fraction_for_current_item = \
Nabin Haitdd38a262014-12-26 13:15:21 +0530146 self.get("taxes")[i-1].grand_total_fraction_for_current_item \
Anand Doshi21f4ea32013-05-10 18:08:32 +0530147 + tax.tax_fraction_for_current_item
Anand Doshid2946502014-04-08 20:10:03 +0530148
Anand Doshi21f4ea32013-05-10 18:08:32 +0530149 cumulated_tax_fraction += tax.tax_fraction_for_current_item
Anand Doshid2946502014-04-08 20:10:03 +0530150
Nabin Haitc41a9482014-08-18 15:40:15 +0530151 if cumulated_tax_fraction and not self.discount_amount_applied and item.qty:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530152 item.base_amount = flt((item.amount * self.conversion_rate) /
Nabin Hait1eb56012014-02-10 19:20:15 +0530153 (1 + cumulated_tax_fraction), self.precision("base_amount", item))
Anand Doshid2946502014-04-08 20:10:03 +0530154
Nabin Hait1eb56012014-02-10 19:20:15 +0530155 item.base_rate = flt(item.base_amount / item.qty, self.precision("base_rate", item))
Anand Doshi8f49cf72014-07-25 13:01:00 +0530156 item.discount_percentage = flt(item.discount_percentage, self.precision("discount_percentage", item))
Anand Doshid2946502014-04-08 20:10:03 +0530157
Nabin Haita7f757a2014-02-10 17:54:04 +0530158 if item.discount_percentage == 100:
Nabin Hait7979f7e2014-02-10 18:26:49 +0530159 item.base_price_list_rate = item.base_rate
160 item.base_rate = 0.0
Anand Doshif3096132013-05-21 19:35:06 +0530161 else:
Nabin Hait7979f7e2014-02-10 18:26:49 +0530162 item.base_price_list_rate = flt(item.base_rate / (1 - (item.discount_percentage / 100.0)),
Nabin Haita7f757a2014-02-10 17:54:04 +0530163 self.precision("base_price_list_rate", item))
Anand Doshid2946502014-04-08 20:10:03 +0530164
Anand Doshi21f4ea32013-05-10 18:08:32 +0530165 def get_current_tax_fraction(self, tax, item_tax_map):
166 """
167 Get tax fraction for calculating tax exclusive amount
168 from tax inclusive amount
169 """
170 current_tax_fraction = 0
Anand Doshid2946502014-04-08 20:10:03 +0530171
Anand Doshi21f4ea32013-05-10 18:08:32 +0530172 if cint(tax.included_in_print_rate):
173 tax_rate = self._get_tax_rate(tax, item_tax_map)
Anand Doshid2946502014-04-08 20:10:03 +0530174
Anand Doshi21f4ea32013-05-10 18:08:32 +0530175 if tax.charge_type == "On Net Total":
176 current_tax_fraction = tax_rate / 100.0
Anand Doshid2946502014-04-08 20:10:03 +0530177
Anand Doshi21f4ea32013-05-10 18:08:32 +0530178 elif tax.charge_type == "On Previous Row Amount":
179 current_tax_fraction = (tax_rate / 100.0) * \
Nabin Haitdd38a262014-12-26 13:15:21 +0530180 self.get("taxes")[cint(tax.row_id) - 1].tax_fraction_for_current_item
Anand Doshid2946502014-04-08 20:10:03 +0530181
Anand Doshi21f4ea32013-05-10 18:08:32 +0530182 elif tax.charge_type == "On Previous Row Total":
183 current_tax_fraction = (tax_rate / 100.0) * \
Nabin Haitdd38a262014-12-26 13:15:21 +0530184 self.get("taxes")[cint(tax.row_id) - 1].grand_total_fraction_for_current_item
Anand Doshid2946502014-04-08 20:10:03 +0530185
Anand Doshi21f4ea32013-05-10 18:08:32 +0530186 return current_tax_fraction
Anand Doshid2946502014-04-08 20:10:03 +0530187
Anand Doshi21f4ea32013-05-10 18:08:32 +0530188 def calculate_item_values(self):
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530189 if not self.discount_amount_applied:
Nabin Haitdd38a262014-12-26 13:15:21 +0530190 for item in self.get("items"):
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530191 self.round_floats_in(item)
Rushabh Mehta4dca4012013-07-25 17:45:59 +0530192
Nabin Haita7f757a2014-02-10 17:54:04 +0530193 if item.discount_percentage == 100:
Nabin Hait7979f7e2014-02-10 18:26:49 +0530194 item.rate = 0
195 elif not item.rate:
196 item.rate = flt(item.price_list_rate * (1.0 - (item.discount_percentage / 100.0)),
197 self.precision("rate", item))
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530198
Nabin Hait1eb56012014-02-10 19:20:15 +0530199 item.amount = flt(item.rate * item.qty,
200 self.precision("amount", item))
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530201
Nabin Haita7f757a2014-02-10 17:54:04 +0530202 self._set_in_company_currency(item, "price_list_rate", "base_price_list_rate")
Nabin Hait7979f7e2014-02-10 18:26:49 +0530203 self._set_in_company_currency(item, "rate", "base_rate")
Nabin Hait1eb56012014-02-10 19:20:15 +0530204 self._set_in_company_currency(item, "amount", "base_amount")
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530205
Anand Doshi21f4ea32013-05-10 18:08:32 +0530206 def calculate_net_total(self):
Nabin Hait5690be12015-02-12 16:09:11 +0530207 self.base_net_total = self.net_total = 0.0
Anand Doshi21f4ea32013-05-10 18:08:32 +0530208
Nabin Haitdd38a262014-12-26 13:15:21 +0530209 for item in self.get("items"):
Nabin Hait5690be12015-02-12 16:09:11 +0530210 self.base_net_total += item.base_amount
211 self.net_total += item.amount
Anand Doshid2946502014-04-08 20:10:03 +0530212
Nabin Hait5690be12015-02-12 16:09:11 +0530213 self.round_floats_in(self, ["base_net_total", "net_total"])
Anand Doshid2946502014-04-08 20:10:03 +0530214
Anand Doshi21f4ea32013-05-10 18:08:32 +0530215 def calculate_totals(self):
Nabin Hait5690be12015-02-12 16:09:11 +0530216 self.base_grand_total = flt(self.get("taxes")[-1].total if self.get("taxes") else self.base_net_total)
Anand Doshid2946502014-04-08 20:10:03 +0530217
Nabin Hait5690be12015-02-12 16:09:11 +0530218 self.base_total_taxes_and_charges = flt(self.base_grand_total - self.base_net_total, self.precision("base_total_taxes_and_charges"))
Nabin Haitccd9fd32014-11-14 14:27:24 +0530219
Nabin Hait5690be12015-02-12 16:09:11 +0530220 self.grand_total = flt(self.base_grand_total / self.conversion_rate) \
221 if (self.base_total_taxes_and_charges or self.discount_amount) else self.net_total
Nabin Hait5e13e0c2015-02-05 17:18:03 +0530222
Nabin Hait5690be12015-02-12 16:09:11 +0530223 self.total_taxes_and_charges = flt(self.grand_total - self.net_total +
224 flt(self.discount_amount), self.precision("total_taxes_and_charges"))
Nabin Haitccd9fd32014-11-14 14:27:24 +0530225
Nabin Hait5690be12015-02-12 16:09:11 +0530226 self.base_grand_total = flt(self.base_grand_total, self.precision("base_grand_total"))
Nabin Haitccd9fd32014-11-14 14:27:24 +0530227 self.grand_total = flt(self.grand_total, self.precision("grand_total"))
Anand Doshid2946502014-04-08 20:10:03 +0530228
Nabin Hait5690be12015-02-12 16:09:11 +0530229 self.base_rounded_total = rounded(self.base_grand_total)
Anand Doshi62b1cbf2014-07-25 12:50:00 +0530230 self.rounded_total = rounded(self.grand_total)
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530231
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530232 def apply_discount_amount(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530233 if self.discount_amount:
Nabin Hait2244ac42015-01-12 17:35:14 +0530234 self.base_discount_amount = flt(self.discount_amount * self.conversion_rate, self.precision("base_discount_amount"))
235
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530236 grand_total_for_discount_amount = self.get_grand_total_for_discount_amount()
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530237
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530238 if grand_total_for_discount_amount:
239 # calculate item amount after Discount Amount
Nabin Haitdd38a262014-12-26 13:15:21 +0530240 for item in self.get("items"):
Nabin Hait2244ac42015-01-12 17:35:14 +0530241 distributed_amount = flt(self.base_discount_amount) * item.base_amount / grand_total_for_discount_amount
Nabin Hait1eb56012014-02-10 19:20:15 +0530242 item.base_amount = flt(item.base_amount - distributed_amount, self.precision("base_amount", item))
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530243
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530244 self.discount_amount_applied = True
245 self._calculate_taxes_and_totals()
Nabin Hait2244ac42015-01-12 17:35:14 +0530246 else:
247 self.base_discount_amount = 0
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530248
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530249 def get_grand_total_for_discount_amount(self):
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530250 actual_taxes_dict = {}
251
Nabin Haitdd38a262014-12-26 13:15:21 +0530252 for tax in self.get("taxes"):
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530253 if tax.charge_type == "Actual":
254 actual_taxes_dict.setdefault(tax.idx, tax.tax_amount)
255 elif tax.row_id in actual_taxes_dict:
256 actual_tax_amount = flt(actual_taxes_dict.get(tax.row_id, 0)) * \
257 flt(tax.rate) / 100
258 actual_taxes_dict.setdefault(tax.idx, actual_tax_amount)
259
Nabin Hait5690be12015-02-12 16:09:11 +0530260 grand_total_for_discount_amount = flt(self.base_grand_total - sum(actual_taxes_dict.values()),
261 self.precision("base_grand_total"))
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530262 return grand_total_for_discount_amount
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530263
Anand Doshi923d41d2013-05-28 17:23:36 +0530264 def calculate_outstanding_amount(self):
Anand Doshid2946502014-04-08 20:10:03 +0530265 # NOTE:
Anand Doshi923d41d2013-05-28 17:23:36 +0530266 # write_off_amount is only for POS Invoice
267 # total_advance is only for non POS Invoice
Anand Doshif78d1ae2014-03-28 13:55:00 +0530268 if self.doctype == "Sales Invoice" and self.docstatus == 0:
Nabin Hait5690be12015-02-12 16:09:11 +0530269 self.round_floats_in(self, ["base_grand_total", "total_advance", "write_off_amount",
Anand Doshi923d41d2013-05-28 17:23:36 +0530270 "paid_amount"])
Nabin Hait5690be12015-02-12 16:09:11 +0530271 total_amount_to_pay = self.base_grand_total - self.write_off_amount
Anand Doshif78d1ae2014-03-28 13:55:00 +0530272 self.outstanding_amount = flt(total_amount_to_pay - self.total_advance \
273 - self.paid_amount, self.precision("outstanding_amount"))
Anand Doshid2946502014-04-08 20:10:03 +0530274
Anand Doshi923d41d2013-05-28 17:23:36 +0530275 def calculate_commission(self):
276 if self.meta.get_field("commission_rate"):
Nabin Hait5690be12015-02-12 16:09:11 +0530277 self.round_floats_in(self, ["base_net_total", "commission_rate"])
Anand Doshif78d1ae2014-03-28 13:55:00 +0530278 if self.commission_rate > 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530279 throw(_("Commission rate cannot be greater than 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530280
Nabin Hait5690be12015-02-12 16:09:11 +0530281 self.total_commission = flt(self.base_net_total * self.commission_rate / 100.0,
Anand Doshi923d41d2013-05-28 17:23:36 +0530282 self.precision("total_commission"))
Anand Doshif3096132013-05-21 19:35:06 +0530283
284 def calculate_contribution(self):
Anand Doshiac32bad2014-04-18 01:30:14 +0530285 if not self.meta.get_field("sales_team"):
286 return
287
Anand Doshif3096132013-05-21 19:35:06 +0530288 total = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530289 sales_team = self.get("sales_team")
Anand Doshif3096132013-05-21 19:35:06 +0530290 for sales_person in sales_team:
291 self.round_floats_in(sales_person)
292
293 sales_person.allocated_amount = flt(
Nabin Hait5690be12015-02-12 16:09:11 +0530294 self.base_net_total * sales_person.allocated_percentage / 100.0,
Anand Doshif3096132013-05-21 19:35:06 +0530295 self.precision("allocated_amount", sales_person))
Anand Doshid2946502014-04-08 20:10:03 +0530296
Anand Doshif3096132013-05-21 19:35:06 +0530297 total += sales_person.allocated_percentage
Anand Doshid2946502014-04-08 20:10:03 +0530298
Anand Doshif3096132013-05-21 19:35:06 +0530299 if sales_team and total != 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530300 throw(_("Total allocated percentage for sales team should be 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530301
Anand Doshi1dde46a2013-05-15 21:15:57 +0530302 def validate_order_type(self):
Anand Doshiabc10032013-06-14 17:44:03 +0530303 valid_types = ["Sales", "Maintenance", "Shopping Cart"]
Anand Doshif78d1ae2014-03-28 13:55:00 +0530304 if not self.order_type:
305 self.order_type = "Sales"
306 elif self.order_type not in valid_types:
Anand Doshi80a988c2014-07-07 11:35:54 +0530307 throw(_("Order Type must be one of {0}").format(comma_or(valid_types)))
Anand Doshid2946502014-04-08 20:10:03 +0530308
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530309 def validate_max_discount(self):
Nabin Haitdd38a262014-12-26 13:15:21 +0530310 for d in self.get("items"):
Anand Doshie9baaa62014-02-26 12:35:33 +0530311 discount = flt(frappe.db.get_value("Item", d.item_code, "max_discount"))
Anand Doshid2946502014-04-08 20:10:03 +0530312
Nabin Haita7f757a2014-02-10 17:54:04 +0530313 if discount and flt(d.discount_percentage) > discount:
Rushabh Mehtac38fc712014-04-16 17:21:25 +0530314 frappe.throw(_("Maxiumm discount for Item {0} is {1}%").format(d.item_code, discount))
Anand Doshid2946502014-04-08 20:10:03 +0530315
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530316 def get_item_list(self):
317 il = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530318 for d in self.get("items"):
Nabin Hait0aa71a52014-02-11 16:14:52 +0530319 reserved_warehouse = ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530320 reserved_qty_for_main_item = 0
Anand Doshid2946502014-04-08 20:10:03 +0530321
nathando247e9ff2014-09-03 15:03:31 +0800322 if d.qty is None:
Nabin Haitc41a9482014-08-18 15:40:15 +0530323 frappe.throw(_("Row {0}: Qty is mandatory").format(d.idx))
324
Anand Doshif78d1ae2014-03-28 13:55:00 +0530325 if self.doctype == "Sales Order":
Anand Doshid2946502014-04-08 20:10:03 +0530326 if (frappe.db.get_value("Item", d.item_code, "is_stock_item") == 'Yes' or
Nabin Haita7f757a2014-02-10 17:54:04 +0530327 self.has_sales_bom(d.item_code)) and not d.warehouse:
Nabin Hait2cebf9b2014-05-02 16:12:07 +0530328 frappe.throw(_("Reserved Warehouse required for stock Item {0} in row {1}").format(d.item_code, d.idx))
Nabin Hait0aa71a52014-02-11 16:14:52 +0530329 reserved_warehouse = d.warehouse
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530330 if flt(d.qty) > flt(d.delivered_qty):
331 reserved_qty_for_main_item = flt(d.qty) - flt(d.delivered_qty)
Anand Doshid2946502014-04-08 20:10:03 +0530332
333 elif self.doctype == "Delivery Note" and d.against_sales_order:
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530334 # if SO qty is 10 and there is tolerance of 20%, then it will allow DN of 12.
335 # But in this case reserved qty should only be reduced by 10 and not 12
Anand Doshid2946502014-04-08 20:10:03 +0530336
337 already_delivered_qty = self.get_already_delivered_qty(self.name,
ankitjavalkarworke69a6112014-10-08 12:46:02 +0530338 d.against_sales_order, d.so_detail)
339 so_qty, reserved_warehouse = self.get_so_qty_and_warehouse(d.so_detail)
Anand Doshid2946502014-04-08 20:10:03 +0530340
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530341 if already_delivered_qty + d.qty > so_qty:
342 reserved_qty_for_main_item = -(so_qty - already_delivered_qty)
343 else:
344 reserved_qty_for_main_item = -flt(d.qty)
345
346 if self.has_sales_bom(d.item_code):
Nabin Haite7d15362014-12-25 16:01:55 +0530347 for p in self.get("packed_items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530348 if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
349 # the packing details table's qty is already multiplied with parent's qty
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530350 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530351 'warehouse': p.warehouse,
Nabin Hait0aa71a52014-02-11 16:14:52 +0530352 'reserved_warehouse': reserved_warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530353 'item_code': p.item_code,
354 'qty': flt(p.qty),
355 'reserved_qty': (flt(p.qty)/flt(d.qty)) * reserved_qty_for_main_item,
356 'uom': p.uom,
357 'batch_no': cstr(p.batch_no).strip(),
358 'serial_no': cstr(p.serial_no).strip(),
359 'name': d.name
360 }))
361 else:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530362 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530363 'warehouse': d.warehouse,
Nabin Hait0aa71a52014-02-11 16:14:52 +0530364 'reserved_warehouse': reserved_warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530365 'item_code': d.item_code,
366 'qty': d.qty,
367 'reserved_qty': reserved_qty_for_main_item,
368 'uom': d.stock_uom,
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530369 'batch_no': cstr(d.get("batch_no")).strip(),
370 'serial_no': cstr(d.get("serial_no")).strip(),
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530371 'name': d.name
372 }))
373 return il
Anand Doshid2946502014-04-08 20:10:03 +0530374
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530375 def has_sales_bom(self, item_code):
Anand Doshid2946502014-04-08 20:10:03 +0530376 return frappe.db.sql("""select name from `tabSales BOM`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530377 where new_item_code=%s and docstatus != 2""", item_code)
Anand Doshid2946502014-04-08 20:10:03 +0530378
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530379 def get_already_delivered_qty(self, dn, so, so_detail):
Anand Doshid2946502014-04-08 20:10:03 +0530380 qty = frappe.db.sql("""select sum(qty) from `tabDelivery Note Item`
ankitjavalkarworke69a6112014-10-08 12:46:02 +0530381 where so_detail = %s and docstatus = 1
Anand Doshid2946502014-04-08 20:10:03 +0530382 and against_sales_order = %s
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530383 and parent != %s""", (so_detail, so, dn))
384 return qty and flt(qty[0][0]) or 0.0
385
386 def get_so_qty_and_warehouse(self, so_detail):
Anand Doshie9baaa62014-02-26 12:35:33 +0530387 so_item = frappe.db.sql("""select qty, warehouse from `tabSales Order Item`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530388 where name = %s and docstatus = 1""", so_detail, as_dict=1)
389 so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
Nabin Haita7f757a2014-02-10 17:54:04 +0530390 so_warehouse = so_item and so_item[0]["warehouse"] or ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530391 return so_qty, so_warehouse
Anand Doshid2946502014-04-08 20:10:03 +0530392
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530393 def check_stop_sales_order(self, ref_fieldname):
Nabin Haitdd38a262014-12-26 13:15:21 +0530394 for d in self.get("items"):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530395 if d.get(ref_fieldname):
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530396 status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530397 if status == "Stopped":
Rushabh Mehta8a40c132014-04-15 16:30:55 +0530398 frappe.throw(_("Sales Order {0} is stopped").format(d.get(ref_fieldname)))
Anand Doshid2946502014-04-08 20:10:03 +0530399
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530400def check_active_sales_items(obj):
Nabin Haitdd38a262014-12-26 13:15:21 +0530401 for d in obj.get("items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530402 if d.item_code:
Anand Doshid2946502014-04-08 20:10:03 +0530403 item = frappe.db.sql("""select docstatus, is_sales_item,
404 is_service_item, income_account from tabItem where name = %s""",
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530405 d.item_code, as_dict=True)[0]
406 if item.is_sales_item == 'No' and item.is_service_item == 'No':
Rushabh Mehtac38fc712014-04-16 17:21:25 +0530407 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 +0530408 if getattr(d, "income_account", None) and not item.income_account:
Anand Doshid2946502014-04-08 20:10:03 +0530409 frappe.db.set_value("Item", d.item_code, "income_account",
Nabin Hait89ad6f22013-10-18 12:55:59 +0530410 d.income_account)