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