blob: bbcd4926c3c6612be30f4f85c310758f603c635d [file] [log] [blame]
Anand Doshi756dca72013-01-15 18:39:21 +05301# ERPNext - web based ERP (http://erpnext.com)
2# Copyright (C) 2012 Web Notes Technologies Pvt Ltd
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17from __future__ import unicode_literals
18import webnotes
Anand Doshif8f0c0d2013-01-17 20:20:56 +053019from webnotes import _, msgprint
Anand Doshi8595fcf2013-02-08 19:28:14 +053020from webnotes.utils import flt, cint
21import json
Anand Doshi756dca72013-01-15 18:39:21 +053022
23from buying.utils import get_item_details
Anand Doshif8f0c0d2013-01-17 20:20:56 +053024from setup.utils import get_company_currency
Anand Doshi8595fcf2013-02-08 19:28:14 +053025from webnotes.model.utils import round_floats_in_doc
Anand Doshi756dca72013-01-15 18:39:21 +053026
Nabin Haitbf495c92013-01-30 12:49:08 +053027from controllers.accounts_controller import AccountsController
28
29class BuyingController(AccountsController):
Nabin Haitfb3fd6e2013-01-30 19:16:13 +053030 def validate(self):
Anand Doshif8f0c0d2013-01-17 20:20:56 +053031 if self.meta.get_field("currency"):
32 self.company_currency = get_company_currency(self.doc.company)
33 self.validate_conversion_rate("currency", "conversion_rate")
Anand Doshi8957bf92013-01-17 20:29:28 +053034
35 if self.doc.price_list_name and self.doc.price_list_currency:
36 self.validate_conversion_rate("price_list_currency", "plc_conversion_rate")
Anand Doshi8595fcf2013-02-08 19:28:14 +053037
38 # IMPORTANT: enable this only when client side code is similar to this one
Anand Doshi3576b182013-02-08 19:30:06 +053039 # self.calculate_taxes_and_totals()
Anand Doshi8595fcf2013-02-08 19:28:14 +053040
Nabin Haitd3b62502013-01-21 17:24:31 +053041 # set total in words
Nabin Hait5b4c2942013-01-22 11:12:02 +053042 self.set_total_in_words()
Anand Doshi756dca72013-01-15 18:39:21 +053043
44 def update_item_details(self):
45 for item in self.doclist.get({"parentfield": self.fname}):
46 ret = get_item_details({
47 "doctype": self.doc.doctype,
48 "docname": self.doc.name,
49 "item_code": item.item_code,
50 "warehouse": item.warehouse,
51 "supplier": self.doc.supplier,
52 "transaction_date": self.doc.posting_date,
Nabin Haitc10c90a2013-02-06 11:44:43 +053053 "conversion_rate": self.doc.conversion_rate,
54 "price_list_name": self.doc.price_list_name,
55 "price_list_currency": self.doc.price_list_currency,
56 "plc_conversion_rate": self.doc.plc_conversion_rate
Anand Doshi756dca72013-01-15 18:39:21 +053057 })
58 for r in ret:
59 if not item.fields.get(r):
60 item.fields[r] = ret[r]
Anand Doshif8f0c0d2013-01-17 20:20:56 +053061
62 def validate_conversion_rate(self, currency_field, conversion_rate_field):
63 """common validation for currency and price list currency"""
64
65 currency = self.doc.fields.get(currency_field)
66 conversion_rate = flt(self.doc.fields.get(conversion_rate_field))
67 conversion_rate_label = self.meta.get_label(conversion_rate_field)
68
69 if conversion_rate == 0:
70 msgprint(conversion_rate_label + _(' cannot be 0'), raise_exception=True)
71
72 # parenthesis for 'OR' are necessary as we want it to evaluate as
73 # mandatory valid condition and (1st optional valid condition
74 # or 2nd optional valid condition)
75 valid_conversion_rate = (conversion_rate and
76 ((currency == self.company_currency and conversion_rate == 1.00)
77 or (currency != self.company_currency and conversion_rate != 1.00)))
78
79 if not valid_conversion_rate:
80 msgprint(_('Please enter valid ') + conversion_rate_label + (': ')
Nabin Hait10221982013-01-18 16:47:39 +053081 + ("1 %s = [?] %s" % (currency, self.company_currency)),
Anand Doshif8f0c0d2013-01-17 20:20:56 +053082 raise_exception=True)
Nabin Haitd3b62502013-01-21 17:24:31 +053083
84 def set_total_in_words(self):
Nabin Hait5b4c2942013-01-22 11:12:02 +053085 from webnotes.utils import money_in_words
Nabin Haitd3b62502013-01-21 17:24:31 +053086 company_currency = get_company_currency(self.doc.company)
Nabin Hait5b4c2942013-01-22 11:12:02 +053087 if self.meta.get_field("in_words"):
88 self.doc.in_words = money_in_words(self.doc.grand_total, company_currency)
89 if self.meta.get_field("in_words_import"):
90 self.doc.in_words_import = money_in_words(self.doc.grand_total_import,
Anand Doshi613cb6a2013-02-06 17:33:46 +053091 self.doc.currency)
92
93 def calculate_taxes_and_totals(self):
Anand Doshi62090462013-02-07 19:47:34 +053094 self.doc.conversion_rate = flt(self.doc.conversion_rate)
Anand Doshi8595fcf2013-02-08 19:28:14 +053095 self.item_doclist = self.doclist.get({"parentfield": self.fname})
96 self.tax_doclist = self.doclist.get({"parentfield": "purchase_tax_details"})
Anand Doshi62090462013-02-07 19:47:34 +053097
Anand Doshi8595fcf2013-02-08 19:28:14 +053098 self.calculate_item_values()
99 self.initialize_taxes()
100 self.calculate_net_total()
101 self.calculate_taxes()
102 self.calculate_totals()
103 self.calculate_outstanding_amount()
104
105 self._cleanup()
106
107 def calculate_item_values(self):
108 def _set_base(item, print_field, base_field):
109 """set values in base currency"""
110 item.fields[base_field] = flt((flt(item.fields[print_field],
111 self.precision.item[print_field]) * self.doc.conversion_rate),
112 self.precision.item[base_field])
113
114 for item in self.item_doclist:
115 round_floats_in_doc(item, self.precision.item)
Anand Doshia1d4b782013-02-26 18:09:47 +0530116
117 # hack! - cleaned up in _cleanup()
118 if self.doc.doctype != "Purchase Invoice":
119 item.rate = item.purchase_rate
120 self.precision.item.rate = self.precision.item.purchase_rate
121
122 item.discount = item.discount_rate
123 self.precision.item.discount = self.precision.item.discount_rate
Anand Doshi8595fcf2013-02-08 19:28:14 +0530124
125 if item.discount == 100:
126 if not item.import_ref_rate:
127 item.import_ref_rate = item.import_rate
128 item.import_rate = 0
129 else:
130 if item.import_ref_rate:
131 item.import_rate = flt(item.import_ref_rate *
132 (1.0 - (item.discount_rate / 100.0)),
133 self.precision.item.import_rate)
134 else:
135 # assume that print rate and discount are specified
136 item.import_ref_rate = flt(item.import_rate /
137 (1.0 - (item.discount_rate / 100.0)),
138 self.precision.item.import_ref_rate)
Anand Doshia1d4b782013-02-26 18:09:47 +0530139
Anand Doshi8595fcf2013-02-08 19:28:14 +0530140 item.import_amount = flt(item.import_rate * item.qty,
141 self.precision.item.import_amount)
Anand Doshia1d4b782013-02-26 18:09:47 +0530142
Anand Doshi8595fcf2013-02-08 19:28:14 +0530143 _set_base(item, "import_ref_rate", "purchase_ref_rate")
144 _set_base(item, "import_rate", "rate")
145 _set_base(item, "import_amount", "amount")
146
147 def initialize_taxes(self):
148 for tax in self.tax_doclist:
149 # initialize totals to 0
150 tax.tax_amount = tax.total = 0.0
151
152 # temporary fields
153 tax.tax_amount_for_current_item = tax.grand_total_for_current_item = 0.0
154
155 tax.item_wise_tax_detail = {}
156
157 self.validate_on_previous_row(tax)
158
159 round_floats_in_doc(tax, self.precision.tax)
160
161 def calculate_net_total(self):
162 self.doc.net_total = 0
163 self.doc.net_total_import = 0
164
165 for item in self.item_doclist:
166 self.doc.net_total += item.amount
167 self.doc.net_total_import += item.import_amount
168
169 self.doc.net_total = flt(self.doc.net_total, self.precision.main.net_total)
170 self.doc.net_total_import = flt(self.doc.net_total_import,
171 self.precision.main.net_total_import)
172
173 def calculate_taxes(self):
174 for item in self.item_doclist:
175 item_tax_map = self._load_item_tax_rate(item.item_tax_rate)
176 item.item_tax_amount = 0
177
178 for i, tax in enumerate(self.tax_doclist):
179 # tax_amount represents the amount of tax for the current step
180 current_tax_amount = self.get_current_tax_amount(item, tax, item_tax_map)
181
182 self.set_item_tax_amount(item, tax, current_tax_amount)
183
184 # case when net total is 0 but there is an actual type charge
185 # in this case add the actual amount to tax.tax_amount
186 # and tax.grand_total_for_current_item for the first such iteration
187 if not (current_tax_amount or self.doc.net_total or tax.tax_amount) and \
188 tax.charge_type=="Actual":
189 zero_net_total_adjustment = flt(tax.rate, self.precision.tax.tax_amount)
190 current_tax_amount += zero_net_total_adjustment
191
192 # store tax_amount for current item as it will be used for
193 # charge type = 'On Previous Row Amount'
194 tax.tax_amount_for_current_item = current_tax_amount
195
196 # accumulate tax amount into tax.tax_amount
197 tax.tax_amount += tax.tax_amount_for_current_item
198
199 if tax.category == "Valuation":
200 # if just for valuation, do not add the tax amount in total
201 # hence, setting it as 0 for further steps
202 current_tax_amount = 0
203 else:
204 current_tax_amount *= tax.add_deduct_tax == "Deduct" and -1.0 or 1.0
205
206 # Calculate tax.total viz. grand total till that step
207 # note: grand_total_for_current_item contains the contribution of
208 # item's amount, previously applied tax and the current tax on that item
209 if i==0:
210 tax.grand_total_for_current_item = flt(item.amount +
211 current_tax_amount, self.precision.tax.total)
212
213 else:
214 tax.grand_total_for_current_item = \
215 flt(self.tax_doclist[i-1].grand_total_for_current_item +
216 current_tax_amount, self.precision.tax.total)
217
218 # in tax.total, accumulate grand total of each item
219 tax.total += tax.grand_total_for_current_item
220
221 # store tax_breakup for each item
222 # DOUBT: should valuation type amount also be stored?
223 tax.item_wise_tax_detail[item.item_code] = current_tax_amount
224
225 def calculate_totals(self):
226 if self.tax_doclist:
227 self.doc.grand_total = flt(self.tax_doclist[-1].total,
228 self.precision.main.grand_total)
229 self.doc.grand_total_import = flt(
230 self.doc.grand_total / self.doc.conversion_rate,
231 self.precision.main.grand_total_import)
232 else:
233 self.doc.grand_total = flt(self.doc.net_total,
234 self.precision.main.grand_total)
235 self.doc.grand_total_print = flt(
236 self.doc.grand_total / self.doc.conversion_rate,
237 self.precision.main.grand_total_import)
238
239 self.doc.total_tax = \
240 flt(self.doc.grand_total - self.doc.net_total,
241 self.precision.main.total_tax)
242
243 if self.meta.get_field("rounded_total"):
244 self.doc.rounded_total = round(self.doc.grand_total)
245
246 if self.meta.get_field("rounded_total_import"):
247 self.doc.rounded_total_import = round(self.doc.grand_total_import)
248
249 def calculate_outstanding_amount(self):
250 if self.doc.doctype == "Purchase Invoice" and self.doc.docstatus == 0:
251 self.doc.total_advance = flt(self.doc.total_advance,
252 self.precision.main.total_advance)
253 self.doc.outstanding_amount = flt(self.doc.grand_total - self.doc.total_advance,
254 self.precision.main.outstanding_amount)
255
256 def _cleanup(self):
257 for tax in self.tax_doclist:
258 del tax.fields["grand_total_for_current_item"]
259 del tax.fields["tax_amount_for_current_item"]
260 tax.item_wise_tax_detail = json.dumps(tax.item_wise_tax_detail)
261
262 # except in purchase invoice, rate field is purchase_rate
263 if self.doc.doctype != "Purchase Invoice":
264 for item in self.item_doclist:
265 item.purchase_rate = item.rate
266 del item.fields["rate"]
Anand Doshia1d4b782013-02-26 18:09:47 +0530267
268 item.discount_rate = item.discount
269 del item.fields["discount"]
Anand Doshi8595fcf2013-02-08 19:28:14 +0530270
271 def validate_on_previous_row(self, tax):
272 """
273 validate if a valid row id is mentioned in case of
274 On Previous Row Amount and On Previous Row Total
275 """
276 if tax.charge_type in ["On Previous Row Amount", "On Previous Row Total"] and \
277 (not tax.row_id or cint(tax.row_id) >= tax.idx):
278 msgprint((_("Row") + " # %(idx)s [%(taxes_doctype)s]: " + \
279 _("Please specify a valid") + " %(row_id_label)s") % {
280 "idx": tax.idx,
281 "taxes_doctype": tax.parenttype,
282 "row_id_label": self.meta.get_label("row_id",
283 parentfield="purchase_tax_details")
284 }, raise_exception=True)
285
286 def _load_item_tax_rate(self, item_tax_rate):
287 if not item_tax_rate:
288 return {}
289 return json.loads(item_tax_rate)
290
291 def get_current_tax_amount(self, item, tax, item_tax_map):
292 tax_rate = self._get_tax_rate(tax, item_tax_map)
293
294 if tax.charge_type == "Actual":
295 # distribute the tax amount proportionally to each item row
296 actual = flt(tax.rate, self.precision.tax.tax_amount)
297 current_tax_amount = (self.doc.net_total
298 and ((item.amount / self.doc.net_total) * actual)
299 or 0)
300 elif tax.charge_type == "On Net Total":
301 current_tax_amount = (tax_rate / 100.0) * item.amount
302 elif tax.charge_type == "On Previous Row Amount":
303 current_tax_amount = (tax_rate / 100.0) * \
304 self.tax_doclist[cint(tax.row_id) - 1].tax_amount_for_current_item
305 elif tax.charge_type == "On Previous Row Total":
306 current_tax_amount = (tax_rate / 100.0) * \
307 self.tax_doclist[cint(tax.row_id) - 1].grand_total_for_current_item
308
309 return flt(current_tax_amount, self.precision.tax.tax_amount)
310
311 def _get_tax_rate(self, tax, item_tax_map):
312 if item_tax_map.has_key(tax.account_head):
313 return flt(item_tax_map.get(tax.account_head), self.precision.tax.rate)
314 else:
315 return tax.rate
316
317 def set_item_tax_amount(self, item, tax, current_tax_amount):
318 """
319 item_tax_amount is the total tax amount applied on that item
320 stored for valuation
321
322 TODO: rename item_tax_amount to valuation_tax_amount
323 """
324 if tax.category in ["Valuation", "Valuation and Total"] and \
325 item.item_code in self.stock_items:
326 item.item_tax_amount += flt(current_tax_amount,
327 self.precision.item.item_tax_amount)
328
329 @property
Anand Doshi8595fcf2013-02-08 19:28:14 +0530330 def precision(self):
331 if not hasattr(self, "_precision"):
332 self._precision = webnotes._dict()
333 self._precision.main = self.meta.get_precision_map()
334 self._precision.item = self.meta.get_precision_map(parentfield = self.fname)
335 if self.meta.get_field("purchase_tax_details"):
336 self._precision.tax = self.meta.get_precision_map(parentfield = \
337 "purchase_tax_details")
338 return self._precision