blob: df320dcda1b069747d074bfbc50963e133007fa3 [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
Rushabh Mehta9f0d6252014-04-14 19:20:45 +05306from frappe.utils import cint, flt, _round, cstr
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
Nabin Haitec52db82013-01-22 11:53:14 +05309
Rushabh Mehta1f847992013-12-12 19:12:19 +053010from erpnext.controllers.stock_controller import StockController
Nabin Haitbf495c92013-01-30 12:49:08 +053011
Nabin Haitc3afb252013-03-19 12:01:24 +053012class SellingController(StockController):
Nabin Haitd1fd1e22013-10-18 12:29:11 +053013 def validate(self):
14 super(SellingController, self).validate()
15 self.validate_max_discount()
16 check_active_sales_items(self)
Anand Doshid2946502014-04-08 20:10:03 +053017
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053018 def get_sender(self, comm):
Rushabh Mehta82d8a632014-04-16 09:20:00 +053019 if frappe.db.get_value('Sales Email Settings', None, 'extract_emails'):
20 return frappe.db.get_value('Sales Email Settings', None, 'email_id')
21 else:
22 return frappe.session.user
Anand Doshid2946502014-04-08 20:10:03 +053023
Anand Doshif3096132013-05-21 19:35:06 +053024 def set_missing_values(self, for_validate=False):
Anand Doshiabc10032013-06-14 17:44:03 +053025 super(SellingController, self).set_missing_values(for_validate)
Anand Doshid2946502014-04-08 20:10:03 +053026
Anand Doshif3096132013-05-21 19:35:06 +053027 # set contact and address details for customer, if they are not mentioned
Anand Doshiabc10032013-06-14 17:44:03 +053028 self.set_missing_lead_customer_details()
Nabin Hait096d3632013-10-17 17:01:14 +053029 self.set_price_list_and_item_details()
Anand Doshif78d1ae2014-03-28 13:55:00 +053030 if self.get("__islocal"):
Akhilesh Darjee2ced3b02014-01-28 19:16:05 +053031 self.set_taxes("other_charges", "taxes_and_charges")
Anand Doshid2946502014-04-08 20:10:03 +053032
Anand Doshiabc10032013-06-14 17:44:03 +053033 def set_missing_lead_customer_details(self):
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053034 if getattr(self, "customer", None):
Anand Doshi43624432014-02-25 15:42:16 +053035 from erpnext.accounts.party import _get_party_details
Nabin Hait6b039142014-05-02 15:45:10 +053036 party_details = _get_party_details(self.customer,
37 ignore_permissions=getattr(self, "ignore_permissions", None))
38 if not self.meta.get_field("sales_team"):
39 party_details.pop("sales_team")
40
41 self.update_if_missing(party_details)
Anand Doshid2946502014-04-08 20:10:03 +053042
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053043 elif getattr(self, "lead", None):
Nabin Hait9d1f0772014-02-19 17:43:24 +053044 from erpnext.selling.doctype.lead.lead import get_lead_details
Anand Doshif78d1ae2014-03-28 13:55:00 +053045 self.update_if_missing(get_lead_details(self.lead))
Anand Doshid2946502014-04-08 20:10:03 +053046
Nabin Hait096d3632013-10-17 17:01:14 +053047 def set_price_list_and_item_details(self):
48 self.set_price_list_currency("Selling")
Nabin Hait0aa71a52014-02-11 16:14:52 +053049 self.set_missing_item_details()
Anand Doshid2946502014-04-08 20:10:03 +053050
Anand Doshi99100a42013-07-04 17:13:53 +053051 def apply_shipping_rule(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +053052 if self.shipping_rule:
Rushabh Mehtab385ecf2014-03-28 16:44:37 +053053 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Anand Doshif78d1ae2014-03-28 13:55:00 +053054 value = self.net_total
Anand Doshid2946502014-04-08 20:10:03 +053055
Anand Doshi99100a42013-07-04 17:13:53 +053056 # TODO
57 # shipping rule calculation based on item's net weight
Anand Doshid2946502014-04-08 20:10:03 +053058
Anand Doshi99100a42013-07-04 17:13:53 +053059 shipping_amount = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +053060 for condition in shipping_rule.get("shipping_rule_conditions"):
Anand Doshi99100a42013-07-04 17:13:53 +053061 if not condition.to_value or (flt(condition.from_value) <= value <= flt(condition.to_value)):
62 shipping_amount = condition.shipping_amount
63 break
Anand Doshid2946502014-04-08 20:10:03 +053064
Anand Doshiac32bad2014-04-18 01:30:14 +053065 shipping_charge = {
Anand Doshi0b4943c2013-07-04 23:45:22 +053066 "doctype": "Sales Taxes and Charges",
Anand Doshi0b4943c2013-07-04 23:45:22 +053067 "charge_type": "Actual",
Anand Doshif78d1ae2014-03-28 13:55:00 +053068 "account_head": shipping_rule.account,
Anand Doshiac32bad2014-04-18 01:30:14 +053069 "cost_center": shipping_rule.cost_center
70 }
71
72 existing_shipping_charge = self.get("other_charges", filters=shipping_charge)
73 if existing_shipping_charge:
74 # take the last record found
75 existing_shipping_charge[-1].rate = shipping_amount
76 else:
77 shipping_charge["rate"] = shipping_amount
78 shipping_charge["description"] = shipping_rule.label
79 self.append("other_charges", shipping_charge)
80
81 self.calculate_taxes_and_totals()
82
83 def remove_shipping_charge(self):
84 if self.shipping_rule:
85 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
86 existing_shipping_charge = self.get("other_charges", {
87 "doctype": "Sales Taxes and Charges",
88 "charge_type": "Actual",
89 "account_head": shipping_rule.account,
90 "cost_center": shipping_rule.cost_center
Anand Doshi0b4943c2013-07-04 23:45:22 +053091 })
Anand Doshiac32bad2014-04-18 01:30:14 +053092 if existing_shipping_charge:
93 self.get("other_charges").remove(existing_shipping_charge[-1])
94 self.calculate_taxes_and_totals()
Anand Doshid2946502014-04-08 20:10:03 +053095
Nabin Haitec52db82013-01-22 11:53:14 +053096 def set_total_in_words(self):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053097 from frappe.utils import money_in_words
Anand Doshif78d1ae2014-03-28 13:55:00 +053098 company_currency = get_company_currency(self.company)
Anand Doshid2946502014-04-08 20:10:03 +053099
100 disable_rounded_total = cint(frappe.db.get_value("Global Defaults", None,
Nabin Hait6f1a5ec2013-02-20 16:25:05 +0530101 "disable_rounded_total"))
Anand Doshid2946502014-04-08 20:10:03 +0530102
Nabin Haitec52db82013-01-22 11:53:14 +0530103 if self.meta.get_field("in_words"):
Anand Doshid2946502014-04-08 20:10:03 +0530104 self.in_words = money_in_words(disable_rounded_total and
Anand Doshif78d1ae2014-03-28 13:55:00 +0530105 self.grand_total or self.rounded_total, company_currency)
Nabin Haitec52db82013-01-22 11:53:14 +0530106 if self.meta.get_field("in_words_export"):
Anand Doshid2946502014-04-08 20:10:03 +0530107 self.in_words_export = money_in_words(disable_rounded_total and
Anand Doshif78d1ae2014-03-28 13:55:00 +0530108 self.grand_total_export or self.rounded_total_export, self.currency)
Anand Doshid2946502014-04-08 20:10:03 +0530109
Anand Doshi21f4ea32013-05-10 18:08:32 +0530110 def calculate_taxes_and_totals(self):
Anand Doshi3543f302013-05-24 19:25:01 +0530111 self.other_fname = "other_charges"
Anand Doshid2946502014-04-08 20:10:03 +0530112
Anand Doshi3543f302013-05-24 19:25:01 +0530113 super(SellingController, self).calculate_taxes_and_totals()
Anand Doshid2946502014-04-08 20:10:03 +0530114
Anand Doshi923d41d2013-05-28 17:23:36 +0530115 self.calculate_total_advance("Sales Invoice", "advance_adjustment_details")
Anand Doshif3096132013-05-21 19:35:06 +0530116 self.calculate_commission()
117 self.calculate_contribution()
Anand Doshid2946502014-04-08 20:10:03 +0530118
Anand Doshif3096132013-05-21 19:35:06 +0530119 def determine_exclusive_rate(self):
Anand Doshi21f4ea32013-05-10 18:08:32 +0530120 if not any((cint(tax.included_in_print_rate) for tax in self.tax_doclist)):
121 # no inclusive tax
122 return
Anand Doshid2946502014-04-08 20:10:03 +0530123
Anand Doshi21f4ea32013-05-10 18:08:32 +0530124 for item in self.item_doclist:
125 item_tax_map = self._load_item_tax_rate(item.item_tax_rate)
126 cumulated_tax_fraction = 0
127 for i, tax in enumerate(self.tax_doclist):
Anand Doshif3096132013-05-21 19:35:06 +0530128 tax.tax_fraction_for_current_item = self.get_current_tax_fraction(tax, item_tax_map)
Anand Doshid2946502014-04-08 20:10:03 +0530129
Anand Doshi21f4ea32013-05-10 18:08:32 +0530130 if i==0:
Anand Doshif3096132013-05-21 19:35:06 +0530131 tax.grand_total_fraction_for_current_item = 1 + tax.tax_fraction_for_current_item
Anand Doshi21f4ea32013-05-10 18:08:32 +0530132 else:
133 tax.grand_total_fraction_for_current_item = \
134 self.tax_doclist[i-1].grand_total_fraction_for_current_item \
135 + tax.tax_fraction_for_current_item
Anand Doshid2946502014-04-08 20:10:03 +0530136
Anand Doshi21f4ea32013-05-10 18:08:32 +0530137 cumulated_tax_fraction += tax.tax_fraction_for_current_item
Anand Doshid2946502014-04-08 20:10:03 +0530138
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530139 if cumulated_tax_fraction and not self.discount_amount_applied:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530140 item.base_amount = flt((item.amount * self.conversion_rate) /
Nabin Hait1eb56012014-02-10 19:20:15 +0530141 (1 + cumulated_tax_fraction), self.precision("base_amount", item))
Anand Doshid2946502014-04-08 20:10:03 +0530142
Nabin Hait1eb56012014-02-10 19:20:15 +0530143 item.base_rate = flt(item.base_amount / item.qty, self.precision("base_rate", item))
Anand Doshid2946502014-04-08 20:10:03 +0530144
Nabin Haita7f757a2014-02-10 17:54:04 +0530145 if item.discount_percentage == 100:
Nabin Hait7979f7e2014-02-10 18:26:49 +0530146 item.base_price_list_rate = item.base_rate
147 item.base_rate = 0.0
Anand Doshif3096132013-05-21 19:35:06 +0530148 else:
Nabin Hait7979f7e2014-02-10 18:26:49 +0530149 item.base_price_list_rate = flt(item.base_rate / (1 - (item.discount_percentage / 100.0)),
Nabin Haita7f757a2014-02-10 17:54:04 +0530150 self.precision("base_price_list_rate", item))
Anand Doshid2946502014-04-08 20:10:03 +0530151
Anand Doshi21f4ea32013-05-10 18:08:32 +0530152 def get_current_tax_fraction(self, tax, item_tax_map):
153 """
154 Get tax fraction for calculating tax exclusive amount
155 from tax inclusive amount
156 """
157 current_tax_fraction = 0
Anand Doshid2946502014-04-08 20:10:03 +0530158
Anand Doshi21f4ea32013-05-10 18:08:32 +0530159 if cint(tax.included_in_print_rate):
160 tax_rate = self._get_tax_rate(tax, item_tax_map)
Anand Doshid2946502014-04-08 20:10:03 +0530161
Anand Doshi21f4ea32013-05-10 18:08:32 +0530162 if tax.charge_type == "On Net Total":
163 current_tax_fraction = tax_rate / 100.0
Anand Doshid2946502014-04-08 20:10:03 +0530164
Anand Doshi21f4ea32013-05-10 18:08:32 +0530165 elif tax.charge_type == "On Previous Row Amount":
166 current_tax_fraction = (tax_rate / 100.0) * \
167 self.tax_doclist[cint(tax.row_id) - 1].tax_fraction_for_current_item
Anand Doshid2946502014-04-08 20:10:03 +0530168
Anand Doshi21f4ea32013-05-10 18:08:32 +0530169 elif tax.charge_type == "On Previous Row Total":
170 current_tax_fraction = (tax_rate / 100.0) * \
171 self.tax_doclist[cint(tax.row_id) - 1].grand_total_fraction_for_current_item
Anand Doshid2946502014-04-08 20:10:03 +0530172
Anand Doshi21f4ea32013-05-10 18:08:32 +0530173 return current_tax_fraction
Anand Doshid2946502014-04-08 20:10:03 +0530174
Anand Doshi21f4ea32013-05-10 18:08:32 +0530175 def calculate_item_values(self):
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530176 if not self.discount_amount_applied:
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530177 for item in self.item_doclist:
178 self.round_floats_in(item)
Rushabh Mehta4dca4012013-07-25 17:45:59 +0530179
Nabin Haita7f757a2014-02-10 17:54:04 +0530180 if item.discount_percentage == 100:
Nabin Hait7979f7e2014-02-10 18:26:49 +0530181 item.rate = 0
182 elif not item.rate:
183 item.rate = flt(item.price_list_rate * (1.0 - (item.discount_percentage / 100.0)),
184 self.precision("rate", item))
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530185
Nabin Hait1eb56012014-02-10 19:20:15 +0530186 item.amount = flt(item.rate * item.qty,
187 self.precision("amount", item))
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530188
Nabin Haita7f757a2014-02-10 17:54:04 +0530189 self._set_in_company_currency(item, "price_list_rate", "base_price_list_rate")
Nabin Hait7979f7e2014-02-10 18:26:49 +0530190 self._set_in_company_currency(item, "rate", "base_rate")
Nabin Hait1eb56012014-02-10 19:20:15 +0530191 self._set_in_company_currency(item, "amount", "base_amount")
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530192
Anand Doshi21f4ea32013-05-10 18:08:32 +0530193 def calculate_net_total(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530194 self.net_total = self.net_total_export = 0.0
Anand Doshi21f4ea32013-05-10 18:08:32 +0530195
196 for item in self.item_doclist:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530197 self.net_total += item.base_amount
198 self.net_total_export += item.amount
Anand Doshid2946502014-04-08 20:10:03 +0530199
Anand Doshi81ba0b22014-03-28 15:23:26 +0530200 self.round_floats_in(self, ["net_total", "net_total_export"])
Anand Doshid2946502014-04-08 20:10:03 +0530201
Anand Doshi21f4ea32013-05-10 18:08:32 +0530202 def calculate_totals(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530203 self.grand_total = flt(self.tax_doclist and \
204 self.tax_doclist[-1].total or self.net_total, self.precision("grand_total"))
Anand Doshid2946502014-04-08 20:10:03 +0530205 self.grand_total_export = flt(self.grand_total / self.conversion_rate,
Anand Doshi5af812a2013-05-10 19:23:02 +0530206 self.precision("grand_total_export"))
Anand Doshid2946502014-04-08 20:10:03 +0530207
Anand Doshif78d1ae2014-03-28 13:55:00 +0530208 self.other_charges_total = flt(self.grand_total - self.net_total,
Anand Doshif3096132013-05-21 19:35:06 +0530209 self.precision("other_charges_total"))
Nabin Hait5c6d13a2014-01-20 17:18:16 +0530210
Anand Doshid2946502014-04-08 20:10:03 +0530211 self.other_charges_total_export = flt(self.grand_total_export -
212 self.net_total_export + flt(self.discount_amount),
Anand Doshif3096132013-05-21 19:35:06 +0530213 self.precision("other_charges_total_export"))
Anand Doshid2946502014-04-08 20:10:03 +0530214
Anand Doshif78d1ae2014-03-28 13:55:00 +0530215 self.rounded_total = _round(self.grand_total)
216 self.rounded_total_export = _round(self.grand_total_export)
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530217
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530218 def apply_discount_amount(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530219 if self.discount_amount:
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530220 grand_total_for_discount_amount = self.get_grand_total_for_discount_amount()
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530221
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530222 if grand_total_for_discount_amount:
223 # calculate item amount after Discount Amount
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530224 for item in self.item_doclist:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530225 distributed_amount = flt(self.discount_amount) * item.base_amount / grand_total_for_discount_amount
Nabin Hait1eb56012014-02-10 19:20:15 +0530226 item.base_amount = flt(item.base_amount - distributed_amount, self.precision("base_amount", item))
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530227
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530228 self.discount_amount_applied = True
229 self._calculate_taxes_and_totals()
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530230
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530231 def get_grand_total_for_discount_amount(self):
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530232 actual_taxes_dict = {}
233
234 for tax in self.tax_doclist:
235 if tax.charge_type == "Actual":
236 actual_taxes_dict.setdefault(tax.idx, tax.tax_amount)
237 elif tax.row_id in actual_taxes_dict:
238 actual_tax_amount = flt(actual_taxes_dict.get(tax.row_id, 0)) * \
239 flt(tax.rate) / 100
240 actual_taxes_dict.setdefault(tax.idx, actual_tax_amount)
241
Anand Doshid2946502014-04-08 20:10:03 +0530242 grand_total_for_discount_amount = flt(self.grand_total - sum(actual_taxes_dict.values()),
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530243 self.precision("grand_total"))
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530244 return grand_total_for_discount_amount
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530245
Anand Doshi923d41d2013-05-28 17:23:36 +0530246 def calculate_outstanding_amount(self):
Anand Doshid2946502014-04-08 20:10:03 +0530247 # NOTE:
Anand Doshi923d41d2013-05-28 17:23:36 +0530248 # write_off_amount is only for POS Invoice
249 # total_advance is only for non POS Invoice
Anand Doshif78d1ae2014-03-28 13:55:00 +0530250 if self.doctype == "Sales Invoice" and self.docstatus == 0:
Anand Doshi81ba0b22014-03-28 15:23:26 +0530251 self.round_floats_in(self, ["grand_total", "total_advance", "write_off_amount",
Anand Doshi923d41d2013-05-28 17:23:36 +0530252 "paid_amount"])
Anand Doshif78d1ae2014-03-28 13:55:00 +0530253 total_amount_to_pay = self.grand_total - self.write_off_amount
254 self.outstanding_amount = flt(total_amount_to_pay - self.total_advance \
255 - self.paid_amount, self.precision("outstanding_amount"))
Anand Doshid2946502014-04-08 20:10:03 +0530256
Anand Doshi923d41d2013-05-28 17:23:36 +0530257 def calculate_commission(self):
258 if self.meta.get_field("commission_rate"):
Anand Doshi81ba0b22014-03-28 15:23:26 +0530259 self.round_floats_in(self, ["net_total", "commission_rate"])
Anand Doshif78d1ae2014-03-28 13:55:00 +0530260 if self.commission_rate > 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530261 throw(_("Commission rate cannot be greater than 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530262
Anand Doshif78d1ae2014-03-28 13:55:00 +0530263 self.total_commission = flt(self.net_total * self.commission_rate / 100.0,
Anand Doshi923d41d2013-05-28 17:23:36 +0530264 self.precision("total_commission"))
Anand Doshif3096132013-05-21 19:35:06 +0530265
266 def calculate_contribution(self):
Anand Doshiac32bad2014-04-18 01:30:14 +0530267 if not self.meta.get_field("sales_team"):
268 return
269
Anand Doshif3096132013-05-21 19:35:06 +0530270 total = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530271 sales_team = self.get("sales_team")
Anand Doshif3096132013-05-21 19:35:06 +0530272 for sales_person in sales_team:
273 self.round_floats_in(sales_person)
274
275 sales_person.allocated_amount = flt(
Anand Doshif78d1ae2014-03-28 13:55:00 +0530276 self.net_total * sales_person.allocated_percentage / 100.0,
Anand Doshif3096132013-05-21 19:35:06 +0530277 self.precision("allocated_amount", sales_person))
Anand Doshid2946502014-04-08 20:10:03 +0530278
Anand Doshif3096132013-05-21 19:35:06 +0530279 total += sales_person.allocated_percentage
Anand Doshid2946502014-04-08 20:10:03 +0530280
Anand Doshif3096132013-05-21 19:35:06 +0530281 if sales_team and total != 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530282 throw(_("Total allocated percentage for sales team should be 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530283
Anand Doshi1dde46a2013-05-15 21:15:57 +0530284 def validate_order_type(self):
Anand Doshiabc10032013-06-14 17:44:03 +0530285 valid_types = ["Sales", "Maintenance", "Shopping Cart"]
Anand Doshif78d1ae2014-03-28 13:55:00 +0530286 if not self.order_type:
287 self.order_type = "Sales"
288 elif self.order_type not in valid_types:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530289 throw(_("Order Type must be one of {1}").comma_or(valid_types))
Anand Doshid2946502014-04-08 20:10:03 +0530290
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530291 def check_credit(self, grand_total):
Anand Doshid2946502014-04-08 20:10:03 +0530292 customer_account = frappe.db.get_value("Account", {"company": self.company,
Anand Doshif78d1ae2014-03-28 13:55:00 +0530293 "master_name": self.customer}, "name")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530294 if customer_account:
Anand Doshid2946502014-04-08 20:10:03 +0530295 total_outstanding = frappe.db.sql("""select
296 sum(ifnull(debit, 0)) - sum(ifnull(credit, 0))
Anand Doshi0c26f812013-11-15 19:12:09 +0530297 from `tabGL Entry` where account = %s""", customer_account)
298 total_outstanding = total_outstanding[0][0] if total_outstanding else 0
Anand Doshid2946502014-04-08 20:10:03 +0530299
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530300 outstanding_including_current = flt(total_outstanding) + flt(grand_total)
Anand Doshid2946502014-04-08 20:10:03 +0530301 frappe.get_doc('Account', customer_account).run_method("check_credit_limit",
Anand Doshi0c26f812013-11-15 19:12:09 +0530302 outstanding_including_current)
Anand Doshid2946502014-04-08 20:10:03 +0530303
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530304 def validate_max_discount(self):
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530305 for d in self.get(self.fname):
Anand Doshie9baaa62014-02-26 12:35:33 +0530306 discount = flt(frappe.db.get_value("Item", d.item_code, "max_discount"))
Anand Doshid2946502014-04-08 20:10:03 +0530307
Nabin Haita7f757a2014-02-10 17:54:04 +0530308 if discount and flt(d.discount_percentage) > discount:
Rushabh Mehtac38fc712014-04-16 17:21:25 +0530309 frappe.throw(_("Maxiumm discount for Item {0} is {1}%").format(d.item_code, discount))
Anand Doshid2946502014-04-08 20:10:03 +0530310
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530311 def get_item_list(self):
312 il = []
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530313 for d in self.get(self.fname):
Nabin Hait0aa71a52014-02-11 16:14:52 +0530314 reserved_warehouse = ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530315 reserved_qty_for_main_item = 0
Anand Doshid2946502014-04-08 20:10:03 +0530316
Anand Doshif78d1ae2014-03-28 13:55:00 +0530317 if self.doctype == "Sales Order":
Anand Doshid2946502014-04-08 20:10:03 +0530318 if (frappe.db.get_value("Item", d.item_code, "is_stock_item") == 'Yes' or
Nabin Haita7f757a2014-02-10 17:54:04 +0530319 self.has_sales_bom(d.item_code)) and not d.warehouse:
Nabin Hait2cebf9b2014-05-02 16:12:07 +0530320 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 +0530321 reserved_warehouse = d.warehouse
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530322 if flt(d.qty) > flt(d.delivered_qty):
323 reserved_qty_for_main_item = flt(d.qty) - flt(d.delivered_qty)
Anand Doshid2946502014-04-08 20:10:03 +0530324
325 elif self.doctype == "Delivery Note" and d.against_sales_order:
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530326 # if SO qty is 10 and there is tolerance of 20%, then it will allow DN of 12.
327 # But in this case reserved qty should only be reduced by 10 and not 12
Anand Doshid2946502014-04-08 20:10:03 +0530328
329 already_delivered_qty = self.get_already_delivered_qty(self.name,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530330 d.against_sales_order, d.prevdoc_detail_docname)
Nabin Hait0aa71a52014-02-11 16:14:52 +0530331 so_qty, reserved_warehouse = self.get_so_qty_and_warehouse(d.prevdoc_detail_docname)
Anand Doshid2946502014-04-08 20:10:03 +0530332
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530333 if already_delivered_qty + d.qty > so_qty:
334 reserved_qty_for_main_item = -(so_qty - already_delivered_qty)
335 else:
336 reserved_qty_for_main_item = -flt(d.qty)
337
338 if self.has_sales_bom(d.item_code):
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530339 for p in self.get("packing_details"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530340 if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
341 # the packing details table's qty is already multiplied with parent's qty
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530342 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530343 'warehouse': p.warehouse,
Nabin Hait0aa71a52014-02-11 16:14:52 +0530344 'reserved_warehouse': reserved_warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530345 'item_code': p.item_code,
346 'qty': flt(p.qty),
347 'reserved_qty': (flt(p.qty)/flt(d.qty)) * reserved_qty_for_main_item,
348 'uom': p.uom,
349 'batch_no': cstr(p.batch_no).strip(),
350 'serial_no': cstr(p.serial_no).strip(),
351 'name': d.name
352 }))
353 else:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530354 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530355 'warehouse': d.warehouse,
Nabin Hait0aa71a52014-02-11 16:14:52 +0530356 'reserved_warehouse': reserved_warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530357 'item_code': d.item_code,
358 'qty': d.qty,
359 'reserved_qty': reserved_qty_for_main_item,
360 'uom': d.stock_uom,
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530361 'batch_no': cstr(d.get("batch_no")).strip(),
362 'serial_no': cstr(d.get("serial_no")).strip(),
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530363 'name': d.name
364 }))
365 return il
Anand Doshid2946502014-04-08 20:10:03 +0530366
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530367 def has_sales_bom(self, item_code):
Anand Doshid2946502014-04-08 20:10:03 +0530368 return frappe.db.sql("""select name from `tabSales BOM`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530369 where new_item_code=%s and docstatus != 2""", item_code)
Anand Doshid2946502014-04-08 20:10:03 +0530370
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530371 def get_already_delivered_qty(self, dn, so, so_detail):
Anand Doshid2946502014-04-08 20:10:03 +0530372 qty = frappe.db.sql("""select sum(qty) from `tabDelivery Note Item`
373 where prevdoc_detail_docname = %s and docstatus = 1
374 and against_sales_order = %s
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530375 and parent != %s""", (so_detail, so, dn))
376 return qty and flt(qty[0][0]) or 0.0
377
378 def get_so_qty_and_warehouse(self, so_detail):
Anand Doshie9baaa62014-02-26 12:35:33 +0530379 so_item = frappe.db.sql("""select qty, warehouse from `tabSales Order Item`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530380 where name = %s and docstatus = 1""", so_detail, as_dict=1)
381 so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
Nabin Haita7f757a2014-02-10 17:54:04 +0530382 so_warehouse = so_item and so_item[0]["warehouse"] or ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530383 return so_qty, so_warehouse
Anand Doshid2946502014-04-08 20:10:03 +0530384
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530385 def check_stop_sales_order(self, ref_fieldname):
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530386 for d in self.get(self.fname):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530387 if d.get(ref_fieldname):
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530388 status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530389 if status == "Stopped":
Rushabh Mehta8a40c132014-04-15 16:30:55 +0530390 frappe.throw(_("Sales Order {0} is stopped").format(d.get(ref_fieldname)))
Anand Doshid2946502014-04-08 20:10:03 +0530391
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530392def check_active_sales_items(obj):
Rushabh Mehtad36cb5c2014-04-03 12:38:42 +0530393 for d in obj.get(obj.fname):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530394 if d.item_code:
Anand Doshid2946502014-04-08 20:10:03 +0530395 item = frappe.db.sql("""select docstatus, is_sales_item,
396 is_service_item, income_account from tabItem where name = %s""",
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530397 d.item_code, as_dict=True)[0]
398 if item.is_sales_item == 'No' and item.is_service_item == 'No':
Rushabh Mehtac38fc712014-04-16 17:21:25 +0530399 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 +0530400 if getattr(d, "income_account", None) and not item.income_account:
Anand Doshid2946502014-04-08 20:10:03 +0530401 frappe.db.set_value("Item", d.item_code, "income_account",
Nabin Hait89ad6f22013-10-18 12:55:59 +0530402 d.income_account)