blob: 027bfd2ad891a1724d7a848aadb0cf52527dbf87 [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
6from frappe.utils import cint, flt, comma_or, _round, cstr
Rushabh Mehta1f847992013-12-12 19:12:19 +05307from erpnext.setup.utils import get_company_currency
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05308from frappe import msgprint, _
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):
Anand Doshif3096132013-05-21 19:35:06 +053013 def onload_post_render(self):
Anand Doshif3096132013-05-21 19:35:06 +053014 # contact, address, item details and pos details (if applicable)
15 self.set_missing_values()
Nabin Haitd1fd1e22013-10-18 12:29:11 +053016
17 def validate(self):
18 super(SellingController, self).validate()
19 self.validate_max_discount()
20 check_active_sales_items(self)
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053021
22 def get_sender(self, comm):
Anand Doshie9baaa62014-02-26 12:35:33 +053023 return frappe.db.get_value('Sales Email Settings', None, 'email_id')
Rushabh Mehta800b3aa2013-10-03 17:26:33 +053024
Anand Doshif3096132013-05-21 19:35:06 +053025 def set_missing_values(self, for_validate=False):
Anand Doshiabc10032013-06-14 17:44:03 +053026 super(SellingController, self).set_missing_values(for_validate)
27
Anand Doshif3096132013-05-21 19:35:06 +053028 # set contact and address details for customer, if they are not mentioned
Anand Doshiabc10032013-06-14 17:44:03 +053029 self.set_missing_lead_customer_details()
Nabin Hait096d3632013-10-17 17:01:14 +053030 self.set_price_list_and_item_details()
Anand Doshif78d1ae2014-03-28 13:55:00 +053031 if self.get("__islocal"):
Akhilesh Darjee2ced3b02014-01-28 19:16:05 +053032 self.set_taxes("other_charges", "taxes_and_charges")
Nabin Hait7a75e102013-09-17 10:21:20 +053033
Anand Doshiabc10032013-06-14 17:44:03 +053034 def set_missing_lead_customer_details(self):
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053035 if getattr(self, "customer", None):
Anand Doshi43624432014-02-25 15:42:16 +053036 from erpnext.accounts.party import _get_party_details
Anand Doshif78d1ae2014-03-28 13:55:00 +053037 self.update_if_missing(_get_party_details(self.customer,
Nabin Hait365ae272014-04-03 17:38:54 +053038 ignore_permissions=getattr(self, "ignore_permissions", None)))
Anand Doshiabc10032013-06-14 17:44:03 +053039
Rushabh Mehtaf14b8092014-04-03 14:30:42 +053040 elif getattr(self, "lead", None):
Nabin Hait9d1f0772014-02-19 17:43:24 +053041 from erpnext.selling.doctype.lead.lead import get_lead_details
Anand Doshif78d1ae2014-03-28 13:55:00 +053042 self.update_if_missing(get_lead_details(self.lead))
Anand Doshi43624432014-02-25 15:42:16 +053043
Nabin Hait096d3632013-10-17 17:01:14 +053044 def set_price_list_and_item_details(self):
45 self.set_price_list_currency("Selling")
Nabin Hait0aa71a52014-02-11 16:14:52 +053046 self.set_missing_item_details()
Nabin Hait2bd37772013-07-08 19:00:29 +053047
Anand Doshi99100a42013-07-04 17:13:53 +053048 def apply_shipping_rule(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +053049 if self.shipping_rule:
Rushabh Mehtab385ecf2014-03-28 16:44:37 +053050 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Anand Doshif78d1ae2014-03-28 13:55:00 +053051 value = self.net_total
Anand Doshi99100a42013-07-04 17:13:53 +053052
53 # TODO
54 # shipping rule calculation based on item's net weight
55
56 shipping_amount = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +053057 for condition in shipping_rule.get("shipping_rule_conditions"):
Anand Doshi99100a42013-07-04 17:13:53 +053058 if not condition.to_value or (flt(condition.from_value) <= value <= flt(condition.to_value)):
59 shipping_amount = condition.shipping_amount
60 break
Anand Doshi0b4943c2013-07-04 23:45:22 +053061
Rushabh Mehtae88bc8b2014-03-27 17:51:41 +053062 self.append("other_charges", {
Anand Doshi0b4943c2013-07-04 23:45:22 +053063 "doctype": "Sales Taxes and Charges",
Anand Doshi0b4943c2013-07-04 23:45:22 +053064 "charge_type": "Actual",
Anand Doshif78d1ae2014-03-28 13:55:00 +053065 "account_head": shipping_rule.account,
66 "cost_center": shipping_rule.cost_center,
67 "description": shipping_rule.label,
Anand Doshi0b4943c2013-07-04 23:45:22 +053068 "rate": shipping_amount
69 })
Anand Doshifc777182013-05-27 19:29:07 +053070
Nabin Haitec52db82013-01-22 11:53:14 +053071 def set_total_in_words(self):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053072 from frappe.utils import money_in_words
Anand Doshif78d1ae2014-03-28 13:55:00 +053073 company_currency = get_company_currency(self.company)
Nabin Hait6f1a5ec2013-02-20 16:25:05 +053074
Anand Doshie9baaa62014-02-26 12:35:33 +053075 disable_rounded_total = cint(frappe.db.get_value("Global Defaults", None,
Nabin Hait6f1a5ec2013-02-20 16:25:05 +053076 "disable_rounded_total"))
77
Nabin Haitec52db82013-01-22 11:53:14 +053078 if self.meta.get_field("in_words"):
Anand Doshif78d1ae2014-03-28 13:55:00 +053079 self.in_words = money_in_words(disable_rounded_total and
80 self.grand_total or self.rounded_total, company_currency)
Nabin Haitec52db82013-01-22 11:53:14 +053081 if self.meta.get_field("in_words_export"):
Anand Doshif78d1ae2014-03-28 13:55:00 +053082 self.in_words_export = money_in_words(disable_rounded_total and
83 self.grand_total_export or self.rounded_total_export, self.currency)
Anand Doshi21f4ea32013-05-10 18:08:32 +053084
85 def calculate_taxes_and_totals(self):
Anand Doshi3543f302013-05-24 19:25:01 +053086 self.other_fname = "other_charges"
Anand Doshi21f4ea32013-05-10 18:08:32 +053087
Anand Doshi3543f302013-05-24 19:25:01 +053088 super(SellingController, self).calculate_taxes_and_totals()
89
Anand Doshi923d41d2013-05-28 17:23:36 +053090 self.calculate_total_advance("Sales Invoice", "advance_adjustment_details")
Anand Doshif3096132013-05-21 19:35:06 +053091 self.calculate_commission()
92 self.calculate_contribution()
Anand Doshi3543f302013-05-24 19:25:01 +053093
Anand Doshif3096132013-05-21 19:35:06 +053094 def determine_exclusive_rate(self):
Anand Doshi21f4ea32013-05-10 18:08:32 +053095 if not any((cint(tax.included_in_print_rate) for tax in self.tax_doclist)):
96 # no inclusive tax
97 return
98
99 for item in self.item_doclist:
100 item_tax_map = self._load_item_tax_rate(item.item_tax_rate)
101 cumulated_tax_fraction = 0
102 for i, tax in enumerate(self.tax_doclist):
Anand Doshif3096132013-05-21 19:35:06 +0530103 tax.tax_fraction_for_current_item = self.get_current_tax_fraction(tax, item_tax_map)
104
Anand Doshi21f4ea32013-05-10 18:08:32 +0530105 if i==0:
Anand Doshif3096132013-05-21 19:35:06 +0530106 tax.grand_total_fraction_for_current_item = 1 + tax.tax_fraction_for_current_item
Anand Doshi21f4ea32013-05-10 18:08:32 +0530107 else:
108 tax.grand_total_fraction_for_current_item = \
109 self.tax_doclist[i-1].grand_total_fraction_for_current_item \
110 + tax.tax_fraction_for_current_item
111
112 cumulated_tax_fraction += tax.tax_fraction_for_current_item
113
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530114 if cumulated_tax_fraction and not self.discount_amount_applied:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530115 item.base_amount = flt((item.amount * self.conversion_rate) /
Nabin Hait1eb56012014-02-10 19:20:15 +0530116 (1 + cumulated_tax_fraction), self.precision("base_amount", item))
Anand Doshifbe1e162013-08-06 19:38:19 +0530117
Nabin Hait1eb56012014-02-10 19:20:15 +0530118 item.base_rate = flt(item.base_amount / item.qty, self.precision("base_rate", item))
Anand Doshi21f4ea32013-05-10 18:08:32 +0530119
Nabin Haita7f757a2014-02-10 17:54:04 +0530120 if item.discount_percentage == 100:
Nabin Hait7979f7e2014-02-10 18:26:49 +0530121 item.base_price_list_rate = item.base_rate
122 item.base_rate = 0.0
Anand Doshif3096132013-05-21 19:35:06 +0530123 else:
Nabin Hait7979f7e2014-02-10 18:26:49 +0530124 item.base_price_list_rate = flt(item.base_rate / (1 - (item.discount_percentage / 100.0)),
Nabin Haita7f757a2014-02-10 17:54:04 +0530125 self.precision("base_price_list_rate", item))
Anand Doshi21f4ea32013-05-10 18:08:32 +0530126
127 def get_current_tax_fraction(self, tax, item_tax_map):
128 """
129 Get tax fraction for calculating tax exclusive amount
130 from tax inclusive amount
131 """
132 current_tax_fraction = 0
133
134 if cint(tax.included_in_print_rate):
135 tax_rate = self._get_tax_rate(tax, item_tax_map)
136
137 if tax.charge_type == "On Net Total":
138 current_tax_fraction = tax_rate / 100.0
139
140 elif tax.charge_type == "On Previous Row Amount":
141 current_tax_fraction = (tax_rate / 100.0) * \
142 self.tax_doclist[cint(tax.row_id) - 1].tax_fraction_for_current_item
143
144 elif tax.charge_type == "On Previous Row Total":
145 current_tax_fraction = (tax_rate / 100.0) * \
146 self.tax_doclist[cint(tax.row_id) - 1].grand_total_fraction_for_current_item
147
148 return current_tax_fraction
149
150 def calculate_item_values(self):
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530151 if not self.discount_amount_applied:
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530152 for item in self.item_doclist:
153 self.round_floats_in(item)
Rushabh Mehta4dca4012013-07-25 17:45:59 +0530154
Nabin Haita7f757a2014-02-10 17:54:04 +0530155 if item.discount_percentage == 100:
Nabin Hait7979f7e2014-02-10 18:26:49 +0530156 item.rate = 0
157 elif not item.rate:
158 item.rate = flt(item.price_list_rate * (1.0 - (item.discount_percentage / 100.0)),
159 self.precision("rate", item))
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530160
Nabin Hait1eb56012014-02-10 19:20:15 +0530161 item.amount = flt(item.rate * item.qty,
162 self.precision("amount", item))
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530163
Nabin Haita7f757a2014-02-10 17:54:04 +0530164 self._set_in_company_currency(item, "price_list_rate", "base_price_list_rate")
Nabin Hait7979f7e2014-02-10 18:26:49 +0530165 self._set_in_company_currency(item, "rate", "base_rate")
Nabin Hait1eb56012014-02-10 19:20:15 +0530166 self._set_in_company_currency(item, "amount", "base_amount")
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530167
Anand Doshi21f4ea32013-05-10 18:08:32 +0530168 def calculate_net_total(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530169 self.net_total = self.net_total_export = 0.0
Anand Doshi21f4ea32013-05-10 18:08:32 +0530170
171 for item in self.item_doclist:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530172 self.net_total += item.base_amount
173 self.net_total_export += item.amount
Anand Doshif3096132013-05-21 19:35:06 +0530174
Anand Doshi81ba0b22014-03-28 15:23:26 +0530175 self.round_floats_in(self, ["net_total", "net_total_export"])
Anand Doshi21f4ea32013-05-10 18:08:32 +0530176
177 def calculate_totals(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530178 self.grand_total = flt(self.tax_doclist and \
179 self.tax_doclist[-1].total or self.net_total, self.precision("grand_total"))
180 self.grand_total_export = flt(self.grand_total / self.conversion_rate,
Anand Doshi5af812a2013-05-10 19:23:02 +0530181 self.precision("grand_total_export"))
Anand Doshif3096132013-05-21 19:35:06 +0530182
Anand Doshif78d1ae2014-03-28 13:55:00 +0530183 self.other_charges_total = flt(self.grand_total - self.net_total,
Anand Doshif3096132013-05-21 19:35:06 +0530184 self.precision("other_charges_total"))
Nabin Hait5c6d13a2014-01-20 17:18:16 +0530185
Anand Doshif78d1ae2014-03-28 13:55:00 +0530186 self.other_charges_total_export = flt(self.grand_total_export -
187 self.net_total_export + flt(self.discount_amount),
Anand Doshif3096132013-05-21 19:35:06 +0530188 self.precision("other_charges_total_export"))
Anand Doshi21f4ea32013-05-10 18:08:32 +0530189
Anand Doshif78d1ae2014-03-28 13:55:00 +0530190 self.rounded_total = _round(self.grand_total)
191 self.rounded_total_export = _round(self.grand_total_export)
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530192
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530193 def apply_discount_amount(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530194 if self.discount_amount:
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530195 grand_total_for_discount_amount = self.get_grand_total_for_discount_amount()
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530196
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530197 if grand_total_for_discount_amount:
198 # calculate item amount after Discount Amount
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530199 for item in self.item_doclist:
Anand Doshif78d1ae2014-03-28 13:55:00 +0530200 distributed_amount = flt(self.discount_amount) * item.base_amount / grand_total_for_discount_amount
Nabin Hait1eb56012014-02-10 19:20:15 +0530201 item.base_amount = flt(item.base_amount - distributed_amount, self.precision("base_amount", item))
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530202
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530203 self.discount_amount_applied = True
204 self._calculate_taxes_and_totals()
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530205
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530206 def get_grand_total_for_discount_amount(self):
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530207 actual_taxes_dict = {}
208
209 for tax in self.tax_doclist:
210 if tax.charge_type == "Actual":
211 actual_taxes_dict.setdefault(tax.idx, tax.tax_amount)
212 elif tax.row_id in actual_taxes_dict:
213 actual_tax_amount = flt(actual_taxes_dict.get(tax.row_id, 0)) * \
214 flt(tax.rate) / 100
215 actual_taxes_dict.setdefault(tax.idx, actual_tax_amount)
216
Anand Doshif78d1ae2014-03-28 13:55:00 +0530217 grand_total_for_discount_amount = flt(self.grand_total - sum(actual_taxes_dict.values()),
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530218 self.precision("grand_total"))
Akhilesh Darjee57738a02014-01-03 18:15:07 +0530219 return grand_total_for_discount_amount
Akhilesh Darjeed203aea2013-12-27 17:49:57 +0530220
Anand Doshi923d41d2013-05-28 17:23:36 +0530221 def calculate_outstanding_amount(self):
222 # NOTE:
223 # write_off_amount is only for POS Invoice
224 # total_advance is only for non POS Invoice
Anand Doshif78d1ae2014-03-28 13:55:00 +0530225 if self.doctype == "Sales Invoice" and self.docstatus == 0:
Anand Doshi81ba0b22014-03-28 15:23:26 +0530226 self.round_floats_in(self, ["grand_total", "total_advance", "write_off_amount",
Anand Doshi923d41d2013-05-28 17:23:36 +0530227 "paid_amount"])
Anand Doshif78d1ae2014-03-28 13:55:00 +0530228 total_amount_to_pay = self.grand_total - self.write_off_amount
229 self.outstanding_amount = flt(total_amount_to_pay - self.total_advance \
230 - self.paid_amount, self.precision("outstanding_amount"))
Anand Doshi923d41d2013-05-28 17:23:36 +0530231
232 def calculate_commission(self):
233 if self.meta.get_field("commission_rate"):
Anand Doshi81ba0b22014-03-28 15:23:26 +0530234 self.round_floats_in(self, ["net_total", "commission_rate"])
Anand Doshif78d1ae2014-03-28 13:55:00 +0530235 if self.commission_rate > 100.0:
Anand Doshi923d41d2013-05-28 17:23:36 +0530236 msgprint(_(self.meta.get_label("commission_rate")) + " " +
237 _("cannot be greater than 100"), raise_exception=True)
238
Anand Doshif78d1ae2014-03-28 13:55:00 +0530239 self.total_commission = flt(self.net_total * self.commission_rate / 100.0,
Anand Doshi923d41d2013-05-28 17:23:36 +0530240 self.precision("total_commission"))
Anand Doshif3096132013-05-21 19:35:06 +0530241
242 def calculate_contribution(self):
243 total = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530244 sales_team = self.get("sales_team")
Anand Doshif3096132013-05-21 19:35:06 +0530245 for sales_person in sales_team:
246 self.round_floats_in(sales_person)
247
248 sales_person.allocated_amount = flt(
Anand Doshif78d1ae2014-03-28 13:55:00 +0530249 self.net_total * sales_person.allocated_percentage / 100.0,
Anand Doshif3096132013-05-21 19:35:06 +0530250 self.precision("allocated_amount", sales_person))
251
252 total += sales_person.allocated_percentage
253
254 if sales_team and total != 100.0:
255 msgprint(_("Total") + " " +
256 _(self.meta.get_label("allocated_percentage", parentfield="sales_team")) +
257 " " + _("should be 100%"), raise_exception=True)
Anand Doshi1dde46a2013-05-15 21:15:57 +0530258
259 def validate_order_type(self):
Anand Doshiabc10032013-06-14 17:44:03 +0530260 valid_types = ["Sales", "Maintenance", "Shopping Cart"]
Anand Doshif78d1ae2014-03-28 13:55:00 +0530261 if not self.order_type:
262 self.order_type = "Sales"
263 elif self.order_type not in valid_types:
Anand Doshi1dde46a2013-05-15 21:15:57 +0530264 msgprint(_(self.meta.get_label("order_type")) + " " +
Anand Doshi373680b2013-10-10 16:04:40 +0530265 _("must be one of") + ": " + comma_or(valid_types), raise_exception=True)
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530266
267 def check_credit(self, grand_total):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530268 customer_account = frappe.db.get_value("Account", {"company": self.company,
269 "master_name": self.customer}, "name")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530270 if customer_account:
Anand Doshie9baaa62014-02-26 12:35:33 +0530271 total_outstanding = frappe.db.sql("""select
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530272 sum(ifnull(debit, 0)) - sum(ifnull(credit, 0))
Anand Doshi0c26f812013-11-15 19:12:09 +0530273 from `tabGL Entry` where account = %s""", customer_account)
274 total_outstanding = total_outstanding[0][0] if total_outstanding else 0
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530275
276 outstanding_including_current = flt(total_outstanding) + flt(grand_total)
Rushabh Mehtab385ecf2014-03-28 16:44:37 +0530277 frappe.get_doc('Account', customer_account).run_method("check_credit_limit",
Anand Doshi0c26f812013-11-15 19:12:09 +0530278 outstanding_including_current)
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530279
280 def validate_max_discount(self):
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530281 for d in self.get(self.fname):
Anand Doshie9baaa62014-02-26 12:35:33 +0530282 discount = flt(frappe.db.get_value("Item", d.item_code, "max_discount"))
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530283
Nabin Haita7f757a2014-02-10 17:54:04 +0530284 if discount and flt(d.discount_percentage) > discount:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530285 frappe.throw(_("You cannot give more than ") + cstr(discount) + "% " +
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530286 _("discount on Item Code") + ": " + cstr(d.item_code))
287
288 def get_item_list(self):
289 il = []
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530290 for d in self.get(self.fname):
Nabin Hait0aa71a52014-02-11 16:14:52 +0530291 reserved_warehouse = ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530292 reserved_qty_for_main_item = 0
293
Anand Doshif78d1ae2014-03-28 13:55:00 +0530294 if self.doctype == "Sales Order":
Anand Doshie9baaa62014-02-26 12:35:33 +0530295 if (frappe.db.get_value("Item", d.item_code, "is_stock_item") == 'Yes' or
Nabin Haita7f757a2014-02-10 17:54:04 +0530296 self.has_sales_bom(d.item_code)) and not d.warehouse:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530297 frappe.throw(_("Please enter Reserved Warehouse for item ") +
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530298 d.item_code + _(" as it is stock Item or packing item"))
Nabin Hait0aa71a52014-02-11 16:14:52 +0530299 reserved_warehouse = d.warehouse
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530300 if flt(d.qty) > flt(d.delivered_qty):
301 reserved_qty_for_main_item = flt(d.qty) - flt(d.delivered_qty)
302
Anand Doshif78d1ae2014-03-28 13:55:00 +0530303 if self.doctype == "Delivery Note" and d.against_sales_order:
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530304 # if SO qty is 10 and there is tolerance of 20%, then it will allow DN of 12.
305 # But in this case reserved qty should only be reduced by 10 and not 12
306
Anand Doshif78d1ae2014-03-28 13:55:00 +0530307 already_delivered_qty = self.get_already_delivered_qty(self.name,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530308 d.against_sales_order, d.prevdoc_detail_docname)
Nabin Hait0aa71a52014-02-11 16:14:52 +0530309 so_qty, reserved_warehouse = self.get_so_qty_and_warehouse(d.prevdoc_detail_docname)
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530310
311 if already_delivered_qty + d.qty > so_qty:
312 reserved_qty_for_main_item = -(so_qty - already_delivered_qty)
313 else:
314 reserved_qty_for_main_item = -flt(d.qty)
315
316 if self.has_sales_bom(d.item_code):
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530317 for p in self.get("packing_details"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530318 if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
319 # the packing details table's qty is already multiplied with parent's qty
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530320 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530321 'warehouse': p.warehouse,
Nabin Hait0aa71a52014-02-11 16:14:52 +0530322 'reserved_warehouse': reserved_warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530323 'item_code': p.item_code,
324 'qty': flt(p.qty),
325 'reserved_qty': (flt(p.qty)/flt(d.qty)) * reserved_qty_for_main_item,
326 'uom': p.uom,
327 'batch_no': cstr(p.batch_no).strip(),
328 'serial_no': cstr(p.serial_no).strip(),
329 'name': d.name
330 }))
331 else:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530332 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530333 'warehouse': d.warehouse,
Nabin Hait0aa71a52014-02-11 16:14:52 +0530334 'reserved_warehouse': reserved_warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530335 'item_code': d.item_code,
336 'qty': d.qty,
337 'reserved_qty': reserved_qty_for_main_item,
338 'uom': d.stock_uom,
Nabin Haitdc82d4f2014-04-07 12:02:57 +0530339 'batch_no': cstr(d.get("batch_no")).strip(),
340 'serial_no': cstr(d.get("serial_no")).strip(),
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530341 'name': d.name
342 }))
343 return il
344
345 def has_sales_bom(self, item_code):
Anand Doshie9baaa62014-02-26 12:35:33 +0530346 return frappe.db.sql("""select name from `tabSales BOM`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530347 where new_item_code=%s and docstatus != 2""", item_code)
348
349 def get_already_delivered_qty(self, dn, so, so_detail):
Anand Doshie9baaa62014-02-26 12:35:33 +0530350 qty = frappe.db.sql("""select sum(qty) from `tabDelivery Note Item`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530351 where prevdoc_detail_docname = %s and docstatus = 1
352 and against_sales_order = %s
353 and parent != %s""", (so_detail, so, dn))
354 return qty and flt(qty[0][0]) or 0.0
355
356 def get_so_qty_and_warehouse(self, so_detail):
Anand Doshie9baaa62014-02-26 12:35:33 +0530357 so_item = frappe.db.sql("""select qty, warehouse from `tabSales Order Item`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530358 where name = %s and docstatus = 1""", so_detail, as_dict=1)
359 so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
Nabin Haita7f757a2014-02-10 17:54:04 +0530360 so_warehouse = so_item and so_item[0]["warehouse"] or ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530361 return so_qty, so_warehouse
362
363 def check_stop_sales_order(self, ref_fieldname):
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530364 for d in self.get(self.fname):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530365 if d.get(ref_fieldname):
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530366 status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530367 if status == "Stopped":
Anand Doshif78d1ae2014-03-28 13:55:00 +0530368 frappe.throw(self.doctype +
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530369 _(" can not be created/modified against stopped Sales Order ") +
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530370 d.get(ref_fieldname))
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530371
372def check_active_sales_items(obj):
Rushabh Mehtad36cb5c2014-04-03 12:38:42 +0530373 for d in obj.get(obj.fname):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530374 if d.item_code:
Anand Doshie9baaa62014-02-26 12:35:33 +0530375 item = frappe.db.sql("""select docstatus, is_sales_item,
Nabin Haiteba1bdb2014-02-12 16:04:17 +0530376 is_service_item, income_account from tabItem where name = %s""",
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530377 d.item_code, as_dict=True)[0]
378 if item.is_sales_item == 'No' and item.is_service_item == 'No':
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530379 frappe.throw(_("Item is neither Sales nor Service Item") + ": " + d.item_code)
Nabin Hait365ae272014-04-03 17:38:54 +0530380 if getattr(d, "income_account", None) and not item.income_account:
Anand Doshie9baaa62014-02-26 12:35:33 +0530381 frappe.db.set_value("Item", d.item_code, "income_account",
Nabin Hait89ad6f22013-10-18 12:55:59 +0530382 d.income_account)