2015-03-03 09:25:30 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2014-10-21 10:46:30 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
|
|
from frappe import throw, _
|
|
|
|
import frappe.defaults
|
2016-03-23 06:29:24 +00:00
|
|
|
from frappe.utils import cint, flt, get_fullname, cstr
|
2017-06-13 09:56:35 +00:00
|
|
|
from frappe.contacts.doctype.address.address import get_address_display
|
2015-07-13 10:53:42 +00:00
|
|
|
from erpnext.shopping_cart.doctype.shopping_cart_settings.shopping_cart_settings import get_shopping_cart_settings
|
2014-10-21 10:46:30 +00:00
|
|
|
from frappe.utils.nestedset import get_root_of
|
2016-03-18 09:35:50 +00:00
|
|
|
from erpnext.accounts.utils import get_account_name
|
2017-11-16 13:08:13 +00:00
|
|
|
from erpnext.utilities.product import get_qty_in_stock
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2017-09-25 11:10:02 +00:00
|
|
|
|
|
|
|
class WebsitePriceListMissingError(frappe.ValidationError):
|
|
|
|
pass
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
def set_cart_count(quotation=None):
|
2015-06-01 11:45:42 +00:00
|
|
|
if cint(frappe.db.get_singles_value("Shopping Cart Settings", "enabled")):
|
|
|
|
if not quotation:
|
|
|
|
quotation = _get_cart_quotation()
|
|
|
|
cart_count = cstr(len(quotation.get("items")))
|
2015-09-23 07:16:59 +00:00
|
|
|
|
|
|
|
if hasattr(frappe.local, "cookie_manager"):
|
|
|
|
frappe.local.cookie_manager.set_cookie("cart_count", cart_count)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
@frappe.whitelist()
|
|
|
|
def get_cart_quotation(doc=None):
|
2016-04-04 13:19:26 +00:00
|
|
|
party = get_party()
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
if not doc:
|
|
|
|
quotation = _get_cart_quotation(party)
|
|
|
|
doc = quotation
|
|
|
|
set_cart_count(quotation)
|
|
|
|
|
2017-03-22 10:44:43 +00:00
|
|
|
addresses = get_address_docs(party=party)
|
|
|
|
|
2017-11-20 05:52:18 +00:00
|
|
|
if not doc.customer_address and addresses:
|
|
|
|
update_cart_address("customer_address", addresses[0].name)
|
|
|
|
|
2014-10-21 10:46:30 +00:00
|
|
|
return {
|
|
|
|
"doc": decorate_quotation_doc(doc),
|
2017-03-22 10:44:43 +00:00
|
|
|
"shipping_addresses": [{"name": address.name, "display": address.display}
|
2017-11-20 05:52:18 +00:00
|
|
|
for address in addresses],
|
2017-03-22 10:44:43 +00:00
|
|
|
"billing_addresses": [{"name": address.name, "display": address.display}
|
2017-11-20 05:52:18 +00:00
|
|
|
for address in addresses],
|
2014-10-21 10:46:30 +00:00
|
|
|
"shipping_rules": get_applicable_shipping_rules(party)
|
|
|
|
}
|
|
|
|
|
|
|
|
@frappe.whitelist()
|
|
|
|
def place_order():
|
|
|
|
quotation = _get_cart_quotation()
|
|
|
|
quotation.company = frappe.db.get_value("Shopping Cart Settings", None, "company")
|
2017-11-20 05:52:18 +00:00
|
|
|
if not quotation.get("customer_address"):
|
|
|
|
throw(_("{0} is required").format(_(quotation.meta.get_label("customer_address"))))
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2015-02-10 09:11:27 +00:00
|
|
|
quotation.flags.ignore_permissions = True
|
2014-10-21 10:46:30 +00:00
|
|
|
quotation.submit()
|
|
|
|
|
|
|
|
if quotation.lead:
|
|
|
|
# company used to create customer accounts
|
|
|
|
frappe.defaults.set_user_default("company", quotation.company)
|
|
|
|
|
|
|
|
from erpnext.selling.doctype.quotation.quotation import _make_sales_order
|
|
|
|
sales_order = frappe.get_doc(_make_sales_order(quotation.name, ignore_permissions=True))
|
2014-12-25 10:31:55 +00:00
|
|
|
for item in sales_order.get("items"):
|
2014-10-21 10:46:30 +00:00
|
|
|
item.reserved_warehouse = frappe.db.get_value("Item", item.item_code, "website_warehouse") or None
|
2017-11-16 13:08:13 +00:00
|
|
|
item_stock = get_qty_in_stock(item.item_code, "website_warehouse")
|
|
|
|
if item.qty > item_stock.stock_qty[0][0]:
|
|
|
|
throw(_("Only {0} in stock for item {1}").format(item_stock.stock_qty[0][0], item.item_code))
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2015-02-10 09:11:27 +00:00
|
|
|
sales_order.flags.ignore_permissions = True
|
2014-10-21 10:46:30 +00:00
|
|
|
sales_order.insert()
|
|
|
|
sales_order.submit()
|
2015-09-23 07:16:59 +00:00
|
|
|
|
|
|
|
if hasattr(frappe.local, "cookie_manager"):
|
|
|
|
frappe.local.cookie_manager.delete_cookie("cart_count")
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
return sales_order.name
|
|
|
|
|
|
|
|
@frappe.whitelist()
|
2015-09-17 10:58:30 +00:00
|
|
|
def update_cart(item_code, qty, with_items=False):
|
2014-10-21 10:46:30 +00:00
|
|
|
quotation = _get_cart_quotation()
|
|
|
|
|
2017-06-20 07:21:32 +00:00
|
|
|
empty_card = False
|
2014-10-21 10:46:30 +00:00
|
|
|
qty = flt(qty)
|
|
|
|
if qty == 0:
|
2017-06-20 07:21:32 +00:00
|
|
|
quotation_items = quotation.get("items", {"item_code": ["!=", item_code]})
|
|
|
|
if quotation_items:
|
|
|
|
quotation.set("items", quotation_items)
|
|
|
|
else:
|
|
|
|
empty_card = True
|
|
|
|
|
2014-10-21 10:46:30 +00:00
|
|
|
else:
|
2014-12-25 10:31:55 +00:00
|
|
|
quotation_items = quotation.get("items", {"item_code": item_code})
|
2014-10-21 10:46:30 +00:00
|
|
|
if not quotation_items:
|
2014-12-25 10:31:55 +00:00
|
|
|
quotation.append("items", {
|
2014-10-21 10:46:30 +00:00
|
|
|
"doctype": "Quotation Item",
|
|
|
|
"item_code": item_code,
|
|
|
|
"qty": qty
|
|
|
|
})
|
|
|
|
else:
|
|
|
|
quotation_items[0].qty = qty
|
|
|
|
|
|
|
|
apply_cart_settings(quotation=quotation)
|
|
|
|
|
2015-09-23 10:13:09 +00:00
|
|
|
quotation.flags.ignore_permissions = True
|
2017-09-25 11:10:02 +00:00
|
|
|
quotation.payment_schedule = []
|
2017-06-20 07:21:32 +00:00
|
|
|
if not empty_card:
|
|
|
|
quotation.save()
|
|
|
|
else:
|
|
|
|
quotation.delete()
|
|
|
|
quotation = None
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
set_cart_count(quotation)
|
|
|
|
|
2016-05-02 06:13:44 +00:00
|
|
|
context = get_cart_quotation(quotation)
|
2016-05-16 06:06:08 +00:00
|
|
|
|
2016-05-02 06:13:44 +00:00
|
|
|
if cint(with_items):
|
2015-09-17 10:58:30 +00:00
|
|
|
return {
|
|
|
|
"items": frappe.render_template("templates/includes/cart/cart_items.html",
|
|
|
|
context),
|
|
|
|
"taxes": frappe.render_template("templates/includes/order/order_taxes.html",
|
|
|
|
context),
|
|
|
|
}
|
2014-10-21 10:46:30 +00:00
|
|
|
else:
|
2016-05-02 06:13:44 +00:00
|
|
|
return {
|
|
|
|
'name': quotation.name,
|
|
|
|
'shopping_cart_menu': get_shopping_cart_menu(context)
|
|
|
|
}
|
2016-05-16 06:06:08 +00:00
|
|
|
|
2016-05-02 06:13:44 +00:00
|
|
|
@frappe.whitelist()
|
|
|
|
def get_shopping_cart_menu(context=None):
|
|
|
|
if not context:
|
|
|
|
context = get_cart_quotation()
|
2016-05-16 06:06:08 +00:00
|
|
|
|
2016-05-02 06:13:44 +00:00
|
|
|
return frappe.render_template('templates/includes/cart/cart_dropdown.html', context)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
@frappe.whitelist()
|
|
|
|
def update_cart_address(address_fieldname, address_name):
|
|
|
|
quotation = _get_cart_quotation()
|
|
|
|
address_display = get_address_display(frappe.get_doc("Address", address_name).as_dict())
|
|
|
|
|
|
|
|
if address_fieldname == "shipping_address_name":
|
|
|
|
quotation.shipping_address_name = address_name
|
|
|
|
quotation.shipping_address = address_display
|
|
|
|
|
|
|
|
if not quotation.customer_address:
|
|
|
|
address_fieldname == "customer_address"
|
|
|
|
|
|
|
|
if address_fieldname == "customer_address":
|
|
|
|
quotation.customer_address = address_name
|
|
|
|
quotation.address_display = address_display
|
|
|
|
|
|
|
|
|
|
|
|
apply_cart_settings(quotation=quotation)
|
|
|
|
|
2015-02-10 09:11:27 +00:00
|
|
|
quotation.flags.ignore_permissions = True
|
2014-10-21 10:46:30 +00:00
|
|
|
quotation.save()
|
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
context = get_cart_quotation(quotation)
|
|
|
|
return {
|
|
|
|
"taxes": frappe.render_template("templates/includes/order/order_taxes.html",
|
|
|
|
context),
|
|
|
|
}
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
def guess_territory():
|
|
|
|
territory = None
|
|
|
|
geoip_country = frappe.session.get("session_country")
|
|
|
|
if geoip_country:
|
|
|
|
territory = frappe.db.get_value("Territory", geoip_country)
|
|
|
|
|
|
|
|
return territory or \
|
|
|
|
frappe.db.get_value("Shopping Cart Settings", None, "territory") or \
|
|
|
|
get_root_of("Territory")
|
|
|
|
|
2015-09-11 13:19:59 +00:00
|
|
|
def decorate_quotation_doc(doc):
|
2014-12-25 10:31:55 +00:00
|
|
|
for d in doc.get("items", []):
|
2015-09-11 13:19:59 +00:00
|
|
|
d.update(frappe.db.get_value("Item", d.item_code,
|
2016-06-23 12:55:50 +00:00
|
|
|
["thumbnail", "website_image", "description", "route"], as_dict=True))
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
return doc
|
|
|
|
|
2017-09-25 11:10:02 +00:00
|
|
|
|
2014-10-21 10:46:30 +00:00
|
|
|
def _get_cart_quotation(party=None):
|
2017-01-18 08:44:20 +00:00
|
|
|
'''Return the open Quotation of type "Shopping Cart" or make a new one'''
|
2014-10-21 10:46:30 +00:00
|
|
|
if not party:
|
2016-04-04 13:19:26 +00:00
|
|
|
party = get_party()
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2015-09-23 10:13:09 +00:00
|
|
|
quotation = frappe.get_all("Quotation", fields=["name"], filters=
|
|
|
|
{party.doctype.lower(): party.name, "order_type": "Shopping Cart", "docstatus": 0},
|
|
|
|
order_by="modified desc", limit_page_length=1)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
if quotation:
|
2015-09-23 10:13:09 +00:00
|
|
|
qdoc = frappe.get_doc("Quotation", quotation[0].name)
|
2014-10-21 10:46:30 +00:00
|
|
|
else:
|
|
|
|
qdoc = frappe.get_doc({
|
|
|
|
"doctype": "Quotation",
|
2015-07-13 10:53:42 +00:00
|
|
|
"naming_series": get_shopping_cart_settings().quotation_series or "QTN-CART-",
|
2014-10-21 10:46:30 +00:00
|
|
|
"quotation_to": party.doctype,
|
|
|
|
"company": frappe.db.get_value("Shopping Cart Settings", None, "company"),
|
|
|
|
"order_type": "Shopping Cart",
|
|
|
|
"status": "Draft",
|
|
|
|
"docstatus": 0,
|
|
|
|
"__islocal": 1,
|
|
|
|
(party.doctype.lower()): party.name
|
|
|
|
})
|
|
|
|
|
2017-01-16 06:49:07 +00:00
|
|
|
qdoc.contact_person = frappe.db.get_value("Contact", {"email_id": frappe.session.user})
|
2015-09-23 07:16:59 +00:00
|
|
|
qdoc.contact_email = frappe.session.user
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2015-02-10 09:11:27 +00:00
|
|
|
qdoc.flags.ignore_permissions = True
|
2014-10-21 10:46:30 +00:00
|
|
|
qdoc.run_method("set_missing_values")
|
|
|
|
apply_cart_settings(party, qdoc)
|
|
|
|
|
|
|
|
return qdoc
|
|
|
|
|
|
|
|
def update_party(fullname, company_name=None, mobile_no=None, phone=None):
|
2016-04-04 13:19:26 +00:00
|
|
|
party = get_party()
|
2015-09-23 07:16:59 +00:00
|
|
|
|
|
|
|
party.customer_name = company_name or fullname
|
|
|
|
party.customer_type == "Company" if company_name else "Individual"
|
|
|
|
|
2017-01-16 06:49:07 +00:00
|
|
|
contact_name = frappe.db.get_value("Contact", {"email_id": frappe.session.user})
|
2015-09-23 07:16:59 +00:00
|
|
|
contact = frappe.get_doc("Contact", contact_name)
|
|
|
|
contact.first_name = fullname
|
|
|
|
contact.last_name = None
|
|
|
|
contact.customer_name = party.customer_name
|
|
|
|
contact.mobile_no = mobile_no
|
|
|
|
contact.phone = phone
|
|
|
|
contact.flags.ignore_permissions = True
|
|
|
|
contact.save()
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
party_doc = frappe.get_doc(party.as_dict())
|
2015-02-10 09:11:27 +00:00
|
|
|
party_doc.flags.ignore_permissions = True
|
2014-10-21 10:46:30 +00:00
|
|
|
party_doc.save()
|
|
|
|
|
|
|
|
qdoc = _get_cart_quotation(party)
|
|
|
|
if not qdoc.get("__islocal"):
|
|
|
|
qdoc.customer_name = company_name or fullname
|
|
|
|
qdoc.run_method("set_missing_lead_customer_details")
|
2015-02-10 09:11:27 +00:00
|
|
|
qdoc.flags.ignore_permissions = True
|
2014-10-21 10:46:30 +00:00
|
|
|
qdoc.save()
|
|
|
|
|
|
|
|
def apply_cart_settings(party=None, quotation=None):
|
|
|
|
if not party:
|
2016-04-04 13:19:26 +00:00
|
|
|
party = get_party()
|
2014-10-21 10:46:30 +00:00
|
|
|
if not quotation:
|
|
|
|
quotation = _get_cart_quotation(party)
|
|
|
|
|
|
|
|
cart_settings = frappe.get_doc("Shopping Cart Settings")
|
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
set_price_list_and_rate(quotation, cart_settings)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
quotation.run_method("calculate_taxes_and_totals")
|
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
set_taxes(quotation, cart_settings)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
_apply_shipping_rule(party, quotation, cart_settings)
|
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
def set_price_list_and_rate(quotation, cart_settings):
|
2014-10-21 10:46:30 +00:00
|
|
|
"""set price list based on billing territory"""
|
2015-07-13 10:53:42 +00:00
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
_set_price_list(quotation, cart_settings)
|
2015-07-13 10:53:42 +00:00
|
|
|
|
2014-10-21 10:46:30 +00:00
|
|
|
# reset values
|
|
|
|
quotation.price_list_currency = quotation.currency = \
|
|
|
|
quotation.plc_conversion_rate = quotation.conversion_rate = None
|
2014-12-25 10:31:55 +00:00
|
|
|
for item in quotation.get("items"):
|
2014-10-21 10:46:30 +00:00
|
|
|
item.price_list_rate = item.discount_percentage = item.rate = item.amount = None
|
|
|
|
|
|
|
|
# refetch values
|
|
|
|
quotation.run_method("set_price_list_and_item_details")
|
|
|
|
|
2015-09-23 07:16:59 +00:00
|
|
|
if hasattr(frappe.local, "cookie_manager"):
|
|
|
|
# set it in cookies for using in product page
|
|
|
|
frappe.local.cookie_manager.set_cookie("selling_price_list", quotation.selling_price_list)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
def _set_price_list(quotation, cart_settings):
|
|
|
|
"""Set price list based on customer or shopping cart default"""
|
|
|
|
if quotation.selling_price_list:
|
|
|
|
return
|
|
|
|
|
2015-07-13 10:53:42 +00:00
|
|
|
# check if customer price list exists
|
|
|
|
selling_price_list = None
|
|
|
|
if quotation.customer:
|
2015-09-17 12:59:44 +00:00
|
|
|
from erpnext.accounts.party import get_default_price_list
|
|
|
|
selling_price_list = get_default_price_list(frappe.get_doc("Customer", quotation.customer))
|
2015-07-13 10:53:42 +00:00
|
|
|
|
|
|
|
# else check for territory based price list
|
|
|
|
if not selling_price_list:
|
2015-09-17 12:59:44 +00:00
|
|
|
selling_price_list = cart_settings.price_list
|
2015-07-13 10:53:42 +00:00
|
|
|
|
|
|
|
quotation.selling_price_list = selling_price_list
|
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
def set_taxes(quotation, cart_settings):
|
2014-10-21 10:46:30 +00:00
|
|
|
"""set taxes based on billing territory"""
|
2015-09-11 05:44:07 +00:00
|
|
|
from erpnext.accounts.party import set_taxes
|
2015-09-17 12:59:44 +00:00
|
|
|
|
2015-09-14 05:43:01 +00:00
|
|
|
customer_group = frappe.db.get_value("Customer", quotation.customer, "customer_group")
|
2015-09-17 12:59:44 +00:00
|
|
|
|
2015-09-11 05:44:07 +00:00
|
|
|
quotation.taxes_and_charges = set_taxes(quotation.customer, "Customer", \
|
2015-09-14 05:43:01 +00:00
|
|
|
quotation.transaction_date, quotation.company, customer_group, None, \
|
2015-09-11 05:44:07 +00:00
|
|
|
quotation.customer_address, quotation.shipping_address_name, 1)
|
|
|
|
#
|
|
|
|
# # clear table
|
2014-12-25 10:31:55 +00:00
|
|
|
quotation.set("taxes", [])
|
2015-09-11 05:44:07 +00:00
|
|
|
#
|
|
|
|
# # append taxes
|
2015-05-12 09:37:02 +00:00
|
|
|
quotation.append_taxes_from_master()
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2016-04-04 13:19:26 +00:00
|
|
|
def get_party(user=None):
|
2015-09-23 07:16:59 +00:00
|
|
|
if not user:
|
|
|
|
user = frappe.session.user
|
|
|
|
|
2017-01-16 06:49:07 +00:00
|
|
|
contact_name = frappe.db.get_value("Contact", {"email_id": user})
|
|
|
|
party = None
|
|
|
|
|
|
|
|
if contact_name:
|
|
|
|
contact = frappe.get_doc('Contact', contact_name)
|
|
|
|
if contact.links:
|
|
|
|
party_doctype = contact.links[0].link_doctype
|
|
|
|
party = contact.links[0].link_name
|
2016-04-04 13:19:26 +00:00
|
|
|
|
2016-02-22 09:48:40 +00:00
|
|
|
cart_settings = frappe.get_doc("Shopping Cart Settings")
|
2016-04-04 13:19:26 +00:00
|
|
|
|
2016-02-22 09:48:40 +00:00
|
|
|
debtors_account = ''
|
2016-04-04 13:19:26 +00:00
|
|
|
|
2016-02-22 09:48:40 +00:00
|
|
|
if cart_settings.enable_checkout:
|
|
|
|
debtors_account = get_debtors_account(cart_settings)
|
2016-04-04 13:19:26 +00:00
|
|
|
|
|
|
|
if party:
|
|
|
|
return frappe.get_doc(party_doctype, party)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
else:
|
2016-05-16 06:06:08 +00:00
|
|
|
if not cart_settings.enabled:
|
2017-05-18 07:11:19 +00:00
|
|
|
frappe.local.flags.redirect_location = "/contact"
|
|
|
|
raise frappe.Redirect
|
2015-09-23 07:16:59 +00:00
|
|
|
customer = frappe.new_doc("Customer")
|
|
|
|
fullname = get_fullname(user)
|
|
|
|
customer.update({
|
|
|
|
"customer_name": fullname,
|
|
|
|
"customer_type": "Individual",
|
|
|
|
"customer_group": get_shopping_cart_settings().default_customer_group,
|
|
|
|
"territory": get_root_of("Territory")
|
2014-10-21 10:46:30 +00:00
|
|
|
})
|
2016-04-04 13:19:26 +00:00
|
|
|
|
2016-02-22 09:48:40 +00:00
|
|
|
if debtors_account:
|
|
|
|
customer.update({
|
|
|
|
"accounts": [{
|
|
|
|
"company": cart_settings.company,
|
2016-03-18 09:35:50 +00:00
|
|
|
"account": debtors_account
|
2016-02-22 09:48:40 +00:00
|
|
|
}]
|
|
|
|
})
|
2016-04-04 13:19:26 +00:00
|
|
|
|
2015-10-20 13:27:27 +00:00
|
|
|
customer.flags.ignore_mandatory = True
|
2015-09-23 07:16:59 +00:00
|
|
|
customer.insert(ignore_permissions=True)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2015-09-23 07:16:59 +00:00
|
|
|
contact = frappe.new_doc("Contact")
|
|
|
|
contact.update({
|
|
|
|
"first_name": fullname,
|
|
|
|
"email_id": user
|
|
|
|
})
|
2017-01-16 06:49:07 +00:00
|
|
|
contact.append('links', dict(link_doctype='Customer', link_name=customer.name))
|
2015-10-20 13:27:27 +00:00
|
|
|
contact.flags.ignore_mandatory = True
|
2015-09-23 07:16:59 +00:00
|
|
|
contact.insert(ignore_permissions=True)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2015-09-23 07:16:59 +00:00
|
|
|
return customer
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2016-02-22 09:48:40 +00:00
|
|
|
def get_debtors_account(cart_settings):
|
|
|
|
payment_gateway_account_currency = \
|
|
|
|
frappe.get_doc("Payment Gateway Account", cart_settings.payment_gateway_account).currency
|
2016-04-04 13:19:26 +00:00
|
|
|
|
2016-02-22 09:48:40 +00:00
|
|
|
account_name = _("Debtors ({0})".format(payment_gateway_account_currency))
|
2016-04-04 13:19:26 +00:00
|
|
|
|
2016-03-18 09:35:50 +00:00
|
|
|
debtors_account_name = get_account_name("Receivable", "Asset", is_group=0,\
|
|
|
|
account_currency=payment_gateway_account_currency, company=cart_settings.company)
|
2016-04-04 13:19:26 +00:00
|
|
|
|
2016-03-18 09:35:50 +00:00
|
|
|
if not debtors_account_name:
|
2016-02-22 09:48:40 +00:00
|
|
|
debtors_account = frappe.get_doc({
|
|
|
|
"doctype": "Account",
|
|
|
|
"account_type": "Receivable",
|
|
|
|
"root_type": "Asset",
|
|
|
|
"is_group": 0,
|
2016-03-18 09:35:50 +00:00
|
|
|
"parent_account": get_account_name(root_type="Asset", is_group=1, company=cart_settings.company),
|
2016-02-22 09:48:40 +00:00
|
|
|
"account_name": account_name,
|
2016-04-04 13:19:26 +00:00
|
|
|
"currency": payment_gateway_account_currency
|
2016-02-22 09:48:40 +00:00
|
|
|
}).insert(ignore_permissions=True)
|
2016-04-04 13:19:26 +00:00
|
|
|
|
2016-03-18 09:35:50 +00:00
|
|
|
return debtors_account.name
|
2016-04-04 13:19:26 +00:00
|
|
|
|
2016-02-22 09:48:40 +00:00
|
|
|
else:
|
2016-03-18 09:35:50 +00:00
|
|
|
return debtors_account_name
|
2016-04-04 13:19:26 +00:00
|
|
|
|
2016-02-22 09:48:40 +00:00
|
|
|
|
2017-01-17 16:45:17 +00:00
|
|
|
def get_address_docs(doctype=None, txt=None, filters=None, limit_start=0, limit_page_length=20,
|
|
|
|
party=None):
|
2014-10-21 10:46:30 +00:00
|
|
|
if not party:
|
2016-04-04 13:19:26 +00:00
|
|
|
party = get_party()
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2016-05-16 06:06:08 +00:00
|
|
|
if not party:
|
|
|
|
return []
|
|
|
|
|
2017-01-17 06:36:31 +00:00
|
|
|
address_names = frappe.db.get_all('Dynamic Link', fields=('parent'),
|
2017-01-16 07:36:07 +00:00
|
|
|
filters=dict(parenttype='Address', link_doctype=party.doctype, link_name=party.name))
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2017-01-16 07:36:07 +00:00
|
|
|
out = []
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2017-01-17 16:45:17 +00:00
|
|
|
for a in address_names:
|
|
|
|
address = frappe.get_doc('Address', a.parent)
|
2017-01-16 07:36:07 +00:00
|
|
|
address.display = get_address_display(address.as_dict())
|
|
|
|
out.append(address)
|
|
|
|
|
|
|
|
return out
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
@frappe.whitelist()
|
|
|
|
def apply_shipping_rule(shipping_rule):
|
|
|
|
quotation = _get_cart_quotation()
|
|
|
|
|
|
|
|
quotation.shipping_rule = shipping_rule
|
|
|
|
|
|
|
|
apply_cart_settings(quotation=quotation)
|
|
|
|
|
2015-02-10 09:11:27 +00:00
|
|
|
quotation.flags.ignore_permissions = True
|
2014-10-21 10:46:30 +00:00
|
|
|
quotation.save()
|
|
|
|
|
|
|
|
return get_cart_quotation(quotation)
|
|
|
|
|
|
|
|
def _apply_shipping_rule(party=None, quotation=None, cart_settings=None):
|
2015-09-17 12:59:44 +00:00
|
|
|
if not quotation.shipping_rule:
|
|
|
|
shipping_rules = get_shipping_rules(quotation, cart_settings)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
if not shipping_rules:
|
|
|
|
return
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
elif quotation.shipping_rule not in shipping_rules:
|
|
|
|
quotation.shipping_rule = shipping_rules[0]
|
2014-10-21 10:46:30 +00:00
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
if quotation.shipping_rule:
|
|
|
|
quotation.run_method("apply_shipping_rule")
|
|
|
|
quotation.run_method("calculate_taxes_and_totals")
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
def get_applicable_shipping_rules(party=None, quotation=None):
|
2015-09-17 12:59:44 +00:00
|
|
|
shipping_rules = get_shipping_rules(quotation)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
if shipping_rules:
|
|
|
|
rule_label_map = frappe.db.get_values("Shipping Rule", shipping_rules, "label")
|
|
|
|
# we need this in sorted order as per the position of the rule in the settings page
|
|
|
|
return [[rule, rule_label_map.get(rule)] for rule in shipping_rules]
|
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
def get_shipping_rules(quotation=None, cart_settings=None):
|
2014-10-21 10:46:30 +00:00
|
|
|
if not quotation:
|
|
|
|
quotation = _get_cart_quotation()
|
|
|
|
|
2015-09-17 12:59:44 +00:00
|
|
|
shipping_rules = []
|
|
|
|
if quotation.shipping_address_name:
|
|
|
|
country = frappe.db.get_value("Address", quotation.shipping_address_name, "country")
|
|
|
|
if country:
|
|
|
|
shipping_rules = frappe.db.sql_list("""select distinct sr.name
|
|
|
|
from `tabShipping Rule Country` src, `tabShipping Rule` sr
|
|
|
|
where src.country = %s and
|
|
|
|
sr.disabled != 1 and sr.name = src.parent""", country)
|
2014-10-21 10:46:30 +00:00
|
|
|
|
|
|
|
return shipping_rules
|
|
|
|
|
|
|
|
def get_address_territory(address_name):
|
|
|
|
"""Tries to match city, state and country of address to existing territory"""
|
|
|
|
territory = None
|
|
|
|
|
|
|
|
if address_name:
|
|
|
|
address_fields = frappe.db.get_value("Address", address_name,
|
|
|
|
["city", "state", "country"])
|
|
|
|
for value in address_fields:
|
|
|
|
territory = frappe.db.get_value("Territory", value)
|
|
|
|
if territory:
|
|
|
|
break
|
|
|
|
|
|
|
|
return territory
|
2016-03-16 12:31:22 +00:00
|
|
|
|
|
|
|
def show_terms(doc):
|
2016-04-04 13:19:26 +00:00
|
|
|
return doc.tc_name
|