blob: f9332093640a3becda4e471bfd2669d2705a109b [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302# License: GNU General Public License v3. See license.txt
Nabin Hait23941aa2013-01-29 11:32:38 +05303
Nabin Hait23941aa2013-01-29 11:32:38 +05304
Saqib90517352021-10-04 11:44:46 +05305from json import loads
Ankush Menat2535d5e2022-06-14 18:20:33 +05306from typing import TYPE_CHECKING, List, Optional, Tuple
Saqib90517352021-10-04 11:44:46 +05307
Chillar Anand915b3432021-09-02 16:44:59 +05308import frappe
Nabin Hait9b20e072017-04-25 12:10:24 +05309import frappe.defaults
ruthra kumar451cf3a2022-05-16 14:29:58 +053010from frappe import _, qb, throw
Nabin Haitb99c77b2020-12-25 18:12:35 +053011from frappe.model.meta import get_field_precision
ruthra kumar8c876742022-06-14 17:46:04 +053012from frappe.query_builder import AliasedQuery, Criterion, Table
ruthra kumar60435da2023-11-03 17:58:19 +053013from frappe.query_builder.functions import Round, Sum
Gavin D'souza0727d1d2022-06-13 12:39:28 +053014from frappe.query_builder.utils import DocType
Ankush Menat5c6f22f2022-06-15 19:30:26 +053015from 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'souza0727d1d2022-06-13 12:39:28 +053026from pypika import Order
27from pypika.terms import ExistsCriterion
Anand Doshicd0989e2015-09-28 13:31:17 +053028
Chillar Anand915b3432021-09-02 16:44:59 +053029import erpnext
30
31# imported to enable erpnext.accounts.utils.get_account_currency
32from erpnext.accounts.doctype.account.account import get_account_currency # noqa
ruthra kumar451cf3a2022-05-16 14:29:58 +053033from erpnext.accounts.doctype.accounting_dimension.accounting_dimension import get_dimensions
Anurag Mishraa11e7382019-10-31 15:55:03 +053034from erpnext.stock import get_warehouse_account_map
Chillar Anand915b3432021-09-02 16:44:59 +053035from erpnext.stock.utils import get_stock_value_on
36
Ankush Menat2535d5e2022-06-14 18:20:33 +053037if TYPE_CHECKING:
38 from erpnext.stock.doctype.repost_item_valuation.repost_item_valuation import RepostItemValuation
39
Anurag Mishraa11e7382019-10-31 15:55:03 +053040
Ankush Menat494bd9e2022-03-28 18:52:46 +053041class FiscalYearError(frappe.ValidationError):
42 pass
43
44
45class PaymentEntryUnlinkError(frappe.ValidationError):
46 pass
47
Nabin Hait2b06aaa2013-08-22 18:25:43 +053048
Ankush Menat2535d5e2022-06-14 18:20:33 +053049GL_REPOSTING_CHUNK = 100
50
51
Neil Trini Lasrado78fa6952014-10-03 17:43:02 +053052@frappe.whitelist()
Ankush Menat494bd9e2022-03-28 18:52:46 +053053def get_fiscal_year(
Deepesh Garg0aadb682023-03-19 12:46:42 +053054 date=None, fiscal_year=None, label="Date", verbose=1, company=None, as_dict=False, boolean=False
Ankush Menat494bd9e2022-03-28 18:52:46 +053055):
ruthra kumarc31ee8e2023-11-14 06:44:49 +053056 if isinstance(boolean, str):
57 boolean = frappe.json.loads(boolean)
58
Deepesh Garg0aadb682023-03-19 12:46:42 +053059 fiscal_years = get_fiscal_years(
60 date, fiscal_year, label, verbose, company, as_dict=as_dict, boolean=boolean
61 )
62 if boolean:
63 return fiscal_years
64 else:
65 return fiscal_years[0]
Nabin Hait23941aa2013-01-29 11:32:38 +053066
Ankush Menat494bd9e2022-03-28 18:52:46 +053067
68def get_fiscal_years(
Deepesh Garg0aadb682023-03-19 12:46:42 +053069 transaction_date=None,
70 fiscal_year=None,
71 label="Date",
72 verbose=1,
73 company=None,
74 as_dict=False,
75 boolean=False,
Ankush Menat494bd9e2022-03-28 18:52:46 +053076):
Nabin Hait9784d272016-12-30 16:21:35 +053077 fiscal_years = frappe.cache().hget("fiscal_years", company) or []
Rushabh Mehtad50da782017-07-28 11:39:01 +053078
79 if not fiscal_years:
Nabin Hait9784d272016-12-30 16:21:35 +053080 # if year start date is 2012-04-01, year end date should be 2013-03-31 (hence subdate)
Gavin D'souza0727d1d2022-06-13 12:39:28 +053081 FY = DocType("Fiscal Year")
Nabin Haitfff3ab72015-01-14 16:27:13 +053082
Gavin D'souza0727d1d2022-06-13 12:39:28 +053083 query = (
84 frappe.qb.from_(FY)
85 .select(FY.name, FY.year_start_date, FY.year_end_date)
86 .where(FY.disabled == 0)
Ankush Menat494bd9e2022-03-28 18:52:46 +053087 )
Rushabh Mehtad50da782017-07-28 11:39:01 +053088
Gavin D'souza0727d1d2022-06-13 12:39:28 +053089 if fiscal_year:
90 query = query.where(FY.name == fiscal_year)
91
92 if company:
93 FYC = DocType("Fiscal Year Company")
94 query = query.where(
95 ExistsCriterion(frappe.qb.from_(FYC).select(FYC.name).where(FYC.parent == FY.name)).negate()
96 | ExistsCriterion(
97 frappe.qb.from_(FYC)
98 .select(FYC.company)
99 .where(FYC.parent == FY.name)
100 .where(FYC.company == company)
101 )
102 )
103
Shridhar Patil69efd2e2022-10-03 11:07:24 +0530104 query = query.orderby(FY.year_start_date, order=Order.desc)
Gavin D'souza0727d1d2022-06-13 12:39:28 +0530105 fiscal_years = query.run(as_dict=True)
106
Nabin Hait9784d272016-12-30 16:21:35 +0530107 frappe.cache().hset("fiscal_years", company, fiscal_years)
Nabin Haitfff3ab72015-01-14 16:27:13 +0530108
Prssanna Desai82ddef52020-06-18 18:18:41 +0530109 if not transaction_date and not fiscal_year:
110 return fiscal_years
111
Nabin Hait9784d272016-12-30 16:21:35 +0530112 if transaction_date:
113 transaction_date = getdate(transaction_date)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530114
Nabin Hait9784d272016-12-30 16:21:35 +0530115 for fy in fiscal_years:
116 matched = False
117 if fiscal_year and fy.name == fiscal_year:
118 matched = True
Anand Doshicd71e1d2014-04-08 13:53:35 +0530119
Ankush Menat494bd9e2022-03-28 18:52:46 +0530120 if (
121 transaction_date
122 and getdate(fy.year_start_date) <= transaction_date
123 and getdate(fy.year_end_date) >= transaction_date
124 ):
Nabin Hait9784d272016-12-30 16:21:35 +0530125 matched = True
Rushabh Mehtad50da782017-07-28 11:39:01 +0530126
Nabin Hait9784d272016-12-30 16:21:35 +0530127 if matched:
128 if as_dict:
129 return (fy,)
130 else:
131 return ((fy.name, fy.year_start_date, fy.year_end_date),)
132
Ankush Menat494bd9e2022-03-28 18:52:46 +0530133 error_msg = _("""{0} {1} is not in any active Fiscal Year""").format(
134 label, formatdate(transaction_date)
135 )
Anuja P2e4faf92020-12-05 13:36:43 +0530136 if company:
Anuja P550cb9c2020-12-07 11:11:00 +0530137 error_msg = _("""{0} for {1}""").format(error_msg, frappe.bold(company))
rohitwaghchaured60ff832021-02-16 09:12:27 +0530138
Deepesh Garg0aadb682023-03-19 12:46:42 +0530139 if boolean:
140 return False
141
Ankush Menat494bd9e2022-03-28 18:52:46 +0530142 if verbose == 1:
143 frappe.msgprint(error_msg)
Deepesh Garg0aadb682023-03-19 12:46:42 +0530144
cclauss68487082017-07-27 07:08:35 +0200145 raise FiscalYearError(error_msg)
Nabin Hait9784d272016-12-30 16:21:35 +0530146
Ankush Menat494bd9e2022-03-28 18:52:46 +0530147
Prssanna Desai82ddef52020-06-18 18:18:41 +0530148@frappe.whitelist()
149def get_fiscal_year_filter_field(company=None):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530150 field = {"fieldtype": "Select", "options": [], "operator": "Between", "query_value": True}
Prssanna Desai82ddef52020-06-18 18:18:41 +0530151 fiscal_years = get_fiscal_years(company=company)
152 for fiscal_year in fiscal_years:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530153 field["options"].append(
154 {
155 "label": fiscal_year.name,
156 "value": fiscal_year.name,
157 "query_value": [
158 fiscal_year.year_start_date.strftime("%Y-%m-%d"),
159 fiscal_year.year_end_date.strftime("%Y-%m-%d"),
160 ],
161 }
162 )
Prssanna Desai82ddef52020-06-18 18:18:41 +0530163 return field
164
Ankush Menat494bd9e2022-03-28 18:52:46 +0530165
Nabin Hait8bf58362017-03-27 12:30:01 +0530166def validate_fiscal_year(date, fiscal_year, company, label="Date", doc=None):
167 years = [f[0] for f in get_fiscal_years(date, label=_(label), company=company)]
Rushabh Mehtac2563ef2013-02-05 23:25:37 +0530168 if fiscal_year not in years:
Rushabh Mehtad60acb92015-02-19 14:51:58 +0530169 if doc:
170 doc.fiscal_year = years[0]
171 else:
172 throw(_("{0} '{1}' not in Fiscal Year {2}").format(label, formatdate(date), fiscal_year))
Nabin Hait23941aa2013-01-29 11:32:38 +0530173
Ankush Menat494bd9e2022-03-28 18:52:46 +0530174
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530175@frappe.whitelist()
Ankush Menat494bd9e2022-03-28 18:52:46 +0530176def get_balance_on(
177 account=None,
178 date=None,
179 party_type=None,
180 party=None,
181 company=None,
182 in_account_currency=True,
183 cost_center=None,
184 ignore_account_permission=False,
RitvikSardanab86afb22023-08-04 22:05:30 +0530185 account_type=None,
Gursheen Anand52305e32023-11-22 18:38:33 +0530186 start_date=None,
Ankush Menat494bd9e2022-03-28 18:52:46 +0530187):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530188 if not account and frappe.form_dict.get("account"):
189 account = frappe.form_dict.get("account")
Nabin Hait6f17cf92014-09-17 14:11:22 +0530190 if not date and frappe.form_dict.get("date"):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530191 date = frappe.form_dict.get("date")
Nabin Hait6f17cf92014-09-17 14:11:22 +0530192 if not party_type and frappe.form_dict.get("party_type"):
193 party_type = frappe.form_dict.get("party_type")
194 if not party and frappe.form_dict.get("party"):
195 party = frappe.form_dict.get("party")
Sanjay Kumar1b49f3a2018-09-06 13:09:35 +0400196 if not cost_center and frappe.form_dict.get("cost_center"):
197 cost_center = frappe.form_dict.get("cost_center")
198
Nabin Hait98372852020-07-30 20:52:20 +0530199 cond = ["is_cancelled=0"]
Gursheen Anand52305e32023-11-22 18:38:33 +0530200 if start_date:
201 cond.append("posting_date >= %s" % frappe.db.escape(cstr(start_date)))
Nabin Hait23941aa2013-01-29 11:32:38 +0530202 if date:
Suraj Shettybfc195d2018-09-21 10:20:52 +0530203 cond.append("posting_date <= %s" % frappe.db.escape(cstr(date)))
Nabin Hait23941aa2013-01-29 11:32:38 +0530204 else:
205 # get balance of all entries that exist
206 date = nowdate()
Anand Doshicd71e1d2014-04-08 13:53:35 +0530207
Deepesh Garg8c217032019-07-16 09:41:01 +0530208 if account:
209 acc = frappe.get_doc("Account", account)
210
Nabin Hait23941aa2013-01-29 11:32:38 +0530211 try:
Deepesh Garg96d40ec2020-07-03 22:59:00 +0530212 year_start_date = get_fiscal_year(date, company=company, verbose=0)[1]
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530213 except FiscalYearError:
Nabin Hait23941aa2013-01-29 11:32:38 +0530214 if getdate(date) > getdate(nowdate()):
215 # if fiscal year not found and the date is greater than today
216 # get fiscal year for today's date and its corresponding year start date
217 year_start_date = get_fiscal_year(nowdate(), verbose=1)[1]
218 else:
219 # this indicates that it is a date older than any existing fiscal year.
220 # hence, assuming balance as 0.0
221 return 0.0
Anand Doshicd71e1d2014-04-08 13:53:35 +0530222
deepeshgarg0072ddbebf2019-07-20 14:52:59 +0530223 if account:
deepeshgarg007e097d4f2019-07-20 14:49:32 +0530224 report_type = acc.report_type
deepeshgarg0071ee3d042019-07-20 14:46:59 +0530225 else:
226 report_type = ""
227
Ankush Menat494bd9e2022-03-28 18:52:46 +0530228 if cost_center and report_type == "Profit and Loss":
Sanjay Kumar1b49f3a2018-09-06 13:09:35 +0400229 cc = frappe.get_doc("Cost Center", cost_center)
230 if cc.is_group:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530231 cond.append(
232 """ exists (
Sanjay Kumar1b49f3a2018-09-06 13:09:35 +0400233 select 1 from `tabCost Center` cc where cc.name = gle.cost_center
234 and cc.lft >= %s and cc.rgt <= %s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530235 )"""
236 % (cc.lft, cc.rgt)
237 )
Sanjay Kumar1b49f3a2018-09-06 13:09:35 +0400238
239 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530240 cond.append("""gle.cost_center = %s """ % (frappe.db.escape(cost_center, percent=False),))
Sanjay Kumar1b49f3a2018-09-06 13:09:35 +0400241
Nabin Hait6f17cf92014-09-17 14:11:22 +0530242 if account:
Sanjay Kumar1b49f3a2018-09-06 13:09:35 +0400243
Ankush Menat494bd9e2022-03-28 18:52:46 +0530244 if not (frappe.flags.ignore_account_permission or ignore_account_permission):
Rushabh Mehta2e7f9d22015-10-15 16:31:16 +0530245 acc.check_permission("read")
Anand Doshicd71e1d2014-04-08 13:53:35 +0530246
Nabin Hait6f17cf92014-09-17 14:11:22 +0530247 # different filter for group and ledger - improved performance
Rushabh Mehta38c6b522015-04-23 13:14:17 +0530248 if acc.is_group:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530249 cond.append(
250 """exists (
Nabin Hait6b01abe2015-06-14 17:49:29 +0530251 select name from `tabAccount` ac where ac.name = gle.account
Nabin Hait6f17cf92014-09-17 14:11:22 +0530252 and ac.lft >= %s and ac.rgt <= %s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530253 )"""
254 % (acc.lft, acc.rgt)
255 )
Anand Doshicd0989e2015-09-28 13:31:17 +0530256
257 # If group and currency same as company,
Nabin Hait59f4fa92015-09-17 13:57:42 +0530258 # always return balance based on debit and credit in company currency
Ankush Menat494bd9e2022-03-28 18:52:46 +0530259 if acc.account_currency == frappe.get_cached_value("Company", acc.company, "default_currency"):
Nabin Hait59f4fa92015-09-17 13:57:42 +0530260 in_account_currency = False
Nabin Hait6f17cf92014-09-17 14:11:22 +0530261 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530262 cond.append("""gle.account = %s """ % (frappe.db.escape(account, percent=False),))
Anand Doshic75c1d72016-03-11 14:56:19 +0530263
RitvikSardanab86afb22023-08-04 22:05:30 +0530264 if account_type:
265 accounts = frappe.db.get_all(
266 "Account",
267 filters={"company": company, "account_type": account_type, "is_group": 0},
268 pluck="name",
269 order_by="lft",
270 )
271
272 cond.append(
273 """
274 gle.account in (%s)
275 """
276 % (", ".join([frappe.db.escape(account) for account in accounts]))
277 )
278
Nabin Hait6f17cf92014-09-17 14:11:22 +0530279 if party_type and party:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530280 cond.append(
281 """gle.party_type = %s and gle.party = %s """
282 % (frappe.db.escape(party_type), frappe.db.escape(party, percent=False))
283 )
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530284
Nabin Hait85648d92016-07-20 11:26:45 +0530285 if company:
Suraj Shettybfc195d2018-09-21 10:20:52 +0530286 cond.append("""gle.company = %s """ % (frappe.db.escape(company, percent=False)))
Anand Doshi0b031cd2015-09-16 12:46:54 +0530287
RitvikSardanab86afb22023-08-04 22:05:30 +0530288 if account or (party_type and party) or account_type:
289
Nabin Haitc0e3b1a2015-09-04 13:26:23 +0530290 if in_account_currency:
Anand Doshi602e8252015-11-16 19:05:46 +0530291 select_field = "sum(debit_in_account_currency) - sum(credit_in_account_currency)"
Nabin Haitc0e3b1a2015-09-04 13:26:23 +0530292 else:
Anand Doshi602e8252015-11-16 19:05:46 +0530293 select_field = "sum(debit) - sum(credit)"
Ankush Menat494bd9e2022-03-28 18:52:46 +0530294 bal = frappe.db.sql(
295 """
Nabin Haitc0e3b1a2015-09-04 13:26:23 +0530296 SELECT {0}
Nabin Haitdc768232015-08-17 11:27:00 +0530297 FROM `tabGL Entry` gle
Ankush Menat494bd9e2022-03-28 18:52:46 +0530298 WHERE {1}""".format(
299 select_field, " and ".join(cond)
300 )
301 )[0][0]
Nabin Haitdc768232015-08-17 11:27:00 +0530302 # if bal is None, return 0
303 return flt(bal)
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530304
Ankush Menat494bd9e2022-03-28 18:52:46 +0530305
RobertSchouten8d43b322016-09-20 13:41:39 +0800306def get_count_on(account, fieldname, date):
Nabin Hait98372852020-07-30 20:52:20 +0530307 cond = ["is_cancelled=0"]
RobertSchouten8d43b322016-09-20 13:41:39 +0800308 if date:
Suraj Shettybfc195d2018-09-21 10:20:52 +0530309 cond.append("posting_date <= %s" % frappe.db.escape(cstr(date)))
RobertSchouten8d43b322016-09-20 13:41:39 +0800310 else:
311 # get balance of all entries that exist
312 date = nowdate()
313
314 try:
315 year_start_date = get_fiscal_year(date, verbose=0)[1]
316 except FiscalYearError:
317 if getdate(date) > getdate(nowdate()):
318 # if fiscal year not found and the date is greater than today
319 # get fiscal year for today's date and its corresponding year start date
320 year_start_date = get_fiscal_year(nowdate(), verbose=1)[1]
321 else:
322 # this indicates that it is a date older than any existing fiscal year.
323 # hence, assuming balance as 0.0
324 return 0.0
325
326 if account:
327 acc = frappe.get_doc("Account", account)
328
329 if not frappe.flags.ignore_account_permission:
330 acc.check_permission("read")
331
332 # for pl accounts, get balance within a fiscal year
Ankush Menat494bd9e2022-03-28 18:52:46 +0530333 if acc.report_type == "Profit and Loss":
334 cond.append(
335 "posting_date >= '%s' and voucher_type != 'Period Closing Voucher'" % year_start_date
336 )
RobertSchouten8d43b322016-09-20 13:41:39 +0800337
338 # different filter for group and ledger - improved performance
339 if acc.is_group:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530340 cond.append(
341 """exists (
RobertSchouten8d43b322016-09-20 13:41:39 +0800342 select name from `tabAccount` ac where ac.name = gle.account
343 and ac.lft >= %s and ac.rgt <= %s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530344 )"""
345 % (acc.lft, acc.rgt)
346 )
RobertSchouten8d43b322016-09-20 13:41:39 +0800347 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530348 cond.append("""gle.account = %s """ % (frappe.db.escape(account, percent=False),))
RobertSchouten8d43b322016-09-20 13:41:39 +0800349
Ankush Menat494bd9e2022-03-28 18:52:46 +0530350 entries = frappe.db.sql(
351 """
RobertSchouten8d43b322016-09-20 13:41:39 +0800352 SELECT name, posting_date, account, party_type, party,debit,credit,
353 voucher_type, voucher_no, against_voucher_type, against_voucher
354 FROM `tabGL Entry` gle
Ankush Menat494bd9e2022-03-28 18:52:46 +0530355 WHERE {0}""".format(
356 " and ".join(cond)
357 ),
358 as_dict=True,
359 )
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530360
RobertSchouten8d43b322016-09-20 13:41:39 +0800361 count = 0
362 for gle in entries:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530363 if fieldname not in ("invoiced_amount", "payables"):
RobertSchouten8d43b322016-09-20 13:41:39 +0800364 count += 1
365 else:
366 dr_or_cr = "debit" if fieldname == "invoiced_amount" else "credit"
367 cr_or_dr = "credit" if fieldname == "invoiced_amount" else "debit"
Ankush Menat494bd9e2022-03-28 18:52:46 +0530368 select_fields = (
369 "ifnull(sum(credit-debit),0)"
370 if fieldname == "invoiced_amount"
371 else "ifnull(sum(debit-credit),0)"
372 )
RobertSchouten8d43b322016-09-20 13:41:39 +0800373
Ankush Menat494bd9e2022-03-28 18:52:46 +0530374 if (
375 (not gle.against_voucher)
376 or (gle.against_voucher_type in ["Sales Order", "Purchase Order"])
377 or (gle.against_voucher == gle.voucher_no and gle.get(dr_or_cr) > 0)
378 ):
379 payment_amount = frappe.db.sql(
380 """
RobertSchouten8d43b322016-09-20 13:41:39 +0800381 SELECT {0}
382 FROM `tabGL Entry` gle
383 WHERE docstatus < 2 and posting_date <= %(date)s and against_voucher = %(voucher_no)s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530384 and party = %(party)s and name != %(name)s""".format(
385 select_fields
386 ),
387 {"date": date, "voucher_no": gle.voucher_no, "party": gle.party, "name": gle.name},
388 )[0][0]
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530389
RobertSchouten8d43b322016-09-20 13:41:39 +0800390 outstanding_amount = flt(gle.get(dr_or_cr)) - flt(gle.get(cr_or_dr)) - payment_amount
391 currency_precision = get_currency_precision() or 2
Ankush Menat494bd9e2022-03-28 18:52:46 +0530392 if abs(flt(outstanding_amount)) > 0.1 / 10**currency_precision:
RobertSchouten8d43b322016-09-20 13:41:39 +0800393 count += 1
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530394
RobertSchouten8d43b322016-09-20 13:41:39 +0800395 return count
396
Ankush Menat494bd9e2022-03-28 18:52:46 +0530397
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530398@frappe.whitelist()
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530399def add_ac(args=None):
Saurabh2f021012017-01-11 12:41:01 +0530400 from frappe.desk.treeview import make_tree_args
401
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530402 if not args:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530403 args = frappe.local.form_dict
Saurabh2f021012017-01-11 12:41:01 +0530404
Nabin Hait02d987e2017-02-17 15:50:26 +0530405 args.doctype = "Account"
Saurabh2f021012017-01-11 12:41:01 +0530406 args = make_tree_args(**args)
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530407
Anand Doshi3e41fd12014-04-22 18:54:54 +0530408 ac = frappe.new_doc("Account")
Rushabh Mehta0dcb8612016-05-31 07:22:37 +0530409
Nabin Hait665568d2016-05-13 15:56:00 +0530410 if args.get("ignore_permissions"):
411 ac.flags.ignore_permissions = True
412 args.pop("ignore_permissions")
Rushabh Mehta0dcb8612016-05-31 07:22:37 +0530413
Anand Doshi3e41fd12014-04-22 18:54:54 +0530414 ac.update(args)
Saurabh0e47bfe2016-05-30 17:54:16 +0530415
416 if not ac.parent_account:
417 ac.parent_account = args.get("parent")
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530418
Anand Doshif78d1ae2014-03-28 13:55:00 +0530419 ac.old_parent = ""
420 ac.freeze_account = "No"
Nabin Haita1ec7f12016-05-11 12:37:22 +0530421 if cint(ac.get("is_root")):
422 ac.parent_account = None
Rushabh Mehta0dcb8612016-05-31 07:22:37 +0530423 ac.flags.ignore_mandatory = True
424
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530425 ac.insert()
Anand Doshi3e41fd12014-04-22 18:54:54 +0530426
Anand Doshif78d1ae2014-03-28 13:55:00 +0530427 return ac.name
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530428
Ankush Menat494bd9e2022-03-28 18:52:46 +0530429
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530430@frappe.whitelist()
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530431def add_cc(args=None):
Saurabh2f021012017-01-11 12:41:01 +0530432 from frappe.desk.treeview import make_tree_args
433
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530434 if not args:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530435 args = frappe.local.form_dict
Rushabh Mehtad50da782017-07-28 11:39:01 +0530436
Nabin Hait02d987e2017-02-17 15:50:26 +0530437 args.doctype = "Cost Center"
Saurabh2f021012017-01-11 12:41:01 +0530438 args = make_tree_args(**args)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530439
Zarrar7ab70ca2018-06-08 14:33:15 +0530440 if args.parent_cost_center == args.company:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530441 args.parent_cost_center = "{0} - {1}".format(
442 args.parent_cost_center, frappe.get_cached_value("Company", args.company, "abbr")
443 )
Zarrar7ab70ca2018-06-08 14:33:15 +0530444
Anand Doshi3e41fd12014-04-22 18:54:54 +0530445 cc = frappe.new_doc("Cost Center")
446 cc.update(args)
Saurabh0e47bfe2016-05-30 17:54:16 +0530447
448 if not cc.parent_cost_center:
449 cc.parent_cost_center = args.get("parent")
450
Anand Doshif78d1ae2014-03-28 13:55:00 +0530451 cc.old_parent = ""
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530452 cc.insert()
Anand Doshif78d1ae2014-03-28 13:55:00 +0530453 return cc.name
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530454
Ankush Menat494bd9e2022-03-28 18:52:46 +0530455
Deepesh Garg016ed952023-06-20 13:22:32 +0530456def reconcile_against_document(args, skip_ref_details_update_for_pe=False): # nosemgrep
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530457 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530458 Cancel PE or JV, Update against document, split if required and resubmit
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530459 """
Anuja Pawar3e404f12021-08-31 18:59:29 +0530460 # To optimize making GL Entry for PE or JV with multiple references
461 reconciled_entries = {}
462 for row in args:
463 if not reconciled_entries.get((row.voucher_type, row.voucher_no)):
464 reconciled_entries[(row.voucher_type, row.voucher_no)] = []
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530465
Anuja Pawar3e404f12021-08-31 18:59:29 +0530466 reconciled_entries[(row.voucher_type, row.voucher_no)].append(row)
467
468 for key, entries in reconciled_entries.items():
469 voucher_type = key[0]
470 voucher_no = key[1]
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530471
Nabin Hait28a05282016-06-27 17:41:39 +0530472 # cancel advance entry
Anuja Pawar3e404f12021-08-31 18:59:29 +0530473 doc = frappe.get_doc(voucher_type, voucher_no)
Subin Tomb8845b92021-07-30 16:30:18 +0530474 frappe.flags.ignore_party_validation = True
ruthra kumar78ab11f2023-09-20 13:05:04 +0530475
ruthra kumarecb533c2023-11-28 17:04:07 +0530476 # For payments with `Advance` in separate account feature enabled, only new ledger entries are posted for each reference.
477 # No need to cancel/delete payment ledger entries
ruthra kumar78ab11f2023-09-20 13:05:04 +0530478 if not (voucher_type == "Payment Entry" and doc.book_advance_payments_in_separate_party_account):
479 _delete_pl_entries(voucher_type, voucher_no)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530480
Anuja Pawar3e404f12021-08-31 18:59:29 +0530481 for entry in entries:
482 check_if_advance_entry_modified(entry)
483 validate_allocated_amount(entry)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530484
Anuja Pawar3e404f12021-08-31 18:59:29 +0530485 # update ref in advance entry
486 if voucher_type == "Journal Entry":
ruthra kumar79c6f012023-09-01 14:57:12 +0530487 referenced_row = update_reference_in_journal_entry(entry, doc, do_not_save=False)
ruthra kumar7b516f82023-06-26 17:34:28 +0530488 # advance section in sales/purchase invoice and reconciliation tool,both pass on exchange gain/loss
489 # amount and account in args
ruthra kumar79c6f012023-09-01 14:57:12 +0530490 # referenced_row is used to deduplicate gain/loss journal
491 entry.update({"referenced_row": referenced_row})
492 doc.make_exchange_gain_loss_journal([entry])
Anuja Pawar3e404f12021-08-31 18:59:29 +0530493 else:
ruthra kumarecb533c2023-11-28 17:04:07 +0530494 referenced_row = update_reference_in_payment_entry(
ruthra kumared14d1c2023-04-22 17:24:35 +0530495 entry, doc, do_not_save=True, skip_ref_details_update_for_pe=skip_ref_details_update_for_pe
496 )
Anuja Pawar3e404f12021-08-31 18:59:29 +0530497
498 doc.save(ignore_permissions=True)
Nabin Hait28a05282016-06-27 17:41:39 +0530499 # re-submit advance entry
Anuja Pawar3e404f12021-08-31 18:59:29 +0530500 doc = frappe.get_doc(entry.voucher_type, entry.voucher_no)
ruthra kumar78ab11f2023-09-20 13:05:04 +0530501
502 if voucher_type == "Payment Entry" and doc.book_advance_payments_in_separate_party_account:
ruthra kumarecb533c2023-11-28 17:04:07 +0530503 # both ledgers must be posted to for `Advance` in separate account feature
504 doc.make_advance_gl_entries(referenced_row, update_outstanding="No")
ruthra kumar78ab11f2023-09-20 13:05:04 +0530505 else:
506 gl_map = doc.build_gl_map()
507 create_payment_ledger_entry(gl_map, update_outstanding="No", cancel=0, adv_adj=1)
Deepesh Garg1894dc82023-06-23 21:53:34 +0530508
ruthra kumar11cf6942023-01-14 12:22:22 +0530509 # Only update outstanding for newly linked vouchers
510 for entry in entries:
511 update_voucher_outstanding(
512 entry.against_voucher_type, entry.against_voucher, entry.account, entry.party_type, entry.party
513 )
ruthra kumar524c1752022-05-26 16:00:40 +0530514
Subin Tomb8845b92021-07-30 16:30:18 +0530515 frappe.flags.ignore_party_validation = False
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530516
Ankush Menat494bd9e2022-03-28 18:52:46 +0530517
Nabin Hait28a05282016-06-27 17:41:39 +0530518def check_if_advance_entry_modified(args):
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530519 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530520 check if there is already a voucher reference
521 check if amount is same
522 check if jv is submitted
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530523 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530524 if not args.get("unreconciled_amount"):
525 args.update({"unreconciled_amount": args.get("unadjusted_amount")})
Anuja Pawar3e404f12021-08-31 18:59:29 +0530526
Nabin Hait28a05282016-06-27 17:41:39 +0530527 ret = None
528 if args.voucher_type == "Journal Entry":
Gursheen Anand74619262023-06-02 17:13:51 +0530529 journal_entry = frappe.qb.DocType("Journal Entry")
530 journal_acc = frappe.qb.DocType("Journal Entry Account")
531
Gursheen Anand4ee16372023-06-08 13:15:23 +0530532 q = (
533 frappe.qb.from_(journal_entry)
Deepesh Garg3aead052023-06-22 11:41:43 +0530534 .inner_join(journal_acc)
Gursheen Anand74619262023-06-02 17:13:51 +0530535 .on(journal_entry.name == journal_acc.parent)
Deepesh Gargd81d6062023-06-22 18:28:16 +0530536 .select(journal_acc[args.get("dr_or_cr")])
537 .where(
538 (journal_acc.account == args.get("account"))
539 & ((journal_acc.party_type == args.get("party_type")))
540 & ((journal_acc.party == args.get("party")))
541 & (
542 (journal_acc.reference_type.isnull())
543 | (journal_acc.reference_type.isin(["", "Sales Order", "Purchase Order"]))
544 )
545 & ((journal_entry.name == args.get("voucher_no")))
546 & ((journal_acc.name == args.get("voucher_detail_no")))
547 & ((journal_entry.docstatus == 1))
Gursheen Anand4ee16372023-06-08 13:15:23 +0530548 )
Gursheen Anand74619262023-06-02 17:13:51 +0530549 )
550
Nabin Hait28a05282016-06-27 17:41:39 +0530551 else:
ruthra kumar60435da2023-11-03 17:58:19 +0530552 precision = frappe.get_precision("Payment Entry", "unallocated_amount")
553
Gursheen Anand74619262023-06-02 17:13:51 +0530554 payment_entry = frappe.qb.DocType("Payment Entry")
555 payment_ref = frappe.qb.DocType("Payment Entry Reference")
556
Gursheen Anand4ee16372023-06-08 13:15:23 +0530557 q = (
558 frappe.qb.from_(payment_entry)
Gursheen Anand74619262023-06-02 17:13:51 +0530559 .select(payment_entry.name)
560 .where(payment_entry.name == args.get("voucher_no"))
561 .where(payment_entry.docstatus == 1)
562 .where(payment_entry.party_type == args.get("party_type"))
563 .where(payment_entry.party == args.get("party"))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530564 )
rohitwaghchauree8358f32018-05-16 11:02:26 +0530565
Nabin Hait28a05282016-06-27 17:41:39 +0530566 if args.voucher_detail_no:
Gursheen Anand4ee16372023-06-08 13:15:23 +0530567 q = (
568 q.inner_join(payment_ref)
Gursheen Anand74619262023-06-02 17:13:51 +0530569 .on(payment_entry.name == payment_ref.parent)
570 .where(payment_ref.name == args.get("voucher_detail_no"))
Gursheen Anand4ee16372023-06-08 13:15:23 +0530571 .where(payment_ref.reference_doctype.isin(("", "Sales Order", "Purchase Order")))
Gursheen Anand74619262023-06-02 17:13:51 +0530572 .where(payment_ref.allocated_amount == args.get("unreconciled_amount"))
Gursheen Anand4ee16372023-06-08 13:15:23 +0530573 )
Nabin Hait28a05282016-06-27 17:41:39 +0530574 else:
ruthra kumar60435da2023-11-03 17:58:19 +0530575 q = q.where(
576 Round(payment_entry.unallocated_amount, precision)
577 == Round(args.get("unreconciled_amount"), precision)
578 )
Gursheen Anand4ee16372023-06-08 13:15:23 +0530579
Gursheen Anand74619262023-06-02 17:13:51 +0530580 ret = q.run(as_dict=True)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530581
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530582 if not ret:
Akhilesh Darjee4f721562014-01-29 16:31:38 +0530583 throw(_("""Payment Entry has been modified after you pulled it. Please pull it again."""))
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530584
Ankush Menat494bd9e2022-03-28 18:52:46 +0530585
Nabin Hait576f0252014-04-30 19:30:50 +0530586def validate_allocated_amount(args):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530587 precision = args.get("precision") or frappe.db.get_single_value(
588 "System Settings", "currency_precision"
589 )
Nabin Hait28a05282016-06-27 17:41:39 +0530590 if args.get("allocated_amount") < 0:
Kenneth Sequeiraa29ed402019-05-27 11:47:07 +0530591 throw(_("Allocated amount cannot be negative"))
Deepesh Gargf54d5962021-03-31 14:06:02 +0530592 elif flt(args.get("allocated_amount"), precision) > flt(args.get("unadjusted_amount"), precision):
Kenneth Sequeiraa29ed402019-05-27 11:47:07 +0530593 throw(_("Allocated amount cannot be greater than unadjusted amount"))
Nabin Hait576f0252014-04-30 19:30:50 +0530594
Ankush Menat494bd9e2022-03-28 18:52:46 +0530595
Anuja Pawar3e404f12021-08-31 18:59:29 +0530596def update_reference_in_journal_entry(d, journal_entry, do_not_save=False):
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530597 """
Ankush Menat494bd9e2022-03-28 18:52:46 +0530598 Updates against document, if partial amount splits into rows
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530599 """
Anuja Pawar3e404f12021-08-31 18:59:29 +0530600 jv_detail = journal_entry.get("accounts", {"name": d["voucher_detail_no"]})[0]
Rushabh Mehta1828c122015-08-10 17:04:07 +0530601
marination426350e2023-09-13 14:24:56 +0530602 # Update Advance Paid in SO/PO since they might be getting unlinked
603 if jv_detail.get("reference_type") in ("Sales Order", "Purchase Order"):
604 frappe.get_doc(jv_detail.reference_type, jv_detail.reference_name).set_total_advance_paid()
605
Ankush Menat494bd9e2022-03-28 18:52:46 +0530606 if flt(d["unadjusted_amount"]) - flt(d["allocated_amount"]) != 0:
Anuja Pawar3e404f12021-08-31 18:59:29 +0530607 # adjust the unreconciled balance
Ankush Menat494bd9e2022-03-28 18:52:46 +0530608 amount_in_account_currency = flt(d["unadjusted_amount"]) - flt(d["allocated_amount"])
Anuja Pawar3e404f12021-08-31 18:59:29 +0530609 amount_in_company_currency = amount_in_account_currency * flt(jv_detail.exchange_rate)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530610 jv_detail.set(d["dr_or_cr"], amount_in_account_currency)
611 jv_detail.set(
612 "debit" if d["dr_or_cr"] == "debit_in_account_currency" else "credit",
613 amount_in_company_currency,
614 )
Anuja Pawar3e404f12021-08-31 18:59:29 +0530615 else:
616 journal_entry.remove(jv_detail)
Anand Doshi0b031cd2015-09-16 12:46:54 +0530617
Anuja Pawar3e404f12021-08-31 18:59:29 +0530618 # new row with references
619 new_row = journal_entry.append("accounts")
Anuja Pawar1a6e98e2021-10-29 20:52:47 +0530620
ruthra kumar72f577a2023-07-13 15:04:44 +0530621 # Copy field values into new row
622 [
623 new_row.set(field, jv_detail.get(field))
624 for field in frappe.get_meta("Journal Entry Account").get_fieldnames_with_value()
625 ]
Rushabh Mehta2e7f9d22015-10-15 16:31:16 +0530626
Anuja Pawar3e404f12021-08-31 18:59:29 +0530627 new_row.set(d["dr_or_cr"], d["allocated_amount"])
Ankush Menat494bd9e2022-03-28 18:52:46 +0530628 new_row.set(
629 "debit" if d["dr_or_cr"] == "debit_in_account_currency" else "credit",
630 d["allocated_amount"] * flt(jv_detail.exchange_rate),
631 )
Rushabh Mehta2e7f9d22015-10-15 16:31:16 +0530632
Ankush Menat494bd9e2022-03-28 18:52:46 +0530633 new_row.set(
634 "credit_in_account_currency"
635 if d["dr_or_cr"] == "debit_in_account_currency"
636 else "debit_in_account_currency",
637 0,
638 )
639 new_row.set("credit" if d["dr_or_cr"] == "debit_in_account_currency" else "debit", 0)
Rushabh Mehta2e7f9d22015-10-15 16:31:16 +0530640
Anuja Pawar3e404f12021-08-31 18:59:29 +0530641 new_row.set("reference_type", d["against_voucher_type"])
642 new_row.set("reference_name", d["against_voucher"])
643
644 new_row.against_account = cstr(jv_detail.against_account)
Gursheen Anand450c2472023-11-08 14:08:57 +0530645 new_row.against_account_link = cstr(jv_detail.against_account)
Anuja Pawar3e404f12021-08-31 18:59:29 +0530646 new_row.is_advance = cstr(jv_detail.is_advance)
647 new_row.docstatus = 1
Anand Doshicd71e1d2014-04-08 13:53:35 +0530648
649 # will work as update after submit
Anuja Pawar3e404f12021-08-31 18:59:29 +0530650 journal_entry.flags.ignore_validate_update_after_submit = True
651 if not do_not_save:
652 journal_entry.save(ignore_permissions=True)
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530653
ruthra kumar79c6f012023-09-01 14:57:12 +0530654 return new_row.name
655
Ankush Menat494bd9e2022-03-28 18:52:46 +0530656
ruthra kumared14d1c2023-04-22 17:24:35 +0530657def update_reference_in_payment_entry(
658 d, payment_entry, do_not_save=False, skip_ref_details_update_for_pe=False
659):
Nabin Hait28a05282016-06-27 17:41:39 +0530660 reference_details = {
661 "reference_doctype": d.against_voucher_type,
662 "reference_name": d.against_voucher,
663 "total_amount": d.grand_total,
664 "outstanding_amount": d.outstanding_amount,
665 "allocated_amount": d.allocated_amount,
ruthra kumar5eeb6502023-12-15 11:46:12 +0530666 "exchange_rate": d.exchange_rate
667 if d.difference_amount is not None
668 else payment_entry.get_exchange_rate(),
669 "exchange_gain_loss": d.difference_amount,
Gursheen Anandb65e58c2023-06-08 18:15:37 +0530670 "account": d.account,
Nabin Hait28a05282016-06-27 17:41:39 +0530671 }
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530672
Nabin Hait28a05282016-06-27 17:41:39 +0530673 if d.voucher_detail_no:
674 existing_row = payment_entry.get("references", {"name": d["voucher_detail_no"]})[0]
marination426350e2023-09-13 14:24:56 +0530675
676 # Update Advance Paid in SO/PO since they are getting unlinked
677 if existing_row.get("reference_doctype") in ("Sales Order", "Purchase Order"):
678 frappe.get_doc(
679 existing_row.reference_doctype, existing_row.reference_name
680 ).set_total_advance_paid()
681
ruthra kumar23df4202023-10-19 11:32:21 +0530682 if d.allocated_amount <= existing_row.allocated_amount:
683 existing_row.allocated_amount -= d.allocated_amount
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530684
Nabin Hait28a05282016-06-27 17:41:39 +0530685 new_row = payment_entry.append("references")
686 new_row.docstatus = 1
Achilles Rasquinhaefb73192018-05-23 01:01:24 -0500687 for field in list(reference_details):
ruthra kumar23df4202023-10-19 11:32:21 +0530688 new_row.set(field, reference_details[field])
ruthra kumarecb533c2023-11-28 17:04:07 +0530689 row = new_row
Nabin Hait28a05282016-06-27 17:41:39 +0530690 else:
691 new_row = payment_entry.append("references")
692 new_row.docstatus = 1
693 new_row.update(reference_details)
ruthra kumarecb533c2023-11-28 17:04:07 +0530694 row = new_row
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530695
Devin Slauenwhite98c39c42023-01-01 22:25:12 -0500696 payment_entry.flags.ignore_validate_update_after_submit = True
ruthra kumar23df4202023-10-19 11:32:21 +0530697 payment_entry.clear_unallocated_reference_document_rows()
Devin Slauenwhite98c39c42023-01-01 22:25:12 -0500698 payment_entry.setup_party_account_field()
699 payment_entry.set_missing_values()
ruthra kumared14d1c2023-04-22 17:24:35 +0530700 if not skip_ref_details_update_for_pe:
701 payment_entry.set_missing_ref_details()
Devin Slauenwhite98c39c42023-01-01 22:25:12 -0500702 payment_entry.set_amounts()
ruthra kumar7e600a62023-10-22 20:26:45 +0530703 payment_entry.make_exchange_gain_loss_journal(
704 frappe._dict({"difference_posting_date": d.difference_posting_date})
705 )
Devin Slauenwhite98c39c42023-01-01 22:25:12 -0500706
Rohit Waghchaurea2408a62019-06-24 01:52:48 +0530707 if not do_not_save:
708 payment_entry.save(ignore_permissions=True)
ruthra kumarecb533c2023-11-28 17:04:07 +0530709 return row
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530710
Ankush Menat494bd9e2022-03-28 18:52:46 +0530711
ruthra kumar5dbcf7d2023-09-05 09:52:36 +0530712def cancel_exchange_gain_loss_journal(
713 parent_doc: dict | object, referenced_dt: str = None, referenced_dn: str = None
714) -> None:
ruthra kumar81cd7872023-04-27 09:46:54 +0530715 """
716 Cancel Exchange Gain/Loss for Sales/Purchase Invoice, if they have any.
717 """
ruthra kumar6e18bb62023-07-11 12:21:10 +0530718 if parent_doc.doctype in ["Sales Invoice", "Purchase Invoice", "Payment Entry", "Journal Entry"]:
ruthra kumar81cd7872023-04-27 09:46:54 +0530719 journals = frappe.db.get_all(
720 "Journal Entry Account",
721 filters={
722 "reference_type": parent_doc.doctype,
723 "reference_name": parent_doc.name,
724 "docstatus": 1,
725 },
726 fields=["parent"],
727 as_list=1,
728 )
ruthra kumard9d68562023-07-27 08:02:46 +0530729
ruthra kumar81cd7872023-04-27 09:46:54 +0530730 if journals:
ruthra kumard9d68562023-07-27 08:02:46 +0530731 gain_loss_journals = frappe.db.get_all(
ruthra kumar81cd7872023-04-27 09:46:54 +0530732 "Journal Entry",
733 filters={
734 "name": ["in", [x[0] for x in journals]],
735 "voucher_type": "Exchange Gain Or Loss",
736 "docstatus": 1,
737 },
738 as_list=1,
739 )
ruthra kumard9d68562023-07-27 08:02:46 +0530740 for doc in gain_loss_journals:
ruthra kumar5dbcf7d2023-09-05 09:52:36 +0530741 gain_loss_je = frappe.get_doc("Journal Entry", doc[0])
742 if referenced_dt and referenced_dn:
743 references = [(x.reference_type, x.reference_name) for x in gain_loss_je.accounts]
744 if (
745 len(references) == 2
746 and (referenced_dt, referenced_dn) in references
747 and (parent_doc.doctype, parent_doc.name) in references
748 ):
749 # only cancel JE generated against parent_doc and referenced_dn
750 gain_loss_je.cancel()
751 else:
752 gain_loss_je.cancel()
ruthra kumar81cd7872023-04-27 09:46:54 +0530753
754
ruthra kumar9b6eac22023-08-30 16:44:25 +0530755def update_accounting_ledgers_after_reference_removal(
756 ref_type: str = None, ref_no: str = None, payment_name: str = None
757):
ruthra kumar0130aea2023-08-30 13:25:23 +0530758 # General Ledger
759 gle = qb.DocType("GL Entry")
ruthra kumar9b6eac22023-08-30 16:44:25 +0530760 gle_update_query = (
761 qb.update(gle)
762 .set(gle.against_voucher_type, None)
763 .set(gle.against_voucher, None)
764 .set(gle.modified, now())
765 .set(gle.modified_by, frappe.session.user)
766 .where((gle.against_voucher_type == ref_type) & (gle.against_voucher == ref_no))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530767 )
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530768
ruthra kumar9b6eac22023-08-30 16:44:25 +0530769 if payment_name:
770 gle_update_query = gle_update_query.where(gle.voucher_no == payment_name)
771 gle_update_query.run()
Nabin Hait297d74a2016-11-23 15:58:51 +0530772
ruthra kumar0130aea2023-08-30 13:25:23 +0530773 # Payment Ledger
ruthra kumar537d9532022-10-10 10:17:19 +0530774 ple = qb.DocType("Payment Ledger Entry")
ruthra kumar9b6eac22023-08-30 16:44:25 +0530775 ple_update_query = (
776 qb.update(ple)
777 .set(ple.against_voucher_type, ple.voucher_type)
778 .set(ple.against_voucher_no, ple.voucher_no)
779 .set(ple.modified, now())
780 .set(ple.modified_by, frappe.session.user)
781 .where(
782 (ple.against_voucher_type == ref_type)
783 & (ple.against_voucher_no == ref_no)
784 & (ple.delinked == 0)
785 )
786 )
ruthra kumar537d9532022-10-10 10:17:19 +0530787
ruthra kumar9b6eac22023-08-30 16:44:25 +0530788 if payment_name:
789 ple_update_query = ple_update_query.where(ple.voucher_no == payment_name)
790 ple_update_query.run()
ruthra kumar537d9532022-10-10 10:17:19 +0530791
ruthra kumar0130aea2023-08-30 13:25:23 +0530792
793def remove_ref_from_advance_section(ref_doc: object = None):
ruthra kumar9b6eac22023-08-30 16:44:25 +0530794 # TODO: this might need some testing
Nabin Hait297d74a2016-11-23 15:58:51 +0530795 if ref_doc.doctype in ("Sales Invoice", "Purchase Invoice"):
796 ref_doc.set("advances", [])
ruthra kumar0130aea2023-08-30 13:25:23 +0530797 adv_type = qb.DocType(f"{ref_doc.doctype} Advance")
798 qb.from_(adv_type).delete().where(adv_type.parent == ref_doc.name).run()
Ankush Menat494bd9e2022-03-28 18:52:46 +0530799
Anand Doshicd71e1d2014-04-08 13:53:35 +0530800
ruthra kumar9b6eac22023-08-30 16:44:25 +0530801def unlink_ref_doc_from_payment_entries(ref_doc: object = None, payment_name: str = None):
802 remove_ref_doc_link_from_jv(ref_doc.doctype, ref_doc.name, payment_name)
803 remove_ref_doc_link_from_pe(ref_doc.doctype, ref_doc.name, payment_name)
804 update_accounting_ledgers_after_reference_removal(ref_doc.doctype, ref_doc.name, payment_name)
805 remove_ref_from_advance_section(ref_doc)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530806
Rushabh Mehta1828c122015-08-10 17:04:07 +0530807
ruthra kumar9b6eac22023-08-30 16:44:25 +0530808def remove_ref_doc_link_from_jv(
809 ref_type: str = None, ref_no: str = None, payment_name: str = None
810):
ruthra kumar0130aea2023-08-30 13:25:23 +0530811 jea = qb.DocType("Journal Entry Account")
812
813 linked_jv = (
814 qb.from_(jea)
815 .select(jea.parent)
ruthra kumar9a1588f2023-08-30 20:50:16 +0530816 .where((jea.reference_type == ref_type) & (jea.reference_name == ref_no) & (jea.docstatus.lt(2)))
ruthra kumar0130aea2023-08-30 13:25:23 +0530817 .run(as_list=1)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530818 )
ruthra kumar0130aea2023-08-30 13:25:23 +0530819 linked_jv = convert_to_list(linked_jv)
ruthra kumar9b6eac22023-08-30 16:44:25 +0530820 # remove reference only from specified payment
821 linked_jv = [x for x in linked_jv if x == payment_name] if payment_name else linked_jv
Nabin Haitdc15b4f2014-01-20 16:48:49 +0530822
823 if linked_jv:
ruthra kumar9b6eac22023-08-30 16:44:25 +0530824 update_query = (
825 qb.update(jea)
826 .set(jea.reference_type, None)
827 .set(jea.reference_name, None)
828 .set(jea.modified, now())
829 .set(jea.modified_by, frappe.session.user)
830 .where((jea.reference_type == ref_type) & (jea.reference_name == ref_no))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530831 )
Anand Doshicd71e1d2014-04-08 13:53:35 +0530832
ruthra kumar9b6eac22023-08-30 16:44:25 +0530833 if payment_name:
834 update_query = update_query.where(jea.parent == payment_name)
835
836 update_query.run()
Anand Doshi7da72dd2013-03-20 17:00:41 +0530837
Suraj Shetty48e9bc32020-01-29 15:06:18 +0530838 frappe.msgprint(_("Journal Entries {0} are un-linked").format("\n".join(linked_jv)))
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530839
Ankush Menat494bd9e2022-03-28 18:52:46 +0530840
ruthra kumar0130aea2023-08-30 13:25:23 +0530841def convert_to_list(result):
842 """
843 Convert tuple to list
844 """
845 return [x[0] for x in result]
846
847
ruthra kumar9b6eac22023-08-30 16:44:25 +0530848def remove_ref_doc_link_from_pe(
849 ref_type: str = None, ref_no: str = None, payment_name: str = None
850):
ruthra kumar0130aea2023-08-30 13:25:23 +0530851 per = qb.DocType("Payment Entry Reference")
852 pay = qb.DocType("Payment Entry")
853
854 linked_pe = (
855 qb.from_(per)
856 .select(per.parent)
857 .where(
858 (per.reference_doctype == ref_type) & (per.reference_name == ref_no) & (per.docstatus.lt(2))
859 )
860 .run(as_list=1)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530861 )
ruthra kumar0130aea2023-08-30 13:25:23 +0530862 linked_pe = convert_to_list(linked_pe)
ruthra kumar9b6eac22023-08-30 16:44:25 +0530863 # remove reference only from specified payment
864 linked_pe = [x for x in linked_pe if x == payment_name] if payment_name else linked_pe
Anand Doshicd71e1d2014-04-08 13:53:35 +0530865
Nabin Haite0cc87d2016-07-21 18:30:03 +0530866 if linked_pe:
ruthra kumar9b6eac22023-08-30 16:44:25 +0530867 update_query = (
868 qb.update(per)
869 .set(per.allocated_amount, 0)
870 .set(per.modified, now())
871 .set(per.modified_by, frappe.session.user)
872 .where(
873 (per.docstatus.lt(2) & (per.reference_doctype == ref_type) & (per.reference_name == ref_no))
874 )
Ankush Menat494bd9e2022-03-28 18:52:46 +0530875 )
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530876
ruthra kumar9b6eac22023-08-30 16:44:25 +0530877 if payment_name:
878 update_query = update_query.where(per.parent == payment_name)
879
880 update_query.run()
Nabin Haite0cc87d2016-07-21 18:30:03 +0530881
882 for pe in linked_pe:
Deepesh Gargc5276f32021-08-01 17:48:50 +0530883 try:
Deepesh Garg1894dc82023-06-23 21:53:34 +0530884 pe_doc = frappe.get_doc("Payment Entry", pe)
Deepesh Garg71418602021-08-10 22:21:28 +0530885 pe_doc.set_amounts()
ruthra kumarecb533c2023-11-28 17:04:07 +0530886
887 # Call cancel on only removed reference
888 references = [
889 x for x in pe_doc.references if x.reference_doctype == ref_type and x.reference_name == ref_no
890 ]
891 [pe_doc.make_advance_gl_entries(x, cancel=1) for x in references]
892
Deepesh Gargb5162392021-08-10 14:52:24 +0530893 pe_doc.clear_unallocated_reference_document_rows()
894 pe_doc.validate_payment_type_with_outstanding()
Deepesh Gargc5276f32021-08-01 17:48:50 +0530895 except Exception as e:
896 msg = _("There were issues unlinking payment entry {0}.").format(pe_doc.name)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530897 msg += "<br>"
Deepesh Garg188bba82021-08-10 14:04:31 +0530898 msg += _("Please cancel payment entry manually first")
Deepesh Garg71418602021-08-10 22:21:28 +0530899 frappe.throw(msg, exc=PaymentEntryUnlinkError, title=_("Payment Unlink Error"))
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530900
ruthra kumar0130aea2023-08-30 13:25:23 +0530901 qb.update(pay).set(pay.total_allocated_amount, pe_doc.total_allocated_amount).set(
902 pay.base_total_allocated_amount, pe_doc.base_total_allocated_amount
903 ).set(pay.unallocated_amount, pe_doc.unallocated_amount).set(pay.modified, now()).set(
904 pay.modified_by, frappe.session.user
905 ).where(
906 pay.name == pe
907 ).run()
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530908
Suraj Shetty48e9bc32020-01-29 15:06:18 +0530909 frappe.msgprint(_("Payment Entries {0} are un-linked").format("\n".join(linked_pe)))
Nabin Hait0fc24542013-03-25 11:06:00 +0530910
Ankush Menat494bd9e2022-03-28 18:52:46 +0530911
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530912@frappe.whitelist()
Rohit Waghchaure2a14f252021-07-30 12:36:35 +0530913def get_company_default(company, fieldname, ignore_validation=False):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530914 value = frappe.get_cached_value("Company", company, fieldname)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530915
Rohit Waghchaure2a14f252021-07-30 12:36:35 +0530916 if not ignore_validation and not value:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530917 throw(
918 _("Please set default {0} in Company {1}").format(
919 frappe.get_meta("Company").get_label(fieldname), company
920 )
921 )
Anand Doshicd71e1d2014-04-08 13:53:35 +0530922
Nabin Hait0fc24542013-03-25 11:06:00 +0530923 return value
Nabin Hait8b509f52013-05-28 16:52:30 +0530924
Ankush Menat494bd9e2022-03-28 18:52:46 +0530925
Nabin Hait8b509f52013-05-28 16:52:30 +0530926def fix_total_debit_credit():
Ankush Menat494bd9e2022-03-28 18:52:46 +0530927 vouchers = frappe.db.sql(
928 """select voucher_type, voucher_no,
Anand Doshicd71e1d2014-04-08 13:53:35 +0530929 sum(debit) - sum(credit) as diff
930 from `tabGL Entry`
Nabin Hait8b509f52013-05-28 16:52:30 +0530931 group by voucher_type, voucher_no
Ankush Menat494bd9e2022-03-28 18:52:46 +0530932 having sum(debit) != sum(credit)""",
933 as_dict=1,
934 )
Anand Doshicd71e1d2014-04-08 13:53:35 +0530935
Nabin Hait8b509f52013-05-28 16:52:30 +0530936 for d in vouchers:
937 if abs(d.diff) > 0:
938 dr_or_cr = d.voucher_type == "Sales Invoice" and "credit" or "debit"
Anand Doshicd71e1d2014-04-08 13:53:35 +0530939
Ankush Menat494bd9e2022-03-28 18:52:46 +0530940 frappe.db.sql(
941 """update `tabGL Entry` set %s = %s + %s
942 where voucher_type = %s and voucher_no = %s and %s > 0 limit 1"""
943 % (dr_or_cr, dr_or_cr, "%s", "%s", "%s", dr_or_cr),
944 (d.diff, d.voucher_type, d.voucher_no),
945 )
946
Anand Doshicd71e1d2014-04-08 13:53:35 +0530947
Rushabh Mehtad50da782017-07-28 11:39:01 +0530948def get_currency_precision():
Nabin Hait9b20e072017-04-25 12:10:24 +0530949 precision = cint(frappe.db.get_default("currency_precision"))
950 if not precision:
951 number_format = frappe.db.get_default("number_format") or "#,###.##"
952 precision = get_number_format_info(number_format)[2]
Rushabh Mehtad50da782017-07-28 11:39:01 +0530953
Nabin Hait9b20e072017-04-25 12:10:24 +0530954 return precision
Rushabh Mehtad50da782017-07-28 11:39:01 +0530955
Nabin Hait9a0c46f2014-08-07 15:10:05 +0530956
Ankush Menat494bd9e2022-03-28 18:52:46 +0530957def get_stock_rbnb_difference(posting_date, company):
958 stock_items = frappe.db.sql_list(
959 """select distinct item_code
960 from `tabStock Ledger Entry` where company=%s""",
961 company,
962 )
963
964 pr_valuation_amount = frappe.db.sql(
965 """
Anand Doshi602e8252015-11-16 19:05:46 +0530966 select sum(pr_item.valuation_rate * pr_item.qty * pr_item.conversion_factor)
Nabin Hait9a0c46f2014-08-07 15:10:05 +0530967 from `tabPurchase Receipt Item` pr_item, `tabPurchase Receipt` pr
Suraj Shetty084b0b32018-05-26 09:12:59 +0530968 where pr.name = pr_item.parent and pr.docstatus=1 and pr.company=%s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530969 and pr.posting_date <= %s and pr_item.item_code in (%s)"""
970 % ("%s", "%s", ", ".join(["%s"] * len(stock_items))),
971 tuple([company, posting_date] + stock_items),
972 )[0][0]
Nabin Hait9a0c46f2014-08-07 15:10:05 +0530973
Ankush Menat494bd9e2022-03-28 18:52:46 +0530974 pi_valuation_amount = frappe.db.sql(
975 """
Anand Doshi602e8252015-11-16 19:05:46 +0530976 select sum(pi_item.valuation_rate * pi_item.qty * pi_item.conversion_factor)
Nabin Hait9a0c46f2014-08-07 15:10:05 +0530977 from `tabPurchase Invoice Item` pi_item, `tabPurchase Invoice` pi
Suraj Shetty084b0b32018-05-26 09:12:59 +0530978 where pi.name = pi_item.parent and pi.docstatus=1 and pi.company=%s
Ankush Menat494bd9e2022-03-28 18:52:46 +0530979 and pi.posting_date <= %s and pi_item.item_code in (%s)"""
980 % ("%s", "%s", ", ".join(["%s"] * len(stock_items))),
981 tuple([company, posting_date] + stock_items),
982 )[0][0]
Nabin Hait9a0c46f2014-08-07 15:10:05 +0530983
984 # Balance should be
985 stock_rbnb = flt(pr_valuation_amount, 2) - flt(pi_valuation_amount, 2)
986
987 # Balance as per system
Ankush Menat494bd9e2022-03-28 18:52:46 +0530988 stock_rbnb_account = "Stock Received But Not Billed - " + frappe.get_cached_value(
989 "Company", company, "abbr"
990 )
Nabin Haitc0e3b1a2015-09-04 13:26:23 +0530991 sys_bal = get_balance_on(stock_rbnb_account, posting_date, in_account_currency=False)
Nabin Hait9a0c46f2014-08-07 15:10:05 +0530992
993 # Amount should be credited
994 return flt(stock_rbnb) + flt(sys_bal)
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530995
tundec4b0d172017-09-26 00:48:30 +0100996
tundebabzyad08d4c2018-05-16 07:01:41 +0100997def get_held_invoices(party_type, party):
998 """
999 Returns a list of names Purchase Invoices for the given party that are on hold
1000 """
1001 held_invoices = None
1002
Ankush Menat494bd9e2022-03-28 18:52:46 +05301003 if party_type == "Supplier":
tundebabzyad08d4c2018-05-16 07:01:41 +01001004 held_invoices = frappe.db.sql(
mergify[bot]872a23c2023-07-10 20:34:54 +05301005 "select name from `tabPurchase Invoice` where on_hold = 1 and release_date IS NOT NULL and release_date > CURDATE()",
Ankush Menat494bd9e2022-03-28 18:52:46 +05301006 as_dict=1,
tundebabzyad08d4c2018-05-16 07:01:41 +01001007 )
Ankush Menat494bd9e2022-03-28 18:52:46 +05301008 held_invoices = set(d["name"] for d in held_invoices)
tundebabzyad08d4c2018-05-16 07:01:41 +01001009
1010 return held_invoices
1011
1012
ruthra kumar8c876742022-06-14 17:46:04 +05301013def get_outstanding_invoices(
ruthra kumar5f1562c2022-07-28 11:57:27 +05301014 party_type,
1015 party,
1016 account,
1017 common_filter=None,
1018 posting_date=None,
1019 min_outstanding=None,
1020 max_outstanding=None,
ruthra kumar6d9d7302022-12-14 16:05:15 +05301021 accounting_dimensions=None,
Deepesh Garg299e32b2023-08-24 18:02:06 +05301022 vouchers=None, # list of dicts [{'voucher_type': '', 'voucher_no': ''}] for filtering
1023 limit=None, # passed by reconciliation tool
1024 voucher_no=None, # filter passed by reconciliation tool
ruthra kumar8c876742022-06-14 17:46:04 +05301025):
1026
1027 ple = qb.DocType("Payment Ledger Entry")
Anand Doshid40d1e92015-11-12 17:05:29 +05301028 outstanding_invoices = []
Nabin Haitac184982019-02-04 21:13:43 +05301029 precision = frappe.get_precision("Sales Invoice", "outstanding_amount") or 2
Anand Doshid40d1e92015-11-12 17:05:29 +05301030
Nabin Hait9db9edc2019-11-19 18:44:32 +05301031 if account:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301032 root_type, account_type = frappe.get_cached_value(
1033 "Account", account, ["root_type", "account_type"]
1034 )
Nabin Hait9db9edc2019-11-19 18:44:32 +05301035 party_account_type = "Receivable" if root_type == "Asset" else "Payable"
Saqib9291df42020-01-24 16:22:49 +05301036 party_account_type = account_type or party_account_type
Nabin Hait9db9edc2019-11-19 18:44:32 +05301037 else:
1038 party_account_type = erpnext.get_party_account_type(party_type)
1039
tundebabzyad08d4c2018-05-16 07:01:41 +01001040 held_invoices = get_held_invoices(party_type, party)
1041
ruthra kumar8c876742022-06-14 17:46:04 +05301042 common_filter = common_filter or []
1043 common_filter.append(ple.account_type == party_account_type)
1044 common_filter.append(ple.account == account)
1045 common_filter.append(ple.party_type == party_type)
1046 common_filter.append(ple.party == party)
Ankit Javalkar8e7ca412014-09-12 15:18:53 +05301047
ruthra kumar8c876742022-06-14 17:46:04 +05301048 ple_query = QueryPaymentLedger()
1049 invoice_list = ple_query.get_voucher_outstandings(
ruthra kumardeb0d712023-08-15 05:17:01 +05301050 vouchers=vouchers,
ruthra kumar8c876742022-06-14 17:46:04 +05301051 common_filter=common_filter,
ruthra kumar5f1562c2022-07-28 11:57:27 +05301052 posting_date=posting_date,
ruthra kumar8c876742022-06-14 17:46:04 +05301053 min_outstanding=min_outstanding,
1054 max_outstanding=max_outstanding,
1055 get_invoices=True,
ruthra kumar6d9d7302022-12-14 16:05:15 +05301056 accounting_dimensions=accounting_dimensions or [],
ruthra kumar7a381af2023-05-03 20:45:12 +05301057 limit=limit,
1058 voucher_no=voucher_no,
Ankush Menat494bd9e2022-03-28 18:52:46 +05301059 )
tundec4b0d172017-09-26 00:48:30 +01001060
Nabin Haitac184982019-02-04 21:13:43 +05301061 for d in invoice_list:
ruthra kumar21985532022-06-30 15:14:38 +05301062 payment_amount = d.invoice_amount_in_account_currency - d.outstanding_in_account_currency
1063 outstanding_amount = d.outstanding_in_account_currency
Nabin Haitac184982019-02-04 21:13:43 +05301064 if outstanding_amount > 0.5 / (10**precision):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301065 if (
ruthra kumar8c876742022-06-14 17:46:04 +05301066 min_outstanding
1067 and max_outstanding
barredterraeb9ee3f2023-12-05 11:22:55 +01001068 and (outstanding_amount < min_outstanding or outstanding_amount > max_outstanding)
Ankush Menat494bd9e2022-03-28 18:52:46 +05301069 ):
Rohit Waghchaure0f065d52019-05-02 00:06:04 +05301070 continue
Nabin Haitac184982019-02-04 21:13:43 +05301071
barredterraeb9ee3f2023-12-05 11:22:55 +01001072 if d.voucher_type != "Purchase Invoice" or d.voucher_no not in held_invoices:
Nabin Haitac184982019-02-04 21:13:43 +05301073 outstanding_invoices.append(
Ankush Menat494bd9e2022-03-28 18:52:46 +05301074 frappe._dict(
1075 {
1076 "voucher_no": d.voucher_no,
1077 "voucher_type": d.voucher_type,
1078 "posting_date": d.posting_date,
ruthra kumar21985532022-06-30 15:14:38 +05301079 "invoice_amount": flt(d.invoice_amount_in_account_currency),
Ankush Menat494bd9e2022-03-28 18:52:46 +05301080 "payment_amount": payment_amount,
1081 "outstanding_amount": outstanding_amount,
1082 "due_date": d.due_date,
1083 "currency": d.currency,
Gursheen Anand4ee16372023-06-08 13:15:23 +05301084 "account": d.account,
Ankush Menat494bd9e2022-03-28 18:52:46 +05301085 }
1086 )
Nabin Haitac184982019-02-04 21:13:43 +05301087 )
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +05301088
Ankush Menat494bd9e2022-03-28 18:52:46 +05301089 outstanding_invoices = sorted(
1090 outstanding_invoices, key=lambda k: k["due_date"] or getdate(nowdate())
1091 )
Anand Doshid40d1e92015-11-12 17:05:29 +05301092 return outstanding_invoices
Saurabh3a268292016-02-22 15:18:40 +05301093
1094
Ankush Menat494bd9e2022-03-28 18:52:46 +05301095def get_account_name(
1096 account_type=None, root_type=None, is_group=None, account_currency=None, company=None
1097):
Saurabh3a268292016-02-22 15:18:40 +05301098 """return account based on matching conditions"""
Ankush Menat494bd9e2022-03-28 18:52:46 +05301099 return frappe.db.get_value(
1100 "Account",
1101 {
1102 "account_type": account_type or "",
1103 "root_type": root_type or "",
1104 "is_group": is_group or 0,
1105 "account_currency": account_currency or frappe.defaults.get_defaults().currency,
1106 "company": company or frappe.defaults.get_defaults().company,
1107 },
1108 "name",
1109 )
1110
Saurabha9ba7342016-06-21 12:33:12 +05301111
1112@frappe.whitelist()
1113def get_companies():
1114 """get a list of companies based on permission"""
Ankush Menat494bd9e2022-03-28 18:52:46 +05301115 return [d.name for d in frappe.get_list("Company", fields=["name"], order_by="name")]
1116
Saurabha9ba7342016-06-21 12:33:12 +05301117
1118@frappe.whitelist()
Gursheen Kaur Anandb7f283b2023-12-29 12:55:37 +05301119def get_children(doctype, parent, company, is_root=False, include_disabled=False):
1120 if isinstance(include_disabled, str):
1121 include_disabled = frappe.json.loads(include_disabled)
Nabin Haitaf98f5d2018-04-02 10:14:32 +05301122 from erpnext.accounts.report.financial_statements import sort_accounts
Rushabh Mehtad50da782017-07-28 11:39:01 +05301123
Ankush Menat494bd9e2022-03-28 18:52:46 +05301124 parent_fieldname = "parent_" + doctype.lower().replace(" ", "_")
1125 fields = ["name as value", "is_group as expandable"]
1126 filters = [["docstatus", "<", 2]]
Gursheen Kaur Anandb7f283b2023-12-29 12:55:37 +05301127 if frappe.db.has_column(doctype, "disabled") and not include_disabled:
1128 filters.append(["disabled", "=", False])
Suraj Shettyfbb6b3d2018-05-16 13:53:31 +05301129
Ankush Menat494bd9e2022-03-28 18:52:46 +05301130 filters.append(['ifnull(`{0}`,"")'.format(parent_fieldname), "=", "" if is_root else parent])
Suraj Shetty084b0b32018-05-26 09:12:59 +05301131
Rushabh Mehta43133262017-11-10 18:52:21 +05301132 if is_root:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301133 fields += ["root_type", "report_type", "account_currency"] if doctype == "Account" else []
1134 filters.append(["company", "=", company])
Suraj Shetty084b0b32018-05-26 09:12:59 +05301135
Saurabha9ba7342016-06-21 12:33:12 +05301136 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301137 fields += ["root_type", "account_currency"] if doctype == "Account" else []
1138 fields += [parent_fieldname + " as parent"]
Suraj Shetty084b0b32018-05-26 09:12:59 +05301139
1140 acc = frappe.get_list(doctype, fields=fields, filters=filters)
Saurabha9ba7342016-06-21 12:33:12 +05301141
Ankush Menat494bd9e2022-03-28 18:52:46 +05301142 if doctype == "Account":
Nabin Haitaf98f5d2018-04-02 10:14:32 +05301143 sort_accounts(acc, is_root, key="value")
Saurabha9ba7342016-06-21 12:33:12 +05301144
1145 return acc
Saurabhb835fef2016-09-09 11:19:22 +05301146
Ankush Menat494bd9e2022-03-28 18:52:46 +05301147
Saqib90517352021-10-04 11:44:46 +05301148@frappe.whitelist()
1149def get_account_balances(accounts, company):
1150
Ankush Menat8fe5feb2021-11-04 19:48:32 +05301151 if isinstance(accounts, str):
Saqib90517352021-10-04 11:44:46 +05301152 accounts = loads(accounts)
1153
1154 if not accounts:
1155 return []
1156
Ankush Menat494bd9e2022-03-28 18:52:46 +05301157 company_currency = frappe.get_cached_value("Company", company, "default_currency")
Saqib90517352021-10-04 11:44:46 +05301158
1159 for account in accounts:
1160 account["company_currency"] = company_currency
Ankush Menat494bd9e2022-03-28 18:52:46 +05301161 account["balance"] = flt(
1162 get_balance_on(account["value"], in_account_currency=False, company=company)
1163 )
Saqib90517352021-10-04 11:44:46 +05301164 if account["account_currency"] and account["account_currency"] != company_currency:
1165 account["balance_in_account_currency"] = flt(get_balance_on(account["value"], company=company))
1166
1167 return accounts
1168
Ankush Menat494bd9e2022-03-28 18:52:46 +05301169
Mangesh-Khairnar97ab96c2020-09-22 12:58:32 +05301170def create_payment_gateway_account(gateway, payment_channel="Email"):
Deepesh Garga72589c2021-05-29 23:54:51 +05301171 from erpnext.setup.setup_wizard.operations.install_fixtures import create_bank_account
Saurabhb835fef2016-09-09 11:19:22 +05301172
Daizy Modifdfe5cb2022-11-17 19:14:10 +05301173 company = frappe.get_cached_value("Global Defaults", "Global Defaults", "default_company")
Saurabhb835fef2016-09-09 11:19:22 +05301174 if not company:
1175 return
1176
1177 # NOTE: we translate Payment Gateway account name because that is going to be used by the end user
Ankush Menat494bd9e2022-03-28 18:52:46 +05301178 bank_account = frappe.db.get_value(
1179 "Account",
1180 {"account_name": _(gateway), "company": company},
1181 ["name", "account_currency"],
1182 as_dict=1,
1183 )
Saurabhb835fef2016-09-09 11:19:22 +05301184
1185 if not bank_account:
1186 # check for untranslated one
Ankush Menat494bd9e2022-03-28 18:52:46 +05301187 bank_account = frappe.db.get_value(
1188 "Account",
1189 {"account_name": gateway, "company": company},
1190 ["name", "account_currency"],
1191 as_dict=1,
1192 )
Saurabhb835fef2016-09-09 11:19:22 +05301193
1194 if not bank_account:
1195 # try creating one
1196 bank_account = create_bank_account({"company_name": company, "bank_account": _(gateway)})
1197
1198 if not bank_account:
1199 frappe.msgprint(_("Payment Gateway Account not created, please create one manually."))
1200 return
1201
1202 # if payment gateway account exists, return
Ankush Menat494bd9e2022-03-28 18:52:46 +05301203 if frappe.db.exists(
1204 "Payment Gateway Account",
1205 {"payment_gateway": gateway, "currency": bank_account.account_currency},
1206 ):
Saurabhb835fef2016-09-09 11:19:22 +05301207 return
1208
1209 try:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301210 frappe.get_doc(
1211 {
1212 "doctype": "Payment Gateway Account",
1213 "is_default": 1,
1214 "payment_gateway": gateway,
1215 "payment_account": bank_account.name,
1216 "currency": bank_account.account_currency,
1217 "payment_channel": payment_channel,
1218 }
1219 ).insert(ignore_permissions=True, ignore_if_duplicate=True)
Saurabhb835fef2016-09-09 11:19:22 +05301220
1221 except frappe.DuplicateEntryError:
1222 # already exists, due to a reinstall?
cclauss68487082017-07-27 07:08:35 +02001223 pass
Zarrar44175902018-06-08 16:35:21 +05301224
Ankush Menat494bd9e2022-03-28 18:52:46 +05301225
Zarrar44175902018-06-08 16:35:21 +05301226@frappe.whitelist()
Deepesh Garg817cbc42020-06-15 12:07:04 +05301227def update_cost_center(docname, cost_center_name, cost_center_number, company, merge):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301228 """
1229 Renames the document by adding the number as a prefix to the current name and updates
1230 all transaction where it was present.
1231 """
Saqiba8779872020-04-30 11:28:43 +05301232 validate_field_number("Cost Center", docname, cost_center_number, company, "cost_center_number")
Zarrar44175902018-06-08 16:35:21 +05301233
Saqiba8779872020-04-30 11:28:43 +05301234 if cost_center_number:
1235 frappe.db.set_value("Cost Center", docname, "cost_center_number", cost_center_number.strip())
1236 else:
1237 frappe.db.set_value("Cost Center", docname, "cost_center_number", "")
Zarrar44175902018-06-08 16:35:21 +05301238
Saqiba8779872020-04-30 11:28:43 +05301239 frappe.db.set_value("Cost Center", docname, "cost_center_name", cost_center_name.strip())
Zarrar44175902018-06-08 16:35:21 +05301240
Nabin Haitaf21a112022-09-15 12:09:18 +05301241 new_name = get_autoname_with_number(cost_center_number, cost_center_name, company)
Saqiba8779872020-04-30 11:28:43 +05301242 if docname != new_name:
Deepesh Garg817cbc42020-06-15 12:07:04 +05301243 frappe.rename_doc("Cost Center", docname, new_name, force=1, merge=merge)
Zarrar44175902018-06-08 16:35:21 +05301244 return new_name
1245
Ankush Menat494bd9e2022-03-28 18:52:46 +05301246
Saqiba8779872020-04-30 11:28:43 +05301247def validate_field_number(doctype_name, docname, number_value, company, field_name):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301248 """Validate if the number entered isn't already assigned to some other document."""
Zlash651aeca1d2018-07-06 17:15:33 +05301249 if number_value:
Saqiba8779872020-04-30 11:28:43 +05301250 filters = {field_name: number_value, "name": ["!=", docname]}
Zarrar44175902018-06-08 16:35:21 +05301251 if company:
Saqiba8779872020-04-30 11:28:43 +05301252 filters["company"] = company
1253
1254 doctype_with_same_number = frappe.db.get_value(doctype_name, filters)
1255
Zarrar44175902018-06-08 16:35:21 +05301256 if doctype_with_same_number:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301257 frappe.throw(
1258 _("{0} Number {1} is already used in {2} {3}").format(
1259 doctype_name, number_value, doctype_name.lower(), doctype_with_same_number
1260 )
1261 )
1262
Zarrar44175902018-06-08 16:35:21 +05301263
Nabin Haitaf21a112022-09-15 12:09:18 +05301264def get_autoname_with_number(number_value, doc_title, company):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301265 """append title with prefix as number and suffix as company's abbreviation separated by '-'"""
Nabin Haitaf21a112022-09-15 12:09:18 +05301266 company_abbr = frappe.get_cached_value("Company", company, "abbr")
1267 parts = [doc_title.strip(), company_abbr]
1268
Zlash651aeca1d2018-07-06 17:15:33 +05301269 if cstr(number_value).strip():
1270 parts.insert(0, cstr(number_value).strip())
Nabin Haitaf21a112022-09-15 12:09:18 +05301271
Ankush Menat494bd9e2022-03-28 18:52:46 +05301272 return " - ".join(parts)
1273
Zarrar254ce642018-06-28 14:15:34 +05301274
Deepesh Garg62706072023-07-16 12:58:42 +05301275def parse_naming_series_variable(doc, variable):
1276 if variable == "FY":
Gughan Ravikumar89d109e2023-07-27 23:12:11 +05301277 if doc:
Gursheen Anandd96a7772024-01-10 22:05:02 +05301278 date = doc.get("posting_date") or doc.get("transaction_date") or getdate()
Gughan Ravikumar89d109e2023-07-27 23:12:11 +05301279 company = doc.get("company")
1280 else:
1281 date = getdate()
1282 company = None
Gursheen Anandd96a7772024-01-10 22:05:02 +05301283 return get_fiscal_year(date=date, company=company)[0]
Deepesh Garg62706072023-07-16 12:58:42 +05301284
1285
Zarrar254ce642018-06-28 14:15:34 +05301286@frappe.whitelist()
David Arnoldd066b5c2023-07-23 22:43:41 -05001287def get_coa(doctype, parent, is_root=None, chart=None):
Chillar Anand915b3432021-09-02 16:44:59 +05301288 from erpnext.accounts.doctype.account.chart_of_accounts.chart_of_accounts import (
1289 build_tree_from_json,
1290 )
Zarrar254ce642018-06-28 14:15:34 +05301291
1292 # add chart to flags to retrieve when called from expand all function
1293 chart = chart if chart else frappe.flags.chart
1294 frappe.flags.chart = chart
1295
Ankush Menat494bd9e2022-03-28 18:52:46 +05301296 parent = None if parent == _("All Accounts") else parent
1297 accounts = build_tree_from_json(chart) # returns alist of dict in a tree render-able form
Zarrar254ce642018-06-28 14:15:34 +05301298
1299 # filter out to show data for the selected node only
Ankush Menat494bd9e2022-03-28 18:52:46 +05301300 accounts = [d for d in accounts if d["parent_account"] == parent]
Zarrar254ce642018-06-28 14:15:34 +05301301
1302 return accounts
Sanjay Kumar1b49f3a2018-09-06 13:09:35 +04001303
Ankush Menat494bd9e2022-03-28 18:52:46 +05301304
1305def update_gl_entries_after(
1306 posting_date,
1307 posting_time,
1308 for_warehouses=None,
1309 for_items=None,
1310 warehouse_account=None,
1311 company=None,
1312):
1313 stock_vouchers = get_future_stock_vouchers(
1314 posting_date, posting_time, for_warehouses, for_items, company
1315 )
Nabin Hait9b178bc2021-02-16 14:57:00 +05301316 repost_gle_for_stock_vouchers(stock_vouchers, posting_date, company, warehouse_account)
1317
1318
Ankush Menat494bd9e2022-03-28 18:52:46 +05301319def repost_gle_for_stock_vouchers(
Ankush Menat2535d5e2022-06-14 18:20:33 +05301320 stock_vouchers: List[Tuple[str, str]],
1321 posting_date: str,
1322 company: Optional[str] = None,
1323 warehouse_account=None,
1324 repost_doc: Optional["RepostItemValuation"] = None,
Ankush Menat494bd9e2022-03-28 18:52:46 +05301325):
Ankush Menat67c26322022-06-04 14:46:35 +05301326
1327 from erpnext.accounts.general_ledger import toggle_debit_credit_if_negative
1328
Ankush Menat700e8642022-04-19 13:24:29 +05301329 if not stock_vouchers:
1330 return
1331
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301332 if not warehouse_account:
1333 warehouse_account = get_warehouse_account_map(company)
1334
Ankush Menat2535d5e2022-06-14 18:20:33 +05301335 stock_vouchers = sort_stock_vouchers_by_posting_date(stock_vouchers)
1336 if repost_doc and repost_doc.gl_reposting_index:
1337 # Restore progress
1338 stock_vouchers = stock_vouchers[cint(repost_doc.gl_reposting_index) :]
1339
Rohit Waghchaurebc8c9de2021-02-23 17:50:49 +05301340 precision = get_field_precision(frappe.get_meta("GL Entry").get_field("debit")) or 2
1341
Ankush Menat5c6f22f2022-06-15 19:30:26 +05301342 for stock_vouchers_chunk in create_batch(stock_vouchers, GL_REPOSTING_CHUNK):
Ankush Menat2535d5e2022-06-14 18:20:33 +05301343 gle = get_voucherwise_gl_entries(stock_vouchers_chunk, posting_date)
1344
1345 for voucher_type, voucher_no in stock_vouchers_chunk:
1346 existing_gle = gle.get((voucher_type, voucher_no), [])
1347 voucher_obj = frappe.get_doc(voucher_type, voucher_no)
1348 # Some transactions post credit as negative debit, this is handled while posting GLE
1349 # but while comparing we need to make sure it's flipped so comparisons are accurate
1350 expected_gle = toggle_debit_credit_if_negative(voucher_obj.get_gl_entries(warehouse_account))
1351 if expected_gle:
1352 if not existing_gle or not compare_existing_and_expected_gle(
1353 existing_gle, expected_gle, precision
1354 ):
ruthra kumar9209ec52022-10-21 15:18:40 +05301355 _delete_accounting_ledger_entries(voucher_type, voucher_no)
Ankush Menat2535d5e2022-06-14 18:20:33 +05301356 voucher_obj.make_gl_entries(gl_entries=expected_gle, from_repost=True)
1357 else:
ruthra kumar9209ec52022-10-21 15:18:40 +05301358 _delete_accounting_ledger_entries(voucher_type, voucher_no)
Ankush Menat86919d22022-06-15 21:19:09 +05301359
1360 if not frappe.flags.in_test:
1361 frappe.db.commit()
Ankush Menat2535d5e2022-06-14 18:20:33 +05301362
1363 if repost_doc:
1364 repost_doc.db_set(
1365 "gl_reposting_index",
Ankush Menat5c6f22f2022-06-15 19:30:26 +05301366 cint(repost_doc.gl_reposting_index) + len(stock_vouchers_chunk),
Ankush Menat2535d5e2022-06-14 18:20:33 +05301367 )
1368
1369
ruthra kumar9209ec52022-10-21 15:18:40 +05301370def _delete_pl_entries(voucher_type, voucher_no):
ruthra kumar65992302022-10-04 16:17:56 +05301371 ple = qb.DocType("Payment Ledger Entry")
1372 qb.from_(ple).delete().where(
1373 (ple.voucher_type == voucher_type) & (ple.voucher_no == voucher_no)
1374 ).run()
Ankush Menateb53a972022-06-04 18:19:44 +05301375
Ankush Menat494bd9e2022-03-28 18:52:46 +05301376
ruthra kumar9209ec52022-10-21 15:18:40 +05301377def _delete_gl_entries(voucher_type, voucher_no):
1378 gle = qb.DocType("GL Entry")
1379 qb.from_(gle).delete().where(
1380 (gle.voucher_type == voucher_type) & (gle.voucher_no == voucher_no)
1381 ).run()
1382
1383
1384def _delete_accounting_ledger_entries(voucher_type, voucher_no):
1385 """
1386 Remove entries from both General and Payment Ledger for specified Voucher
1387 """
1388 _delete_gl_entries(voucher_type, voucher_no)
1389 _delete_pl_entries(voucher_type, voucher_no)
1390
1391
Ankush Menat700e8642022-04-19 13:24:29 +05301392def sort_stock_vouchers_by_posting_date(
1393 stock_vouchers: List[Tuple[str, str]]
1394) -> List[Tuple[str, str]]:
1395 sle = frappe.qb.DocType("Stock Ledger Entry")
1396 voucher_nos = [v[1] for v in stock_vouchers]
1397
1398 sles = (
1399 frappe.qb.from_(sle)
1400 .select(sle.voucher_type, sle.voucher_no, sle.posting_date, sle.posting_time, sle.creation)
1401 .where((sle.is_cancelled == 0) & (sle.voucher_no.isin(voucher_nos)))
1402 .groupby(sle.voucher_type, sle.voucher_no)
Ankush Menat2535d5e2022-06-14 18:20:33 +05301403 .orderby(sle.posting_date)
1404 .orderby(sle.posting_time)
1405 .orderby(sle.creation)
Ankush Menat700e8642022-04-19 13:24:29 +05301406 ).run(as_dict=True)
1407 sorted_vouchers = [(sle.voucher_type, sle.voucher_no) for sle in sles]
1408
1409 unknown_vouchers = set(stock_vouchers) - set(sorted_vouchers)
1410 if unknown_vouchers:
1411 sorted_vouchers.extend(unknown_vouchers)
1412
1413 return sorted_vouchers
1414
1415
Ankush Menat494bd9e2022-03-28 18:52:46 +05301416def get_future_stock_vouchers(
1417 posting_date, posting_time, for_warehouses=None, for_items=None, company=None
1418):
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301419
1420 values = []
1421 condition = ""
1422 if for_items:
1423 condition += " and item_code in ({})".format(", ".join(["%s"] * len(for_items)))
1424 values += for_items
1425
1426 if for_warehouses:
1427 condition += " and warehouse in ({})".format(", ".join(["%s"] * len(for_warehouses)))
1428 values += for_warehouses
1429
rohitwaghchaured60ff832021-02-16 09:12:27 +05301430 if company:
Nabin Hait9b178bc2021-02-16 14:57:00 +05301431 condition += " and company = %s"
rohitwaghchaured60ff832021-02-16 09:12:27 +05301432 values.append(company)
1433
Ankush Menat494bd9e2022-03-28 18:52:46 +05301434 future_stock_vouchers = frappe.db.sql(
1435 """select distinct sle.voucher_type, sle.voucher_no
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301436 from `tabStock Ledger Entry` sle
Nabin Haita77b8c92020-12-21 14:45:50 +05301437 where
1438 timestamp(sle.posting_date, sle.posting_time) >= timestamp(%s, %s)
1439 and is_cancelled = 0
1440 {condition}
Ankush Menat494bd9e2022-03-28 18:52:46 +05301441 order by timestamp(sle.posting_date, sle.posting_time) asc, creation asc for update""".format(
1442 condition=condition
1443 ),
1444 tuple([posting_date, posting_time] + values),
1445 as_dict=True,
1446 )
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301447
Ankush91527152021-08-11 11:17:50 +05301448 return [(d.voucher_type, d.voucher_no) for d in future_stock_vouchers]
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301449
Ankush Menat494bd9e2022-03-28 18:52:46 +05301450
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301451def get_voucherwise_gl_entries(future_stock_vouchers, posting_date):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301452 """Get voucherwise list of GL entries.
Ankush91527152021-08-11 11:17:50 +05301453
1454 Only fetches GLE fields required for comparing with new GLE.
1455 Check compare_existing_and_expected_gle function below.
rohitwaghchaure058d9832021-09-07 12:14:40 +05301456
1457 returns:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301458 Dict[Tuple[voucher_type, voucher_no], List[GL Entries]]
Ankush91527152021-08-11 11:17:50 +05301459 """
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301460 gl_entries = {}
Ankush91527152021-08-11 11:17:50 +05301461 if not future_stock_vouchers:
1462 return gl_entries
1463
1464 voucher_nos = [d[1] for d in future_stock_vouchers]
1465
Ankush Menat494bd9e2022-03-28 18:52:46 +05301466 gles = frappe.db.sql(
1467 """
rohitwaghchaure058d9832021-09-07 12:14:40 +05301468 select name, account, credit, debit, cost_center, project, voucher_type, voucher_no
Ankush91527152021-08-11 11:17:50 +05301469 from `tabGL Entry`
1470 where
Ankush Menat494bd9e2022-03-28 18:52:46 +05301471 posting_date >= %s and voucher_no in (%s)"""
1472 % ("%s", ", ".join(["%s"] * len(voucher_nos))),
1473 tuple([posting_date] + voucher_nos),
1474 as_dict=1,
1475 )
Ankush91527152021-08-11 11:17:50 +05301476
1477 for d in gles:
1478 gl_entries.setdefault((d.voucher_type, d.voucher_no), []).append(d)
Deepesh Garg2a9c5ba2020-04-30 10:38:58 +05301479
Prssanna Desai82ddef52020-06-18 18:18:41 +05301480 return gl_entries
Nabin Haita77b8c92020-12-21 14:45:50 +05301481
Ankush Menat494bd9e2022-03-28 18:52:46 +05301482
Rohit Waghchaurebc8c9de2021-02-23 17:50:49 +05301483def compare_existing_and_expected_gle(existing_gle, expected_gle, precision):
Ankush91527152021-08-11 11:17:50 +05301484 if len(existing_gle) != len(expected_gle):
1485 return False
1486
Nabin Haita77b8c92020-12-21 14:45:50 +05301487 matched = True
1488 for entry in expected_gle:
1489 account_existed = False
1490 for e in existing_gle:
1491 if entry.account == e.account:
1492 account_existed = True
Ankush Menat494bd9e2022-03-28 18:52:46 +05301493 if (
1494 entry.account == e.account
1495 and (not entry.cost_center or not e.cost_center or entry.cost_center == e.cost_center)
1496 and (
1497 flt(entry.debit, precision) != flt(e.debit, precision)
1498 or flt(entry.credit, precision) != flt(e.credit, precision)
1499 )
1500 ):
Nabin Haita77b8c92020-12-21 14:45:50 +05301501 matched = False
1502 break
1503 if not account_existed:
1504 matched = False
1505 break
Nabin Haitb99c77b2020-12-25 18:12:35 +05301506 return matched
1507
Ankush Menat494bd9e2022-03-28 18:52:46 +05301508
Nabin Haitb99c77b2020-12-25 18:12:35 +05301509def get_stock_accounts(company, voucher_type=None, voucher_no=None):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301510 stock_accounts = [
1511 d.name
1512 for d in frappe.db.get_all(
1513 "Account", {"account_type": "Stock", "company": company, "is_group": 0}
1514 )
1515 ]
Nabin Haitb99c77b2020-12-25 18:12:35 +05301516 if voucher_type and voucher_no:
1517 if voucher_type == "Journal Entry":
Ankush Menat494bd9e2022-03-28 18:52:46 +05301518 stock_accounts = [
1519 d.account
1520 for d in frappe.db.get_all(
1521 "Journal Entry Account", {"parent": voucher_no, "account": ["in", stock_accounts]}, "account"
1522 )
1523 ]
Nabin Haitb99c77b2020-12-25 18:12:35 +05301524
1525 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +05301526 stock_accounts = [
1527 d.account
1528 for d in frappe.db.get_all(
1529 "GL Entry",
1530 {"voucher_type": voucher_type, "voucher_no": voucher_no, "account": ["in", stock_accounts]},
1531 "account",
1532 )
1533 ]
Nabin Haitb99c77b2020-12-25 18:12:35 +05301534
1535 return stock_accounts
1536
Ankush Menat494bd9e2022-03-28 18:52:46 +05301537
Nabin Haitb99c77b2020-12-25 18:12:35 +05301538def get_stock_and_account_balance(account=None, posting_date=None, company=None):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301539 if not posting_date:
1540 posting_date = nowdate()
Nabin Haitb99c77b2020-12-25 18:12:35 +05301541
1542 warehouse_account = get_warehouse_account_map(company)
1543
Ankush Menat494bd9e2022-03-28 18:52:46 +05301544 account_balance = get_balance_on(
1545 account, posting_date, in_account_currency=False, ignore_account_permission=True
1546 )
Nabin Haitb99c77b2020-12-25 18:12:35 +05301547
Ankush Menat494bd9e2022-03-28 18:52:46 +05301548 related_warehouses = [
1549 wh
1550 for wh, wh_details in warehouse_account.items()
1551 if wh_details.account == account and not wh_details.is_group
1552 ]
Nabin Haitb99c77b2020-12-25 18:12:35 +05301553
s-aga-re782a052023-04-25 13:54:36 +05301554 total_stock_value = get_stock_value_on(related_warehouses, posting_date)
Nabin Haitb99c77b2020-12-25 18:12:35 +05301555
1556 precision = frappe.get_precision("Journal Entry Account", "debit_in_account_currency")
1557 return flt(account_balance, precision), flt(total_stock_value, precision), related_warehouses
1558
Ankush Menat494bd9e2022-03-28 18:52:46 +05301559
Nabin Haitb99c77b2020-12-25 18:12:35 +05301560def get_journal_entry(account, stock_adjustment_account, amount):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301561 db_or_cr_warehouse_account = (
1562 "credit_in_account_currency" if amount < 0 else "debit_in_account_currency"
1563 )
1564 db_or_cr_stock_adjustment_account = (
1565 "debit_in_account_currency" if amount < 0 else "credit_in_account_currency"
1566 )
Nabin Haitb99c77b2020-12-25 18:12:35 +05301567
1568 return {
Ankush Menat494bd9e2022-03-28 18:52:46 +05301569 "accounts": [
1570 {"account": account, db_or_cr_warehouse_account: abs(amount)},
1571 {"account": stock_adjustment_account, db_or_cr_stock_adjustment_account: abs(amount)},
1572 ]
Nabin Haitb99c77b2020-12-25 18:12:35 +05301573 }
Shadrak Gurupnor74337572021-08-27 18:00:16 +05301574
Ankush Menat494bd9e2022-03-28 18:52:46 +05301575
Shadrak Gurupnor74337572021-08-27 18:00:16 +05301576def check_and_delete_linked_reports(report):
Ankush Menat494bd9e2022-03-28 18:52:46 +05301577 """Check if reports are referenced in Desktop Icon"""
1578 icons = frappe.get_all("Desktop Icon", fields=["name"], filters={"_report": report})
Shadrak Gurupnor74337572021-08-27 18:00:16 +05301579 if icons:
1580 for icon in icons:
1581 frappe.delete_doc("Desktop Icon", icon)
ruthra kumar451cf3a2022-05-16 14:29:58 +05301582
1583
ruthra kumar4f51c5a2023-07-03 14:35:33 +05301584def create_err_and_its_journals(companies: list = None) -> None:
1585 if companies:
1586 for company in companies:
1587 err = frappe.new_doc("Exchange Rate Revaluation")
1588 err.company = company.name
1589 err.posting_date = nowdate()
1590 err.rounding_loss_allowance = 0.0
1591
1592 err.fetch_and_calculate_accounts_data()
1593 if err.accounts:
1594 err.save().submit()
1595 response = err.make_jv_entries()
1596
1597 if company.submit_err_jv:
1598 jv = response.get("revaluation_jv", None)
1599 jv and frappe.get_doc("Journal Entry", jv).submit()
1600 jv = response.get("zero_balance_jv", None)
1601 jv and frappe.get_doc("Journal Entry", jv).submit()
1602
1603
1604def auto_create_exchange_rate_revaluation_daily() -> None:
1605 """
1606 Executed by background job
1607 """
1608 companies = frappe.db.get_all(
1609 "Company",
1610 filters={"auto_exchange_rate_revaluation": 1, "auto_err_frequency": "Daily"},
1611 fields=["name", "submit_err_jv"],
1612 )
1613 create_err_and_its_journals(companies)
1614
1615
1616def auto_create_exchange_rate_revaluation_weekly() -> None:
1617 """
1618 Executed by background job
1619 """
1620 companies = frappe.db.get_all(
1621 "Company",
1622 filters={"auto_exchange_rate_revaluation": 1, "auto_err_frequency": "Weekly"},
1623 fields=["name", "submit_err_jv"],
1624 )
1625 create_err_and_its_journals(companies)
1626
1627
ruthra kumar9b502212022-10-13 14:13:48 +05301628def get_payment_ledger_entries(gl_entries, cancel=0):
1629 ple_map = []
ruthra kumar451cf3a2022-05-16 14:29:58 +05301630 if gl_entries:
1631 ple = None
1632
1633 # companies
1634 account = qb.DocType("Account")
1635 companies = list(set([x.company for x in gl_entries]))
1636
1637 # receivable/payable account
1638 accounts_with_types = (
1639 qb.from_(account)
1640 .select(account.name, account.account_type)
1641 .where(
1642 (account.account_type.isin(["Receivable", "Payable"]) & (account.company.isin(companies)))
1643 )
1644 .run(as_dict=True)
1645 )
1646 receivable_or_payable_accounts = [y.name for y in accounts_with_types]
1647
1648 def get_account_type(account):
1649 for entry in accounts_with_types:
1650 if entry.name == account:
1651 return entry.account_type
1652
1653 dr_or_cr = 0
1654 account_type = None
1655 for gle in gl_entries:
1656 if gle.account in receivable_or_payable_accounts:
1657 account_type = get_account_type(gle.account)
1658 if account_type == "Receivable":
1659 dr_or_cr = gle.debit - gle.credit
1660 dr_or_cr_account_currency = gle.debit_in_account_currency - gle.credit_in_account_currency
1661 elif account_type == "Payable":
1662 dr_or_cr = gle.credit - gle.debit
1663 dr_or_cr_account_currency = gle.credit_in_account_currency - gle.debit_in_account_currency
1664
1665 if cancel:
1666 dr_or_cr *= -1
1667 dr_or_cr_account_currency *= -1
1668
ruthra kumar9b502212022-10-13 14:13:48 +05301669 ple = frappe._dict(
1670 doctype="Payment Ledger Entry",
1671 posting_date=gle.posting_date,
1672 company=gle.company,
1673 account_type=account_type,
1674 account=gle.account,
1675 party_type=gle.party_type,
1676 party=gle.party,
1677 cost_center=gle.cost_center,
1678 finance_book=gle.finance_book,
1679 due_date=gle.due_date,
1680 voucher_type=gle.voucher_type,
1681 voucher_no=gle.voucher_no,
Deepesh Garg1e078d02023-06-29 12:18:25 +05301682 voucher_detail_no=gle.voucher_detail_no,
ruthra kumar9b502212022-10-13 14:13:48 +05301683 against_voucher_type=gle.against_voucher_type
1684 if gle.against_voucher_type
1685 else gle.voucher_type,
1686 against_voucher_no=gle.against_voucher if gle.against_voucher else gle.voucher_no,
1687 account_currency=gle.account_currency,
1688 amount=dr_or_cr,
1689 amount_in_account_currency=dr_or_cr_account_currency,
1690 delinked=True if cancel else False,
1691 remarks=gle.remarks,
ruthra kumar451cf3a2022-05-16 14:29:58 +05301692 )
1693
1694 dimensions_and_defaults = get_dimensions()
1695 if dimensions_and_defaults:
1696 for dimension in dimensions_and_defaults[0]:
ruthra kumar9b502212022-10-13 14:13:48 +05301697 ple[dimension.fieldname] = gle.get(dimension.fieldname)
ruthra kumar451cf3a2022-05-16 14:29:58 +05301698
ruthra kumar9b502212022-10-13 14:13:48 +05301699 ple_map.append(ple)
1700 return ple_map
1701
1702
1703def create_payment_ledger_entry(
Deepesh Garg1e078d02023-06-29 12:18:25 +05301704 gl_entries, cancel=0, adv_adj=0, update_outstanding="Yes", from_repost=0, partial_cancel=False
ruthra kumar9b502212022-10-13 14:13:48 +05301705):
1706 if gl_entries:
1707 ple_map = get_payment_ledger_entries(gl_entries, cancel=cancel)
1708
1709 for entry in ple_map:
1710
1711 ple = frappe.get_doc(entry)
1712
1713 if cancel:
Deepesh Garg1e078d02023-06-29 12:18:25 +05301714 delink_original_entry(ple, partial_cancel=partial_cancel)
ruthra kumar9b502212022-10-13 14:13:48 +05301715
1716 ple.flags.ignore_permissions = 1
1717 ple.flags.adv_adj = adv_adj
1718 ple.flags.from_repost = from_repost
1719 ple.flags.update_outstanding = update_outstanding
1720 ple.submit()
ruthra kumar451cf3a2022-05-16 14:29:58 +05301721
1722
ruthra kumar7312f222022-05-29 21:33:08 +05301723def update_voucher_outstanding(voucher_type, voucher_no, account, party_type, party):
1724 ple = frappe.qb.DocType("Payment Ledger Entry")
1725 vouchers = [frappe._dict({"voucher_type": voucher_type, "voucher_no": voucher_no})]
1726 common_filter = []
1727 if account:
1728 common_filter.append(ple.account == account)
1729
1730 if party_type:
1731 common_filter.append(ple.party_type == party_type)
1732
1733 if party:
1734 common_filter.append(ple.party == party)
1735
1736 ple_query = QueryPaymentLedger()
1737
1738 # on cancellation outstanding can be an empty list
1739 voucher_outstanding = ple_query.get_voucher_outstandings(vouchers, common_filter=common_filter)
ruthra kumar43b80682022-10-18 09:33:37 +05301740 if (
1741 voucher_type in ["Sales Invoice", "Purchase Invoice", "Fees"]
1742 and party_type
1743 and party
1744 and voucher_outstanding
1745 ):
ruthra kumar7312f222022-05-29 21:33:08 +05301746 outstanding = voucher_outstanding[0]
1747 ref_doc = frappe.get_doc(voucher_type, voucher_no)
1748
1749 # Didn't use db_set for optimisation purpose
ruthra kumarb9a7ff72023-02-12 14:06:40 +05301750 ref_doc.outstanding_amount = outstanding["outstanding_in_account_currency"] or 0.0
ruthra kumar7312f222022-05-29 21:33:08 +05301751 frappe.db.set_value(
ruthra kumarb9a7ff72023-02-12 14:06:40 +05301752 voucher_type,
1753 voucher_no,
1754 "outstanding_amount",
1755 outstanding["outstanding_in_account_currency"] or 0.0,
ruthra kumar7312f222022-05-29 21:33:08 +05301756 )
1757
1758 ref_doc.set_status(update=True)
1759
1760
Deepesh Garg1e078d02023-06-29 12:18:25 +05301761def delink_original_entry(pl_entry, partial_cancel=False):
ruthra kumar451cf3a2022-05-16 14:29:58 +05301762 if pl_entry:
1763 ple = qb.DocType("Payment Ledger Entry")
1764 query = (
1765 qb.update(ple)
1766 .set(ple.delinked, True)
1767 .set(ple.modified, now())
1768 .set(ple.modified_by, frappe.session.user)
1769 .where(
1770 (ple.company == pl_entry.company)
1771 & (ple.account_type == pl_entry.account_type)
1772 & (ple.account == pl_entry.account)
1773 & (ple.party_type == pl_entry.party_type)
1774 & (ple.party == pl_entry.party)
1775 & (ple.voucher_type == pl_entry.voucher_type)
1776 & (ple.voucher_no == pl_entry.voucher_no)
1777 & (ple.against_voucher_type == pl_entry.against_voucher_type)
1778 & (ple.against_voucher_no == pl_entry.against_voucher_no)
1779 )
1780 )
Deepesh Garg1e078d02023-06-29 12:18:25 +05301781
1782 if partial_cancel:
1783 query = query.where(ple.voucher_detail_no == pl_entry.voucher_detail_no)
1784
ruthra kumar451cf3a2022-05-16 14:29:58 +05301785 query.run()
ruthra kumar7b383882022-05-25 15:51:16 +05301786
1787
1788class QueryPaymentLedger(object):
1789 """
1790 Helper Class for Querying Payment Ledger Entry
1791 """
1792
1793 def __init__(self):
1794 self.ple = qb.DocType("Payment Ledger Entry")
1795
1796 # query result
1797 self.voucher_outstandings = []
1798
1799 # query filters
1800 self.vouchers = []
1801 self.common_filter = []
ruthra kumar5f1562c2022-07-28 11:57:27 +05301802 self.voucher_posting_date = []
ruthra kumar7b383882022-05-25 15:51:16 +05301803 self.min_outstanding = None
1804 self.max_outstanding = None
ruthra kumar7a381af2023-05-03 20:45:12 +05301805 self.limit = self.voucher_no = None
ruthra kumar7b383882022-05-25 15:51:16 +05301806
1807 def reset(self):
1808 # clear filters
1809 self.vouchers.clear()
1810 self.common_filter.clear()
ruthra kumar7a381af2023-05-03 20:45:12 +05301811 self.min_outstanding = self.max_outstanding = self.limit = None
ruthra kumar7b383882022-05-25 15:51:16 +05301812
1813 # clear result
1814 self.voucher_outstandings.clear()
1815
1816 def query_for_outstanding(self):
1817 """
1818 Database query to fetch voucher amount and voucher outstanding using Common Table Expression
1819 """
1820
1821 ple = self.ple
1822
1823 filter_on_voucher_no = []
1824 filter_on_against_voucher_no = []
ruthra kumar7a381af2023-05-03 20:45:12 +05301825
ruthra kumar7b383882022-05-25 15:51:16 +05301826 if self.vouchers:
1827 voucher_types = set([x.voucher_type for x in self.vouchers])
1828 voucher_nos = set([x.voucher_no for x in self.vouchers])
1829
1830 filter_on_voucher_no.append(ple.voucher_type.isin(voucher_types))
1831 filter_on_voucher_no.append(ple.voucher_no.isin(voucher_nos))
1832
1833 filter_on_against_voucher_no.append(ple.against_voucher_type.isin(voucher_types))
1834 filter_on_against_voucher_no.append(ple.against_voucher_no.isin(voucher_nos))
1835
ruthra kumar7a381af2023-05-03 20:45:12 +05301836 if self.voucher_no:
1837 filter_on_voucher_no.append(ple.voucher_no.like(f"%{self.voucher_no}%"))
1838 filter_on_against_voucher_no.append(ple.against_voucher_no.like(f"%{self.voucher_no}%"))
1839
ruthra kumar7b383882022-05-25 15:51:16 +05301840 # build outstanding amount filter
1841 filter_on_outstanding_amount = []
1842 if self.min_outstanding:
1843 if self.min_outstanding > 0:
1844 filter_on_outstanding_amount.append(
1845 Table("outstanding").amount_in_account_currency >= self.min_outstanding
1846 )
1847 else:
1848 filter_on_outstanding_amount.append(
1849 Table("outstanding").amount_in_account_currency <= self.min_outstanding
1850 )
1851 if self.max_outstanding:
1852 if self.max_outstanding > 0:
1853 filter_on_outstanding_amount.append(
1854 Table("outstanding").amount_in_account_currency <= self.max_outstanding
1855 )
1856 else:
1857 filter_on_outstanding_amount.append(
1858 Table("outstanding").amount_in_account_currency >= self.max_outstanding
1859 )
1860
ruthra kumar8b04c1d2023-11-22 09:59:32 +05301861 if self.limit and self.get_invoices:
1862 outstanding_vouchers = (
1863 qb.from_(ple)
1864 .select(
1865 ple.against_voucher_no.as_("voucher_no"),
1866 Sum(ple.amount_in_account_currency).as_("amount_in_account_currency"),
1867 )
1868 .where(ple.delinked == 0)
1869 .where(Criterion.all(filter_on_against_voucher_no))
1870 .where(Criterion.all(self.common_filter))
ruthra kumarcfd32302023-11-30 12:22:55 +05301871 .where(Criterion.all(self.dimensions_filter))
1872 .where(Criterion.all(self.voucher_posting_date))
ruthra kumar8b04c1d2023-11-22 09:59:32 +05301873 .groupby(ple.against_voucher_type, ple.against_voucher_no, ple.party_type, ple.party)
1874 .orderby(ple.posting_date, ple.voucher_no)
1875 .having(qb.Field("amount_in_account_currency") > 0)
1876 .limit(self.limit)
1877 .run()
1878 )
1879 if outstanding_vouchers:
1880 filter_on_voucher_no.append(ple.voucher_no.isin([x[0] for x in outstanding_vouchers]))
1881 filter_on_against_voucher_no.append(
1882 ple.against_voucher_no.isin([x[0] for x in outstanding_vouchers])
1883 )
1884
ruthra kumar7b383882022-05-25 15:51:16 +05301885 # build query for voucher amount
1886 query_voucher_amount = (
1887 qb.from_(ple)
1888 .select(
1889 ple.account,
1890 ple.voucher_type,
1891 ple.voucher_no,
1892 ple.party_type,
1893 ple.party,
1894 ple.posting_date,
1895 ple.due_date,
1896 ple.account_currency.as_("currency"),
ruthra kumard6a3b9a2023-09-03 07:21:09 +05301897 ple.cost_center.as_("cost_center"),
ruthra kumar7b383882022-05-25 15:51:16 +05301898 Sum(ple.amount).as_("amount"),
1899 Sum(ple.amount_in_account_currency).as_("amount_in_account_currency"),
1900 )
1901 .where(ple.delinked == 0)
1902 .where(Criterion.all(filter_on_voucher_no))
1903 .where(Criterion.all(self.common_filter))
ruthra kumar6d9d7302022-12-14 16:05:15 +05301904 .where(Criterion.all(self.dimensions_filter))
ruthra kumar5f1562c2022-07-28 11:57:27 +05301905 .where(Criterion.all(self.voucher_posting_date))
ruthra kumar7b383882022-05-25 15:51:16 +05301906 .groupby(ple.voucher_type, ple.voucher_no, ple.party_type, ple.party)
1907 )
1908
1909 # build query for voucher outstanding
1910 query_voucher_outstanding = (
1911 qb.from_(ple)
1912 .select(
1913 ple.account,
1914 ple.against_voucher_type.as_("voucher_type"),
1915 ple.against_voucher_no.as_("voucher_no"),
1916 ple.party_type,
1917 ple.party,
1918 ple.posting_date,
1919 ple.due_date,
1920 ple.account_currency.as_("currency"),
1921 Sum(ple.amount).as_("amount"),
1922 Sum(ple.amount_in_account_currency).as_("amount_in_account_currency"),
1923 )
1924 .where(ple.delinked == 0)
1925 .where(Criterion.all(filter_on_against_voucher_no))
1926 .where(Criterion.all(self.common_filter))
1927 .groupby(ple.against_voucher_type, ple.against_voucher_no, ple.party_type, ple.party)
1928 )
1929
1930 # build CTE for combining voucher amount and outstanding
1931 self.cte_query_voucher_amount_and_outstanding = (
1932 qb.with_(query_voucher_amount, "vouchers")
1933 .with_(query_voucher_outstanding, "outstanding")
1934 .from_(AliasedQuery("vouchers"))
1935 .left_join(AliasedQuery("outstanding"))
1936 .on(
1937 (AliasedQuery("vouchers").account == AliasedQuery("outstanding").account)
1938 & (AliasedQuery("vouchers").voucher_type == AliasedQuery("outstanding").voucher_type)
1939 & (AliasedQuery("vouchers").voucher_no == AliasedQuery("outstanding").voucher_no)
1940 & (AliasedQuery("vouchers").party_type == AliasedQuery("outstanding").party_type)
1941 & (AliasedQuery("vouchers").party == AliasedQuery("outstanding").party)
1942 )
1943 .select(
1944 Table("vouchers").account,
1945 Table("vouchers").voucher_type,
1946 Table("vouchers").voucher_no,
1947 Table("vouchers").party_type,
1948 Table("vouchers").party,
1949 Table("vouchers").posting_date,
1950 Table("vouchers").amount.as_("invoice_amount"),
1951 Table("vouchers").amount_in_account_currency.as_("invoice_amount_in_account_currency"),
1952 Table("outstanding").amount.as_("outstanding"),
1953 Table("outstanding").amount_in_account_currency.as_("outstanding_in_account_currency"),
1954 (Table("vouchers").amount - Table("outstanding").amount).as_("paid_amount"),
1955 (
1956 Table("vouchers").amount_in_account_currency - Table("outstanding").amount_in_account_currency
1957 ).as_("paid_amount_in_account_currency"),
1958 Table("vouchers").due_date,
1959 Table("vouchers").currency,
ruthra kumard6a3b9a2023-09-03 07:21:09 +05301960 Table("vouchers").cost_center.as_("cost_center"),
ruthra kumar7b383882022-05-25 15:51:16 +05301961 )
1962 .where(Criterion.all(filter_on_outstanding_amount))
1963 )
1964
1965 # build CTE filter
1966 # only fetch invoices
1967 if self.get_invoices:
1968 self.cte_query_voucher_amount_and_outstanding = (
1969 self.cte_query_voucher_amount_and_outstanding.having(
1970 qb.Field("outstanding_in_account_currency") > 0
1971 )
1972 )
1973 # only fetch payments
1974 elif self.get_payments:
1975 self.cte_query_voucher_amount_and_outstanding = (
1976 self.cte_query_voucher_amount_and_outstanding.having(
1977 qb.Field("outstanding_in_account_currency") < 0
1978 )
1979 )
1980
ruthra kumar7a381af2023-05-03 20:45:12 +05301981 if self.limit:
1982 self.cte_query_voucher_amount_and_outstanding = (
1983 self.cte_query_voucher_amount_and_outstanding.limit(self.limit)
1984 )
1985
ruthra kumar7b383882022-05-25 15:51:16 +05301986 # execute SQL
1987 self.voucher_outstandings = self.cte_query_voucher_amount_and_outstanding.run(as_dict=True)
1988
1989 def get_voucher_outstandings(
1990 self,
1991 vouchers=None,
1992 common_filter=None,
ruthra kumar5f1562c2022-07-28 11:57:27 +05301993 posting_date=None,
ruthra kumar7b383882022-05-25 15:51:16 +05301994 min_outstanding=None,
1995 max_outstanding=None,
1996 get_payments=False,
1997 get_invoices=False,
ruthra kumar6d9d7302022-12-14 16:05:15 +05301998 accounting_dimensions=None,
ruthra kumar7a381af2023-05-03 20:45:12 +05301999 limit=None,
2000 voucher_no=None,
ruthra kumar7b383882022-05-25 15:51:16 +05302001 ):
2002 """
2003 Fetch voucher amount and outstanding amount from Payment Ledger using Database CTE
2004
2005 vouchers - dict of vouchers to get
2006 common_filter - array of criterions
2007 min_outstanding - filter on minimum total outstanding amount
2008 max_outstanding - filter on maximum total outstanding amount
2009 get_invoices - only fetch vouchers(ledger entries with +ve outstanding)
2010 get_payments - only fetch payments(ledger entries with -ve outstanding)
2011 """
2012
2013 self.reset()
2014 self.vouchers = vouchers
2015 self.common_filter = common_filter or []
ruthra kumar6d9d7302022-12-14 16:05:15 +05302016 self.dimensions_filter = accounting_dimensions or []
ruthra kumar5f1562c2022-07-28 11:57:27 +05302017 self.voucher_posting_date = posting_date or []
ruthra kumar7b383882022-05-25 15:51:16 +05302018 self.min_outstanding = min_outstanding
2019 self.max_outstanding = max_outstanding
2020 self.get_payments = get_payments
2021 self.get_invoices = get_invoices
ruthra kumar7a381af2023-05-03 20:45:12 +05302022 self.limit = limit
2023 self.voucher_no = voucher_no
ruthra kumar7b383882022-05-25 15:51:16 +05302024 self.query_for_outstanding()
2025
2026 return self.voucher_outstandings
ruthra kumar1ea1bfe2023-07-26 16:19:38 +05302027
2028
2029def create_gain_loss_journal(
2030 company,
ruthra kumarf7865da2023-09-04 20:38:10 +05302031 posting_date,
ruthra kumar1ea1bfe2023-07-26 16:19:38 +05302032 party_type,
2033 party,
2034 party_account,
2035 gain_loss_account,
2036 exc_gain_loss,
2037 dr_or_cr,
2038 reverse_dr_or_cr,
2039 ref1_dt,
2040 ref1_dn,
2041 ref1_detail_no,
2042 ref2_dt,
2043 ref2_dn,
2044 ref2_detail_no,
ruthra kumard6a3b9a2023-09-03 07:21:09 +05302045 cost_center,
ruthra kumar1ea1bfe2023-07-26 16:19:38 +05302046) -> str:
2047 journal_entry = frappe.new_doc("Journal Entry")
2048 journal_entry.voucher_type = "Exchange Gain Or Loss"
2049 journal_entry.company = company
ruthra kumarf7865da2023-09-04 20:38:10 +05302050 journal_entry.posting_date = posting_date or nowdate()
ruthra kumar1ea1bfe2023-07-26 16:19:38 +05302051 journal_entry.multi_currency = 1
ruthra kumar79c6f012023-09-01 14:57:12 +05302052 journal_entry.is_system_generated = True
ruthra kumar1ea1bfe2023-07-26 16:19:38 +05302053
2054 party_account_currency = frappe.get_cached_value("Account", party_account, "account_currency")
2055
2056 if not gain_loss_account:
2057 frappe.throw(_("Please set default Exchange Gain/Loss Account in Company {}").format(company))
2058 gain_loss_account_currency = get_account_currency(gain_loss_account)
2059 company_currency = frappe.get_cached_value("Company", company, "default_currency")
2060
2061 if gain_loss_account_currency != company_currency:
2062 frappe.throw(_("Currency for {0} must be {1}").format(gain_loss_account, company_currency))
2063
2064 journal_account = frappe._dict(
2065 {
2066 "account": party_account,
2067 "party_type": party_type,
2068 "party": party,
2069 "account_currency": party_account_currency,
2070 "exchange_rate": 0,
ruthra kumard6a3b9a2023-09-03 07:21:09 +05302071 "cost_center": cost_center or erpnext.get_default_cost_center(company),
ruthra kumar1ea1bfe2023-07-26 16:19:38 +05302072 "reference_type": ref1_dt,
2073 "reference_name": ref1_dn,
2074 "reference_detail_no": ref1_detail_no,
2075 dr_or_cr: abs(exc_gain_loss),
2076 dr_or_cr + "_in_account_currency": 0,
2077 }
2078 )
2079
2080 journal_entry.append("accounts", journal_account)
2081
2082 journal_account = frappe._dict(
2083 {
2084 "account": gain_loss_account,
2085 "account_currency": gain_loss_account_currency,
2086 "exchange_rate": 1,
ruthra kumard6a3b9a2023-09-03 07:21:09 +05302087 "cost_center": cost_center or erpnext.get_default_cost_center(company),
ruthra kumar1ea1bfe2023-07-26 16:19:38 +05302088 "reference_type": ref2_dt,
2089 "reference_name": ref2_dn,
2090 "reference_detail_no": ref2_detail_no,
2091 reverse_dr_or_cr + "_in_account_currency": 0,
2092 reverse_dr_or_cr: abs(exc_gain_loss),
2093 }
2094 )
2095
2096 journal_entry.append("accounts", journal_account)
2097
2098 journal_entry.save()
2099 journal_entry.submit()
2100 return journal_entry.name
Gursheen Anand40157232023-11-03 11:58:25 +05302101
2102
2103def get_party_types_from_account_type(account_type):
Gursheen Anand2984a862023-11-08 12:30:24 +05302104 return frappe.db.get_all("Party Type", {"account_type": account_type}, pluck="name")