blob: 480214018c944b7f10f871d5f2f785b582a290be [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 Hait89a94d82013-03-19 12:01:46 +053027from controllers.stock_controller import StockController
Nabin Haitbf495c92013-01-30 12:49:08 +053028
Rushabh Mehtaecb36f22013-05-02 11:34:37 +053029class WrongWarehouseCompany(Exception): pass
30
Nabin Hait89a94d82013-03-19 12:01:46 +053031class BuyingController(StockController):
Saurabh6f753182013-03-20 12:55:28 +053032 def validate(self):
33 super(BuyingController, self).validate()
Nabin Hait205f7ce2013-04-26 13:35:06 +053034 self.validate_stock_or_nonstock_items()
Rushabh Mehtaecb36f22013-05-02 11:34:37 +053035 self.validate_warehouse_belongs_to_company()
Anand Doshif8f0c0d2013-01-17 20:20:56 +053036 if self.meta.get_field("currency"):
37 self.company_currency = get_company_currency(self.doc.company)
38 self.validate_conversion_rate("currency", "conversion_rate")
Anand Doshi8957bf92013-01-17 20:29:28 +053039
40 if self.doc.price_list_name and self.doc.price_list_currency:
41 self.validate_conversion_rate("price_list_currency", "plc_conversion_rate")
Anand Doshi8595fcf2013-02-08 19:28:14 +053042
43 # IMPORTANT: enable this only when client side code is similar to this one
Anand Doshi3576b182013-02-08 19:30:06 +053044 # self.calculate_taxes_and_totals()
Saurabh6f753182013-03-20 12:55:28 +053045
Nabin Haitd3b62502013-01-21 17:24:31 +053046 # set total in words
Nabin Hait5b4c2942013-01-22 11:12:02 +053047 self.set_total_in_words()
Rushabh Mehtaecb36f22013-05-02 11:34:37 +053048
49 def validate_warehouse_belongs_to_company(self):
Rushabh Mehtac7115982013-05-02 14:22:40 +053050 for warehouse, company in webnotes.conn.get_values("Warehouse",
51 self.doclist.get_distinct_values("warehouse"), "company").items():
52 if company and company != self.doc.company:
Anand Doshieb41ffd2013-05-02 18:10:19 +053053 webnotes.msgprint(_("Company mismatch for Warehouse") + (": %s" % (warehouse,)),
Rushabh Mehtaecb36f22013-05-02 11:34:37 +053054 raise_exception=WrongWarehouseCompany)
Rushabh Mehtac7115982013-05-02 14:22:40 +053055
Nabin Hait205f7ce2013-04-26 13:35:06 +053056 def validate_stock_or_nonstock_items(self):
57 items = [d.item_code for d in self.doclist.get({"parentfield": self.fname})]
Nabin Haitd58d1b52013-04-26 17:25:44 +053058 if self.stock_items:
Nabin Hait205f7ce2013-04-26 13:35:06 +053059 nonstock_items = list(set(items) - set(self.stock_items))
Nabin Haitd58d1b52013-04-26 17:25:44 +053060 if nonstock_items:
61 webnotes.msgprint(_("Stock and non-stock items can not be entered in the same ") +
62 self.doc.doctype + _(""". You should make separate documents for them.
63 Stock Items: """) + ", ".join(self.stock_items) + _("""
64 Non-stock Items: """) + ", ".join(nonstock_items), raise_exception=1)
Nabin Hait205f7ce2013-04-26 13:35:06 +053065
66 elif items and not self.stock_items:
67 tax_for_valuation = [d.account_head for d in
68 self.doclist.get({"parentfield": "purchase_tax_details"})
69 if d.category in ["Valuation", "Valuation and Total"]]
70 if tax_for_valuation:
71 webnotes.msgprint(_("""Tax Category can not be 'Valuation' or 'Valuation and Total'
72 as all items are non-stock items"""), raise_exception=1)
73
Anand Doshi756dca72013-01-15 18:39:21 +053074 def update_item_details(self):
75 for item in self.doclist.get({"parentfield": self.fname}):
76 ret = get_item_details({
77 "doctype": self.doc.doctype,
78 "docname": self.doc.name,
79 "item_code": item.item_code,
80 "warehouse": item.warehouse,
81 "supplier": self.doc.supplier,
82 "transaction_date": self.doc.posting_date,
Nabin Haitc10c90a2013-02-06 11:44:43 +053083 "conversion_rate": self.doc.conversion_rate,
84 "price_list_name": self.doc.price_list_name,
85 "price_list_currency": self.doc.price_list_currency,
86 "plc_conversion_rate": self.doc.plc_conversion_rate
Anand Doshi756dca72013-01-15 18:39:21 +053087 })
88 for r in ret:
89 if not item.fields.get(r):
90 item.fields[r] = ret[r]
Anand Doshif8f0c0d2013-01-17 20:20:56 +053091
92 def validate_conversion_rate(self, currency_field, conversion_rate_field):
93 """common validation for currency and price list currency"""
94
95 currency = self.doc.fields.get(currency_field)
96 conversion_rate = flt(self.doc.fields.get(conversion_rate_field))
97 conversion_rate_label = self.meta.get_label(conversion_rate_field)
98
99 if conversion_rate == 0:
100 msgprint(conversion_rate_label + _(' cannot be 0'), raise_exception=True)
101
102 # parenthesis for 'OR' are necessary as we want it to evaluate as
103 # mandatory valid condition and (1st optional valid condition
104 # or 2nd optional valid condition)
105 valid_conversion_rate = (conversion_rate and
106 ((currency == self.company_currency and conversion_rate == 1.00)
107 or (currency != self.company_currency and conversion_rate != 1.00)))
108
109 if not valid_conversion_rate:
110 msgprint(_('Please enter valid ') + conversion_rate_label + (': ')
Nabin Hait10221982013-01-18 16:47:39 +0530111 + ("1 %s = [?] %s" % (currency, self.company_currency)),
Anand Doshif8f0c0d2013-01-17 20:20:56 +0530112 raise_exception=True)
Nabin Haitd3b62502013-01-21 17:24:31 +0530113
114 def set_total_in_words(self):
Nabin Hait5b4c2942013-01-22 11:12:02 +0530115 from webnotes.utils import money_in_words
Nabin Haitd3b62502013-01-21 17:24:31 +0530116 company_currency = get_company_currency(self.doc.company)
Nabin Hait5b4c2942013-01-22 11:12:02 +0530117 if self.meta.get_field("in_words"):
118 self.doc.in_words = money_in_words(self.doc.grand_total, company_currency)
119 if self.meta.get_field("in_words_import"):
120 self.doc.in_words_import = money_in_words(self.doc.grand_total_import,
Anand Doshi613cb6a2013-02-06 17:33:46 +0530121 self.doc.currency)
122
123 def calculate_taxes_and_totals(self):
Anand Doshi62090462013-02-07 19:47:34 +0530124 self.doc.conversion_rate = flt(self.doc.conversion_rate)
Anand Doshi8595fcf2013-02-08 19:28:14 +0530125 self.item_doclist = self.doclist.get({"parentfield": self.fname})
126 self.tax_doclist = self.doclist.get({"parentfield": "purchase_tax_details"})
Anand Doshi62090462013-02-07 19:47:34 +0530127
Anand Doshi8595fcf2013-02-08 19:28:14 +0530128 self.calculate_item_values()
129 self.initialize_taxes()
130 self.calculate_net_total()
131 self.calculate_taxes()
132 self.calculate_totals()
133 self.calculate_outstanding_amount()
134
135 self._cleanup()
136
137 def calculate_item_values(self):
138 def _set_base(item, print_field, base_field):
139 """set values in base currency"""
140 item.fields[base_field] = flt((flt(item.fields[print_field],
141 self.precision.item[print_field]) * self.doc.conversion_rate),
142 self.precision.item[base_field])
Anand Doshib8b1e582013-05-06 12:52:46 +0530143
144 # hack! - cleaned up in _cleanup()
145 if self.doc.doctype != "Purchase Invoice":
146 self.precision.item["rate"] = self.precision.item.purchase_rate
Anand Doshia1d4b782013-02-26 18:09:47 +0530147
Anand Doshib8b1e582013-05-06 12:52:46 +0530148 for item in self.item_doclist:
Anand Doshia1d4b782013-02-26 18:09:47 +0530149 # hack! - cleaned up in _cleanup()
150 if self.doc.doctype != "Purchase Invoice":
151 item.rate = item.purchase_rate
Anand Doshia1d4b782013-02-26 18:09:47 +0530152
Anand Doshib8b1e582013-05-06 12:52:46 +0530153 round_floats_in_doc(item, self.precision.item)
Anand Doshi8595fcf2013-02-08 19:28:14 +0530154
Anand Doshib8b1e582013-05-06 12:52:46 +0530155 if item.discount_rate == 100:
156 item.import_ref_rate = item.import_ref_rate or item.import_rate
Anand Doshi8595fcf2013-02-08 19:28:14 +0530157 item.import_rate = 0
158 else:
159 if item.import_ref_rate:
Anand Doshib8b1e582013-05-06 12:52:46 +0530160 item.import_rate = flt(item.import_ref_rate * (1.0 - (item.discount_rate / 100.0)),
Anand Doshi8595fcf2013-02-08 19:28:14 +0530161 self.precision.item.import_rate)
162 else:
Anand Doshib8b1e582013-05-06 12:52:46 +0530163 # assume that print rate and discount_rate are specified
164 item.import_ref_rate = flt(item.import_rate / (1.0 - (item.discount_rate / 100.0)),
Anand Doshi8595fcf2013-02-08 19:28:14 +0530165 self.precision.item.import_ref_rate)
Anand Doshia1d4b782013-02-26 18:09:47 +0530166
Anand Doshi8595fcf2013-02-08 19:28:14 +0530167 item.import_amount = flt(item.import_rate * item.qty,
168 self.precision.item.import_amount)
Anand Doshia1d4b782013-02-26 18:09:47 +0530169
Anand Doshi8595fcf2013-02-08 19:28:14 +0530170 _set_base(item, "import_ref_rate", "purchase_ref_rate")
171 _set_base(item, "import_rate", "rate")
172 _set_base(item, "import_amount", "amount")
173
174 def initialize_taxes(self):
175 for tax in self.tax_doclist:
176 # initialize totals to 0
177 tax.tax_amount = tax.total = 0.0
178
179 # temporary fields
180 tax.tax_amount_for_current_item = tax.grand_total_for_current_item = 0.0
181
182 tax.item_wise_tax_detail = {}
183
184 self.validate_on_previous_row(tax)
185
186 round_floats_in_doc(tax, self.precision.tax)
187
188 def calculate_net_total(self):
189 self.doc.net_total = 0
190 self.doc.net_total_import = 0
191
192 for item in self.item_doclist:
193 self.doc.net_total += item.amount
194 self.doc.net_total_import += item.import_amount
195
196 self.doc.net_total = flt(self.doc.net_total, self.precision.main.net_total)
197 self.doc.net_total_import = flt(self.doc.net_total_import,
198 self.precision.main.net_total_import)
199
200 def calculate_taxes(self):
201 for item in self.item_doclist:
202 item_tax_map = self._load_item_tax_rate(item.item_tax_rate)
203 item.item_tax_amount = 0
204
205 for i, tax in enumerate(self.tax_doclist):
206 # tax_amount represents the amount of tax for the current step
207 current_tax_amount = self.get_current_tax_amount(item, tax, item_tax_map)
208
209 self.set_item_tax_amount(item, tax, current_tax_amount)
210
211 # case when net total is 0 but there is an actual type charge
212 # in this case add the actual amount to tax.tax_amount
213 # and tax.grand_total_for_current_item for the first such iteration
214 if not (current_tax_amount or self.doc.net_total or tax.tax_amount) and \
215 tax.charge_type=="Actual":
216 zero_net_total_adjustment = flt(tax.rate, self.precision.tax.tax_amount)
217 current_tax_amount += zero_net_total_adjustment
218
219 # store tax_amount for current item as it will be used for
220 # charge type = 'On Previous Row Amount'
221 tax.tax_amount_for_current_item = current_tax_amount
222
223 # accumulate tax amount into tax.tax_amount
224 tax.tax_amount += tax.tax_amount_for_current_item
225
226 if tax.category == "Valuation":
227 # if just for valuation, do not add the tax amount in total
228 # hence, setting it as 0 for further steps
229 current_tax_amount = 0
230 else:
231 current_tax_amount *= tax.add_deduct_tax == "Deduct" and -1.0 or 1.0
232
233 # Calculate tax.total viz. grand total till that step
234 # note: grand_total_for_current_item contains the contribution of
235 # item's amount, previously applied tax and the current tax on that item
236 if i==0:
237 tax.grand_total_for_current_item = flt(item.amount +
238 current_tax_amount, self.precision.tax.total)
239
240 else:
241 tax.grand_total_for_current_item = \
242 flt(self.tax_doclist[i-1].grand_total_for_current_item +
243 current_tax_amount, self.precision.tax.total)
244
245 # in tax.total, accumulate grand total of each item
246 tax.total += tax.grand_total_for_current_item
247
248 # store tax_breakup for each item
249 # DOUBT: should valuation type amount also be stored?
250 tax.item_wise_tax_detail[item.item_code] = current_tax_amount
251
252 def calculate_totals(self):
253 if self.tax_doclist:
254 self.doc.grand_total = flt(self.tax_doclist[-1].total,
255 self.precision.main.grand_total)
256 self.doc.grand_total_import = flt(
257 self.doc.grand_total / self.doc.conversion_rate,
258 self.precision.main.grand_total_import)
259 else:
260 self.doc.grand_total = flt(self.doc.net_total,
261 self.precision.main.grand_total)
Anand Doshi4a7248e2013-02-27 18:10:30 +0530262 self.doc.grand_total_import = flt(
Anand Doshi8595fcf2013-02-08 19:28:14 +0530263 self.doc.grand_total / self.doc.conversion_rate,
264 self.precision.main.grand_total_import)
265
266 self.doc.total_tax = \
267 flt(self.doc.grand_total - self.doc.net_total,
268 self.precision.main.total_tax)
269
270 if self.meta.get_field("rounded_total"):
271 self.doc.rounded_total = round(self.doc.grand_total)
272
273 if self.meta.get_field("rounded_total_import"):
274 self.doc.rounded_total_import = round(self.doc.grand_total_import)
275
276 def calculate_outstanding_amount(self):
277 if self.doc.doctype == "Purchase Invoice" and self.doc.docstatus == 0:
278 self.doc.total_advance = flt(self.doc.total_advance,
279 self.precision.main.total_advance)
Anand Doshi9d794fc2013-02-27 13:34:22 +0530280 self.doc.total_amount_to_pay = flt(self.doc.grand_total - flt(self.doc.write_off_amount,
281 self.precision.main.write_off_amount), self.precision.main.total_amount_to_pay)
282 self.doc.outstanding_amount = flt(self.doc.total_amount_to_pay - self.doc.total_advance,
Anand Doshi8595fcf2013-02-08 19:28:14 +0530283 self.precision.main.outstanding_amount)
284
285 def _cleanup(self):
286 for tax in self.tax_doclist:
287 del tax.fields["grand_total_for_current_item"]
288 del tax.fields["tax_amount_for_current_item"]
289 tax.item_wise_tax_detail = json.dumps(tax.item_wise_tax_detail)
290
291 # except in purchase invoice, rate field is purchase_rate
292 if self.doc.doctype != "Purchase Invoice":
293 for item in self.item_doclist:
294 item.purchase_rate = item.rate
295 del item.fields["rate"]
Anand Doshia1d4b782013-02-26 18:09:47 +0530296
Anand Doshi8595fcf2013-02-08 19:28:14 +0530297 def validate_on_previous_row(self, tax):
298 """
299 validate if a valid row id is mentioned in case of
300 On Previous Row Amount and On Previous Row Total
301 """
302 if tax.charge_type in ["On Previous Row Amount", "On Previous Row Total"] and \
303 (not tax.row_id or cint(tax.row_id) >= tax.idx):
304 msgprint((_("Row") + " # %(idx)s [%(taxes_doctype)s]: " + \
305 _("Please specify a valid") + " %(row_id_label)s") % {
306 "idx": tax.idx,
307 "taxes_doctype": tax.parenttype,
308 "row_id_label": self.meta.get_label("row_id",
309 parentfield="purchase_tax_details")
310 }, raise_exception=True)
311
312 def _load_item_tax_rate(self, item_tax_rate):
313 if not item_tax_rate:
314 return {}
315 return json.loads(item_tax_rate)
316
317 def get_current_tax_amount(self, item, tax, item_tax_map):
318 tax_rate = self._get_tax_rate(tax, item_tax_map)
319
320 if tax.charge_type == "Actual":
321 # distribute the tax amount proportionally to each item row
322 actual = flt(tax.rate, self.precision.tax.tax_amount)
323 current_tax_amount = (self.doc.net_total
324 and ((item.amount / self.doc.net_total) * actual)
325 or 0)
326 elif tax.charge_type == "On Net Total":
327 current_tax_amount = (tax_rate / 100.0) * item.amount
328 elif tax.charge_type == "On Previous Row Amount":
329 current_tax_amount = (tax_rate / 100.0) * \
330 self.tax_doclist[cint(tax.row_id) - 1].tax_amount_for_current_item
331 elif tax.charge_type == "On Previous Row Total":
332 current_tax_amount = (tax_rate / 100.0) * \
333 self.tax_doclist[cint(tax.row_id) - 1].grand_total_for_current_item
334
335 return flt(current_tax_amount, self.precision.tax.tax_amount)
336
337 def _get_tax_rate(self, tax, item_tax_map):
338 if item_tax_map.has_key(tax.account_head):
339 return flt(item_tax_map.get(tax.account_head), self.precision.tax.rate)
340 else:
341 return tax.rate
342
343 def set_item_tax_amount(self, item, tax, current_tax_amount):
344 """
345 item_tax_amount is the total tax amount applied on that item
346 stored for valuation
347
348 TODO: rename item_tax_amount to valuation_tax_amount
349 """
350 if tax.category in ["Valuation", "Valuation and Total"] and \
351 item.item_code in self.stock_items:
352 item.item_tax_amount += flt(current_tax_amount,
353 self.precision.item.item_tax_amount)
Anand Doshi4a7248e2013-02-27 18:10:30 +0530354
355 # update valuation rate
356 def update_valuation_rate(self, parentfield):
357 for d in self.doclist.get({"parentfield": parentfield}):
Nabin Hait0fc24542013-03-25 11:06:00 +0530358 d.conversion_factor = d.conversion_factor or flt(webnotes.conn.get_value(
Nabin Haita9afc252013-03-01 10:41:41 +0530359 "UOM Conversion Detail", {"parent": d.item_code, "uom": d.uom},
Nabin Hait0fc24542013-03-25 11:06:00 +0530360 "conversion_factor")) or 1
Anand Doshi1bfec3a2013-02-28 19:17:46 +0530361 if d.item_code and d.qty:
362 # if no item code, which is sometimes the case in purchase invoice,
363 # then it is not possible to track valuation against it
Anand Doshi4a7248e2013-02-27 18:10:30 +0530364 d.valuation_rate = (flt(d.purchase_rate or d.rate)
365 + (flt(d.item_tax_amount) + flt(d.rm_supp_cost)) / flt(d.qty)
366 ) / flt(d.conversion_factor)
367 else:
368 d.valuation_rate = 0.0
Nabin Hait54d209f2013-03-01 18:51:10 +0530369
370 def validate_for_subcontracting(self):
371 if not self.doc.is_subcontracted and self.sub_contracted_items:
372 webnotes.msgprint(_("""Please enter whether %s is made for subcontracting or purchasing,
373 in 'Is Subcontracted' field""" % self.doc.doctype), raise_exception=1)
374
375 if self.doc.doctype == "Purchase Receipt" and self.doc.is_subcontracted=="Yes" \
376 and not self.doc.supplier_warehouse:
377 webnotes.msgprint(_("Supplier Warehouse mandatory subcontracted purchase receipt"),
378 raise_exception=1)
379
380 def update_raw_materials_supplied(self, raw_material_table):
381 self.doclist = self.doc.clear_table(self.doclist, raw_material_table)
382 if self.doc.is_subcontracted=="Yes":
383 for item in self.doclist.get({"parentfield": self.fname}):
384 if item.item_code in self.sub_contracted_items:
385 self.add_bom_items(item, raw_material_table)
386
387 def add_bom_items(self, d, raw_material_table):
388 bom_items = self.get_items_from_default_bom(d.item_code)
389 raw_materials_cost = 0
390 for item in bom_items:
391 required_qty = flt(item.qty_consumed_per_unit) * flt(d.qty) * flt(d.conversion_factor)
392 rm_doclist = {
393 "parentfield": raw_material_table,
394 "doctype": self.doc.doctype + " Item Supplied",
395 "reference_name": d.name,
396 "bom_detail_no": item.name,
397 "main_item_code": d.item_code,
398 "rm_item_code": item.item_code,
399 "stock_uom": item.stock_uom,
400 "required_qty": required_qty,
401 "conversion_factor": d.conversion_factor,
402 "rate": item.rate,
403 "amount": required_qty * flt(item.rate)
404 }
405 if self.doc.doctype == "Purchase Receipt":
406 rm_doclist.update({
407 "consumed_qty": required_qty,
408 "description": item.description,
409 })
410
411 self.doclist.append(rm_doclist)
412
413 raw_materials_cost += required_qty * flt(item.rate)
414
415 if self.doc.doctype == "Purchase Receipt":
416 d.rm_supp_cost = raw_materials_cost
417
418 def get_items_from_default_bom(self, item_code):
419 # print webnotes.conn.sql("""select name from `tabBOM` where item = '_Test FG Item'""")
420 bom_items = webnotes.conn.sql("""select t2.item_code, t2.qty_consumed_per_unit,
421 t2.rate, t2.stock_uom, t2.name, t2.description
422 from `tabBOM` t1, `tabBOM Item` t2
423 where t2.parent = t1.name and t1.item = %s and t1.is_default = 1
424 and t1.docstatus = 1 and t1.is_active = 1""", item_code, as_dict=1)
425 if not bom_items:
426 msgprint(_("No default BOM exists for item: ") + item_code, raise_exception=1)
427
428 return bom_items
429
Anand Doshi8595fcf2013-02-08 19:28:14 +0530430
431 @property
Anand Doshi8595fcf2013-02-08 19:28:14 +0530432 def precision(self):
433 if not hasattr(self, "_precision"):
434 self._precision = webnotes._dict()
435 self._precision.main = self.meta.get_precision_map()
436 self._precision.item = self.meta.get_precision_map(parentfield = self.fname)
437 if self.meta.get_field("purchase_tax_details"):
438 self._precision.tax = self.meta.get_precision_map(parentfield = \
439 "purchase_tax_details")
440 return self._precision
Nabin Hait5418d712013-02-27 18:11:17 +0530441
442 @property
443 def sub_contracted_items(self):
444 if not hasattr(self, "_sub_contracted_items"):
Nabin Haitebd51442013-04-23 15:36:26 +0530445 self._sub_contracted_items = []
Nabin Hait5418d712013-02-27 18:11:17 +0530446 item_codes = list(set(item.item_code for item in
447 self.doclist.get({"parentfield": self.fname})))
Nabin Haitebd51442013-04-23 15:36:26 +0530448 if item_codes:
449 self._sub_contracted_items = [r[0] for r in webnotes.conn.sql("""select name
450 from `tabItem` where name in (%s) and is_sub_contracted_item='Yes'""" % \
451 (", ".join((["%s"]*len(item_codes))),), item_codes)]
Nabin Hait5418d712013-02-27 18:11:17 +0530452
453 return self._sub_contracted_items
454
455 @property
456 def purchase_items(self):
457 if not hasattr(self, "_purchase_items"):
Nabin Haitebd51442013-04-23 15:36:26 +0530458 self._purchase_items = []
Nabin Hait5418d712013-02-27 18:11:17 +0530459 item_codes = list(set(item.item_code for item in
460 self.doclist.get({"parentfield": self.fname})))
Nabin Haitebd51442013-04-23 15:36:26 +0530461 if item_codes:
462 self._purchase_items = [r[0] for r in webnotes.conn.sql("""select name
463 from `tabItem` where name in (%s) and is_purchase_item='Yes'""" % \
464 (", ".join((["%s"]*len(item_codes))),), item_codes)]
Nabin Hait5418d712013-02-27 18:11:17 +0530465
Anand Doshi55d9a622013-02-27 18:14:28 +0530466 return self._purchase_items