blob: 42e99958c0efb69fd34060c8d0845d4ea5ab44f9 [file] [log] [blame]
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05301# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
2# License: GNU General Public License v3. See license.txt
Nabin Hait2df4d542013-01-29 11:34:39 +05303
4from __future__ import unicode_literals
5import webnotes
Anand Doshi3543f302013-05-24 19:25:01 +05306from webnotes import _, msgprint
Nabin Hait4166c352013-07-25 15:14:59 +05307from webnotes.utils import flt, cint, today, cstr
Anand Doshi3543f302013-05-24 19:25:01 +05308from setup.utils import get_company_currency, get_price_list_currency
Nabin Haitcfecd2b2013-07-11 17:49:18 +05309from accounts.utils import get_fiscal_year, validate_fiscal_year
Anand Doshi74740122013-07-26 16:07:52 +053010from utilities.transaction_base import TransactionBase, validate_conversion_rate
Anand Doshi3543f302013-05-24 19:25:01 +053011import json
Nabin Hait2df4d542013-01-29 11:34:39 +053012
Nabin Haitbf495c92013-01-30 12:49:08 +053013class AccountsController(TransactionBase):
Saurabh6f753182013-03-20 12:55:28 +053014 def validate(self):
Anand Doshi3543f302013-05-24 19:25:01 +053015 self.set_missing_values(for_validate=True)
16
Nabin Haitcfecd2b2013-07-11 17:49:18 +053017 self.validate_date_with_fiscal_year()
Anand Doshi3543f302013-05-24 19:25:01 +053018 if self.meta.get_field("currency"):
Anand Doshi923d41d2013-05-28 17:23:36 +053019 self.calculate_taxes_and_totals()
Saurabh6f753182013-03-20 12:55:28 +053020 self.validate_value("grand_total", ">=", 0)
Anand Doshi3543f302013-05-24 19:25:01 +053021 self.set_total_in_words()
22
Nabin Hait3986bad2013-07-26 11:01:17 +053023 self.validate_for_freezed_account()
24
Anand Doshiabc10032013-06-14 17:44:03 +053025 def set_missing_values(self, for_validate=False):
26 for fieldname in ["posting_date", "transaction_date"]:
27 if not self.doc.fields.get(fieldname) and self.meta.get_field(fieldname):
28 self.doc.fields[fieldname] = today()
29 if not self.doc.fiscal_year:
30 self.doc.fiscal_year = get_fiscal_year(self.doc.fields[fieldname])[0]
Nabin Haitcfecd2b2013-07-11 17:49:18 +053031
32 def validate_date_with_fiscal_year(self):
33 if self.meta.get_field("fiscal_year") :
34 date_field = ""
35 if self.meta.get_field("posting_date"):
36 date_field = "posting_date"
37 elif self.meta.get_field("transaction_date"):
38 date_field = "transaction_date"
39
40 if date_field and self.doc.fields[date_field]:
41 validate_fiscal_year(self.doc.fields[date_field], self.doc.fiscal_year,
42 label=self.meta.get_label(date_field))
Nabin Hait3986bad2013-07-26 11:01:17 +053043
44 def validate_for_freezed_account(self):
Anand Doshi74740122013-07-26 16:07:52 +053045 for fieldname in ["customer", "supplier"]:
46 if self.meta.get_field(fieldname) and self.doc.fields.get(fieldname):
47 accounts = webnotes.conn.get_values("Account", {"master_type": fieldname.title(),
48 "master_name": self.doc.fields[fieldname], "company": self.doc.company},
Nabin Hait3986bad2013-07-26 11:01:17 +053049 "freeze_account", as_dict=1)
50
51 if accounts:
52 if not filter(lambda x: cstr(x.freeze_account) in ["", "No"], accounts):
Anand Doshi74740122013-07-26 16:07:52 +053053 msgprint(_("Account for this ") + fieldname + _(" has been freezed. ") +
Nabin Hait3986bad2013-07-26 11:01:17 +053054 self.doc.doctype + _(" can not be made."), raise_exception=1)
Anand Doshiabc10032013-06-14 17:44:03 +053055
Anand Doshi3543f302013-05-24 19:25:01 +053056 def set_price_list_currency(self, buying_or_selling):
Anand Doshi078129f2013-08-01 16:54:28 +053057 company_currency = get_company_currency(self.doc.company)
Anand Doshi3543f302013-05-24 19:25:01 +053058 # TODO - change this, since price list now has only one currency allowed
59 if self.meta.get_field("price_list_name") and self.doc.price_list_name and \
60 not self.doc.price_list_currency:
Nabin Hait48a0bd32013-07-23 15:31:39 +053061 self.doc.fields.update(get_price_list_currency(self.doc.price_list_name))
Anand Doshid4e76bc2013-07-15 18:10:51 +053062
Anand Doshi61a2f682013-06-21 17:55:31 +053063 if self.doc.price_list_currency:
64 if not self.doc.plc_conversion_rate:
Anand Doshi99100a42013-07-04 17:13:53 +053065 if self.doc.price_list_currency == company_currency:
66 self.doc.plc_conversion_rate = 1.0
67 else:
68 exchange = self.doc.price_list_currency + "-" + company_currency
69 self.doc.plc_conversion_rate = flt(webnotes.conn.get_value("Currency Exchange",
70 exchange, "exchange_rate"))
Anand Doshiabc10032013-06-14 17:44:03 +053071
Anand Doshi61a2f682013-06-21 17:55:31 +053072 if not self.doc.currency:
73 self.doc.currency = self.doc.price_list_currency
74 self.doc.conversion_rate = self.doc.plc_conversion_rate
Anand Doshi99100a42013-07-04 17:13:53 +053075
Anand Doshi078129f2013-08-01 16:54:28 +053076 if self.meta.get_field("currency") and self.doc.currency != company_currency and \
77 not self.doc.conversion_rate:
78 exchange = self.doc.currency + "-" + company_currency
79 self.doc.conversion_rate = flt(webnotes.conn.get_value("Currency Exchange",
80 exchange, "exchange_rate"))
81
Anand Doshi3543f302013-05-24 19:25:01 +053082 def set_missing_item_details(self, get_item_details):
83 """set missing item values"""
84 for item in self.doclist.get({"parentfield": self.fname}):
85 if item.fields.get("item_code"):
86 args = item.fields.copy().update(self.doc.fields)
87 ret = get_item_details(args)
88 for fieldname, value in ret.items():
89 if self.meta.get_field(fieldname, parentfield=self.fname) and \
Anand Doshi99100a42013-07-04 17:13:53 +053090 item.fields.get(fieldname) is None and value is not None:
Anand Doshi3543f302013-05-24 19:25:01 +053091 item.fields[fieldname] = value
92
Anand Doshi99100a42013-07-04 17:13:53 +053093 def set_taxes(self, tax_parentfield, tax_master_field):
Anand Doshi3543f302013-05-24 19:25:01 +053094 if not self.meta.get_field(tax_parentfield):
95 return
96
Anand Doshi99100a42013-07-04 17:13:53 +053097 tax_master_doctype = self.meta.get_field(tax_master_field).options
98
Anand Doshi3543f302013-05-24 19:25:01 +053099 if not self.doclist.get({"parentfield": tax_parentfield}):
100 if not self.doc.fields.get(tax_master_field):
101 # get the default tax master
102 self.doc.fields[tax_master_field] = \
Anand Doshi99100a42013-07-04 17:13:53 +0530103 webnotes.conn.get_value(tax_master_doctype, {"is_default": 1})
Anand Doshi3543f302013-05-24 19:25:01 +0530104
Anand Doshi99100a42013-07-04 17:13:53 +0530105 self.append_taxes_from_master(tax_parentfield, tax_master_field, tax_master_doctype)
106
107 def append_taxes_from_master(self, tax_parentfield, tax_master_field, tax_master_doctype=None):
108 if self.doc.fields.get(tax_master_field):
109 if not tax_master_doctype:
110 tax_master_doctype = self.meta.get_field(tax_master_field).options
111
112 tax_doctype = self.meta.get_field(tax_parentfield).options
113
114 from webnotes.model import default_fields
115 tax_master = webnotes.bean(tax_master_doctype, self.doc.fields.get(tax_master_field))
116
117 for i, tax in enumerate(tax_master.doclist.get({"parentfield": tax_parentfield})):
118 for fieldname in default_fields:
119 tax.fields[fieldname] = None
120
121 tax.fields.update({
122 "doctype": tax_doctype,
123 "parentfield": tax_parentfield,
124 "idx": i+1
125 })
126
127 self.doclist.append(tax)
Anand Doshi3543f302013-05-24 19:25:01 +0530128
129 def calculate_taxes_and_totals(self):
Anand Doshid4e76bc2013-07-15 18:10:51 +0530130 # validate conversion rate
Anand Doshie79d57c2013-08-02 19:31:41 +0530131 company_currency = get_company_currency(self.doc.company)
132 if not self.doc.currency or self.doc.currency == company_currency:
133 self.doc.currency = company_currency
Anand Doshid4e76bc2013-07-15 18:10:51 +0530134 self.doc.conversion_rate = 1.0
135 else:
136 validate_conversion_rate(self.doc.currency, self.doc.conversion_rate,
137 self.meta.get_label("conversion_rate"), self.doc.company)
138
Anand Doshi3543f302013-05-24 19:25:01 +0530139 self.doc.conversion_rate = flt(self.doc.conversion_rate)
Anand Doshi3543f302013-05-24 19:25:01 +0530140 self.item_doclist = self.doclist.get({"parentfield": self.fname})
141 self.tax_doclist = self.doclist.get({"parentfield": self.other_fname})
142
143 self.calculate_item_values()
144 self.initialize_taxes()
145
146 if hasattr(self, "determine_exclusive_rate"):
147 self.determine_exclusive_rate()
148
149 self.calculate_net_total()
150 self.calculate_taxes()
151 self.calculate_totals()
152 self._cleanup()
153
154 # TODO
155 # print format: show net_total_export instead of net_total
156
157 def initialize_taxes(self):
158 for tax in self.tax_doclist:
159 tax.item_wise_tax_detail = {}
160 for fieldname in ["tax_amount", "total",
161 "tax_amount_for_current_item", "grand_total_for_current_item",
162 "tax_fraction_for_current_item", "grand_total_fraction_for_current_item"]:
163 tax.fields[fieldname] = 0.0
164
165 self.validate_on_previous_row(tax)
166 self.validate_inclusive_tax(tax)
167 self.round_floats_in(tax)
168
169 def validate_on_previous_row(self, tax):
170 """
171 validate if a valid row id is mentioned in case of
172 On Previous Row Amount and On Previous Row Total
173 """
174 if tax.charge_type in ["On Previous Row Amount", "On Previous Row Total"] and \
175 (not tax.row_id or cint(tax.row_id) >= tax.idx):
176 msgprint((_("Row") + " # %(idx)s [%(taxes_doctype)s]: " + \
177 _("Please specify a valid") + " %(row_id_label)s") % {
178 "idx": tax.idx,
179 "taxes_doctype": tax.doctype,
180 "row_id_label": self.meta.get_label("row_id",
181 parentfield=self.other_fname)
182 }, raise_exception=True)
183
184 def validate_inclusive_tax(self, tax):
185 def _on_previous_row_error(row_range):
186 msgprint((_("Row") + " # %(idx)s [%(doctype)s]: " +
187 _("to be included in Item's rate, it is required that: ") +
188 " [" + _("Row") + " # %(row_range)s] " + _("also be included in Item's rate")) % {
189 "idx": tax.idx,
190 "doctype": tax.doctype,
191 "inclusive_label": self.meta.get_label("included_in_print_rate",
192 parentfield=self.other_fname),
193 "charge_type_label": self.meta.get_label("charge_type",
194 parentfield=self.other_fname),
195 "charge_type": tax.charge_type,
196 "row_range": row_range
197 }, raise_exception=True)
198
199 if cint(tax.included_in_print_rate):
200 if tax.charge_type == "Actual":
201 # inclusive tax cannot be of type Actual
202 msgprint((_("Row")
203 + " # %(idx)s [%(doctype)s]: %(charge_type_label)s = \"%(charge_type)s\" "
204 + "cannot be included in Item's rate") % {
205 "idx": tax.idx,
206 "doctype": tax.doctype,
207 "charge_type_label": self.meta.get_label("charge_type",
208 parentfield=self.other_fname),
209 "charge_type": tax.charge_type,
210 }, raise_exception=True)
211 elif tax.charge_type == "On Previous Row Amount" and \
212 not cint(self.tax_doclist[tax.row_id - 1].included_in_print_rate):
213 # referred row should also be inclusive
214 _on_previous_row_error(tax.row_id)
215 elif tax.charge_type == "On Previous Row Total" and \
216 not all([cint(t.included_in_print_rate) for t in self.tax_doclist[:tax.row_id - 1]]):
217 # all rows about the reffered tax should be inclusive
218 _on_previous_row_error("1 - %d" % (tax.row_id,))
219
220 def calculate_taxes(self):
221 for item in self.item_doclist:
222 item_tax_map = self._load_item_tax_rate(item.item_tax_rate)
223
224 for i, tax in enumerate(self.tax_doclist):
225 # tax_amount represents the amount of tax for the current step
226 current_tax_amount = self.get_current_tax_amount(item, tax, item_tax_map)
227
228 if hasattr(self, "set_item_tax_amount"):
229 self.set_item_tax_amount(item, tax, current_tax_amount)
230
231 # case when net total is 0 but there is an actual type charge
232 # in this case add the actual amount to tax.tax_amount
233 # and tax.grand_total_for_current_item for the first such iteration
234 if tax.charge_type=="Actual" and \
235 not (current_tax_amount or self.doc.net_total or tax.tax_amount):
236 zero_net_total_adjustment = flt(tax.rate, self.precision("tax_amount", tax))
237 current_tax_amount += zero_net_total_adjustment
238
239 # store tax_amount for current item as it will be used for
240 # charge type = 'On Previous Row Amount'
241 tax.tax_amount_for_current_item = current_tax_amount
242
243 # accumulate tax amount into tax.tax_amount
244 tax.tax_amount += current_tax_amount
245
Anand Doshi3543f302013-05-24 19:25:01 +0530246 if tax.category:
247 # if just for valuation, do not add the tax amount in total
248 # hence, setting it as 0 for further steps
249 current_tax_amount = 0.0 if (tax.category == "Valuation") else current_tax_amount
250
251 current_tax_amount *= -1.0 if (tax.add_deduct_tax == "Deduct") else 1.0
252
253 # Calculate tax.total viz. grand total till that step
254 # note: grand_total_for_current_item contains the contribution of
255 # item's amount, previously applied tax and the current tax on that item
256 if i==0:
257 tax.grand_total_for_current_item = flt(item.amount +
258 current_tax_amount, self.precision("total", tax))
259
260 else:
261 tax.grand_total_for_current_item = \
262 flt(self.tax_doclist[i-1].grand_total_for_current_item +
263 current_tax_amount, self.precision("total", tax))
264
265 # in tax.total, accumulate grand total of each item
266 tax.total += tax.grand_total_for_current_item
267
268 def get_current_tax_amount(self, item, tax, item_tax_map):
269 tax_rate = self._get_tax_rate(tax, item_tax_map)
270 current_tax_amount = 0.0
271
272 if tax.charge_type == "Actual":
273 # distribute the tax amount proportionally to each item row
274 actual = flt(tax.rate, self.precision("tax_amount", tax))
275 current_tax_amount = (self.doc.net_total
276 and ((item.amount / self.doc.net_total) * actual)
277 or 0)
278 elif tax.charge_type == "On Net Total":
279 current_tax_amount = (tax_rate / 100.0) * item.amount
280 elif tax.charge_type == "On Previous Row Amount":
281 current_tax_amount = (tax_rate / 100.0) * \
282 self.tax_doclist[cint(tax.row_id) - 1].tax_amount_for_current_item
283 elif tax.charge_type == "On Previous Row Total":
284 current_tax_amount = (tax_rate / 100.0) * \
285 self.tax_doclist[cint(tax.row_id) - 1].grand_total_for_current_item
Anand Doshi53b73422013-05-31 11:50:01 +0530286
287 current_tax_amount = flt(current_tax_amount, self.precision("tax_amount", tax))
288
289 # store tax breakup for each item
290 tax.item_wise_tax_detail[item.item_code or item.item_name] = [tax_rate, current_tax_amount]
Anand Doshi3543f302013-05-24 19:25:01 +0530291
Anand Doshi53b73422013-05-31 11:50:01 +0530292 return current_tax_amount
Anand Doshi3543f302013-05-24 19:25:01 +0530293
294 def _load_item_tax_rate(self, item_tax_rate):
295 return json.loads(item_tax_rate) if item_tax_rate else {}
296
297 def _get_tax_rate(self, tax, item_tax_map):
298 if item_tax_map.has_key(tax.account_head):
299 return flt(item_tax_map.get(tax.account_head), self.precision("rate", tax))
300 else:
301 return tax.rate
302
303 def _cleanup(self):
304 for tax in self.tax_doclist:
305 for fieldname in ("grand_total_for_current_item",
306 "tax_amount_for_current_item",
307 "tax_fraction_for_current_item",
308 "grand_total_fraction_for_current_item"):
309 if fieldname in tax.fields:
310 del tax.fields[fieldname]
311
312 tax.item_wise_tax_detail = json.dumps(tax.item_wise_tax_detail)
313
314 def _set_in_company_currency(self, item, print_field, base_field):
315 """set values in base currency"""
316 item.fields[base_field] = flt((flt(item.fields[print_field],
317 self.precision(print_field, item)) * self.doc.conversion_rate),
318 self.precision(base_field, item))
Anand Doshi923d41d2013-05-28 17:23:36 +0530319
320 def calculate_total_advance(self, parenttype, advance_parentfield):
321 if self.doc.doctype == parenttype and self.doc.docstatus < 2:
322 sum_of_allocated_amount = sum([flt(adv.allocated_amount, self.precision("allocated_amount", adv))
323 for adv in self.doclist.get({"parentfield": advance_parentfield})])
324
325 self.doc.total_advance = flt(sum_of_allocated_amount, self.precision("total_advance"))
326
327 self.calculate_outstanding_amount()
Saurabh6f753182013-03-20 12:55:28 +0530328
Nabin Hait8c7234f2013-03-11 16:32:33 +0530329 def get_gl_dict(self, args, cancel=None):
Nabin Hait2df4d542013-01-29 11:34:39 +0530330 """this method populates the common properties of a gl entry record"""
Anand Doshi1cf73912013-03-15 13:42:31 +0530331 if cancel is None:
332 cancel = (self.doc.docstatus == 2)
333
Nabin Hait2df4d542013-01-29 11:34:39 +0530334 gl_dict = {
335 'company': self.doc.company,
336 'posting_date': self.doc.posting_date,
337 'voucher_type': self.doc.doctype,
338 'voucher_no': self.doc.name,
339 'aging_date': self.doc.fields.get("aging_date") or self.doc.posting_date,
340 'remarks': self.doc.remarks,
Anand Doshi1cf73912013-03-15 13:42:31 +0530341 'is_cancelled': cancel and "Yes" or "No",
Nabin Hait2df4d542013-01-29 11:34:39 +0530342 'fiscal_year': self.doc.fiscal_year,
343 'debit': 0,
344 'credit': 0,
345 'is_opening': self.doc.fields.get("is_opening") or "No",
346 }
347 gl_dict.update(args)
348 return gl_dict
Anand Doshia1d4b782013-02-26 18:09:47 +0530349
Anand Doshi613cb6a2013-02-06 17:33:46 +0530350 def clear_unallocated_advances(self, childtype, parentfield):
351 self.doclist.remove_items({"parentfield": parentfield, "allocated_amount": ["in", [0, None, ""]]})
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530352
Anand Doshi613cb6a2013-02-06 17:33:46 +0530353 webnotes.conn.sql("""delete from `tab%s` where parentfield=%s and parent = %s
354 and ifnull(allocated_amount, 0) = 0""" % (childtype, '%s', '%s'), (parentfield, self.doc.name))
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530355
Anand Doshi613cb6a2013-02-06 17:33:46 +0530356 def get_advances(self, account_head, child_doctype, parentfield, dr_or_cr):
Nabin Haitfb3fd6e2013-01-30 19:16:13 +0530357 res = webnotes.conn.sql("""select t1.name as jv_no, t1.remark,
358 t2.%s as amount, t2.name as jv_detail_no
359 from `tabJournal Voucher` t1, `tabJournal Voucher Detail` t2
360 where t1.name = t2.parent and t2.account = %s and t2.is_advance = 'Yes'
361 and (t2.against_voucher is null or t2.against_voucher = '')
362 and (t2.against_invoice is null or t2.against_invoice = '')
363 and (t2.against_jv is null or t2.against_jv = '')
364 and t1.docstatus = 1 order by t1.posting_date""" %
365 (dr_or_cr, '%s'), account_head, as_dict=1)
366
367 self.doclist = self.doc.clear_table(self.doclist, parentfield)
368 for d in res:
Anand Doshi613cb6a2013-02-06 17:33:46 +0530369 self.doclist.append({
370 "doctype": child_doctype,
371 "parentfield": parentfield,
372 "journal_voucher": d.jv_no,
373 "jv_detail_no": d.jv_detail_no,
374 "remarks": d.remark,
375 "advance_amount": flt(d.amount),
376 "allocate_amount": 0
Anand Doshia1d4b782013-02-26 18:09:47 +0530377 })
Nabin Hait3b999222013-07-09 12:35:52 +0530378
Nabin Hait19d945a2013-07-29 18:35:39 +0530379 def validate_multiple_billing(self, ref_dt, item_ref_dn, based_on, parentfield):
Nabin Hait3b999222013-07-09 12:35:52 +0530380 for item in self.doclist.get({"parentfield": "entries"}):
381 if item.fields.get(item_ref_dn):
382 already_billed = webnotes.conn.sql("""select sum(%s) from `tab%s`
383 where %s=%s and docstatus=1""" % (based_on, self.tname, item_ref_dn, '%s'),
384 item.fields[item_ref_dn])[0][0]
Nabin Hait4166c352013-07-25 15:14:59 +0530385
Nabin Hait19d945a2013-07-29 18:35:39 +0530386 max_allowed_amt = flt(webnotes.conn.get_value(ref_dt + " Item",
387 item.fields[item_ref_dn], based_on), self.precision(based_on, item))
388
389 total_billed_amt = flt(flt(already_billed) + flt(item.fields[based_on]),
390 self.precision(based_on, item))
Nabin Hait19d945a2013-07-29 18:35:39 +0530391
Nabin Hait1f996c32013-07-29 19:00:53 +0530392 if max_allowed_amt and total_billed_amt - max_allowed_amt > 0.02:
Nabin Hait4166c352013-07-25 15:14:59 +0530393 webnotes.msgprint(_("Row ")+ cstr(item.idx) + ": " + cstr(item.item_code) +
394 _(" will be over-billed against mentioned ") + cstr(ref_dt) +
395 _(". Max allowed " + cstr(based_on) + ": " + cstr(max_allowed_amt)),
396 raise_exception=1)
Anand Doshia1d4b782013-02-26 18:09:47 +0530397
Nabin Hait0fc24542013-03-25 11:06:00 +0530398 def get_company_default(self, fieldname):
399 from accounts.utils import get_company_default
400 return get_company_default(self.doc.company, fieldname)
Nabin Hait2bd37772013-07-08 19:00:29 +0530401
Anand Doshia1d4b782013-02-26 18:09:47 +0530402
403 @property
404 def stock_items(self):
405 if not hasattr(self, "_stock_items"):
Nabin Haitebd51442013-04-23 15:36:26 +0530406 self._stock_items = []
407 item_codes = list(set(item.item_code for item in
408 self.doclist.get({"parentfield": self.fname})))
409 if item_codes:
410 self._stock_items = [r[0] for r in webnotes.conn.sql("""select name
411 from `tabItem` where name in (%s) and is_stock_item='Yes'""" % \
412 (", ".join((["%s"]*len(item_codes))),), item_codes)]
Nabin Hait80abad22013-03-19 18:18:52 +0530413
Anand Doshi4a7248e2013-02-27 18:10:30 +0530414 return self._stock_items
415
416 @property
417 def company_abbr(self):
418 if not hasattr(self, "_abbr"):
419 self._abbr = webnotes.conn.get_value("Company", self.doc.company, "abbr")
420
Anand Doshi21f4ea32013-05-10 18:08:32 +0530421 return self._abbr