2014-01-28 12:13:10 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import webnotes
|
|
|
|
from webnotes import _
|
2014-02-03 10:44:56 +00:00
|
|
|
from webnotes.defaults import get_restrictions
|
|
|
|
from erpnext.utilities.doctype.address.address import get_address_display
|
|
|
|
from erpnext.utilities.doctype.contact.contact import get_contact_details
|
2014-01-28 12:13:10 +00:00
|
|
|
|
|
|
|
@webnotes.whitelist()
|
2014-02-03 10:44:56 +00:00
|
|
|
def get_party_details(party=None, account=None, party_type="Customer", company=None,
|
|
|
|
posting_date=None, price_list=None, currency=None):
|
|
|
|
out = webnotes._dict(set_account_and_due_date(party, account, party_type, company, posting_date))
|
|
|
|
|
|
|
|
party = out[party_type.lower()]
|
|
|
|
|
2014-01-28 12:13:10 +00:00
|
|
|
if not webnotes.has_permission(party_type, "read", party):
|
2014-02-03 10:44:56 +00:00
|
|
|
webnotes.throw("Not Permitted", webnotes.PermissionError)
|
|
|
|
|
|
|
|
party_bean = webnotes.bean(party_type, party)
|
|
|
|
party = party_bean.doc
|
|
|
|
|
|
|
|
set_address_and_contact(out, party, party_type)
|
|
|
|
set_other_values(out, party, party_type)
|
|
|
|
set_price_list(out, party, price_list)
|
|
|
|
|
|
|
|
if not out.get("currency"):
|
|
|
|
out["currency"] = currency
|
2014-01-28 12:13:10 +00:00
|
|
|
|
2014-02-03 10:44:56 +00:00
|
|
|
# sales team
|
2014-01-28 12:13:10 +00:00
|
|
|
if party_type=="Customer":
|
2014-02-03 10:44:56 +00:00
|
|
|
out["sales_team"] = [{
|
|
|
|
"sales_person": d.sales_person,
|
|
|
|
"sales_designation": d.sales_designation
|
|
|
|
} for d in party_bean.doclist.get({"doctype":"Sales Team"})]
|
|
|
|
|
|
|
|
return out
|
|
|
|
|
|
|
|
def set_address_and_contact(out, party, party_type):
|
|
|
|
out.update({
|
|
|
|
party_type.lower() + "_address": webnotes.conn.get_value("Address",
|
|
|
|
{party_type.lower(): party.name, "is_primary_address":1}, "name"),
|
|
|
|
"contact_person": webnotes.conn.get_value("Contact",
|
|
|
|
{party_type.lower(): party.name, "is_primary_contact":1}, "name")
|
|
|
|
})
|
|
|
|
|
|
|
|
# address display
|
|
|
|
out.address_display = get_address_display(out[party_type.lower() + "_address"])
|
|
|
|
|
|
|
|
# primary contact details
|
|
|
|
out.update(get_contact_details(out.contact_person))
|
|
|
|
|
|
|
|
|
|
|
|
def set_other_values(out, party, party_type):
|
|
|
|
# copy
|
|
|
|
if party_type=="Customer":
|
|
|
|
to_copy = ["customer_name", "customer_group", "territory"]
|
2014-01-28 12:13:10 +00:00
|
|
|
else:
|
2014-02-03 10:44:56 +00:00
|
|
|
to_copy = ["supplier_name", "supplier_type"]
|
|
|
|
for f in to_copy:
|
|
|
|
out[f] = party.get(f)
|
|
|
|
|
|
|
|
# fields prepended with default in Customer doctype
|
|
|
|
for f in ['currency', 'taxes_and_charges'] \
|
|
|
|
+ (['sales_partner', 'commission_rate'] if party_type=="Customer" else []):
|
|
|
|
if party.get("default_" + f):
|
|
|
|
out[f] = party.get("default_" + f)
|
|
|
|
|
|
|
|
def set_price_list(out, party, given_price_list):
|
|
|
|
# price list
|
|
|
|
price_list = get_restrictions().get("Price List")
|
|
|
|
if isinstance(price_list, list):
|
|
|
|
price_list = None
|
|
|
|
|
|
|
|
if not price_list:
|
|
|
|
price_list = party.default_price_list
|
|
|
|
|
|
|
|
if not price_list and party.party_type=="Customer":
|
|
|
|
price_list = webnotes.conn.get_value("Customer Group",
|
|
|
|
party.customer_group, "default_price_list")
|
|
|
|
|
|
|
|
if not price_list:
|
|
|
|
price_list = given_price_list
|
|
|
|
|
|
|
|
if price_list:
|
|
|
|
out.price_list_currency = webnotes.conn.get_value("Price List", price_list, "currency")
|
|
|
|
|
|
|
|
out["selling_price_list" if party.doctype=="Customer" else "buying_price_list"] = price_list
|
|
|
|
|
|
|
|
|
|
|
|
def set_account_and_due_date(party, account, party_type, company, posting_date):
|
|
|
|
if not posting_date:
|
|
|
|
# not an invoice
|
|
|
|
return {
|
|
|
|
party_type.lower(): party
|
|
|
|
}
|
|
|
|
|
2014-01-28 12:13:10 +00:00
|
|
|
if party:
|
|
|
|
account = get_party_account(company, party, party_type)
|
|
|
|
elif account:
|
|
|
|
party = webnotes.conn.get_value('Account', account, 'master_name')
|
|
|
|
|
|
|
|
account_fieldname = "debit_to" if party_type=="Customer" else "credit_to"
|
|
|
|
|
|
|
|
out = {
|
|
|
|
party_type.lower(): party,
|
|
|
|
account_fieldname : account,
|
|
|
|
"due_date": get_due_date(posting_date, party, party_type, account, company)
|
2014-02-03 10:44:56 +00:00
|
|
|
}
|
2014-01-28 12:13:10 +00:00
|
|
|
return out
|
|
|
|
|
|
|
|
def get_party_account(company, party, party_type):
|
|
|
|
if not company:
|
|
|
|
webnotes.throw(_("Please select company first."))
|
|
|
|
|
|
|
|
if party:
|
|
|
|
acc_head = webnotes.conn.get_value("Account", {"master_name":party,
|
|
|
|
"master_type": party_type, "company": company})
|
|
|
|
|
|
|
|
if not acc_head:
|
|
|
|
create_party_account(party, party_type, company)
|
|
|
|
|
|
|
|
return acc_head
|
|
|
|
|
|
|
|
def get_due_date(posting_date, party, party_type, account, company):
|
|
|
|
"""Set Due Date = Posting Date + Credit Days"""
|
|
|
|
due_date = None
|
|
|
|
if posting_date:
|
|
|
|
credit_days = 0
|
2014-01-29 09:56:04 +00:00
|
|
|
if account:
|
2014-01-28 12:13:10 +00:00
|
|
|
credit_days = webnotes.conn.get_value("Account", account, "credit_days")
|
|
|
|
if party and not credit_days:
|
|
|
|
credit_days = webnotes.conn.get_value(party_type, party, "credit_days")
|
|
|
|
if company and not credit_days:
|
|
|
|
credit_days = webnotes.conn.get_value("Company", company, "credit_days")
|
|
|
|
|
|
|
|
due_date = add_days(posting_date, credit_days) if credit_days else posting_date
|
|
|
|
|
|
|
|
return due_date
|
|
|
|
|
|
|
|
def create_party_account(party, party_type, company):
|
|
|
|
if not company:
|
|
|
|
webnotes.throw(_("Company is required"))
|
|
|
|
|
|
|
|
company_details = webnotes.conn.get_value("Company", company,
|
|
|
|
["abbr", "receivables_group", "payables_group"], as_dict=True)
|
2014-01-29 09:56:04 +00:00
|
|
|
if not webnotes.conn.exists("Account", (party + " - " + company_details.abbr)):
|
2014-01-28 12:13:10 +00:00
|
|
|
parent_account = company_details.receivables_group \
|
|
|
|
if party_type=="Customer" else company_details.payables_group
|
|
|
|
|
|
|
|
# create
|
|
|
|
account = webnotes.bean({
|
|
|
|
"doctype": "Account",
|
|
|
|
'account_name': party,
|
|
|
|
'parent_account': parent_account,
|
|
|
|
'group_or_ledger':'Ledger',
|
|
|
|
'company': company,
|
|
|
|
'master_type': party_type,
|
|
|
|
'master_name': party,
|
|
|
|
"freeze_account": "No"
|
|
|
|
}).insert(ignore_permissions=True)
|
|
|
|
|
2014-01-29 09:56:04 +00:00
|
|
|
webnotes.msgprint(_("Account Created") + ": " + account.doc.name)
|