2015-03-03 14:55:30 +05:30
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-08-05 14:59:54 +05:30
|
|
|
# License: GNU General Public License v3. See license.txt
|
2013-01-22 11:53:14 +05:30
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
2014-02-14 15:47:51 +05:30
|
|
|
import frappe
|
2015-02-17 11:11:11 +05:30
|
|
|
from frappe.utils import cint, flt, cstr, comma_or
|
2013-12-12 19:12:19 +05:30
|
|
|
from erpnext.setup.utils import get_company_currency
|
2014-04-14 19:20:45 +05:30
|
|
|
from frappe import _, throw
|
2014-07-29 16:07:43 +05:30
|
|
|
from erpnext.stock.get_item_details import get_available_qty
|
2013-01-22 11:53:14 +05:30
|
|
|
|
2013-12-12 19:12:19 +05:30
|
|
|
from erpnext.controllers.stock_controller import StockController
|
2013-01-30 12:49:08 +05:30
|
|
|
|
2013-03-19 12:01:24 +05:30
|
|
|
class SellingController(StockController):
|
2014-07-18 16:39:31 +05:30
|
|
|
def __setup__(self):
|
2015-02-23 01:06:00 +05:30
|
|
|
if hasattr(self, "taxes"):
|
2015-02-03 17:55:52 +05:30
|
|
|
self.print_templates = {
|
|
|
|
"taxes": "templates/print_formats/includes/taxes.html"
|
2014-07-21 18:25:45 +05:30
|
|
|
}
|
2014-07-18 16:39:31 +05:30
|
|
|
|
2014-09-09 16:15:35 +05:30
|
|
|
def get_feed(self):
|
|
|
|
return _("To {0} | {1} {2}").format(self.customer_name, self.currency,
|
2015-02-12 16:09:11 +05:30
|
|
|
self.grand_total)
|
2014-09-09 16:15:35 +05:30
|
|
|
|
2014-07-29 16:07:43 +05:30
|
|
|
def onload(self):
|
|
|
|
if self.doctype in ("Sales Order", "Delivery Note", "Sales Invoice"):
|
2014-12-26 13:15:21 +05:30
|
|
|
for item in self.get("items"):
|
2014-07-29 16:07:43 +05:30
|
|
|
item.update(get_available_qty(item.item_code,
|
|
|
|
item.warehouse))
|
|
|
|
|
2013-10-18 12:29:11 +05:30
|
|
|
def validate(self):
|
|
|
|
super(SellingController, self).validate()
|
|
|
|
self.validate_max_discount()
|
|
|
|
check_active_sales_items(self)
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2014-08-27 16:46:33 +05:30
|
|
|
def check_credit_limit(self):
|
|
|
|
from erpnext.selling.doctype.customer.customer import check_credit_limit
|
|
|
|
check_credit_limit(self.customer, self.company)
|
|
|
|
|
2013-05-21 19:35:06 +05:30
|
|
|
def set_missing_values(self, for_validate=False):
|
2013-06-14 17:44:03 +05:30
|
|
|
super(SellingController, self).set_missing_values(for_validate)
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-05-21 19:35:06 +05:30
|
|
|
# set contact and address details for customer, if they are not mentioned
|
2013-06-14 17:44:03 +05:30
|
|
|
self.set_missing_lead_customer_details()
|
2013-10-17 17:01:14 +05:30
|
|
|
self.set_price_list_and_item_details()
|
2014-03-28 13:55:00 +05:30
|
|
|
if self.get("__islocal"):
|
2014-12-25 16:01:55 +05:30
|
|
|
self.set_taxes("taxes", "taxes_and_charges")
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-06-14 17:44:03 +05:30
|
|
|
def set_missing_lead_customer_details(self):
|
2014-04-03 14:30:42 +05:30
|
|
|
if getattr(self, "customer", None):
|
2014-02-25 15:42:16 +05:30
|
|
|
from erpnext.accounts.party import _get_party_details
|
2015-02-26 15:01:23 +05:30
|
|
|
party_details = _get_party_details(self.customer,
|
|
|
|
ignore_permissions=self.flags.ignore_permissions)
|
2014-05-02 15:45:10 +05:30
|
|
|
if not self.meta.get_field("sales_team"):
|
|
|
|
party_details.pop("sales_team")
|
|
|
|
|
|
|
|
self.update_if_missing(party_details)
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2014-04-03 14:30:42 +05:30
|
|
|
elif getattr(self, "lead", None):
|
2015-02-17 10:36:54 +05:30
|
|
|
from erpnext.crm.doctype.lead.lead import get_lead_details
|
2014-03-28 13:55:00 +05:30
|
|
|
self.update_if_missing(get_lead_details(self.lead))
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-10-17 17:01:14 +05:30
|
|
|
def set_price_list_and_item_details(self):
|
|
|
|
self.set_price_list_currency("Selling")
|
2014-02-11 16:14:52 +05:30
|
|
|
self.set_missing_item_details()
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-07-04 17:13:53 +05:30
|
|
|
def apply_shipping_rule(self):
|
2014-03-28 13:55:00 +05:30
|
|
|
if self.shipping_rule:
|
2014-03-28 16:44:37 +05:30
|
|
|
shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
|
2015-02-12 16:09:11 +05:30
|
|
|
value = self.base_net_total
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-07-04 17:13:53 +05:30
|
|
|
# TODO
|
|
|
|
# shipping rule calculation based on item's net weight
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-07-04 17:13:53 +05:30
|
|
|
shipping_amount = 0.0
|
2014-12-25 16:01:55 +05:30
|
|
|
for condition in shipping_rule.get("conditions"):
|
2013-07-04 17:13:53 +05:30
|
|
|
if not condition.to_value or (flt(condition.from_value) <= value <= flt(condition.to_value)):
|
|
|
|
shipping_amount = condition.shipping_amount
|
|
|
|
break
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2014-04-18 01:30:14 +05:30
|
|
|
shipping_charge = {
|
2013-07-04 23:45:22 +05:30
|
|
|
"doctype": "Sales Taxes and Charges",
|
|
|
|
"charge_type": "Actual",
|
2014-03-28 13:55:00 +05:30
|
|
|
"account_head": shipping_rule.account,
|
2014-04-18 01:30:14 +05:30
|
|
|
"cost_center": shipping_rule.cost_center
|
|
|
|
}
|
|
|
|
|
2014-12-25 16:01:55 +05:30
|
|
|
existing_shipping_charge = self.get("taxes", filters=shipping_charge)
|
2014-04-18 01:30:14 +05:30
|
|
|
if existing_shipping_charge:
|
|
|
|
# take the last record found
|
|
|
|
existing_shipping_charge[-1].rate = shipping_amount
|
|
|
|
else:
|
|
|
|
shipping_charge["rate"] = shipping_amount
|
|
|
|
shipping_charge["description"] = shipping_rule.label
|
2014-12-25 16:01:55 +05:30
|
|
|
self.append("taxes", shipping_charge)
|
2014-04-18 01:30:14 +05:30
|
|
|
|
|
|
|
self.calculate_taxes_and_totals()
|
|
|
|
|
|
|
|
def remove_shipping_charge(self):
|
|
|
|
if self.shipping_rule:
|
|
|
|
shipping_rule = frappe.get_doc("Shipping Rule", self.shipping_rule)
|
2014-12-25 16:01:55 +05:30
|
|
|
existing_shipping_charge = self.get("taxes", {
|
2014-04-18 01:30:14 +05:30
|
|
|
"doctype": "Sales Taxes and Charges",
|
|
|
|
"charge_type": "Actual",
|
|
|
|
"account_head": shipping_rule.account,
|
|
|
|
"cost_center": shipping_rule.cost_center
|
2013-07-04 23:45:22 +05:30
|
|
|
})
|
2014-04-18 01:30:14 +05:30
|
|
|
if existing_shipping_charge:
|
2014-12-25 16:01:55 +05:30
|
|
|
self.get("taxes").remove(existing_shipping_charge[-1])
|
2014-04-18 01:30:14 +05:30
|
|
|
self.calculate_taxes_and_totals()
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-01-22 11:53:14 +05:30
|
|
|
def set_total_in_words(self):
|
2014-02-14 15:47:51 +05:30
|
|
|
from frappe.utils import money_in_words
|
2014-03-28 13:55:00 +05:30
|
|
|
company_currency = get_company_currency(self.company)
|
2014-04-08 20:10:03 +05:30
|
|
|
|
|
|
|
disable_rounded_total = cint(frappe.db.get_value("Global Defaults", None,
|
2013-02-20 16:25:05 +05:30
|
|
|
"disable_rounded_total"))
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2015-02-12 16:09:11 +05:30
|
|
|
if self.meta.get_field("base_in_words"):
|
|
|
|
self.base_in_words = money_in_words(disable_rounded_total and
|
|
|
|
self.base_grand_total or self.base_rounded_total, company_currency)
|
2013-01-22 11:53:14 +05:30
|
|
|
if self.meta.get_field("in_words"):
|
2014-04-08 20:10:03 +05:30
|
|
|
self.in_words = money_in_words(disable_rounded_total and
|
2015-02-12 16:09:11 +05:30
|
|
|
self.grand_total or self.rounded_total, self.currency)
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-05-21 19:35:06 +05:30
|
|
|
def calculate_commission(self):
|
2013-05-28 17:23:36 +05:30
|
|
|
if self.meta.get_field("commission_rate"):
|
2015-02-12 16:09:11 +05:30
|
|
|
self.round_floats_in(self, ["base_net_total", "commission_rate"])
|
2014-03-28 13:55:00 +05:30
|
|
|
if self.commission_rate > 100.0:
|
2014-04-14 19:20:45 +05:30
|
|
|
throw(_("Commission rate cannot be greater than 100"))
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2015-02-12 16:09:11 +05:30
|
|
|
self.total_commission = flt(self.base_net_total * self.commission_rate / 100.0,
|
2013-05-28 17:23:36 +05:30
|
|
|
self.precision("total_commission"))
|
2013-05-21 19:35:06 +05:30
|
|
|
|
|
|
|
def calculate_contribution(self):
|
2014-04-18 01:30:14 +05:30
|
|
|
if not self.meta.get_field("sales_team"):
|
|
|
|
return
|
|
|
|
|
2013-05-21 19:35:06 +05:30
|
|
|
total = 0.0
|
2014-03-27 16:12:56 +05:30
|
|
|
sales_team = self.get("sales_team")
|
2013-05-21 19:35:06 +05:30
|
|
|
for sales_person in sales_team:
|
|
|
|
self.round_floats_in(sales_person)
|
|
|
|
|
|
|
|
sales_person.allocated_amount = flt(
|
2015-02-12 16:09:11 +05:30
|
|
|
self.base_net_total * sales_person.allocated_percentage / 100.0,
|
2013-05-21 19:35:06 +05:30
|
|
|
self.precision("allocated_amount", sales_person))
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-05-21 19:35:06 +05:30
|
|
|
total += sales_person.allocated_percentage
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-05-21 19:35:06 +05:30
|
|
|
if sales_team and total != 100.0:
|
2014-04-14 19:20:45 +05:30
|
|
|
throw(_("Total allocated percentage for sales team should be 100"))
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-05-15 21:15:57 +05:30
|
|
|
def validate_order_type(self):
|
2013-06-14 17:44:03 +05:30
|
|
|
valid_types = ["Sales", "Maintenance", "Shopping Cart"]
|
2014-03-28 13:55:00 +05:30
|
|
|
if not self.order_type:
|
|
|
|
self.order_type = "Sales"
|
|
|
|
elif self.order_type not in valid_types:
|
2014-07-07 11:35:54 +05:30
|
|
|
throw(_("Order Type must be one of {0}").format(comma_or(valid_types)))
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-10-18 12:29:11 +05:30
|
|
|
def validate_max_discount(self):
|
2014-12-26 13:15:21 +05:30
|
|
|
for d in self.get("items"):
|
2014-02-26 12:35:33 +05:30
|
|
|
discount = flt(frappe.db.get_value("Item", d.item_code, "max_discount"))
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2014-02-10 17:54:04 +05:30
|
|
|
if discount and flt(d.discount_percentage) > discount:
|
2014-04-16 17:21:25 +05:30
|
|
|
frappe.throw(_("Maxiumm discount for Item {0} is {1}%").format(d.item_code, discount))
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-10-18 12:29:11 +05:30
|
|
|
def get_item_list(self):
|
|
|
|
il = []
|
2014-12-26 13:15:21 +05:30
|
|
|
for d in self.get("items"):
|
2014-02-11 16:14:52 +05:30
|
|
|
reserved_warehouse = ""
|
2013-10-18 12:29:11 +05:30
|
|
|
reserved_qty_for_main_item = 0
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2014-09-03 15:03:31 +08:00
|
|
|
if d.qty is None:
|
2014-08-18 15:40:15 +05:30
|
|
|
frappe.throw(_("Row {0}: Qty is mandatory").format(d.idx))
|
|
|
|
|
2014-03-28 13:55:00 +05:30
|
|
|
if self.doctype == "Sales Order":
|
2014-04-08 20:10:03 +05:30
|
|
|
if (frappe.db.get_value("Item", d.item_code, "is_stock_item") == 'Yes' or
|
2014-02-10 17:54:04 +05:30
|
|
|
self.has_sales_bom(d.item_code)) and not d.warehouse:
|
2014-05-02 16:12:07 +05:30
|
|
|
frappe.throw(_("Reserved Warehouse required for stock Item {0} in row {1}").format(d.item_code, d.idx))
|
2014-02-11 16:14:52 +05:30
|
|
|
reserved_warehouse = d.warehouse
|
2013-10-18 12:29:11 +05:30
|
|
|
if flt(d.qty) > flt(d.delivered_qty):
|
|
|
|
reserved_qty_for_main_item = flt(d.qty) - flt(d.delivered_qty)
|
2014-04-08 20:10:03 +05:30
|
|
|
|
|
|
|
elif self.doctype == "Delivery Note" and d.against_sales_order:
|
2013-10-18 12:29:11 +05:30
|
|
|
# if SO qty is 10 and there is tolerance of 20%, then it will allow DN of 12.
|
|
|
|
# But in this case reserved qty should only be reduced by 10 and not 12
|
2014-04-08 20:10:03 +05:30
|
|
|
|
|
|
|
already_delivered_qty = self.get_already_delivered_qty(self.name,
|
2014-10-08 12:46:02 +05:30
|
|
|
d.against_sales_order, d.so_detail)
|
|
|
|
so_qty, reserved_warehouse = self.get_so_qty_and_warehouse(d.so_detail)
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-10-18 12:29:11 +05:30
|
|
|
if already_delivered_qty + d.qty > so_qty:
|
|
|
|
reserved_qty_for_main_item = -(so_qty - already_delivered_qty)
|
|
|
|
else:
|
|
|
|
reserved_qty_for_main_item = -flt(d.qty)
|
|
|
|
|
|
|
|
if self.has_sales_bom(d.item_code):
|
2014-12-25 16:01:55 +05:30
|
|
|
for p in self.get("packed_items"):
|
2013-10-18 12:29:11 +05:30
|
|
|
if p.parent_detail_docname == d.name and p.parent_item == d.item_code:
|
|
|
|
# the packing details table's qty is already multiplied with parent's qty
|
2014-02-14 15:47:51 +05:30
|
|
|
il.append(frappe._dict({
|
2013-10-18 12:29:11 +05:30
|
|
|
'warehouse': p.warehouse,
|
2014-02-11 16:14:52 +05:30
|
|
|
'reserved_warehouse': reserved_warehouse,
|
2013-10-18 12:29:11 +05:30
|
|
|
'item_code': p.item_code,
|
|
|
|
'qty': flt(p.qty),
|
|
|
|
'reserved_qty': (flt(p.qty)/flt(d.qty)) * reserved_qty_for_main_item,
|
|
|
|
'uom': p.uom,
|
|
|
|
'batch_no': cstr(p.batch_no).strip(),
|
|
|
|
'serial_no': cstr(p.serial_no).strip(),
|
|
|
|
'name': d.name
|
|
|
|
}))
|
|
|
|
else:
|
2014-02-14 15:47:51 +05:30
|
|
|
il.append(frappe._dict({
|
2013-10-18 12:29:11 +05:30
|
|
|
'warehouse': d.warehouse,
|
2014-02-11 16:14:52 +05:30
|
|
|
'reserved_warehouse': reserved_warehouse,
|
2013-10-18 12:29:11 +05:30
|
|
|
'item_code': d.item_code,
|
|
|
|
'qty': d.qty,
|
|
|
|
'reserved_qty': reserved_qty_for_main_item,
|
|
|
|
'uom': d.stock_uom,
|
2015-02-20 13:09:39 +05:30
|
|
|
'stock_uom': d.stock_uom,
|
2014-04-07 12:02:57 +05:30
|
|
|
'batch_no': cstr(d.get("batch_no")).strip(),
|
|
|
|
'serial_no': cstr(d.get("serial_no")).strip(),
|
2013-10-18 12:29:11 +05:30
|
|
|
'name': d.name
|
|
|
|
}))
|
|
|
|
return il
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-10-18 12:29:11 +05:30
|
|
|
def has_sales_bom(self, item_code):
|
2014-04-08 20:10:03 +05:30
|
|
|
return frappe.db.sql("""select name from `tabSales BOM`
|
2013-10-18 12:29:11 +05:30
|
|
|
where new_item_code=%s and docstatus != 2""", item_code)
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-10-18 12:29:11 +05:30
|
|
|
def get_already_delivered_qty(self, dn, so, so_detail):
|
2014-04-08 20:10:03 +05:30
|
|
|
qty = frappe.db.sql("""select sum(qty) from `tabDelivery Note Item`
|
2014-10-08 12:46:02 +05:30
|
|
|
where so_detail = %s and docstatus = 1
|
2014-04-08 20:10:03 +05:30
|
|
|
and against_sales_order = %s
|
2013-10-18 12:29:11 +05:30
|
|
|
and parent != %s""", (so_detail, so, dn))
|
|
|
|
return qty and flt(qty[0][0]) or 0.0
|
|
|
|
|
|
|
|
def get_so_qty_and_warehouse(self, so_detail):
|
2014-02-26 12:35:33 +05:30
|
|
|
so_item = frappe.db.sql("""select qty, warehouse from `tabSales Order Item`
|
2013-10-18 12:29:11 +05:30
|
|
|
where name = %s and docstatus = 1""", so_detail, as_dict=1)
|
|
|
|
so_qty = so_item and flt(so_item[0]["qty"]) or 0.0
|
2014-02-10 17:54:04 +05:30
|
|
|
so_warehouse = so_item and so_item[0]["warehouse"] or ""
|
2013-10-18 12:29:11 +05:30
|
|
|
return so_qty, so_warehouse
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-10-18 12:29:11 +05:30
|
|
|
def check_stop_sales_order(self, ref_fieldname):
|
2014-12-26 13:15:21 +05:30
|
|
|
for d in self.get("items"):
|
2014-03-28 13:55:00 +05:30
|
|
|
if d.get(ref_fieldname):
|
2014-03-31 23:37:40 +05:30
|
|
|
status = frappe.db.get_value("Sales Order", d.get(ref_fieldname), "status")
|
2013-10-18 12:29:11 +05:30
|
|
|
if status == "Stopped":
|
2014-04-15 16:30:55 +05:30
|
|
|
frappe.throw(_("Sales Order {0} is stopped").format(d.get(ref_fieldname)))
|
2014-04-08 20:10:03 +05:30
|
|
|
|
2013-10-18 12:29:11 +05:30
|
|
|
def check_active_sales_items(obj):
|
2014-12-26 13:15:21 +05:30
|
|
|
for d in obj.get("items"):
|
2013-10-18 12:29:11 +05:30
|
|
|
if d.item_code:
|
2014-04-08 20:10:03 +05:30
|
|
|
item = frappe.db.sql("""select docstatus, is_sales_item,
|
|
|
|
is_service_item, income_account from tabItem where name = %s""",
|
2013-10-18 12:29:11 +05:30
|
|
|
d.item_code, as_dict=True)[0]
|
|
|
|
if item.is_sales_item == 'No' and item.is_service_item == 'No':
|
2014-04-16 17:21:25 +05:30
|
|
|
frappe.throw(_("Item {0} must be Sales or Service Item in {1}").format(d.item_code, d.idx))
|
2014-04-03 17:38:54 +05:30
|
|
|
if getattr(d, "income_account", None) and not item.income_account:
|
2014-04-08 20:10:03 +05:30
|
|
|
frappe.db.set_value("Item", d.item_code, "income_account",
|
2013-10-18 12:55:59 +05:30
|
|
|
d.income_account)
|