Anand Doshi | 885e074 | 2015-03-03 14:55:30 +0530 | [diff] [blame] | 1 | # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 2 | # License: GNU General Public License v3. See license.txt |
| 3 | |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 4 | |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 5 | import frappe |
Nabin Hait | db030d1 | 2014-09-10 17:11:30 +0530 | [diff] [blame] | 6 | from frappe import _, msgprint, scrub |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 7 | from frappe.contacts.doctype.address.address import ( |
| 8 | get_address_display, |
| 9 | get_company_address, |
| 10 | get_default_address, |
| 11 | ) |
| 12 | from frappe.contacts.doctype.contact.contact import get_contact_details |
Suraj Shetty | 7ed37ae | 2018-12-19 19:56:42 +0530 | [diff] [blame] | 13 | from frappe.core.doctype.user_permission.user_permission import get_permitted_documents |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 14 | from frappe.model.utils import get_fetch_values |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 15 | from frappe.utils import ( |
| 16 | add_days, |
| 17 | add_months, |
| 18 | add_years, |
| 19 | cint, |
| 20 | cstr, |
| 21 | date_diff, |
| 22 | flt, |
| 23 | formatdate, |
| 24 | get_last_day, |
| 25 | get_timestamp, |
| 26 | getdate, |
| 27 | nowdate, |
| 28 | ) |
tunde | 4a263c7 | 2017-08-02 22:20:35 +0100 | [diff] [blame] | 29 | |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 30 | import erpnext |
| 31 | from erpnext import get_company_currency |
| 32 | from erpnext.accounts.utils import get_fiscal_year |
| 33 | from erpnext.exceptions import InvalidAccountCurrency, PartyDisabled, PartyFrozen |
| 34 | |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 35 | |
Anand Doshi | 248c867 | 2015-09-28 15:24:00 +0530 | [diff] [blame] | 36 | class DuplicatePartyAccountError(frappe.ValidationError): pass |
Nabin Hait | 1609933 | 2015-09-03 16:03:07 +0530 | [diff] [blame] | 37 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 38 | @frappe.whitelist() |
rohitwaghchaure | 3ffe896 | 2018-07-13 17:40:48 +0530 | [diff] [blame] | 39 | def get_party_details(party=None, account=None, party_type="Customer", company=None, posting_date=None, |
deepeshgarg007 | c48efab | 2019-01-24 17:15:38 +0530 | [diff] [blame] | 40 | bill_date=None, price_list=None, currency=None, doctype=None, ignore_permissions=False, fetch_payment_terms_template=True, |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 41 | party_address=None, company_address=None, shipping_address=None, pos_profile=None): |
Anand Doshi | 201dbbd | 2014-02-20 15:21:53 +0530 | [diff] [blame] | 42 | |
Rushabh Mehta | d7a5b73 | 2015-04-01 23:38:13 +0530 | [diff] [blame] | 43 | if not party: |
| 44 | return {} |
Nabin Hait | 5ef121b | 2015-06-08 12:26:52 +0530 | [diff] [blame] | 45 | if not frappe.db.exists(party_type, party): |
| 46 | frappe.throw(_("{0}: {1} does not exists").format(party_type, party)) |
Nabin Hait | 4d7c4fc | 2014-06-18 16:40:27 +0530 | [diff] [blame] | 47 | return _get_party_details(party, account, party_type, |
deepeshgarg007 | c48efab | 2019-01-24 17:15:38 +0530 | [diff] [blame] | 48 | company, posting_date, bill_date, price_list, currency, doctype, ignore_permissions, |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 49 | fetch_payment_terms_template, party_address, company_address, shipping_address, pos_profile) |
Anand Doshi | 201dbbd | 2014-02-20 15:21:53 +0530 | [diff] [blame] | 50 | |
rohitwaghchaure | 3ffe896 | 2018-07-13 17:40:48 +0530 | [diff] [blame] | 51 | def _get_party_details(party=None, account=None, party_type="Customer", company=None, posting_date=None, |
Shreya Shah | 5615cb4 | 2018-10-07 11:42:07 +0530 | [diff] [blame] | 52 | bill_date=None, price_list=None, currency=None, doctype=None, ignore_permissions=False, |
Deepesh Garg | 15ff6a5 | 2020-02-18 12:28:41 +0530 | [diff] [blame] | 53 | fetch_payment_terms_template=True, party_address=None, company_address=None, shipping_address=None, pos_profile=None): |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 54 | party_details = frappe._dict(set_account_and_due_date(party, account, party_type, company, posting_date, bill_date, doctype)) |
| 55 | party = party_details[party_type.lower()] |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 56 | |
Saurabh | 9dcb286 | 2021-02-01 20:36:15 +0530 | [diff] [blame] | 57 | if not ignore_permissions and not (frappe.has_permission(party_type, "read", party) or frappe.has_permission(party_type, "select", party)): |
Rushabh Mehta | 2d70887 | 2015-11-27 11:35:35 +0530 | [diff] [blame] | 58 | frappe.throw(_("Not permitted for {0}").format(party), frappe.PermissionError) |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 59 | |
Nabin Hait | 365ae27 | 2014-04-03 17:38:54 +0530 | [diff] [blame] | 60 | party = frappe.get_doc(party_type, party) |
Deepesh Garg | b72cdb4 | 2022-01-21 18:00:35 +0530 | [diff] [blame] | 61 | currency = party.get("default_currency") or currency or get_company_currency(company) |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 62 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 63 | party_address, shipping_address = set_address_details(party_details, party, party_type, doctype, company, party_address, company_address, shipping_address) |
Deepesh Garg | cf9347d | 2020-03-31 17:28:43 +0530 | [diff] [blame] | 64 | set_contact_details(party_details, party, party_type) |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 65 | set_other_values(party_details, party, party_type) |
| 66 | set_price_list(party_details, party, party_type, price_list, pos_profile) |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 67 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 68 | party_details["tax_category"] = get_address_tax_category(party.get("tax_category"), |
Saif Ur Rehman | fd531a6 | 2018-12-29 01:49:11 +0500 | [diff] [blame] | 69 | party_address, shipping_address if party_type != "Supplier" else party_address) |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 70 | |
Deepesh Garg | f12be30 | 2021-11-30 20:34:53 +0530 | [diff] [blame] | 71 | tax_template = set_taxes(party.name, party_type, posting_date, company, |
| 72 | customer_group=party_details.customer_group, supplier_group=party_details.supplier_group, tax_category=party_details.tax_category, |
| 73 | billing_address=party_address, shipping_address=shipping_address) |
| 74 | |
| 75 | if tax_template: |
| 76 | party_details['taxes_and_charges'] = tax_template |
rohitwaghchaure | 3ffe896 | 2018-07-13 17:40:48 +0530 | [diff] [blame] | 77 | |
Deepesh Garg | bcf56e6 | 2021-08-06 23:53:16 +0530 | [diff] [blame] | 78 | if cint(fetch_payment_terms_template): |
marination | fa085d7 | 2020-10-27 13:18:30 +0530 | [diff] [blame] | 79 | party_details["payment_terms_template"] = get_payment_terms_template(party.name, party_type, company) |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 80 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 81 | if not party_details.get("currency"): |
| 82 | party_details["currency"] = currency |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 83 | |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 84 | # sales team |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 85 | if party_type=="Customer": |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 86 | party_details["sales_team"] = [{ |
Anand Doshi | 4b72d05 | 2015-10-12 16:15:52 +0530 | [diff] [blame] | 87 | "sales_person": d.sales_person, |
Rohit Waghchaure | 4d4bfa2 | 2021-11-10 00:00:38 +0530 | [diff] [blame] | 88 | "allocated_percentage": d.allocated_percentage or None, |
| 89 | "commission_rate": d.commission_rate |
Nabin Hait | 365ae27 | 2014-04-03 17:38:54 +0530 | [diff] [blame] | 90 | } for d in party.get("sales_team")] |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 91 | |
Zarrar | 7f8024c | 2018-08-01 17:45:05 +0530 | [diff] [blame] | 92 | # supplier tax withholding category |
| 93 | if party_type == "Supplier" and party: |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 94 | party_details["supplier_tds"] = frappe.get_value(party_type, party.name, "tax_withholding_category") |
Zarrar | 7f8024c | 2018-08-01 17:45:05 +0530 | [diff] [blame] | 95 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 96 | return party_details |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 97 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 98 | def set_address_details(party_details, party, party_type, doctype=None, company=None, party_address=None, company_address=None, shipping_address=None): |
Nabin Hait | 9d1f077 | 2014-02-19 17:43:24 +0530 | [diff] [blame] | 99 | billing_address_field = "customer_address" if party_type == "Lead" \ |
| 100 | else party_type.lower() + "_address" |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 101 | party_details[billing_address_field] = party_address or get_default_address(party_type, party.name) |
Nabin Hait | 7eba1a3 | 2017-10-02 15:59:27 +0530 | [diff] [blame] | 102 | if doctype: |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 103 | party_details.update(get_fetch_values(doctype, billing_address_field, party_details[billing_address_field])) |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 104 | # address display |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 105 | party_details.address_display = get_address_display(party_details[billing_address_field]) |
Nabin Hait | 9d1f077 | 2014-02-19 17:43:24 +0530 | [diff] [blame] | 106 | # shipping address |
| 107 | if party_type in ["Customer", "Lead"]: |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 108 | party_details.shipping_address_name = shipping_address or get_party_shipping_address(party_type, party.name) |
| 109 | party_details.shipping_address = get_address_display(party_details["shipping_address_name"]) |
Nabin Hait | 7eba1a3 | 2017-10-02 15:59:27 +0530 | [diff] [blame] | 110 | if doctype: |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 111 | party_details.update(get_fetch_values(doctype, 'shipping_address_name', party_details.shipping_address_name)) |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 112 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 113 | if company_address: |
| 114 | party_details.update({'company_address': company_address}) |
| 115 | else: |
| 116 | party_details.update(get_company_address(company)) |
Shreya Shah | 4fa600a | 2018-06-05 11:27:53 +0530 | [diff] [blame] | 117 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 118 | if doctype and doctype in ['Delivery Note', 'Sales Invoice', 'Sales Order']: |
| 119 | if party_details.company_address: |
| 120 | party_details.update(get_fetch_values(doctype, 'company_address', party_details.company_address)) |
| 121 | get_regional_address_details(party_details, doctype, company) |
Shreya Shah | 4fa600a | 2018-06-05 11:27:53 +0530 | [diff] [blame] | 122 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 123 | elif doctype and doctype in ["Purchase Invoice", "Purchase Order", "Purchase Receipt"]: |
| 124 | if party_details.company_address: |
| 125 | party_details["shipping_address"] = shipping_address or party_details["company_address"] |
| 126 | party_details.shipping_address_display = get_address_display(party_details["shipping_address"]) |
| 127 | party_details.update(get_fetch_values(doctype, 'shipping_address', party_details.shipping_address)) |
| 128 | get_regional_address_details(party_details, doctype, company) |
| 129 | |
| 130 | return party_details.get(billing_address_field), party_details.shipping_address_name |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 131 | |
Shreya Shah | 4fa600a | 2018-06-05 11:27:53 +0530 | [diff] [blame] | 132 | @erpnext.allow_regional |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 133 | def get_regional_address_details(party_details, doctype, company): |
Shreya Shah | 4fa600a | 2018-06-05 11:27:53 +0530 | [diff] [blame] | 134 | pass |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 135 | |
Deepesh Garg | cf9347d | 2020-03-31 17:28:43 +0530 | [diff] [blame] | 136 | def set_contact_details(party_details, party, party_type): |
| 137 | party_details.contact_person = get_default_contact(party_type, party.name) |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 138 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 139 | if not party_details.contact_person: |
| 140 | party_details.update({ |
Neil Trini Lasrado | 09a66c4 | 2015-07-07 16:41:37 +0530 | [diff] [blame] | 141 | "contact_person": None, |
| 142 | "contact_display": None, |
| 143 | "contact_email": None, |
| 144 | "contact_mobile": None, |
| 145 | "contact_phone": None, |
| 146 | "contact_designation": None, |
| 147 | "contact_department": None |
| 148 | }) |
Neil Trini Lasrado | fe2ffae | 2015-07-08 18:16:51 +0530 | [diff] [blame] | 149 | else: |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 150 | party_details.update(get_contact_details(party_details.contact_person)) |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 151 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 152 | def set_other_values(party_details, party, party_type): |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 153 | # copy |
ChillarAnand | 9ace7d6 | 2022-03-07 16:53:59 +0530 | [diff] [blame] | 154 | if party_type == "Customer": |
saurabh | 8e49951 | 2016-02-19 11:08:45 +0530 | [diff] [blame] | 155 | to_copy = ["customer_name", "customer_group", "territory", "language"] |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 156 | else: |
Zlash65 | 8907078 | 2018-04-19 18:37:29 +0530 | [diff] [blame] | 157 | to_copy = ["supplier_name", "supplier_group", "language"] |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 158 | for f in to_copy: |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 159 | party_details[f] = party.get(f) |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 160 | |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 161 | # fields prepended with default in Customer doctype |
Neil Trini Lasrado | 810bd35 | 2015-08-21 15:04:57 +0530 | [diff] [blame] | 162 | for f in ['currency'] \ |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 163 | + (['sales_partner', 'commission_rate'] if party_type=="Customer" else []): |
| 164 | if party.get("default_" + f): |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 165 | party_details[f] = party.get("default_" + f) |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 166 | |
Rushabh Mehta | 72fbf90 | 2015-09-17 18:29:44 +0530 | [diff] [blame] | 167 | def get_default_price_list(party): |
| 168 | """Return default price list for party (Document object)""" |
Nabin Hait | 34c551d | 2019-07-03 10:34:31 +0530 | [diff] [blame] | 169 | if party.get("default_price_list"): |
Rushabh Mehta | 72fbf90 | 2015-09-17 18:29:44 +0530 | [diff] [blame] | 170 | return party.default_price_list |
| 171 | |
| 172 | if party.doctype == "Customer": |
Saqib Ansari | e5fb871 | 2022-03-10 13:54:43 +0530 | [diff] [blame] | 173 | return frappe.db.get_value("Customer Group", party.customer_group, "default_price_list") |
Rushabh Mehta | 72fbf90 | 2015-09-17 18:29:44 +0530 | [diff] [blame] | 174 | |
Rushabh Mehta | 72fbf90 | 2015-09-17 18:29:44 +0530 | [diff] [blame] | 175 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 176 | def set_price_list(party_details, party, party_type, given_price_list, pos=None): |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 177 | # price list |
Suraj Shetty | 7ed37ae | 2018-12-19 19:56:42 +0530 | [diff] [blame] | 178 | price_list = get_permitted_documents('Price List') |
rohitwaghchaure | 5210761 | 2020-05-05 12:12:33 +0530 | [diff] [blame] | 179 | |
Faris Ansari | 64f01bd | 2020-04-14 11:51:48 +0530 | [diff] [blame] | 180 | # if there is only one permitted document based on user permissions, set it |
| 181 | if price_list and len(price_list) == 1: |
Suraj Shetty | dcc90e3 | 2018-05-04 17:52:57 +0530 | [diff] [blame] | 182 | price_list = price_list[0] |
deepeshgarg007 | c48efab | 2019-01-24 17:15:38 +0530 | [diff] [blame] | 183 | elif pos and party_type == 'Customer': |
| 184 | customer_price_list = frappe.get_value('Customer', party.name, 'default_price_list') |
| 185 | |
| 186 | if customer_price_list: |
| 187 | price_list = customer_price_list |
| 188 | else: |
deepeshgarg007 | 8c84b7b | 2019-01-25 16:44:45 +0530 | [diff] [blame] | 189 | pos_price_list = frappe.get_value('POS Profile', pos, 'selling_price_list') |
deepeshgarg007 | 1f9a6fe | 2019-01-25 11:53:55 +0530 | [diff] [blame] | 190 | price_list = pos_price_list or given_price_list |
Suraj Shetty | dcc90e3 | 2018-05-04 17:52:57 +0530 | [diff] [blame] | 191 | else: |
| 192 | price_list = get_default_price_list(party) or given_price_list |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 193 | |
| 194 | if price_list: |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 195 | party_details.price_list_currency = frappe.db.get_value("Price List", price_list, "currency", cache=True) |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 196 | |
Deepesh Garg | 6e2c13f | 2019-12-10 15:55:05 +0530 | [diff] [blame] | 197 | party_details["selling_price_list" if party.doctype=="Customer" else "buying_price_list"] = price_list |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 198 | |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 199 | |
Shreya Shah | 3a9eec2 | 2018-02-16 13:05:21 +0530 | [diff] [blame] | 200 | def set_account_and_due_date(party, account, party_type, company, posting_date, bill_date, doctype): |
Saqib | a6f98d4 | 2020-07-23 18:51:26 +0530 | [diff] [blame] | 201 | if doctype not in ["POS Invoice", "Sales Invoice", "Purchase Invoice"]: |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 202 | # not an invoice |
| 203 | return { |
| 204 | party_type.lower(): party |
| 205 | } |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 206 | |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 207 | if party: |
Anand Doshi | b20baf8 | 2015-09-25 16:17:50 +0530 | [diff] [blame] | 208 | account = get_party_account(party_type, party, company) |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 209 | |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 210 | account_fieldname = "debit_to" if party_type=="Customer" else "credit_to" |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 211 | out = { |
| 212 | party_type.lower(): party, |
| 213 | account_fieldname : account, |
Shreya Shah | 3a9eec2 | 2018-02-16 13:05:21 +0530 | [diff] [blame] | 214 | "due_date": get_due_date(posting_date, party_type, party, company, bill_date) |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 215 | } |
Shreya Shah | 3a9eec2 | 2018-02-16 13:05:21 +0530 | [diff] [blame] | 216 | |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 217 | return out |
Rushabh Mehta | 361df89 | 2015-09-18 12:59:51 +0530 | [diff] [blame] | 218 | |
Nabin Hait | db030d1 | 2014-09-10 17:11:30 +0530 | [diff] [blame] | 219 | @frappe.whitelist() |
Deepesh Garg | 8864857 | 2021-11-12 12:39:30 +0530 | [diff] [blame] | 220 | def get_party_account(party_type, party=None, company=None): |
Rushabh Mehta | 364054a | 2015-02-21 14:39:35 +0530 | [diff] [blame] | 221 | """Returns the account for the given `party`. |
| 222 | Will first search in party (Customer / Supplier) record, if not found, |
Zlash65 | 8907078 | 2018-04-19 18:37:29 +0530 | [diff] [blame] | 223 | will search in group (Customer Group / Supplier Group), |
Rushabh Mehta | 364054a | 2015-02-21 14:39:35 +0530 | [diff] [blame] | 224 | finally will return default.""" |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 225 | if not company: |
Anand Doshi | b20baf8 | 2015-09-25 16:17:50 +0530 | [diff] [blame] | 226 | frappe.throw(_("Please select a Company")) |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 227 | |
Deepesh Garg | 8864857 | 2021-11-12 12:39:30 +0530 | [diff] [blame] | 228 | if not party and party_type in ['Customer', 'Supplier']: |
| 229 | default_account_name = "default_receivable_account" \ |
| 230 | if party_type=="Customer" else "default_payable_account" |
| 231 | |
| 232 | return frappe.get_cached_value('Company', company, default_account_name) |
Saurabh | 0f86d86 | 2017-11-10 19:21:09 +0530 | [diff] [blame] | 233 | |
| 234 | account = frappe.db.get_value("Party Account", |
| 235 | {"parenttype": party_type, "parent": party, "company": company}, "account") |
| 236 | |
| 237 | if not account and party_type in ['Customer', 'Supplier']: |
Zlash65 | 8907078 | 2018-04-19 18:37:29 +0530 | [diff] [blame] | 238 | party_group_doctype = "Customer Group" if party_type=="Customer" else "Supplier Group" |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 239 | group = frappe.get_cached_value(party_type, party, scrub(party_group_doctype)) |
Rushabh Mehta | 364054a | 2015-02-21 14:39:35 +0530 | [diff] [blame] | 240 | account = frappe.db.get_value("Party Account", |
Saurabh | 0f86d86 | 2017-11-10 19:21:09 +0530 | [diff] [blame] | 241 | {"parenttype": party_group_doctype, "parent": group, "company": company}, "account") |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 242 | |
Saurabh | 0f86d86 | 2017-11-10 19:21:09 +0530 | [diff] [blame] | 243 | if not account and party_type in ['Customer', 'Supplier']: |
| 244 | default_account_name = "default_receivable_account" \ |
| 245 | if party_type=="Customer" else "default_payable_account" |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 246 | account = frappe.get_cached_value('Company', company, default_account_name) |
Rushabh Mehta | 364054a | 2015-02-21 14:39:35 +0530 | [diff] [blame] | 247 | |
Saurabh | 0f86d86 | 2017-11-10 19:21:09 +0530 | [diff] [blame] | 248 | existing_gle_currency = get_party_gle_currency(party_type, party, company) |
| 249 | if existing_gle_currency: |
| 250 | if account: |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 251 | account_currency = frappe.db.get_value("Account", account, "account_currency", cache=True) |
Saurabh | 0f86d86 | 2017-11-10 19:21:09 +0530 | [diff] [blame] | 252 | if (account and account_currency != existing_gle_currency) or not account: |
| 253 | account = get_party_gle_account(party_type, party, company) |
Rushabh Mehta | b92087c | 2017-01-13 18:53:11 +0530 | [diff] [blame] | 254 | |
Saurabh | 0f86d86 | 2017-11-10 19:21:09 +0530 | [diff] [blame] | 255 | return account |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 256 | |
rohitwaghchaure | 713cfc7 | 2018-09-11 17:40:37 +0530 | [diff] [blame] | 257 | @frappe.whitelist() |
| 258 | def get_party_bank_account(party_type, party): |
| 259 | return frappe.db.get_value('Bank Account', { |
| 260 | 'party_type': party_type, |
| 261 | 'party': party, |
| 262 | 'is_default': 1 |
| 263 | }) |
| 264 | |
Anand Doshi | b20baf8 | 2015-09-25 16:17:50 +0530 | [diff] [blame] | 265 | def get_party_account_currency(party_type, party, company): |
| 266 | def generator(): |
| 267 | party_account = get_party_account(party_type, party, company) |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 268 | return frappe.db.get_value("Account", party_account, "account_currency", cache=True) |
Anand Doshi | b20baf8 | 2015-09-25 16:17:50 +0530 | [diff] [blame] | 269 | |
| 270 | return frappe.local_cache("party_account_currency", (party_type, party, company), generator) |
| 271 | |
Anand Doshi | 4945b94 | 2015-09-30 16:41:15 +0530 | [diff] [blame] | 272 | def get_party_gle_currency(party_type, party, company): |
| 273 | def generator(): |
| 274 | existing_gle_currency = frappe.db.sql("""select account_currency from `tabGL Entry` |
| 275 | where docstatus=1 and company=%(company)s and party_type=%(party_type)s and party=%(party)s |
| 276 | limit 1""", { "company": company, "party_type": party_type, "party": party }) |
| 277 | |
| 278 | return existing_gle_currency[0][0] if existing_gle_currency else None |
| 279 | |
Anand Doshi | 0b93bdc | 2015-10-22 19:32:56 +0530 | [diff] [blame] | 280 | return frappe.local_cache("party_gle_currency", (party_type, party, company), generator, |
| 281 | regenerate_if_none=True) |
Rushabh Mehta | b92087c | 2017-01-13 18:53:11 +0530 | [diff] [blame] | 282 | |
Nabin Hait | 16d6959 | 2016-06-28 16:15:58 +0530 | [diff] [blame] | 283 | def get_party_gle_account(party_type, party, company): |
| 284 | def generator(): |
| 285 | existing_gle_account = frappe.db.sql("""select account from `tabGL Entry` |
| 286 | where docstatus=1 and company=%(company)s and party_type=%(party_type)s and party=%(party)s |
| 287 | limit 1""", { "company": company, "party_type": party_type, "party": party }) |
| 288 | |
| 289 | return existing_gle_account[0][0] if existing_gle_account else None |
| 290 | |
| 291 | return frappe.local_cache("party_gle_account", (party_type, party, company), generator, |
| 292 | regenerate_if_none=True) |
Anand Doshi | 4945b94 | 2015-09-30 16:41:15 +0530 | [diff] [blame] | 293 | |
Anand Doshi | d8bc40d | 2015-10-22 17:54:50 +0530 | [diff] [blame] | 294 | def validate_party_gle_currency(party_type, party, company, party_account_currency=None): |
Anand Doshi | 4945b94 | 2015-09-30 16:41:15 +0530 | [diff] [blame] | 295 | """Validate party account currency with existing GL Entry's currency""" |
Anand Doshi | d8bc40d | 2015-10-22 17:54:50 +0530 | [diff] [blame] | 296 | if not party_account_currency: |
| 297 | party_account_currency = get_party_account_currency(party_type, party, company) |
| 298 | |
Anand Doshi | 4945b94 | 2015-09-30 16:41:15 +0530 | [diff] [blame] | 299 | existing_gle_currency = get_party_gle_currency(party_type, party, company) |
| 300 | |
| 301 | if existing_gle_currency and party_account_currency != existing_gle_currency: |
Deepesh Garg | c6b850e | 2020-03-28 21:17:58 +0530 | [diff] [blame] | 302 | frappe.throw(_("{0} {1} has accounting entries in currency {2} for company {3}. Please select a receivable or payable account with currency {2}.") |
Deepesh Garg | 56bc36f | 2020-03-30 15:05:20 +0530 | [diff] [blame] | 303 | .format(frappe.bold(party_type), frappe.bold(party), frappe.bold(existing_gle_currency), frappe.bold(company)), InvalidAccountCurrency) |
Anand Doshi | 4945b94 | 2015-09-30 16:41:15 +0530 | [diff] [blame] | 304 | |
Anand Doshi | da98ab6 | 2015-09-28 15:13:38 +0530 | [diff] [blame] | 305 | def validate_party_accounts(doc): |
Deepesh Garg | 5a2b571 | 2022-02-18 20:05:49 +0530 | [diff] [blame] | 306 | from erpnext.controllers.accounts_controller import validate_account_head |
Anand Doshi | da98ab6 | 2015-09-28 15:13:38 +0530 | [diff] [blame] | 307 | companies = [] |
| 308 | |
| 309 | for account in doc.get("accounts"): |
| 310 | if account.company in companies: |
Nabin Hait | 2873f2e | 2015-10-16 13:07:45 +0530 | [diff] [blame] | 311 | frappe.throw(_("There can only be 1 Account per Company in {0} {1}") |
| 312 | .format(doc.doctype, doc.name), DuplicatePartyAccountError) |
Anand Doshi | da98ab6 | 2015-09-28 15:13:38 +0530 | [diff] [blame] | 313 | else: |
| 314 | companies.append(account.company) |
Anand Doshi | d8bc40d | 2015-10-22 17:54:50 +0530 | [diff] [blame] | 315 | |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 316 | party_account_currency = frappe.db.get_value("Account", account.account, "account_currency", cache=True) |
hendrik | c257ce8 | 2019-09-05 16:44:09 +0700 | [diff] [blame] | 317 | if frappe.db.get_default("Company"): |
| 318 | company_default_currency = frappe.get_cached_value('Company', |
| 319 | frappe.db.get_default("Company"), "default_currency") |
| 320 | else: |
| 321 | company_default_currency = frappe.db.get_value('Company', account.company, "default_currency") |
Anand Doshi | d8bc40d | 2015-10-22 17:54:50 +0530 | [diff] [blame] | 322 | |
Deepesh Garg | 1a2cf5c | 2020-03-28 21:26:16 +0530 | [diff] [blame] | 323 | validate_party_gle_currency(doc.doctype, doc.name, account.company, party_account_currency) |
Anand Doshi | da98ab6 | 2015-09-28 15:13:38 +0530 | [diff] [blame] | 324 | |
rohitwaghchaure | ea092a7 | 2017-02-01 12:02:08 +0530 | [diff] [blame] | 325 | if doc.get("default_currency") and party_account_currency and company_default_currency: |
rohitwaghchaure | 62fea03 | 2016-03-30 13:24:42 +0530 | [diff] [blame] | 326 | if doc.default_currency != party_account_currency and doc.default_currency != company_default_currency: |
tunde | 3b4bd37 | 2017-08-31 16:28:47 +0100 | [diff] [blame] | 327 | frappe.throw(_("Billing currency must be equal to either default company's currency or party account currency")) |
| 328 | |
Deepesh Garg | 5a2b571 | 2022-02-18 20:05:49 +0530 | [diff] [blame] | 329 | # validate if account is mapped for same company |
| 330 | validate_account_head(account.idx, account.account, account.company) |
| 331 | |
rohitwaghchaure | 62fea03 | 2016-03-30 13:24:42 +0530 | [diff] [blame] | 332 | |
Nabin Hait | 4770a1a | 2015-07-09 16:35:46 +0530 | [diff] [blame] | 333 | @frappe.whitelist() |
Shreya Shah | 3a9eec2 | 2018-02-16 13:05:21 +0530 | [diff] [blame] | 334 | def get_due_date(posting_date, party_type, party, company=None, bill_date=None): |
tunde | 3b4bd37 | 2017-08-31 16:28:47 +0100 | [diff] [blame] | 335 | """Get due date from `Payment Terms Template`""" |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 336 | due_date = None |
Shreya Shah | 3a9eec2 | 2018-02-16 13:05:21 +0530 | [diff] [blame] | 337 | if (bill_date or posting_date) and party: |
| 338 | due_date = bill_date or posting_date |
marination | fa085d7 | 2020-10-27 13:18:30 +0530 | [diff] [blame] | 339 | template_name = get_payment_terms_template(party, party_type, company) |
rohitwaghchaure | 3ffe896 | 2018-07-13 17:40:48 +0530 | [diff] [blame] | 340 | |
tunde | 3b4bd37 | 2017-08-31 16:28:47 +0100 | [diff] [blame] | 341 | if template_name: |
Shreya Shah | 3a9eec2 | 2018-02-16 13:05:21 +0530 | [diff] [blame] | 342 | due_date = get_due_date_from_template(template_name, posting_date, bill_date).strftime("%Y-%m-%d") |
tunde | ed86efb | 2017-09-05 01:15:31 +0100 | [diff] [blame] | 343 | else: |
| 344 | if party_type == "Supplier": |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 345 | supplier_group = frappe.get_cached_value(party_type, party, "supplier_group") |
| 346 | template_name = frappe.get_cached_value("Supplier Group", supplier_group, "payment_terms") |
tunde | e5973e4 | 2017-09-05 18:11:58 +0100 | [diff] [blame] | 347 | if template_name: |
Shreya Shah | 3a9eec2 | 2018-02-16 13:05:21 +0530 | [diff] [blame] | 348 | due_date = get_due_date_from_template(template_name, posting_date, bill_date).strftime("%Y-%m-%d") |
| 349 | # If due date is calculated from bill_date, check this condition |
| 350 | if getdate(due_date) < getdate(posting_date): |
| 351 | due_date = posting_date |
Anand Doshi | 13ae548 | 2014-04-10 18:40:57 +0530 | [diff] [blame] | 352 | return due_date |
Rushabh Mehta | 49dd7be | 2014-01-28 17:43:10 +0530 | [diff] [blame] | 353 | |
Shreya Shah | 3a9eec2 | 2018-02-16 13:05:21 +0530 | [diff] [blame] | 354 | def get_due_date_from_template(template_name, posting_date, bill_date): |
tunde | 3b4bd37 | 2017-08-31 16:28:47 +0100 | [diff] [blame] | 355 | """ |
| 356 | Inspects all `Payment Term`s from the a `Payment Terms Template` and returns the due |
| 357 | date after considering all the `Payment Term`s requirements. |
| 358 | :param template_name: Name of the `Payment Terms Template` |
| 359 | :return: String representing the calculated due date |
| 360 | """ |
Shreya Shah | 3a9eec2 | 2018-02-16 13:05:21 +0530 | [diff] [blame] | 361 | due_date = getdate(bill_date or posting_date) |
| 362 | |
tunde | 3b4bd37 | 2017-08-31 16:28:47 +0100 | [diff] [blame] | 363 | template = frappe.get_doc('Payment Terms Template', template_name) |
| 364 | |
| 365 | for term in template.terms: |
| 366 | if term.due_date_based_on == 'Day(s) after invoice date': |
| 367 | due_date = max(due_date, add_days(due_date, term.credit_days)) |
| 368 | elif term.due_date_based_on == 'Day(s) after the end of the invoice month': |
| 369 | due_date = max(due_date, add_days(get_last_day(due_date), term.credit_days)) |
| 370 | else: |
| 371 | due_date = max(due_date, add_months(get_last_day(due_date), term.credit_months)) |
tunde | 3b4bd37 | 2017-08-31 16:28:47 +0100 | [diff] [blame] | 372 | return due_date |
| 373 | |
Saurabh | d7897f1 | 2018-07-18 17:08:16 +0530 | [diff] [blame] | 374 | def validate_due_date(posting_date, due_date, party_type, party, company=None, bill_date=None, template_name=None): |
Nabin Hait | 4770a1a | 2015-07-09 16:35:46 +0530 | [diff] [blame] | 375 | if getdate(due_date) < getdate(posting_date): |
Rohit Waghchaure | d1a85a3 | 2018-11-26 18:42:29 +0530 | [diff] [blame] | 376 | frappe.throw(_("Due Date cannot be before Posting / Supplier Invoice Date")) |
Nabin Hait | 4770a1a | 2015-07-09 16:35:46 +0530 | [diff] [blame] | 377 | else: |
rohitwaghchaure | 3ffe896 | 2018-07-13 17:40:48 +0530 | [diff] [blame] | 378 | if not template_name: return |
| 379 | |
Saurabh | d7897f1 | 2018-07-18 17:08:16 +0530 | [diff] [blame] | 380 | default_due_date = get_due_date_from_template(template_name, posting_date, bill_date).strftime("%Y-%m-%d") |
| 381 | |
Anand Doshi | 0ca587e | 2015-09-25 16:32:14 +0530 | [diff] [blame] | 382 | if not default_due_date: |
| 383 | return |
| 384 | |
Nabin Hait | 93d3c82 | 2015-07-10 17:11:58 +0530 | [diff] [blame] | 385 | if default_due_date != posting_date and getdate(due_date) > getdate(default_due_date): |
Nabin Hait | 4770a1a | 2015-07-09 16:35:46 +0530 | [diff] [blame] | 386 | is_credit_controller = frappe.db.get_single_value("Accounts Settings", "credit_controller") in frappe.get_roles() |
| 387 | if is_credit_controller: |
| 388 | msgprint(_("Note: Due / Reference Date exceeds allowed customer credit days by {0} day(s)") |
| 389 | .format(date_diff(due_date, default_due_date))) |
| 390 | else: |
Nabin Hait | 0551f7b | 2017-11-21 19:58:16 +0530 | [diff] [blame] | 391 | frappe.throw(_("Due / Reference Date cannot be after {0}") |
| 392 | .format(formatdate(default_due_date))) |
Rushabh Mehta | 361df89 | 2015-09-18 12:59:51 +0530 | [diff] [blame] | 393 | |
Neil Trini Lasrado | 09f9c96 | 2015-08-26 10:41:31 +0530 | [diff] [blame] | 394 | @frappe.whitelist() |
Nabin Hait | 16a7ec9 | 2019-09-05 13:01:15 +0530 | [diff] [blame] | 395 | def get_address_tax_category(tax_category=None, billing_address=None, shipping_address=None): |
Saif Ur Rehman | fd531a6 | 2018-12-29 01:49:11 +0500 | [diff] [blame] | 396 | addr_tax_category_from = frappe.db.get_single_value("Accounts Settings", "determine_address_tax_category_from") |
| 397 | if addr_tax_category_from == "Shipping Address": |
| 398 | if shipping_address: |
| 399 | tax_category = frappe.db.get_value("Address", shipping_address, "tax_category") or tax_category |
| 400 | else: |
| 401 | if billing_address: |
| 402 | tax_category = frappe.db.get_value("Address", billing_address, "tax_category") or tax_category |
| 403 | |
| 404 | return cstr(tax_category) |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 405 | |
Neil Trini Lasrado | 09f9c96 | 2015-08-26 10:41:31 +0530 | [diff] [blame] | 406 | @frappe.whitelist() |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 407 | def set_taxes(party, party_type, posting_date, company, customer_group=None, supplier_group=None, tax_category=None, |
Saurabh | 957e7a3 | 2015-09-11 15:44:06 +0530 | [diff] [blame] | 408 | billing_address=None, shipping_address=None, use_for_shopping_cart=None): |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 409 | from erpnext.accounts.doctype.tax_rule.tax_rule import get_party_details, get_tax_template |
Neil Trini Lasrado | 810bd35 | 2015-08-21 15:04:57 +0530 | [diff] [blame] | 410 | args = { |
Rushabh Mehta | 307978f | 2015-09-23 15:43:09 +0530 | [diff] [blame] | 411 | party_type.lower(): party, |
marination | e27b996 | 2020-07-03 22:03:25 +0530 | [diff] [blame] | 412 | "company": company |
Neil Trini Lasrado | 810bd35 | 2015-08-21 15:04:57 +0530 | [diff] [blame] | 413 | } |
Rushabh Mehta | 361df89 | 2015-09-18 12:59:51 +0530 | [diff] [blame] | 414 | |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 415 | if tax_category: |
| 416 | args['tax_category'] = tax_category |
| 417 | |
Rushabh Mehta | 3c14c5a | 2017-09-29 13:21:22 +0530 | [diff] [blame] | 418 | if customer_group: |
| 419 | args['customer_group'] = customer_group |
| 420 | |
Zlash65 | 8907078 | 2018-04-19 18:37:29 +0530 | [diff] [blame] | 421 | if supplier_group: |
| 422 | args['supplier_group'] = supplier_group |
Rushabh Mehta | 3c14c5a | 2017-09-29 13:21:22 +0530 | [diff] [blame] | 423 | |
Neil Trini Lasrado | 09f9c96 | 2015-08-26 10:41:31 +0530 | [diff] [blame] | 424 | if billing_address or shipping_address: |
Saurabh | 957e7a3 | 2015-09-11 15:44:06 +0530 | [diff] [blame] | 425 | args.update(get_party_details(party, party_type, {"billing_address": billing_address, \ |
| 426 | "shipping_address": shipping_address })) |
Neil Trini Lasrado | 09f9c96 | 2015-08-26 10:41:31 +0530 | [diff] [blame] | 427 | else: |
| 428 | args.update(get_party_details(party, party_type)) |
Rushabh Mehta | 361df89 | 2015-09-18 12:59:51 +0530 | [diff] [blame] | 429 | |
Anand Doshi | 2f957f2 | 2016-04-08 17:36:10 +0530 | [diff] [blame] | 430 | if party_type in ("Customer", "Lead"): |
Neil Trini Lasrado | 810bd35 | 2015-08-21 15:04:57 +0530 | [diff] [blame] | 431 | args.update({"tax_type": "Sales"}) |
Anand Doshi | 2f957f2 | 2016-04-08 17:36:10 +0530 | [diff] [blame] | 432 | |
| 433 | if party_type=='Lead': |
| 434 | args['customer'] = None |
| 435 | del args['lead'] |
Neil Trini Lasrado | 810bd35 | 2015-08-21 15:04:57 +0530 | [diff] [blame] | 436 | else: |
| 437 | args.update({"tax_type": "Purchase"}) |
Rushabh Mehta | 361df89 | 2015-09-18 12:59:51 +0530 | [diff] [blame] | 438 | |
Saurabh | 957e7a3 | 2015-09-11 15:44:06 +0530 | [diff] [blame] | 439 | if use_for_shopping_cart: |
Saurabh | 957e7a3 | 2015-09-11 15:44:06 +0530 | [diff] [blame] | 440 | args.update({"use_for_shopping_cart": use_for_shopping_cart}) |
Rushabh Mehta | 361df89 | 2015-09-18 12:59:51 +0530 | [diff] [blame] | 441 | |
| 442 | return get_tax_template(posting_date, args) |
shreyas | 29b565f | 2016-01-25 17:30:49 +0530 | [diff] [blame] | 443 | |
tunde | 400d046 | 2017-08-31 13:44:57 +0100 | [diff] [blame] | 444 | |
| 445 | @frappe.whitelist() |
marination | fa085d7 | 2020-10-27 13:18:30 +0530 | [diff] [blame] | 446 | def get_payment_terms_template(party_name, party_type, company=None): |
Nabin Hait | cfa9d1a | 2018-01-29 16:07:21 +0530 | [diff] [blame] | 447 | if party_type not in ("Customer", "Supplier"): |
| 448 | return |
tunde | 400d046 | 2017-08-31 13:44:57 +0100 | [diff] [blame] | 449 | template = None |
Nabin Hait | cfa9d1a | 2018-01-29 16:07:21 +0530 | [diff] [blame] | 450 | if party_type == 'Customer': |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 451 | customer = frappe.get_cached_value("Customer", party_name, |
Nabin Hait | cfa9d1a | 2018-01-29 16:07:21 +0530 | [diff] [blame] | 452 | fieldname=['payment_terms', "customer_group"], as_dict=1) |
| 453 | template = customer.payment_terms |
| 454 | |
| 455 | if not template and customer.customer_group: |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 456 | template = frappe.get_cached_value("Customer Group", |
| 457 | customer.customer_group, 'payment_terms') |
Nabin Hait | cfa9d1a | 2018-01-29 16:07:21 +0530 | [diff] [blame] | 458 | else: |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 459 | supplier = frappe.get_cached_value("Supplier", party_name, |
Zlash65 | 8907078 | 2018-04-19 18:37:29 +0530 | [diff] [blame] | 460 | fieldname=['payment_terms', "supplier_group"], as_dict=1) |
Nabin Hait | cfa9d1a | 2018-01-29 16:07:21 +0530 | [diff] [blame] | 461 | template = supplier.payment_terms |
Zlash65 | 8907078 | 2018-04-19 18:37:29 +0530 | [diff] [blame] | 462 | if not template and supplier.supplier_group: |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 463 | template = frappe.get_cached_value("Supplier Group", supplier.supplier_group, 'payment_terms') |
Nabin Hait | cfa9d1a | 2018-01-29 16:07:21 +0530 | [diff] [blame] | 464 | |
| 465 | if not template and company: |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 466 | template = frappe.get_cached_value('Company', company, fieldname='payment_terms') |
tunde | 400d046 | 2017-08-31 13:44:57 +0100 | [diff] [blame] | 467 | return template |
| 468 | |
shreyas | eba9ca4 | 2016-01-26 14:56:52 +0530 | [diff] [blame] | 469 | def validate_party_frozen_disabled(party_type, party_name): |
Subin Tom | b8845b9 | 2021-07-30 16:30:18 +0530 | [diff] [blame] | 470 | |
| 471 | if frappe.flags.ignore_party_validation: |
| 472 | return |
| 473 | |
shreyas | 79872bf | 2016-01-26 13:57:06 +0530 | [diff] [blame] | 474 | if party_type and party_name: |
KanchanChauhan | fbaa619 | 2017-01-30 15:15:58 +0530 | [diff] [blame] | 475 | if party_type in ("Customer", "Supplier"): |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 476 | party = frappe.get_cached_value(party_type, party_name, ["is_frozen", "disabled"], as_dict=True) |
deepeshgarg007 | 737ec6b | 2019-10-20 17:36:36 +0530 | [diff] [blame] | 477 | if party.disabled: |
| 478 | frappe.throw(_("{0} {1} is disabled").format(party_type, party_name), PartyDisabled) |
| 479 | elif party.get("is_frozen"): |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 480 | frozen_accounts_modifier = frappe.db.get_single_value( 'Accounts Settings', 'frozen_accounts_modifier') |
KanchanChauhan | fbaa619 | 2017-01-30 15:15:58 +0530 | [diff] [blame] | 481 | if not frozen_accounts_modifier in frappe.get_roles(): |
| 482 | frappe.throw(_("{0} {1} is frozen").format(party_type, party_name), PartyFrozen) |
| 483 | |
| 484 | elif party_type == "Employee": |
Rucha Mahabal | a38147a | 2021-06-12 13:33:21 +0530 | [diff] [blame] | 485 | if frappe.db.get_value("Employee", party_name, "status") != "Active": |
Kanchan Chauhan | 95108ac | 2017-04-11 15:55:34 +0530 | [diff] [blame] | 486 | frappe.msgprint(_("{0} {1} is not active").format(party_type, party_name), alert=True) |
Rushabh Mehta | 15a7f21 | 2016-04-14 17:30:40 +0530 | [diff] [blame] | 487 | |
| 488 | def get_timeline_data(doctype, name): |
| 489 | '''returns timeline data for the past one year''' |
| 490 | from frappe.desk.form.load import get_communication_data |
mbauskar | e7b87ad | 2017-02-16 13:12:29 +0530 | [diff] [blame] | 491 | |
| 492 | out = {} |
rohitwaghchaure | 5210761 | 2020-05-05 12:12:33 +0530 | [diff] [blame] | 493 | fields = 'creation, count(*)' |
Zarrar | 5820018 | 2018-05-30 11:56:23 +0530 | [diff] [blame] | 494 | after = add_years(None, -1).strftime('%Y-%m-%d') |
rohitwaghchaure | 5210761 | 2020-05-05 12:12:33 +0530 | [diff] [blame] | 495 | group_by='group by Date(creation)' |
Zarrar | 5820018 | 2018-05-30 11:56:23 +0530 | [diff] [blame] | 496 | |
rohitwaghchaure | 5210761 | 2020-05-05 12:12:33 +0530 | [diff] [blame] | 497 | data = get_communication_data(doctype, name, after=after, group_by='group by creation', |
| 498 | fields='C.creation as creation, count(C.name)',as_dict=False) |
Zarrar | 5820018 | 2018-05-30 11:56:23 +0530 | [diff] [blame] | 499 | |
| 500 | # fetch and append data from Activity Log |
| 501 | data += frappe.db.sql("""select {fields} |
| 502 | from `tabActivity Log` |
rohitwaghchaure | 5210761 | 2020-05-05 12:12:33 +0530 | [diff] [blame] | 503 | where (reference_doctype=%(doctype)s and reference_name=%(name)s) |
| 504 | or (timeline_doctype in (%(doctype)s) and timeline_name=%(name)s) |
| 505 | or (reference_doctype in ("Quotation", "Opportunity") and timeline_name=%(name)s) |
Zarrar | 5820018 | 2018-05-30 11:56:23 +0530 | [diff] [blame] | 506 | and status!='Success' and creation > {after} |
| 507 | {group_by} order by creation desc |
rohitwaghchaure | 5210761 | 2020-05-05 12:12:33 +0530 | [diff] [blame] | 508 | """.format(fields=fields, group_by=group_by, after=after), { |
| 509 | "doctype": doctype, |
| 510 | "name": name |
| 511 | }, as_dict=False) |
mbauskar | e7b87ad | 2017-02-16 13:12:29 +0530 | [diff] [blame] | 512 | |
| 513 | timeline_items = dict(data) |
| 514 | |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 515 | for date, count in timeline_items.items(): |
mbauskar | e7b87ad | 2017-02-16 13:12:29 +0530 | [diff] [blame] | 516 | timestamp = get_timestamp(date) |
| 517 | out.update({ timestamp: count }) |
| 518 | |
Nabin Hait | 2d79a64 | 2017-05-24 12:41:14 +0530 | [diff] [blame] | 519 | return out |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 520 | |
deepeshgarg007 | 12f5cef | 2018-12-25 16:06:19 +0530 | [diff] [blame] | 521 | def get_dashboard_info(party_type, party, loyalty_program=None): |
Nabin Hait | 2d79a64 | 2017-05-24 12:41:14 +0530 | [diff] [blame] | 522 | current_fiscal_year = get_fiscal_year(nowdate(), as_dict=True) |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 523 | |
Nabin Hait | 2d79a64 | 2017-05-24 12:41:14 +0530 | [diff] [blame] | 524 | doctype = "Sales Invoice" if party_type=="Customer" else "Purchase Invoice" |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 525 | |
deepeshgarg007 | ee05e35 | 2018-11-29 16:24:28 +0530 | [diff] [blame] | 526 | companies = frappe.get_all(doctype, filters={ |
| 527 | 'docstatus': 1, |
| 528 | party_type.lower(): party |
| 529 | }, distinct=1, fields=['company']) |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 530 | |
deepeshgarg007 | 920dc14 | 2018-11-23 10:17:28 +0530 | [diff] [blame] | 531 | company_wise_info = [] |
| 532 | |
deepeshgarg007 | ee05e35 | 2018-11-29 16:24:28 +0530 | [diff] [blame] | 533 | company_wise_grand_total = frappe.get_all(doctype, |
| 534 | filters={ |
| 535 | 'docstatus': 1, |
| 536 | party_type.lower(): party, |
| 537 | 'posting_date': ('between', [current_fiscal_year.year_start_date, current_fiscal_year.year_end_date]) |
| 538 | }, |
| 539 | group_by="company", |
| 540 | fields=["company", "sum(grand_total) as grand_total", "sum(base_grand_total) as base_grand_total"] |
| 541 | ) |
deepeshgarg007 | 920dc14 | 2018-11-23 10:17:28 +0530 | [diff] [blame] | 542 | |
deepeshgarg007 | a1d015c | 2018-12-26 11:01:02 +0530 | [diff] [blame] | 543 | loyalty_point_details = [] |
| 544 | |
deepeshgarg007 | 12f5cef | 2018-12-25 16:06:19 +0530 | [diff] [blame] | 545 | if party_type == "Customer": |
| 546 | loyalty_point_details = frappe._dict(frappe.get_all("Loyalty Point Entry", |
| 547 | filters={ |
| 548 | 'customer': party, |
| 549 | 'expiry_date': ('>=', getdate()), |
| 550 | }, |
| 551 | group_by="company", |
| 552 | fields=["company", "sum(loyalty_points) as loyalty_points"], |
| 553 | as_list =1 |
| 554 | )) |
| 555 | |
deepeshgarg007 | f31caff | 2018-11-27 15:04:12 +0530 | [diff] [blame] | 556 | company_wise_billing_this_year = frappe._dict() |
| 557 | |
| 558 | for d in company_wise_grand_total: |
| 559 | company_wise_billing_this_year.setdefault( |
| 560 | d.company,{ |
| 561 | "grand_total": d.grand_total, |
| 562 | "base_grand_total": d.base_grand_total |
| 563 | }) |
| 564 | |
deepeshgarg007 | 920dc14 | 2018-11-23 10:17:28 +0530 | [diff] [blame] | 565 | |
| 566 | company_wise_total_unpaid = frappe._dict(frappe.db.sql(""" |
| 567 | select company, sum(debit_in_account_currency) - sum(credit_in_account_currency) |
Nabin Hait | 24f0b13 | 2017-05-24 13:01:26 +0530 | [diff] [blame] | 568 | from `tabGL Entry` |
deepeshgarg007 | 920dc14 | 2018-11-23 10:17:28 +0530 | [diff] [blame] | 569 | where party_type = %s and party=%s |
Deepesh Garg | 802e63a | 2021-06-28 11:24:32 +0530 | [diff] [blame] | 570 | and is_cancelled = 0 |
deepeshgarg007 | 920dc14 | 2018-11-23 10:17:28 +0530 | [diff] [blame] | 571 | group by company""", (party_type, party))) |
Nabin Hait | 2d79a64 | 2017-05-24 12:41:14 +0530 | [diff] [blame] | 572 | |
deepeshgarg007 | 920dc14 | 2018-11-23 10:17:28 +0530 | [diff] [blame] | 573 | for d in companies: |
| 574 | company_default_currency = frappe.db.get_value("Company", d.company, 'default_currency') |
| 575 | party_account_currency = get_party_account_currency(party_type, party, d.company) |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 576 | |
deepeshgarg007 | 920dc14 | 2018-11-23 10:17:28 +0530 | [diff] [blame] | 577 | if party_account_currency==company_default_currency: |
deepeshgarg007 | f31caff | 2018-11-27 15:04:12 +0530 | [diff] [blame] | 578 | billing_this_year = flt(company_wise_billing_this_year.get(d.company,{}).get("base_grand_total")) |
deepeshgarg007 | 920dc14 | 2018-11-23 10:17:28 +0530 | [diff] [blame] | 579 | else: |
deepeshgarg007 | f31caff | 2018-11-27 15:04:12 +0530 | [diff] [blame] | 580 | billing_this_year = flt(company_wise_billing_this_year.get(d.company,{}).get("grand_total")) |
deepeshgarg007 | 920dc14 | 2018-11-23 10:17:28 +0530 | [diff] [blame] | 581 | |
| 582 | total_unpaid = flt(company_wise_total_unpaid.get(d.company)) |
| 583 | |
deepeshgarg007 | 12f5cef | 2018-12-25 16:06:19 +0530 | [diff] [blame] | 584 | if loyalty_point_details: |
| 585 | loyalty_points = loyalty_point_details.get(d.company) |
| 586 | |
deepeshgarg007 | 920dc14 | 2018-11-23 10:17:28 +0530 | [diff] [blame] | 587 | info = {} |
| 588 | info["billing_this_year"] = flt(billing_this_year) if billing_this_year else 0 |
| 589 | info["currency"] = party_account_currency |
| 590 | info["total_unpaid"] = flt(total_unpaid) if total_unpaid else 0 |
| 591 | info["company"] = d.company |
| 592 | |
deepeshgarg007 | 12f5cef | 2018-12-25 16:06:19 +0530 | [diff] [blame] | 593 | if party_type == "Customer" and loyalty_point_details: |
| 594 | info["loyalty_points"] = loyalty_points |
| 595 | |
deepeshgarg007 | 920dc14 | 2018-11-23 10:17:28 +0530 | [diff] [blame] | 596 | if party_type == "Supplier": |
| 597 | info["total_unpaid"] = -1 * info["total_unpaid"] |
| 598 | |
| 599 | company_wise_info.append(info) |
| 600 | |
| 601 | return company_wise_info |
tundebabzy | 40a0276 | 2017-10-25 07:54:34 +0100 | [diff] [blame] | 602 | |
tundebabzy | 40a0276 | 2017-10-25 07:54:34 +0100 | [diff] [blame] | 603 | def get_party_shipping_address(doctype, name): |
| 604 | """ |
| 605 | Returns an Address name (best guess) for the given doctype and name for which `address_type == 'Shipping'` is true. |
| 606 | and/or `is_shipping_address = 1`. |
| 607 | |
| 608 | It returns an empty string if there is no matching record. |
| 609 | |
| 610 | :param doctype: Party Doctype |
| 611 | :param name: Party name |
| 612 | :return: String |
| 613 | """ |
| 614 | out = frappe.db.sql( |
| 615 | 'SELECT dl.parent ' |
| 616 | 'from `tabDynamic Link` dl join `tabAddress` ta on dl.parent=ta.name ' |
| 617 | 'where ' |
| 618 | 'dl.link_doctype=%s ' |
| 619 | 'and dl.link_name=%s ' |
| 620 | 'and dl.parenttype="Address" ' |
rohitwaghchaure | 5472fff | 2018-12-10 17:45:39 +0530 | [diff] [blame] | 621 | 'and ifnull(ta.disabled, 0) = 0 and' |
tundebabzy | 40a0276 | 2017-10-25 07:54:34 +0100 | [diff] [blame] | 622 | '(ta.address_type="Shipping" or ta.is_shipping_address=1) ' |
| 623 | 'order by ta.is_shipping_address desc, ta.address_type desc limit 1', |
| 624 | (doctype, name) |
| 625 | ) |
| 626 | if out: |
| 627 | return out[0][0] |
| 628 | else: |
| 629 | return '' |
Rohit Waghchaure | affeb3d | 2019-01-15 17:38:31 +0530 | [diff] [blame] | 630 | |
Deepesh Garg | ed2c180 | 2020-05-27 12:46:12 +0530 | [diff] [blame] | 631 | def get_partywise_advanced_payment_amount(party_type, posting_date = None, future_payment=0, company=None): |
Rohit Waghchaure | 4ed7d03 | 2019-03-25 15:37:25 +0530 | [diff] [blame] | 632 | cond = "1=1" |
| 633 | if posting_date: |
Deepesh Garg | ed2c180 | 2020-05-27 12:46:12 +0530 | [diff] [blame] | 634 | if future_payment: |
UrvashiKishnani | 810a361 | 2021-03-02 08:20:03 +0400 | [diff] [blame] | 635 | cond = "posting_date <= '{0}' OR DATE(creation) <= '{0}' """.format(posting_date) |
Deepesh Garg | ed2c180 | 2020-05-27 12:46:12 +0530 | [diff] [blame] | 636 | else: |
UrvashiKishnani | 810a361 | 2021-03-02 08:20:03 +0400 | [diff] [blame] | 637 | cond = "posting_date <= '{0}'".format(posting_date) |
Deepesh Garg | ed2c180 | 2020-05-27 12:46:12 +0530 | [diff] [blame] | 638 | |
Saqib | 3980591 | 2020-05-01 18:15:13 +0530 | [diff] [blame] | 639 | if company: |
UrvashiKishnani | 810a361 | 2021-03-02 08:20:03 +0400 | [diff] [blame] | 640 | cond += "and company = {0}".format(frappe.db.escape(company)) |
Rohit Waghchaure | 4ed7d03 | 2019-03-25 15:37:25 +0530 | [diff] [blame] | 641 | |
UrvashiKishnani | 810a361 | 2021-03-02 08:20:03 +0400 | [diff] [blame] | 642 | data = frappe.db.sql(""" SELECT party, sum({0}) as amount |
| 643 | FROM `tabGL Entry` |
Rohit Waghchaure | 1a6e015 | 2019-03-19 15:06:01 +0530 | [diff] [blame] | 644 | WHERE |
UrvashiKishnani | 810a361 | 2021-03-02 08:20:03 +0400 | [diff] [blame] | 645 | party_type = %s and against_voucher is null |
| 646 | and is_cancelled = 0 |
| 647 | and {1} GROUP BY party""" |
Rohit Waghchaure | 4ed7d03 | 2019-03-25 15:37:25 +0530 | [diff] [blame] | 648 | .format(("credit") if party_type == "Customer" else "debit", cond) , party_type) |
Rohit Waghchaure | affeb3d | 2019-01-15 17:38:31 +0530 | [diff] [blame] | 649 | |
| 650 | if data: |
hendrik | c257ce8 | 2019-09-05 16:44:09 +0700 | [diff] [blame] | 651 | return frappe._dict(data) |
Ronel Cabrera | fcb5476 | 2019-11-18 17:00:07 +0800 | [diff] [blame] | 652 | |
Deepesh Garg | cf9347d | 2020-03-31 17:28:43 +0530 | [diff] [blame] | 653 | def get_default_contact(doctype, name): |
| 654 | """ |
Ronel Cabrera | fcb5476 | 2019-11-18 17:00:07 +0800 | [diff] [blame] | 655 | Returns default contact for the given doctype and name. |
| 656 | Can be ordered by `contact_type` to either is_primary_contact or is_billing_contact. |
| 657 | """ |
| 658 | out = frappe.db.sql(""" |
| 659 | SELECT dl.parent, c.is_primary_contact, c.is_billing_contact |
| 660 | FROM `tabDynamic Link` dl |
| 661 | INNER JOIN tabContact c ON c.name = dl.parent |
Deepesh Garg | cf9347d | 2020-03-31 17:28:43 +0530 | [diff] [blame] | 662 | WHERE |
Ronel Cabrera | fcb5476 | 2019-11-18 17:00:07 +0800 | [diff] [blame] | 663 | dl.link_doctype=%s AND |
| 664 | dl.link_name=%s AND |
| 665 | dl.parenttype = "Contact" |
Deepesh Garg | cf9347d | 2020-03-31 17:28:43 +0530 | [diff] [blame] | 666 | ORDER BY is_primary_contact DESC, is_billing_contact DESC |
Ronel Cabrera | fcb5476 | 2019-11-18 17:00:07 +0800 | [diff] [blame] | 667 | """, (doctype, name)) |
| 668 | if out: |
| 669 | try: |
| 670 | return out[0][0] |
Ankush Menat | 694ae81 | 2021-09-01 14:40:56 +0530 | [diff] [blame] | 671 | except Exception: |
Ronel Cabrera | fcb5476 | 2019-11-18 17:00:07 +0800 | [diff] [blame] | 672 | return None |
| 673 | else: |
Faris Ansari | 64f01bd | 2020-04-14 11:51:48 +0530 | [diff] [blame] | 674 | return None |