Anand Doshi | 885e074 | 2015-03-03 14:55:30 +0530 | [diff] [blame] | 1 | # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors |
Rushabh Mehta | e67d1fb | 2013-08-05 14:59:54 +0530 | [diff] [blame] | 2 | # License: GNU General Public License v3. See license.txt |
Nabin Hait | 23941aa | 2013-01-29 11:32:38 +0530 | [diff] [blame] | 3 | |
Nabin Hait | 23941aa | 2013-01-29 11:32:38 +0530 | [diff] [blame] | 4 | |
Saqib | 9051735 | 2021-10-04 11:44:46 +0530 | [diff] [blame] | 5 | from json import loads |
Ankush Menat | 2535d5e | 2022-06-14 18:20:33 +0530 | [diff] [blame] | 6 | from typing import TYPE_CHECKING, List, Optional, Tuple |
Saqib | 9051735 | 2021-10-04 11:44:46 +0530 | [diff] [blame] | 7 | |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 8 | import frappe |
Nabin Hait | 9b20e07 | 2017-04-25 12:10:24 +0530 | [diff] [blame] | 9 | import frappe.defaults |
ruthra kumar | 451cf3a | 2022-05-16 14:29:58 +0530 | [diff] [blame] | 10 | from frappe import _, qb, throw |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 11 | from frappe.model.meta import get_field_precision |
ruthra kumar | 8c87674 | 2022-06-14 17:46:04 +0530 | [diff] [blame] | 12 | from frappe.query_builder import AliasedQuery, Criterion, Table |
| 13 | from frappe.query_builder.functions import Sum |
Gavin D'souza | 0727d1d | 2022-06-13 12:39:28 +0530 | [diff] [blame] | 14 | from frappe.query_builder.utils import DocType |
Ankush Menat | 5c6f22f | 2022-06-15 19:30:26 +0530 | [diff] [blame] | 15 | from frappe.utils import ( |
| 16 | cint, |
| 17 | create_batch, |
| 18 | cstr, |
| 19 | flt, |
| 20 | formatdate, |
| 21 | get_number_format_info, |
| 22 | getdate, |
| 23 | now, |
| 24 | nowdate, |
| 25 | ) |
Gavin D'souza | 0727d1d | 2022-06-13 12:39:28 +0530 | [diff] [blame] | 26 | from pypika import Order |
| 27 | from pypika.terms import ExistsCriterion |
Anand Doshi | cd0989e | 2015-09-28 13:31:17 +0530 | [diff] [blame] | 28 | |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 29 | import erpnext |
| 30 | |
| 31 | # imported to enable erpnext.accounts.utils.get_account_currency |
| 32 | from erpnext.accounts.doctype.account.account import get_account_currency # noqa |
ruthra kumar | 451cf3a | 2022-05-16 14:29:58 +0530 | [diff] [blame] | 33 | from erpnext.accounts.doctype.accounting_dimension.accounting_dimension import get_dimensions |
Anurag Mishra | a11e738 | 2019-10-31 15:55:03 +0530 | [diff] [blame] | 34 | from erpnext.stock import get_warehouse_account_map |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 35 | from erpnext.stock.utils import get_stock_value_on |
| 36 | |
Ankush Menat | 2535d5e | 2022-06-14 18:20:33 +0530 | [diff] [blame] | 37 | if TYPE_CHECKING: |
| 38 | from erpnext.stock.doctype.repost_item_valuation.repost_item_valuation import RepostItemValuation |
| 39 | |
Anurag Mishra | a11e738 | 2019-10-31 15:55:03 +0530 | [diff] [blame] | 40 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 41 | class FiscalYearError(frappe.ValidationError): |
| 42 | pass |
| 43 | |
| 44 | |
| 45 | class PaymentEntryUnlinkError(frappe.ValidationError): |
| 46 | pass |
| 47 | |
Nabin Hait | 2b06aaa | 2013-08-22 18:25:43 +0530 | [diff] [blame] | 48 | |
Ankush Menat | 2535d5e | 2022-06-14 18:20:33 +0530 | [diff] [blame] | 49 | GL_REPOSTING_CHUNK = 100 |
| 50 | |
| 51 | |
Neil Trini Lasrado | 78fa695 | 2014-10-03 17:43:02 +0530 | [diff] [blame] | 52 | @frappe.whitelist() |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 53 | def get_fiscal_year( |
| 54 | date=None, fiscal_year=None, label="Date", verbose=1, company=None, as_dict=False |
| 55 | ): |
Anand Doshi | c75c1d7 | 2016-03-11 14:56:19 +0530 | [diff] [blame] | 56 | return get_fiscal_years(date, fiscal_year, label, verbose, company, as_dict=as_dict)[0] |
Nabin Hait | 23941aa | 2013-01-29 11:32:38 +0530 | [diff] [blame] | 57 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 58 | |
| 59 | def get_fiscal_years( |
| 60 | transaction_date=None, fiscal_year=None, label="Date", verbose=1, company=None, as_dict=False |
| 61 | ): |
Nabin Hait | 9784d27 | 2016-12-30 16:21:35 +0530 | [diff] [blame] | 62 | fiscal_years = frappe.cache().hget("fiscal_years", company) or [] |
Rushabh Mehta | d50da78 | 2017-07-28 11:39:01 +0530 | [diff] [blame] | 63 | |
| 64 | if not fiscal_years: |
Nabin Hait | 9784d27 | 2016-12-30 16:21:35 +0530 | [diff] [blame] | 65 | # if year start date is 2012-04-01, year end date should be 2013-03-31 (hence subdate) |
Gavin D'souza | 0727d1d | 2022-06-13 12:39:28 +0530 | [diff] [blame] | 66 | FY = DocType("Fiscal Year") |
Nabin Hait | fff3ab7 | 2015-01-14 16:27:13 +0530 | [diff] [blame] | 67 | |
Gavin D'souza | 0727d1d | 2022-06-13 12:39:28 +0530 | [diff] [blame] | 68 | query = ( |
| 69 | frappe.qb.from_(FY) |
| 70 | .select(FY.name, FY.year_start_date, FY.year_end_date) |
| 71 | .where(FY.disabled == 0) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 72 | ) |
Rushabh Mehta | d50da78 | 2017-07-28 11:39:01 +0530 | [diff] [blame] | 73 | |
Gavin D'souza | 0727d1d | 2022-06-13 12:39:28 +0530 | [diff] [blame] | 74 | if fiscal_year: |
| 75 | query = query.where(FY.name == fiscal_year) |
| 76 | |
| 77 | if company: |
| 78 | FYC = DocType("Fiscal Year Company") |
| 79 | query = query.where( |
| 80 | ExistsCriterion(frappe.qb.from_(FYC).select(FYC.name).where(FYC.parent == FY.name)).negate() |
| 81 | | ExistsCriterion( |
| 82 | frappe.qb.from_(FYC) |
| 83 | .select(FYC.company) |
| 84 | .where(FYC.parent == FY.name) |
| 85 | .where(FYC.company == company) |
| 86 | ) |
| 87 | ) |
| 88 | |
| 89 | query = query.orderby(FY.year_start_date, Order.desc) |
| 90 | fiscal_years = query.run(as_dict=True) |
| 91 | |
Nabin Hait | 9784d27 | 2016-12-30 16:21:35 +0530 | [diff] [blame] | 92 | frappe.cache().hset("fiscal_years", company, fiscal_years) |
Nabin Hait | fff3ab7 | 2015-01-14 16:27:13 +0530 | [diff] [blame] | 93 | |
Prssanna Desai | 82ddef5 | 2020-06-18 18:18:41 +0530 | [diff] [blame] | 94 | if not transaction_date and not fiscal_year: |
| 95 | return fiscal_years |
| 96 | |
Nabin Hait | 9784d27 | 2016-12-30 16:21:35 +0530 | [diff] [blame] | 97 | if transaction_date: |
| 98 | transaction_date = getdate(transaction_date) |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 99 | |
Nabin Hait | 9784d27 | 2016-12-30 16:21:35 +0530 | [diff] [blame] | 100 | for fy in fiscal_years: |
| 101 | matched = False |
| 102 | if fiscal_year and fy.name == fiscal_year: |
| 103 | matched = True |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 104 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 105 | if ( |
| 106 | transaction_date |
| 107 | and getdate(fy.year_start_date) <= transaction_date |
| 108 | and getdate(fy.year_end_date) >= transaction_date |
| 109 | ): |
Nabin Hait | 9784d27 | 2016-12-30 16:21:35 +0530 | [diff] [blame] | 110 | matched = True |
Rushabh Mehta | d50da78 | 2017-07-28 11:39:01 +0530 | [diff] [blame] | 111 | |
Nabin Hait | 9784d27 | 2016-12-30 16:21:35 +0530 | [diff] [blame] | 112 | if matched: |
| 113 | if as_dict: |
| 114 | return (fy,) |
| 115 | else: |
| 116 | return ((fy.name, fy.year_start_date, fy.year_end_date),) |
| 117 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 118 | error_msg = _("""{0} {1} is not in any active Fiscal Year""").format( |
| 119 | label, formatdate(transaction_date) |
| 120 | ) |
Anuja P | 2e4faf9 | 2020-12-05 13:36:43 +0530 | [diff] [blame] | 121 | if company: |
Anuja P | 550cb9c | 2020-12-07 11:11:00 +0530 | [diff] [blame] | 122 | error_msg = _("""{0} for {1}""").format(error_msg, frappe.bold(company)) |
rohitwaghchaure | d60ff83 | 2021-02-16 09:12:27 +0530 | [diff] [blame] | 123 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 124 | if verbose == 1: |
| 125 | frappe.msgprint(error_msg) |
cclauss | 6848708 | 2017-07-27 07:08:35 +0200 | [diff] [blame] | 126 | raise FiscalYearError(error_msg) |
Nabin Hait | 9784d27 | 2016-12-30 16:21:35 +0530 | [diff] [blame] | 127 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 128 | |
Prssanna Desai | 82ddef5 | 2020-06-18 18:18:41 +0530 | [diff] [blame] | 129 | @frappe.whitelist() |
| 130 | def get_fiscal_year_filter_field(company=None): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 131 | field = {"fieldtype": "Select", "options": [], "operator": "Between", "query_value": True} |
Prssanna Desai | 82ddef5 | 2020-06-18 18:18:41 +0530 | [diff] [blame] | 132 | fiscal_years = get_fiscal_years(company=company) |
| 133 | for fiscal_year in fiscal_years: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 134 | field["options"].append( |
| 135 | { |
| 136 | "label": fiscal_year.name, |
| 137 | "value": fiscal_year.name, |
| 138 | "query_value": [ |
| 139 | fiscal_year.year_start_date.strftime("%Y-%m-%d"), |
| 140 | fiscal_year.year_end_date.strftime("%Y-%m-%d"), |
| 141 | ], |
| 142 | } |
| 143 | ) |
Prssanna Desai | 82ddef5 | 2020-06-18 18:18:41 +0530 | [diff] [blame] | 144 | return field |
| 145 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 146 | |
Nabin Hait | 8bf5836 | 2017-03-27 12:30:01 +0530 | [diff] [blame] | 147 | def validate_fiscal_year(date, fiscal_year, company, label="Date", doc=None): |
| 148 | years = [f[0] for f in get_fiscal_years(date, label=_(label), company=company)] |
Rushabh Mehta | c2563ef | 2013-02-05 23:25:37 +0530 | [diff] [blame] | 149 | if fiscal_year not in years: |
Rushabh Mehta | d60acb9 | 2015-02-19 14:51:58 +0530 | [diff] [blame] | 150 | if doc: |
| 151 | doc.fiscal_year = years[0] |
| 152 | else: |
| 153 | throw(_("{0} '{1}' not in Fiscal Year {2}").format(label, formatdate(date), fiscal_year)) |
Nabin Hait | 23941aa | 2013-01-29 11:32:38 +0530 | [diff] [blame] | 154 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 155 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 156 | @frappe.whitelist() |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 157 | def get_balance_on( |
| 158 | account=None, |
| 159 | date=None, |
| 160 | party_type=None, |
| 161 | party=None, |
| 162 | company=None, |
| 163 | in_account_currency=True, |
| 164 | cost_center=None, |
| 165 | ignore_account_permission=False, |
| 166 | ): |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 167 | if not account and frappe.form_dict.get("account"): |
| 168 | account = frappe.form_dict.get("account") |
Nabin Hait | 6f17cf9 | 2014-09-17 14:11:22 +0530 | [diff] [blame] | 169 | if not date and frappe.form_dict.get("date"): |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 170 | date = frappe.form_dict.get("date") |
Nabin Hait | 6f17cf9 | 2014-09-17 14:11:22 +0530 | [diff] [blame] | 171 | if not party_type and frappe.form_dict.get("party_type"): |
| 172 | party_type = frappe.form_dict.get("party_type") |
| 173 | if not party and frappe.form_dict.get("party"): |
| 174 | party = frappe.form_dict.get("party") |
Sanjay Kumar | 1b49f3a | 2018-09-06 13:09:35 +0400 | [diff] [blame] | 175 | if not cost_center and frappe.form_dict.get("cost_center"): |
| 176 | cost_center = frappe.form_dict.get("cost_center") |
| 177 | |
Nabin Hait | 9837285 | 2020-07-30 20:52:20 +0530 | [diff] [blame] | 178 | cond = ["is_cancelled=0"] |
Nabin Hait | 23941aa | 2013-01-29 11:32:38 +0530 | [diff] [blame] | 179 | if date: |
Suraj Shetty | bfc195d | 2018-09-21 10:20:52 +0530 | [diff] [blame] | 180 | cond.append("posting_date <= %s" % frappe.db.escape(cstr(date))) |
Nabin Hait | 23941aa | 2013-01-29 11:32:38 +0530 | [diff] [blame] | 181 | else: |
| 182 | # get balance of all entries that exist |
| 183 | date = nowdate() |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 184 | |
Deepesh Garg | 8c21703 | 2019-07-16 09:41:01 +0530 | [diff] [blame] | 185 | if account: |
| 186 | acc = frappe.get_doc("Account", account) |
| 187 | |
Nabin Hait | 23941aa | 2013-01-29 11:32:38 +0530 | [diff] [blame] | 188 | try: |
Deepesh Garg | 96d40ec | 2020-07-03 22:59:00 +0530 | [diff] [blame] | 189 | year_start_date = get_fiscal_year(date, company=company, verbose=0)[1] |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 190 | except FiscalYearError: |
Nabin Hait | 23941aa | 2013-01-29 11:32:38 +0530 | [diff] [blame] | 191 | if getdate(date) > getdate(nowdate()): |
| 192 | # if fiscal year not found and the date is greater than today |
| 193 | # get fiscal year for today's date and its corresponding year start date |
| 194 | year_start_date = get_fiscal_year(nowdate(), verbose=1)[1] |
| 195 | else: |
| 196 | # this indicates that it is a date older than any existing fiscal year. |
| 197 | # hence, assuming balance as 0.0 |
| 198 | return 0.0 |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 199 | |
deepeshgarg007 | 2ddbebf | 2019-07-20 14:52:59 +0530 | [diff] [blame] | 200 | if account: |
deepeshgarg007 | e097d4f | 2019-07-20 14:49:32 +0530 | [diff] [blame] | 201 | report_type = acc.report_type |
deepeshgarg007 | 1ee3d04 | 2019-07-20 14:46:59 +0530 | [diff] [blame] | 202 | else: |
| 203 | report_type = "" |
| 204 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 205 | if cost_center and report_type == "Profit and Loss": |
Sanjay Kumar | 1b49f3a | 2018-09-06 13:09:35 +0400 | [diff] [blame] | 206 | cc = frappe.get_doc("Cost Center", cost_center) |
| 207 | if cc.is_group: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 208 | cond.append( |
| 209 | """ exists ( |
Sanjay Kumar | 1b49f3a | 2018-09-06 13:09:35 +0400 | [diff] [blame] | 210 | select 1 from `tabCost Center` cc where cc.name = gle.cost_center |
| 211 | and cc.lft >= %s and cc.rgt <= %s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 212 | )""" |
| 213 | % (cc.lft, cc.rgt) |
| 214 | ) |
Sanjay Kumar | 1b49f3a | 2018-09-06 13:09:35 +0400 | [diff] [blame] | 215 | |
| 216 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 217 | cond.append("""gle.cost_center = %s """ % (frappe.db.escape(cost_center, percent=False),)) |
Sanjay Kumar | 1b49f3a | 2018-09-06 13:09:35 +0400 | [diff] [blame] | 218 | |
Nabin Hait | 6f17cf9 | 2014-09-17 14:11:22 +0530 | [diff] [blame] | 219 | if account: |
Sanjay Kumar | 1b49f3a | 2018-09-06 13:09:35 +0400 | [diff] [blame] | 220 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 221 | if not (frappe.flags.ignore_account_permission or ignore_account_permission): |
Rushabh Mehta | 2e7f9d2 | 2015-10-15 16:31:16 +0530 | [diff] [blame] | 222 | acc.check_permission("read") |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 223 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 224 | if report_type == "Profit and Loss": |
Sanjay Kumar | 1b49f3a | 2018-09-06 13:09:35 +0400 | [diff] [blame] | 225 | # for pl accounts, get balance within a fiscal year |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 226 | cond.append( |
| 227 | "posting_date >= '%s' and voucher_type != 'Period Closing Voucher'" % year_start_date |
| 228 | ) |
Nabin Hait | 6f17cf9 | 2014-09-17 14:11:22 +0530 | [diff] [blame] | 229 | # different filter for group and ledger - improved performance |
Rushabh Mehta | 38c6b52 | 2015-04-23 13:14:17 +0530 | [diff] [blame] | 230 | if acc.is_group: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 231 | cond.append( |
| 232 | """exists ( |
Nabin Hait | 6b01abe | 2015-06-14 17:49:29 +0530 | [diff] [blame] | 233 | select name from `tabAccount` ac where ac.name = gle.account |
Nabin Hait | 6f17cf9 | 2014-09-17 14:11:22 +0530 | [diff] [blame] | 234 | and ac.lft >= %s and ac.rgt <= %s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 235 | )""" |
| 236 | % (acc.lft, acc.rgt) |
| 237 | ) |
Anand Doshi | cd0989e | 2015-09-28 13:31:17 +0530 | [diff] [blame] | 238 | |
| 239 | # If group and currency same as company, |
Nabin Hait | 59f4fa9 | 2015-09-17 13:57:42 +0530 | [diff] [blame] | 240 | # always return balance based on debit and credit in company currency |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 241 | if acc.account_currency == frappe.get_cached_value("Company", acc.company, "default_currency"): |
Nabin Hait | 59f4fa9 | 2015-09-17 13:57:42 +0530 | [diff] [blame] | 242 | in_account_currency = False |
Nabin Hait | 6f17cf9 | 2014-09-17 14:11:22 +0530 | [diff] [blame] | 243 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 244 | cond.append("""gle.account = %s """ % (frappe.db.escape(account, percent=False),)) |
Anand Doshi | c75c1d7 | 2016-03-11 14:56:19 +0530 | [diff] [blame] | 245 | |
Nabin Hait | 6f17cf9 | 2014-09-17 14:11:22 +0530 | [diff] [blame] | 246 | if party_type and party: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 247 | cond.append( |
| 248 | """gle.party_type = %s and gle.party = %s """ |
| 249 | % (frappe.db.escape(party_type), frappe.db.escape(party, percent=False)) |
| 250 | ) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 251 | |
Nabin Hait | 85648d9 | 2016-07-20 11:26:45 +0530 | [diff] [blame] | 252 | if company: |
Suraj Shetty | bfc195d | 2018-09-21 10:20:52 +0530 | [diff] [blame] | 253 | cond.append("""gle.company = %s """ % (frappe.db.escape(company, percent=False))) |
Anand Doshi | 0b031cd | 2015-09-16 12:46:54 +0530 | [diff] [blame] | 254 | |
Nabin Hait | dc76823 | 2015-08-17 11:27:00 +0530 | [diff] [blame] | 255 | if account or (party_type and party): |
Nabin Hait | c0e3b1a | 2015-09-04 13:26:23 +0530 | [diff] [blame] | 256 | if in_account_currency: |
Anand Doshi | 602e825 | 2015-11-16 19:05:46 +0530 | [diff] [blame] | 257 | select_field = "sum(debit_in_account_currency) - sum(credit_in_account_currency)" |
Nabin Hait | c0e3b1a | 2015-09-04 13:26:23 +0530 | [diff] [blame] | 258 | else: |
Anand Doshi | 602e825 | 2015-11-16 19:05:46 +0530 | [diff] [blame] | 259 | select_field = "sum(debit) - sum(credit)" |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 260 | bal = frappe.db.sql( |
| 261 | """ |
Nabin Hait | c0e3b1a | 2015-09-04 13:26:23 +0530 | [diff] [blame] | 262 | SELECT {0} |
Nabin Hait | dc76823 | 2015-08-17 11:27:00 +0530 | [diff] [blame] | 263 | FROM `tabGL Entry` gle |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 264 | WHERE {1}""".format( |
| 265 | select_field, " and ".join(cond) |
| 266 | ) |
| 267 | )[0][0] |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 268 | |
Nabin Hait | dc76823 | 2015-08-17 11:27:00 +0530 | [diff] [blame] | 269 | # if bal is None, return 0 |
| 270 | return flt(bal) |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 271 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 272 | |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 273 | def get_count_on(account, fieldname, date): |
Nabin Hait | 9837285 | 2020-07-30 20:52:20 +0530 | [diff] [blame] | 274 | cond = ["is_cancelled=0"] |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 275 | if date: |
Suraj Shetty | bfc195d | 2018-09-21 10:20:52 +0530 | [diff] [blame] | 276 | cond.append("posting_date <= %s" % frappe.db.escape(cstr(date))) |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 277 | else: |
| 278 | # get balance of all entries that exist |
| 279 | date = nowdate() |
| 280 | |
| 281 | try: |
| 282 | year_start_date = get_fiscal_year(date, verbose=0)[1] |
| 283 | except FiscalYearError: |
| 284 | if getdate(date) > getdate(nowdate()): |
| 285 | # if fiscal year not found and the date is greater than today |
| 286 | # get fiscal year for today's date and its corresponding year start date |
| 287 | year_start_date = get_fiscal_year(nowdate(), verbose=1)[1] |
| 288 | else: |
| 289 | # this indicates that it is a date older than any existing fiscal year. |
| 290 | # hence, assuming balance as 0.0 |
| 291 | return 0.0 |
| 292 | |
| 293 | if account: |
| 294 | acc = frappe.get_doc("Account", account) |
| 295 | |
| 296 | if not frappe.flags.ignore_account_permission: |
| 297 | acc.check_permission("read") |
| 298 | |
| 299 | # for pl accounts, get balance within a fiscal year |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 300 | if acc.report_type == "Profit and Loss": |
| 301 | cond.append( |
| 302 | "posting_date >= '%s' and voucher_type != 'Period Closing Voucher'" % year_start_date |
| 303 | ) |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 304 | |
| 305 | # different filter for group and ledger - improved performance |
| 306 | if acc.is_group: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 307 | cond.append( |
| 308 | """exists ( |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 309 | select name from `tabAccount` ac where ac.name = gle.account |
| 310 | and ac.lft >= %s and ac.rgt <= %s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 311 | )""" |
| 312 | % (acc.lft, acc.rgt) |
| 313 | ) |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 314 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 315 | cond.append("""gle.account = %s """ % (frappe.db.escape(account, percent=False),)) |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 316 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 317 | entries = frappe.db.sql( |
| 318 | """ |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 319 | SELECT name, posting_date, account, party_type, party,debit,credit, |
| 320 | voucher_type, voucher_no, against_voucher_type, against_voucher |
| 321 | FROM `tabGL Entry` gle |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 322 | WHERE {0}""".format( |
| 323 | " and ".join(cond) |
| 324 | ), |
| 325 | as_dict=True, |
| 326 | ) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 327 | |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 328 | count = 0 |
| 329 | for gle in entries: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 330 | if fieldname not in ("invoiced_amount", "payables"): |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 331 | count += 1 |
| 332 | else: |
| 333 | dr_or_cr = "debit" if fieldname == "invoiced_amount" else "credit" |
| 334 | cr_or_dr = "credit" if fieldname == "invoiced_amount" else "debit" |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 335 | select_fields = ( |
| 336 | "ifnull(sum(credit-debit),0)" |
| 337 | if fieldname == "invoiced_amount" |
| 338 | else "ifnull(sum(debit-credit),0)" |
| 339 | ) |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 340 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 341 | if ( |
| 342 | (not gle.against_voucher) |
| 343 | or (gle.against_voucher_type in ["Sales Order", "Purchase Order"]) |
| 344 | or (gle.against_voucher == gle.voucher_no and gle.get(dr_or_cr) > 0) |
| 345 | ): |
| 346 | payment_amount = frappe.db.sql( |
| 347 | """ |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 348 | SELECT {0} |
| 349 | FROM `tabGL Entry` gle |
| 350 | WHERE docstatus < 2 and posting_date <= %(date)s and against_voucher = %(voucher_no)s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 351 | and party = %(party)s and name != %(name)s""".format( |
| 352 | select_fields |
| 353 | ), |
| 354 | {"date": date, "voucher_no": gle.voucher_no, "party": gle.party, "name": gle.name}, |
| 355 | )[0][0] |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 356 | |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 357 | outstanding_amount = flt(gle.get(dr_or_cr)) - flt(gle.get(cr_or_dr)) - payment_amount |
| 358 | currency_precision = get_currency_precision() or 2 |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 359 | if abs(flt(outstanding_amount)) > 0.1 / 10**currency_precision: |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 360 | count += 1 |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 361 | |
RobertSchouten | 8d43b32 | 2016-09-20 13:41:39 +0800 | [diff] [blame] | 362 | return count |
| 363 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 364 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 365 | @frappe.whitelist() |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 366 | def add_ac(args=None): |
Saurabh | 2f02101 | 2017-01-11 12:41:01 +0530 | [diff] [blame] | 367 | from frappe.desk.treeview import make_tree_args |
| 368 | |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 369 | if not args: |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 370 | args = frappe.local.form_dict |
Saurabh | 2f02101 | 2017-01-11 12:41:01 +0530 | [diff] [blame] | 371 | |
Nabin Hait | 02d987e | 2017-02-17 15:50:26 +0530 | [diff] [blame] | 372 | args.doctype = "Account" |
Saurabh | 2f02101 | 2017-01-11 12:41:01 +0530 | [diff] [blame] | 373 | args = make_tree_args(**args) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 374 | |
Anand Doshi | 3e41fd1 | 2014-04-22 18:54:54 +0530 | [diff] [blame] | 375 | ac = frappe.new_doc("Account") |
Rushabh Mehta | 0dcb861 | 2016-05-31 07:22:37 +0530 | [diff] [blame] | 376 | |
Nabin Hait | 665568d | 2016-05-13 15:56:00 +0530 | [diff] [blame] | 377 | if args.get("ignore_permissions"): |
| 378 | ac.flags.ignore_permissions = True |
| 379 | args.pop("ignore_permissions") |
Rushabh Mehta | 0dcb861 | 2016-05-31 07:22:37 +0530 | [diff] [blame] | 380 | |
Anand Doshi | 3e41fd1 | 2014-04-22 18:54:54 +0530 | [diff] [blame] | 381 | ac.update(args) |
Saurabh | 0e47bfe | 2016-05-30 17:54:16 +0530 | [diff] [blame] | 382 | |
| 383 | if not ac.parent_account: |
| 384 | ac.parent_account = args.get("parent") |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 385 | |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 386 | ac.old_parent = "" |
| 387 | ac.freeze_account = "No" |
Nabin Hait | a1ec7f1 | 2016-05-11 12:37:22 +0530 | [diff] [blame] | 388 | if cint(ac.get("is_root")): |
| 389 | ac.parent_account = None |
Rushabh Mehta | 0dcb861 | 2016-05-31 07:22:37 +0530 | [diff] [blame] | 390 | ac.flags.ignore_mandatory = True |
| 391 | |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 392 | ac.insert() |
Anand Doshi | 3e41fd1 | 2014-04-22 18:54:54 +0530 | [diff] [blame] | 393 | |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 394 | return ac.name |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 395 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 396 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 397 | @frappe.whitelist() |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 398 | def add_cc(args=None): |
Saurabh | 2f02101 | 2017-01-11 12:41:01 +0530 | [diff] [blame] | 399 | from frappe.desk.treeview import make_tree_args |
| 400 | |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 401 | if not args: |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 402 | args = frappe.local.form_dict |
Rushabh Mehta | d50da78 | 2017-07-28 11:39:01 +0530 | [diff] [blame] | 403 | |
Nabin Hait | 02d987e | 2017-02-17 15:50:26 +0530 | [diff] [blame] | 404 | args.doctype = "Cost Center" |
Saurabh | 2f02101 | 2017-01-11 12:41:01 +0530 | [diff] [blame] | 405 | args = make_tree_args(**args) |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 406 | |
Zarrar | 7ab70ca | 2018-06-08 14:33:15 +0530 | [diff] [blame] | 407 | if args.parent_cost_center == args.company: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 408 | args.parent_cost_center = "{0} - {1}".format( |
| 409 | args.parent_cost_center, frappe.get_cached_value("Company", args.company, "abbr") |
| 410 | ) |
Zarrar | 7ab70ca | 2018-06-08 14:33:15 +0530 | [diff] [blame] | 411 | |
Anand Doshi | 3e41fd1 | 2014-04-22 18:54:54 +0530 | [diff] [blame] | 412 | cc = frappe.new_doc("Cost Center") |
| 413 | cc.update(args) |
Saurabh | 0e47bfe | 2016-05-30 17:54:16 +0530 | [diff] [blame] | 414 | |
| 415 | if not cc.parent_cost_center: |
| 416 | cc.parent_cost_center = args.get("parent") |
| 417 | |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 418 | cc.old_parent = "" |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 419 | cc.insert() |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 420 | return cc.name |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 421 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 422 | |
Rucha Mahabal | 108cce2 | 2022-07-07 19:00:19 +0530 | [diff] [blame] | 423 | def reconcile_against_document(args): # nosemgrep |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 424 | """ |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 425 | Cancel PE or JV, Update against document, split if required and resubmit |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 426 | """ |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 427 | # To optimize making GL Entry for PE or JV with multiple references |
| 428 | reconciled_entries = {} |
| 429 | for row in args: |
| 430 | if not reconciled_entries.get((row.voucher_type, row.voucher_no)): |
| 431 | reconciled_entries[(row.voucher_type, row.voucher_no)] = [] |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 432 | |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 433 | reconciled_entries[(row.voucher_type, row.voucher_no)].append(row) |
| 434 | |
| 435 | for key, entries in reconciled_entries.items(): |
| 436 | voucher_type = key[0] |
| 437 | voucher_no = key[1] |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 438 | |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 439 | # cancel advance entry |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 440 | doc = frappe.get_doc(voucher_type, voucher_no) |
Subin Tom | b8845b9 | 2021-07-30 16:30:18 +0530 | [diff] [blame] | 441 | frappe.flags.ignore_party_validation = True |
ruthra kumar | 524c175 | 2022-05-26 16:00:40 +0530 | [diff] [blame] | 442 | gl_map = doc.build_gl_map() |
| 443 | create_payment_ledger_entry(gl_map, cancel=1, adv_adj=1) |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 444 | |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 445 | for entry in entries: |
| 446 | check_if_advance_entry_modified(entry) |
| 447 | validate_allocated_amount(entry) |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 448 | |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 449 | # update ref in advance entry |
| 450 | if voucher_type == "Journal Entry": |
| 451 | update_reference_in_journal_entry(entry, doc, do_not_save=True) |
| 452 | else: |
| 453 | update_reference_in_payment_entry(entry, doc, do_not_save=True) |
| 454 | |
| 455 | doc.save(ignore_permissions=True) |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 456 | # re-submit advance entry |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 457 | doc = frappe.get_doc(entry.voucher_type, entry.voucher_no) |
ruthra kumar | 524c175 | 2022-05-26 16:00:40 +0530 | [diff] [blame] | 458 | gl_map = doc.build_gl_map() |
| 459 | create_payment_ledger_entry(gl_map, cancel=0, adv_adj=1) |
| 460 | |
Subin Tom | b8845b9 | 2021-07-30 16:30:18 +0530 | [diff] [blame] | 461 | frappe.flags.ignore_party_validation = False |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 462 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 463 | if entry.voucher_type in ("Payment Entry", "Journal Entry"): |
Rucha Mahabal | 3051f6e | 2022-06-30 21:37:55 +0530 | [diff] [blame] | 464 | if hasattr(doc, "update_expense_claim"): |
| 465 | doc.update_expense_claim() |
Nabin Hait | 5cd04a6 | 2019-05-27 11:44:06 +0530 | [diff] [blame] | 466 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 467 | |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 468 | def check_if_advance_entry_modified(args): |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 469 | """ |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 470 | check if there is already a voucher reference |
| 471 | check if amount is same |
| 472 | check if jv is submitted |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 473 | """ |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 474 | if not args.get("unreconciled_amount"): |
| 475 | args.update({"unreconciled_amount": args.get("unadjusted_amount")}) |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 476 | |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 477 | ret = None |
| 478 | if args.voucher_type == "Journal Entry": |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 479 | ret = frappe.db.sql( |
| 480 | """ |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 481 | select t2.{dr_or_cr} from `tabJournal Entry` t1, `tabJournal Entry Account` t2 |
| 482 | where t1.name = t2.parent and t2.account = %(account)s |
| 483 | and t2.party_type = %(party_type)s and t2.party = %(party)s |
Conor | 74a782d | 2022-06-17 06:31:27 -0500 | [diff] [blame] | 484 | and (t2.reference_type is null or t2.reference_type in ('', 'Sales Order', 'Purchase Order')) |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 485 | and t1.name = %(voucher_no)s and t2.name = %(voucher_detail_no)s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 486 | and t1.docstatus=1 """.format( |
| 487 | dr_or_cr=args.get("dr_or_cr") |
| 488 | ), |
| 489 | args, |
| 490 | ) |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 491 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 492 | party_account_field = ( |
| 493 | "paid_from" if erpnext.get_party_account_type(args.party_type) == "Receivable" else "paid_to" |
| 494 | ) |
rohitwaghchaure | e8358f3 | 2018-05-16 11:02:26 +0530 | [diff] [blame] | 495 | |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 496 | if args.voucher_detail_no: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 497 | ret = frappe.db.sql( |
| 498 | """select t1.name |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 499 | from `tabPayment Entry` t1, `tabPayment Entry Reference` t2 |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 500 | where |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 501 | t1.name = t2.parent and t1.docstatus = 1 |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 502 | and t1.name = %(voucher_no)s and t2.name = %(voucher_detail_no)s |
| 503 | and t1.party_type = %(party_type)s and t1.party = %(party)s and t1.{0} = %(account)s |
Conor | 74a782d | 2022-06-17 06:31:27 -0500 | [diff] [blame] | 504 | and t2.reference_doctype in ('', 'Sales Order', 'Purchase Order') |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 505 | and t2.allocated_amount = %(unreconciled_amount)s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 506 | """.format( |
| 507 | party_account_field |
| 508 | ), |
| 509 | args, |
| 510 | ) |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 511 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 512 | ret = frappe.db.sql( |
| 513 | """select name from `tabPayment Entry` |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 514 | where |
| 515 | name = %(voucher_no)s and docstatus = 1 |
| 516 | and party_type = %(party_type)s and party = %(party)s and {0} = %(account)s |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 517 | and unallocated_amount = %(unreconciled_amount)s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 518 | """.format( |
| 519 | party_account_field |
| 520 | ), |
| 521 | args, |
| 522 | ) |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 523 | |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 524 | if not ret: |
Akhilesh Darjee | 4f72156 | 2014-01-29 16:31:38 +0530 | [diff] [blame] | 525 | throw(_("""Payment Entry has been modified after you pulled it. Please pull it again.""")) |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 526 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 527 | |
Nabin Hait | 576f025 | 2014-04-30 19:30:50 +0530 | [diff] [blame] | 528 | def validate_allocated_amount(args): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 529 | precision = args.get("precision") or frappe.db.get_single_value( |
| 530 | "System Settings", "currency_precision" |
| 531 | ) |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 532 | if args.get("allocated_amount") < 0: |
Kenneth Sequeira | a29ed40 | 2019-05-27 11:47:07 +0530 | [diff] [blame] | 533 | throw(_("Allocated amount cannot be negative")) |
Deepesh Garg | f54d596 | 2021-03-31 14:06:02 +0530 | [diff] [blame] | 534 | elif flt(args.get("allocated_amount"), precision) > flt(args.get("unadjusted_amount"), precision): |
Kenneth Sequeira | a29ed40 | 2019-05-27 11:47:07 +0530 | [diff] [blame] | 535 | throw(_("Allocated amount cannot be greater than unadjusted amount")) |
Nabin Hait | 576f025 | 2014-04-30 19:30:50 +0530 | [diff] [blame] | 536 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 537 | |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 538 | def update_reference_in_journal_entry(d, journal_entry, do_not_save=False): |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 539 | """ |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 540 | Updates against document, if partial amount splits into rows |
Nabin Hait | fb3fd6e | 2013-01-30 19:16:13 +0530 | [diff] [blame] | 541 | """ |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 542 | jv_detail = journal_entry.get("accounts", {"name": d["voucher_detail_no"]})[0] |
Rushabh Mehta | 1828c12 | 2015-08-10 17:04:07 +0530 | [diff] [blame] | 543 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 544 | if flt(d["unadjusted_amount"]) - flt(d["allocated_amount"]) != 0: |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 545 | # adjust the unreconciled balance |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 546 | amount_in_account_currency = flt(d["unadjusted_amount"]) - flt(d["allocated_amount"]) |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 547 | amount_in_company_currency = amount_in_account_currency * flt(jv_detail.exchange_rate) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 548 | jv_detail.set(d["dr_or_cr"], amount_in_account_currency) |
| 549 | jv_detail.set( |
| 550 | "debit" if d["dr_or_cr"] == "debit_in_account_currency" else "credit", |
| 551 | amount_in_company_currency, |
| 552 | ) |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 553 | else: |
| 554 | journal_entry.remove(jv_detail) |
Anand Doshi | 0b031cd | 2015-09-16 12:46:54 +0530 | [diff] [blame] | 555 | |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 556 | # new row with references |
| 557 | new_row = journal_entry.append("accounts") |
Anuja Pawar | 1a6e98e | 2021-10-29 20:52:47 +0530 | [diff] [blame] | 558 | |
| 559 | new_row.update((frappe.copy_doc(jv_detail)).as_dict()) |
Rushabh Mehta | 2e7f9d2 | 2015-10-15 16:31:16 +0530 | [diff] [blame] | 560 | |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 561 | new_row.set(d["dr_or_cr"], d["allocated_amount"]) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 562 | new_row.set( |
| 563 | "debit" if d["dr_or_cr"] == "debit_in_account_currency" else "credit", |
| 564 | d["allocated_amount"] * flt(jv_detail.exchange_rate), |
| 565 | ) |
Rushabh Mehta | 2e7f9d2 | 2015-10-15 16:31:16 +0530 | [diff] [blame] | 566 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 567 | new_row.set( |
| 568 | "credit_in_account_currency" |
| 569 | if d["dr_or_cr"] == "debit_in_account_currency" |
| 570 | else "debit_in_account_currency", |
| 571 | 0, |
| 572 | ) |
| 573 | new_row.set("credit" if d["dr_or_cr"] == "debit_in_account_currency" else "debit", 0) |
Rushabh Mehta | 2e7f9d2 | 2015-10-15 16:31:16 +0530 | [diff] [blame] | 574 | |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 575 | new_row.set("reference_type", d["against_voucher_type"]) |
| 576 | new_row.set("reference_name", d["against_voucher"]) |
| 577 | |
| 578 | new_row.against_account = cstr(jv_detail.against_account) |
| 579 | new_row.is_advance = cstr(jv_detail.is_advance) |
| 580 | new_row.docstatus = 1 |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 581 | |
| 582 | # will work as update after submit |
Anuja Pawar | 3e404f1 | 2021-08-31 18:59:29 +0530 | [diff] [blame] | 583 | journal_entry.flags.ignore_validate_update_after_submit = True |
| 584 | if not do_not_save: |
| 585 | journal_entry.save(ignore_permissions=True) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 586 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 587 | |
Rohit Waghchaure | a2408a6 | 2019-06-24 01:52:48 +0530 | [diff] [blame] | 588 | def update_reference_in_payment_entry(d, payment_entry, do_not_save=False): |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 589 | reference_details = { |
| 590 | "reference_doctype": d.against_voucher_type, |
| 591 | "reference_name": d.against_voucher, |
| 592 | "total_amount": d.grand_total, |
| 593 | "outstanding_amount": d.outstanding_amount, |
| 594 | "allocated_amount": d.allocated_amount, |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 595 | "exchange_rate": d.exchange_rate |
| 596 | if not d.exchange_gain_loss |
| 597 | else payment_entry.get_exchange_rate(), |
| 598 | "exchange_gain_loss": d.exchange_gain_loss, # only populated from invoice in case of advance allocation |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 599 | } |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 600 | |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 601 | if d.voucher_detail_no: |
| 602 | existing_row = payment_entry.get("references", {"name": d["voucher_detail_no"]})[0] |
| 603 | original_row = existing_row.as_dict().copy() |
| 604 | existing_row.update(reference_details) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 605 | |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 606 | if d.allocated_amount < original_row.allocated_amount: |
| 607 | new_row = payment_entry.append("references") |
| 608 | new_row.docstatus = 1 |
Achilles Rasquinha | efb7319 | 2018-05-23 01:01:24 -0500 | [diff] [blame] | 609 | for field in list(reference_details): |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 610 | new_row.set(field, original_row[field]) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 611 | |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 612 | new_row.allocated_amount = original_row.allocated_amount - d.allocated_amount |
| 613 | else: |
| 614 | new_row = payment_entry.append("references") |
| 615 | new_row.docstatus = 1 |
| 616 | new_row.update(reference_details) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 617 | |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 618 | payment_entry.flags.ignore_validate_update_after_submit = True |
Nabin Hait | 05aefbb | 2016-06-28 19:42:19 +0530 | [diff] [blame] | 619 | payment_entry.setup_party_account_field() |
Nabin Hait | 1991c7b | 2016-06-27 20:09:05 +0530 | [diff] [blame] | 620 | payment_entry.set_missing_values() |
Nabin Hait | 28a0528 | 2016-06-27 17:41:39 +0530 | [diff] [blame] | 621 | payment_entry.set_amounts() |
Rohit Waghchaure | a2408a6 | 2019-06-24 01:52:48 +0530 | [diff] [blame] | 622 | |
| 623 | if d.difference_amount and d.difference_account: |
Saqib | a20999c | 2021-07-12 14:33:23 +0530 | [diff] [blame] | 624 | account_details = { |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 625 | "account": d.difference_account, |
| 626 | "cost_center": payment_entry.cost_center |
| 627 | or frappe.get_cached_value("Company", payment_entry.company, "cost_center"), |
Saqib | a20999c | 2021-07-12 14:33:23 +0530 | [diff] [blame] | 628 | } |
| 629 | if d.difference_amount: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 630 | account_details["amount"] = d.difference_amount |
Saqib | a20999c | 2021-07-12 14:33:23 +0530 | [diff] [blame] | 631 | |
| 632 | payment_entry.set_gain_or_loss(account_details=account_details) |
Rohit Waghchaure | a2408a6 | 2019-06-24 01:52:48 +0530 | [diff] [blame] | 633 | |
| 634 | if not do_not_save: |
| 635 | payment_entry.save(ignore_permissions=True) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 636 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 637 | |
Nabin Hait | 297d74a | 2016-11-23 15:58:51 +0530 | [diff] [blame] | 638 | def unlink_ref_doc_from_payment_entries(ref_doc): |
| 639 | remove_ref_doc_link_from_jv(ref_doc.doctype, ref_doc.name) |
| 640 | remove_ref_doc_link_from_pe(ref_doc.doctype, ref_doc.name) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 641 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 642 | frappe.db.sql( |
| 643 | """update `tabGL Entry` |
Nabin Hait | e0cc87d | 2016-07-21 18:30:03 +0530 | [diff] [blame] | 644 | set against_voucher_type=null, against_voucher=null, |
| 645 | modified=%s, modified_by=%s |
| 646 | where against_voucher_type=%s and against_voucher=%s |
| 647 | and voucher_no != ifnull(against_voucher, '')""", |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 648 | (now(), frappe.session.user, ref_doc.doctype, ref_doc.name), |
| 649 | ) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 650 | |
Nabin Hait | 297d74a | 2016-11-23 15:58:51 +0530 | [diff] [blame] | 651 | if ref_doc.doctype in ("Sales Invoice", "Purchase Invoice"): |
| 652 | ref_doc.set("advances", []) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 653 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 654 | frappe.db.sql( |
| 655 | """delete from `tab{0} Advance` where parent = %s""".format(ref_doc.doctype), ref_doc.name |
| 656 | ) |
| 657 | |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 658 | |
Nabin Hait | e0cc87d | 2016-07-21 18:30:03 +0530 | [diff] [blame] | 659 | def remove_ref_doc_link_from_jv(ref_type, ref_no): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 660 | linked_jv = frappe.db.sql_list( |
| 661 | """select parent from `tabJournal Entry Account` |
| 662 | where reference_type=%s and reference_name=%s and docstatus < 2""", |
| 663 | (ref_type, ref_no), |
| 664 | ) |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 665 | |
| 666 | if linked_jv: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 667 | frappe.db.sql( |
| 668 | """update `tabJournal Entry Account` |
Rushabh Mehta | 1828c12 | 2015-08-10 17:04:07 +0530 | [diff] [blame] | 669 | set reference_type=null, reference_name = null, |
Nabin Hait | dc15b4f | 2014-01-20 16:48:49 +0530 | [diff] [blame] | 670 | modified=%s, modified_by=%s |
Rushabh Mehta | 1828c12 | 2015-08-10 17:04:07 +0530 | [diff] [blame] | 671 | where reference_type=%s and reference_name=%s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 672 | and docstatus < 2""", |
| 673 | (now(), frappe.session.user, ref_type, ref_no), |
| 674 | ) |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 675 | |
Suraj Shetty | 48e9bc3 | 2020-01-29 15:06:18 +0530 | [diff] [blame] | 676 | frappe.msgprint(_("Journal Entries {0} are un-linked").format("\n".join(linked_jv))) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 677 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 678 | |
Nabin Hait | e0cc87d | 2016-07-21 18:30:03 +0530 | [diff] [blame] | 679 | def remove_ref_doc_link_from_pe(ref_type, ref_no): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 680 | linked_pe = frappe.db.sql_list( |
| 681 | """select parent from `tabPayment Entry Reference` |
| 682 | where reference_doctype=%s and reference_name=%s and docstatus < 2""", |
| 683 | (ref_type, ref_no), |
| 684 | ) |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 685 | |
Nabin Hait | e0cc87d | 2016-07-21 18:30:03 +0530 | [diff] [blame] | 686 | if linked_pe: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 687 | frappe.db.sql( |
| 688 | """update `tabPayment Entry Reference` |
Nabin Hait | e0cc87d | 2016-07-21 18:30:03 +0530 | [diff] [blame] | 689 | set allocated_amount=0, modified=%s, modified_by=%s |
| 690 | where reference_doctype=%s and reference_name=%s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 691 | and docstatus < 2""", |
| 692 | (now(), frappe.session.user, ref_type, ref_no), |
| 693 | ) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 694 | |
Nabin Hait | e0cc87d | 2016-07-21 18:30:03 +0530 | [diff] [blame] | 695 | for pe in linked_pe: |
Deepesh Garg | c5276f3 | 2021-08-01 17:48:50 +0530 | [diff] [blame] | 696 | try: |
| 697 | pe_doc = frappe.get_doc("Payment Entry", pe) |
Deepesh Garg | 7141860 | 2021-08-10 22:21:28 +0530 | [diff] [blame] | 698 | pe_doc.set_amounts() |
Deepesh Garg | b516239 | 2021-08-10 14:52:24 +0530 | [diff] [blame] | 699 | pe_doc.clear_unallocated_reference_document_rows() |
| 700 | pe_doc.validate_payment_type_with_outstanding() |
Deepesh Garg | c5276f3 | 2021-08-01 17:48:50 +0530 | [diff] [blame] | 701 | except Exception as e: |
| 702 | msg = _("There were issues unlinking payment entry {0}.").format(pe_doc.name) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 703 | msg += "<br>" |
Deepesh Garg | 188bba8 | 2021-08-10 14:04:31 +0530 | [diff] [blame] | 704 | msg += _("Please cancel payment entry manually first") |
Deepesh Garg | 7141860 | 2021-08-10 22:21:28 +0530 | [diff] [blame] | 705 | frappe.throw(msg, exc=PaymentEntryUnlinkError, title=_("Payment Unlink Error")) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 706 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 707 | frappe.db.sql( |
| 708 | """update `tabPayment Entry` set total_allocated_amount=%s, |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 709 | base_total_allocated_amount=%s, unallocated_amount=%s, modified=%s, modified_by=%s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 710 | where name=%s""", |
| 711 | ( |
| 712 | pe_doc.total_allocated_amount, |
| 713 | pe_doc.base_total_allocated_amount, |
| 714 | pe_doc.unallocated_amount, |
| 715 | now(), |
| 716 | frappe.session.user, |
| 717 | pe, |
| 718 | ), |
| 719 | ) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 720 | |
Suraj Shetty | 48e9bc3 | 2020-01-29 15:06:18 +0530 | [diff] [blame] | 721 | frappe.msgprint(_("Payment Entries {0} are un-linked").format("\n".join(linked_pe))) |
Nabin Hait | 0fc2454 | 2013-03-25 11:06:00 +0530 | [diff] [blame] | 722 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 723 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 724 | @frappe.whitelist() |
Rohit Waghchaure | 2a14f25 | 2021-07-30 12:36:35 +0530 | [diff] [blame] | 725 | def get_company_default(company, fieldname, ignore_validation=False): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 726 | value = frappe.get_cached_value("Company", company, fieldname) |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 727 | |
Rohit Waghchaure | 2a14f25 | 2021-07-30 12:36:35 +0530 | [diff] [blame] | 728 | if not ignore_validation and not value: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 729 | throw( |
| 730 | _("Please set default {0} in Company {1}").format( |
| 731 | frappe.get_meta("Company").get_label(fieldname), company |
| 732 | ) |
| 733 | ) |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 734 | |
Nabin Hait | 0fc2454 | 2013-03-25 11:06:00 +0530 | [diff] [blame] | 735 | return value |
Nabin Hait | 8b509f5 | 2013-05-28 16:52:30 +0530 | [diff] [blame] | 736 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 737 | |
Nabin Hait | 8b509f5 | 2013-05-28 16:52:30 +0530 | [diff] [blame] | 738 | def fix_total_debit_credit(): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 739 | vouchers = frappe.db.sql( |
| 740 | """select voucher_type, voucher_no, |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 741 | sum(debit) - sum(credit) as diff |
| 742 | from `tabGL Entry` |
Nabin Hait | 8b509f5 | 2013-05-28 16:52:30 +0530 | [diff] [blame] | 743 | group by voucher_type, voucher_no |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 744 | having sum(debit) != sum(credit)""", |
| 745 | as_dict=1, |
| 746 | ) |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 747 | |
Nabin Hait | 8b509f5 | 2013-05-28 16:52:30 +0530 | [diff] [blame] | 748 | for d in vouchers: |
| 749 | if abs(d.diff) > 0: |
| 750 | dr_or_cr = d.voucher_type == "Sales Invoice" and "credit" or "debit" |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 751 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 752 | frappe.db.sql( |
| 753 | """update `tabGL Entry` set %s = %s + %s |
| 754 | where voucher_type = %s and voucher_no = %s and %s > 0 limit 1""" |
| 755 | % (dr_or_cr, dr_or_cr, "%s", "%s", "%s", dr_or_cr), |
| 756 | (d.diff, d.voucher_type, d.voucher_no), |
| 757 | ) |
| 758 | |
Anand Doshi | cd71e1d | 2014-04-08 13:53:35 +0530 | [diff] [blame] | 759 | |
Rushabh Mehta | d50da78 | 2017-07-28 11:39:01 +0530 | [diff] [blame] | 760 | def get_currency_precision(): |
Nabin Hait | 9b20e07 | 2017-04-25 12:10:24 +0530 | [diff] [blame] | 761 | precision = cint(frappe.db.get_default("currency_precision")) |
| 762 | if not precision: |
| 763 | number_format = frappe.db.get_default("number_format") or "#,###.##" |
| 764 | precision = get_number_format_info(number_format)[2] |
Rushabh Mehta | d50da78 | 2017-07-28 11:39:01 +0530 | [diff] [blame] | 765 | |
Nabin Hait | 9b20e07 | 2017-04-25 12:10:24 +0530 | [diff] [blame] | 766 | return precision |
Rushabh Mehta | d50da78 | 2017-07-28 11:39:01 +0530 | [diff] [blame] | 767 | |
Nabin Hait | 9a0c46f | 2014-08-07 15:10:05 +0530 | [diff] [blame] | 768 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 769 | def get_stock_rbnb_difference(posting_date, company): |
| 770 | stock_items = frappe.db.sql_list( |
| 771 | """select distinct item_code |
| 772 | from `tabStock Ledger Entry` where company=%s""", |
| 773 | company, |
| 774 | ) |
| 775 | |
| 776 | pr_valuation_amount = frappe.db.sql( |
| 777 | """ |
Anand Doshi | 602e825 | 2015-11-16 19:05:46 +0530 | [diff] [blame] | 778 | select sum(pr_item.valuation_rate * pr_item.qty * pr_item.conversion_factor) |
Nabin Hait | 9a0c46f | 2014-08-07 15:10:05 +0530 | [diff] [blame] | 779 | from `tabPurchase Receipt Item` pr_item, `tabPurchase Receipt` pr |
Suraj Shetty | 084b0b3 | 2018-05-26 09:12:59 +0530 | [diff] [blame] | 780 | where pr.name = pr_item.parent and pr.docstatus=1 and pr.company=%s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 781 | and pr.posting_date <= %s and pr_item.item_code in (%s)""" |
| 782 | % ("%s", "%s", ", ".join(["%s"] * len(stock_items))), |
| 783 | tuple([company, posting_date] + stock_items), |
| 784 | )[0][0] |
Nabin Hait | 9a0c46f | 2014-08-07 15:10:05 +0530 | [diff] [blame] | 785 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 786 | pi_valuation_amount = frappe.db.sql( |
| 787 | """ |
Anand Doshi | 602e825 | 2015-11-16 19:05:46 +0530 | [diff] [blame] | 788 | select sum(pi_item.valuation_rate * pi_item.qty * pi_item.conversion_factor) |
Nabin Hait | 9a0c46f | 2014-08-07 15:10:05 +0530 | [diff] [blame] | 789 | from `tabPurchase Invoice Item` pi_item, `tabPurchase Invoice` pi |
Suraj Shetty | 084b0b3 | 2018-05-26 09:12:59 +0530 | [diff] [blame] | 790 | where pi.name = pi_item.parent and pi.docstatus=1 and pi.company=%s |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 791 | and pi.posting_date <= %s and pi_item.item_code in (%s)""" |
| 792 | % ("%s", "%s", ", ".join(["%s"] * len(stock_items))), |
| 793 | tuple([company, posting_date] + stock_items), |
| 794 | )[0][0] |
Nabin Hait | 9a0c46f | 2014-08-07 15:10:05 +0530 | [diff] [blame] | 795 | |
| 796 | # Balance should be |
| 797 | stock_rbnb = flt(pr_valuation_amount, 2) - flt(pi_valuation_amount, 2) |
| 798 | |
| 799 | # Balance as per system |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 800 | stock_rbnb_account = "Stock Received But Not Billed - " + frappe.get_cached_value( |
| 801 | "Company", company, "abbr" |
| 802 | ) |
Nabin Hait | c0e3b1a | 2015-09-04 13:26:23 +0530 | [diff] [blame] | 803 | sys_bal = get_balance_on(stock_rbnb_account, posting_date, in_account_currency=False) |
Nabin Hait | 9a0c46f | 2014-08-07 15:10:05 +0530 | [diff] [blame] | 804 | |
| 805 | # Amount should be credited |
| 806 | return flt(stock_rbnb) + flt(sys_bal) |
Ankit Javalkar | 8e7ca41 | 2014-09-12 15:18:53 +0530 | [diff] [blame] | 807 | |
tunde | c4b0d17 | 2017-09-26 00:48:30 +0100 | [diff] [blame] | 808 | |
tundebabzy | ad08d4c | 2018-05-16 07:01:41 +0100 | [diff] [blame] | 809 | def get_held_invoices(party_type, party): |
| 810 | """ |
| 811 | Returns a list of names Purchase Invoices for the given party that are on hold |
| 812 | """ |
| 813 | held_invoices = None |
| 814 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 815 | if party_type == "Supplier": |
tundebabzy | ad08d4c | 2018-05-16 07:01:41 +0100 | [diff] [blame] | 816 | held_invoices = frappe.db.sql( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 817 | "select name from `tabPurchase Invoice` where release_date IS NOT NULL and release_date > CURDATE()", |
| 818 | as_dict=1, |
tundebabzy | ad08d4c | 2018-05-16 07:01:41 +0100 | [diff] [blame] | 819 | ) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 820 | held_invoices = set(d["name"] for d in held_invoices) |
tundebabzy | ad08d4c | 2018-05-16 07:01:41 +0100 | [diff] [blame] | 821 | |
| 822 | return held_invoices |
| 823 | |
| 824 | |
ruthra kumar | 8c87674 | 2022-06-14 17:46:04 +0530 | [diff] [blame] | 825 | def get_outstanding_invoices( |
ruthra kumar | 5f1562c | 2022-07-28 11:57:27 +0530 | [diff] [blame] | 826 | party_type, |
| 827 | party, |
| 828 | account, |
| 829 | common_filter=None, |
| 830 | posting_date=None, |
| 831 | min_outstanding=None, |
| 832 | max_outstanding=None, |
ruthra kumar | 8c87674 | 2022-06-14 17:46:04 +0530 | [diff] [blame] | 833 | ): |
| 834 | |
| 835 | ple = qb.DocType("Payment Ledger Entry") |
Anand Doshi | d40d1e9 | 2015-11-12 17:05:29 +0530 | [diff] [blame] | 836 | outstanding_invoices = [] |
Nabin Hait | ac18498 | 2019-02-04 21:13:43 +0530 | [diff] [blame] | 837 | precision = frappe.get_precision("Sales Invoice", "outstanding_amount") or 2 |
Anand Doshi | d40d1e9 | 2015-11-12 17:05:29 +0530 | [diff] [blame] | 838 | |
Nabin Hait | 9db9edc | 2019-11-19 18:44:32 +0530 | [diff] [blame] | 839 | if account: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 840 | root_type, account_type = frappe.get_cached_value( |
| 841 | "Account", account, ["root_type", "account_type"] |
| 842 | ) |
Nabin Hait | 9db9edc | 2019-11-19 18:44:32 +0530 | [diff] [blame] | 843 | party_account_type = "Receivable" if root_type == "Asset" else "Payable" |
Saqib | 9291df4 | 2020-01-24 16:22:49 +0530 | [diff] [blame] | 844 | party_account_type = account_type or party_account_type |
Nabin Hait | 9db9edc | 2019-11-19 18:44:32 +0530 | [diff] [blame] | 845 | else: |
| 846 | party_account_type = erpnext.get_party_account_type(party_type) |
| 847 | |
tundebabzy | ad08d4c | 2018-05-16 07:01:41 +0100 | [diff] [blame] | 848 | held_invoices = get_held_invoices(party_type, party) |
| 849 | |
ruthra kumar | 8c87674 | 2022-06-14 17:46:04 +0530 | [diff] [blame] | 850 | common_filter = common_filter or [] |
| 851 | common_filter.append(ple.account_type == party_account_type) |
| 852 | common_filter.append(ple.account == account) |
| 853 | common_filter.append(ple.party_type == party_type) |
| 854 | common_filter.append(ple.party == party) |
Ankit Javalkar | 8e7ca41 | 2014-09-12 15:18:53 +0530 | [diff] [blame] | 855 | |
ruthra kumar | 8c87674 | 2022-06-14 17:46:04 +0530 | [diff] [blame] | 856 | ple_query = QueryPaymentLedger() |
| 857 | invoice_list = ple_query.get_voucher_outstandings( |
| 858 | common_filter=common_filter, |
ruthra kumar | 5f1562c | 2022-07-28 11:57:27 +0530 | [diff] [blame] | 859 | posting_date=posting_date, |
ruthra kumar | 8c87674 | 2022-06-14 17:46:04 +0530 | [diff] [blame] | 860 | min_outstanding=min_outstanding, |
| 861 | max_outstanding=max_outstanding, |
| 862 | get_invoices=True, |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 863 | ) |
tunde | c4b0d17 | 2017-09-26 00:48:30 +0100 | [diff] [blame] | 864 | |
Nabin Hait | ac18498 | 2019-02-04 21:13:43 +0530 | [diff] [blame] | 865 | for d in invoice_list: |
ruthra kumar | 2198553 | 2022-06-30 15:14:38 +0530 | [diff] [blame] | 866 | payment_amount = d.invoice_amount_in_account_currency - d.outstanding_in_account_currency |
| 867 | outstanding_amount = d.outstanding_in_account_currency |
Nabin Hait | ac18498 | 2019-02-04 21:13:43 +0530 | [diff] [blame] | 868 | if outstanding_amount > 0.5 / (10**precision): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 869 | if ( |
ruthra kumar | 8c87674 | 2022-06-14 17:46:04 +0530 | [diff] [blame] | 870 | min_outstanding |
| 871 | and max_outstanding |
| 872 | and not (outstanding_amount >= min_outstanding and outstanding_amount <= max_outstanding) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 873 | ): |
Rohit Waghchaure | 0f065d5 | 2019-05-02 00:06:04 +0530 | [diff] [blame] | 874 | continue |
Nabin Hait | ac18498 | 2019-02-04 21:13:43 +0530 | [diff] [blame] | 875 | |
Rohit Waghchaure | 0f065d5 | 2019-05-02 00:06:04 +0530 | [diff] [blame] | 876 | if not d.voucher_type == "Purchase Invoice" or d.voucher_no not in held_invoices: |
Nabin Hait | ac18498 | 2019-02-04 21:13:43 +0530 | [diff] [blame] | 877 | outstanding_invoices.append( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 878 | frappe._dict( |
| 879 | { |
| 880 | "voucher_no": d.voucher_no, |
| 881 | "voucher_type": d.voucher_type, |
| 882 | "posting_date": d.posting_date, |
ruthra kumar | 2198553 | 2022-06-30 15:14:38 +0530 | [diff] [blame] | 883 | "invoice_amount": flt(d.invoice_amount_in_account_currency), |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 884 | "payment_amount": payment_amount, |
| 885 | "outstanding_amount": outstanding_amount, |
| 886 | "due_date": d.due_date, |
| 887 | "currency": d.currency, |
| 888 | } |
| 889 | ) |
Nabin Hait | ac18498 | 2019-02-04 21:13:43 +0530 | [diff] [blame] | 890 | ) |
Rushabh Mehta | e9d9b8e | 2016-12-15 11:27:35 +0530 | [diff] [blame] | 891 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 892 | outstanding_invoices = sorted( |
| 893 | outstanding_invoices, key=lambda k: k["due_date"] or getdate(nowdate()) |
| 894 | ) |
Anand Doshi | d40d1e9 | 2015-11-12 17:05:29 +0530 | [diff] [blame] | 895 | return outstanding_invoices |
Saurabh | 3a26829 | 2016-02-22 15:18:40 +0530 | [diff] [blame] | 896 | |
| 897 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 898 | def get_account_name( |
| 899 | account_type=None, root_type=None, is_group=None, account_currency=None, company=None |
| 900 | ): |
Saurabh | 3a26829 | 2016-02-22 15:18:40 +0530 | [diff] [blame] | 901 | """return account based on matching conditions""" |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 902 | return frappe.db.get_value( |
| 903 | "Account", |
| 904 | { |
| 905 | "account_type": account_type or "", |
| 906 | "root_type": root_type or "", |
| 907 | "is_group": is_group or 0, |
| 908 | "account_currency": account_currency or frappe.defaults.get_defaults().currency, |
| 909 | "company": company or frappe.defaults.get_defaults().company, |
| 910 | }, |
| 911 | "name", |
| 912 | ) |
| 913 | |
Saurabh | a9ba734 | 2016-06-21 12:33:12 +0530 | [diff] [blame] | 914 | |
| 915 | @frappe.whitelist() |
| 916 | def get_companies(): |
| 917 | """get a list of companies based on permission""" |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 918 | return [d.name for d in frappe.get_list("Company", fields=["name"], order_by="name")] |
| 919 | |
Saurabh | a9ba734 | 2016-06-21 12:33:12 +0530 | [diff] [blame] | 920 | |
| 921 | @frappe.whitelist() |
Rushabh Mehta | 4313326 | 2017-11-10 18:52:21 +0530 | [diff] [blame] | 922 | def get_children(doctype, parent, company, is_root=False): |
Nabin Hait | af98f5d | 2018-04-02 10:14:32 +0530 | [diff] [blame] | 923 | from erpnext.accounts.report.financial_statements import sort_accounts |
Rushabh Mehta | d50da78 | 2017-07-28 11:39:01 +0530 | [diff] [blame] | 924 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 925 | parent_fieldname = "parent_" + doctype.lower().replace(" ", "_") |
| 926 | fields = ["name as value", "is_group as expandable"] |
| 927 | filters = [["docstatus", "<", 2]] |
Suraj Shetty | fbb6b3d | 2018-05-16 13:53:31 +0530 | [diff] [blame] | 928 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 929 | filters.append(['ifnull(`{0}`,"")'.format(parent_fieldname), "=", "" if is_root else parent]) |
Suraj Shetty | 084b0b3 | 2018-05-26 09:12:59 +0530 | [diff] [blame] | 930 | |
Rushabh Mehta | 4313326 | 2017-11-10 18:52:21 +0530 | [diff] [blame] | 931 | if is_root: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 932 | fields += ["root_type", "report_type", "account_currency"] if doctype == "Account" else [] |
| 933 | filters.append(["company", "=", company]) |
Suraj Shetty | 084b0b3 | 2018-05-26 09:12:59 +0530 | [diff] [blame] | 934 | |
Saurabh | a9ba734 | 2016-06-21 12:33:12 +0530 | [diff] [blame] | 935 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 936 | fields += ["root_type", "account_currency"] if doctype == "Account" else [] |
| 937 | fields += [parent_fieldname + " as parent"] |
Suraj Shetty | 084b0b3 | 2018-05-26 09:12:59 +0530 | [diff] [blame] | 938 | |
| 939 | acc = frappe.get_list(doctype, fields=fields, filters=filters) |
Saurabh | a9ba734 | 2016-06-21 12:33:12 +0530 | [diff] [blame] | 940 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 941 | if doctype == "Account": |
Nabin Hait | af98f5d | 2018-04-02 10:14:32 +0530 | [diff] [blame] | 942 | sort_accounts(acc, is_root, key="value") |
Saurabh | a9ba734 | 2016-06-21 12:33:12 +0530 | [diff] [blame] | 943 | |
| 944 | return acc |
Saurabh | b835fef | 2016-09-09 11:19:22 +0530 | [diff] [blame] | 945 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 946 | |
Saqib | 9051735 | 2021-10-04 11:44:46 +0530 | [diff] [blame] | 947 | @frappe.whitelist() |
| 948 | def get_account_balances(accounts, company): |
| 949 | |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 950 | if isinstance(accounts, str): |
Saqib | 9051735 | 2021-10-04 11:44:46 +0530 | [diff] [blame] | 951 | accounts = loads(accounts) |
| 952 | |
| 953 | if not accounts: |
| 954 | return [] |
| 955 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 956 | company_currency = frappe.get_cached_value("Company", company, "default_currency") |
Saqib | 9051735 | 2021-10-04 11:44:46 +0530 | [diff] [blame] | 957 | |
| 958 | for account in accounts: |
| 959 | account["company_currency"] = company_currency |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 960 | account["balance"] = flt( |
| 961 | get_balance_on(account["value"], in_account_currency=False, company=company) |
| 962 | ) |
Saqib | 9051735 | 2021-10-04 11:44:46 +0530 | [diff] [blame] | 963 | if account["account_currency"] and account["account_currency"] != company_currency: |
| 964 | account["balance_in_account_currency"] = flt(get_balance_on(account["value"], company=company)) |
| 965 | |
| 966 | return accounts |
| 967 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 968 | |
Mangesh-Khairnar | 97ab96c | 2020-09-22 12:58:32 +0530 | [diff] [blame] | 969 | def create_payment_gateway_account(gateway, payment_channel="Email"): |
Deepesh Garg | a72589c | 2021-05-29 23:54:51 +0530 | [diff] [blame] | 970 | from erpnext.setup.setup_wizard.operations.install_fixtures import create_bank_account |
Saurabh | b835fef | 2016-09-09 11:19:22 +0530 | [diff] [blame] | 971 | |
| 972 | company = frappe.db.get_value("Global Defaults", None, "default_company") |
| 973 | if not company: |
| 974 | return |
| 975 | |
| 976 | # NOTE: we translate Payment Gateway account name because that is going to be used by the end user |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 977 | bank_account = frappe.db.get_value( |
| 978 | "Account", |
| 979 | {"account_name": _(gateway), "company": company}, |
| 980 | ["name", "account_currency"], |
| 981 | as_dict=1, |
| 982 | ) |
Saurabh | b835fef | 2016-09-09 11:19:22 +0530 | [diff] [blame] | 983 | |
| 984 | if not bank_account: |
| 985 | # check for untranslated one |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 986 | bank_account = frappe.db.get_value( |
| 987 | "Account", |
| 988 | {"account_name": gateway, "company": company}, |
| 989 | ["name", "account_currency"], |
| 990 | as_dict=1, |
| 991 | ) |
Saurabh | b835fef | 2016-09-09 11:19:22 +0530 | [diff] [blame] | 992 | |
| 993 | if not bank_account: |
| 994 | # try creating one |
| 995 | bank_account = create_bank_account({"company_name": company, "bank_account": _(gateway)}) |
| 996 | |
| 997 | if not bank_account: |
| 998 | frappe.msgprint(_("Payment Gateway Account not created, please create one manually.")) |
| 999 | return |
| 1000 | |
| 1001 | # if payment gateway account exists, return |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1002 | if frappe.db.exists( |
| 1003 | "Payment Gateway Account", |
| 1004 | {"payment_gateway": gateway, "currency": bank_account.account_currency}, |
| 1005 | ): |
Saurabh | b835fef | 2016-09-09 11:19:22 +0530 | [diff] [blame] | 1006 | return |
| 1007 | |
| 1008 | try: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1009 | frappe.get_doc( |
| 1010 | { |
| 1011 | "doctype": "Payment Gateway Account", |
| 1012 | "is_default": 1, |
| 1013 | "payment_gateway": gateway, |
| 1014 | "payment_account": bank_account.name, |
| 1015 | "currency": bank_account.account_currency, |
| 1016 | "payment_channel": payment_channel, |
| 1017 | } |
| 1018 | ).insert(ignore_permissions=True, ignore_if_duplicate=True) |
Saurabh | b835fef | 2016-09-09 11:19:22 +0530 | [diff] [blame] | 1019 | |
| 1020 | except frappe.DuplicateEntryError: |
| 1021 | # already exists, due to a reinstall? |
cclauss | 6848708 | 2017-07-27 07:08:35 +0200 | [diff] [blame] | 1022 | pass |
Zarrar | 4417590 | 2018-06-08 16:35:21 +0530 | [diff] [blame] | 1023 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1024 | |
Zarrar | 4417590 | 2018-06-08 16:35:21 +0530 | [diff] [blame] | 1025 | @frappe.whitelist() |
Deepesh Garg | 817cbc4 | 2020-06-15 12:07:04 +0530 | [diff] [blame] | 1026 | def update_cost_center(docname, cost_center_name, cost_center_number, company, merge): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1027 | """ |
| 1028 | Renames the document by adding the number as a prefix to the current name and updates |
| 1029 | all transaction where it was present. |
| 1030 | """ |
Saqib | a877987 | 2020-04-30 11:28:43 +0530 | [diff] [blame] | 1031 | validate_field_number("Cost Center", docname, cost_center_number, company, "cost_center_number") |
Zarrar | 4417590 | 2018-06-08 16:35:21 +0530 | [diff] [blame] | 1032 | |
Saqib | a877987 | 2020-04-30 11:28:43 +0530 | [diff] [blame] | 1033 | if cost_center_number: |
| 1034 | frappe.db.set_value("Cost Center", docname, "cost_center_number", cost_center_number.strip()) |
| 1035 | else: |
| 1036 | frappe.db.set_value("Cost Center", docname, "cost_center_number", "") |
Zarrar | 4417590 | 2018-06-08 16:35:21 +0530 | [diff] [blame] | 1037 | |
Saqib | a877987 | 2020-04-30 11:28:43 +0530 | [diff] [blame] | 1038 | frappe.db.set_value("Cost Center", docname, "cost_center_name", cost_center_name.strip()) |
Zarrar | 4417590 | 2018-06-08 16:35:21 +0530 | [diff] [blame] | 1039 | |
Nabin Hait | af21a11 | 2022-09-15 12:09:18 +0530 | [diff] [blame] | 1040 | new_name = get_autoname_with_number(cost_center_number, cost_center_name, company) |
Saqib | a877987 | 2020-04-30 11:28:43 +0530 | [diff] [blame] | 1041 | if docname != new_name: |
Deepesh Garg | 817cbc4 | 2020-06-15 12:07:04 +0530 | [diff] [blame] | 1042 | frappe.rename_doc("Cost Center", docname, new_name, force=1, merge=merge) |
Zarrar | 4417590 | 2018-06-08 16:35:21 +0530 | [diff] [blame] | 1043 | return new_name |
| 1044 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1045 | |
Saqib | a877987 | 2020-04-30 11:28:43 +0530 | [diff] [blame] | 1046 | def validate_field_number(doctype_name, docname, number_value, company, field_name): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1047 | """Validate if the number entered isn't already assigned to some other document.""" |
Zlash65 | 1aeca1d | 2018-07-06 17:15:33 +0530 | [diff] [blame] | 1048 | if number_value: |
Saqib | a877987 | 2020-04-30 11:28:43 +0530 | [diff] [blame] | 1049 | filters = {field_name: number_value, "name": ["!=", docname]} |
Zarrar | 4417590 | 2018-06-08 16:35:21 +0530 | [diff] [blame] | 1050 | if company: |
Saqib | a877987 | 2020-04-30 11:28:43 +0530 | [diff] [blame] | 1051 | filters["company"] = company |
| 1052 | |
| 1053 | doctype_with_same_number = frappe.db.get_value(doctype_name, filters) |
| 1054 | |
Zarrar | 4417590 | 2018-06-08 16:35:21 +0530 | [diff] [blame] | 1055 | if doctype_with_same_number: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1056 | frappe.throw( |
| 1057 | _("{0} Number {1} is already used in {2} {3}").format( |
| 1058 | doctype_name, number_value, doctype_name.lower(), doctype_with_same_number |
| 1059 | ) |
| 1060 | ) |
| 1061 | |
Zarrar | 4417590 | 2018-06-08 16:35:21 +0530 | [diff] [blame] | 1062 | |
Nabin Hait | af21a11 | 2022-09-15 12:09:18 +0530 | [diff] [blame] | 1063 | def get_autoname_with_number(number_value, doc_title, company): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1064 | """append title with prefix as number and suffix as company's abbreviation separated by '-'""" |
Nabin Hait | af21a11 | 2022-09-15 12:09:18 +0530 | [diff] [blame] | 1065 | company_abbr = frappe.get_cached_value("Company", company, "abbr") |
| 1066 | parts = [doc_title.strip(), company_abbr] |
| 1067 | |
Zlash65 | 1aeca1d | 2018-07-06 17:15:33 +0530 | [diff] [blame] | 1068 | if cstr(number_value).strip(): |
| 1069 | parts.insert(0, cstr(number_value).strip()) |
Nabin Hait | af21a11 | 2022-09-15 12:09:18 +0530 | [diff] [blame] | 1070 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1071 | return " - ".join(parts) |
| 1072 | |
Zarrar | 254ce64 | 2018-06-28 14:15:34 +0530 | [diff] [blame] | 1073 | |
| 1074 | @frappe.whitelist() |
| 1075 | def get_coa(doctype, parent, is_root, chart=None): |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 1076 | from erpnext.accounts.doctype.account.chart_of_accounts.chart_of_accounts import ( |
| 1077 | build_tree_from_json, |
| 1078 | ) |
Zarrar | 254ce64 | 2018-06-28 14:15:34 +0530 | [diff] [blame] | 1079 | |
| 1080 | # add chart to flags to retrieve when called from expand all function |
| 1081 | chart = chart if chart else frappe.flags.chart |
| 1082 | frappe.flags.chart = chart |
| 1083 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1084 | parent = None if parent == _("All Accounts") else parent |
| 1085 | accounts = build_tree_from_json(chart) # returns alist of dict in a tree render-able form |
Zarrar | 254ce64 | 2018-06-28 14:15:34 +0530 | [diff] [blame] | 1086 | |
| 1087 | # filter out to show data for the selected node only |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1088 | accounts = [d for d in accounts if d["parent_account"] == parent] |
Zarrar | 254ce64 | 2018-06-28 14:15:34 +0530 | [diff] [blame] | 1089 | |
| 1090 | return accounts |
Sanjay Kumar | 1b49f3a | 2018-09-06 13:09:35 +0400 | [diff] [blame] | 1091 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1092 | |
| 1093 | def update_gl_entries_after( |
| 1094 | posting_date, |
| 1095 | posting_time, |
| 1096 | for_warehouses=None, |
| 1097 | for_items=None, |
| 1098 | warehouse_account=None, |
| 1099 | company=None, |
| 1100 | ): |
| 1101 | stock_vouchers = get_future_stock_vouchers( |
| 1102 | posting_date, posting_time, for_warehouses, for_items, company |
| 1103 | ) |
Nabin Hait | 9b178bc | 2021-02-16 14:57:00 +0530 | [diff] [blame] | 1104 | repost_gle_for_stock_vouchers(stock_vouchers, posting_date, company, warehouse_account) |
| 1105 | |
| 1106 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1107 | def repost_gle_for_stock_vouchers( |
Ankush Menat | 2535d5e | 2022-06-14 18:20:33 +0530 | [diff] [blame] | 1108 | stock_vouchers: List[Tuple[str, str]], |
| 1109 | posting_date: str, |
| 1110 | company: Optional[str] = None, |
| 1111 | warehouse_account=None, |
| 1112 | repost_doc: Optional["RepostItemValuation"] = None, |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1113 | ): |
Ankush Menat | 67c2632 | 2022-06-04 14:46:35 +0530 | [diff] [blame] | 1114 | |
| 1115 | from erpnext.accounts.general_ledger import toggle_debit_credit_if_negative |
| 1116 | |
Ankush Menat | 700e864 | 2022-04-19 13:24:29 +0530 | [diff] [blame] | 1117 | if not stock_vouchers: |
| 1118 | return |
| 1119 | |
Deepesh Garg | 2a9c5ba | 2020-04-30 10:38:58 +0530 | [diff] [blame] | 1120 | if not warehouse_account: |
| 1121 | warehouse_account = get_warehouse_account_map(company) |
| 1122 | |
Ankush Menat | 2535d5e | 2022-06-14 18:20:33 +0530 | [diff] [blame] | 1123 | stock_vouchers = sort_stock_vouchers_by_posting_date(stock_vouchers) |
| 1124 | if repost_doc and repost_doc.gl_reposting_index: |
| 1125 | # Restore progress |
| 1126 | stock_vouchers = stock_vouchers[cint(repost_doc.gl_reposting_index) :] |
| 1127 | |
Rohit Waghchaure | bc8c9de | 2021-02-23 17:50:49 +0530 | [diff] [blame] | 1128 | precision = get_field_precision(frappe.get_meta("GL Entry").get_field("debit")) or 2 |
| 1129 | |
Ankush Menat | 5c6f22f | 2022-06-15 19:30:26 +0530 | [diff] [blame] | 1130 | for stock_vouchers_chunk in create_batch(stock_vouchers, GL_REPOSTING_CHUNK): |
Ankush Menat | 2535d5e | 2022-06-14 18:20:33 +0530 | [diff] [blame] | 1131 | gle = get_voucherwise_gl_entries(stock_vouchers_chunk, posting_date) |
| 1132 | |
| 1133 | for voucher_type, voucher_no in stock_vouchers_chunk: |
| 1134 | existing_gle = gle.get((voucher_type, voucher_no), []) |
| 1135 | voucher_obj = frappe.get_doc(voucher_type, voucher_no) |
| 1136 | # Some transactions post credit as negative debit, this is handled while posting GLE |
| 1137 | # but while comparing we need to make sure it's flipped so comparisons are accurate |
| 1138 | expected_gle = toggle_debit_credit_if_negative(voucher_obj.get_gl_entries(warehouse_account)) |
| 1139 | if expected_gle: |
| 1140 | if not existing_gle or not compare_existing_and_expected_gle( |
| 1141 | existing_gle, expected_gle, precision |
| 1142 | ): |
| 1143 | _delete_gl_entries(voucher_type, voucher_no) |
| 1144 | voucher_obj.make_gl_entries(gl_entries=expected_gle, from_repost=True) |
| 1145 | else: |
| 1146 | _delete_gl_entries(voucher_type, voucher_no) |
Ankush Menat | 86919d2 | 2022-06-15 21:19:09 +0530 | [diff] [blame] | 1147 | |
| 1148 | if not frappe.flags.in_test: |
| 1149 | frappe.db.commit() |
Ankush Menat | 2535d5e | 2022-06-14 18:20:33 +0530 | [diff] [blame] | 1150 | |
| 1151 | if repost_doc: |
| 1152 | repost_doc.db_set( |
| 1153 | "gl_reposting_index", |
Ankush Menat | 5c6f22f | 2022-06-15 19:30:26 +0530 | [diff] [blame] | 1154 | cint(repost_doc.gl_reposting_index) + len(stock_vouchers_chunk), |
Ankush Menat | 2535d5e | 2022-06-14 18:20:33 +0530 | [diff] [blame] | 1155 | ) |
| 1156 | |
| 1157 | |
| 1158 | def _delete_gl_entries(voucher_type, voucher_no): |
| 1159 | frappe.db.sql( |
| 1160 | """delete from `tabGL Entry` |
| 1161 | where voucher_type=%s and voucher_no=%s""", |
| 1162 | (voucher_type, voucher_no), |
| 1163 | ) |
Ankush Menat | eb53a97 | 2022-06-04 18:19:44 +0530 | [diff] [blame] | 1164 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1165 | |
Ankush Menat | 700e864 | 2022-04-19 13:24:29 +0530 | [diff] [blame] | 1166 | def sort_stock_vouchers_by_posting_date( |
| 1167 | stock_vouchers: List[Tuple[str, str]] |
| 1168 | ) -> List[Tuple[str, str]]: |
| 1169 | sle = frappe.qb.DocType("Stock Ledger Entry") |
| 1170 | voucher_nos = [v[1] for v in stock_vouchers] |
| 1171 | |
| 1172 | sles = ( |
| 1173 | frappe.qb.from_(sle) |
| 1174 | .select(sle.voucher_type, sle.voucher_no, sle.posting_date, sle.posting_time, sle.creation) |
| 1175 | .where((sle.is_cancelled == 0) & (sle.voucher_no.isin(voucher_nos))) |
| 1176 | .groupby(sle.voucher_type, sle.voucher_no) |
Ankush Menat | 2535d5e | 2022-06-14 18:20:33 +0530 | [diff] [blame] | 1177 | .orderby(sle.posting_date) |
| 1178 | .orderby(sle.posting_time) |
| 1179 | .orderby(sle.creation) |
Ankush Menat | 700e864 | 2022-04-19 13:24:29 +0530 | [diff] [blame] | 1180 | ).run(as_dict=True) |
| 1181 | sorted_vouchers = [(sle.voucher_type, sle.voucher_no) for sle in sles] |
| 1182 | |
| 1183 | unknown_vouchers = set(stock_vouchers) - set(sorted_vouchers) |
| 1184 | if unknown_vouchers: |
| 1185 | sorted_vouchers.extend(unknown_vouchers) |
| 1186 | |
| 1187 | return sorted_vouchers |
| 1188 | |
| 1189 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1190 | def get_future_stock_vouchers( |
| 1191 | posting_date, posting_time, for_warehouses=None, for_items=None, company=None |
| 1192 | ): |
Deepesh Garg | 2a9c5ba | 2020-04-30 10:38:58 +0530 | [diff] [blame] | 1193 | |
| 1194 | values = [] |
| 1195 | condition = "" |
| 1196 | if for_items: |
| 1197 | condition += " and item_code in ({})".format(", ".join(["%s"] * len(for_items))) |
| 1198 | values += for_items |
| 1199 | |
| 1200 | if for_warehouses: |
| 1201 | condition += " and warehouse in ({})".format(", ".join(["%s"] * len(for_warehouses))) |
| 1202 | values += for_warehouses |
| 1203 | |
rohitwaghchaure | d60ff83 | 2021-02-16 09:12:27 +0530 | [diff] [blame] | 1204 | if company: |
Nabin Hait | 9b178bc | 2021-02-16 14:57:00 +0530 | [diff] [blame] | 1205 | condition += " and company = %s" |
rohitwaghchaure | d60ff83 | 2021-02-16 09:12:27 +0530 | [diff] [blame] | 1206 | values.append(company) |
| 1207 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1208 | future_stock_vouchers = frappe.db.sql( |
| 1209 | """select distinct sle.voucher_type, sle.voucher_no |
Deepesh Garg | 2a9c5ba | 2020-04-30 10:38:58 +0530 | [diff] [blame] | 1210 | from `tabStock Ledger Entry` sle |
Nabin Hait | a77b8c9 | 2020-12-21 14:45:50 +0530 | [diff] [blame] | 1211 | where |
| 1212 | timestamp(sle.posting_date, sle.posting_time) >= timestamp(%s, %s) |
| 1213 | and is_cancelled = 0 |
| 1214 | {condition} |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1215 | order by timestamp(sle.posting_date, sle.posting_time) asc, creation asc for update""".format( |
| 1216 | condition=condition |
| 1217 | ), |
| 1218 | tuple([posting_date, posting_time] + values), |
| 1219 | as_dict=True, |
| 1220 | ) |
Deepesh Garg | 2a9c5ba | 2020-04-30 10:38:58 +0530 | [diff] [blame] | 1221 | |
Ankush | 9152715 | 2021-08-11 11:17:50 +0530 | [diff] [blame] | 1222 | return [(d.voucher_type, d.voucher_no) for d in future_stock_vouchers] |
Deepesh Garg | 2a9c5ba | 2020-04-30 10:38:58 +0530 | [diff] [blame] | 1223 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1224 | |
Deepesh Garg | 2a9c5ba | 2020-04-30 10:38:58 +0530 | [diff] [blame] | 1225 | def get_voucherwise_gl_entries(future_stock_vouchers, posting_date): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1226 | """Get voucherwise list of GL entries. |
Ankush | 9152715 | 2021-08-11 11:17:50 +0530 | [diff] [blame] | 1227 | |
| 1228 | Only fetches GLE fields required for comparing with new GLE. |
| 1229 | Check compare_existing_and_expected_gle function below. |
rohitwaghchaure | 058d983 | 2021-09-07 12:14:40 +0530 | [diff] [blame] | 1230 | |
| 1231 | returns: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1232 | Dict[Tuple[voucher_type, voucher_no], List[GL Entries]] |
Ankush | 9152715 | 2021-08-11 11:17:50 +0530 | [diff] [blame] | 1233 | """ |
Deepesh Garg | 2a9c5ba | 2020-04-30 10:38:58 +0530 | [diff] [blame] | 1234 | gl_entries = {} |
Ankush | 9152715 | 2021-08-11 11:17:50 +0530 | [diff] [blame] | 1235 | if not future_stock_vouchers: |
| 1236 | return gl_entries |
| 1237 | |
| 1238 | voucher_nos = [d[1] for d in future_stock_vouchers] |
| 1239 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1240 | gles = frappe.db.sql( |
| 1241 | """ |
rohitwaghchaure | 058d983 | 2021-09-07 12:14:40 +0530 | [diff] [blame] | 1242 | select name, account, credit, debit, cost_center, project, voucher_type, voucher_no |
Ankush | 9152715 | 2021-08-11 11:17:50 +0530 | [diff] [blame] | 1243 | from `tabGL Entry` |
| 1244 | where |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1245 | posting_date >= %s and voucher_no in (%s)""" |
| 1246 | % ("%s", ", ".join(["%s"] * len(voucher_nos))), |
| 1247 | tuple([posting_date] + voucher_nos), |
| 1248 | as_dict=1, |
| 1249 | ) |
Ankush | 9152715 | 2021-08-11 11:17:50 +0530 | [diff] [blame] | 1250 | |
| 1251 | for d in gles: |
| 1252 | gl_entries.setdefault((d.voucher_type, d.voucher_no), []).append(d) |
Deepesh Garg | 2a9c5ba | 2020-04-30 10:38:58 +0530 | [diff] [blame] | 1253 | |
Prssanna Desai | 82ddef5 | 2020-06-18 18:18:41 +0530 | [diff] [blame] | 1254 | return gl_entries |
Nabin Hait | a77b8c9 | 2020-12-21 14:45:50 +0530 | [diff] [blame] | 1255 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1256 | |
Rohit Waghchaure | bc8c9de | 2021-02-23 17:50:49 +0530 | [diff] [blame] | 1257 | def compare_existing_and_expected_gle(existing_gle, expected_gle, precision): |
Ankush | 9152715 | 2021-08-11 11:17:50 +0530 | [diff] [blame] | 1258 | if len(existing_gle) != len(expected_gle): |
| 1259 | return False |
| 1260 | |
Nabin Hait | a77b8c9 | 2020-12-21 14:45:50 +0530 | [diff] [blame] | 1261 | matched = True |
| 1262 | for entry in expected_gle: |
| 1263 | account_existed = False |
| 1264 | for e in existing_gle: |
| 1265 | if entry.account == e.account: |
| 1266 | account_existed = True |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1267 | if ( |
| 1268 | entry.account == e.account |
| 1269 | and (not entry.cost_center or not e.cost_center or entry.cost_center == e.cost_center) |
| 1270 | and ( |
| 1271 | flt(entry.debit, precision) != flt(e.debit, precision) |
| 1272 | or flt(entry.credit, precision) != flt(e.credit, precision) |
| 1273 | ) |
| 1274 | ): |
Nabin Hait | a77b8c9 | 2020-12-21 14:45:50 +0530 | [diff] [blame] | 1275 | matched = False |
| 1276 | break |
| 1277 | if not account_existed: |
| 1278 | matched = False |
| 1279 | break |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1280 | return matched |
| 1281 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1282 | |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1283 | def get_stock_accounts(company, voucher_type=None, voucher_no=None): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1284 | stock_accounts = [ |
| 1285 | d.name |
| 1286 | for d in frappe.db.get_all( |
| 1287 | "Account", {"account_type": "Stock", "company": company, "is_group": 0} |
| 1288 | ) |
| 1289 | ] |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1290 | if voucher_type and voucher_no: |
| 1291 | if voucher_type == "Journal Entry": |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1292 | stock_accounts = [ |
| 1293 | d.account |
| 1294 | for d in frappe.db.get_all( |
| 1295 | "Journal Entry Account", {"parent": voucher_no, "account": ["in", stock_accounts]}, "account" |
| 1296 | ) |
| 1297 | ] |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1298 | |
| 1299 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1300 | stock_accounts = [ |
| 1301 | d.account |
| 1302 | for d in frappe.db.get_all( |
| 1303 | "GL Entry", |
| 1304 | {"voucher_type": voucher_type, "voucher_no": voucher_no, "account": ["in", stock_accounts]}, |
| 1305 | "account", |
| 1306 | ) |
| 1307 | ] |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1308 | |
| 1309 | return stock_accounts |
| 1310 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1311 | |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1312 | def get_stock_and_account_balance(account=None, posting_date=None, company=None): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1313 | if not posting_date: |
| 1314 | posting_date = nowdate() |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1315 | |
| 1316 | warehouse_account = get_warehouse_account_map(company) |
| 1317 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1318 | account_balance = get_balance_on( |
| 1319 | account, posting_date, in_account_currency=False, ignore_account_permission=True |
| 1320 | ) |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1321 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1322 | related_warehouses = [ |
| 1323 | wh |
| 1324 | for wh, wh_details in warehouse_account.items() |
| 1325 | if wh_details.account == account and not wh_details.is_group |
| 1326 | ] |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1327 | |
| 1328 | total_stock_value = 0.0 |
| 1329 | for warehouse in related_warehouses: |
| 1330 | value = get_stock_value_on(warehouse, posting_date) |
| 1331 | total_stock_value += value |
| 1332 | |
| 1333 | precision = frappe.get_precision("Journal Entry Account", "debit_in_account_currency") |
| 1334 | return flt(account_balance, precision), flt(total_stock_value, precision), related_warehouses |
| 1335 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1336 | |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1337 | def get_journal_entry(account, stock_adjustment_account, amount): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1338 | db_or_cr_warehouse_account = ( |
| 1339 | "credit_in_account_currency" if amount < 0 else "debit_in_account_currency" |
| 1340 | ) |
| 1341 | db_or_cr_stock_adjustment_account = ( |
| 1342 | "debit_in_account_currency" if amount < 0 else "credit_in_account_currency" |
| 1343 | ) |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1344 | |
| 1345 | return { |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1346 | "accounts": [ |
| 1347 | {"account": account, db_or_cr_warehouse_account: abs(amount)}, |
| 1348 | {"account": stock_adjustment_account, db_or_cr_stock_adjustment_account: abs(amount)}, |
| 1349 | ] |
Nabin Hait | b99c77b | 2020-12-25 18:12:35 +0530 | [diff] [blame] | 1350 | } |
Shadrak Gurupnor | 7433757 | 2021-08-27 18:00:16 +0530 | [diff] [blame] | 1351 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1352 | |
Shadrak Gurupnor | 7433757 | 2021-08-27 18:00:16 +0530 | [diff] [blame] | 1353 | def check_and_delete_linked_reports(report): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1354 | """Check if reports are referenced in Desktop Icon""" |
| 1355 | icons = frappe.get_all("Desktop Icon", fields=["name"], filters={"_report": report}) |
Shadrak Gurupnor | 7433757 | 2021-08-27 18:00:16 +0530 | [diff] [blame] | 1356 | if icons: |
| 1357 | for icon in icons: |
| 1358 | frappe.delete_doc("Desktop Icon", icon) |
ruthra kumar | 451cf3a | 2022-05-16 14:29:58 +0530 | [diff] [blame] | 1359 | |
| 1360 | |
ruthra kumar | 524c175 | 2022-05-26 16:00:40 +0530 | [diff] [blame] | 1361 | def create_payment_ledger_entry( |
| 1362 | gl_entries, cancel=0, adv_adj=0, update_outstanding="Yes", from_repost=0 |
| 1363 | ): |
ruthra kumar | 451cf3a | 2022-05-16 14:29:58 +0530 | [diff] [blame] | 1364 | if gl_entries: |
| 1365 | ple = None |
| 1366 | |
| 1367 | # companies |
| 1368 | account = qb.DocType("Account") |
| 1369 | companies = list(set([x.company for x in gl_entries])) |
| 1370 | |
| 1371 | # receivable/payable account |
| 1372 | accounts_with_types = ( |
| 1373 | qb.from_(account) |
| 1374 | .select(account.name, account.account_type) |
| 1375 | .where( |
| 1376 | (account.account_type.isin(["Receivable", "Payable"]) & (account.company.isin(companies))) |
| 1377 | ) |
| 1378 | .run(as_dict=True) |
| 1379 | ) |
| 1380 | receivable_or_payable_accounts = [y.name for y in accounts_with_types] |
| 1381 | |
| 1382 | def get_account_type(account): |
| 1383 | for entry in accounts_with_types: |
| 1384 | if entry.name == account: |
| 1385 | return entry.account_type |
| 1386 | |
| 1387 | dr_or_cr = 0 |
| 1388 | account_type = None |
| 1389 | for gle in gl_entries: |
| 1390 | if gle.account in receivable_or_payable_accounts: |
| 1391 | account_type = get_account_type(gle.account) |
| 1392 | if account_type == "Receivable": |
| 1393 | dr_or_cr = gle.debit - gle.credit |
| 1394 | dr_or_cr_account_currency = gle.debit_in_account_currency - gle.credit_in_account_currency |
| 1395 | elif account_type == "Payable": |
| 1396 | dr_or_cr = gle.credit - gle.debit |
| 1397 | dr_or_cr_account_currency = gle.credit_in_account_currency - gle.debit_in_account_currency |
| 1398 | |
| 1399 | if cancel: |
| 1400 | dr_or_cr *= -1 |
| 1401 | dr_or_cr_account_currency *= -1 |
| 1402 | |
| 1403 | ple = frappe.get_doc( |
| 1404 | { |
| 1405 | "doctype": "Payment Ledger Entry", |
| 1406 | "posting_date": gle.posting_date, |
| 1407 | "company": gle.company, |
| 1408 | "account_type": account_type, |
| 1409 | "account": gle.account, |
| 1410 | "party_type": gle.party_type, |
| 1411 | "party": gle.party, |
| 1412 | "cost_center": gle.cost_center, |
| 1413 | "finance_book": gle.finance_book, |
| 1414 | "due_date": gle.due_date, |
| 1415 | "voucher_type": gle.voucher_type, |
| 1416 | "voucher_no": gle.voucher_no, |
| 1417 | "against_voucher_type": gle.against_voucher_type |
| 1418 | if gle.against_voucher_type |
| 1419 | else gle.voucher_type, |
| 1420 | "against_voucher_no": gle.against_voucher if gle.against_voucher else gle.voucher_no, |
ruthra kumar | 2198553 | 2022-06-30 15:14:38 +0530 | [diff] [blame] | 1421 | "account_currency": gle.account_currency, |
ruthra kumar | 451cf3a | 2022-05-16 14:29:58 +0530 | [diff] [blame] | 1422 | "amount": dr_or_cr, |
| 1423 | "amount_in_account_currency": dr_or_cr_account_currency, |
| 1424 | "delinked": True if cancel else False, |
ruthra kumar | 5782c44 | 2022-08-22 15:46:04 +0530 | [diff] [blame] | 1425 | "remarks": gle.remarks, |
ruthra kumar | 451cf3a | 2022-05-16 14:29:58 +0530 | [diff] [blame] | 1426 | } |
| 1427 | ) |
| 1428 | |
| 1429 | dimensions_and_defaults = get_dimensions() |
| 1430 | if dimensions_and_defaults: |
| 1431 | for dimension in dimensions_and_defaults[0]: |
| 1432 | ple.set(dimension.fieldname, gle.get(dimension.fieldname)) |
| 1433 | |
| 1434 | if cancel: |
| 1435 | delink_original_entry(ple) |
| 1436 | ple.flags.ignore_permissions = 1 |
ruthra kumar | 524c175 | 2022-05-26 16:00:40 +0530 | [diff] [blame] | 1437 | ple.flags.adv_adj = adv_adj |
| 1438 | ple.flags.from_repost = from_repost |
| 1439 | ple.flags.update_outstanding = update_outstanding |
ruthra kumar | 451cf3a | 2022-05-16 14:29:58 +0530 | [diff] [blame] | 1440 | ple.submit() |
| 1441 | |
| 1442 | |
ruthra kumar | 7312f22 | 2022-05-29 21:33:08 +0530 | [diff] [blame] | 1443 | def update_voucher_outstanding(voucher_type, voucher_no, account, party_type, party): |
| 1444 | ple = frappe.qb.DocType("Payment Ledger Entry") |
| 1445 | vouchers = [frappe._dict({"voucher_type": voucher_type, "voucher_no": voucher_no})] |
| 1446 | common_filter = [] |
| 1447 | if account: |
| 1448 | common_filter.append(ple.account == account) |
| 1449 | |
| 1450 | if party_type: |
| 1451 | common_filter.append(ple.party_type == party_type) |
| 1452 | |
| 1453 | if party: |
| 1454 | common_filter.append(ple.party == party) |
| 1455 | |
| 1456 | ple_query = QueryPaymentLedger() |
| 1457 | |
| 1458 | # on cancellation outstanding can be an empty list |
| 1459 | voucher_outstanding = ple_query.get_voucher_outstandings(vouchers, common_filter=common_filter) |
| 1460 | if voucher_type in ["Sales Invoice", "Purchase Invoice", "Fees"] and voucher_outstanding: |
| 1461 | outstanding = voucher_outstanding[0] |
| 1462 | ref_doc = frappe.get_doc(voucher_type, voucher_no) |
| 1463 | |
| 1464 | # Didn't use db_set for optimisation purpose |
| 1465 | ref_doc.outstanding_amount = outstanding["outstanding_in_account_currency"] |
| 1466 | frappe.db.set_value( |
| 1467 | voucher_type, voucher_no, "outstanding_amount", outstanding["outstanding_in_account_currency"] |
| 1468 | ) |
| 1469 | |
| 1470 | ref_doc.set_status(update=True) |
| 1471 | |
| 1472 | |
ruthra kumar | 451cf3a | 2022-05-16 14:29:58 +0530 | [diff] [blame] | 1473 | def delink_original_entry(pl_entry): |
| 1474 | if pl_entry: |
| 1475 | ple = qb.DocType("Payment Ledger Entry") |
| 1476 | query = ( |
| 1477 | qb.update(ple) |
| 1478 | .set(ple.delinked, True) |
| 1479 | .set(ple.modified, now()) |
| 1480 | .set(ple.modified_by, frappe.session.user) |
| 1481 | .where( |
| 1482 | (ple.company == pl_entry.company) |
| 1483 | & (ple.account_type == pl_entry.account_type) |
| 1484 | & (ple.account == pl_entry.account) |
| 1485 | & (ple.party_type == pl_entry.party_type) |
| 1486 | & (ple.party == pl_entry.party) |
| 1487 | & (ple.voucher_type == pl_entry.voucher_type) |
| 1488 | & (ple.voucher_no == pl_entry.voucher_no) |
| 1489 | & (ple.against_voucher_type == pl_entry.against_voucher_type) |
| 1490 | & (ple.against_voucher_no == pl_entry.against_voucher_no) |
| 1491 | ) |
| 1492 | ) |
| 1493 | query.run() |
ruthra kumar | 7b38388 | 2022-05-25 15:51:16 +0530 | [diff] [blame] | 1494 | |
| 1495 | |
| 1496 | class QueryPaymentLedger(object): |
| 1497 | """ |
| 1498 | Helper Class for Querying Payment Ledger Entry |
| 1499 | """ |
| 1500 | |
| 1501 | def __init__(self): |
| 1502 | self.ple = qb.DocType("Payment Ledger Entry") |
| 1503 | |
| 1504 | # query result |
| 1505 | self.voucher_outstandings = [] |
| 1506 | |
| 1507 | # query filters |
| 1508 | self.vouchers = [] |
| 1509 | self.common_filter = [] |
ruthra kumar | 5f1562c | 2022-07-28 11:57:27 +0530 | [diff] [blame] | 1510 | self.voucher_posting_date = [] |
ruthra kumar | 7b38388 | 2022-05-25 15:51:16 +0530 | [diff] [blame] | 1511 | self.min_outstanding = None |
| 1512 | self.max_outstanding = None |
| 1513 | |
| 1514 | def reset(self): |
| 1515 | # clear filters |
| 1516 | self.vouchers.clear() |
| 1517 | self.common_filter.clear() |
| 1518 | self.min_outstanding = self.max_outstanding = None |
| 1519 | |
| 1520 | # clear result |
| 1521 | self.voucher_outstandings.clear() |
| 1522 | |
| 1523 | def query_for_outstanding(self): |
| 1524 | """ |
| 1525 | Database query to fetch voucher amount and voucher outstanding using Common Table Expression |
| 1526 | """ |
| 1527 | |
| 1528 | ple = self.ple |
| 1529 | |
| 1530 | filter_on_voucher_no = [] |
| 1531 | filter_on_against_voucher_no = [] |
| 1532 | if self.vouchers: |
| 1533 | voucher_types = set([x.voucher_type for x in self.vouchers]) |
| 1534 | voucher_nos = set([x.voucher_no for x in self.vouchers]) |
| 1535 | |
| 1536 | filter_on_voucher_no.append(ple.voucher_type.isin(voucher_types)) |
| 1537 | filter_on_voucher_no.append(ple.voucher_no.isin(voucher_nos)) |
| 1538 | |
| 1539 | filter_on_against_voucher_no.append(ple.against_voucher_type.isin(voucher_types)) |
| 1540 | filter_on_against_voucher_no.append(ple.against_voucher_no.isin(voucher_nos)) |
| 1541 | |
| 1542 | # build outstanding amount filter |
| 1543 | filter_on_outstanding_amount = [] |
| 1544 | if self.min_outstanding: |
| 1545 | if self.min_outstanding > 0: |
| 1546 | filter_on_outstanding_amount.append( |
| 1547 | Table("outstanding").amount_in_account_currency >= self.min_outstanding |
| 1548 | ) |
| 1549 | else: |
| 1550 | filter_on_outstanding_amount.append( |
| 1551 | Table("outstanding").amount_in_account_currency <= self.min_outstanding |
| 1552 | ) |
| 1553 | if self.max_outstanding: |
| 1554 | if self.max_outstanding > 0: |
| 1555 | filter_on_outstanding_amount.append( |
| 1556 | Table("outstanding").amount_in_account_currency <= self.max_outstanding |
| 1557 | ) |
| 1558 | else: |
| 1559 | filter_on_outstanding_amount.append( |
| 1560 | Table("outstanding").amount_in_account_currency >= self.max_outstanding |
| 1561 | ) |
| 1562 | |
| 1563 | # build query for voucher amount |
| 1564 | query_voucher_amount = ( |
| 1565 | qb.from_(ple) |
| 1566 | .select( |
| 1567 | ple.account, |
| 1568 | ple.voucher_type, |
| 1569 | ple.voucher_no, |
| 1570 | ple.party_type, |
| 1571 | ple.party, |
| 1572 | ple.posting_date, |
| 1573 | ple.due_date, |
| 1574 | ple.account_currency.as_("currency"), |
| 1575 | Sum(ple.amount).as_("amount"), |
| 1576 | Sum(ple.amount_in_account_currency).as_("amount_in_account_currency"), |
| 1577 | ) |
| 1578 | .where(ple.delinked == 0) |
| 1579 | .where(Criterion.all(filter_on_voucher_no)) |
| 1580 | .where(Criterion.all(self.common_filter)) |
ruthra kumar | 5f1562c | 2022-07-28 11:57:27 +0530 | [diff] [blame] | 1581 | .where(Criterion.all(self.voucher_posting_date)) |
ruthra kumar | 7b38388 | 2022-05-25 15:51:16 +0530 | [diff] [blame] | 1582 | .groupby(ple.voucher_type, ple.voucher_no, ple.party_type, ple.party) |
| 1583 | ) |
| 1584 | |
| 1585 | # build query for voucher outstanding |
| 1586 | query_voucher_outstanding = ( |
| 1587 | qb.from_(ple) |
| 1588 | .select( |
| 1589 | ple.account, |
| 1590 | ple.against_voucher_type.as_("voucher_type"), |
| 1591 | ple.against_voucher_no.as_("voucher_no"), |
| 1592 | ple.party_type, |
| 1593 | ple.party, |
| 1594 | ple.posting_date, |
| 1595 | ple.due_date, |
| 1596 | ple.account_currency.as_("currency"), |
| 1597 | Sum(ple.amount).as_("amount"), |
| 1598 | Sum(ple.amount_in_account_currency).as_("amount_in_account_currency"), |
| 1599 | ) |
| 1600 | .where(ple.delinked == 0) |
| 1601 | .where(Criterion.all(filter_on_against_voucher_no)) |
| 1602 | .where(Criterion.all(self.common_filter)) |
| 1603 | .groupby(ple.against_voucher_type, ple.against_voucher_no, ple.party_type, ple.party) |
| 1604 | ) |
| 1605 | |
| 1606 | # build CTE for combining voucher amount and outstanding |
| 1607 | self.cte_query_voucher_amount_and_outstanding = ( |
| 1608 | qb.with_(query_voucher_amount, "vouchers") |
| 1609 | .with_(query_voucher_outstanding, "outstanding") |
| 1610 | .from_(AliasedQuery("vouchers")) |
| 1611 | .left_join(AliasedQuery("outstanding")) |
| 1612 | .on( |
| 1613 | (AliasedQuery("vouchers").account == AliasedQuery("outstanding").account) |
| 1614 | & (AliasedQuery("vouchers").voucher_type == AliasedQuery("outstanding").voucher_type) |
| 1615 | & (AliasedQuery("vouchers").voucher_no == AliasedQuery("outstanding").voucher_no) |
| 1616 | & (AliasedQuery("vouchers").party_type == AliasedQuery("outstanding").party_type) |
| 1617 | & (AliasedQuery("vouchers").party == AliasedQuery("outstanding").party) |
| 1618 | ) |
| 1619 | .select( |
| 1620 | Table("vouchers").account, |
| 1621 | Table("vouchers").voucher_type, |
| 1622 | Table("vouchers").voucher_no, |
| 1623 | Table("vouchers").party_type, |
| 1624 | Table("vouchers").party, |
| 1625 | Table("vouchers").posting_date, |
| 1626 | Table("vouchers").amount.as_("invoice_amount"), |
| 1627 | Table("vouchers").amount_in_account_currency.as_("invoice_amount_in_account_currency"), |
| 1628 | Table("outstanding").amount.as_("outstanding"), |
| 1629 | Table("outstanding").amount_in_account_currency.as_("outstanding_in_account_currency"), |
| 1630 | (Table("vouchers").amount - Table("outstanding").amount).as_("paid_amount"), |
| 1631 | ( |
| 1632 | Table("vouchers").amount_in_account_currency - Table("outstanding").amount_in_account_currency |
| 1633 | ).as_("paid_amount_in_account_currency"), |
| 1634 | Table("vouchers").due_date, |
| 1635 | Table("vouchers").currency, |
| 1636 | ) |
| 1637 | .where(Criterion.all(filter_on_outstanding_amount)) |
| 1638 | ) |
| 1639 | |
| 1640 | # build CTE filter |
| 1641 | # only fetch invoices |
| 1642 | if self.get_invoices: |
| 1643 | self.cte_query_voucher_amount_and_outstanding = ( |
| 1644 | self.cte_query_voucher_amount_and_outstanding.having( |
| 1645 | qb.Field("outstanding_in_account_currency") > 0 |
| 1646 | ) |
| 1647 | ) |
| 1648 | # only fetch payments |
| 1649 | elif self.get_payments: |
| 1650 | self.cte_query_voucher_amount_and_outstanding = ( |
| 1651 | self.cte_query_voucher_amount_and_outstanding.having( |
| 1652 | qb.Field("outstanding_in_account_currency") < 0 |
| 1653 | ) |
| 1654 | ) |
| 1655 | |
| 1656 | # execute SQL |
| 1657 | self.voucher_outstandings = self.cte_query_voucher_amount_and_outstanding.run(as_dict=True) |
| 1658 | |
| 1659 | def get_voucher_outstandings( |
| 1660 | self, |
| 1661 | vouchers=None, |
| 1662 | common_filter=None, |
ruthra kumar | 5f1562c | 2022-07-28 11:57:27 +0530 | [diff] [blame] | 1663 | posting_date=None, |
ruthra kumar | 7b38388 | 2022-05-25 15:51:16 +0530 | [diff] [blame] | 1664 | min_outstanding=None, |
| 1665 | max_outstanding=None, |
| 1666 | get_payments=False, |
| 1667 | get_invoices=False, |
| 1668 | ): |
| 1669 | """ |
| 1670 | Fetch voucher amount and outstanding amount from Payment Ledger using Database CTE |
| 1671 | |
| 1672 | vouchers - dict of vouchers to get |
| 1673 | common_filter - array of criterions |
| 1674 | min_outstanding - filter on minimum total outstanding amount |
| 1675 | max_outstanding - filter on maximum total outstanding amount |
| 1676 | get_invoices - only fetch vouchers(ledger entries with +ve outstanding) |
| 1677 | get_payments - only fetch payments(ledger entries with -ve outstanding) |
| 1678 | """ |
| 1679 | |
| 1680 | self.reset() |
| 1681 | self.vouchers = vouchers |
| 1682 | self.common_filter = common_filter or [] |
ruthra kumar | 5f1562c | 2022-07-28 11:57:27 +0530 | [diff] [blame] | 1683 | self.voucher_posting_date = posting_date or [] |
ruthra kumar | 7b38388 | 2022-05-25 15:51:16 +0530 | [diff] [blame] | 1684 | self.min_outstanding = min_outstanding |
| 1685 | self.max_outstanding = max_outstanding |
| 1686 | self.get_payments = get_payments |
| 1687 | self.get_invoices = get_invoices |
| 1688 | self.query_for_outstanding() |
| 1689 | |
| 1690 | return self.voucher_outstandings |