blob: 68e91550a8add66cba49e33072c5dd7953b60a8e [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
Saurabhd3135532016-02-25 18:59:20 +05309from erpnext.stock.get_item_details import get_bin_details
Nabin Hait14aa9c52016-04-18 15:54:01 +053010from erpnext.stock.utils import get_incoming_rate
shreyase8aaa922016-10-20 14:03:59 +053011from erpnext.stock.stock_ledger import get_valuation_rate
Nabin Haitec52db82013-01-22 11:53:14 +053012
Rushabh Mehta1f847992013-12-12 19:12:19 +053013from erpnext.controllers.stock_controller import StockController
Nabin Haitbf495c92013-01-30 12:49:08 +053014
Nabin Haitc3afb252013-03-19 12:01:24 +053015class SellingController(StockController):
Rushabh Mehtaf84c2402014-07-18 16:39:31 +053016 def __setup__(self):
Nabin Haitde9c8a92015-02-23 01:06:00 +053017 if hasattr(self, "taxes"):
Rushabh Mehtac567e8e2015-02-03 17:55:52 +053018 self.print_templates = {
19 "taxes": "templates/print_formats/includes/taxes.html"
Rushabh Mehta5b51cc82014-07-21 18:25:45 +053020 }
Rushabh Mehtaf84c2402014-07-18 16:39:31 +053021
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053022 def get_feed(self):
23 return _("To {0} | {1} {2}").format(self.customer_name, self.currency,
Nabin Hait5690be12015-02-12 16:09:11 +053024 self.grand_total)
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053025
Rushabh Mehtab5e76892014-07-29 16:07:43 +053026 def onload(self):
Rohit Waghchaure7d529892016-10-06 14:35:04 +053027 super(SellingController, self).onload()
Rushabh Mehtab5e76892014-07-29 16:07:43 +053028 if self.doctype in ("Sales Order", "Delivery Note", "Sales Invoice"):
Nabin Haitdd38a262014-12-26 13:15:21 +053029 for item in self.get("items"):
Saurabhd3135532016-02-25 18:59:20 +053030 item.update(get_bin_details(item.item_code,
Rushabh Mehtab5e76892014-07-29 16:07:43 +053031 item.warehouse))
32
Nabin Haitd1fd1e22013-10-18 12:29:11 +053033 def validate(self):
34 super(SellingController, self).validate()
35 self.validate_max_discount()
shreyas1cfe2d72016-10-19 18:36:12 +053036 self.validate_selling_price()
Nabin Haitd1fd1e22013-10-18 12:29:11 +053037 check_active_sales_items(self)
Anand Doshid2946502014-04-08 20:10:03 +053038
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 Doshi2f957f22016-04-08 17:36:10 +053058 self.update_if_missing(get_lead_details(
59 self.lead,
60 posting_date=self.get('transaction_date') or self.get('posting_date'),
61 company=self.company))
Anand Doshid2946502014-04-08 20:10:03 +053062
Nabin Hait096d3632013-10-17 17:01:14 +053063 def set_price_list_and_item_details(self):
64 self.set_price_list_currency("Selling")
Nabin Hait0aa71a52014-02-11 16:14:52 +053065 self.set_missing_item_details()
Anand Doshid2946502014-04-08 20:10:03 +053066
Anand Doshi99100a42013-07-04 17:13:53 +053067 def apply_shipping_rule(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +053068 if self.shipping_rule:
Rushabh Mehtab385ecf2014-03-28 16:44:37 +053069 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Nabin Hait5690be12015-02-12 16:09:11 +053070 value = self.base_net_total
Anand Doshid2946502014-04-08 20:10:03 +053071
Anand Doshi99100a42013-07-04 17:13:53 +053072 # TODO
73 # shipping rule calculation based on item's net weight
Anand Doshid2946502014-04-08 20:10:03 +053074
Anand Doshi99100a42013-07-04 17:13:53 +053075 shipping_amount = 0.0
Nabin Haite7d15362014-12-25 16:01:55 +053076 for condition in shipping_rule.get("conditions"):
Anand Doshi99100a42013-07-04 17:13:53 +053077 if not condition.to_value or (flt(condition.from_value) <= value <= flt(condition.to_value)):
78 shipping_amount = condition.shipping_amount
79 break
Anand Doshid2946502014-04-08 20:10:03 +053080
Anand Doshiac32bad2014-04-18 01:30:14 +053081 shipping_charge = {
Anand Doshi0b4943c2013-07-04 23:45:22 +053082 "doctype": "Sales Taxes and Charges",
Anand Doshi0b4943c2013-07-04 23:45:22 +053083 "charge_type": "Actual",
Anand Doshif78d1ae2014-03-28 13:55:00 +053084 "account_head": shipping_rule.account,
Anand Doshiac32bad2014-04-18 01:30:14 +053085 "cost_center": shipping_rule.cost_center
86 }
87
Nabin Haite7d15362014-12-25 16:01:55 +053088 existing_shipping_charge = self.get("taxes", filters=shipping_charge)
Anand Doshiac32bad2014-04-18 01:30:14 +053089 if existing_shipping_charge:
90 # take the last record found
Anand Doshiff8a8542015-05-26 18:06:09 -040091 existing_shipping_charge[-1].tax_amount = shipping_amount
Anand Doshiac32bad2014-04-18 01:30:14 +053092 else:
Anand Doshiff8a8542015-05-26 18:06:09 -040093 shipping_charge["tax_amount"] = shipping_amount
Anand Doshiac32bad2014-04-18 01:30:14 +053094 shipping_charge["description"] = shipping_rule.label
Nabin Haite7d15362014-12-25 16:01:55 +053095 self.append("taxes", shipping_charge)
Anand Doshiac32bad2014-04-18 01:30:14 +053096
97 self.calculate_taxes_and_totals()
98
99 def remove_shipping_charge(self):
100 if self.shipping_rule:
101 shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
Nabin Haite7d15362014-12-25 16:01:55 +0530102 existing_shipping_charge = self.get("taxes", {
Anand Doshiac32bad2014-04-18 01:30:14 +0530103 "doctype": "Sales Taxes and Charges",
104 "charge_type": "Actual",
105 "account_head": shipping_rule.account,
106 "cost_center": shipping_rule.cost_center
Anand Doshi0b4943c2013-07-04 23:45:22 +0530107 })
Anand Doshiac32bad2014-04-18 01:30:14 +0530108 if existing_shipping_charge:
Nabin Haite7d15362014-12-25 16:01:55 +0530109 self.get("taxes").remove(existing_shipping_charge[-1])
Anand Doshiac32bad2014-04-18 01:30:14 +0530110 self.calculate_taxes_and_totals()
Anand Doshid2946502014-04-08 20:10:03 +0530111
Nabin Haitec52db82013-01-22 11:53:14 +0530112 def set_total_in_words(self):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530113 from frappe.utils import money_in_words
Anand Doshif78d1ae2014-03-28 13:55:00 +0530114 company_currency = get_company_currency(self.company)
Anand Doshid2946502014-04-08 20:10:03 +0530115
Nabin Hait04d244a2015-07-22 17:47:49 +0530116 disable_rounded_total = cint(frappe.db.get_value("Global Defaults", None, "disable_rounded_total"))
Anand Doshid2946502014-04-08 20:10:03 +0530117
Nabin Hait5690be12015-02-12 16:09:11 +0530118 if self.meta.get_field("base_in_words"):
119 self.base_in_words = money_in_words(disable_rounded_total and
Nabin Hait04d244a2015-07-22 17:47:49 +0530120 abs(self.base_grand_total) or abs(self.base_rounded_total), company_currency)
Nabin Haitec52db82013-01-22 11:53:14 +0530121 if self.meta.get_field("in_words"):
Anand Doshid2946502014-04-08 20:10:03 +0530122 self.in_words = money_in_words(disable_rounded_total and
Nabin Hait04d244a2015-07-22 17:47:49 +0530123 abs(self.grand_total) or abs(self.rounded_total), self.currency)
Anand Doshid2946502014-04-08 20:10:03 +0530124
Anand Doshi923d41d2013-05-28 17:23:36 +0530125 def calculate_commission(self):
126 if self.meta.get_field("commission_rate"):
Nabin Hait5690be12015-02-12 16:09:11 +0530127 self.round_floats_in(self, ["base_net_total", "commission_rate"])
Anand Doshif78d1ae2014-03-28 13:55:00 +0530128 if self.commission_rate > 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530129 throw(_("Commission rate cannot be greater than 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530130
Nabin Hait5690be12015-02-12 16:09:11 +0530131 self.total_commission = flt(self.base_net_total * self.commission_rate / 100.0,
Anand Doshi923d41d2013-05-28 17:23:36 +0530132 self.precision("total_commission"))
Anand Doshif3096132013-05-21 19:35:06 +0530133
134 def calculate_contribution(self):
Anand Doshiac32bad2014-04-18 01:30:14 +0530135 if not self.meta.get_field("sales_team"):
136 return
137
Anand Doshif3096132013-05-21 19:35:06 +0530138 total = 0.0
Rushabh Mehtad2b34dc2014-03-27 16:12:56 +0530139 sales_team = self.get("sales_team")
Anand Doshif3096132013-05-21 19:35:06 +0530140 for sales_person in sales_team:
141 self.round_floats_in(sales_person)
142
143 sales_person.allocated_amount = flt(
Nabin Hait5690be12015-02-12 16:09:11 +0530144 self.base_net_total * sales_person.allocated_percentage / 100.0,
Anand Doshif3096132013-05-21 19:35:06 +0530145 self.precision("allocated_amount", sales_person))
Anand Doshid2946502014-04-08 20:10:03 +0530146
Anand Doshif3096132013-05-21 19:35:06 +0530147 total += sales_person.allocated_percentage
Anand Doshid2946502014-04-08 20:10:03 +0530148
Anand Doshif3096132013-05-21 19:35:06 +0530149 if sales_team and total != 100.0:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530150 throw(_("Total allocated percentage for sales team should be 100"))
Anand Doshid2946502014-04-08 20:10:03 +0530151
Anand Doshi1dde46a2013-05-15 21:15:57 +0530152 def validate_order_type(self):
Saurabh5b7e9a12015-10-15 17:27:46 +0530153 valid_types = ["Sales", "Maintenance", "Shopping Cart"]
Anand Doshif78d1ae2014-03-28 13:55:00 +0530154 if not self.order_type:
155 self.order_type = "Sales"
156 elif self.order_type not in valid_types:
Anand Doshi80a988c2014-07-07 11:35:54 +0530157 throw(_("Order Type must be one of {0}").format(comma_or(valid_types)))
Anand Doshid2946502014-04-08 20:10:03 +0530158
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530159 def validate_max_discount(self):
Nabin Haitdd38a262014-12-26 13:15:21 +0530160 for d in self.get("items"):
Anand Doshie9baaa62014-02-26 12:35:33 +0530161 discount = flt(frappe.db.get_value("Item", d.item_code, "max_discount"))
Anand Doshid2946502014-04-08 20:10:03 +0530162
Nabin Haita7f757a2014-02-10 17:54:04 +0530163 if discount and flt(d.discount_percentage) > discount:
Rushabh Mehtac38fc712014-04-16 17:21:25 +0530164 frappe.throw(_("Maxiumm discount for Item {0} is {1}%").format(d.item_code, discount))
Anand Doshid2946502014-04-08 20:10:03 +0530165
shreyas1cfe2d72016-10-19 18:36:12 +0530166 def validate_selling_price(self):
Nabin Hait9f26bc12016-10-20 16:45:53 +0530167 if not frappe.db.get_single_value("Selling Settings", "validate_selling_price"):
shreyas1cfe2d72016-10-19 18:36:12 +0530168 return
169
170 for it in self.get("items"):
Nabin Hait9f26bc12016-10-20 16:45:53 +0530171 last_purchase_rate, is_stock_item = frappe.db.get_value("Item", it.name, ["last_purchase_rate", "is_stock_item"])
shreyas1cfe2d72016-10-19 18:36:12 +0530172
shreyase8aaa922016-10-20 14:03:59 +0530173 if flt(it.base_rate) < flt(last_purchase_rate):
Nabin Hait9f26bc12016-10-20 16:45:53 +0530174 throw(it.name, last_purchase_rate, "last purchase rate")
shreyase8aaa922016-10-20 14:03:59 +0530175
176 last_valuation_rate = frappe.db.sql("""
177 SELECT valuation_rate FROM `tabStock Ledger Entry` WHERE item_code = %s
178 AND warehouse = %s AND valuation_rate > 0
179 ORDER BY posting_date DESC, posting_time DESC, name DESC LIMIT 1
180 """, (it.item_code, it.warehouse))
181
shreyase8aaa922016-10-20 14:03:59 +0530182 if is_stock_item and flt(it.base_rate) < flt(last_valuation_rate):
Nabin Hait9f26bc12016-10-20 16:45:53 +0530183 throw_message(it.name, last_valuation_rate, "valuation rate")
shreyase8aaa922016-10-20 14:03:59 +0530184
Nabin Hait9f26bc12016-10-20 16:45:53 +0530185 def throw_message(item_name, rate, ref_rate_field):
186 frappe.throw(_("""Selling price for item {0} is lower than its {1}. Selling price should be atleast {2}""")
187 .format(item_name, ref_rate_field, rate))
shreyas1cfe2d72016-10-19 18:36:12 +0530188
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530189 def get_item_list(self):
190 il = []
Nabin Haitdd38a262014-12-26 13:15:21 +0530191 for d in self.get("items"):
nathando247e9ff2014-09-03 15:03:31 +0800192 if d.qty is None:
Nabin Haitc41a9482014-08-18 15:40:15 +0530193 frappe.throw(_("Row {0}: Qty is mandatory").format(d.idx))
Anand Doshi01de9452016-01-26 16:22:50 +0530194
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530195 if self.has_product_bundle(d.item_code):
Nabin Haite7d15362014-12-25 16:01:55 +0530196 for p in self.get("packed_items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530197 if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
198 # the packing details table's qty is already multiplied with parent's qty
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530199 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530200 'warehouse': p.warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530201 'item_code': p.item_code,
202 'qty': flt(p.qty),
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530203 'uom': p.uom,
204 'batch_no': cstr(p.batch_no).strip(),
205 'serial_no': cstr(p.serial_no).strip(),
Nabin Haitc865f222015-09-21 09:18:43 +0530206 'name': d.name,
207 'target_warehouse': p.target_warehouse
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530208 }))
209 else:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530210 il.append(frappe._dict({
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530211 'warehouse': d.warehouse,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530212 'item_code': d.item_code,
213 'qty': d.qty,
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530214 '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 Haitc865f222015-09-21 09:18:43 +0530218 'name': d.name,
Nabin Haitb445be32015-09-21 10:56:02 +0530219 'target_warehouse': d.target_warehouse
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530220 }))
221 return il
Anand Doshid2946502014-04-08 20:10:03 +0530222
Neil Trini Lasradoed8cecb2015-07-07 13:59:23 +0530223 def has_product_bundle(self, item_code):
224 return frappe.db.sql("""select name from `tabProduct Bundle`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530225 where new_item_code=%s and docstatus != 2""", item_code)
Anand Doshid2946502014-04-08 20:10:03 +0530226
Nabin Hait453cc372015-07-29 12:21:03 +0530227 def get_already_delivered_qty(self, current_docname, so, so_detail):
228 delivered_via_dn = frappe.db.sql("""select sum(qty) from `tabDelivery Note Item`
ankitjavalkarworke69a6112014-10-08 12:46:02 +0530229 where so_detail = %s and docstatus = 1
Anand Doshid2946502014-04-08 20:10:03 +0530230 and against_sales_order = %s
Nabin Hait453cc372015-07-29 12:21:03 +0530231 and parent != %s""", (so_detail, so, current_docname))
Anand Doshi01de9452016-01-26 16:22:50 +0530232
233 delivered_via_si = frappe.db.sql("""select sum(si_item.qty)
Nabin Hait18267912015-08-17 15:36:23 +0530234 from `tabSales Invoice Item` si_item, `tabSales Invoice` si
Anand Doshi602e8252015-11-16 19:05:46 +0530235 where si_item.parent = si.name and si.update_stock = 1
Anand Doshi01de9452016-01-26 16:22:50 +0530236 and si_item.so_detail = %s and si.docstatus = 1
Nabin Hait18267912015-08-17 15:36:23 +0530237 and si_item.sales_order = %s
238 and si.name != %s""", (so_detail, so, current_docname))
Anand Doshi01de9452016-01-26 16:22:50 +0530239
Nabin Hait453cc372015-07-29 12:21:03 +0530240 total_delivered_qty = (flt(delivered_via_dn[0][0]) if delivered_via_dn else 0) \
241 + (flt(delivered_via_si[0][0]) if delivered_via_si else 0)
Anand Doshi01de9452016-01-26 16:22:50 +0530242
Nabin Hait453cc372015-07-29 12:21:03 +0530243 return total_delivered_qty
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530244
245 def get_so_qty_and_warehouse(self, so_detail):
Anand Doshie9baaa62014-02-26 12:35:33 +0530246 so_item = frappe.db.sql("""select qty, warehouse from `tabSales Order Item`
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530247 where name = %s and docstatus = 1""", so_detail, as_dict=1)
248 so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
Nabin Haita7f757a2014-02-10 17:54:04 +0530249 so_warehouse = so_item and so_item[0]["warehouse"] or ""
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530250 return so_qty, so_warehouse
Anand Doshid2946502014-04-08 20:10:03 +0530251
patilsangrambf2b5112016-02-22 16:24:23 +0530252 def check_close_sales_order(self, ref_fieldname):
Nabin Haitdd38a262014-12-26 13:15:21 +0530253 for d in self.get("items"):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530254 if d.get(ref_fieldname):
Rushabh Mehtaf2227d02014-03-31 23:37:40 +0530255 status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
patilsangrambf2b5112016-02-22 16:24:23 +0530256 if status == "Closed":
Saurabh8a8ef852015-10-21 19:28:53 +0530257 frappe.throw(_("Sales Order {0} is {1}").format(d.get(ref_fieldname), status))
shreyas1cfe2d72016-10-19 18:36:12 +0530258
Nabin Hait14aa9c52016-04-18 15:54:01 +0530259 def update_reserved_qty(self):
260 so_map = {}
261 for d in self.get("items"):
262 if d.so_detail:
263 if self.doctype == "Delivery Note" and d.against_sales_order:
264 so_map.setdefault(d.against_sales_order, []).append(d.so_detail)
265 elif self.doctype == "Sales Invoice" and d.sales_order and self.update_stock:
266 so_map.setdefault(d.sales_order, []).append(d.so_detail)
267
268 for so, so_item_rows in so_map.items():
269 if so and so_item_rows:
270 sales_order = frappe.get_doc("Sales Order", so)
271
272 if sales_order.status in ["Closed", "Cancelled"]:
273 frappe.throw(_("{0} {1} is cancelled or closed").format(_("Sales Order"), so),
274 frappe.InvalidStatusError)
275
276 sales_order.update_reserved_qty(so_item_rows)
277
278 def update_stock_ledger(self):
279 self.update_reserved_qty()
280
281 sl_entries = []
282 for d in self.get_item_list():
283 if frappe.db.get_value("Item", d.item_code, "is_stock_item") == 1 and flt(d.qty):
284 return_rate = 0
285 if cint(self.is_return) and self.return_against and self.docstatus==1:
286 return_rate = self.get_incoming_rate_for_sales_return(d.item_code, self.return_against)
287
288 # On cancellation or if return entry submission, make stock ledger entry for
289 # target warehouse first, to update serial no values properly
290
291 if d.warehouse and ((not cint(self.is_return) and self.docstatus==1)
292 or (cint(self.is_return) and self.docstatus==2)):
293 sl_entries.append(self.get_sl_entries(d, {
294 "actual_qty": -1*flt(d.qty),
295 "incoming_rate": return_rate
296 }))
297
298 if d.target_warehouse:
299 target_warehouse_sle = self.get_sl_entries(d, {
300 "actual_qty": flt(d.qty),
301 "warehouse": d.target_warehouse
302 })
303
304 if self.docstatus == 1:
305 if not cint(self.is_return):
306 args = frappe._dict({
307 "item_code": d.item_code,
308 "warehouse": d.warehouse,
309 "posting_date": self.posting_date,
310 "posting_time": self.posting_time,
311 "qty": -1*flt(d.qty),
312 "serial_no": d.serial_no
313 })
314 target_warehouse_sle.update({
315 "incoming_rate": get_incoming_rate(args)
316 })
317 else:
318 target_warehouse_sle.update({
319 "outgoing_rate": return_rate
320 })
321 sl_entries.append(target_warehouse_sle)
322
323 if d.warehouse and ((not cint(self.is_return) and self.docstatus==2)
324 or (cint(self.is_return) and self.docstatus==1)):
325 sl_entries.append(self.get_sl_entries(d, {
326 "actual_qty": -1*flt(d.qty),
327 "incoming_rate": return_rate
328 }))
329
330 self.make_sl_entries(sl_entries)
Anand Doshid2946502014-04-08 20:10:03 +0530331
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530332def check_active_sales_items(obj):
Nabin Haitdd38a262014-12-26 13:15:21 +0530333 for d in obj.get("items"):
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530334 if d.item_code:
Umair Sayyed72534de2016-04-15 12:52:12 +0530335 item = frappe.db.sql("""select docstatus,
Anand Doshi01de9452016-01-26 16:22:50 +0530336 income_account from tabItem where name = %s""",
Nabin Haitd1fd1e22013-10-18 12:29:11 +0530337 d.item_code, as_dict=True)[0]
shreyas1cfe2d72016-10-19 18:36:12 +0530338
Nabin Hait365ae272014-04-03 17:38:54 +0530339 if getattr(d, "income_account", None) and not item.income_account:
Anand Doshid2946502014-04-08 20:10:03 +0530340 frappe.db.set_value("Item", d.item_code, "income_account",
Nabin Hait89ad6f22013-10-18 12:55:59 +0530341 d.income_account)