Anand Doshi | 756dca7 | 2013-01-15 18:39:21 +0530 | [diff] [blame] | 1 | # 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 | |
| 17 | from __future__ import unicode_literals |
| 18 | import webnotes |
Anand Doshi | f8f0c0d | 2013-01-17 20:20:56 +0530 | [diff] [blame] | 19 | from webnotes import _, msgprint |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 20 | from webnotes.utils import flt, cint |
| 21 | import json |
Anand Doshi | 756dca7 | 2013-01-15 18:39:21 +0530 | [diff] [blame] | 22 | |
| 23 | from buying.utils import get_item_details |
Anand Doshi | f8f0c0d | 2013-01-17 20:20:56 +0530 | [diff] [blame] | 24 | from setup.utils import get_company_currency |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 25 | from webnotes.model.utils import round_floats_in_doc |
Anand Doshi | 756dca7 | 2013-01-15 18:39:21 +0530 | [diff] [blame] | 26 | |
Nabin Hait | 89a94d8 | 2013-03-19 12:01:46 +0530 | [diff] [blame] | 27 | from controllers.stock_controller import StockController |
Nabin Hait | bf495c9 | 2013-01-30 12:49:08 +0530 | [diff] [blame] | 28 | |
Nabin Hait | 89a94d8 | 2013-03-19 12:01:46 +0530 | [diff] [blame] | 29 | class BuyingController(StockController): |
Saurabh | 6f75318 | 2013-03-20 12:55:28 +0530 | [diff] [blame] | 30 | def validate(self): |
| 31 | super(BuyingController, self).validate() |
Anand Doshi | f8f0c0d | 2013-01-17 20:20:56 +0530 | [diff] [blame] | 32 | if self.meta.get_field("currency"): |
| 33 | self.company_currency = get_company_currency(self.doc.company) |
| 34 | self.validate_conversion_rate("currency", "conversion_rate") |
Anand Doshi | 8957bf9 | 2013-01-17 20:29:28 +0530 | [diff] [blame] | 35 | |
| 36 | if self.doc.price_list_name and self.doc.price_list_currency: |
| 37 | self.validate_conversion_rate("price_list_currency", "plc_conversion_rate") |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 38 | |
| 39 | # IMPORTANT: enable this only when client side code is similar to this one |
Anand Doshi | 3576b18 | 2013-02-08 19:30:06 +0530 | [diff] [blame] | 40 | # self.calculate_taxes_and_totals() |
Saurabh | 6f75318 | 2013-03-20 12:55:28 +0530 | [diff] [blame] | 41 | |
Nabin Hait | d3b6250 | 2013-01-21 17:24:31 +0530 | [diff] [blame] | 42 | # set total in words |
Nabin Hait | 5b4c294 | 2013-01-22 11:12:02 +0530 | [diff] [blame] | 43 | self.set_total_in_words() |
Anand Doshi | 756dca7 | 2013-01-15 18:39:21 +0530 | [diff] [blame] | 44 | |
| 45 | def update_item_details(self): |
| 46 | for item in self.doclist.get({"parentfield": self.fname}): |
| 47 | ret = get_item_details({ |
| 48 | "doctype": self.doc.doctype, |
| 49 | "docname": self.doc.name, |
| 50 | "item_code": item.item_code, |
| 51 | "warehouse": item.warehouse, |
| 52 | "supplier": self.doc.supplier, |
| 53 | "transaction_date": self.doc.posting_date, |
Nabin Hait | c10c90a | 2013-02-06 11:44:43 +0530 | [diff] [blame] | 54 | "conversion_rate": self.doc.conversion_rate, |
| 55 | "price_list_name": self.doc.price_list_name, |
| 56 | "price_list_currency": self.doc.price_list_currency, |
| 57 | "plc_conversion_rate": self.doc.plc_conversion_rate |
Anand Doshi | 756dca7 | 2013-01-15 18:39:21 +0530 | [diff] [blame] | 58 | }) |
| 59 | for r in ret: |
| 60 | if not item.fields.get(r): |
| 61 | item.fields[r] = ret[r] |
Anand Doshi | f8f0c0d | 2013-01-17 20:20:56 +0530 | [diff] [blame] | 62 | |
| 63 | def validate_conversion_rate(self, currency_field, conversion_rate_field): |
| 64 | """common validation for currency and price list currency""" |
| 65 | |
| 66 | currency = self.doc.fields.get(currency_field) |
| 67 | conversion_rate = flt(self.doc.fields.get(conversion_rate_field)) |
| 68 | conversion_rate_label = self.meta.get_label(conversion_rate_field) |
| 69 | |
| 70 | if conversion_rate == 0: |
| 71 | msgprint(conversion_rate_label + _(' cannot be 0'), raise_exception=True) |
| 72 | |
| 73 | # parenthesis for 'OR' are necessary as we want it to evaluate as |
| 74 | # mandatory valid condition and (1st optional valid condition |
| 75 | # or 2nd optional valid condition) |
| 76 | valid_conversion_rate = (conversion_rate and |
| 77 | ((currency == self.company_currency and conversion_rate == 1.00) |
| 78 | or (currency != self.company_currency and conversion_rate != 1.00))) |
| 79 | |
| 80 | if not valid_conversion_rate: |
| 81 | msgprint(_('Please enter valid ') + conversion_rate_label + (': ') |
Nabin Hait | 1022198 | 2013-01-18 16:47:39 +0530 | [diff] [blame] | 82 | + ("1 %s = [?] %s" % (currency, self.company_currency)), |
Anand Doshi | f8f0c0d | 2013-01-17 20:20:56 +0530 | [diff] [blame] | 83 | raise_exception=True) |
Nabin Hait | d3b6250 | 2013-01-21 17:24:31 +0530 | [diff] [blame] | 84 | |
| 85 | def set_total_in_words(self): |
Nabin Hait | 5b4c294 | 2013-01-22 11:12:02 +0530 | [diff] [blame] | 86 | from webnotes.utils import money_in_words |
Nabin Hait | d3b6250 | 2013-01-21 17:24:31 +0530 | [diff] [blame] | 87 | company_currency = get_company_currency(self.doc.company) |
Nabin Hait | 5b4c294 | 2013-01-22 11:12:02 +0530 | [diff] [blame] | 88 | if self.meta.get_field("in_words"): |
| 89 | self.doc.in_words = money_in_words(self.doc.grand_total, company_currency) |
| 90 | if self.meta.get_field("in_words_import"): |
| 91 | self.doc.in_words_import = money_in_words(self.doc.grand_total_import, |
Anand Doshi | 613cb6a | 2013-02-06 17:33:46 +0530 | [diff] [blame] | 92 | self.doc.currency) |
| 93 | |
| 94 | def calculate_taxes_and_totals(self): |
Anand Doshi | 6209046 | 2013-02-07 19:47:34 +0530 | [diff] [blame] | 95 | self.doc.conversion_rate = flt(self.doc.conversion_rate) |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 96 | self.item_doclist = self.doclist.get({"parentfield": self.fname}) |
| 97 | self.tax_doclist = self.doclist.get({"parentfield": "purchase_tax_details"}) |
Anand Doshi | 6209046 | 2013-02-07 19:47:34 +0530 | [diff] [blame] | 98 | |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 99 | self.calculate_item_values() |
| 100 | self.initialize_taxes() |
| 101 | self.calculate_net_total() |
| 102 | self.calculate_taxes() |
| 103 | self.calculate_totals() |
| 104 | self.calculate_outstanding_amount() |
| 105 | |
| 106 | self._cleanup() |
| 107 | |
| 108 | def calculate_item_values(self): |
| 109 | def _set_base(item, print_field, base_field): |
| 110 | """set values in base currency""" |
| 111 | item.fields[base_field] = flt((flt(item.fields[print_field], |
| 112 | self.precision.item[print_field]) * self.doc.conversion_rate), |
| 113 | self.precision.item[base_field]) |
| 114 | |
| 115 | for item in self.item_doclist: |
| 116 | round_floats_in_doc(item, self.precision.item) |
Anand Doshi | a1d4b78 | 2013-02-26 18:09:47 +0530 | [diff] [blame] | 117 | |
| 118 | # hack! - cleaned up in _cleanup() |
| 119 | if self.doc.doctype != "Purchase Invoice": |
| 120 | item.rate = item.purchase_rate |
| 121 | self.precision.item.rate = self.precision.item.purchase_rate |
| 122 | |
| 123 | item.discount = item.discount_rate |
| 124 | self.precision.item.discount = self.precision.item.discount_rate |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 125 | |
| 126 | if item.discount == 100: |
| 127 | if not item.import_ref_rate: |
| 128 | item.import_ref_rate = item.import_rate |
| 129 | item.import_rate = 0 |
| 130 | else: |
| 131 | if item.import_ref_rate: |
| 132 | item.import_rate = flt(item.import_ref_rate * |
| 133 | (1.0 - (item.discount_rate / 100.0)), |
| 134 | self.precision.item.import_rate) |
| 135 | else: |
| 136 | # assume that print rate and discount are specified |
| 137 | item.import_ref_rate = flt(item.import_rate / |
| 138 | (1.0 - (item.discount_rate / 100.0)), |
| 139 | self.precision.item.import_ref_rate) |
Anand Doshi | a1d4b78 | 2013-02-26 18:09:47 +0530 | [diff] [blame] | 140 | |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 141 | item.import_amount = flt(item.import_rate * item.qty, |
| 142 | self.precision.item.import_amount) |
Anand Doshi | a1d4b78 | 2013-02-26 18:09:47 +0530 | [diff] [blame] | 143 | |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 144 | _set_base(item, "import_ref_rate", "purchase_ref_rate") |
| 145 | _set_base(item, "import_rate", "rate") |
| 146 | _set_base(item, "import_amount", "amount") |
| 147 | |
| 148 | def initialize_taxes(self): |
| 149 | for tax in self.tax_doclist: |
| 150 | # initialize totals to 0 |
| 151 | tax.tax_amount = tax.total = 0.0 |
| 152 | |
| 153 | # temporary fields |
| 154 | tax.tax_amount_for_current_item = tax.grand_total_for_current_item = 0.0 |
| 155 | |
| 156 | tax.item_wise_tax_detail = {} |
| 157 | |
| 158 | self.validate_on_previous_row(tax) |
| 159 | |
| 160 | round_floats_in_doc(tax, self.precision.tax) |
| 161 | |
| 162 | def calculate_net_total(self): |
| 163 | self.doc.net_total = 0 |
| 164 | self.doc.net_total_import = 0 |
| 165 | |
| 166 | for item in self.item_doclist: |
| 167 | self.doc.net_total += item.amount |
| 168 | self.doc.net_total_import += item.import_amount |
| 169 | |
| 170 | self.doc.net_total = flt(self.doc.net_total, self.precision.main.net_total) |
| 171 | self.doc.net_total_import = flt(self.doc.net_total_import, |
| 172 | self.precision.main.net_total_import) |
| 173 | |
| 174 | def calculate_taxes(self): |
| 175 | for item in self.item_doclist: |
| 176 | item_tax_map = self._load_item_tax_rate(item.item_tax_rate) |
| 177 | item.item_tax_amount = 0 |
| 178 | |
| 179 | for i, tax in enumerate(self.tax_doclist): |
| 180 | # tax_amount represents the amount of tax for the current step |
| 181 | current_tax_amount = self.get_current_tax_amount(item, tax, item_tax_map) |
| 182 | |
| 183 | self.set_item_tax_amount(item, tax, current_tax_amount) |
| 184 | |
| 185 | # case when net total is 0 but there is an actual type charge |
| 186 | # in this case add the actual amount to tax.tax_amount |
| 187 | # and tax.grand_total_for_current_item for the first such iteration |
| 188 | if not (current_tax_amount or self.doc.net_total or tax.tax_amount) and \ |
| 189 | tax.charge_type=="Actual": |
| 190 | zero_net_total_adjustment = flt(tax.rate, self.precision.tax.tax_amount) |
| 191 | current_tax_amount += zero_net_total_adjustment |
| 192 | |
| 193 | # store tax_amount for current item as it will be used for |
| 194 | # charge type = 'On Previous Row Amount' |
| 195 | tax.tax_amount_for_current_item = current_tax_amount |
| 196 | |
| 197 | # accumulate tax amount into tax.tax_amount |
| 198 | tax.tax_amount += tax.tax_amount_for_current_item |
| 199 | |
| 200 | if tax.category == "Valuation": |
| 201 | # if just for valuation, do not add the tax amount in total |
| 202 | # hence, setting it as 0 for further steps |
| 203 | current_tax_amount = 0 |
| 204 | else: |
| 205 | current_tax_amount *= tax.add_deduct_tax == "Deduct" and -1.0 or 1.0 |
| 206 | |
| 207 | # Calculate tax.total viz. grand total till that step |
| 208 | # note: grand_total_for_current_item contains the contribution of |
| 209 | # item's amount, previously applied tax and the current tax on that item |
| 210 | if i==0: |
| 211 | tax.grand_total_for_current_item = flt(item.amount + |
| 212 | current_tax_amount, self.precision.tax.total) |
| 213 | |
| 214 | else: |
| 215 | tax.grand_total_for_current_item = \ |
| 216 | flt(self.tax_doclist[i-1].grand_total_for_current_item + |
| 217 | current_tax_amount, self.precision.tax.total) |
| 218 | |
| 219 | # in tax.total, accumulate grand total of each item |
| 220 | tax.total += tax.grand_total_for_current_item |
| 221 | |
| 222 | # store tax_breakup for each item |
| 223 | # DOUBT: should valuation type amount also be stored? |
| 224 | tax.item_wise_tax_detail[item.item_code] = current_tax_amount |
| 225 | |
| 226 | def calculate_totals(self): |
| 227 | if self.tax_doclist: |
| 228 | self.doc.grand_total = flt(self.tax_doclist[-1].total, |
| 229 | self.precision.main.grand_total) |
| 230 | self.doc.grand_total_import = flt( |
| 231 | self.doc.grand_total / self.doc.conversion_rate, |
| 232 | self.precision.main.grand_total_import) |
| 233 | else: |
| 234 | self.doc.grand_total = flt(self.doc.net_total, |
| 235 | self.precision.main.grand_total) |
Anand Doshi | 4a7248e | 2013-02-27 18:10:30 +0530 | [diff] [blame] | 236 | self.doc.grand_total_import = flt( |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 237 | self.doc.grand_total / self.doc.conversion_rate, |
| 238 | self.precision.main.grand_total_import) |
| 239 | |
| 240 | self.doc.total_tax = \ |
| 241 | flt(self.doc.grand_total - self.doc.net_total, |
| 242 | self.precision.main.total_tax) |
| 243 | |
| 244 | if self.meta.get_field("rounded_total"): |
| 245 | self.doc.rounded_total = round(self.doc.grand_total) |
| 246 | |
| 247 | if self.meta.get_field("rounded_total_import"): |
| 248 | self.doc.rounded_total_import = round(self.doc.grand_total_import) |
| 249 | |
| 250 | def calculate_outstanding_amount(self): |
| 251 | if self.doc.doctype == "Purchase Invoice" and self.doc.docstatus == 0: |
| 252 | self.doc.total_advance = flt(self.doc.total_advance, |
| 253 | self.precision.main.total_advance) |
Anand Doshi | 9d794fc | 2013-02-27 13:34:22 +0530 | [diff] [blame] | 254 | self.doc.total_amount_to_pay = flt(self.doc.grand_total - flt(self.doc.write_off_amount, |
| 255 | self.precision.main.write_off_amount), self.precision.main.total_amount_to_pay) |
| 256 | self.doc.outstanding_amount = flt(self.doc.total_amount_to_pay - self.doc.total_advance, |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 257 | self.precision.main.outstanding_amount) |
| 258 | |
| 259 | def _cleanup(self): |
| 260 | for tax in self.tax_doclist: |
| 261 | del tax.fields["grand_total_for_current_item"] |
| 262 | del tax.fields["tax_amount_for_current_item"] |
| 263 | tax.item_wise_tax_detail = json.dumps(tax.item_wise_tax_detail) |
| 264 | |
| 265 | # except in purchase invoice, rate field is purchase_rate |
| 266 | if self.doc.doctype != "Purchase Invoice": |
| 267 | for item in self.item_doclist: |
| 268 | item.purchase_rate = item.rate |
| 269 | del item.fields["rate"] |
Anand Doshi | a1d4b78 | 2013-02-26 18:09:47 +0530 | [diff] [blame] | 270 | |
| 271 | item.discount_rate = item.discount |
| 272 | del item.fields["discount"] |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 273 | |
| 274 | def validate_on_previous_row(self, tax): |
| 275 | """ |
| 276 | validate if a valid row id is mentioned in case of |
| 277 | On Previous Row Amount and On Previous Row Total |
| 278 | """ |
| 279 | if tax.charge_type in ["On Previous Row Amount", "On Previous Row Total"] and \ |
| 280 | (not tax.row_id or cint(tax.row_id) >= tax.idx): |
| 281 | msgprint((_("Row") + " # %(idx)s [%(taxes_doctype)s]: " + \ |
| 282 | _("Please specify a valid") + " %(row_id_label)s") % { |
| 283 | "idx": tax.idx, |
| 284 | "taxes_doctype": tax.parenttype, |
| 285 | "row_id_label": self.meta.get_label("row_id", |
| 286 | parentfield="purchase_tax_details") |
| 287 | }, raise_exception=True) |
| 288 | |
| 289 | def _load_item_tax_rate(self, item_tax_rate): |
| 290 | if not item_tax_rate: |
| 291 | return {} |
| 292 | return json.loads(item_tax_rate) |
| 293 | |
| 294 | def get_current_tax_amount(self, item, tax, item_tax_map): |
| 295 | tax_rate = self._get_tax_rate(tax, item_tax_map) |
| 296 | |
| 297 | if tax.charge_type == "Actual": |
| 298 | # distribute the tax amount proportionally to each item row |
| 299 | actual = flt(tax.rate, self.precision.tax.tax_amount) |
| 300 | current_tax_amount = (self.doc.net_total |
| 301 | and ((item.amount / self.doc.net_total) * actual) |
| 302 | or 0) |
| 303 | elif tax.charge_type == "On Net Total": |
| 304 | current_tax_amount = (tax_rate / 100.0) * item.amount |
| 305 | elif tax.charge_type == "On Previous Row Amount": |
| 306 | current_tax_amount = (tax_rate / 100.0) * \ |
| 307 | self.tax_doclist[cint(tax.row_id) - 1].tax_amount_for_current_item |
| 308 | elif tax.charge_type == "On Previous Row Total": |
| 309 | current_tax_amount = (tax_rate / 100.0) * \ |
| 310 | self.tax_doclist[cint(tax.row_id) - 1].grand_total_for_current_item |
| 311 | |
| 312 | return flt(current_tax_amount, self.precision.tax.tax_amount) |
| 313 | |
| 314 | def _get_tax_rate(self, tax, item_tax_map): |
| 315 | if item_tax_map.has_key(tax.account_head): |
| 316 | return flt(item_tax_map.get(tax.account_head), self.precision.tax.rate) |
| 317 | else: |
| 318 | return tax.rate |
| 319 | |
| 320 | def set_item_tax_amount(self, item, tax, current_tax_amount): |
| 321 | """ |
| 322 | item_tax_amount is the total tax amount applied on that item |
| 323 | stored for valuation |
| 324 | |
| 325 | TODO: rename item_tax_amount to valuation_tax_amount |
| 326 | """ |
| 327 | if tax.category in ["Valuation", "Valuation and Total"] and \ |
| 328 | item.item_code in self.stock_items: |
| 329 | item.item_tax_amount += flt(current_tax_amount, |
| 330 | self.precision.item.item_tax_amount) |
Anand Doshi | 4a7248e | 2013-02-27 18:10:30 +0530 | [diff] [blame] | 331 | |
| 332 | # update valuation rate |
| 333 | def update_valuation_rate(self, parentfield): |
| 334 | for d in self.doclist.get({"parentfield": parentfield}): |
Nabin Hait | 0fc2454 | 2013-03-25 11:06:00 +0530 | [diff] [blame] | 335 | d.conversion_factor = d.conversion_factor or flt(webnotes.conn.get_value( |
Nabin Hait | a9afc25 | 2013-03-01 10:41:41 +0530 | [diff] [blame] | 336 | "UOM Conversion Detail", {"parent": d.item_code, "uom": d.uom}, |
Nabin Hait | 0fc2454 | 2013-03-25 11:06:00 +0530 | [diff] [blame] | 337 | "conversion_factor")) or 1 |
Anand Doshi | 1bfec3a | 2013-02-28 19:17:46 +0530 | [diff] [blame] | 338 | if d.item_code and d.qty: |
| 339 | # if no item code, which is sometimes the case in purchase invoice, |
| 340 | # then it is not possible to track valuation against it |
Anand Doshi | 4a7248e | 2013-02-27 18:10:30 +0530 | [diff] [blame] | 341 | d.valuation_rate = (flt(d.purchase_rate or d.rate) |
| 342 | + (flt(d.item_tax_amount) + flt(d.rm_supp_cost)) / flt(d.qty) |
| 343 | ) / flt(d.conversion_factor) |
| 344 | else: |
| 345 | d.valuation_rate = 0.0 |
Nabin Hait | 54d209f | 2013-03-01 18:51:10 +0530 | [diff] [blame] | 346 | |
| 347 | def validate_for_subcontracting(self): |
| 348 | if not self.doc.is_subcontracted and self.sub_contracted_items: |
| 349 | webnotes.msgprint(_("""Please enter whether %s is made for subcontracting or purchasing, |
| 350 | in 'Is Subcontracted' field""" % self.doc.doctype), raise_exception=1) |
| 351 | |
| 352 | if self.doc.doctype == "Purchase Receipt" and self.doc.is_subcontracted=="Yes" \ |
| 353 | and not self.doc.supplier_warehouse: |
| 354 | webnotes.msgprint(_("Supplier Warehouse mandatory subcontracted purchase receipt"), |
| 355 | raise_exception=1) |
| 356 | |
| 357 | def update_raw_materials_supplied(self, raw_material_table): |
| 358 | self.doclist = self.doc.clear_table(self.doclist, raw_material_table) |
| 359 | if self.doc.is_subcontracted=="Yes": |
| 360 | for item in self.doclist.get({"parentfield": self.fname}): |
| 361 | if item.item_code in self.sub_contracted_items: |
| 362 | self.add_bom_items(item, raw_material_table) |
| 363 | |
| 364 | def add_bom_items(self, d, raw_material_table): |
| 365 | bom_items = self.get_items_from_default_bom(d.item_code) |
| 366 | raw_materials_cost = 0 |
| 367 | for item in bom_items: |
| 368 | required_qty = flt(item.qty_consumed_per_unit) * flt(d.qty) * flt(d.conversion_factor) |
| 369 | rm_doclist = { |
| 370 | "parentfield": raw_material_table, |
| 371 | "doctype": self.doc.doctype + " Item Supplied", |
| 372 | "reference_name": d.name, |
| 373 | "bom_detail_no": item.name, |
| 374 | "main_item_code": d.item_code, |
| 375 | "rm_item_code": item.item_code, |
| 376 | "stock_uom": item.stock_uom, |
| 377 | "required_qty": required_qty, |
| 378 | "conversion_factor": d.conversion_factor, |
| 379 | "rate": item.rate, |
| 380 | "amount": required_qty * flt(item.rate) |
| 381 | } |
| 382 | if self.doc.doctype == "Purchase Receipt": |
| 383 | rm_doclist.update({ |
| 384 | "consumed_qty": required_qty, |
| 385 | "description": item.description, |
| 386 | }) |
| 387 | |
| 388 | self.doclist.append(rm_doclist) |
| 389 | |
| 390 | raw_materials_cost += required_qty * flt(item.rate) |
| 391 | |
| 392 | if self.doc.doctype == "Purchase Receipt": |
| 393 | d.rm_supp_cost = raw_materials_cost |
| 394 | |
| 395 | def get_items_from_default_bom(self, item_code): |
| 396 | # print webnotes.conn.sql("""select name from `tabBOM` where item = '_Test FG Item'""") |
| 397 | bom_items = webnotes.conn.sql("""select t2.item_code, t2.qty_consumed_per_unit, |
| 398 | t2.rate, t2.stock_uom, t2.name, t2.description |
| 399 | from `tabBOM` t1, `tabBOM Item` t2 |
| 400 | where t2.parent = t1.name and t1.item = %s and t1.is_default = 1 |
| 401 | and t1.docstatus = 1 and t1.is_active = 1""", item_code, as_dict=1) |
| 402 | if not bom_items: |
| 403 | msgprint(_("No default BOM exists for item: ") + item_code, raise_exception=1) |
| 404 | |
| 405 | return bom_items |
| 406 | |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 407 | |
| 408 | @property |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 409 | def precision(self): |
| 410 | if not hasattr(self, "_precision"): |
| 411 | self._precision = webnotes._dict() |
| 412 | self._precision.main = self.meta.get_precision_map() |
| 413 | self._precision.item = self.meta.get_precision_map(parentfield = self.fname) |
| 414 | if self.meta.get_field("purchase_tax_details"): |
| 415 | self._precision.tax = self.meta.get_precision_map(parentfield = \ |
| 416 | "purchase_tax_details") |
| 417 | return self._precision |
Nabin Hait | 5418d71 | 2013-02-27 18:11:17 +0530 | [diff] [blame] | 418 | |
| 419 | @property |
| 420 | def sub_contracted_items(self): |
| 421 | if not hasattr(self, "_sub_contracted_items"): |
Nabin Hait | ebd5144 | 2013-04-23 15:36:26 +0530 | [diff] [blame] | 422 | self._sub_contracted_items = [] |
Nabin Hait | 5418d71 | 2013-02-27 18:11:17 +0530 | [diff] [blame] | 423 | item_codes = list(set(item.item_code for item in |
| 424 | self.doclist.get({"parentfield": self.fname}))) |
Nabin Hait | ebd5144 | 2013-04-23 15:36:26 +0530 | [diff] [blame] | 425 | if item_codes: |
| 426 | self._sub_contracted_items = [r[0] for r in webnotes.conn.sql("""select name |
| 427 | from `tabItem` where name in (%s) and is_sub_contracted_item='Yes'""" % \ |
| 428 | (", ".join((["%s"]*len(item_codes))),), item_codes)] |
Nabin Hait | 5418d71 | 2013-02-27 18:11:17 +0530 | [diff] [blame] | 429 | |
| 430 | return self._sub_contracted_items |
| 431 | |
| 432 | @property |
| 433 | def purchase_items(self): |
| 434 | if not hasattr(self, "_purchase_items"): |
Nabin Hait | ebd5144 | 2013-04-23 15:36:26 +0530 | [diff] [blame] | 435 | self._purchase_items = [] |
Nabin Hait | 5418d71 | 2013-02-27 18:11:17 +0530 | [diff] [blame] | 436 | item_codes = list(set(item.item_code for item in |
| 437 | self.doclist.get({"parentfield": self.fname}))) |
Nabin Hait | ebd5144 | 2013-04-23 15:36:26 +0530 | [diff] [blame] | 438 | if item_codes: |
| 439 | self._purchase_items = [r[0] for r in webnotes.conn.sql("""select name |
| 440 | from `tabItem` where name in (%s) and is_purchase_item='Yes'""" % \ |
| 441 | (", ".join((["%s"]*len(item_codes))),), item_codes)] |
Nabin Hait | 5418d71 | 2013-02-27 18:11:17 +0530 | [diff] [blame] | 442 | |
Anand Doshi | 55d9a62 | 2013-02-27 18:14:28 +0530 | [diff] [blame] | 443 | return self._purchase_items |