blob: bcce6a161382491467161433a3930efe710c22b1 [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
4from __future__ import unicode_literals
5
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05306import frappe
Nabin Hait9b20e072017-04-25 12:10:24 +05307import frappe.defaults
Nabin Haitb9bc7d62016-05-16 14:38:47 +05308from frappe.utils import nowdate, cstr, flt, cint, now, getdate
Rushabh Mehta9f0d6252014-04-14 19:20:45 +05309from frappe import throw, _
Nabin Hait9b20e072017-04-25 12:10:24 +053010from frappe.utils import formatdate, get_number_format_info
Nabin Hait23941aa2013-01-29 11:32:38 +053011
Anand Doshicd0989e2015-09-28 13:31:17 +053012# imported to enable erpnext.accounts.utils.get_account_currency
Saurabh4d029492016-06-23 12:44:06 +053013from erpnext.accounts.doctype.account.account import get_account_currency
Anand Doshicd0989e2015-09-28 13:31:17 +053014
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053015class FiscalYearError(frappe.ValidationError): pass
Nabin Hait2b06aaa2013-08-22 18:25:43 +053016
Neil Trini Lasrado78fa6952014-10-03 17:43:02 +053017@frappe.whitelist()
Anand Doshic75c1d72016-03-11 14:56:19 +053018def get_fiscal_year(date=None, fiscal_year=None, label="Date", verbose=1, company=None, as_dict=False):
19 return get_fiscal_years(date, fiscal_year, label, verbose, company, as_dict=as_dict)[0]
Nabin Hait23941aa2013-01-29 11:32:38 +053020
Anand Doshic75c1d72016-03-11 14:56:19 +053021def get_fiscal_years(transaction_date=None, fiscal_year=None, label="Date", verbose=1, company=None, as_dict=False):
Nabin Hait9784d272016-12-30 16:21:35 +053022 fiscal_years = frappe.cache().hget("fiscal_years", company) or []
Rushabh Mehtad50da782017-07-28 11:39:01 +053023
24 if not fiscal_years:
Nabin Hait9784d272016-12-30 16:21:35 +053025 # if year start date is 2012-04-01, year end date should be 2013-03-31 (hence subdate)
26 cond = ""
27 if fiscal_year:
28 cond += " and fy.name = {0}".format(frappe.db.escape(fiscal_year))
29 if company:
30 cond += """
Rushabh Mehtad50da782017-07-28 11:39:01 +053031 and (not exists (select name
32 from `tabFiscal Year Company` fyc
33 where fyc.parent = fy.name)
34 or exists(select company
35 from `tabFiscal Year Company` fyc
36 where fyc.parent = fy.name
Nabin Hait9784d272016-12-30 16:21:35 +053037 and fyc.company=%(company)s)
38 )
39 """
Nabin Haitfff3ab72015-01-14 16:27:13 +053040
Nabin Hait9784d272016-12-30 16:21:35 +053041 fiscal_years = frappe.db.sql("""
Rushabh Mehtad50da782017-07-28 11:39:01 +053042 select
43 fy.name, fy.year_start_date, fy.year_end_date
44 from
Nabin Hait9784d272016-12-30 16:21:35 +053045 `tabFiscal Year` fy
Rushabh Mehtad50da782017-07-28 11:39:01 +053046 where
Nabin Hait9784d272016-12-30 16:21:35 +053047 disabled = 0 {0}
Rushabh Mehtad50da782017-07-28 11:39:01 +053048 order by
Nabin Hait9784d272016-12-30 16:21:35 +053049 fy.year_start_date desc""".format(cond), {
50 "company": company
51 }, as_dict=True)
Rushabh Mehtad50da782017-07-28 11:39:01 +053052
Nabin Hait9784d272016-12-30 16:21:35 +053053 frappe.cache().hset("fiscal_years", company, fiscal_years)
Nabin Haitfff3ab72015-01-14 16:27:13 +053054
Nabin Hait9784d272016-12-30 16:21:35 +053055 if transaction_date:
56 transaction_date = getdate(transaction_date)
Anand Doshicd71e1d2014-04-08 13:53:35 +053057
Nabin Hait9784d272016-12-30 16:21:35 +053058 for fy in fiscal_years:
59 matched = False
60 if fiscal_year and fy.name == fiscal_year:
61 matched = True
Anand Doshicd71e1d2014-04-08 13:53:35 +053062
Rushabh Mehtad50da782017-07-28 11:39:01 +053063 if (transaction_date and getdate(fy.year_start_date) <= transaction_date
Nabin Hait9784d272016-12-30 16:21:35 +053064 and getdate(fy.year_end_date) >= transaction_date):
65 matched = True
Rushabh Mehtad50da782017-07-28 11:39:01 +053066
Nabin Hait9784d272016-12-30 16:21:35 +053067 if matched:
68 if as_dict:
69 return (fy,)
70 else:
71 return ((fy.name, fy.year_start_date, fy.year_end_date),)
72
73 error_msg = _("""{0} {1} not in any active Fiscal Year.""").format(label, formatdate(transaction_date))
74 if verbose==1: frappe.msgprint(error_msg)
cclauss68487082017-07-27 07:08:35 +020075 raise FiscalYearError(error_msg)
Nabin Hait9784d272016-12-30 16:21:35 +053076
Nabin Hait8bf58362017-03-27 12:30:01 +053077def validate_fiscal_year(date, fiscal_year, company, label="Date", doc=None):
78 years = [f[0] for f in get_fiscal_years(date, label=_(label), company=company)]
Rushabh Mehtac2563ef2013-02-05 23:25:37 +053079 if fiscal_year not in years:
Rushabh Mehtad60acb92015-02-19 14:51:58 +053080 if doc:
81 doc.fiscal_year = years[0]
82 else:
83 throw(_("{0} '{1}' not in Fiscal Year {2}").format(label, formatdate(date), fiscal_year))
Nabin Hait23941aa2013-01-29 11:32:38 +053084
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053085@frappe.whitelist()
Nabin Hait85648d92016-07-20 11:26:45 +053086def get_balance_on(account=None, date=None, party_type=None, party=None, company=None, in_account_currency=True):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053087 if not account and frappe.form_dict.get("account"):
88 account = frappe.form_dict.get("account")
Nabin Hait6f17cf92014-09-17 14:11:22 +053089 if not date and frappe.form_dict.get("date"):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +053090 date = frappe.form_dict.get("date")
Nabin Hait6f17cf92014-09-17 14:11:22 +053091 if not party_type and frappe.form_dict.get("party_type"):
92 party_type = frappe.form_dict.get("party_type")
93 if not party and frappe.form_dict.get("party"):
94 party = frappe.form_dict.get("party")
Anand Doshi9365b612014-04-21 12:42:21 +053095
Nabin Hait23941aa2013-01-29 11:32:38 +053096 cond = []
97 if date:
Anand Doshi120ea622015-11-19 14:24:39 +053098 cond.append("posting_date <= '%s'" % frappe.db.escape(cstr(date)))
Nabin Hait23941aa2013-01-29 11:32:38 +053099 else:
100 # get balance of all entries that exist
101 date = nowdate()
Anand Doshicd71e1d2014-04-08 13:53:35 +0530102
Nabin Hait23941aa2013-01-29 11:32:38 +0530103 try:
104 year_start_date = get_fiscal_year(date, verbose=0)[1]
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530105 except FiscalYearError:
Nabin Hait23941aa2013-01-29 11:32:38 +0530106 if getdate(date) > getdate(nowdate()):
107 # if fiscal year not found and the date is greater than today
108 # get fiscal year for today's date and its corresponding year start date
109 year_start_date = get_fiscal_year(nowdate(), verbose=1)[1]
110 else:
111 # this indicates that it is a date older than any existing fiscal year.
112 # hence, assuming balance as 0.0
113 return 0.0
Anand Doshicd71e1d2014-04-08 13:53:35 +0530114
Nabin Hait6f17cf92014-09-17 14:11:22 +0530115 if account:
116 acc = frappe.get_doc("Account", account)
Rushabh Mehta2e7f9d22015-10-15 16:31:16 +0530117
118 if not frappe.flags.ignore_account_permission:
119 acc.check_permission("read")
Anand Doshicd71e1d2014-04-08 13:53:35 +0530120
Nabin Hait6f17cf92014-09-17 14:11:22 +0530121 # for pl accounts, get balance within a fiscal year
122 if acc.report_type == 'Profit and Loss':
123 cond.append("posting_date >= '%s' and voucher_type != 'Period Closing Voucher'" \
124 % year_start_date)
125
126 # different filter for group and ledger - improved performance
Rushabh Mehta38c6b522015-04-23 13:14:17 +0530127 if acc.is_group:
Nabin Hait6f17cf92014-09-17 14:11:22 +0530128 cond.append("""exists (
Nabin Hait6b01abe2015-06-14 17:49:29 +0530129 select name from `tabAccount` ac where ac.name = gle.account
Nabin Hait6f17cf92014-09-17 14:11:22 +0530130 and ac.lft >= %s and ac.rgt <= %s
131 )""" % (acc.lft, acc.rgt))
Anand Doshicd0989e2015-09-28 13:31:17 +0530132
133 # If group and currency same as company,
Nabin Hait59f4fa92015-09-17 13:57:42 +0530134 # always return balance based on debit and credit in company currency
135 if acc.account_currency == frappe.db.get_value("Company", acc.company, "default_currency"):
136 in_account_currency = False
Nabin Hait6f17cf92014-09-17 14:11:22 +0530137 else:
Nabin Hait1a99cb82016-02-19 12:45:57 +0530138 cond.append("""gle.account = "%s" """ % (frappe.db.escape(account, percent=False), ))
Anand Doshic75c1d72016-03-11 14:56:19 +0530139
Nabin Hait6f17cf92014-09-17 14:11:22 +0530140 if party_type and party:
141 cond.append("""gle.party_type = "%s" and gle.party = "%s" """ %
Nabin Hait1a99cb82016-02-19 12:45:57 +0530142 (frappe.db.escape(party_type), frappe.db.escape(party, percent=False)))
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530143
Nabin Hait85648d92016-07-20 11:26:45 +0530144 if company:
145 cond.append("""gle.company = "%s" """ % (frappe.db.escape(company, percent=False)))
Anand Doshi0b031cd2015-09-16 12:46:54 +0530146
Nabin Haitdc768232015-08-17 11:27:00 +0530147 if account or (party_type and party):
Nabin Haitc0e3b1a2015-09-04 13:26:23 +0530148 if in_account_currency:
Anand Doshi602e8252015-11-16 19:05:46 +0530149 select_field = "sum(debit_in_account_currency) - sum(credit_in_account_currency)"
Nabin Haitc0e3b1a2015-09-04 13:26:23 +0530150 else:
Anand Doshi602e8252015-11-16 19:05:46 +0530151 select_field = "sum(debit) - sum(credit)"
Nabin Haitdc768232015-08-17 11:27:00 +0530152 bal = frappe.db.sql("""
Nabin Haitc0e3b1a2015-09-04 13:26:23 +0530153 SELECT {0}
Nabin Haitdc768232015-08-17 11:27:00 +0530154 FROM `tabGL Entry` gle
Nabin Haitc0e3b1a2015-09-04 13:26:23 +0530155 WHERE {1}""".format(select_field, " and ".join(cond)))[0][0]
Anand Doshicd71e1d2014-04-08 13:53:35 +0530156
Nabin Haitdc768232015-08-17 11:27:00 +0530157 # if bal is None, return 0
158 return flt(bal)
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530159
RobertSchouten8d43b322016-09-20 13:41:39 +0800160def get_count_on(account, fieldname, date):
RobertSchouten8d43b322016-09-20 13:41:39 +0800161 cond = []
162 if date:
163 cond.append("posting_date <= '%s'" % frappe.db.escape(cstr(date)))
164 else:
165 # get balance of all entries that exist
166 date = nowdate()
167
168 try:
169 year_start_date = get_fiscal_year(date, verbose=0)[1]
170 except FiscalYearError:
171 if getdate(date) > getdate(nowdate()):
172 # if fiscal year not found and the date is greater than today
173 # get fiscal year for today's date and its corresponding year start date
174 year_start_date = get_fiscal_year(nowdate(), verbose=1)[1]
175 else:
176 # this indicates that it is a date older than any existing fiscal year.
177 # hence, assuming balance as 0.0
178 return 0.0
179
180 if account:
181 acc = frappe.get_doc("Account", account)
182
183 if not frappe.flags.ignore_account_permission:
184 acc.check_permission("read")
185
186 # for pl accounts, get balance within a fiscal year
187 if acc.report_type == 'Profit and Loss':
188 cond.append("posting_date >= '%s' and voucher_type != 'Period Closing Voucher'" \
189 % year_start_date)
190
191 # different filter for group and ledger - improved performance
192 if acc.is_group:
193 cond.append("""exists (
194 select name from `tabAccount` ac where ac.name = gle.account
195 and ac.lft >= %s and ac.rgt <= %s
196 )""" % (acc.lft, acc.rgt))
RobertSchouten8d43b322016-09-20 13:41:39 +0800197 else:
198 cond.append("""gle.account = "%s" """ % (frappe.db.escape(account, percent=False), ))
199
200 entries = frappe.db.sql("""
201 SELECT name, posting_date, account, party_type, party,debit,credit,
202 voucher_type, voucher_no, against_voucher_type, against_voucher
203 FROM `tabGL Entry` gle
204 WHERE {0}""".format(" and ".join(cond)), as_dict=True)
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530205
RobertSchouten8d43b322016-09-20 13:41:39 +0800206 count = 0
207 for gle in entries:
208 if fieldname not in ('invoiced_amount','payables'):
209 count += 1
210 else:
211 dr_or_cr = "debit" if fieldname == "invoiced_amount" else "credit"
212 cr_or_dr = "credit" if fieldname == "invoiced_amount" else "debit"
Nabin Hait6d7b0ce2017-06-15 11:09:27 +0530213 select_fields = "ifnull(sum(credit-debit),0)" \
214 if fieldname == "invoiced_amount" else "ifnull(sum(debit-credit),0)"
RobertSchouten8d43b322016-09-20 13:41:39 +0800215
216 if ((not gle.against_voucher) or (gle.against_voucher_type in ["Sales Order", "Purchase Order"]) or
217 (gle.against_voucher==gle.voucher_no and gle.get(dr_or_cr) > 0)):
218 payment_amount = frappe.db.sql("""
219 SELECT {0}
220 FROM `tabGL Entry` gle
221 WHERE docstatus < 2 and posting_date <= %(date)s and against_voucher = %(voucher_no)s
Nabin Hait6d7b0ce2017-06-15 11:09:27 +0530222 and party = %(party)s and name != %(name)s"""
223 .format(select_fields),
Rushabh Mehtad50da782017-07-28 11:39:01 +0530224 {"date": date, "voucher_no": gle.voucher_no,
Nabin Hait6d7b0ce2017-06-15 11:09:27 +0530225 "party": gle.party, "name": gle.name})[0][0]
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530226
RobertSchouten8d43b322016-09-20 13:41:39 +0800227 outstanding_amount = flt(gle.get(dr_or_cr)) - flt(gle.get(cr_or_dr)) - payment_amount
228 currency_precision = get_currency_precision() or 2
229 if abs(flt(outstanding_amount)) > 0.1/10**currency_precision:
230 count += 1
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530231
RobertSchouten8d43b322016-09-20 13:41:39 +0800232 return count
233
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530234@frappe.whitelist()
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530235def add_ac(args=None):
Saurabh2f021012017-01-11 12:41:01 +0530236 from frappe.desk.treeview import make_tree_args
237
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530238 if not args:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530239 args = frappe.local.form_dict
Saurabh2f021012017-01-11 12:41:01 +0530240
Nabin Hait02d987e2017-02-17 15:50:26 +0530241 args.doctype = "Account"
Saurabh2f021012017-01-11 12:41:01 +0530242 args = make_tree_args(**args)
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530243
Anand Doshi3e41fd12014-04-22 18:54:54 +0530244 ac = frappe.new_doc("Account")
Rushabh Mehta0dcb8612016-05-31 07:22:37 +0530245
Nabin Hait665568d2016-05-13 15:56:00 +0530246 if args.get("ignore_permissions"):
247 ac.flags.ignore_permissions = True
248 args.pop("ignore_permissions")
Rushabh Mehta0dcb8612016-05-31 07:22:37 +0530249
Anand Doshi3e41fd12014-04-22 18:54:54 +0530250 ac.update(args)
Saurabh0e47bfe2016-05-30 17:54:16 +0530251
252 if not ac.parent_account:
253 ac.parent_account = args.get("parent")
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530254
Anand Doshif78d1ae2014-03-28 13:55:00 +0530255 ac.old_parent = ""
256 ac.freeze_account = "No"
Nabin Haita1ec7f12016-05-11 12:37:22 +0530257 if cint(ac.get("is_root")):
258 ac.parent_account = None
Rushabh Mehta0dcb8612016-05-31 07:22:37 +0530259 ac.flags.ignore_mandatory = True
260
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530261 ac.insert()
Anand Doshi3e41fd12014-04-22 18:54:54 +0530262
Anand Doshif78d1ae2014-03-28 13:55:00 +0530263 return ac.name
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530264
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530265@frappe.whitelist()
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530266def add_cc(args=None):
Saurabh2f021012017-01-11 12:41:01 +0530267 from frappe.desk.treeview import make_tree_args
268
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530269 if not args:
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530270 args = frappe.local.form_dict
Rushabh Mehtad50da782017-07-28 11:39:01 +0530271
Nabin Hait02d987e2017-02-17 15:50:26 +0530272 args.doctype = "Cost Center"
Saurabh2f021012017-01-11 12:41:01 +0530273 args = make_tree_args(**args)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530274
Anand Doshi3e41fd12014-04-22 18:54:54 +0530275 cc = frappe.new_doc("Cost Center")
276 cc.update(args)
Saurabh0e47bfe2016-05-30 17:54:16 +0530277
278 if not cc.parent_cost_center:
279 cc.parent_cost_center = args.get("parent")
280
Anand Doshif78d1ae2014-03-28 13:55:00 +0530281 cc.old_parent = ""
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530282 cc.insert()
Anand Doshif78d1ae2014-03-28 13:55:00 +0530283 return cc.name
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530284
285def reconcile_against_document(args):
286 """
287 Cancel JV, Update aginst document, split if required and resubmit jv
288 """
289 for d in args:
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530290
291 check_if_advance_entry_modified(d)
Nabin Hait576f0252014-04-30 19:30:50 +0530292 validate_allocated_amount(d)
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530293
Nabin Hait28a05282016-06-27 17:41:39 +0530294 # cancel advance entry
295 doc = frappe.get_doc(d.voucher_type, d.voucher_no)
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530296
Nabin Hait28a05282016-06-27 17:41:39 +0530297 doc.make_gl_entries(cancel=1, adv_adj=1)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530298
Nabin Hait28a05282016-06-27 17:41:39 +0530299 # update ref in advance entry
300 if d.voucher_type == "Journal Entry":
301 update_reference_in_journal_entry(d, doc)
302 else:
303 update_reference_in_payment_entry(d, doc)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530304
Nabin Hait28a05282016-06-27 17:41:39 +0530305 # re-submit advance entry
306 doc = frappe.get_doc(d.voucher_type, d.voucher_no)
307 doc.make_gl_entries(cancel = 0, adv_adj =1)
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530308
Nabin Hait28a05282016-06-27 17:41:39 +0530309def check_if_advance_entry_modified(args):
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530310 """
311 check if there is already a voucher reference
312 check if amount is same
313 check if jv is submitted
314 """
Nabin Hait28a05282016-06-27 17:41:39 +0530315 ret = None
316 if args.voucher_type == "Journal Entry":
317 ret = frappe.db.sql("""
318 select t2.{dr_or_cr} from `tabJournal Entry` t1, `tabJournal Entry Account` t2
319 where t1.name = t2.parent and t2.account = %(account)s
320 and t2.party_type = %(party_type)s and t2.party = %(party)s
321 and (t2.reference_type is null or t2.reference_type in ("", "Sales Order", "Purchase Order"))
322 and t1.name = %(voucher_no)s and t2.name = %(voucher_detail_no)s
323 and t1.docstatus=1 """.format(dr_or_cr = args.get("dr_or_cr")), args)
324 else:
325 party_account_field = "paid_from" if args.party_type == "Customer" else "paid_to"
326 if args.voucher_detail_no:
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530327 ret = frappe.db.sql("""select t1.name
328 from `tabPayment Entry` t1, `tabPayment Entry Reference` t2
Nabin Hait28a05282016-06-27 17:41:39 +0530329 where
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530330 t1.name = t2.parent and t1.docstatus = 1
Nabin Hait28a05282016-06-27 17:41:39 +0530331 and t1.name = %(voucher_no)s and t2.name = %(voucher_detail_no)s
332 and t1.party_type = %(party_type)s and t1.party = %(party)s and t1.{0} = %(account)s
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530333 and t2.reference_doctype in ("", "Sales Order", "Purchase Order")
Nabin Hait28a05282016-06-27 17:41:39 +0530334 and t2.allocated_amount = %(unadjusted_amount)s
335 """.format(party_account_field), args)
336 else:
337 ret = frappe.db.sql("""select name from `tabPayment Entry`
338 where
339 name = %(voucher_no)s and docstatus = 1
340 and party_type = %(party_type)s and party = %(party)s and {0} = %(account)s
341 and unallocated_amount = %(unadjusted_amount)s
342 """.format(party_account_field), args)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530343
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530344 if not ret:
Akhilesh Darjee4f721562014-01-29 16:31:38 +0530345 throw(_("""Payment Entry has been modified after you pulled it. Please pull it again."""))
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530346
Nabin Hait576f0252014-04-30 19:30:50 +0530347def validate_allocated_amount(args):
Nabin Hait28a05282016-06-27 17:41:39 +0530348 if args.get("allocated_amount") < 0:
Nabin Hait576f0252014-04-30 19:30:50 +0530349 throw(_("Allocated amount can not be negative"))
Nabin Hait28a05282016-06-27 17:41:39 +0530350 elif args.get("allocated_amount") > args.get("unadjusted_amount"):
351 throw(_("Allocated amount can not greater than unadjusted amount"))
Nabin Hait576f0252014-04-30 19:30:50 +0530352
Nabin Hait28a05282016-06-27 17:41:39 +0530353def update_reference_in_journal_entry(d, jv_obj):
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530354 """
355 Updates against document, if partial amount splits into rows
356 """
Nabin Hait4b8185d2014-12-25 18:19:39 +0530357 jv_detail = jv_obj.get("accounts", {"name": d["voucher_detail_no"]})[0]
Nabin Hait28a05282016-06-27 17:41:39 +0530358 jv_detail.set(d["dr_or_cr"], d["allocated_amount"])
Rushabh Mehta2e7f9d22015-10-15 16:31:16 +0530359 jv_detail.set('debit' if d['dr_or_cr']=='debit_in_account_currency' else 'credit',
Nabin Hait28a05282016-06-27 17:41:39 +0530360 d["allocated_amount"]*flt(jv_detail.exchange_rate))
Rushabh Mehta1828c122015-08-10 17:04:07 +0530361
362 original_reference_type = jv_detail.reference_type
363 original_reference_name = jv_detail.reference_name
364
365 jv_detail.set("reference_type", d["against_voucher_type"])
366 jv_detail.set("reference_name", d["against_voucher"])
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530367
Nabin Hait28a05282016-06-27 17:41:39 +0530368 if d['allocated_amount'] < d['unadjusted_amount']:
Nabin Haite3ae05a2015-09-09 18:43:12 +0530369 jvd = frappe.db.sql("""
Anand Doshid40d1e92015-11-12 17:05:29 +0530370 select cost_center, balance, against_account, is_advance,
Nabin Haitaa015902015-10-16 13:08:33 +0530371 account_type, exchange_rate, account_currency
Nabin Haite3ae05a2015-09-09 18:43:12 +0530372 from `tabJournal Entry Account` where name = %s
373 """, d['voucher_detail_no'], as_dict=True)
Rushabh Mehta2e7f9d22015-10-15 16:31:16 +0530374
Nabin Hait28a05282016-06-27 17:41:39 +0530375 amount_in_account_currency = flt(d['unadjusted_amount']) - flt(d['allocated_amount'])
Nabin Haitdb48b7d2015-10-02 12:05:55 +0530376 amount_in_company_currency = amount_in_account_currency * flt(jvd[0]['exchange_rate'])
Anand Doshi0b031cd2015-09-16 12:46:54 +0530377
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530378 # new entry with balance amount
Nabin Hait4b8185d2014-12-25 18:19:39 +0530379 ch = jv_obj.append("accounts")
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530380 ch.account = d['account']
Nabin Haite3ae05a2015-09-09 18:43:12 +0530381 ch.account_type = jvd[0]['account_type']
Nabin Haitaa015902015-10-16 13:08:33 +0530382 ch.account_currency = jvd[0]['account_currency']
Nabin Haite3ae05a2015-09-09 18:43:12 +0530383 ch.exchange_rate = jvd[0]['exchange_rate']
Nabin Hait32251022014-08-29 11:18:32 +0530384 ch.party_type = d["party_type"]
385 ch.party = d["party"]
Nabin Haite3ae05a2015-09-09 18:43:12 +0530386 ch.cost_center = cstr(jvd[0]["cost_center"])
387 ch.balance = flt(jvd[0]["balance"])
Rushabh Mehta2e7f9d22015-10-15 16:31:16 +0530388
Nabin Haitdb48b7d2015-10-02 12:05:55 +0530389 ch.set(d['dr_or_cr'], amount_in_account_currency)
390 ch.set('debit' if d['dr_or_cr']=='debit_in_account_currency' else 'credit', amount_in_company_currency)
Rushabh Mehta2e7f9d22015-10-15 16:31:16 +0530391
392 ch.set('credit_in_account_currency' if d['dr_or_cr']== 'debit_in_account_currency'
Nabin Haitdb48b7d2015-10-02 12:05:55 +0530393 else 'debit_in_account_currency', 0)
394 ch.set('credit' if d['dr_or_cr']== 'debit_in_account_currency' else 'debit', 0)
Rushabh Mehta2e7f9d22015-10-15 16:31:16 +0530395
Nabin Haite3ae05a2015-09-09 18:43:12 +0530396 ch.against_account = cstr(jvd[0]["against_account"])
Rushabh Mehta1828c122015-08-10 17:04:07 +0530397 ch.reference_type = original_reference_type
398 ch.reference_name = original_reference_name
Nabin Haite3ae05a2015-09-09 18:43:12 +0530399 ch.is_advance = cstr(jvd[0]["is_advance"])
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530400 ch.docstatus = 1
Anand Doshicd71e1d2014-04-08 13:53:35 +0530401
402 # will work as update after submit
Anand Doshi6dfd4302015-02-10 14:41:27 +0530403 jv_obj.flags.ignore_validate_update_after_submit = True
Saurabh276d3e62015-12-31 13:26:36 +0530404 jv_obj.save(ignore_permissions=True)
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530405
Nabin Hait28a05282016-06-27 17:41:39 +0530406def update_reference_in_payment_entry(d, payment_entry):
407 reference_details = {
408 "reference_doctype": d.against_voucher_type,
409 "reference_name": d.against_voucher,
410 "total_amount": d.grand_total,
411 "outstanding_amount": d.outstanding_amount,
412 "allocated_amount": d.allocated_amount,
413 "exchange_rate": d.exchange_rate
414 }
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530415
Nabin Hait28a05282016-06-27 17:41:39 +0530416 if d.voucher_detail_no:
417 existing_row = payment_entry.get("references", {"name": d["voucher_detail_no"]})[0]
418 original_row = existing_row.as_dict().copy()
419 existing_row.update(reference_details)
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530420
Nabin Hait28a05282016-06-27 17:41:39 +0530421 if d.allocated_amount < original_row.allocated_amount:
422 new_row = payment_entry.append("references")
423 new_row.docstatus = 1
424 for field in reference_details.keys():
425 new_row.set(field, original_row[field])
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530426
Nabin Hait28a05282016-06-27 17:41:39 +0530427 new_row.allocated_amount = original_row.allocated_amount - d.allocated_amount
428 else:
429 new_row = payment_entry.append("references")
430 new_row.docstatus = 1
431 new_row.update(reference_details)
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530432
Nabin Hait28a05282016-06-27 17:41:39 +0530433 payment_entry.flags.ignore_validate_update_after_submit = True
Nabin Hait05aefbb2016-06-28 19:42:19 +0530434 payment_entry.setup_party_account_field()
Nabin Hait1991c7b2016-06-27 20:09:05 +0530435 payment_entry.set_missing_values()
Nabin Hait28a05282016-06-27 17:41:39 +0530436 payment_entry.set_amounts()
437 payment_entry.save(ignore_permissions=True)
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530438
Nabin Hait297d74a2016-11-23 15:58:51 +0530439def unlink_ref_doc_from_payment_entries(ref_doc):
440 remove_ref_doc_link_from_jv(ref_doc.doctype, ref_doc.name)
441 remove_ref_doc_link_from_pe(ref_doc.doctype, ref_doc.name)
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530442
Nabin Haite0cc87d2016-07-21 18:30:03 +0530443 frappe.db.sql("""update `tabGL Entry`
444 set against_voucher_type=null, against_voucher=null,
445 modified=%s, modified_by=%s
446 where against_voucher_type=%s and against_voucher=%s
447 and voucher_no != ifnull(against_voucher, '')""",
Nabin Hait297d74a2016-11-23 15:58:51 +0530448 (now(), frappe.session.user, ref_doc.doctype, ref_doc.name))
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530449
Nabin Hait297d74a2016-11-23 15:58:51 +0530450 if ref_doc.doctype in ("Sales Invoice", "Purchase Invoice"):
451 ref_doc.set("advances", [])
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530452
Nabin Hait297d74a2016-11-23 15:58:51 +0530453 frappe.db.sql("""delete from `tab{0} Advance` where parent = %s"""
454 .format(ref_doc.doctype), ref_doc.name)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530455
Nabin Haite0cc87d2016-07-21 18:30:03 +0530456def remove_ref_doc_link_from_jv(ref_type, ref_no):
Nabin Haite7d15362014-12-25 16:01:55 +0530457 linked_jv = frappe.db.sql_list("""select parent from `tabJournal Entry Account`
Rushabh Mehta1828c122015-08-10 17:04:07 +0530458 where reference_type=%s and reference_name=%s and docstatus < 2""", (ref_type, ref_no))
Anand Doshicd71e1d2014-04-08 13:53:35 +0530459
460 if linked_jv:
Rushabh Mehta1828c122015-08-10 17:04:07 +0530461 frappe.db.sql("""update `tabJournal Entry Account`
462 set reference_type=null, reference_name = null,
Nabin Haitdc15b4f2014-01-20 16:48:49 +0530463 modified=%s, modified_by=%s
Rushabh Mehta1828c122015-08-10 17:04:07 +0530464 where reference_type=%s and reference_name=%s
465 and docstatus < 2""", (now(), frappe.session.user, ref_type, ref_no))
Anand Doshicd71e1d2014-04-08 13:53:35 +0530466
Nabin Hait23d2a532014-12-25 17:14:18 +0530467 frappe.msgprint(_("Journal Entries {0} are un-linked".format("\n".join(linked_jv))))
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530468
Nabin Haite0cc87d2016-07-21 18:30:03 +0530469def remove_ref_doc_link_from_pe(ref_type, ref_no):
470 linked_pe = frappe.db.sql_list("""select parent from `tabPayment Entry Reference`
471 where reference_doctype=%s and reference_name=%s and docstatus < 2""", (ref_type, ref_no))
Anand Doshicd71e1d2014-04-08 13:53:35 +0530472
Nabin Haite0cc87d2016-07-21 18:30:03 +0530473 if linked_pe:
474 frappe.db.sql("""update `tabPayment Entry Reference`
475 set allocated_amount=0, modified=%s, modified_by=%s
476 where reference_doctype=%s and reference_name=%s
477 and docstatus < 2""", (now(), frappe.session.user, ref_type, ref_no))
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530478
Nabin Haite0cc87d2016-07-21 18:30:03 +0530479 for pe in linked_pe:
480 pe_doc = frappe.get_doc("Payment Entry", pe)
481 pe_doc.set_total_allocated_amount()
482 pe_doc.set_unallocated_amount()
483 pe_doc.clear_unallocated_reference_document_rows()
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530484
485 frappe.db.sql("""update `tabPayment Entry` set total_allocated_amount=%s,
486 base_total_allocated_amount=%s, unallocated_amount=%s, modified=%s, modified_by=%s
487 where name=%s""", (pe_doc.total_allocated_amount, pe_doc.base_total_allocated_amount,
Nabin Haite0cc87d2016-07-21 18:30:03 +0530488 pe_doc.unallocated_amount, now(), frappe.session.user, pe))
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530489
Nabin Haite0cc87d2016-07-21 18:30:03 +0530490 frappe.msgprint(_("Payment Entries {0} are un-linked".format("\n".join(linked_pe))))
Nabin Hait0fc24542013-03-25 11:06:00 +0530491
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530492@frappe.whitelist()
Nabin Hait0fc24542013-03-25 11:06:00 +0530493def get_company_default(company, fieldname):
Anand Doshie9baaa62014-02-26 12:35:33 +0530494 value = frappe.db.get_value("Company", company, fieldname)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530495
Nabin Hait0fc24542013-03-25 11:06:00 +0530496 if not value:
Nabin Haitedba79e2017-08-01 16:43:11 +0530497 throw(_("Please set default {0} in Company {1}")
498 .format(frappe.get_meta("Company").get_label(fieldname), company))
Anand Doshicd71e1d2014-04-08 13:53:35 +0530499
Nabin Hait0fc24542013-03-25 11:06:00 +0530500 return value
Nabin Hait8b509f52013-05-28 16:52:30 +0530501
502def fix_total_debit_credit():
Anand Doshicd71e1d2014-04-08 13:53:35 +0530503 vouchers = frappe.db.sql("""select voucher_type, voucher_no,
504 sum(debit) - sum(credit) as diff
505 from `tabGL Entry`
Nabin Hait8b509f52013-05-28 16:52:30 +0530506 group by voucher_type, voucher_no
Anand Doshi602e8252015-11-16 19:05:46 +0530507 having sum(debit) != sum(credit)""", as_dict=1)
Anand Doshicd71e1d2014-04-08 13:53:35 +0530508
Nabin Hait8b509f52013-05-28 16:52:30 +0530509 for d in vouchers:
510 if abs(d.diff) > 0:
511 dr_or_cr = d.voucher_type == "Sales Invoice" and "credit" or "debit"
Anand Doshicd71e1d2014-04-08 13:53:35 +0530512
Anand Doshie9baaa62014-02-26 12:35:33 +0530513 frappe.db.sql("""update `tabGL Entry` set %s = %s + %s
Nabin Hait8b509f52013-05-28 16:52:30 +0530514 where voucher_type = %s and voucher_no = %s and %s > 0 limit 1""" %
Anand Doshicd71e1d2014-04-08 13:53:35 +0530515 (dr_or_cr, dr_or_cr, '%s', '%s', '%s', dr_or_cr),
Nabin Haitcac622e2013-08-02 11:44:29 +0530516 (d.diff, d.voucher_type, d.voucher_no))
Anand Doshicd71e1d2014-04-08 13:53:35 +0530517
Nabin Hait27994c22013-08-26 16:53:30 +0530518def get_stock_and_account_difference(account_list=None, posting_date=None):
Rushabh Mehtac2d28572014-10-08 12:19:55 +0530519 from erpnext.stock.utils import get_stock_value_on
Nabin Hait6d7b0ce2017-06-15 11:09:27 +0530520 from erpnext.stock import get_warehouse_account_map
Anand Doshicd71e1d2014-04-08 13:53:35 +0530521
Nabin Hait27994c22013-08-26 16:53:30 +0530522 if not posting_date: posting_date = nowdate()
Anand Doshicd71e1d2014-04-08 13:53:35 +0530523
Nabin Haitcac622e2013-08-02 11:44:29 +0530524 difference = {}
Nabin Hait6d7b0ce2017-06-15 11:09:27 +0530525 warehouse_account = get_warehouse_account_map()
Anand Doshicd71e1d2014-04-08 13:53:35 +0530526
Nabin Hait6d7b0ce2017-06-15 11:09:27 +0530527 for warehouse, account_data in warehouse_account.items():
528 if account_data.get('account') in account_list:
529 account_balance = get_balance_on(account_data.get('account'), posting_date, in_account_currency=False)
530 stock_value = get_stock_value_on(warehouse, posting_date)
531 if abs(flt(stock_value) - flt(account_balance)) > 0.005:
Rushabh Mehtad50da782017-07-28 11:39:01 +0530532 difference.setdefault(account_data.get('account'), flt(stock_value) - flt(account_balance))
Nabin Haitaa342012013-08-07 14:21:04 +0530533
Nabin Haitcc0e2d12013-08-06 16:19:18 +0530534 return difference
Nabin Haitb4418a42013-08-22 14:38:46 +0530535
Rushabh Mehtad50da782017-07-28 11:39:01 +0530536def get_currency_precision():
Nabin Hait9b20e072017-04-25 12:10:24 +0530537 precision = cint(frappe.db.get_default("currency_precision"))
538 if not precision:
539 number_format = frappe.db.get_default("number_format") or "#,###.##"
540 precision = get_number_format_info(number_format)[2]
Rushabh Mehtad50da782017-07-28 11:39:01 +0530541
Nabin Hait9b20e072017-04-25 12:10:24 +0530542 return precision
Rushabh Mehtad50da782017-07-28 11:39:01 +0530543
Nabin Hait9a0c46f2014-08-07 15:10:05 +0530544def get_stock_rbnb_difference(posting_date, company):
545 stock_items = frappe.db.sql_list("""select distinct item_code
Nabin Hait849b7b12014-08-07 15:13:52 +0530546 from `tabStock Ledger Entry` where company=%s""", company)
Nabin Hait9a0c46f2014-08-07 15:10:05 +0530547
548 pr_valuation_amount = frappe.db.sql("""
Anand Doshi602e8252015-11-16 19:05:46 +0530549 select sum(pr_item.valuation_rate * pr_item.qty * pr_item.conversion_factor)
Nabin Hait9a0c46f2014-08-07 15:10:05 +0530550 from `tabPurchase Receipt Item` pr_item, `tabPurchase Receipt` pr
551 where pr.name = pr_item.parent and pr.docstatus=1 and pr.company=%s
552 and pr.posting_date <= %s and pr_item.item_code in (%s)""" %
553 ('%s', '%s', ', '.join(['%s']*len(stock_items))), tuple([company, posting_date] + stock_items))[0][0]
554
555 pi_valuation_amount = frappe.db.sql("""
Anand Doshi602e8252015-11-16 19:05:46 +0530556 select sum(pi_item.valuation_rate * pi_item.qty * pi_item.conversion_factor)
Nabin Hait9a0c46f2014-08-07 15:10:05 +0530557 from `tabPurchase Invoice Item` pi_item, `tabPurchase Invoice` pi
558 where pi.name = pi_item.parent and pi.docstatus=1 and pi.company=%s
559 and pi.posting_date <= %s and pi_item.item_code in (%s)""" %
560 ('%s', '%s', ', '.join(['%s']*len(stock_items))), tuple([company, posting_date] + stock_items))[0][0]
561
562 # Balance should be
563 stock_rbnb = flt(pr_valuation_amount, 2) - flt(pi_valuation_amount, 2)
564
565 # Balance as per system
Nabin Hait849b7b12014-08-07 15:13:52 +0530566 stock_rbnb_account = "Stock Received But Not Billed - " + frappe.db.get_value("Company", company, "abbr")
Nabin Haitc0e3b1a2015-09-04 13:26:23 +0530567 sys_bal = get_balance_on(stock_rbnb_account, posting_date, in_account_currency=False)
Nabin Hait9a0c46f2014-08-07 15:10:05 +0530568
569 # Amount should be credited
570 return flt(stock_rbnb) + flt(sys_bal)
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530571
Anand Doshid40d1e92015-11-12 17:05:29 +0530572def get_outstanding_invoices(party_type, party, account, condition=None):
573 outstanding_invoices = []
574 precision = frappe.get_precision("Sales Invoice", "outstanding_amount")
575
576 if party_type=="Customer":
Anand Doshi602e8252015-11-16 19:05:46 +0530577 dr_or_cr = "debit_in_account_currency - credit_in_account_currency"
578 payment_dr_or_cr = "payment_gl_entry.credit_in_account_currency - payment_gl_entry.debit_in_account_currency"
Anand Doshid40d1e92015-11-12 17:05:29 +0530579 else:
Anand Doshi602e8252015-11-16 19:05:46 +0530580 dr_or_cr = "credit_in_account_currency - debit_in_account_currency"
581 payment_dr_or_cr = "payment_gl_entry.debit_in_account_currency - payment_gl_entry.credit_in_account_currency"
Anand Doshid40d1e92015-11-12 17:05:29 +0530582
rohitwaghchaurefff56532017-08-17 14:47:25 +0530583 invoice = 'Sales Invoice' if party_type == 'Customer' else 'Purchase Invoice'
Nabin Haite4bbb692016-07-04 16:16:24 +0530584 invoice_list = frappe.db.sql("""
585 select
586 voucher_no, voucher_type, posting_date, ifnull(sum({dr_or_cr}), 0) as invoice_amount,
Anand Doshid40d1e92015-11-12 17:05:29 +0530587 (
rohitwaghchaurefff56532017-08-17 14:47:25 +0530588 case when (voucher_type = 'Sales Invoice' or voucher_type = 'Purchase Invoice')
589 then (select due_date from `tab{invoice}` where name = voucher_no)
590 else posting_date end
591 ) as due_date,
592 (
Nabin Haite4bbb692016-07-04 16:16:24 +0530593 select ifnull(sum({payment_dr_or_cr}), 0)
Anand Doshid40d1e92015-11-12 17:05:29 +0530594 from `tabGL Entry` payment_gl_entry
Nabin Haite4bbb692016-07-04 16:16:24 +0530595 where payment_gl_entry.against_voucher_type = invoice_gl_entry.voucher_type
rohitwaghchaure21cbbae2017-11-16 14:05:57 +0530596 and if(invoice_gl_entry.voucher_type='Journal Entry',
597 payment_gl_entry.against_voucher = invoice_gl_entry.voucher_no,
598 payment_gl_entry.against_voucher = invoice_gl_entry.against_voucher)
Anand Doshid40d1e92015-11-12 17:05:29 +0530599 and payment_gl_entry.party_type = invoice_gl_entry.party_type
600 and payment_gl_entry.party = invoice_gl_entry.party
601 and payment_gl_entry.account = invoice_gl_entry.account
602 and {payment_dr_or_cr} > 0
603 ) as payment_amount
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530604 from
Anand Doshid40d1e92015-11-12 17:05:29 +0530605 `tabGL Entry` invoice_gl_entry
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530606 where
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530607 party_type = %(party_type)s and party = %(party)s
Nabin Haite4bbb692016-07-04 16:16:24 +0530608 and account = %(account)s and {dr_or_cr} > 0
Anand Doshid40d1e92015-11-12 17:05:29 +0530609 {condition}
610 and ((voucher_type = 'Journal Entry'
Nabin Hait56548cb2016-07-01 15:58:39 +0530611 and (against_voucher = '' or against_voucher is null))
612 or (voucher_type not in ('Journal Entry', 'Payment Entry')))
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530613 group by voucher_type, voucher_no
Nabin Hait12e2a512016-06-26 01:37:21 +0530614 having (invoice_amount - payment_amount) > 0.005
615 order by posting_date, name""".format(
Anand Doshid40d1e92015-11-12 17:05:29 +0530616 dr_or_cr = dr_or_cr,
rohitwaghchaurefff56532017-08-17 14:47:25 +0530617 invoice = invoice,
Anand Doshid40d1e92015-11-12 17:05:29 +0530618 payment_dr_or_cr = payment_dr_or_cr,
619 condition = condition or ""
620 ), {
621 "party_type": party_type,
622 "party": party,
623 "account": account,
Nabin Hait56548cb2016-07-01 15:58:39 +0530624 }, as_dict=True)
Ankit Javalkar8e7ca412014-09-12 15:18:53 +0530625
Anand Doshid40d1e92015-11-12 17:05:29 +0530626 for d in invoice_list:
Nabin Hait16d69592016-06-28 16:15:58 +0530627 outstanding_invoices.append(frappe._dict({
Anand Doshid40d1e92015-11-12 17:05:29 +0530628 'voucher_no': d.voucher_no,
629 'voucher_type': d.voucher_type,
rohitwaghchaurefff56532017-08-17 14:47:25 +0530630 'due_date': d.due_date,
Anand Doshid40d1e92015-11-12 17:05:29 +0530631 'posting_date': d.posting_date,
632 'invoice_amount': flt(d.invoice_amount),
633 'payment_amount': flt(d.payment_amount),
shreyasc2a49212016-05-05 15:56:48 +0530634 'outstanding_amount': flt(d.invoice_amount - d.payment_amount, precision),
Nabin Haitedba79e2017-08-01 16:43:11 +0530635 'due_date': frappe.db.get_value(d.voucher_type, d.voucher_no,
636 "posting_date" if party_type=="Employee" else "due_date"),
Nabin Hait16d69592016-06-28 16:15:58 +0530637 }))
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530638
Nabin Hait28a05282016-06-27 17:41:39 +0530639 outstanding_invoices = sorted(outstanding_invoices, key=lambda k: k['due_date'] or getdate(nowdate()))
Rushabh Mehtae9d9b8e2016-12-15 11:27:35 +0530640
Anand Doshid40d1e92015-11-12 17:05:29 +0530641 return outstanding_invoices
Saurabh3a268292016-02-22 15:18:40 +0530642
643
Saurabhb43df362016-03-18 15:05:50 +0530644def get_account_name(account_type=None, root_type=None, is_group=None, account_currency=None, company=None):
Saurabh3a268292016-02-22 15:18:40 +0530645 """return account based on matching conditions"""
Saurabh4a6bbf92016-02-23 20:01:04 +0530646 return frappe.db.get_value("Account", {
647 "account_type": account_type or '',
648 "root_type": root_type or '',
649 "is_group": is_group or 0,
650 "account_currency": account_currency or frappe.defaults.get_defaults().currency,
651 "company": company or frappe.defaults.get_defaults().company
652 }, "name")
Saurabha9ba7342016-06-21 12:33:12 +0530653
654@frappe.whitelist()
655def get_companies():
656 """get a list of companies based on permission"""
657 return [d.name for d in frappe.get_list("Company", fields=["name"],
658 order_by="name")]
659
660@frappe.whitelist()
661def get_children():
Nabin Hait932423e2017-05-04 12:12:29 +0530662 from erpnext.accounts.report.financial_statements import sort_root_accounts
Rushabh Mehtad50da782017-07-28 11:39:01 +0530663
Saurabha9ba7342016-06-21 12:33:12 +0530664 args = frappe.local.form_dict
Saurabhdc2fa862016-06-24 11:36:31 +0530665 doctype, company = args['doctype'], args['company']
666 fieldname = frappe.db.escape(doctype.lower().replace(' ','_'))
667 doctype = frappe.db.escape(doctype)
Saurabha9ba7342016-06-21 12:33:12 +0530668
669 # root
670 if args['parent'] in ("Accounts", "Cost Centers"):
Saurabhdc2fa862016-06-24 11:36:31 +0530671 fields = ", root_type, report_type, account_currency" if doctype=="Account" else ""
Saurabha9ba7342016-06-21 12:33:12 +0530672 acc = frappe.db.sql(""" select
673 name as value, is_group as expandable {fields}
674 from `tab{doctype}`
675 where ifnull(`parent_{fieldname}`,'') = ''
676 and `company` = %s and docstatus<2
677 order by name""".format(fields=fields, fieldname = fieldname, doctype=doctype),
678 company, as_dict=1)
679
680 if args["parent"]=="Accounts":
681 sort_root_accounts(acc)
682 else:
683 # other
Saurabhdc2fa862016-06-24 11:36:31 +0530684 fields = ", account_currency" if doctype=="Account" else ""
Saurabha9ba7342016-06-21 12:33:12 +0530685 acc = frappe.db.sql("""select
686 name as value, is_group as expandable, parent_{fieldname} as parent {fields}
687 from `tab{doctype}`
688 where ifnull(`parent_{fieldname}`,'') = %s
689 and docstatus<2
690 order by name""".format(fields=fields, fieldname=fieldname, doctype=doctype),
691 args['parent'], as_dict=1)
692
Saurabhdc2fa862016-06-24 11:36:31 +0530693 if doctype == 'Account':
Saurabha9ba7342016-06-21 12:33:12 +0530694 company_currency = frappe.db.get_value("Company", company, "default_currency")
695 for each in acc:
696 each["company_currency"] = company_currency
697 each["balance"] = flt(get_balance_on(each.get("value"), in_account_currency=False))
698
699 if each.account_currency != company_currency:
700 each["balance_in_account_currency"] = flt(get_balance_on(each.get("value")))
701
702 return acc
Saurabhb835fef2016-09-09 11:19:22 +0530703
Saurabh0d47d512017-03-14 14:46:05 +0530704def create_payment_gateway_account(gateway):
Saurabhb835fef2016-09-09 11:19:22 +0530705 from erpnext.setup.setup_wizard.setup_wizard import create_bank_account
706
707 company = frappe.db.get_value("Global Defaults", None, "default_company")
708 if not company:
709 return
710
711 # NOTE: we translate Payment Gateway account name because that is going to be used by the end user
712 bank_account = frappe.db.get_value("Account", {"account_name": _(gateway), "company": company},
713 ["name", 'account_currency'], as_dict=1)
714
715 if not bank_account:
716 # check for untranslated one
717 bank_account = frappe.db.get_value("Account", {"account_name": gateway, "company": company},
718 ["name", 'account_currency'], as_dict=1)
719
720 if not bank_account:
721 # try creating one
722 bank_account = create_bank_account({"company_name": company, "bank_account": _(gateway)})
723
724 if not bank_account:
725 frappe.msgprint(_("Payment Gateway Account not created, please create one manually."))
726 return
727
728 # if payment gateway account exists, return
729 if frappe.db.exists("Payment Gateway Account",
730 {"payment_gateway": gateway, "currency": bank_account.account_currency}):
731 return
732
733 try:
734 frappe.get_doc({
735 "doctype": "Payment Gateway Account",
736 "is_default": 1,
737 "payment_gateway": gateway,
738 "payment_account": bank_account.name,
739 "currency": bank_account.account_currency
740 }).insert(ignore_permissions=True)
741
742 except frappe.DuplicateEntryError:
743 # already exists, due to a reinstall?
cclauss68487082017-07-27 07:08:35 +0200744 pass