blob: fe12cf2316c1a17ff1a1458dede457e3aa99fdb8 [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Nabin Hait3237c752015-02-17 11:11:11 +05302# License: GNU General Public License v3. See license.txt
3
4from __future__ import unicode_literals
5import json
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +05306import frappe, erpnext
Nabin Hait3769d872015-12-18 13:12:02 +05307from frappe import _, scrub
Nabin Haitb962fc12017-07-17 18:02:31 +05308from frappe.utils import cint, flt, round_based_on_smallest_currency_fraction
Nabin Hait613d0812015-02-23 11:58:15 +05309from erpnext.controllers.accounts_controller import validate_conversion_rate, \
10 validate_taxes_and_charges, validate_inclusive_tax
Nabin Hait3237c752015-02-17 11:11:11 +053011
Nabin Haitfe81da22015-02-18 12:23:18 +053012class calculate_taxes_and_totals(object):
Nabin Hait3237c752015-02-17 11:11:11 +053013 def __init__(self, doc):
14 self.doc = doc
Nabin Haitfe81da22015-02-18 12:23:18 +053015 self.calculate()
16
Nabin Hait3237c752015-02-17 11:11:11 +053017 def calculate(self):
18 self.discount_amount_applied = False
19 self._calculate()
20
21 if self.doc.meta.get_field("discount_amount"):
Nabin Hait3769d872015-12-18 13:12:02 +053022 self.set_discount_amount()
Nabin Hait3237c752015-02-17 11:11:11 +053023 self.apply_discount_amount()
24
Nabin Haitbd00e812015-02-17 12:50:51 +053025 if self.doc.doctype in ["Sales Invoice", "Purchase Invoice"]:
Nabin Hait3237c752015-02-17 11:11:11 +053026 self.calculate_total_advance()
Vishal Dhayaguded42242d2017-11-29 16:09:59 +053027
Nabin Hait852cb642017-07-05 12:58:19 +053028 if self.doc.meta.get_field("other_charges_calculation"):
29 self.set_item_wise_tax_breakup()
Nabin Hait3237c752015-02-17 11:11:11 +053030
31 def _calculate(self):
Faris Ansarieae2dda2018-05-02 12:19:30 +053032 self.validate_conversion_rate()
Nabin Haite7679702015-02-20 14:40:35 +053033 self.calculate_item_values()
34 self.initialize_taxes()
35 self.determine_exclusive_rate()
36 self.calculate_net_total()
37 self.calculate_taxes()
Nabin Haita1bf43b2015-03-17 10:50:47 +053038 self.manipulate_grand_total_for_inclusive_tax()
Nabin Haite7679702015-02-20 14:40:35 +053039 self.calculate_totals()
40 self._cleanup()
rohitwaghchaurea8fb2db2018-05-26 09:23:02 +053041 self.calculate_total_net_weight()
Nabin Haite7679702015-02-20 14:40:35 +053042
43 def validate_conversion_rate(self):
Nabin Hait3237c752015-02-17 11:11:11 +053044 # validate conversion rate
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +053045 company_currency = erpnext.get_company_currency(self.doc.company)
Nabin Hait3237c752015-02-17 11:11:11 +053046 if not self.doc.currency or self.doc.currency == company_currency:
47 self.doc.currency = company_currency
48 self.doc.conversion_rate = 1.0
49 else:
50 validate_conversion_rate(self.doc.currency, self.doc.conversion_rate,
51 self.doc.meta.get_label("conversion_rate"), self.doc.company)
52
53 self.doc.conversion_rate = flt(self.doc.conversion_rate)
54
Nabin Hait3237c752015-02-17 11:11:11 +053055 def calculate_item_values(self):
56 if not self.discount_amount_applied:
57 for item in self.doc.get("items"):
58 self.doc.round_floats_in(item)
59
60 if item.discount_percentage == 100:
61 item.rate = 0.0
Nabin Hait593242f2019-04-05 19:35:02 +053062 elif item.price_list_rate:
63 if not item.rate or (item.pricing_rules and item.discount_percentage > 0):
64 item.rate = flt(item.price_list_rate *
65 (1.0 - (item.discount_percentage / 100.0)), item.precision("rate"))
66 item.discount_amount = item.price_list_rate * (item.discount_percentage / 100.0)
67 elif item.discount_amount and item.pricing_rules:
68 item.rate = item.price_list_rate - item.discount_amount
Nabin Hait3237c752015-02-17 11:11:11 +053069
mbauskara52472c2016-03-05 15:10:25 +053070 if item.doctype in ['Quotation Item', 'Sales Order Item', 'Delivery Note Item', 'Sales Invoice Item']:
Shreya Shahbe690ef2017-11-14 17:22:41 +053071 item.rate_with_margin, item.base_rate_with_margin = self.calculate_margin(item)
Nabin Hait593242f2019-04-05 19:35:02 +053072 if item.discount_percentage:
73 if flt(item.rate_with_margin) > 0:
74 item.rate = flt(item.rate_with_margin * (1.0 - (item.discount_percentage / 100.0)), item.precision("rate"))
75 item.discount_amount = item.rate_with_margin - item.rate
76 elif flt(item.price_list_rate) > 0:
77 item.discount_amount = item.price_list_rate - item.rate
Rohit Waghchaure8bfe3302019-03-18 14:34:19 +053078 elif flt(item.price_list_rate) > 0 and not item.discount_amount:
79 item.discount_amount = item.price_list_rate - item.rate
mbauskara52472c2016-03-05 15:10:25 +053080
Nabin Haite7679702015-02-20 14:40:35 +053081 item.net_rate = item.rate
82 item.amount = flt(item.rate * item.qty, item.precision("amount"))
83 item.net_amount = item.amount
Nabin Hait3237c752015-02-17 11:11:11 +053084
Nabin Haite7679702015-02-20 14:40:35 +053085 self._set_in_company_currency(item, ["price_list_rate", "rate", "net_rate", "amount", "net_amount"])
Nabin Hait3237c752015-02-17 11:11:11 +053086
Nabin Haite7679702015-02-20 14:40:35 +053087 item.item_tax_amount = 0.0
88
89 def _set_in_company_currency(self, doc, fields):
Nabin Hait3237c752015-02-17 11:11:11 +053090 """set values in base currency"""
Nabin Haite7679702015-02-20 14:40:35 +053091 for f in fields:
92 val = flt(flt(doc.get(f), doc.precision(f)) * self.doc.conversion_rate, doc.precision("base_" + f))
93 doc.set("base_" + f, val)
Nabin Hait3237c752015-02-17 11:11:11 +053094
95 def initialize_taxes(self):
96 for tax in self.doc.get("taxes"):
Nabin Hait86cd4cc2015-02-28 19:11:51 +053097 if not self.discount_amount_applied:
98 validate_taxes_and_charges(tax)
99 validate_inclusive_tax(tax, self.doc)
Nabin Hait613d0812015-02-23 11:58:15 +0530100
Nabin Hait3237c752015-02-17 11:11:11 +0530101 tax.item_wise_tax_detail = {}
102 tax_fields = ["total", "tax_amount_after_discount_amount",
103 "tax_amount_for_current_item", "grand_total_for_current_item",
104 "tax_fraction_for_current_item", "grand_total_fraction_for_current_item"]
105
Nabin Haitde9c8a92015-02-23 01:06:00 +0530106 if tax.charge_type != "Actual" and \
107 not (self.discount_amount_applied and self.doc.apply_discount_on=="Grand Total"):
108 tax_fields.append("tax_amount")
Nabin Hait3237c752015-02-17 11:11:11 +0530109
110 for fieldname in tax_fields:
111 tax.set(fieldname, 0.0)
112
Nabin Hait3237c752015-02-17 11:11:11 +0530113 self.doc.round_floats_in(tax)
114
Nabin Hait3237c752015-02-17 11:11:11 +0530115 def determine_exclusive_rate(self):
Nabin Hait37b047d2015-02-23 16:01:33 +0530116 if not any((cint(tax.included_in_print_rate) for tax in self.doc.get("taxes"))):
117 return
Nabin Hait3237c752015-02-17 11:11:11 +0530118
119 for item in self.doc.get("items"):
120 item_tax_map = self._load_item_tax_rate(item.item_tax_rate)
121 cumulated_tax_fraction = 0
122 for i, tax in enumerate(self.doc.get("taxes")):
123 tax.tax_fraction_for_current_item = self.get_current_tax_fraction(tax, item_tax_map)
124
125 if i==0:
126 tax.grand_total_fraction_for_current_item = 1 + tax.tax_fraction_for_current_item
127 else:
128 tax.grand_total_fraction_for_current_item = \
129 self.doc.get("taxes")[i-1].grand_total_fraction_for_current_item \
130 + tax.tax_fraction_for_current_item
131
132 cumulated_tax_fraction += tax.tax_fraction_for_current_item
133
134 if cumulated_tax_fraction and not self.discount_amount_applied and item.qty:
Nabin Hait2e4de832017-09-19 14:53:16 +0530135 item.net_amount = flt(item.amount / (1 + cumulated_tax_fraction))
Nabin Haite7679702015-02-20 14:40:35 +0530136 item.net_rate = flt(item.net_amount / item.qty, item.precision("net_rate"))
Nabin Hait2e4de832017-09-19 14:53:16 +0530137 item.discount_percentage = flt(item.discount_percentage,
138 item.precision("discount_percentage"))
Nabin Hait3237c752015-02-17 11:11:11 +0530139
Nabin Haite7679702015-02-20 14:40:35 +0530140 self._set_in_company_currency(item, ["net_rate", "net_amount"])
141
Nabin Hait3237c752015-02-17 11:11:11 +0530142 def _load_item_tax_rate(self, item_tax_rate):
143 return json.loads(item_tax_rate) if item_tax_rate else {}
144
145 def get_current_tax_fraction(self, tax, item_tax_map):
146 """
147 Get tax fraction for calculating tax exclusive amount
148 from tax inclusive amount
149 """
150 current_tax_fraction = 0
151
152 if cint(tax.included_in_print_rate):
153 tax_rate = self._get_tax_rate(tax, item_tax_map)
154
155 if tax.charge_type == "On Net Total":
156 current_tax_fraction = tax_rate / 100.0
157
158 elif tax.charge_type == "On Previous Row Amount":
159 current_tax_fraction = (tax_rate / 100.0) * \
160 self.doc.get("taxes")[cint(tax.row_id) - 1].tax_fraction_for_current_item
161
162 elif tax.charge_type == "On Previous Row Total":
163 current_tax_fraction = (tax_rate / 100.0) * \
164 self.doc.get("taxes")[cint(tax.row_id) - 1].grand_total_fraction_for_current_item
165
Nabin Haita6ee8292015-05-15 12:02:01 +0530166 if getattr(tax, "add_deduct_tax", None):
167 current_tax_fraction *= -1.0 if (tax.add_deduct_tax == "Deduct") else 1.0
Nabin Hait3237c752015-02-17 11:11:11 +0530168 return current_tax_fraction
169
170 def _get_tax_rate(self, tax, item_tax_map):
Achilles Rasquinha87dab142018-03-08 14:21:48 +0530171 if tax.account_head in item_tax_map:
Nabin Hait3237c752015-02-17 11:11:11 +0530172 return flt(item_tax_map.get(tax.account_head), self.doc.precision("rate", tax))
173 else:
174 return tax.rate
175
176 def calculate_net_total(self):
Shreya Shahe3290382018-05-28 11:49:08 +0530177 self.doc.total_qty = self.doc.total = self.doc.base_total = self.doc.net_total = self.doc.base_net_total = 0.0
rohitwaghchaure3a595d02018-06-25 10:10:29 +0530178
Nabin Hait3237c752015-02-17 11:11:11 +0530179 for item in self.doc.get("items"):
Nabin Haitf0bc9b62015-02-23 01:40:01 +0530180 self.doc.total += item.amount
Shreya Shahe3290382018-05-28 11:49:08 +0530181 self.doc.total_qty += item.qty
Nabin Haitf0bc9b62015-02-23 01:40:01 +0530182 self.doc.base_total += item.base_amount
Nabin Haite7679702015-02-20 14:40:35 +0530183 self.doc.net_total += item.net_amount
184 self.doc.base_net_total += item.base_net_amount
Nabin Hait3237c752015-02-17 11:11:11 +0530185
Nabin Haitf0bc9b62015-02-23 01:40:01 +0530186 self.doc.round_floats_in(self.doc, ["total", "base_total", "net_total", "base_net_total"])
Nabin Hait3237c752015-02-17 11:11:11 +0530187
rohitwaghchaure3a595d02018-06-25 10:10:29 +0530188 if self.doc.doctype == 'Sales Invoice' and self.doc.is_pos:
189 self.doc.pos_total_qty = self.doc.total_qty
190
Nabin Hait3237c752015-02-17 11:11:11 +0530191 def calculate_taxes(self):
Nabin Hait2e4de832017-09-19 14:53:16 +0530192 self.doc.rounding_adjustment = 0
Nabin Hait3237c752015-02-17 11:11:11 +0530193 # maintain actual tax rate based on idx
Nabin Haite7679702015-02-20 14:40:35 +0530194 actual_tax_dict = dict([[tax.idx, flt(tax.tax_amount, tax.precision("tax_amount"))]
Nabin Hait3237c752015-02-17 11:11:11 +0530195 for tax in self.doc.get("taxes") if tax.charge_type == "Actual"])
196
197 for n, item in enumerate(self.doc.get("items")):
198 item_tax_map = self._load_item_tax_rate(item.item_tax_rate)
Nabin Hait3237c752015-02-17 11:11:11 +0530199 for i, tax in enumerate(self.doc.get("taxes")):
200 # tax_amount represents the amount of tax for the current step
201 current_tax_amount = self.get_current_tax_amount(item, tax, item_tax_map)
202
203 # Adjust divisional loss to the last item
204 if tax.charge_type == "Actual":
205 actual_tax_dict[tax.idx] -= current_tax_amount
206 if n == len(self.doc.get("items")) - 1:
207 current_tax_amount += actual_tax_dict[tax.idx]
208
Nabin Hait2b019ed2015-02-22 23:03:07 +0530209 # accumulate tax amount into tax.tax_amount
Nabin Haitde9c8a92015-02-23 01:06:00 +0530210 if tax.charge_type != "Actual" and \
211 not (self.discount_amount_applied and self.doc.apply_discount_on=="Grand Total"):
212 tax.tax_amount += current_tax_amount
Nabin Hait2b019ed2015-02-22 23:03:07 +0530213
Nabin Hait3237c752015-02-17 11:11:11 +0530214 # store tax_amount for current item as it will be used for
215 # charge type = 'On Previous Row Amount'
216 tax.tax_amount_for_current_item = current_tax_amount
217
Nabin Hait2b019ed2015-02-22 23:03:07 +0530218 # set tax after discount
Nabin Hait3237c752015-02-17 11:11:11 +0530219 tax.tax_amount_after_discount_amount += current_tax_amount
220
Nabin Haitcd951342017-07-31 18:07:45 +0530221 current_tax_amount = self.get_tax_amount_if_for_valuation_or_deduction(current_tax_amount, tax)
Nabin Hait3237c752015-02-17 11:11:11 +0530222
Nabin Hait3237c752015-02-17 11:11:11 +0530223 # note: grand_total_for_current_item contains the contribution of
224 # item's amount, previously applied tax and the current tax on that item
225 if i==0:
Nabin Haitcd951342017-07-31 18:07:45 +0530226 tax.grand_total_for_current_item = flt(item.net_amount + current_tax_amount)
Nabin Hait3237c752015-02-17 11:11:11 +0530227 else:
228 tax.grand_total_for_current_item = \
Nabin Haitcd951342017-07-31 18:07:45 +0530229 flt(self.doc.get("taxes")[i-1].grand_total_for_current_item + current_tax_amount)
Nabin Hait3237c752015-02-17 11:11:11 +0530230
231 # set precision in the last item iteration
232 if n == len(self.doc.get("items")) - 1:
233 self.round_off_totals(tax)
Nabin Haitcd951342017-07-31 18:07:45 +0530234 self.set_cumulative_total(i, tax)
235
236 self._set_in_company_currency(tax,
237 ["total", "tax_amount", "tax_amount_after_discount_amount"])
Anand Doshiec5ec602015-03-05 19:31:23 +0530238
Nabin Hait3237c752015-02-17 11:11:11 +0530239 # adjust Discount Amount loss in last tax iteration
Nabin Haitde9c8a92015-02-23 01:06:00 +0530240 if i == (len(self.doc.get("taxes")) - 1) and self.discount_amount_applied \
Nabin Haitdb53a782015-07-31 16:53:13 +0530241 and self.doc.discount_amount and self.doc.apply_discount_on == "Grand Total":
Nabin Hait2e4de832017-09-19 14:53:16 +0530242 self.doc.rounding_adjustment = flt(self.doc.grand_total
243 - flt(self.doc.discount_amount) - tax.total,
244 self.doc.precision("rounding_adjustment"))
Anand Doshiec5ec602015-03-05 19:31:23 +0530245
Nabin Haitcd951342017-07-31 18:07:45 +0530246 def get_tax_amount_if_for_valuation_or_deduction(self, tax_amount, tax):
247 # if just for valuation, do not add the tax amount in total
248 # if tax/charges is for deduction, multiply by -1
249 if getattr(tax, "category", None):
250 tax_amount = 0.0 if (tax.category == "Valuation") else tax_amount
Rushabh Mehta30dc9a12017-11-17 14:31:09 +0530251 if self.doc.doctype in ["Purchase Order", "Purchase Invoice", "Purchase Receipt", "Supplier Quotation"]:
252 tax_amount *= -1.0 if (tax.add_deduct_tax == "Deduct") else 1.0
Nabin Haitcd951342017-07-31 18:07:45 +0530253 return tax_amount
Anand Doshiec5ec602015-03-05 19:31:23 +0530254
Nabin Haitcd951342017-07-31 18:07:45 +0530255 def set_cumulative_total(self, row_idx, tax):
256 tax_amount = tax.tax_amount_after_discount_amount
257 tax_amount = self.get_tax_amount_if_for_valuation_or_deduction(tax_amount, tax)
258
259 if row_idx == 0:
260 tax.total = flt(self.doc.net_total + tax_amount, tax.precision("total"))
261 else:
262 tax.total = flt(self.doc.get("taxes")[row_idx-1].total + tax_amount, tax.precision("total"))
Nabin Hait3237c752015-02-17 11:11:11 +0530263
264 def get_current_tax_amount(self, item, tax, item_tax_map):
265 tax_rate = self._get_tax_rate(tax, item_tax_map)
266 current_tax_amount = 0.0
267
268 if tax.charge_type == "Actual":
269 # distribute the tax amount proportionally to each item row
Nabin Haite7679702015-02-20 14:40:35 +0530270 actual = flt(tax.tax_amount, tax.precision("tax_amount"))
271 current_tax_amount = item.net_amount*actual / self.doc.net_total if self.doc.net_total else 0.0
272
Nabin Hait3237c752015-02-17 11:11:11 +0530273 elif tax.charge_type == "On Net Total":
Nabin Haite7679702015-02-20 14:40:35 +0530274 current_tax_amount = (tax_rate / 100.0) * item.net_amount
Nabin Hait3237c752015-02-17 11:11:11 +0530275 elif tax.charge_type == "On Previous Row Amount":
276 current_tax_amount = (tax_rate / 100.0) * \
277 self.doc.get("taxes")[cint(tax.row_id) - 1].tax_amount_for_current_item
278 elif tax.charge_type == "On Previous Row Total":
279 current_tax_amount = (tax_rate / 100.0) * \
280 self.doc.get("taxes")[cint(tax.row_id) - 1].grand_total_for_current_item
Himanshu Mishra35b26272018-11-13 11:13:04 +0530281 elif tax.charge_type == "On Item Quantity":
282 current_tax_amount = tax_rate * item.stock_qty
Nabin Hait3237c752015-02-17 11:11:11 +0530283
Nabin Haite7679702015-02-20 14:40:35 +0530284 self.set_item_wise_tax(item, tax, tax_rate, current_tax_amount)
Nabin Hait3237c752015-02-17 11:11:11 +0530285
286 return current_tax_amount
287
Nabin Haite7679702015-02-20 14:40:35 +0530288 def set_item_wise_tax(self, item, tax, tax_rate, current_tax_amount):
289 # store tax breakup for each item
290 key = item.item_code or item.item_name
291 item_wise_tax_amount = current_tax_amount*self.doc.conversion_rate
292 if tax.item_wise_tax_detail.get(key):
293 item_wise_tax_amount += tax.item_wise_tax_detail[key][1]
294
Nabin Haitcaab5822017-08-24 16:22:28 +0530295 tax.item_wise_tax_detail[key] = [tax_rate,flt(item_wise_tax_amount)]
Nabin Haite7679702015-02-20 14:40:35 +0530296
Nabin Hait3237c752015-02-17 11:11:11 +0530297 def round_off_totals(self, tax):
Nabin Haite7679702015-02-20 14:40:35 +0530298 tax.tax_amount = flt(tax.tax_amount, tax.precision("tax_amount"))
Vishal Dhayaguded42242d2017-11-29 16:09:59 +0530299 tax.tax_amount_after_discount_amount = flt(tax.tax_amount_after_discount_amount,
Nabin Haitcd951342017-07-31 18:07:45 +0530300 tax.precision("tax_amount"))
Nabin Haitce245122015-02-22 20:14:49 +0530301
Nabin Haita1bf43b2015-03-17 10:50:47 +0530302 def manipulate_grand_total_for_inclusive_tax(self):
303 # if fully inclusive taxes and diff
Nabin Hait2e4de832017-09-19 14:53:16 +0530304 if self.doc.get("taxes") and any([cint(t.included_in_print_rate) for t in self.doc.get("taxes")]):
Nabin Haita1bf43b2015-03-17 10:50:47 +0530305 last_tax = self.doc.get("taxes")[-1]
Nabin Hait2e4de832017-09-19 14:53:16 +0530306 non_inclusive_tax_amount = sum([flt(d.tax_amount_after_discount_amount)
307 for d in self.doc.get("taxes") if not d.included_in_print_rate])
308 diff = self.doc.total + non_inclusive_tax_amount \
309 - flt(last_tax.total, last_tax.precision("total"))
310 if diff and abs(diff) <= (5.0 / 10**last_tax.precision("tax_amount")):
311 self.doc.rounding_adjustment = flt(flt(self.doc.rounding_adjustment) +
312 flt(diff), self.doc.precision("rounding_adjustment"))
Nabin Hait3237c752015-02-17 11:11:11 +0530313
314 def calculate_totals(self):
Nabin Hait2e4de832017-09-19 14:53:16 +0530315 self.doc.grand_total = flt(self.doc.get("taxes")[-1].total) + flt(self.doc.rounding_adjustment) \
316 if self.doc.get("taxes") else flt(self.doc.net_total)
Nabin Hait3237c752015-02-17 11:11:11 +0530317
Nabin Hait2e4de832017-09-19 14:53:16 +0530318 self.doc.total_taxes_and_charges = flt(self.doc.grand_total - self.doc.net_total
319 - flt(self.doc.rounding_adjustment), self.doc.precision("total_taxes_and_charges"))
Anand Doshiec5ec602015-03-05 19:31:23 +0530320
Nabin Hait2e4de832017-09-19 14:53:16 +0530321 self._set_in_company_currency(self.doc, ["total_taxes_and_charges", "rounding_adjustment"])
Anand Doshiec5ec602015-03-05 19:31:23 +0530322
Nabin Haitbd00e812015-02-17 12:50:51 +0530323 if self.doc.doctype in ["Quotation", "Sales Order", "Delivery Note", "Sales Invoice"]:
Nabin Haite7679702015-02-20 14:40:35 +0530324 self.doc.base_grand_total = flt(self.doc.grand_total * self.doc.conversion_rate) \
325 if self.doc.total_taxes_and_charges else self.doc.base_net_total
Nabin Hait3237c752015-02-17 11:11:11 +0530326 else:
Anand Doshiec5ec602015-03-05 19:31:23 +0530327 self.doc.taxes_and_charges_added = self.doc.taxes_and_charges_deducted = 0.0
Nabin Hait3237c752015-02-17 11:11:11 +0530328 for tax in self.doc.get("taxes"):
329 if tax.category in ["Valuation and Total", "Total"]:
330 if tax.add_deduct_tax == "Add":
Nabin Haitdb53a782015-07-31 16:53:13 +0530331 self.doc.taxes_and_charges_added += flt(tax.tax_amount_after_discount_amount)
Nabin Hait3237c752015-02-17 11:11:11 +0530332 else:
Nabin Haitdb53a782015-07-31 16:53:13 +0530333 self.doc.taxes_and_charges_deducted += flt(tax.tax_amount_after_discount_amount)
Nabin Hait3237c752015-02-17 11:11:11 +0530334
Nabin Haite7679702015-02-20 14:40:35 +0530335 self.doc.round_floats_in(self.doc, ["taxes_and_charges_added", "taxes_and_charges_deducted"])
Nabin Hait3237c752015-02-17 11:11:11 +0530336
Nabin Haite7679702015-02-20 14:40:35 +0530337 self.doc.base_grand_total = flt(self.doc.grand_total * self.doc.conversion_rate) \
338 if (self.doc.taxes_and_charges_added or self.doc.taxes_and_charges_deducted) \
339 else self.doc.base_net_total
Nabin Hait3237c752015-02-17 11:11:11 +0530340
Nabin Hait2e4de832017-09-19 14:53:16 +0530341 self._set_in_company_currency(self.doc,
342 ["taxes_and_charges_added", "taxes_and_charges_deducted"])
Nabin Hait3237c752015-02-17 11:11:11 +0530343
Nabin Haite7679702015-02-20 14:40:35 +0530344 self.doc.round_floats_in(self.doc, ["grand_total", "base_grand_total"])
Nabin Hait3237c752015-02-17 11:11:11 +0530345
Nabin Hait2e4de832017-09-19 14:53:16 +0530346 self.set_rounded_total()
347
rohitwaghchaurea8fb2db2018-05-26 09:23:02 +0530348 def calculate_total_net_weight(self):
349 if self.doc.meta.get_field('total_net_weight'):
350 self.doc.total_net_weight = 0.0
351 for d in self.doc.items:
352 if d.total_weight:
353 self.doc.total_net_weight += d.total_weight
354
Nabin Hait2e4de832017-09-19 14:53:16 +0530355 def set_rounded_total(self):
Nabin Hait3237c752015-02-17 11:11:11 +0530356 if self.doc.meta.get_field("rounded_total"):
Nabin Hait877e1bb2017-11-17 12:27:43 +0530357 if self.doc.is_rounded_total_disabled():
358 self.doc.rounded_total = self.doc.base_rounded_total = 0
359 return
360
Anand Doshi15f7b1e2016-04-04 15:03:28 +0530361 self.doc.rounded_total = round_based_on_smallest_currency_fraction(self.doc.grand_total,
Nabin Haitfb0b24a2016-01-20 14:46:26 +0530362 self.doc.currency, self.doc.precision("rounded_total"))
Nabin Hait2e4de832017-09-19 14:53:16 +0530363
Nabin Hait877e1bb2017-11-17 12:27:43 +0530364 #if print_in_rate is set, we would have already calculated rounding adjustment
365 self.doc.rounding_adjustment += flt(self.doc.rounded_total - self.doc.grand_total,
366 self.doc.precision("rounding_adjustment"))
367
Nabin Hait02ac9012017-11-22 16:12:20 +0530368 self._set_in_company_currency(self.doc, ["rounding_adjustment", "rounded_total"])
Nabin Hait877e1bb2017-11-17 12:27:43 +0530369
Nabin Hait3237c752015-02-17 11:11:11 +0530370 def _cleanup(self):
371 for tax in self.doc.get("taxes"):
372 tax.item_wise_tax_detail = json.dumps(tax.item_wise_tax_detail, separators=(',', ':'))
Anand Doshi15f7b1e2016-04-04 15:03:28 +0530373
Nabin Hait3769d872015-12-18 13:12:02 +0530374 def set_discount_amount(self):
Nabin Haite0405102016-10-13 12:14:32 +0530375 if self.doc.additional_discount_percentage:
Anand Doshi15f7b1e2016-04-04 15:03:28 +0530376 self.doc.discount_amount = flt(flt(self.doc.get(scrub(self.doc.apply_discount_on)))
Nabin Hait3769d872015-12-18 13:12:02 +0530377 * self.doc.additional_discount_percentage / 100, self.doc.precision("discount_amount"))
Nabin Hait3237c752015-02-17 11:11:11 +0530378
379 def apply_discount_amount(self):
380 if self.doc.discount_amount:
Nabin Hait37b047d2015-02-23 16:01:33 +0530381 if not self.doc.apply_discount_on:
382 frappe.throw(_("Please select Apply Discount On"))
383
Nabin Hait3237c752015-02-17 11:11:11 +0530384 self.doc.base_discount_amount = flt(self.doc.discount_amount * self.doc.conversion_rate,
385 self.doc.precision("base_discount_amount"))
386
Nabin Haite7679702015-02-20 14:40:35 +0530387 total_for_discount_amount = self.get_total_for_discount_amount()
Nabin Hait25bd84d2015-03-04 15:06:56 +0530388 taxes = self.doc.get("taxes")
389 net_total = 0
Nabin Hait3237c752015-02-17 11:11:11 +0530390
Nabin Haite7679702015-02-20 14:40:35 +0530391 if total_for_discount_amount:
Nabin Hait3237c752015-02-17 11:11:11 +0530392 # calculate item amount after Discount Amount
Nabin Hait25bd84d2015-03-04 15:06:56 +0530393 for i, item in enumerate(self.doc.get("items")):
394 distributed_amount = flt(self.doc.discount_amount) * \
395 item.net_amount / total_for_discount_amount
Anand Doshiec5ec602015-03-05 19:31:23 +0530396
Nabin Haite7679702015-02-20 14:40:35 +0530397 item.net_amount = flt(item.net_amount - distributed_amount, item.precision("net_amount"))
Nabin Hait25bd84d2015-03-04 15:06:56 +0530398 net_total += item.net_amount
Anand Doshiec5ec602015-03-05 19:31:23 +0530399
Nabin Hait25bd84d2015-03-04 15:06:56 +0530400 # discount amount rounding loss adjustment if no taxes
401 if (not taxes or self.doc.apply_discount_on == "Net Total") \
402 and i == len(self.doc.get("items")) - 1:
Rushabh Mehtac6bd7ad2016-12-21 17:30:29 +0530403 discount_amount_loss = flt(self.doc.net_total - net_total - self.doc.discount_amount,
Nabin Hait25bd84d2015-03-04 15:06:56 +0530404 self.doc.precision("net_total"))
Rushabh Mehtac6bd7ad2016-12-21 17:30:29 +0530405
Anand Doshiec5ec602015-03-05 19:31:23 +0530406 item.net_amount = flt(item.net_amount + discount_amount_loss,
Nabin Hait25bd84d2015-03-04 15:06:56 +0530407 item.precision("net_amount"))
Anand Doshiec5ec602015-03-05 19:31:23 +0530408
Nabin Hait51e980d2015-10-10 18:10:05 +0530409 item.net_rate = flt(item.net_amount / item.qty, item.precision("net_rate")) if item.qty else 0
Anand Doshiec5ec602015-03-05 19:31:23 +0530410
Nabin Haite7679702015-02-20 14:40:35 +0530411 self._set_in_company_currency(item, ["net_rate", "net_amount"])
Nabin Hait3237c752015-02-17 11:11:11 +0530412
413 self.discount_amount_applied = True
414 self._calculate()
415 else:
416 self.doc.base_discount_amount = 0
417
Nabin Haite7679702015-02-20 14:40:35 +0530418 def get_total_for_discount_amount(self):
Nabin Haitde9c8a92015-02-23 01:06:00 +0530419 if self.doc.apply_discount_on == "Net Total":
420 return self.doc.net_total
Nabin Haite7679702015-02-20 14:40:35 +0530421 else:
422 actual_taxes_dict = {}
Nabin Hait3237c752015-02-17 11:11:11 +0530423
Nabin Haite7679702015-02-20 14:40:35 +0530424 for tax in self.doc.get("taxes"):
425 if tax.charge_type == "Actual":
Nabin Haitaf9bdfe2017-12-12 18:50:05 +0530426 tax_amount = self.get_tax_amount_if_for_valuation_or_deduction(tax.tax_amount, tax)
427 actual_taxes_dict.setdefault(tax.idx, tax_amount)
Nabin Haite7679702015-02-20 14:40:35 +0530428 elif tax.row_id in actual_taxes_dict:
429 actual_tax_amount = flt(actual_taxes_dict.get(tax.row_id, 0)) * flt(tax.rate) / 100
430 actual_taxes_dict.setdefault(tax.idx, actual_tax_amount)
Nabin Hait3237c752015-02-17 11:11:11 +0530431
Nabin Hait877e1bb2017-11-17 12:27:43 +0530432 return flt(self.doc.grand_total - sum(actual_taxes_dict.values()),
433 self.doc.precision("grand_total"))
Nabin Hait3237c752015-02-17 11:11:11 +0530434
435
Nabin Hait7b19b9e2015-02-24 09:42:24 +0530436 def calculate_total_advance(self):
437 if self.doc.docstatus < 2:
Nabin Haite7679702015-02-20 14:40:35 +0530438 total_allocated_amount = sum([flt(adv.allocated_amount, adv.precision("allocated_amount"))
Nabin Hait3237c752015-02-17 11:11:11 +0530439 for adv in self.doc.get("advances")])
440
Nabin Haite7679702015-02-20 14:40:35 +0530441 self.doc.total_advance = flt(total_allocated_amount, self.doc.precision("total_advance"))
Anand Doshi15f7b1e2016-04-04 15:03:28 +0530442
Faris Ansari6041f5c2018-02-08 13:33:52 +0530443 grand_total = self.doc.rounded_total or self.doc.grand_total
444
Nabin Hait289ffb72016-02-08 11:06:55 +0530445 if self.doc.party_account_currency == self.doc.currency:
Faris Ansari6041f5c2018-02-08 13:33:52 +0530446 invoice_total = flt(grand_total - flt(self.doc.write_off_amount),
Nabin Hait289ffb72016-02-08 11:06:55 +0530447 self.doc.precision("grand_total"))
Nabin Hait8d8cba72017-04-03 17:26:22 +0530448 else:
Vishal Dhayaguded42242d2017-11-29 16:09:59 +0530449 base_write_off_amount = flt(flt(self.doc.write_off_amount) * self.doc.conversion_rate,
Nabin Hait8d8cba72017-04-03 17:26:22 +0530450 self.doc.precision("base_write_off_amount"))
Faris Ansari6041f5c2018-02-08 13:33:52 +0530451 invoice_total = flt(grand_total * self.doc.conversion_rate,
Nabin Hait8d8cba72017-04-03 17:26:22 +0530452 self.doc.precision("grand_total")) - base_write_off_amount
Vishal Dhayaguded42242d2017-11-29 16:09:59 +0530453
Nabin Haitadc09232016-02-09 10:31:11 +0530454 if invoice_total > 0 and self.doc.total_advance > invoice_total:
Nabin Hait289ffb72016-02-08 11:06:55 +0530455 frappe.throw(_("Advance amount cannot be greater than {0} {1}")
456 .format(self.doc.party_account_currency, invoice_total))
Nabin Hait3237c752015-02-17 11:11:11 +0530457
Rushabh Mehta8bb6e532015-02-18 20:22:59 +0530458 if self.doc.docstatus == 0:
Nabin Hait3237c752015-02-17 11:11:11 +0530459 self.calculate_outstanding_amount()
460
461 def calculate_outstanding_amount(self):
462 # NOTE:
463 # write_off_amount is only for POS Invoice
464 # total_advance is only for non POS Invoice
Rohit Waghchaureefb5bf22016-08-25 02:09:53 +0530465 if self.doc.doctype == "Sales Invoice":
466 self.calculate_paid_amount()
467
rohitwaghchaure70489252018-06-11 12:02:14 +0530468 if self.doc.is_return and self.doc.return_against: return
Anand Doshi15f7b1e2016-04-04 15:03:28 +0530469
Nabin Hait4ffd7f32015-08-27 12:28:36 +0530470 self.doc.round_floats_in(self.doc, ["grand_total", "total_advance", "write_off_amount"])
Anand Doshi15f7b1e2016-04-04 15:03:28 +0530471 self._set_in_company_currency(self.doc, ['write_off_amount'])
472
Nabin Hait877e1bb2017-11-17 12:27:43 +0530473 if self.doc.doctype in ["Sales Invoice", "Purchase Invoice"]:
474 grand_total = self.doc.rounded_total or self.doc.grand_total
475 if self.doc.party_account_currency == self.doc.currency:
Manas Solankida486ee2018-07-06 12:36:57 +0530476 total_amount_to_pay = flt(grand_total - self.doc.total_advance
Nabin Hait877e1bb2017-11-17 12:27:43 +0530477 - flt(self.doc.write_off_amount), self.doc.precision("grand_total"))
478 else:
479 total_amount_to_pay = flt(flt(grand_total *
480 self.doc.conversion_rate, self.doc.precision("grand_total")) - self.doc.total_advance
481 - flt(self.doc.base_write_off_amount), self.doc.precision("grand_total"))
Anand Doshi15f7b1e2016-04-04 15:03:28 +0530482
Nabin Hait4ffd7f32015-08-27 12:28:36 +0530483 self.doc.round_floats_in(self.doc, ["paid_amount"])
Nabin Hait877e1bb2017-11-17 12:27:43 +0530484 change_amount = 0
485
486 if self.doc.doctype == "Sales Invoice":
487 self.calculate_write_off_amount()
488 self.calculate_change_amount()
489 change_amount = self.doc.change_amount \
490 if self.doc.party_account_currency == self.doc.currency else self.doc.base_change_amount
491
Nabin Haitac3b2aa2017-05-30 15:35:01 +0530492 paid_amount = self.doc.paid_amount \
493 if self.doc.party_account_currency == self.doc.currency else self.doc.base_paid_amount
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530494
Nabin Hait877e1bb2017-11-17 12:27:43 +0530495 self.doc.outstanding_amount = flt(total_amount_to_pay - flt(paid_amount) + flt(change_amount),
496 self.doc.precision("outstanding_amount"))
Rushabh Mehtac6bd7ad2016-12-21 17:30:29 +0530497
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530498 def calculate_paid_amount(self):
Manas Solankida486ee2018-07-06 12:36:57 +0530499
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530500 paid_amount = base_paid_amount = 0.0
Rohit Waghchauref58cad62017-01-17 12:11:57 +0530501
502 if self.doc.is_pos:
503 for payment in self.doc.get('payments'):
Ayush Shuklae9cf1ab2017-05-25 14:14:55 +0530504 payment.amount = flt(payment.amount)
505 payment.base_amount = payment.amount * flt(self.doc.conversion_rate)
Rohit Waghchauref58cad62017-01-17 12:11:57 +0530506 paid_amount += payment.amount
507 base_paid_amount += payment.base_amount
rohitwaghchaure73456ac2017-05-16 11:29:57 +0530508 elif not self.doc.is_return:
509 self.doc.set('payments', [])
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530510
Manas Solankida486ee2018-07-06 12:36:57 +0530511 if self.doc.redeem_loyalty_points and self.doc.loyalty_amount:
512 base_paid_amount += self.doc.loyalty_amount
513 paid_amount += (self.doc.loyalty_amount / flt(self.doc.conversion_rate))
514
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530515 self.doc.paid_amount = flt(paid_amount, self.doc.precision("paid_amount"))
516 self.doc.base_paid_amount = flt(base_paid_amount, self.doc.precision("base_paid_amount"))
517
Nabin Hait3bb1a422016-08-02 16:41:10 +0530518 def calculate_change_amount(self):
519 self.doc.change_amount = 0.0
Rohit Waghchaure609e2b42016-08-31 02:04:37 +0530520 self.doc.base_change_amount = 0.0
Nabin Hait877e1bb2017-11-17 12:27:43 +0530521
522 if self.doc.doctype == "Sales Invoice" \
523 and self.doc.paid_amount > self.doc.grand_total and not self.doc.is_return \
Nabin Haitac3b2aa2017-05-30 15:35:01 +0530524 and any([d.type == "Cash" for d in self.doc.payments]):
Rohit Waghchauree8d22bb2018-02-05 18:13:29 +0530525 grand_total = self.doc.rounded_total or self.doc.grand_total
526 base_grand_total = self.doc.base_rounded_total or self.doc.base_grand_total
Nabin Haitac3b2aa2017-05-30 15:35:01 +0530527
Rohit Waghchauree8d22bb2018-02-05 18:13:29 +0530528 self.doc.change_amount = flt(self.doc.paid_amount - grand_total +
Nabin Hait3bb1a422016-08-02 16:41:10 +0530529 self.doc.write_off_amount, self.doc.precision("change_amount"))
Rohit Waghchaure6087fe12016-04-09 14:31:09 +0530530
Rohit Waghchauree8d22bb2018-02-05 18:13:29 +0530531 self.doc.base_change_amount = flt(self.doc.base_paid_amount - base_grand_total +
Rohit Waghchaure609e2b42016-08-31 02:04:37 +0530532 self.doc.base_write_off_amount, self.doc.precision("base_change_amount"))
mbauskar36b51892016-01-18 16:31:10 +0530533
Rohit Waghchaure7127a8f2016-08-04 14:56:15 +0530534 def calculate_write_off_amount(self):
Rohit Waghchaurebaef2622016-08-05 15:41:36 +0530535 if flt(self.doc.change_amount) > 0:
Nabin Hait877e1bb2017-11-17 12:27:43 +0530536 self.doc.write_off_amount = flt(self.doc.grand_total - self.doc.paid_amount
537 + self.doc.change_amount, self.doc.precision("write_off_amount"))
Rohit Waghchaurebaef2622016-08-05 15:41:36 +0530538 self.doc.base_write_off_amount = flt(self.doc.write_off_amount * self.doc.conversion_rate,
539 self.doc.precision("base_write_off_amount"))
Rohit Waghchaure7127a8f2016-08-04 14:56:15 +0530540
mbauskar36b51892016-01-18 16:31:10 +0530541 def calculate_margin(self, item):
Shreya Shahf718b0c2018-02-20 11:26:46 +0530542
Makarand Bauskar0e4c5c92017-05-11 11:40:02 +0530543 rate_with_margin = 0.0
Shreya Shahbe690ef2017-11-14 17:22:41 +0530544 base_rate_with_margin = 0.0
mbauskar36b51892016-01-18 16:31:10 +0530545 if item.price_list_rate:
Rohit Waghchaure8bfe3302019-03-18 14:34:19 +0530546 if item.pricing_rules and not self.doc.ignore_pricing_rule:
547 for d in item.pricing_rules.split(','):
548 pricing_rule = frappe.get_doc('Pricing Rule', d)
Shreya Shahf718b0c2018-02-20 11:26:46 +0530549
Rohit Waghchaure8bfe3302019-03-18 14:34:19 +0530550 if (pricing_rule.margin_type == 'Amount' and pricing_rule.currency == self.doc.currency)\
551 or (pricing_rule.margin_type == 'Percentage'):
552 item.margin_type = pricing_rule.margin_type
553 item.margin_rate_or_amount = pricing_rule.margin_rate_or_amount
554 else:
555 item.margin_type = None
556 item.margin_rate_or_amount = 0.0
mbauskar36b51892016-01-18 16:31:10 +0530557
mbauskara52472c2016-03-05 15:10:25 +0530558 if item.margin_type and item.margin_rate_or_amount:
559 margin_value = item.margin_rate_or_amount if item.margin_type == 'Amount' else flt(item.price_list_rate) * flt(item.margin_rate_or_amount) / 100
Makarand Bauskar0e4c5c92017-05-11 11:40:02 +0530560 rate_with_margin = flt(item.price_list_rate) + flt(margin_value)
Shreya Shahbe690ef2017-11-14 17:22:41 +0530561 base_rate_with_margin = flt(rate_with_margin) * flt(self.doc.conversion_rate)
mbauskar36b51892016-01-18 16:31:10 +0530562
Shreya Shahbe690ef2017-11-14 17:22:41 +0530563 return rate_with_margin, base_rate_with_margin
Nabin Hait852cb642017-07-05 12:58:19 +0530564
565 def set_item_wise_tax_breakup(self):
Nabin Hait9c421612017-07-20 13:32:01 +0530566 self.doc.other_charges_calculation = get_itemised_tax_breakup_html(self.doc)
Vishal Dhayaguded42242d2017-11-29 16:09:59 +0530567
Nabin Hait9c421612017-07-20 13:32:01 +0530568def get_itemised_tax_breakup_html(doc):
569 if not doc.taxes:
570 return
571 frappe.flags.company = doc.company
Vishal Dhayaguded42242d2017-11-29 16:09:59 +0530572
Nabin Hait9c421612017-07-20 13:32:01 +0530573 # get headers
Nabin Haitcaab5822017-08-24 16:22:28 +0530574 tax_accounts = []
575 for tax in doc.taxes:
576 if getattr(tax, "category", None) and tax.category=="Valuation":
577 continue
rohitwaghchaure4e17fae2017-12-12 14:40:52 +0530578 if tax.description not in tax_accounts:
Nabin Haitcaab5822017-08-24 16:22:28 +0530579 tax_accounts.append(tax.description)
580
Nabin Hait9c421612017-07-20 13:32:01 +0530581 headers = get_itemised_tax_breakup_header(doc.doctype + " Item", tax_accounts)
Vishal Dhayaguded42242d2017-11-29 16:09:59 +0530582
Nabin Hait9c421612017-07-20 13:32:01 +0530583 # get tax breakup data
584 itemised_tax, itemised_taxable_amount = get_itemised_tax_breakup_data(doc)
Nabin Haitcaab5822017-08-24 16:22:28 +0530585
586 get_rounded_tax_amount(itemised_tax, doc.precision("tax_amount", "taxes"))
587
rohitwaghchaured4526682017-12-28 14:20:13 +0530588 update_itemised_tax_data(doc)
Nabin Hait9c421612017-07-20 13:32:01 +0530589 frappe.flags.company = None
Vishal Dhayaguded42242d2017-11-29 16:09:59 +0530590
Nabin Hait9c421612017-07-20 13:32:01 +0530591 return frappe.render_template(
592 "templates/includes/itemised_tax_breakup.html", dict(
593 headers=headers,
594 itemised_tax=itemised_tax,
595 itemised_taxable_amount=itemised_taxable_amount,
596 tax_accounts=tax_accounts,
Faris Ansari69b05352018-05-14 14:19:31 +0530597 conversion_rate=doc.conversion_rate,
598 currency=doc.currency
Nabin Haitb962fc12017-07-17 18:02:31 +0530599 )
Nabin Hait9c421612017-07-20 13:32:01 +0530600 )
Nabin Hait852cb642017-07-05 12:58:19 +0530601
rohitwaghchaured4526682017-12-28 14:20:13 +0530602
603@erpnext.allow_regional
604def update_itemised_tax_data(doc):
605 #Don't delete this method, used for localization
606 pass
607
Nabin Haitb962fc12017-07-17 18:02:31 +0530608@erpnext.allow_regional
609def get_itemised_tax_breakup_header(item_doctype, tax_accounts):
610 return [_("Item"), _("Taxable Amount")] + tax_accounts
611
612@erpnext.allow_regional
613def get_itemised_tax_breakup_data(doc):
614 itemised_tax = get_itemised_tax(doc.taxes)
615
616 itemised_taxable_amount = get_itemised_taxable_amount(doc.items)
617
618 return itemised_tax, itemised_taxable_amount
619
620def get_itemised_tax(taxes):
621 itemised_tax = {}
622 for tax in taxes:
Nabin Haitcaab5822017-08-24 16:22:28 +0530623 if getattr(tax, "category", None) and tax.category=="Valuation":
624 continue
625
Nabin Haitb962fc12017-07-17 18:02:31 +0530626 item_tax_map = json.loads(tax.item_wise_tax_detail) if tax.item_wise_tax_detail else {}
Nabin Hait2e4de832017-09-19 14:53:16 +0530627 if item_tax_map:
628 for item_code, tax_data in item_tax_map.items():
629 itemised_tax.setdefault(item_code, frappe._dict())
Vishal Dhayaguded42242d2017-11-29 16:09:59 +0530630
Prateeksha Singhea7533f2018-06-11 13:31:33 +0530631 tax_rate = 0.0
632 tax_amount = 0.0
633
Nabin Hait2e4de832017-09-19 14:53:16 +0530634 if isinstance(tax_data, list):
Prateeksha Singhea7533f2018-06-11 13:31:33 +0530635 tax_rate = flt(tax_data[0])
636 tax_amount = flt(tax_data[1])
Nabin Hait2e4de832017-09-19 14:53:16 +0530637 else:
Prateeksha Singhea7533f2018-06-11 13:31:33 +0530638 tax_rate = flt(tax_data)
639
640 itemised_tax[item_code][tax.description] = frappe._dict(dict(
641 tax_rate = tax_rate,
642 tax_amount = tax_amount
643 ))
Rohit Waghchaure296fbfe2017-07-10 13:03:29 +0530644
Nabin Haitb962fc12017-07-17 18:02:31 +0530645 return itemised_tax
646
647def get_itemised_taxable_amount(items):
648 itemised_taxable_amount = frappe._dict()
649 for item in items:
Rohit Waghchaure296fbfe2017-07-10 13:03:29 +0530650 item_code = item.item_code or item.item_name
Nabin Haitb962fc12017-07-17 18:02:31 +0530651 itemised_taxable_amount.setdefault(item_code, 0)
652 itemised_taxable_amount[item_code] += item.net_amount
653
Nabin Haitcaab5822017-08-24 16:22:28 +0530654 return itemised_taxable_amount
655
656def get_rounded_tax_amount(itemised_tax, precision):
657 # Rounding based on tax_amount precision
658 for taxes in itemised_tax.values():
659 for tax_account in taxes:
Himanshu Mishra35b26272018-11-13 11:13:04 +0530660 taxes[tax_account]["tax_amount"] = flt(taxes[tax_account]["tax_amount"], precision)