blob: a181af73133fd76f2f630ca015e3c7a60981e479 [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302# License: GNU General Public License v3. See license.txt
Anand Doshi756dca72013-01-15 18:39:21 +05303
Chillar Anand915b3432021-09-02 16:44:59 +05304
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05305import frappe
marination293f6cb2021-11-16 14:22:26 +05306from frappe import ValidationError, _, msgprint
Rohit Waghchauref4dc7162018-11-15 17:04:02 +05307from frappe.contacts.doctype.address.address import get_address_display
Chillar Anand915b3432021-09-02 16:44:59 +05308from frappe.utils import cint, cstr, flt, getdate
Anand Doshi756dca72013-01-15 18:39:21 +05309
Rohit Waghchaure4d4fb6d2018-05-15 22:12:44 +053010from erpnext.accounts.doctype.budget.budget import validate_expense_against_budget
Chillar Anand915b3432021-09-02 16:44:59 +053011from erpnext.accounts.party import get_party_details
12from erpnext.buying.utils import update_last_purchase_rate, validate_for_items
Nabin Haita77b8c92020-12-21 14:45:50 +053013from erpnext.controllers.sales_and_purchase_return import get_rate_for_return
Rohit Waghchaure7b7ceaa2021-05-24 20:11:15 +053014from erpnext.controllers.stock_controller import StockController
15from erpnext.controllers.subcontracting import Subcontracting
Chillar Anand915b3432021-09-02 16:44:59 +053016from erpnext.stock.get_item_details import get_conversion_factor
17from erpnext.stock.utils import get_incoming_rate
18
marination293f6cb2021-11-16 14:22:26 +053019
20class QtyMismatchError(ValidationError):
21 pass
Rohit Waghchaure7b7ceaa2021-05-24 20:11:15 +053022
23class BuyingController(StockController, Subcontracting):
Faris Ansaribc6a2b22020-10-27 19:42:58 +053024
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053025 def get_feed(self):
rohitwaghchaurea1064a62016-03-03 14:00:35 +053026 if self.get("supplier_name"):
27 return _("From {0} | {1} {2}").format(self.supplier_name, self.currency,
28 self.grand_total)
Rushabh Mehtac0bb4532014-09-09 16:15:35 +053029
Saurabh6f753182013-03-20 12:55:28 +053030 def validate(self):
31 super(BuyingController, self).validate()
Nabin Hait365ae272014-04-03 17:38:54 +053032 if getattr(self, "supplier", None) and not self.supplier_name:
Nabin Hait1d218422015-07-17 15:19:02 +053033 self.supplier_name = frappe.db.get_value("Supplier", self.supplier, "supplier_name")
Rushabh Mehtaea0ff232016-07-07 14:02:26 +053034
Zarrarfc03a042018-06-04 12:52:52 +053035 self.validate_items()
nabinhait614fb752014-07-14 10:47:50 +053036 self.set_qty_as_per_stock_uom()
Nabin Hait205f7ce2013-04-26 13:35:06 +053037 self.validate_stock_or_nonstock_items()
Anand Doshi373680b2013-10-10 16:04:40 +053038 self.validate_warehouse()
Deepesh Garg15ff6a52020-02-18 12:28:41 +053039 self.validate_from_warehouse()
Rohit Waghchauref4dc7162018-11-15 17:04:02 +053040 self.set_supplier_address()
Saqib562fd0e2020-04-08 12:11:40 +053041 self.validate_asset_return()
Rushabh Mehtab33df4a2016-07-04 11:38:37 +053042
Nabin Hait14aa9c52016-04-18 15:54:01 +053043 if self.doctype=="Purchase Invoice":
44 self.validate_purchase_receipt_if_update_stock()
Rushabh Mehtab33df4a2016-07-04 11:38:37 +053045
Nabin Hait14aa9c52016-04-18 15:54:01 +053046 if self.doctype=="Purchase Receipt" or (self.doctype=="Purchase Invoice" and self.update_stock):
Rohit Waghchaure560ba392016-08-29 18:19:32 +053047 # self.validate_purchase_return()
Saurabhfbb342c2016-04-07 16:41:31 +053048 self.validate_rejected_warehouse()
49 self.validate_accepted_rejected_qty()
Rushabh Mehtacc8b2b22017-03-31 12:44:29 +053050 validate_for_items(self)
Rushabh Mehtab33df4a2016-07-04 11:38:37 +053051
Saurabhfbb342c2016-04-07 16:41:31 +053052 #sub-contracting
53 self.validate_for_subcontracting()
54 self.create_raw_materials_supplied("supplied_items")
55 self.set_landed_cost_voucher_amount()
Rushabh Mehtab33df4a2016-07-04 11:38:37 +053056
Nabin Hait14aa9c52016-04-18 15:54:01 +053057 if self.doctype in ("Purchase Receipt", "Purchase Invoice"):
Nabin Haita77b8c92020-12-21 14:45:50 +053058 self.update_valuation_rate()
Rushabh Mehta9f0d6252014-04-14 19:20:45 +053059
Rohit Waghchaure110e1522021-06-15 17:29:52 +053060 def onload(self):
61 super(BuyingController, self).onload()
62 self.set_onload("backflush_based_on", frappe.db.get_single_value('Buying Settings',
63 'backflush_raw_materials_of_subcontract_based_on'))
64
Anand Doshi3543f302013-05-24 19:25:01 +053065 def set_missing_values(self, for_validate=False):
Anand Doshiabc10032013-06-14 17:44:03 +053066 super(BuyingController, self).set_missing_values(for_validate)
Rushabh Mehtab33df4a2016-07-04 11:38:37 +053067
Rushabh Mehta0b995402013-08-09 15:29:59 +053068 self.set_supplier_from_item_default()
Nabin Hait096d3632013-10-17 17:01:14 +053069 self.set_price_list_currency("Buying")
Rushabh Mehta9f0d6252014-04-14 19:20:45 +053070
Anand Doshi3543f302013-05-24 19:25:01 +053071 # set contact and address details for supplier, if they are not mentioned
Nabin Hait365ae272014-04-03 17:38:54 +053072 if getattr(self, "supplier", None):
marination78b6b292022-01-24 13:39:10 +053073 self.update_if_missing(
74 get_party_details(
75 self.supplier,
76 party_type="Supplier",
77 doctype=self.doctype,
78 company=self.company,
79 party_address=self.get("supplier_address"),
80 shipping_address=self.get('shipping_address'),
81 fetch_payment_terms_template= not self.get('ignore_default_payment_terms_template'),
82 ignore_permissions=self.flags.ignore_permissions
83 )
84 )
Rushabh Mehta886c9ef2013-07-08 12:08:06 +053085
Nabin Haitcccc45e2016-10-05 17:15:43 +053086 self.set_missing_item_details(for_validate)
Rushabh Mehta436467a2013-07-08 12:37:59 +053087
Rushabh Mehta0b995402013-08-09 15:29:59 +053088 def set_supplier_from_item_default(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +053089 if self.meta.get_field("supplier") and not self.supplier:
Nabin Haitdd38a262014-12-26 13:15:21 +053090 for d in self.get("items"):
Nabin Hait33df0b42018-05-26 09:09:02 +053091 supplier = frappe.db.get_value("Item Default",
92 {"parent": d.item_code, "company": self.company}, "default_supplier")
Rushabh Mehta0b995402013-08-09 15:29:59 +053093 if supplier:
Anand Doshif78d1ae2014-03-28 13:55:00 +053094 self.supplier = supplier
Shreya Shah3c9839f2018-07-17 18:01:44 +053095 else:
96 item_group = frappe.db.get_value("Item", d.item_code, "item_group")
97 supplier = frappe.db.get_value("Item Default",
98 {"parent": item_group, "company": self.company}, "default_supplier")
99 if supplier:
100 self.supplier = supplier
Rushabh Mehta0b995402013-08-09 15:29:59 +0530101 break
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530102
Nabin Hait205f7ce2013-04-26 13:35:06 +0530103 def validate_stock_or_nonstock_items(self):
Rohit Waghchaureaf059952018-05-07 18:46:53 +0530104 if self.meta.get_field("taxes") and not self.get_stock_items() and not self.get_asset_items():
Deepesh Gargf17ea2c2020-12-11 21:30:39 +0530105 msg = _('Tax Category has been changed to "Total" because all the Items are non-stock items')
106 self.update_tax_category(msg)
107
Deepesh Gargf17ea2c2020-12-11 21:30:39 +0530108 def update_tax_category(self, msg):
109 tax_for_valuation = [d for d in self.get("taxes")
Nabin Hait205f7ce2013-04-26 13:35:06 +0530110 if d.category in ["Valuation", "Valuation and Total"]]
tundebabzy9a346202017-06-16 11:00:14 +0100111
Deepesh Gargf17ea2c2020-12-11 21:30:39 +0530112 if tax_for_valuation:
113 for d in tax_for_valuation:
114 d.category = 'Total'
115
116 msgprint(msg)
Marica1c8cbd02020-05-02 17:55:15 +0530117
Saqib562fd0e2020-04-08 12:11:40 +0530118 def validate_asset_return(self):
119 if self.doctype not in ['Purchase Receipt', 'Purchase Invoice'] or not self.is_return:
120 return
121
122 purchase_doc_field = 'purchase_receipt' if self.doctype == 'Purchase Receipt' else 'purchase_invoice'
123 not_cancelled_asset = [d.name for d in frappe.db.get_all("Asset", {
124 purchase_doc_field: self.return_against,
125 "docstatus": 1
126 })]
127 if self.is_return and len(not_cancelled_asset):
Rohit Waghchaure103ecec2020-10-26 11:55:08 +0530128 frappe.throw(_("{} has submitted assets linked to it. You need to cancel the assets to create purchase return.")
129 .format(self.return_against), title=_("Not Allowed"))
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530130
Rohit Waghchaureaf059952018-05-07 18:46:53 +0530131 def get_asset_items(self):
Saqibd9956092019-11-18 11:46:55 +0530132 if self.doctype not in ['Purchase Order', 'Purchase Invoice', 'Purchase Receipt']:
Rohit Waghchaured644e6d2018-05-12 15:27:18 +0530133 return []
134
Rohit Waghchaureaf059952018-05-07 18:46:53 +0530135 return [d.item_code for d in self.items if d.is_fixed_asset]
136
Saurabhfbb342c2016-04-07 16:41:31 +0530137 def set_landed_cost_voucher_amount(self):
138 for d in self.get("items"):
rohitwaghchaure2e8232e2017-08-10 11:32:59 +0530139 lc_voucher_data = frappe.db.sql("""select sum(applicable_charges), cost_center
Saurabhfbb342c2016-04-07 16:41:31 +0530140 from `tabLanded Cost Item`
141 where docstatus = 1 and purchase_receipt_item = %s""", d.name)
rohitwaghchaure2e8232e2017-08-10 11:32:59 +0530142 d.landed_cost_voucher_amount = lc_voucher_data[0][0] if lc_voucher_data else 0.0
143 if not d.cost_center and lc_voucher_data and lc_voucher_data[0][1]:
144 d.db_set('cost_center', lc_voucher_data[0][1])
Rushabh Mehtab33df4a2016-07-04 11:38:37 +0530145
Deepesh Garg15ff6a52020-02-18 12:28:41 +0530146 def validate_from_warehouse(self):
147 for item in self.get('items'):
148 if item.get('from_warehouse') and (item.get('from_warehouse') == item.get('warehouse')):
149 frappe.throw(_("Row #{0}: Accepted Warehouse and Supplier Warehouse cannot be same").format(item.idx))
150
151 if item.get('from_warehouse') and self.get('is_subcontracted') == 'Yes':
152 frappe.throw(_("Row #{0}: Cannot select Supplier Warehouse while suppling raw materials to subcontractor").format(item.idx))
153
Rohit Waghchauref4dc7162018-11-15 17:04:02 +0530154 def set_supplier_address(self):
155 address_dict = {
156 'supplier_address': 'address_display',
157 'shipping_address': 'shipping_address_display'
158 }
159
160 for address_field, address_display_field in address_dict.items():
161 if self.get(address_field):
162 self.set(address_display_field, get_address_display(self.get(address_field)))
163
Nabin Haitd3b62502013-01-21 17:24:31 +0530164 def set_total_in_words(self):
Rushabh Mehta793ba6b2014-02-14 15:47:51 +0530165 from frappe.utils import money_in_words
Nabin Hait5690be12015-02-12 16:09:11 +0530166 if self.meta.get_field("base_in_words"):
Nabin Hait6b539d62018-08-29 12:41:12 +0530167 if self.meta.get_field("base_rounded_total") and not self.is_rounded_total_disabled():
168 amount = self.base_rounded_total
169 else:
170 amount = self.base_grand_total
rohitwaghchaureae4ff5a2018-08-01 18:09:51 +0530171 self.base_in_words = money_in_words(amount, self.company_currency)
172
Nabin Hait5b4c2942013-01-22 11:12:02 +0530173 if self.meta.get_field("in_words"):
Nabin Hait6b539d62018-08-29 12:41:12 +0530174 if self.meta.get_field("rounded_total") and not self.is_rounded_total_disabled():
175 amount = self.rounded_total
176 else:
177 amount = self.grand_total
rohitwaghchaureae4ff5a2018-08-01 18:09:51 +0530178
179 self.in_words = money_in_words(amount, self.currency)
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530180
Nabin Haitdc15b4f2014-01-20 16:48:49 +0530181 # update valuation rate
Nabin Haita77b8c92020-12-21 14:45:50 +0530182 def update_valuation_rate(self, reset_outgoing_rate=True):
Anand Doshi8595fcf2013-02-08 19:28:14 +0530183 """
184 item_tax_amount is the total tax amount applied on that item
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530185 stored for valuation
186
Anand Doshi8595fcf2013-02-08 19:28:14 +0530187 TODO: rename item_tax_amount to valuation_tax_amount
188 """
Rohit Waghchaure4d81d452021-06-15 10:21:44 +0530189 stock_and_asset_items = []
Saqibd9956092019-11-18 11:46:55 +0530190 stock_and_asset_items = self.get_stock_items() + self.get_asset_items()
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530191
Saqibd9956092019-11-18 11:46:55 +0530192 stock_and_asset_items_qty, stock_and_asset_items_amount = 0, 0
193 last_item_idx = 1
Nabin Haita77b8c92020-12-21 14:45:50 +0530194 for d in self.get("items"):
Rohit Waghchaure4d81d452021-06-15 10:21:44 +0530195 if (d.item_code and d.item_code in stock_and_asset_items):
Saqibd9956092019-11-18 11:46:55 +0530196 stock_and_asset_items_qty += flt(d.qty)
197 stock_and_asset_items_amount += flt(d.base_net_amount)
198 last_item_idx = d.idx
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530199
Ankush Menat98917802021-06-11 18:40:22 +0530200 total_valuation_amount = sum(flt(d.base_tax_amount_after_discount_amount) for d in self.get("taxes")
201 if d.category in ["Valuation", "Valuation and Total"])
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530202
Nabin Haitdc15b4f2014-01-20 16:48:49 +0530203 valuation_amount_adjustment = total_valuation_amount
Nabin Haita77b8c92020-12-21 14:45:50 +0530204 for i, item in enumerate(self.get("items")):
Saqibd9956092019-11-18 11:46:55 +0530205 if item.item_code and item.qty and item.item_code in stock_and_asset_items:
206 item_proportion = flt(item.base_net_amount) / stock_and_asset_items_amount if stock_and_asset_items_amount \
207 else flt(item.qty) / stock_and_asset_items_qty
Suraj Shetty48e9bc32020-01-29 15:06:18 +0530208
Saqibd9956092019-11-18 11:46:55 +0530209 if i == (last_item_idx - 1):
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530210 item.item_tax_amount = flt(valuation_amount_adjustment,
Nabin Haitdc15b4f2014-01-20 16:48:49 +0530211 self.precision("item_tax_amount", item))
212 else:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530213 item.item_tax_amount = flt(item_proportion * total_valuation_amount,
Nabin Haitdc15b4f2014-01-20 16:48:49 +0530214 self.precision("item_tax_amount", item))
215 valuation_amount_adjustment -= item.item_tax_amount
216
Anand Doshi39384d32013-05-11 19:39:53 +0530217 self.round_floats_in(item)
Rushabh Mehtaea0ff232016-07-07 14:02:26 +0530218 if flt(item.conversion_factor)==0.0:
bobzz-zoneb4c7bad2015-08-05 11:30:12 +0700219 item.conversion_factor = get_conversion_factor(item.item_code, item.uom).get("conversion_factor") or 1.0
Rushabh Mehta724f9e52014-10-07 15:29:58 +0530220
Rushabh Mehta54047782013-12-26 11:07:46 +0530221 qty_in_stock_uom = flt(item.qty * item.conversion_factor)
Nabin Haita77b8c92020-12-21 14:45:50 +0530222 item.rm_supp_cost = self.get_supplied_items_cost(item.name, reset_outgoing_rate)
223 item.valuation_rate = ((item.base_net_amount + item.item_tax_amount + item.rm_supp_cost
224 + flt(item.landed_cost_voucher_amount)) / qty_in_stock_uom)
Anand Doshi4a7248e2013-02-27 18:10:30 +0530225 else:
Anand Doshi5af812a2013-05-10 19:23:02 +0530226 item.valuation_rate = 0.0
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530227
Deepesh Gargb4be2922021-01-28 13:09:56 +0530228 def set_incoming_rate(self):
229 if self.doctype not in ("Purchase Receipt", "Purchase Invoice", "Purchase Order"):
230 return
231
232 ref_doctype_map = {
233 "Purchase Order": "Sales Order Item",
234 "Purchase Receipt": "Delivery Note Item",
235 "Purchase Invoice": "Sales Invoice Item",
236 }
237
238 ref_doctype = ref_doctype_map.get(self.doctype)
239 items = self.get("items")
240 for d in items:
241 if not cint(self.get("is_return")):
242 # Get outgoing rate based on original item cost based on valuation method
243
244 if not d.get(frappe.scrub(ref_doctype)):
245 outgoing_rate = get_incoming_rate({
246 "item_code": d.item_code,
247 "warehouse": d.get('from_warehouse'),
248 "posting_date": self.get('posting_date') or self.get('transation_date'),
249 "posting_time": self.get('posting_time'),
250 "qty": -1 * flt(d.get('stock_qty')),
251 "serial_no": d.get('serial_no'),
252 "company": self.company,
253 "voucher_type": self.doctype,
254 "voucher_no": self.name,
255 "allow_zero_valuation": d.get("allow_zero_valuation")
256 }, raise_error_if_no_rate=False)
257
258 rate = flt(outgoing_rate * d.conversion_factor, d.precision('rate'))
259 else:
260 rate = frappe.db.get_value(ref_doctype, d.get(frappe.scrub(ref_doctype)), 'rate')
261
262 if self.is_internal_transfer():
263 if rate != d.rate:
264 d.rate = rate
265 d.discount_percentage = 0
266 d.discount_amount = 0
267 frappe.msgprint(_("Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer")
268 .format(d.idx), alert=1)
269
Nabin Haita77b8c92020-12-21 14:45:50 +0530270 def get_supplied_items_cost(self, item_row_id, reset_outgoing_rate=True):
271 supplied_items_cost = 0.0
272 for d in self.get("supplied_items"):
273 if d.reference_name == item_row_id:
Rohit Waghchaure7b7ceaa2021-05-24 20:11:15 +0530274 if reset_outgoing_rate and frappe.get_cached_value('Item', d.rm_item_code, 'is_stock_item'):
Nabin Haita77b8c92020-12-21 14:45:50 +0530275 rate = get_incoming_rate({
276 "item_code": d.rm_item_code,
277 "warehouse": self.supplier_warehouse,
278 "posting_date": self.posting_date,
279 "posting_time": self.posting_time,
280 "qty": -1 * d.consumed_qty,
281 "serial_no": d.serial_no
282 })
283
284 if rate > 0:
285 d.rate = rate
286
Nabin Haitb99c77b2020-12-25 18:12:35 +0530287 d.amount = flt(flt(d.consumed_qty) * flt(d.rate), d.precision("amount"))
Nabin Haita77b8c92020-12-21 14:45:50 +0530288 supplied_items_cost += flt(d.amount)
Deepesh Gargb4be2922021-01-28 13:09:56 +0530289
Nabin Haita77b8c92020-12-21 14:45:50 +0530290 return supplied_items_cost
291
Nabin Hait54d209f2013-03-01 18:51:10 +0530292 def validate_for_subcontracting(self):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530293 if not self.is_subcontracted and self.sub_contracted_items:
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530294 frappe.throw(_("Please enter 'Is Subcontracted' as Yes or No"))
295
ankitjavalkarwork5edae0e2014-11-05 20:14:53 +0530296 if self.is_subcontracted == "Yes":
Saurabhfbb342c2016-04-07 16:41:31 +0530297 if self.doctype in ["Purchase Receipt", "Purchase Invoice"] and not self.supplier_warehouse:
Afshan27bcb2a2021-03-09 22:25:48 +0530298 frappe.throw(_("Supplier Warehouse mandatory for sub-contracted {0}").format(self.doctype))
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530299
Nabin Haitdd38a262014-12-26 13:15:21 +0530300 for item in self.get("items"):
ankitjavalkarwork5edae0e2014-11-05 20:14:53 +0530301 if item in self.sub_contracted_items and not item.bom:
302 frappe.throw(_("Please select BOM in BOM field for Item {0}").format(item.item_code))
303
Rohit Waghchauree5fb2392021-06-18 20:37:42 +0530304 if self.doctype != "Purchase Order":
305 return
pawan54465f52017-11-29 10:18:38 +0530306
Rohit Waghchauree5fb2392021-06-18 20:37:42 +0530307 for row in self.get("supplied_items"):
308 if not row.reserve_warehouse:
309 msg = f"Reserved Warehouse is mandatory for the Item {frappe.bold(row.rm_item_code)} in Raw Materials supplied"
310 frappe.throw(_(msg))
ankitjavalkarwork5edae0e2014-11-05 20:14:53 +0530311 else:
Nabin Haitdd38a262014-12-26 13:15:21 +0530312 for item in self.get("items"):
ankitjavalkarwork5edae0e2014-11-05 20:14:53 +0530313 if item.bom:
314 item.bom = None
315
Nabin Hait344f4432014-05-08 19:08:20 +0530316 def create_raw_materials_supplied(self, raw_material_table):
Anand Doshif78d1ae2014-03-28 13:55:00 +0530317 if self.is_subcontracted=="Yes":
Rohit Waghchaure7b7ceaa2021-05-24 20:11:15 +0530318 self.set_materials_for_subcontracted_items(raw_material_table)
Nabin Hait54d209f2013-03-01 18:51:10 +0530319
Saurabhfbb342c2016-04-07 16:41:31 +0530320 elif self.doctype in ["Purchase Receipt", "Purchase Invoice"]:
Nabin Haitdd38a262014-12-26 13:15:21 +0530321 for item in self.get("items"):
Nabin Haita0c239d2014-04-01 18:54:38 +0530322 item.rm_supp_cost = 0.0
323
Rohit Waghchaure4b9d2f22017-02-16 15:53:40 +0530324 if self.is_subcontracted == "No" and self.get("supplied_items"):
325 self.set('supplied_items', [])
326
Nabin Hait5418d712013-02-27 18:11:17 +0530327 @property
328 def sub_contracted_items(self):
329 if not hasattr(self, "_sub_contracted_items"):
Nabin Haitebd51442013-04-23 15:36:26 +0530330 self._sub_contracted_items = []
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530331 item_codes = list(set(item.item_code for item in
Nabin Haitdd38a262014-12-26 13:15:21 +0530332 self.get("items")))
Nabin Haitebd51442013-04-23 15:36:26 +0530333 if item_codes:
Suraj Shetty9d6d95c2019-11-29 13:26:52 +0530334 items = frappe.get_all('Item', filters={
335 'name': ['in', item_codes],
336 'is_sub_contracted_item': 1
337 })
338 self._sub_contracted_items = [item.name for item in items]
Nabin Hait5418d712013-02-27 18:11:17 +0530339
340 return self._sub_contracted_items
Rushabh Mehta9f0d6252014-04-14 19:20:45 +0530341
nabinhait614fb752014-07-14 10:47:50 +0530342 def set_qty_as_per_stock_uom(self):
Nabin Haitdd38a262014-12-26 13:15:21 +0530343 for d in self.get("items"):
Nabin Haitfd4bcd82015-05-22 16:55:40 +0530344 if d.meta.get_field("stock_qty"):
Deepesh Garg8b0302b2019-08-05 10:14:19 +0530345 # Check if item code is present
346 # Conversion factor should not be mandatory for non itemized items
347 if not d.conversion_factor and d.item_code:
Nabin Haite6e456b2015-05-13 17:21:44 +0530348 frappe.throw(_("Row {0}: Conversion Factor is mandatory").format(d.idx))
Rushabh Mehta5b51cc82014-07-21 18:25:45 +0530349 d.stock_qty = flt(d.qty) * flt(d.conversion_factor)
Rushabh Mehtab33df4a2016-07-04 11:38:37 +0530350
marinationd6596a12020-11-02 15:07:48 +0530351 if self.doctype=="Purchase Receipt" and d.meta.get_field("received_stock_qty"):
352 # Set Received Qty in Stock UOM
353 d.received_stock_qty = flt(d.received_qty) * flt(d.conversion_factor, d.precision("conversion_factor"))
354
Saurabh130c57b2016-04-04 15:49:36 +0530355 def validate_purchase_return(self):
356 for d in self.get("items"):
357 if self.is_return and flt(d.rejected_qty) != 0:
358 frappe.throw(_("Row #{0}: Rejected Qty can not be entered in Purchase Return").format(d.idx))
359
360 # validate rate with ref PR
361
362 def validate_rejected_warehouse(self):
363 for d in self.get("items"):
364 if flt(d.rejected_qty) and not d.rejected_warehouse:
Saurabhfbb342c2016-04-07 16:41:31 +0530365 if self.rejected_warehouse:
366 d.rejected_warehouse = self.rejected_warehouse
Rushabh Mehtab33df4a2016-07-04 11:38:37 +0530367
Saurabh130c57b2016-04-04 15:49:36 +0530368 if not d.rejected_warehouse:
369 frappe.throw(_("Row #{0}: Rejected Warehouse is mandatory against rejected Item {1}").format(d.idx, d.item_code))
370
371 # validate accepted and rejected qty
372 def validate_accepted_rejected_qty(self):
373 for d in self.get("items"):
Saurabh4f4d0a82017-03-13 14:31:48 +0530374 self.validate_negative_quantity(d, ["received_qty","qty", "rejected_qty"])
Saurabh130c57b2016-04-04 15:49:36 +0530375
marination5fb5a752021-11-08 13:22:57 +0530376 if not flt(d.received_qty) and (flt(d.qty) or flt(d.rejected_qty)):
377 d.received_qty = flt(d.qty) + flt(d.rejected_qty)
Saurabh130c57b2016-04-04 15:49:36 +0530378
Saurabh130c57b2016-04-04 15:49:36 +0530379 # Check Received Qty = Accepted Qty + Rejected Qty
marinationafe1c452021-11-15 17:17:29 +0530380 val = flt(d.qty) + flt(d.rejected_qty)
Mangesh-Khairnar8c621ab2019-06-26 11:10:17 +0530381 if (flt(val, d.precision("received_qty")) != flt(d.received_qty, d.precision("received_qty"))):
marination05ec7cc2021-11-15 17:49:14 +0530382 message = _("Row #{0}: Received Qty must be equal to Accepted + Rejected Qty for Item {1}").format(d.idx, d.item_code)
383 frappe.throw(msg=message, title=_("Mismatch"), exc=QtyMismatchError)
Rushabh Mehtab33df4a2016-07-04 11:38:37 +0530384
Saurabh4f4d0a82017-03-13 14:31:48 +0530385 def validate_negative_quantity(self, item_row, field_list):
386 if self.is_return:
387 return
388
389 item_row = item_row.as_dict()
390 for fieldname in field_list:
391 if flt(item_row[fieldname]) < 0:
Suraj Shettyda2c69e2020-01-29 15:34:06 +0530392 frappe.throw(_("Row #{0}: {1} can not be negative for item {2}").format(item_row['idx'],
393 frappe.get_meta(item_row.doctype).get_label(fieldname), item_row['item_code']))
Saurabh4f4d0a82017-03-13 14:31:48 +0530394
Mangesh-Khairnar5e474f42019-03-06 14:46:38 +0530395 def check_for_on_hold_or_closed_status(self, ref_doctype, ref_fieldname):
396 for d in self.get("items"):
397 if d.get(ref_fieldname):
398 status = frappe.db.get_value(ref_doctype, d.get(ref_fieldname), "status")
399 if status in ("Closed", "On Hold"):
400 frappe.throw(_("{0} {1} is {2}").format(ref_doctype,d.get(ref_fieldname), status))
401
Saurabhe29248b2016-04-04 11:55:52 +0530402 def update_stock_ledger(self, allow_negative_stock=False, via_landed_cost_voucher=False):
Nabin Hait07e53762018-01-05 18:19:59 +0530403 self.update_ordered_and_reserved_qty()
Rushabh Mehtab33df4a2016-07-04 11:38:37 +0530404
Saurabhe29248b2016-04-04 11:55:52 +0530405 sl_entries = []
406 stock_items = self.get_stock_items()
407
408 for d in self.get('items'):
409 if d.item_code in stock_items and d.warehouse:
410 pr_qty = flt(d.qty) * flt(d.conversion_factor)
411
412 if pr_qty:
Deepesh Garg15ff6a52020-02-18 12:28:41 +0530413
414 if d.from_warehouse and ((not cint(self.is_return) and self.docstatus==1)
415 or (cint(self.is_return) and self.docstatus==2)):
416 from_warehouse_sle = self.get_sl_entries(d, {
417 "actual_qty": -1 * pr_qty,
Nabin Haita77b8c92020-12-21 14:45:50 +0530418 "warehouse": d.from_warehouse,
Deepesh Gargb4be2922021-01-28 13:09:56 +0530419 "outgoing_rate": d.rate,
420 "recalculate_rate": 1,
Nabin Haita77b8c92020-12-21 14:45:50 +0530421 "dependant_sle_voucher_detail_no": d.name
Deepesh Garg15ff6a52020-02-18 12:28:41 +0530422 })
423
424 sl_entries.append(from_warehouse_sle)
425
Saurabhe29248b2016-04-04 11:55:52 +0530426 sle = self.get_sl_entries(d, {
427 "actual_qty": flt(pr_qty),
428 "serial_no": cstr(d.serial_no).strip()
429 })
430 if self.is_return:
Nabin Haita77b8c92020-12-21 14:45:50 +0530431 outgoing_rate = get_rate_for_return(self.doctype, self.name, d.item_code, self.return_against, item_row=d)
Rushabh Mehtab33df4a2016-07-04 11:38:37 +0530432
Saurabhe29248b2016-04-04 11:55:52 +0530433 sle.update({
Nabin Haita77b8c92020-12-21 14:45:50 +0530434 "outgoing_rate": outgoing_rate,
435 "recalculate_rate": 1
Saurabhe29248b2016-04-04 11:55:52 +0530436 })
Nabin Haita77b8c92020-12-21 14:45:50 +0530437 if d.from_warehouse:
438 sle.dependant_sle_voucher_detail_no = d.name
Saurabhe29248b2016-04-04 11:55:52 +0530439 else:
Nabin Haitb81ed452016-05-11 12:52:31 +0530440 val_rate_db_precision = 6 if cint(self.precision("valuation_rate", d)) <= 6 else 9
441 incoming_rate = flt(d.valuation_rate, val_rate_db_precision)
Saurabhe29248b2016-04-04 11:55:52 +0530442 sle.update({
Nabin Haita77b8c92020-12-21 14:45:50 +0530443 "incoming_rate": incoming_rate,
444 "recalculate_rate": 1 if (self.is_subcontracted and d.bom) or d.from_warehouse else 0
Saurabhe29248b2016-04-04 11:55:52 +0530445 })
446 sl_entries.append(sle)
447
Deepesh Garg15ff6a52020-02-18 12:28:41 +0530448 if d.from_warehouse and ((not cint(self.is_return) and self.docstatus==2)
449 or (cint(self.is_return) and self.docstatus==1)):
450 from_warehouse_sle = self.get_sl_entries(d, {
451 "actual_qty": -1 * pr_qty,
Nabin Haita77b8c92020-12-21 14:45:50 +0530452 "warehouse": d.from_warehouse,
453 "recalculate_rate": 1
Deepesh Garg15ff6a52020-02-18 12:28:41 +0530454 })
455
456 sl_entries.append(from_warehouse_sle)
457
Rohit Waghchaure560ba392016-08-29 18:19:32 +0530458 if flt(d.rejected_qty) != 0:
Saurabhe29248b2016-04-04 11:55:52 +0530459 sl_entries.append(self.get_sl_entries(d, {
460 "warehouse": d.rejected_warehouse,
461 "actual_qty": flt(d.rejected_qty) * flt(d.conversion_factor),
462 "serial_no": cstr(d.rejected_serial_no).strip(),
463 "incoming_rate": 0.0
464 }))
465
466 self.make_sl_entries_for_supplier_warehouse(sl_entries)
467 self.make_sl_entries(sl_entries, allow_negative_stock=allow_negative_stock,
468 via_landed_cost_voucher=via_landed_cost_voucher)
Rushabh Mehtab33df4a2016-07-04 11:38:37 +0530469
Nabin Hait07e53762018-01-05 18:19:59 +0530470 def update_ordered_and_reserved_qty(self):
Nabin Hait14aa9c52016-04-18 15:54:01 +0530471 po_map = {}
472 for d in self.get("items"):
473 if self.doctype=="Purchase Receipt" \
Rohit Waghchaurea71d9d32016-07-05 00:34:00 +0530474 and d.purchase_order:
475 po_map.setdefault(d.purchase_order, []).append(d.purchase_order_item)
Rushabh Mehtab33df4a2016-07-04 11:38:37 +0530476
Nabin Hait14aa9c52016-04-18 15:54:01 +0530477 elif self.doctype=="Purchase Invoice" and d.purchase_order and d.po_detail:
478 po_map.setdefault(d.purchase_order, []).append(d.po_detail)
479
480 for po, po_item_rows in po_map.items():
481 if po and po_item_rows:
482 po_obj = frappe.get_doc("Purchase Order", po)
483
484 if po_obj.status in ["Closed", "Cancelled"]:
485 frappe.throw(_("{0} {1} is cancelled or closed").format(_("Purchase Order"), po),
486 frappe.InvalidStatusError)
487
488 po_obj.update_ordered_qty(po_item_rows)
Nabin Hait07e53762018-01-05 18:19:59 +0530489 if self.is_subcontracted:
490 po_obj.update_reserved_qty_for_subcontract()
Rushabh Mehtab33df4a2016-07-04 11:38:37 +0530491
Saurabhe29248b2016-04-04 11:55:52 +0530492 def make_sl_entries_for_supplier_warehouse(self, sl_entries):
493 if hasattr(self, 'supplied_items'):
494 for d in self.get('supplied_items'):
495 # negative quantity is passed, as raw material qty has to be decreased
496 # when PR is submitted and it has to be increased when PR is cancelled
497 sl_entries.append(self.get_sl_entries(d, {
498 "item_code": d.rm_item_code,
499 "warehouse": self.supplier_warehouse,
500 "actual_qty": -1*flt(d.consumed_qty),
Nabin Haita77b8c92020-12-21 14:45:50 +0530501 "dependant_sle_voucher_detail_no": d.reference_name
Saurabhe29248b2016-04-04 11:55:52 +0530502 }))
Rushabh Mehtab33df4a2016-07-04 11:38:37 +0530503
rohitwaghchaurefe226862017-12-28 16:11:27 +0530504 def on_submit(self):
505 if self.get('is_return'):
506 return
507
Rohit Waghchaureab842542018-04-26 19:18:29 +0530508 if self.doctype in ['Purchase Receipt', 'Purchase Invoice']:
Rohit Waghchaurec6deb132018-05-07 15:58:41 +0530509 field = 'purchase_invoice' if self.doctype == 'Purchase Invoice' else 'purchase_receipt'
510
511 self.process_fixed_asset()
512 self.update_fixed_asset(field)
Rohit Waghchaureab842542018-04-26 19:18:29 +0530513
Rohit Waghchaure4d81d452021-06-15 10:21:44 +0530514 if self.doctype in ['Purchase Order', 'Purchase Receipt']:
515 update_last_purchase_rate(self, is_submit = 1)
rohitwaghchaurefe226862017-12-28 16:11:27 +0530516
517 def on_cancel(self):
Rohit Waghchaure5fa9a7a2019-04-01 00:40:38 +0530518 super(BuyingController, self).on_cancel()
519
rohitwaghchaurefe226862017-12-28 16:11:27 +0530520 if self.get('is_return'):
521 return
522
Rohit Waghchaure4d81d452021-06-15 10:21:44 +0530523 if self.doctype in ['Purchase Order', 'Purchase Receipt']:
524 update_last_purchase_rate(self, is_submit = 0)
525
Rohit Waghchaureab842542018-04-26 19:18:29 +0530526 if self.doctype in ['Purchase Receipt', 'Purchase Invoice']:
Rohit Waghchaurec6deb132018-05-07 15:58:41 +0530527 field = 'purchase_invoice' if self.doctype == 'Purchase Invoice' else 'purchase_receipt'
528
Rohit Waghchaureaf059952018-05-07 18:46:53 +0530529 self.delete_linked_asset()
530 self.update_fixed_asset(field, delete_asset=True)
Rohit Waghchaureab842542018-04-26 19:18:29 +0530531
Rohit Waghchaure4d4fb6d2018-05-15 22:12:44 +0530532 def validate_budget(self):
533 if self.docstatus == 1:
534 for data in self.get('items'):
rohitwaghchaure77a45b42018-06-15 18:03:31 +0530535 args = data.as_dict()
536 args.update({
537 'doctype': self.doctype,
rohitwaghchaure34c18772018-06-25 10:31:08 +0530538 'company': self.company,
539 'posting_date': (self.schedule_date
540 if self.doctype == 'Material Request' else self.transaction_date)
rohitwaghchaure77a45b42018-06-15 18:03:31 +0530541 })
542
543 validate_expense_against_budget(args)
Rohit Waghchaure4d4fb6d2018-05-15 22:12:44 +0530544
Rohit Waghchaureab842542018-04-26 19:18:29 +0530545 def process_fixed_asset(self):
Rohit Waghchaurec6deb132018-05-07 15:58:41 +0530546 if self.doctype == 'Purchase Invoice' and not self.update_stock:
Rohit Waghchaureab842542018-04-26 19:18:29 +0530547 return
548
Rohit Waghchaureaf059952018-05-07 18:46:53 +0530549 asset_items = self.get_asset_items()
Rohit Waghchaureab842542018-04-26 19:18:29 +0530550 if asset_items:
Saqibd9956092019-11-18 11:46:55 +0530551 self.auto_make_assets(asset_items)
Rohit Waghchaureab842542018-04-26 19:18:29 +0530552
Saqibd9956092019-11-18 11:46:55 +0530553 def auto_make_assets(self, asset_items):
Rohit Waghchaureab842542018-04-26 19:18:29 +0530554 items_data = get_asset_item_details(asset_items)
Saqibf37a46e2019-11-22 16:32:50 +0530555 messages = []
Rohit Waghchaureab842542018-04-26 19:18:29 +0530556
557 for d in self.items:
558 if d.is_fixed_asset:
559 item_data = items_data.get(d.item_code)
560
Saqibd9956092019-11-18 11:46:55 +0530561 if item_data.get('auto_create_assets'):
562 # If asset has to be auto created
563 # Check for asset naming series
564 if item_data.get('asset_naming_series'):
Saqibbba78f02020-03-31 10:49:44 +0530565 created_assets = []
Saqib Ansari35a6b582022-01-18 13:10:23 +0530566 if item_data.get('is_grouped_asset'):
567 asset = self.make_asset(d, is_grouped_asset=True)
Saqibbba78f02020-03-31 10:49:44 +0530568 created_assets.append(asset)
Saqib Ansari35a6b582022-01-18 13:10:23 +0530569 else:
570 for qty in range(cint(d.qty)):
571 asset = self.make_asset(d)
572 created_assets.append(asset)
Marica1c8cbd02020-05-02 17:55:15 +0530573
Saqibbba78f02020-03-31 10:49:44 +0530574 if len(created_assets) > 5:
575 # dont show asset form links if more than 5 assets are created
Marica1c8cbd02020-05-02 17:55:15 +0530576 messages.append(_('{} Assets created for {}').format(len(created_assets), frappe.bold(d.item_code)))
Saqibbba78f02020-03-31 10:49:44 +0530577 else:
578 assets_link = list(map(lambda d: frappe.utils.get_link_to_form('Asset', d), created_assets))
579 assets_link = frappe.bold(','.join(assets_link))
580
581 is_plural = 's' if len(created_assets) != 1 else ''
582 messages.append(
583 _('Asset{} {assets_link} created for {}').format(is_plural, frappe.bold(d.item_code), assets_link=assets_link)
584 )
Saqibd9956092019-11-18 11:46:55 +0530585 else:
Saqibbba78f02020-03-31 10:49:44 +0530586 frappe.throw(_("Row {}: Asset Naming Series is mandatory for the auto creation for item {}")
587 .format(d.idx, frappe.bold(d.item_code)))
Saqibd9956092019-11-18 11:46:55 +0530588 else:
Saqibbba78f02020-03-31 10:49:44 +0530589 messages.append(_("Assets not created for {0}. You will have to create asset manually.")
590 .format(frappe.bold(d.item_code)))
Saqibf37a46e2019-11-22 16:32:50 +0530591
592 for message in messages:
Saqibbba78f02020-03-31 10:49:44 +0530593 frappe.msgprint(message, title="Success", indicator="green")
Rohit Waghchaureab842542018-04-26 19:18:29 +0530594
Saqib Ansari35a6b582022-01-18 13:10:23 +0530595 def make_asset(self, row, is_grouped_asset=False):
Rohit Waghchaureaa7b4342018-05-11 01:56:05 +0530596 if not row.asset_location:
597 frappe.throw(_("Row {0}: Enter location for the asset item {1}").format(row.idx, row.item_code))
598
Rohit Waghchauref2684ae2018-05-08 13:22:22 +0530599 item_data = frappe.db.get_value('Item',
600 row.item_code, ['asset_naming_series', 'asset_category'], as_dict=1)
601
Saqib Ansari35a6b582022-01-18 13:10:23 +0530602 if is_grouped_asset:
603 purchase_amount = flt(row.base_amount + row.item_tax_amount)
604 else:
605 purchase_amount = flt(row.base_rate + row.item_tax_amount)
606
Rohit Waghchaureab842542018-04-26 19:18:29 +0530607 asset = frappe.get_doc({
608 'doctype': 'Asset',
609 'item_code': row.item_code,
Rohit Waghchaurec6deb132018-05-07 15:58:41 +0530610 'asset_name': row.item_name,
Rohit Waghchauref2684ae2018-05-08 13:22:22 +0530611 'naming_series': item_data.get('asset_naming_series') or 'AST',
612 'asset_category': item_data.get('asset_category'),
Rohit Waghchaureaa7b4342018-05-11 01:56:05 +0530613 'location': row.asset_location,
Rohit Waghchaureab842542018-04-26 19:18:29 +0530614 'company': self.company,
thefalconx33c15cc8f2019-09-24 18:49:16 +0530615 'supplier': self.supplier,
Rohit Waghchaureab842542018-04-26 19:18:29 +0530616 'purchase_date': self.posting_date,
Rohit Waghchaure0ea6fe42018-05-08 23:31:58 +0530617 'calculate_depreciation': 1,
Rohit Waghchaure16bc8532018-05-12 12:06:00 +0530618 'purchase_receipt_amount': purchase_amount,
619 'gross_purchase_amount': purchase_amount,
Saqib Ansari35a6b582022-01-18 13:10:23 +0530620 'asset_quantity': row.qty if is_grouped_asset else 0,
Rohit Waghchaureab842542018-04-26 19:18:29 +0530621 'purchase_receipt': self.name if self.doctype == 'Purchase Receipt' else None,
622 'purchase_invoice': self.name if self.doctype == 'Purchase Invoice' else None
623 })
624
625 asset.flags.ignore_validate = True
626 asset.flags.ignore_mandatory = True
Rohit Waghchaureaa7b4342018-05-11 01:56:05 +0530627 asset.set_missing_values()
Rohit Waghchaureab842542018-04-26 19:18:29 +0530628 asset.insert()
629
Saqibbba78f02020-03-31 10:49:44 +0530630 return asset.name
631
Rohit Waghchaureaf059952018-05-07 18:46:53 +0530632 def update_fixed_asset(self, field, delete_asset = False):
Rohit Waghchaureab842542018-04-26 19:18:29 +0530633 for d in self.get("items"):
Saqibd9956092019-11-18 11:46:55 +0530634 if d.is_fixed_asset:
635 is_auto_create_enabled = frappe.db.get_value('Item', d.item_code, 'auto_create_assets')
636 assets = frappe.db.get_all('Asset', filters={ field : self.name, 'item_code' : d.item_code })
Rohit Waghchaureaf059952018-05-07 18:46:53 +0530637
Saqibd9956092019-11-18 11:46:55 +0530638 for asset in assets:
639 asset = frappe.get_doc('Asset', asset.name)
640 if delete_asset and is_auto_create_enabled:
641 # need to delete movements to delete assets otherwise throws link exists error
Saqibcd3976f2019-11-25 12:24:34 +0530642 movements = frappe.db.sql(
Suraj Shetty48e9bc32020-01-29 15:06:18 +0530643 """SELECT asm.name
Saqibcd3976f2019-11-25 12:24:34 +0530644 FROM `tabAsset Movement` asm, `tabAsset Movement Item` asm_item
645 WHERE asm_item.parent=asm.name and asm_item.asset=%s""", asset.name, as_dict=1)
Saqibd9956092019-11-18 11:46:55 +0530646 for movement in movements:
647 frappe.delete_doc('Asset Movement', movement.name, force=1)
648 frappe.delete_doc("Asset", asset.name, force=1)
649 continue
Rohit Waghchaureaf059952018-05-07 18:46:53 +0530650
Saqibd9956092019-11-18 11:46:55 +0530651 if self.docstatus in [0, 1] and not asset.get(field):
652 asset.set(field, self.name)
653 asset.purchase_date = self.posting_date
654 asset.supplier = self.supplier
655 elif self.docstatus == 2:
Saqibcd3976f2019-11-25 12:24:34 +0530656 if asset.docstatus == 0:
657 asset.set(field, None)
658 asset.supplier = None
659 if asset.docstatus == 1 and delete_asset:
Rohit Waghchaure103ecec2020-10-26 11:55:08 +0530660 frappe.throw(_('Cannot cancel this document as it is linked with submitted asset {0}. Please cancel it to continue.')
661 .format(frappe.utils.get_link_to_form('Asset', asset.name)))
Rohit Waghchaureab842542018-04-26 19:18:29 +0530662
Saqibd9956092019-11-18 11:46:55 +0530663 asset.flags.ignore_validate_update_after_submit = True
664 asset.flags.ignore_mandatory = True
665 if asset.docstatus == 0:
666 asset.flags.ignore_validate = True
Rohit Waghchaureab842542018-04-26 19:18:29 +0530667
Saqibd9956092019-11-18 11:46:55 +0530668 asset.save()
Rohit Waghchaureab842542018-04-26 19:18:29 +0530669
Rohit Waghchaureaf059952018-05-07 18:46:53 +0530670 def delete_linked_asset(self):
Rohit Waghchaurec6deb132018-05-07 15:58:41 +0530671 if self.doctype == 'Purchase Invoice' and not self.get('update_stock'):
Rohit Waghchaureab842542018-04-26 19:18:29 +0530672 return
673
Nabin Hait1e7c32b2018-09-26 18:01:00 +0530674 frappe.db.sql("delete from `tabAsset Movement` where reference_name=%s", self.name)
rohitwaghchaurefe226862017-12-28 16:11:27 +0530675
Nabin Hait5a834202017-10-05 19:51:10 +0530676 def validate_schedule_date(self):
Sahil Khan34766c02018-12-20 18:50:24 +0530677 if not self.get("items"):
678 return
Nabin Haita1138612019-10-15 12:43:27 +0530679
18alantom2a20a032021-05-05 11:59:15 +0530680 if any(d.schedule_date for d in self.get("items")):
681 # Select earliest schedule_date.
682 self.schedule_date = min(d.schedule_date for d in self.get("items")
683 if d.schedule_date is not None)
Nabin Hait5a834202017-10-05 19:51:10 +0530684
685 if self.schedule_date:
686 for d in self.get('items'):
687 if not d.schedule_date:
688 d.schedule_date = self.schedule_date
689
Prateeksha Singhcbd06fd2018-01-05 21:28:01 +0530690 if (d.schedule_date and self.transaction_date and
691 getdate(d.schedule_date) < getdate(self.transaction_date)):
Nabin Hait96b264b2018-01-02 11:50:29 +0530692 frappe.throw(_("Row #{0}: Reqd by Date cannot be before Transaction Date").format(d.idx))
Nabin Hait5a834202017-10-05 19:51:10 +0530693 else:
Nabin Hait96b264b2018-01-02 11:50:29 +0530694 frappe.throw(_("Please enter Reqd by Date"))
Rushabh Mehta30dc9a12017-11-17 14:31:09 +0530695
Zarrarfc03a042018-06-04 12:52:52 +0530696 def validate_items(self):
697 # validate items to see if they have is_purchase_item or is_subcontracted_item enabled
Nabin Hait0bef91c2018-06-18 16:33:48 +0530698 if self.doctype=="Material Request": return
Zarrarfc03a042018-06-04 12:52:52 +0530699
rohitwaghchaure50d8c4a2018-06-05 13:08:10 +0530700 if hasattr(self, "is_subcontracted") and self.is_subcontracted == 'Yes':
Zarrarfc03a042018-06-04 12:52:52 +0530701 validate_item_type(self, "is_sub_contracted_item", "subcontracted")
702 else:
703 validate_item_type(self, "is_purchase_item", "purchase")
704
Rohit Waghchaureab842542018-04-26 19:18:29 +0530705def get_asset_item_details(asset_items):
706 asset_items_data = {}
Saqib Ansari35a6b582022-01-18 13:10:23 +0530707 for d in frappe.get_all('Item', fields = ["name", "auto_create_assets", "asset_naming_series", "is_grouped_asset"],
Rohit Waghchaureab842542018-04-26 19:18:29 +0530708 filters = {'name': ('in', asset_items)}):
709 asset_items_data.setdefault(d.name, d)
710
711 return asset_items_data
Ameya Shenoy873e28d2018-06-06 05:53:19 +0000712
Zarrarfc03a042018-06-04 12:52:52 +0530713def validate_item_type(doc, fieldname, message):
714 # iterate through items and check if they are valid sales or purchase items
Zarrar7c088ff2018-06-05 10:32:09 +0530715 items = [d.item_code for d in doc.items if d.item_code]
716
717 # No validation check inase of creating transaction using 'Opening Invoice Creation Tool'
718 if not items:
719 return
720
Suraj Shettybfc195d2018-09-21 10:20:52 +0530721 item_list = ", ".join(["%s" % frappe.db.escape(d) for d in items])
Zarrarfc03a042018-06-04 12:52:52 +0530722
723 invalid_items = [d[0] for d in frappe.db.sql("""
724 select item_code from tabItem where name in ({0}) and {1}=0
725 """.format(item_list, fieldname), as_list=True)]
726
727 if invalid_items:
Faris Ansari2ab6e0e2018-09-19 13:13:59 +0530728 items = ", ".join([d for d in invalid_items])
729
730 if len(invalid_items) > 1:
Suraj Shetty48e9bc32020-01-29 15:06:18 +0530731 error_message = _("Following items {0} are not marked as {1} item. You can enable them as {1} item from its Item master").format(items, message)
Faris Ansari2ab6e0e2018-09-19 13:13:59 +0530732 else:
Suraj Shetty48e9bc32020-01-29 15:06:18 +0530733 error_message = _("Following item {0} is not marked as {1} item. You can enable them as {1} item from its Item master").format(items, message)
Faris Ansari2ab6e0e2018-09-19 13:13:59 +0530734
735 frappe.throw(error_message)