Anand Doshi | 885e074 | 2015-03-03 14:55:30 +0530 | [diff] [blame] | 1 | # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors |
Rushabh Mehta | e67d1fb | 2013-08-05 14:59:54 +0530 | [diff] [blame] | 2 | # License: GNU General Public License v3. See license.txt |
Anand Doshi | 756dca7 | 2013-01-15 18:39:21 +0530 | [diff] [blame] | 3 | |
| 4 | from __future__ import unicode_literals |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 5 | import frappe |
| 6 | from frappe import _, msgprint |
Nabin Hait | 5a83420 | 2017-10-05 19:51:10 +0530 | [diff] [blame] | 7 | from frappe.utils import flt,cint, cstr, getdate |
rohitwaghchaure | 4c688b7 | 2020-09-15 19:40:37 +0530 | [diff] [blame] | 8 | from six import iteritems |
Rushabh Mehta | cc008cc | 2014-02-03 16:14:56 +0530 | [diff] [blame] | 9 | from erpnext.accounts.party import get_party_details |
Rushabh Mehta | 724f9e5 | 2014-10-07 15:29:58 +0530 | [diff] [blame] | 10 | from erpnext.stock.get_item_details import get_conversion_factor |
rohitwaghchaure | fe22686 | 2017-12-28 16:11:27 +0530 | [diff] [blame] | 11 | from erpnext.buying.utils import validate_for_items, update_last_purchase_rate |
Rushabh Mehta | cc8b2b2 | 2017-03-31 12:44:29 +0530 | [diff] [blame] | 12 | from erpnext.stock.stock_ledger import get_valuation_rate |
rohitwaghchaure | a3c3dec | 2018-03-28 11:51:44 +0530 | [diff] [blame] | 13 | from erpnext.stock.doctype.stock_entry.stock_entry import get_used_alternative_items |
Rohit Waghchaure | aa7b434 | 2018-05-11 01:56:05 +0530 | [diff] [blame] | 14 | from erpnext.stock.doctype.serial_no.serial_no import get_auto_serial_nos, auto_make_serial_nos, get_serial_nos |
Rohit Waghchaure | f4dc716 | 2018-11-15 17:04:02 +0530 | [diff] [blame] | 15 | from frappe.contacts.doctype.address.address import get_address_display |
Anand Doshi | 756dca7 | 2013-01-15 18:39:21 +0530 | [diff] [blame] | 16 | |
Rohit Waghchaure | 4d4fb6d | 2018-05-15 22:12:44 +0530 | [diff] [blame] | 17 | from erpnext.accounts.doctype.budget.budget import validate_expense_against_budget |
Rushabh Mehta | 1f84799 | 2013-12-12 19:12:19 +0530 | [diff] [blame] | 18 | from erpnext.controllers.stock_controller import StockController |
Nabin Hait | bf495c9 | 2013-01-30 12:49:08 +0530 | [diff] [blame] | 19 | |
Nabin Hait | 89a94d8 | 2013-03-19 12:01:46 +0530 | [diff] [blame] | 20 | class BuyingController(StockController): |
Faris Ansari | bc6a2b2 | 2020-10-27 19:42:58 +0530 | [diff] [blame] | 21 | |
Rushabh Mehta | c0bb453 | 2014-09-09 16:15:35 +0530 | [diff] [blame] | 22 | def get_feed(self): |
rohitwaghchaure | a1064a6 | 2016-03-03 14:00:35 +0530 | [diff] [blame] | 23 | if self.get("supplier_name"): |
| 24 | return _("From {0} | {1} {2}").format(self.supplier_name, self.currency, |
| 25 | self.grand_total) |
Rushabh Mehta | c0bb453 | 2014-09-09 16:15:35 +0530 | [diff] [blame] | 26 | |
Saurabh | 6f75318 | 2013-03-20 12:55:28 +0530 | [diff] [blame] | 27 | def validate(self): |
| 28 | super(BuyingController, self).validate() |
Nabin Hait | 365ae27 | 2014-04-03 17:38:54 +0530 | [diff] [blame] | 29 | if getattr(self, "supplier", None) and not self.supplier_name: |
Nabin Hait | 1d21842 | 2015-07-17 15:19:02 +0530 | [diff] [blame] | 30 | self.supplier_name = frappe.db.get_value("Supplier", self.supplier, "supplier_name") |
Rushabh Mehta | ea0ff23 | 2016-07-07 14:02:26 +0530 | [diff] [blame] | 31 | |
Zarrar | fc03a04 | 2018-06-04 12:52:52 +0530 | [diff] [blame] | 32 | self.validate_items() |
nabinhait | 614fb75 | 2014-07-14 10:47:50 +0530 | [diff] [blame] | 33 | self.set_qty_as_per_stock_uom() |
Nabin Hait | 205f7ce | 2013-04-26 13:35:06 +0530 | [diff] [blame] | 34 | self.validate_stock_or_nonstock_items() |
Deepesh Garg | f17ea2c | 2020-12-11 21:30:39 +0530 | [diff] [blame] | 35 | self.update_tax_category_for_internal_transfer() |
Anand Doshi | 373680b | 2013-10-10 16:04:40 +0530 | [diff] [blame] | 36 | self.validate_warehouse() |
Deepesh Garg | 15ff6a5 | 2020-02-18 12:28:41 +0530 | [diff] [blame] | 37 | self.validate_from_warehouse() |
Rohit Waghchaure | f4dc716 | 2018-11-15 17:04:02 +0530 | [diff] [blame] | 38 | self.set_supplier_address() |
Saqib | 562fd0e | 2020-04-08 12:11:40 +0530 | [diff] [blame] | 39 | self.validate_asset_return() |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 40 | |
Nabin Hait | 14aa9c5 | 2016-04-18 15:54:01 +0530 | [diff] [blame] | 41 | if self.doctype=="Purchase Invoice": |
| 42 | self.validate_purchase_receipt_if_update_stock() |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 43 | |
Nabin Hait | 14aa9c5 | 2016-04-18 15:54:01 +0530 | [diff] [blame] | 44 | if self.doctype=="Purchase Receipt" or (self.doctype=="Purchase Invoice" and self.update_stock): |
Rohit Waghchaure | 560ba39 | 2016-08-29 18:19:32 +0530 | [diff] [blame] | 45 | # self.validate_purchase_return() |
Saurabh | fbb342c | 2016-04-07 16:41:31 +0530 | [diff] [blame] | 46 | self.validate_rejected_warehouse() |
| 47 | self.validate_accepted_rejected_qty() |
Rushabh Mehta | cc8b2b2 | 2017-03-31 12:44:29 +0530 | [diff] [blame] | 48 | validate_for_items(self) |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 49 | |
Saurabh | fbb342c | 2016-04-07 16:41:31 +0530 | [diff] [blame] | 50 | #sub-contracting |
| 51 | self.validate_for_subcontracting() |
| 52 | self.create_raw_materials_supplied("supplied_items") |
| 53 | self.set_landed_cost_voucher_amount() |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 54 | |
Nabin Hait | 14aa9c5 | 2016-04-18 15:54:01 +0530 | [diff] [blame] | 55 | if self.doctype in ("Purchase Receipt", "Purchase Invoice"): |
Saurabh | fbb342c | 2016-04-07 16:41:31 +0530 | [diff] [blame] | 56 | self.update_valuation_rate("items") |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 57 | |
Anand Doshi | 3543f30 | 2013-05-24 19:25:01 +0530 | [diff] [blame] | 58 | def set_missing_values(self, for_validate=False): |
Anand Doshi | abc1003 | 2013-06-14 17:44:03 +0530 | [diff] [blame] | 59 | super(BuyingController, self).set_missing_values(for_validate) |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 60 | |
Rushabh Mehta | 0b99540 | 2013-08-09 15:29:59 +0530 | [diff] [blame] | 61 | self.set_supplier_from_item_default() |
Nabin Hait | 096d363 | 2013-10-17 17:01:14 +0530 | [diff] [blame] | 62 | self.set_price_list_currency("Buying") |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 63 | |
Anand Doshi | 3543f30 | 2013-05-24 19:25:01 +0530 | [diff] [blame] | 64 | # set contact and address details for supplier, if they are not mentioned |
Nabin Hait | 365ae27 | 2014-04-03 17:38:54 +0530 | [diff] [blame] | 65 | if getattr(self, "supplier", None): |
Shreya Shah | 5615cb4 | 2018-10-07 11:42:07 +0530 | [diff] [blame] | 66 | self.update_if_missing(get_party_details(self.supplier, party_type="Supplier", ignore_permissions=self.flags.ignore_permissions, |
Shreya Shah | 314c97c | 2018-10-11 16:59:40 +0530 | [diff] [blame] | 67 | doctype=self.doctype, company=self.company, party_address=self.supplier_address, shipping_address=self.get('shipping_address'))) |
Rushabh Mehta | 886c9ef | 2013-07-08 12:08:06 +0530 | [diff] [blame] | 68 | |
Nabin Hait | cccc45e | 2016-10-05 17:15:43 +0530 | [diff] [blame] | 69 | self.set_missing_item_details(for_validate) |
Rushabh Mehta | 436467a | 2013-07-08 12:37:59 +0530 | [diff] [blame] | 70 | |
Rushabh Mehta | 0b99540 | 2013-08-09 15:29:59 +0530 | [diff] [blame] | 71 | def set_supplier_from_item_default(self): |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 72 | if self.meta.get_field("supplier") and not self.supplier: |
Nabin Hait | dd38a26 | 2014-12-26 13:15:21 +0530 | [diff] [blame] | 73 | for d in self.get("items"): |
Nabin Hait | 33df0b4 | 2018-05-26 09:09:02 +0530 | [diff] [blame] | 74 | supplier = frappe.db.get_value("Item Default", |
| 75 | {"parent": d.item_code, "company": self.company}, "default_supplier") |
Rushabh Mehta | 0b99540 | 2013-08-09 15:29:59 +0530 | [diff] [blame] | 76 | if supplier: |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 77 | self.supplier = supplier |
Shreya Shah | 3c9839f | 2018-07-17 18:01:44 +0530 | [diff] [blame] | 78 | else: |
| 79 | item_group = frappe.db.get_value("Item", d.item_code, "item_group") |
| 80 | supplier = frappe.db.get_value("Item Default", |
| 81 | {"parent": item_group, "company": self.company}, "default_supplier") |
| 82 | if supplier: |
| 83 | self.supplier = supplier |
Rushabh Mehta | 0b99540 | 2013-08-09 15:29:59 +0530 | [diff] [blame] | 84 | break |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 85 | |
Nabin Hait | 205f7ce | 2013-04-26 13:35:06 +0530 | [diff] [blame] | 86 | def validate_stock_or_nonstock_items(self): |
Rohit Waghchaure | af05995 | 2018-05-07 18:46:53 +0530 | [diff] [blame] | 87 | if self.meta.get_field("taxes") and not self.get_stock_items() and not self.get_asset_items(): |
Deepesh Garg | f17ea2c | 2020-12-11 21:30:39 +0530 | [diff] [blame] | 88 | msg = _('Tax Category has been changed to "Total" because all the Items are non-stock items') |
| 89 | self.update_tax_category(msg) |
| 90 | |
| 91 | def update_tax_category_for_internal_transfer(self): |
| 92 | if self.doctype == 'Purchase Invoice' and self.is_internal_transfer(): |
| 93 | msg = _('Tax Category has been changed to "Total" as its an internal purchase.') |
| 94 | self.update_tax_category(msg) |
| 95 | |
| 96 | def update_tax_category(self, msg): |
| 97 | tax_for_valuation = [d for d in self.get("taxes") |
Nabin Hait | 205f7ce | 2013-04-26 13:35:06 +0530 | [diff] [blame] | 98 | if d.category in ["Valuation", "Valuation and Total"]] |
tundebabzy | 9a34620 | 2017-06-16 11:00:14 +0100 | [diff] [blame] | 99 | |
Deepesh Garg | f17ea2c | 2020-12-11 21:30:39 +0530 | [diff] [blame] | 100 | if tax_for_valuation: |
| 101 | for d in tax_for_valuation: |
| 102 | d.category = 'Total' |
| 103 | |
| 104 | msgprint(msg) |
Marica | 1c8cbd0 | 2020-05-02 17:55:15 +0530 | [diff] [blame] | 105 | |
Saqib | 562fd0e | 2020-04-08 12:11:40 +0530 | [diff] [blame] | 106 | def validate_asset_return(self): |
| 107 | if self.doctype not in ['Purchase Receipt', 'Purchase Invoice'] or not self.is_return: |
| 108 | return |
| 109 | |
| 110 | purchase_doc_field = 'purchase_receipt' if self.doctype == 'Purchase Receipt' else 'purchase_invoice' |
| 111 | not_cancelled_asset = [d.name for d in frappe.db.get_all("Asset", { |
| 112 | purchase_doc_field: self.return_against, |
| 113 | "docstatus": 1 |
| 114 | })] |
| 115 | if self.is_return and len(not_cancelled_asset): |
Rohit Waghchaure | 103ecec | 2020-10-26 11:55:08 +0530 | [diff] [blame] | 116 | frappe.throw(_("{} has submitted assets linked to it. You need to cancel the assets to create purchase return.") |
| 117 | .format(self.return_against), title=_("Not Allowed")) |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 118 | |
Rohit Waghchaure | af05995 | 2018-05-07 18:46:53 +0530 | [diff] [blame] | 119 | def get_asset_items(self): |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 120 | if self.doctype not in ['Purchase Order', 'Purchase Invoice', 'Purchase Receipt']: |
Rohit Waghchaure | d644e6d | 2018-05-12 15:27:18 +0530 | [diff] [blame] | 121 | return [] |
| 122 | |
Rohit Waghchaure | af05995 | 2018-05-07 18:46:53 +0530 | [diff] [blame] | 123 | return [d.item_code for d in self.items if d.is_fixed_asset] |
| 124 | |
Saurabh | fbb342c | 2016-04-07 16:41:31 +0530 | [diff] [blame] | 125 | def set_landed_cost_voucher_amount(self): |
| 126 | for d in self.get("items"): |
rohitwaghchaure | 2e8232e | 2017-08-10 11:32:59 +0530 | [diff] [blame] | 127 | lc_voucher_data = frappe.db.sql("""select sum(applicable_charges), cost_center |
Saurabh | fbb342c | 2016-04-07 16:41:31 +0530 | [diff] [blame] | 128 | from `tabLanded Cost Item` |
| 129 | where docstatus = 1 and purchase_receipt_item = %s""", d.name) |
rohitwaghchaure | 2e8232e | 2017-08-10 11:32:59 +0530 | [diff] [blame] | 130 | d.landed_cost_voucher_amount = lc_voucher_data[0][0] if lc_voucher_data else 0.0 |
| 131 | if not d.cost_center and lc_voucher_data and lc_voucher_data[0][1]: |
| 132 | d.db_set('cost_center', lc_voucher_data[0][1]) |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 133 | |
Deepesh Garg | 15ff6a5 | 2020-02-18 12:28:41 +0530 | [diff] [blame] | 134 | def validate_from_warehouse(self): |
| 135 | for item in self.get('items'): |
| 136 | if item.get('from_warehouse') and (item.get('from_warehouse') == item.get('warehouse')): |
| 137 | frappe.throw(_("Row #{0}: Accepted Warehouse and Supplier Warehouse cannot be same").format(item.idx)) |
| 138 | |
| 139 | if item.get('from_warehouse') and self.get('is_subcontracted') == 'Yes': |
| 140 | frappe.throw(_("Row #{0}: Cannot select Supplier Warehouse while suppling raw materials to subcontractor").format(item.idx)) |
| 141 | |
Rohit Waghchaure | f4dc716 | 2018-11-15 17:04:02 +0530 | [diff] [blame] | 142 | def set_supplier_address(self): |
| 143 | address_dict = { |
| 144 | 'supplier_address': 'address_display', |
| 145 | 'shipping_address': 'shipping_address_display' |
| 146 | } |
| 147 | |
| 148 | for address_field, address_display_field in address_dict.items(): |
| 149 | if self.get(address_field): |
| 150 | self.set(address_display_field, get_address_display(self.get(address_field))) |
| 151 | |
Nabin Hait | d3b6250 | 2013-01-21 17:24:31 +0530 | [diff] [blame] | 152 | def set_total_in_words(self): |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 153 | from frappe.utils import money_in_words |
Nabin Hait | 5690be1 | 2015-02-12 16:09:11 +0530 | [diff] [blame] | 154 | if self.meta.get_field("base_in_words"): |
Nabin Hait | 6b539d6 | 2018-08-29 12:41:12 +0530 | [diff] [blame] | 155 | if self.meta.get_field("base_rounded_total") and not self.is_rounded_total_disabled(): |
| 156 | amount = self.base_rounded_total |
| 157 | else: |
| 158 | amount = self.base_grand_total |
rohitwaghchaure | ae4ff5a | 2018-08-01 18:09:51 +0530 | [diff] [blame] | 159 | self.base_in_words = money_in_words(amount, self.company_currency) |
| 160 | |
Nabin Hait | 5b4c294 | 2013-01-22 11:12:02 +0530 | [diff] [blame] | 161 | if self.meta.get_field("in_words"): |
Nabin Hait | 6b539d6 | 2018-08-29 12:41:12 +0530 | [diff] [blame] | 162 | if self.meta.get_field("rounded_total") and not self.is_rounded_total_disabled(): |
| 163 | amount = self.rounded_total |
| 164 | else: |
| 165 | amount = self.grand_total |
rohitwaghchaure | ae4ff5a | 2018-08-01 18:09:51 +0530 | [diff] [blame] | 166 | |
| 167 | self.in_words = money_in_words(amount, self.currency) |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 168 | |
Nabin Hait | dc15b4f | 2014-01-20 16:48:49 +0530 | [diff] [blame] | 169 | # update valuation rate |
| 170 | def update_valuation_rate(self, parentfield): |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 171 | """ |
| 172 | item_tax_amount is the total tax amount applied on that item |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 173 | stored for valuation |
| 174 | |
Anand Doshi | 8595fcf | 2013-02-08 19:28:14 +0530 | [diff] [blame] | 175 | TODO: rename item_tax_amount to valuation_tax_amount |
| 176 | """ |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 177 | stock_and_asset_items = self.get_stock_items() + self.get_asset_items() |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 178 | |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 179 | stock_and_asset_items_qty, stock_and_asset_items_amount = 0, 0 |
| 180 | last_item_idx = 1 |
Rushabh Mehta | d2b34dc | 2014-03-27 16:12:56 +0530 | [diff] [blame] | 181 | for d in self.get(parentfield): |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 182 | if d.item_code and d.item_code in stock_and_asset_items: |
| 183 | stock_and_asset_items_qty += flt(d.qty) |
| 184 | stock_and_asset_items_amount += flt(d.base_net_amount) |
| 185 | last_item_idx = d.idx |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 186 | |
Nabin Hait | 82e3e25 | 2015-02-23 16:58:30 +0530 | [diff] [blame] | 187 | total_valuation_amount = sum([flt(d.base_tax_amount_after_discount_amount) for d in self.get("taxes") |
Nabin Hait | dc15b4f | 2014-01-20 16:48:49 +0530 | [diff] [blame] | 188 | if d.category in ["Valuation", "Valuation and Total"]]) |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 189 | |
Nabin Hait | dc15b4f | 2014-01-20 16:48:49 +0530 | [diff] [blame] | 190 | valuation_amount_adjustment = total_valuation_amount |
Rushabh Mehta | d2b34dc | 2014-03-27 16:12:56 +0530 | [diff] [blame] | 191 | for i, item in enumerate(self.get(parentfield)): |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 192 | if item.item_code and item.qty and item.item_code in stock_and_asset_items: |
| 193 | item_proportion = flt(item.base_net_amount) / stock_and_asset_items_amount if stock_and_asset_items_amount \ |
| 194 | else flt(item.qty) / stock_and_asset_items_qty |
Suraj Shetty | 48e9bc3 | 2020-01-29 15:06:18 +0530 | [diff] [blame] | 195 | |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 196 | if i == (last_item_idx - 1): |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 197 | item.item_tax_amount = flt(valuation_amount_adjustment, |
Nabin Hait | dc15b4f | 2014-01-20 16:48:49 +0530 | [diff] [blame] | 198 | self.precision("item_tax_amount", item)) |
| 199 | else: |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 200 | item.item_tax_amount = flt(item_proportion * total_valuation_amount, |
Nabin Hait | dc15b4f | 2014-01-20 16:48:49 +0530 | [diff] [blame] | 201 | self.precision("item_tax_amount", item)) |
| 202 | valuation_amount_adjustment -= item.item_tax_amount |
| 203 | |
Anand Doshi | 39384d3 | 2013-05-11 19:39:53 +0530 | [diff] [blame] | 204 | self.round_floats_in(item) |
Rushabh Mehta | ea0ff23 | 2016-07-07 14:02:26 +0530 | [diff] [blame] | 205 | if flt(item.conversion_factor)==0.0: |
bobzz-zone | b4c7bad | 2015-08-05 11:30:12 +0700 | [diff] [blame] | 206 | item.conversion_factor = get_conversion_factor(item.item_code, item.uom).get("conversion_factor") or 1.0 |
Rushabh Mehta | 724f9e5 | 2014-10-07 15:29:58 +0530 | [diff] [blame] | 207 | |
Rushabh Mehta | 5404778 | 2013-12-26 11:07:46 +0530 | [diff] [blame] | 208 | qty_in_stock_uom = flt(item.qty * item.conversion_factor) |
Saurabh | fbb342c | 2016-04-07 16:41:31 +0530 | [diff] [blame] | 209 | rm_supp_cost = flt(item.rm_supp_cost) if self.doctype in ["Purchase Receipt", "Purchase Invoice"] else 0.0 |
nabinhait | cc0692d | 2014-07-17 19:16:38 +0530 | [diff] [blame] | 210 | |
nabinhait | 87f2401 | 2014-07-16 19:48:29 +0530 | [diff] [blame] | 211 | landed_cost_voucher_amount = flt(item.landed_cost_voucher_amount) \ |
Saurabh | fbb342c | 2016-04-07 16:41:31 +0530 | [diff] [blame] | 212 | if self.doctype in ["Purchase Receipt", "Purchase Invoice"] else 0.0 |
Nabin Hait | 14b8af2 | 2014-08-28 12:42:28 +0530 | [diff] [blame] | 213 | |
Nabin Hait | 82e3e25 | 2015-02-23 16:58:30 +0530 | [diff] [blame] | 214 | item.valuation_rate = ((item.base_net_amount + item.item_tax_amount + rm_supp_cost |
nabinhait | 87f2401 | 2014-07-16 19:48:29 +0530 | [diff] [blame] | 215 | + landed_cost_voucher_amount) / qty_in_stock_uom) |
Anand Doshi | 4a7248e | 2013-02-27 18:10:30 +0530 | [diff] [blame] | 216 | else: |
Anand Doshi | 5af812a | 2013-05-10 19:23:02 +0530 | [diff] [blame] | 217 | item.valuation_rate = 0.0 |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 218 | |
Nabin Hait | 54d209f | 2013-03-01 18:51:10 +0530 | [diff] [blame] | 219 | def validate_for_subcontracting(self): |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 220 | if not self.is_subcontracted and self.sub_contracted_items: |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 221 | frappe.throw(_("Please enter 'Is Subcontracted' as Yes or No")) |
| 222 | |
ankitjavalkarwork | 5edae0e | 2014-11-05 20:14:53 +0530 | [diff] [blame] | 223 | if self.is_subcontracted == "Yes": |
Saurabh | fbb342c | 2016-04-07 16:41:31 +0530 | [diff] [blame] | 224 | if self.doctype in ["Purchase Receipt", "Purchase Invoice"] and not self.supplier_warehouse: |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 225 | frappe.throw(_("Supplier Warehouse mandatory for sub-contracted Purchase Receipt")) |
| 226 | |
Nabin Hait | dd38a26 | 2014-12-26 13:15:21 +0530 | [diff] [blame] | 227 | for item in self.get("items"): |
ankitjavalkarwork | 5edae0e | 2014-11-05 20:14:53 +0530 | [diff] [blame] | 228 | if item in self.sub_contracted_items and not item.bom: |
| 229 | frappe.throw(_("Please select BOM in BOM field for Item {0}").format(item.item_code)) |
| 230 | |
Nabin Hait | 07e5376 | 2018-01-05 18:19:59 +0530 | [diff] [blame] | 231 | if self.doctype == "Purchase Order": |
| 232 | for supplied_item in self.get("supplied_items"): |
| 233 | if not supplied_item.reserve_warehouse: |
| 234 | frappe.throw(_("Reserved Warehouse is mandatory for Item {0} in Raw Materials supplied").format(frappe.bold(supplied_item.rm_item_code))) |
pawan | 54465f5 | 2017-11-29 10:18:38 +0530 | [diff] [blame] | 235 | |
ankitjavalkarwork | 5edae0e | 2014-11-05 20:14:53 +0530 | [diff] [blame] | 236 | else: |
Nabin Hait | dd38a26 | 2014-12-26 13:15:21 +0530 | [diff] [blame] | 237 | for item in self.get("items"): |
ankitjavalkarwork | 5edae0e | 2014-11-05 20:14:53 +0530 | [diff] [blame] | 238 | if item.bom: |
| 239 | item.bom = None |
| 240 | |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 241 | def create_raw_materials_supplied(self, raw_material_table): |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 242 | if self.is_subcontracted=="Yes": |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 243 | parent_items = [] |
rohitwaghchaure | 2da6b3d | 2018-06-05 13:06:52 +0530 | [diff] [blame] | 244 | backflush_raw_materials_based_on = frappe.db.get_single_value("Buying Settings", |
| 245 | "backflush_raw_materials_of_subcontract_based_on") |
| 246 | if (self.doctype == 'Purchase Receipt' and |
| 247 | backflush_raw_materials_based_on != 'BOM'): |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 248 | self.update_raw_materials_supplied_based_on_stock_entries() |
rohitwaghchaure | 2da6b3d | 2018-06-05 13:06:52 +0530 | [diff] [blame] | 249 | else: |
| 250 | for item in self.get("items"): |
| 251 | if self.doctype in ["Purchase Receipt", "Purchase Invoice"]: |
| 252 | item.rm_supp_cost = 0.0 |
| 253 | if item.bom and item.item_code in self.sub_contracted_items: |
| 254 | self.update_raw_materials_supplied_based_on_bom(item, raw_material_table) |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 255 | |
rohitwaghchaure | 2da6b3d | 2018-06-05 13:06:52 +0530 | [diff] [blame] | 256 | if [item.item_code, item.name] not in parent_items: |
| 257 | parent_items.append([item.item_code, item.name]) |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 258 | |
rohitwaghchaure | 2da6b3d | 2018-06-05 13:06:52 +0530 | [diff] [blame] | 259 | self.cleanup_raw_materials_supplied(parent_items, raw_material_table) |
Nabin Hait | 54d209f | 2013-03-01 18:51:10 +0530 | [diff] [blame] | 260 | |
Saurabh | fbb342c | 2016-04-07 16:41:31 +0530 | [diff] [blame] | 261 | elif self.doctype in ["Purchase Receipt", "Purchase Invoice"]: |
Nabin Hait | dd38a26 | 2014-12-26 13:15:21 +0530 | [diff] [blame] | 262 | for item in self.get("items"): |
Nabin Hait | a0c239d | 2014-04-01 18:54:38 +0530 | [diff] [blame] | 263 | item.rm_supp_cost = 0.0 |
| 264 | |
Rohit Waghchaure | 4b9d2f2 | 2017-02-16 15:53:40 +0530 | [diff] [blame] | 265 | if self.is_subcontracted == "No" and self.get("supplied_items"): |
| 266 | self.set('supplied_items', []) |
| 267 | |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 268 | def update_raw_materials_supplied_based_on_stock_entries(self): |
| 269 | self.set('supplied_items', []) |
rohitwaghchaure | 2da6b3d | 2018-06-05 13:06:52 +0530 | [diff] [blame] | 270 | |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 271 | purchase_orders = set([d.purchase_order for d in self.items]) |
rohitwaghchaure | 2da6b3d | 2018-06-05 13:06:52 +0530 | [diff] [blame] | 272 | |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 273 | # qty of raw materials backflushed (for each item per purchase order) |
| 274 | backflushed_raw_materials_map = get_backflushed_subcontracted_raw_materials(purchase_orders) |
rohitwaghchaure | 2da6b3d | 2018-06-05 13:06:52 +0530 | [diff] [blame] | 275 | |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 276 | # qty of "finished good" item yet to be received |
| 277 | qty_to_be_received_map = get_qty_to_be_received(purchase_orders) |
| 278 | |
| 279 | for item in self.get('items'): |
marination | e927428 | 2020-08-28 12:21:10 +0530 | [diff] [blame] | 280 | if not item.purchase_order: |
| 281 | continue |
| 282 | |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 283 | # reset raw_material cost |
| 284 | item.rm_supp_cost = 0 |
| 285 | |
| 286 | # qty of raw materials transferred to the supplier |
| 287 | transferred_raw_materials = get_subcontracted_raw_materials_from_se(item.purchase_order, item.item_code) |
| 288 | |
| 289 | non_stock_items = get_non_stock_items(item.purchase_order, item.item_code) |
| 290 | |
| 291 | item_key = '{}{}'.format(item.item_code, item.purchase_order) |
| 292 | |
| 293 | fg_yet_to_be_received = qty_to_be_received_map.get(item_key) |
| 294 | |
marination | e927428 | 2020-08-28 12:21:10 +0530 | [diff] [blame] | 295 | if not fg_yet_to_be_received: |
| 296 | frappe.throw(_("Row #{0}: Item {1} is already fully received in Purchase Order {2}") |
| 297 | .format(item.idx, frappe.bold(item.item_code), |
| 298 | frappe.utils.get_link_to_form("Purchase Order", item.purchase_order)), |
| 299 | title=_("Limit Crossed")) |
| 300 | |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 301 | transferred_batch_qty_map = get_transferred_batch_qty_map(item.purchase_order, item.item_code) |
Rohit Waghchaure | 538d62b | 2020-09-22 10:36:52 +0530 | [diff] [blame] | 302 | # backflushed_batch_qty_map = get_backflushed_batch_qty_map(item.purchase_order, item.item_code) |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 303 | |
| 304 | for raw_material in transferred_raw_materials + non_stock_items: |
Rohit Waghchaure | 71913c3 | 2020-10-30 02:47:39 +0530 | [diff] [blame] | 305 | rm_item_key = (raw_material.rm_item_code, item.item_code, item.purchase_order) |
Rohit Waghchaure | c2a5f99 | 2019-12-20 12:56:01 +0530 | [diff] [blame] | 306 | raw_material_data = backflushed_raw_materials_map.get(rm_item_key, {}) |
| 307 | |
| 308 | consumed_qty = raw_material_data.get('qty', 0) |
| 309 | consumed_serial_nos = raw_material_data.get('serial_nos', '') |
| 310 | consumed_batch_nos = raw_material_data.get('batch_nos', '') |
| 311 | |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 312 | transferred_qty = raw_material.qty |
| 313 | |
| 314 | rm_qty_to_be_consumed = transferred_qty - consumed_qty |
| 315 | |
| 316 | # backflush all remaining transferred qty in the last Purchase Receipt |
| 317 | if fg_yet_to_be_received == item.qty: |
| 318 | qty = rm_qty_to_be_consumed |
| 319 | else: |
| 320 | qty = (rm_qty_to_be_consumed / fg_yet_to_be_received) * item.qty |
| 321 | |
| 322 | if frappe.get_cached_value('UOM', raw_material.stock_uom, 'must_be_whole_number'): |
| 323 | qty = frappe.utils.ceil(qty) |
| 324 | |
| 325 | if qty > rm_qty_to_be_consumed: |
| 326 | qty = rm_qty_to_be_consumed |
| 327 | |
| 328 | if not qty: continue |
| 329 | |
| 330 | if raw_material.serial_nos: |
| 331 | set_serial_nos(raw_material, consumed_serial_nos, qty) |
| 332 | |
| 333 | if raw_material.batch_nos: |
Rohit Waghchaure | 538d62b | 2020-09-22 10:36:52 +0530 | [diff] [blame] | 334 | backflushed_batch_qty_map = raw_material_data.get('consumed_batch', {}) |
| 335 | |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 336 | batches_qty = get_batches_with_qty(raw_material.rm_item_code, raw_material.main_item_code, |
rohitwaghchaure | 1cfa616 | 2020-09-14 21:12:16 +0530 | [diff] [blame] | 337 | qty, transferred_batch_qty_map, backflushed_batch_qty_map, item.purchase_order) |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 338 | for batch_data in batches_qty: |
| 339 | qty = batch_data['qty'] |
| 340 | raw_material.batch_no = batch_data['batch'] |
| 341 | self.append_raw_material_to_be_backflushed(item, raw_material, qty) |
| 342 | else: |
| 343 | self.append_raw_material_to_be_backflushed(item, raw_material, qty) |
| 344 | |
| 345 | def append_raw_material_to_be_backflushed(self, fg_item_doc, raw_material_data, qty): |
| 346 | rm = self.append('supplied_items', {}) |
| 347 | rm.update(raw_material_data) |
| 348 | |
rohitwaghchaure | 1cfa616 | 2020-09-14 21:12:16 +0530 | [diff] [blame] | 349 | if not rm.main_item_code: |
| 350 | rm.main_item_code = fg_item_doc.item_code |
| 351 | |
rohitwaghchaure | 4c688b7 | 2020-09-15 19:40:37 +0530 | [diff] [blame] | 352 | rm.reference_name = fg_item_doc.name |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 353 | rm.required_qty = qty |
| 354 | rm.consumed_qty = qty |
| 355 | |
| 356 | if not raw_material_data.get('non_stock_item'): |
| 357 | from erpnext.stock.utils import get_incoming_rate |
| 358 | rm.rate = get_incoming_rate({ |
| 359 | "item_code": raw_material_data.rm_item_code, |
| 360 | "warehouse": self.supplier_warehouse, |
| 361 | "posting_date": self.posting_date, |
| 362 | "posting_time": self.posting_time, |
| 363 | "qty": -1 * qty, |
| 364 | "serial_no": rm.serial_no |
| 365 | }) |
| 366 | |
| 367 | if not rm.rate: |
marination | 8a00587 | 2020-06-15 14:40:39 +0530 | [diff] [blame] | 368 | rm.rate = get_valuation_rate(raw_material_data.rm_item_code, self.supplier_warehouse, |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 369 | self.doctype, self.name, currency=self.company_currency, company=self.company) |
| 370 | |
| 371 | rm.amount = qty * flt(rm.rate) |
| 372 | fg_item_doc.rm_supp_cost += rm.amount |
rohitwaghchaure | 2da6b3d | 2018-06-05 13:06:52 +0530 | [diff] [blame] | 373 | |
| 374 | def update_raw_materials_supplied_based_on_bom(self, item, raw_material_table): |
rohitwaghchaure | bbd9b71 | 2018-03-07 15:39:40 +0530 | [diff] [blame] | 375 | exploded_item = 1 |
| 376 | if hasattr(item, 'include_exploded_items'): |
| 377 | exploded_item = item.get('include_exploded_items') |
| 378 | |
| 379 | bom_items = get_items_from_bom(item.item_code, item.bom, exploded_item) |
rohitwaghchaure | a3c3dec | 2018-03-28 11:51:44 +0530 | [diff] [blame] | 380 | |
| 381 | used_alternative_items = [] |
| 382 | if self.doctype == 'Purchase Receipt' and item.purchase_order: |
| 383 | used_alternative_items = get_used_alternative_items(purchase_order = item.purchase_order) |
| 384 | |
Nabin Hait | 54d209f | 2013-03-01 18:51:10 +0530 | [diff] [blame] | 385 | raw_materials_cost = 0 |
pawan | 2ff844e | 2017-11-30 18:14:55 +0530 | [diff] [blame] | 386 | items = list(set([d.item_code for d in bom_items])) |
Manas Solanki | 087a225 | 2018-05-04 16:02:38 +0530 | [diff] [blame] | 387 | item_wh = frappe._dict(frappe.db.sql("""select i.item_code, id.default_warehouse |
Nabin Hait | 5f86175 | 2018-05-23 19:37:06 +0530 | [diff] [blame] | 388 | from `tabItem` i, `tabItem Default` id |
| 389 | where id.parent=i.name and id.company=%s and i.name in ({0})""" |
Manas Solanki | 087a225 | 2018-05-04 16:02:38 +0530 | [diff] [blame] | 390 | .format(", ".join(["%s"] * len(items))), [self.company] + items)) |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 391 | |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 392 | for bom_item in bom_items: |
Nabin Hait | 07e5376 | 2018-01-05 18:19:59 +0530 | [diff] [blame] | 393 | if self.doctype == "Purchase Order": |
| 394 | reserve_warehouse = bom_item.source_warehouse or item_wh.get(bom_item.item_code) |
| 395 | if frappe.db.get_value("Warehouse", reserve_warehouse, "company") != self.company: |
| 396 | reserve_warehouse = None |
| 397 | |
rohitwaghchaure | a3c3dec | 2018-03-28 11:51:44 +0530 | [diff] [blame] | 398 | conversion_factor = item.conversion_factor |
| 399 | if (self.doctype == 'Purchase Receipt' and item.purchase_order and |
| 400 | bom_item.item_code in used_alternative_items): |
| 401 | alternative_item_data = used_alternative_items.get(bom_item.item_code) |
| 402 | bom_item.item_code = alternative_item_data.item_code |
| 403 | bom_item.item_name = alternative_item_data.item_name |
| 404 | bom_item.stock_uom = alternative_item_data.stock_uom |
| 405 | conversion_factor = alternative_item_data.conversion_factor |
| 406 | bom_item.description = alternative_item_data.description |
| 407 | |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 408 | # check if exists |
| 409 | exists = 0 |
| 410 | for d in self.get(raw_material_table): |
| 411 | if d.main_item_code == item.item_code and d.rm_item_code == bom_item.item_code \ |
| 412 | and d.reference_name == item.name: |
| 413 | rm, exists = d, 1 |
| 414 | break |
| 415 | |
| 416 | if not exists: |
| 417 | rm = self.append(raw_material_table, {}) |
| 418 | |
Fahim Ali Zain TP | 277935b | 2018-02-12 11:59:07 +0530 | [diff] [blame] | 419 | required_qty = flt(flt(bom_item.qty_consumed_per_unit) * (flt(item.qty) + getattr(item, 'rejected_qty', 0)) * |
rohitwaghchaure | a3c3dec | 2018-03-28 11:51:44 +0530 | [diff] [blame] | 420 | flt(conversion_factor), rm.precision("required_qty")) |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 421 | rm.reference_name = item.name |
| 422 | rm.bom_detail_no = bom_item.name |
| 423 | rm.main_item_code = item.item_code |
| 424 | rm.rm_item_code = bom_item.item_code |
| 425 | rm.stock_uom = bom_item.stock_uom |
| 426 | rm.required_qty = required_qty |
Nabin Hait | 07e5376 | 2018-01-05 18:19:59 +0530 | [diff] [blame] | 427 | if self.doctype == "Purchase Order" and not rm.reserve_warehouse: |
| 428 | rm.reserve_warehouse = reserve_warehouse |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 429 | |
rohitwaghchaure | a3c3dec | 2018-03-28 11:51:44 +0530 | [diff] [blame] | 430 | rm.conversion_factor = conversion_factor |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 431 | |
Saurabh | fbb342c | 2016-04-07 16:41:31 +0530 | [diff] [blame] | 432 | if self.doctype in ["Purchase Receipt", "Purchase Invoice"]: |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 433 | rm.consumed_qty = required_qty |
| 434 | rm.description = bom_item.description |
Nabin Hait | 88e8688 | 2019-09-10 14:07:45 +0530 | [diff] [blame] | 435 | if item.batch_no and frappe.db.get_value("Item", rm.rm_item_code, "has_batch_no") and not rm.batch_no: |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 436 | rm.batch_no = item.batch_no |
| 437 | |
Nabin Hait | e96e83d | 2014-10-08 18:06:14 +0530 | [diff] [blame] | 438 | # get raw materials rate |
Nabin Hait | fce2881 | 2014-10-08 18:38:27 +0530 | [diff] [blame] | 439 | if self.doctype == "Purchase Receipt": |
| 440 | from erpnext.stock.utils import get_incoming_rate |
Nabin Hait | fb6e434 | 2014-10-15 11:34:40 +0530 | [diff] [blame] | 441 | rm.rate = get_incoming_rate({ |
Nabin Hait | fce2881 | 2014-10-08 18:38:27 +0530 | [diff] [blame] | 442 | "item_code": bom_item.item_code, |
| 443 | "warehouse": self.supplier_warehouse, |
| 444 | "posting_date": self.posting_date, |
| 445 | "posting_time": self.posting_time, |
| 446 | "qty": -1 * required_qty, |
| 447 | "serial_no": rm.serial_no |
| 448 | }) |
Nabin Hait | fb6e434 | 2014-10-15 11:34:40 +0530 | [diff] [blame] | 449 | if not rm.rate: |
Rushabh Mehta | cc8b2b2 | 2017-03-31 12:44:29 +0530 | [diff] [blame] | 450 | rm.rate = get_valuation_rate(bom_item.item_code, self.supplier_warehouse, |
Rohit Waghchaure | a5f4094 | 2017-06-16 15:21:36 +0530 | [diff] [blame] | 451 | self.doctype, self.name, currency=self.company_currency, company = self.company) |
Nabin Hait | fce2881 | 2014-10-08 18:38:27 +0530 | [diff] [blame] | 452 | else: |
| 453 | rm.rate = bom_item.rate |
Nabin Hait | e96e83d | 2014-10-08 18:06:14 +0530 | [diff] [blame] | 454 | |
Nabin Hait | fce2881 | 2014-10-08 18:38:27 +0530 | [diff] [blame] | 455 | rm.amount = required_qty * flt(rm.rate) |
Nabin Hait | e96e83d | 2014-10-08 18:06:14 +0530 | [diff] [blame] | 456 | raw_materials_cost += flt(rm.amount) |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 457 | |
Nabin Hait | 14aa9c5 | 2016-04-18 15:54:01 +0530 | [diff] [blame] | 458 | if self.doctype in ("Purchase Receipt", "Purchase Invoice"): |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 459 | item.rm_supp_cost = raw_materials_cost |
| 460 | |
| 461 | def cleanup_raw_materials_supplied(self, parent_items, raw_material_table): |
| 462 | """Remove all those child items which are no longer present in main item table""" |
| 463 | delete_list = [] |
| 464 | for d in self.get(raw_material_table): |
| 465 | if [d.main_item_code, d.reference_name] not in parent_items: |
| 466 | # mark for deletion from doclist |
Nabin Hait | c3d1d6a | 2014-06-04 16:41:22 +0530 | [diff] [blame] | 467 | delete_list.append(d) |
Nabin Hait | 344f443 | 2014-05-08 19:08:20 +0530 | [diff] [blame] | 468 | |
| 469 | # delete from doclist |
| 470 | if delete_list: |
| 471 | rm_supplied_details = self.get(raw_material_table) |
| 472 | self.set(raw_material_table, []) |
| 473 | for d in rm_supplied_details: |
| 474 | if d not in delete_list: |
| 475 | self.append(raw_material_table, d) |
Nabin Hait | 54d209f | 2013-03-01 18:51:10 +0530 | [diff] [blame] | 476 | |
Nabin Hait | 5418d71 | 2013-02-27 18:11:17 +0530 | [diff] [blame] | 477 | @property |
| 478 | def sub_contracted_items(self): |
| 479 | if not hasattr(self, "_sub_contracted_items"): |
Nabin Hait | ebd5144 | 2013-04-23 15:36:26 +0530 | [diff] [blame] | 480 | self._sub_contracted_items = [] |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 481 | item_codes = list(set(item.item_code for item in |
Nabin Hait | dd38a26 | 2014-12-26 13:15:21 +0530 | [diff] [blame] | 482 | self.get("items"))) |
Nabin Hait | ebd5144 | 2013-04-23 15:36:26 +0530 | [diff] [blame] | 483 | if item_codes: |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 484 | items = frappe.get_all('Item', filters={ |
| 485 | 'name': ['in', item_codes], |
| 486 | 'is_sub_contracted_item': 1 |
| 487 | }) |
| 488 | self._sub_contracted_items = [item.name for item in items] |
Nabin Hait | 5418d71 | 2013-02-27 18:11:17 +0530 | [diff] [blame] | 489 | |
| 490 | return self._sub_contracted_items |
Rushabh Mehta | 9f0d625 | 2014-04-14 19:20:45 +0530 | [diff] [blame] | 491 | |
nabinhait | 614fb75 | 2014-07-14 10:47:50 +0530 | [diff] [blame] | 492 | def set_qty_as_per_stock_uom(self): |
Nabin Hait | dd38a26 | 2014-12-26 13:15:21 +0530 | [diff] [blame] | 493 | for d in self.get("items"): |
Nabin Hait | fd4bcd8 | 2015-05-22 16:55:40 +0530 | [diff] [blame] | 494 | if d.meta.get_field("stock_qty"): |
Deepesh Garg | 8b0302b | 2019-08-05 10:14:19 +0530 | [diff] [blame] | 495 | # Check if item code is present |
| 496 | # Conversion factor should not be mandatory for non itemized items |
| 497 | if not d.conversion_factor and d.item_code: |
Nabin Hait | e6e456b | 2015-05-13 17:21:44 +0530 | [diff] [blame] | 498 | frappe.throw(_("Row {0}: Conversion Factor is mandatory").format(d.idx)) |
Rushabh Mehta | 5b51cc8 | 2014-07-21 18:25:45 +0530 | [diff] [blame] | 499 | d.stock_qty = flt(d.qty) * flt(d.conversion_factor) |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 500 | |
marination | d6596a1 | 2020-11-02 15:07:48 +0530 | [diff] [blame] | 501 | if self.doctype=="Purchase Receipt" and d.meta.get_field("received_stock_qty"): |
| 502 | # Set Received Qty in Stock UOM |
| 503 | d.received_stock_qty = flt(d.received_qty) * flt(d.conversion_factor, d.precision("conversion_factor")) |
| 504 | |
Saurabh | 130c57b | 2016-04-04 15:49:36 +0530 | [diff] [blame] | 505 | def validate_purchase_return(self): |
| 506 | for d in self.get("items"): |
| 507 | if self.is_return and flt(d.rejected_qty) != 0: |
| 508 | frappe.throw(_("Row #{0}: Rejected Qty can not be entered in Purchase Return").format(d.idx)) |
| 509 | |
| 510 | # validate rate with ref PR |
| 511 | |
| 512 | def validate_rejected_warehouse(self): |
| 513 | for d in self.get("items"): |
| 514 | if flt(d.rejected_qty) and not d.rejected_warehouse: |
Saurabh | fbb342c | 2016-04-07 16:41:31 +0530 | [diff] [blame] | 515 | if self.rejected_warehouse: |
| 516 | d.rejected_warehouse = self.rejected_warehouse |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 517 | |
Saurabh | 130c57b | 2016-04-04 15:49:36 +0530 | [diff] [blame] | 518 | if not d.rejected_warehouse: |
| 519 | frappe.throw(_("Row #{0}: Rejected Warehouse is mandatory against rejected Item {1}").format(d.idx, d.item_code)) |
| 520 | |
| 521 | # validate accepted and rejected qty |
| 522 | def validate_accepted_rejected_qty(self): |
| 523 | for d in self.get("items"): |
Saurabh | 4f4d0a8 | 2017-03-13 14:31:48 +0530 | [diff] [blame] | 524 | self.validate_negative_quantity(d, ["received_qty","qty", "rejected_qty"]) |
Saurabh | 130c57b | 2016-04-04 15:49:36 +0530 | [diff] [blame] | 525 | if not flt(d.received_qty) and flt(d.qty): |
| 526 | d.received_qty = flt(d.qty) - flt(d.rejected_qty) |
| 527 | |
| 528 | elif not flt(d.qty) and flt(d.rejected_qty): |
| 529 | d.qty = flt(d.received_qty) - flt(d.rejected_qty) |
| 530 | |
| 531 | elif not flt(d.rejected_qty): |
| 532 | d.rejected_qty = flt(d.received_qty) - flt(d.qty) |
| 533 | |
Mangesh-Khairnar | 8c621ab | 2019-06-26 11:10:17 +0530 | [diff] [blame] | 534 | val = flt(d.qty) + flt(d.rejected_qty) |
Saurabh | 130c57b | 2016-04-04 15:49:36 +0530 | [diff] [blame] | 535 | # Check Received Qty = Accepted Qty + Rejected Qty |
Mangesh-Khairnar | 8c621ab | 2019-06-26 11:10:17 +0530 | [diff] [blame] | 536 | if (flt(val, d.precision("received_qty")) != flt(d.received_qty, d.precision("received_qty"))): |
Saurabh | 130c57b | 2016-04-04 15:49:36 +0530 | [diff] [blame] | 537 | frappe.throw(_("Accepted + Rejected Qty must be equal to Received quantity for Item {0}").format(d.item_code)) |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 538 | |
Saurabh | 4f4d0a8 | 2017-03-13 14:31:48 +0530 | [diff] [blame] | 539 | def validate_negative_quantity(self, item_row, field_list): |
| 540 | if self.is_return: |
| 541 | return |
| 542 | |
| 543 | item_row = item_row.as_dict() |
| 544 | for fieldname in field_list: |
| 545 | if flt(item_row[fieldname]) < 0: |
Suraj Shetty | da2c69e | 2020-01-29 15:34:06 +0530 | [diff] [blame] | 546 | frappe.throw(_("Row #{0}: {1} can not be negative for item {2}").format(item_row['idx'], |
| 547 | frappe.get_meta(item_row.doctype).get_label(fieldname), item_row['item_code'])) |
Saurabh | 4f4d0a8 | 2017-03-13 14:31:48 +0530 | [diff] [blame] | 548 | |
Mangesh-Khairnar | 5e474f4 | 2019-03-06 14:46:38 +0530 | [diff] [blame] | 549 | def check_for_on_hold_or_closed_status(self, ref_doctype, ref_fieldname): |
| 550 | for d in self.get("items"): |
| 551 | if d.get(ref_fieldname): |
| 552 | status = frappe.db.get_value(ref_doctype, d.get(ref_fieldname), "status") |
| 553 | if status in ("Closed", "On Hold"): |
| 554 | frappe.throw(_("{0} {1} is {2}").format(ref_doctype,d.get(ref_fieldname), status)) |
| 555 | |
Saurabh | e29248b | 2016-04-04 11:55:52 +0530 | [diff] [blame] | 556 | def update_stock_ledger(self, allow_negative_stock=False, via_landed_cost_voucher=False): |
Nabin Hait | 07e5376 | 2018-01-05 18:19:59 +0530 | [diff] [blame] | 557 | self.update_ordered_and_reserved_qty() |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 558 | |
Saurabh | e29248b | 2016-04-04 11:55:52 +0530 | [diff] [blame] | 559 | sl_entries = [] |
| 560 | stock_items = self.get_stock_items() |
| 561 | |
| 562 | for d in self.get('items'): |
| 563 | if d.item_code in stock_items and d.warehouse: |
| 564 | pr_qty = flt(d.qty) * flt(d.conversion_factor) |
| 565 | |
| 566 | if pr_qty: |
Deepesh Garg | 15ff6a5 | 2020-02-18 12:28:41 +0530 | [diff] [blame] | 567 | |
| 568 | if d.from_warehouse and ((not cint(self.is_return) and self.docstatus==1) |
| 569 | or (cint(self.is_return) and self.docstatus==2)): |
| 570 | from_warehouse_sle = self.get_sl_entries(d, { |
| 571 | "actual_qty": -1 * pr_qty, |
| 572 | "warehouse": d.from_warehouse |
| 573 | }) |
| 574 | |
| 575 | sl_entries.append(from_warehouse_sle) |
| 576 | |
Saurabh | e29248b | 2016-04-04 11:55:52 +0530 | [diff] [blame] | 577 | sle = self.get_sl_entries(d, { |
| 578 | "actual_qty": flt(pr_qty), |
| 579 | "serial_no": cstr(d.serial_no).strip() |
| 580 | }) |
| 581 | if self.is_return: |
rohitwaghchaure | 019d4de | 2020-08-20 15:53:58 +0530 | [diff] [blame] | 582 | filters = { |
| 583 | "voucher_type": self.doctype, |
| 584 | "voucher_no": self.return_against, |
| 585 | "item_code": d.item_code |
| 586 | } |
| 587 | |
| 588 | if (self.doctype == "Purchase Invoice" and self.update_stock |
| 589 | and d.get("purchase_invoice_item")): |
| 590 | filters["voucher_detail_no"] = d.purchase_invoice_item |
| 591 | elif self.doctype == "Purchase Receipt" and d.get("purchase_receipt_item"): |
| 592 | filters["voucher_detail_no"] = d.purchase_receipt_item |
| 593 | |
| 594 | original_incoming_rate = frappe.db.get_value("Stock Ledger Entry", filters, "incoming_rate") |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 595 | |
Saurabh | e29248b | 2016-04-04 11:55:52 +0530 | [diff] [blame] | 596 | sle.update({ |
Nabin Hait | b81ed45 | 2016-05-11 12:52:31 +0530 | [diff] [blame] | 597 | "outgoing_rate": original_incoming_rate |
Saurabh | e29248b | 2016-04-04 11:55:52 +0530 | [diff] [blame] | 598 | }) |
| 599 | else: |
Nabin Hait | b81ed45 | 2016-05-11 12:52:31 +0530 | [diff] [blame] | 600 | val_rate_db_precision = 6 if cint(self.precision("valuation_rate", d)) <= 6 else 9 |
| 601 | incoming_rate = flt(d.valuation_rate, val_rate_db_precision) |
Saurabh | e29248b | 2016-04-04 11:55:52 +0530 | [diff] [blame] | 602 | sle.update({ |
Nabin Hait | b81ed45 | 2016-05-11 12:52:31 +0530 | [diff] [blame] | 603 | "incoming_rate": incoming_rate |
Saurabh | e29248b | 2016-04-04 11:55:52 +0530 | [diff] [blame] | 604 | }) |
| 605 | sl_entries.append(sle) |
| 606 | |
Deepesh Garg | 15ff6a5 | 2020-02-18 12:28:41 +0530 | [diff] [blame] | 607 | if d.from_warehouse and ((not cint(self.is_return) and self.docstatus==2) |
| 608 | or (cint(self.is_return) and self.docstatus==1)): |
| 609 | from_warehouse_sle = self.get_sl_entries(d, { |
| 610 | "actual_qty": -1 * pr_qty, |
| 611 | "warehouse": d.from_warehouse |
| 612 | }) |
| 613 | |
| 614 | sl_entries.append(from_warehouse_sle) |
| 615 | |
Rohit Waghchaure | 560ba39 | 2016-08-29 18:19:32 +0530 | [diff] [blame] | 616 | if flt(d.rejected_qty) != 0: |
Saurabh | e29248b | 2016-04-04 11:55:52 +0530 | [diff] [blame] | 617 | sl_entries.append(self.get_sl_entries(d, { |
| 618 | "warehouse": d.rejected_warehouse, |
| 619 | "actual_qty": flt(d.rejected_qty) * flt(d.conversion_factor), |
| 620 | "serial_no": cstr(d.rejected_serial_no).strip(), |
| 621 | "incoming_rate": 0.0 |
| 622 | })) |
| 623 | |
| 624 | self.make_sl_entries_for_supplier_warehouse(sl_entries) |
| 625 | self.make_sl_entries(sl_entries, allow_negative_stock=allow_negative_stock, |
| 626 | via_landed_cost_voucher=via_landed_cost_voucher) |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 627 | |
Nabin Hait | 07e5376 | 2018-01-05 18:19:59 +0530 | [diff] [blame] | 628 | def update_ordered_and_reserved_qty(self): |
Nabin Hait | 14aa9c5 | 2016-04-18 15:54:01 +0530 | [diff] [blame] | 629 | po_map = {} |
| 630 | for d in self.get("items"): |
| 631 | if self.doctype=="Purchase Receipt" \ |
Rohit Waghchaure | a71d9d3 | 2016-07-05 00:34:00 +0530 | [diff] [blame] | 632 | and d.purchase_order: |
| 633 | po_map.setdefault(d.purchase_order, []).append(d.purchase_order_item) |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 634 | |
Nabin Hait | 14aa9c5 | 2016-04-18 15:54:01 +0530 | [diff] [blame] | 635 | elif self.doctype=="Purchase Invoice" and d.purchase_order and d.po_detail: |
| 636 | po_map.setdefault(d.purchase_order, []).append(d.po_detail) |
| 637 | |
| 638 | for po, po_item_rows in po_map.items(): |
| 639 | if po and po_item_rows: |
| 640 | po_obj = frappe.get_doc("Purchase Order", po) |
| 641 | |
| 642 | if po_obj.status in ["Closed", "Cancelled"]: |
| 643 | frappe.throw(_("{0} {1} is cancelled or closed").format(_("Purchase Order"), po), |
| 644 | frappe.InvalidStatusError) |
| 645 | |
| 646 | po_obj.update_ordered_qty(po_item_rows) |
Nabin Hait | 07e5376 | 2018-01-05 18:19:59 +0530 | [diff] [blame] | 647 | if self.is_subcontracted: |
| 648 | po_obj.update_reserved_qty_for_subcontract() |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 649 | |
Saurabh | e29248b | 2016-04-04 11:55:52 +0530 | [diff] [blame] | 650 | def make_sl_entries_for_supplier_warehouse(self, sl_entries): |
| 651 | if hasattr(self, 'supplied_items'): |
| 652 | for d in self.get('supplied_items'): |
| 653 | # negative quantity is passed, as raw material qty has to be decreased |
| 654 | # when PR is submitted and it has to be increased when PR is cancelled |
| 655 | sl_entries.append(self.get_sl_entries(d, { |
| 656 | "item_code": d.rm_item_code, |
| 657 | "warehouse": self.supplier_warehouse, |
| 658 | "actual_qty": -1*flt(d.consumed_qty), |
| 659 | })) |
Rushabh Mehta | b33df4a | 2016-07-04 11:38:37 +0530 | [diff] [blame] | 660 | |
rohitwaghchaure | fe22686 | 2017-12-28 16:11:27 +0530 | [diff] [blame] | 661 | def on_submit(self): |
| 662 | if self.get('is_return'): |
| 663 | return |
| 664 | |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 665 | if self.doctype in ['Purchase Receipt', 'Purchase Invoice']: |
Rohit Waghchaure | c6deb13 | 2018-05-07 15:58:41 +0530 | [diff] [blame] | 666 | field = 'purchase_invoice' if self.doctype == 'Purchase Invoice' else 'purchase_receipt' |
| 667 | |
| 668 | self.process_fixed_asset() |
| 669 | self.update_fixed_asset(field) |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 670 | |
rohitwaghchaure | fe22686 | 2017-12-28 16:11:27 +0530 | [diff] [blame] | 671 | update_last_purchase_rate(self, is_submit = 1) |
| 672 | |
| 673 | def on_cancel(self): |
Rohit Waghchaure | 5fa9a7a | 2019-04-01 00:40:38 +0530 | [diff] [blame] | 674 | super(BuyingController, self).on_cancel() |
| 675 | |
rohitwaghchaure | fe22686 | 2017-12-28 16:11:27 +0530 | [diff] [blame] | 676 | if self.get('is_return'): |
| 677 | return |
| 678 | |
| 679 | update_last_purchase_rate(self, is_submit = 0) |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 680 | if self.doctype in ['Purchase Receipt', 'Purchase Invoice']: |
Rohit Waghchaure | c6deb13 | 2018-05-07 15:58:41 +0530 | [diff] [blame] | 681 | field = 'purchase_invoice' if self.doctype == 'Purchase Invoice' else 'purchase_receipt' |
| 682 | |
Rohit Waghchaure | af05995 | 2018-05-07 18:46:53 +0530 | [diff] [blame] | 683 | self.delete_linked_asset() |
| 684 | self.update_fixed_asset(field, delete_asset=True) |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 685 | |
Rohit Waghchaure | 4d4fb6d | 2018-05-15 22:12:44 +0530 | [diff] [blame] | 686 | def validate_budget(self): |
| 687 | if self.docstatus == 1: |
| 688 | for data in self.get('items'): |
rohitwaghchaure | 77a45b4 | 2018-06-15 18:03:31 +0530 | [diff] [blame] | 689 | args = data.as_dict() |
| 690 | args.update({ |
| 691 | 'doctype': self.doctype, |
rohitwaghchaure | 34c1877 | 2018-06-25 10:31:08 +0530 | [diff] [blame] | 692 | 'company': self.company, |
| 693 | 'posting_date': (self.schedule_date |
| 694 | if self.doctype == 'Material Request' else self.transaction_date) |
rohitwaghchaure | 77a45b4 | 2018-06-15 18:03:31 +0530 | [diff] [blame] | 695 | }) |
| 696 | |
| 697 | validate_expense_against_budget(args) |
Rohit Waghchaure | 4d4fb6d | 2018-05-15 22:12:44 +0530 | [diff] [blame] | 698 | |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 699 | def process_fixed_asset(self): |
Rohit Waghchaure | c6deb13 | 2018-05-07 15:58:41 +0530 | [diff] [blame] | 700 | if self.doctype == 'Purchase Invoice' and not self.update_stock: |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 701 | return |
| 702 | |
Rohit Waghchaure | af05995 | 2018-05-07 18:46:53 +0530 | [diff] [blame] | 703 | asset_items = self.get_asset_items() |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 704 | if asset_items: |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 705 | self.auto_make_assets(asset_items) |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 706 | |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 707 | def auto_make_assets(self, asset_items): |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 708 | items_data = get_asset_item_details(asset_items) |
Saqib | f37a46e | 2019-11-22 16:32:50 +0530 | [diff] [blame] | 709 | messages = [] |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 710 | |
| 711 | for d in self.items: |
| 712 | if d.is_fixed_asset: |
| 713 | item_data = items_data.get(d.item_code) |
| 714 | |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 715 | if item_data.get('auto_create_assets'): |
| 716 | # If asset has to be auto created |
| 717 | # Check for asset naming series |
| 718 | if item_data.get('asset_naming_series'): |
Saqib | bba78f0 | 2020-03-31 10:49:44 +0530 | [diff] [blame] | 719 | created_assets = [] |
| 720 | |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 721 | for qty in range(cint(d.qty)): |
Saqib | bba78f0 | 2020-03-31 10:49:44 +0530 | [diff] [blame] | 722 | asset = self.make_asset(d) |
| 723 | created_assets.append(asset) |
Marica | 1c8cbd0 | 2020-05-02 17:55:15 +0530 | [diff] [blame] | 724 | |
Saqib | bba78f0 | 2020-03-31 10:49:44 +0530 | [diff] [blame] | 725 | if len(created_assets) > 5: |
| 726 | # dont show asset form links if more than 5 assets are created |
Marica | 1c8cbd0 | 2020-05-02 17:55:15 +0530 | [diff] [blame] | 727 | messages.append(_('{} Assets created for {}').format(len(created_assets), frappe.bold(d.item_code))) |
Saqib | bba78f0 | 2020-03-31 10:49:44 +0530 | [diff] [blame] | 728 | else: |
| 729 | assets_link = list(map(lambda d: frappe.utils.get_link_to_form('Asset', d), created_assets)) |
| 730 | assets_link = frappe.bold(','.join(assets_link)) |
| 731 | |
| 732 | is_plural = 's' if len(created_assets) != 1 else '' |
| 733 | messages.append( |
| 734 | _('Asset{} {assets_link} created for {}').format(is_plural, frappe.bold(d.item_code), assets_link=assets_link) |
| 735 | ) |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 736 | else: |
Saqib | bba78f0 | 2020-03-31 10:49:44 +0530 | [diff] [blame] | 737 | frappe.throw(_("Row {}: Asset Naming Series is mandatory for the auto creation for item {}") |
| 738 | .format(d.idx, frappe.bold(d.item_code))) |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 739 | else: |
Saqib | bba78f0 | 2020-03-31 10:49:44 +0530 | [diff] [blame] | 740 | messages.append(_("Assets not created for {0}. You will have to create asset manually.") |
| 741 | .format(frappe.bold(d.item_code))) |
Saqib | f37a46e | 2019-11-22 16:32:50 +0530 | [diff] [blame] | 742 | |
| 743 | for message in messages: |
Saqib | bba78f0 | 2020-03-31 10:49:44 +0530 | [diff] [blame] | 744 | frappe.msgprint(message, title="Success", indicator="green") |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 745 | |
| 746 | def make_asset(self, row): |
Rohit Waghchaure | aa7b434 | 2018-05-11 01:56:05 +0530 | [diff] [blame] | 747 | if not row.asset_location: |
| 748 | frappe.throw(_("Row {0}: Enter location for the asset item {1}").format(row.idx, row.item_code)) |
| 749 | |
Rohit Waghchaure | f2684ae | 2018-05-08 13:22:22 +0530 | [diff] [blame] | 750 | item_data = frappe.db.get_value('Item', |
| 751 | row.item_code, ['asset_naming_series', 'asset_category'], as_dict=1) |
| 752 | |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 753 | purchase_amount = flt(row.base_rate + row.item_tax_amount) |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 754 | asset = frappe.get_doc({ |
| 755 | 'doctype': 'Asset', |
| 756 | 'item_code': row.item_code, |
Rohit Waghchaure | c6deb13 | 2018-05-07 15:58:41 +0530 | [diff] [blame] | 757 | 'asset_name': row.item_name, |
Rohit Waghchaure | f2684ae | 2018-05-08 13:22:22 +0530 | [diff] [blame] | 758 | 'naming_series': item_data.get('asset_naming_series') or 'AST', |
| 759 | 'asset_category': item_data.get('asset_category'), |
Rohit Waghchaure | aa7b434 | 2018-05-11 01:56:05 +0530 | [diff] [blame] | 760 | 'location': row.asset_location, |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 761 | 'company': self.company, |
thefalconx33 | c15cc8f | 2019-09-24 18:49:16 +0530 | [diff] [blame] | 762 | 'supplier': self.supplier, |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 763 | 'purchase_date': self.posting_date, |
Rohit Waghchaure | 0ea6fe4 | 2018-05-08 23:31:58 +0530 | [diff] [blame] | 764 | 'calculate_depreciation': 1, |
Rohit Waghchaure | 16bc853 | 2018-05-12 12:06:00 +0530 | [diff] [blame] | 765 | 'purchase_receipt_amount': purchase_amount, |
| 766 | 'gross_purchase_amount': purchase_amount, |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 767 | 'purchase_receipt': self.name if self.doctype == 'Purchase Receipt' else None, |
| 768 | 'purchase_invoice': self.name if self.doctype == 'Purchase Invoice' else None |
| 769 | }) |
| 770 | |
| 771 | asset.flags.ignore_validate = True |
| 772 | asset.flags.ignore_mandatory = True |
Rohit Waghchaure | aa7b434 | 2018-05-11 01:56:05 +0530 | [diff] [blame] | 773 | asset.set_missing_values() |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 774 | asset.insert() |
| 775 | |
Saqib | bba78f0 | 2020-03-31 10:49:44 +0530 | [diff] [blame] | 776 | return asset.name |
| 777 | |
Rohit Waghchaure | af05995 | 2018-05-07 18:46:53 +0530 | [diff] [blame] | 778 | def update_fixed_asset(self, field, delete_asset = False): |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 779 | for d in self.get("items"): |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 780 | if d.is_fixed_asset: |
| 781 | is_auto_create_enabled = frappe.db.get_value('Item', d.item_code, 'auto_create_assets') |
| 782 | assets = frappe.db.get_all('Asset', filters={ field : self.name, 'item_code' : d.item_code }) |
Rohit Waghchaure | af05995 | 2018-05-07 18:46:53 +0530 | [diff] [blame] | 783 | |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 784 | for asset in assets: |
| 785 | asset = frappe.get_doc('Asset', asset.name) |
| 786 | if delete_asset and is_auto_create_enabled: |
| 787 | # need to delete movements to delete assets otherwise throws link exists error |
Saqib | cd3976f | 2019-11-25 12:24:34 +0530 | [diff] [blame] | 788 | movements = frappe.db.sql( |
Suraj Shetty | 48e9bc3 | 2020-01-29 15:06:18 +0530 | [diff] [blame] | 789 | """SELECT asm.name |
Saqib | cd3976f | 2019-11-25 12:24:34 +0530 | [diff] [blame] | 790 | FROM `tabAsset Movement` asm, `tabAsset Movement Item` asm_item |
| 791 | WHERE asm_item.parent=asm.name and asm_item.asset=%s""", asset.name, as_dict=1) |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 792 | for movement in movements: |
| 793 | frappe.delete_doc('Asset Movement', movement.name, force=1) |
| 794 | frappe.delete_doc("Asset", asset.name, force=1) |
| 795 | continue |
Rohit Waghchaure | af05995 | 2018-05-07 18:46:53 +0530 | [diff] [blame] | 796 | |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 797 | if self.docstatus in [0, 1] and not asset.get(field): |
| 798 | asset.set(field, self.name) |
| 799 | asset.purchase_date = self.posting_date |
| 800 | asset.supplier = self.supplier |
| 801 | elif self.docstatus == 2: |
Saqib | cd3976f | 2019-11-25 12:24:34 +0530 | [diff] [blame] | 802 | if asset.docstatus == 0: |
| 803 | asset.set(field, None) |
| 804 | asset.supplier = None |
| 805 | if asset.docstatus == 1 and delete_asset: |
Rohit Waghchaure | 103ecec | 2020-10-26 11:55:08 +0530 | [diff] [blame] | 806 | frappe.throw(_('Cannot cancel this document as it is linked with submitted asset {0}. Please cancel it to continue.') |
| 807 | .format(frappe.utils.get_link_to_form('Asset', asset.name))) |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 808 | |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 809 | asset.flags.ignore_validate_update_after_submit = True |
| 810 | asset.flags.ignore_mandatory = True |
| 811 | if asset.docstatus == 0: |
| 812 | asset.flags.ignore_validate = True |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 813 | |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 814 | asset.save() |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 815 | |
Rohit Waghchaure | af05995 | 2018-05-07 18:46:53 +0530 | [diff] [blame] | 816 | def delete_linked_asset(self): |
Rohit Waghchaure | c6deb13 | 2018-05-07 15:58:41 +0530 | [diff] [blame] | 817 | if self.doctype == 'Purchase Invoice' and not self.get('update_stock'): |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 818 | return |
| 819 | |
Nabin Hait | 1e7c32b | 2018-09-26 18:01:00 +0530 | [diff] [blame] | 820 | frappe.db.sql("delete from `tabAsset Movement` where reference_name=%s", self.name) |
rohitwaghchaure | fe22686 | 2017-12-28 16:11:27 +0530 | [diff] [blame] | 821 | |
Nabin Hait | 5a83420 | 2017-10-05 19:51:10 +0530 | [diff] [blame] | 822 | def validate_schedule_date(self): |
Sahil Khan | 34766c0 | 2018-12-20 18:50:24 +0530 | [diff] [blame] | 823 | if not self.get("items"): |
| 824 | return |
Nabin Hait | a113861 | 2019-10-15 12:43:27 +0530 | [diff] [blame] | 825 | |
Nabin Hait | dd89325 | 2019-10-21 13:40:00 +0530 | [diff] [blame] | 826 | earliest_schedule_date = min([d.schedule_date for d in self.get("items")]) |
| 827 | if earliest_schedule_date: |
| 828 | self.schedule_date = earliest_schedule_date |
Nabin Hait | 5a83420 | 2017-10-05 19:51:10 +0530 | [diff] [blame] | 829 | |
| 830 | if self.schedule_date: |
| 831 | for d in self.get('items'): |
| 832 | if not d.schedule_date: |
| 833 | d.schedule_date = self.schedule_date |
| 834 | |
Prateeksha Singh | cbd06fd | 2018-01-05 21:28:01 +0530 | [diff] [blame] | 835 | if (d.schedule_date and self.transaction_date and |
| 836 | getdate(d.schedule_date) < getdate(self.transaction_date)): |
Nabin Hait | 96b264b | 2018-01-02 11:50:29 +0530 | [diff] [blame] | 837 | frappe.throw(_("Row #{0}: Reqd by Date cannot be before Transaction Date").format(d.idx)) |
Nabin Hait | 5a83420 | 2017-10-05 19:51:10 +0530 | [diff] [blame] | 838 | else: |
Nabin Hait | 96b264b | 2018-01-02 11:50:29 +0530 | [diff] [blame] | 839 | frappe.throw(_("Please enter Reqd by Date")) |
Rushabh Mehta | 30dc9a1 | 2017-11-17 14:31:09 +0530 | [diff] [blame] | 840 | |
Zarrar | fc03a04 | 2018-06-04 12:52:52 +0530 | [diff] [blame] | 841 | def validate_items(self): |
| 842 | # validate items to see if they have is_purchase_item or is_subcontracted_item enabled |
Nabin Hait | 0bef91c | 2018-06-18 16:33:48 +0530 | [diff] [blame] | 843 | if self.doctype=="Material Request": return |
Zarrar | fc03a04 | 2018-06-04 12:52:52 +0530 | [diff] [blame] | 844 | |
rohitwaghchaure | 50d8c4a | 2018-06-05 13:08:10 +0530 | [diff] [blame] | 845 | if hasattr(self, "is_subcontracted") and self.is_subcontracted == 'Yes': |
Zarrar | fc03a04 | 2018-06-04 12:52:52 +0530 | [diff] [blame] | 846 | validate_item_type(self, "is_sub_contracted_item", "subcontracted") |
| 847 | else: |
| 848 | validate_item_type(self, "is_purchase_item", "purchase") |
| 849 | |
rohitwaghchaure | bbd9b71 | 2018-03-07 15:39:40 +0530 | [diff] [blame] | 850 | def get_items_from_bom(item_code, bom, exploded_item=1): |
| 851 | doctype = "BOM Item" if not exploded_item else "BOM Explosion Item" |
| 852 | |
| 853 | bom_items = frappe.db.sql("""select t2.item_code, t2.name, |
| 854 | t2.rate, t2.stock_uom, t2.source_warehouse, t2.description, |
| 855 | t2.stock_qty / ifnull(t1.quantity, 1) as qty_consumed_per_unit |
| 856 | from |
| 857 | `tabBOM` t1, `tab{0}` t2, tabItem t3 |
| 858 | where |
| 859 | t2.parent = t1.name and t1.item = %s |
| 860 | and t1.docstatus = 1 and t1.is_active = 1 and t1.name = %s |
Kanchan Chauhan | 654c36e | 2020-10-08 16:37:05 +0530 | [diff] [blame] | 861 | and t2.sourced_by_supplier = 0 |
Rohit Waghchaure | 10e8073 | 2019-08-08 18:19:24 +0530 | [diff] [blame] | 862 | and t2.item_code = t3.name""".format(doctype), |
rohitwaghchaure | bbd9b71 | 2018-03-07 15:39:40 +0530 | [diff] [blame] | 863 | (item_code, bom), as_dict=1) |
| 864 | |
| 865 | if not bom_items: |
| 866 | msgprint(_("Specified BOM {0} does not exist for Item {1}").format(bom, item_code), raise_exception=1) |
| 867 | |
rohitwaghchaure | a3c3dec | 2018-03-28 11:51:44 +0530 | [diff] [blame] | 868 | return bom_items |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 869 | |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 870 | def get_subcontracted_raw_materials_from_se(purchase_order, fg_item): |
| 871 | common_query = """ |
| 872 | SELECT |
| 873 | sed.item_code AS rm_item_code, |
| 874 | SUM(sed.qty) AS qty, |
| 875 | sed.description, |
| 876 | sed.stock_uom, |
| 877 | sed.subcontracted_item AS main_item_code, |
| 878 | {serial_no_concat_syntax} AS serial_nos, |
| 879 | {batch_no_concat_syntax} AS batch_nos |
| 880 | FROM `tabStock Entry` se,`tabStock Entry Detail` sed |
| 881 | WHERE |
| 882 | se.name = sed.parent |
| 883 | AND se.docstatus=1 |
| 884 | AND se.purpose='Send to Subcontractor' |
| 885 | AND se.purchase_order = %s |
| 886 | AND IFNULL(sed.t_warehouse, '') != '' |
rohitwaghchaure | 1cfa616 | 2020-09-14 21:12:16 +0530 | [diff] [blame] | 887 | AND IFNULL(sed.subcontracted_item, '') in ('', %s) |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 888 | GROUP BY sed.item_code, sed.subcontracted_item |
| 889 | """ |
| 890 | raw_materials = frappe.db.multisql({ |
| 891 | 'mariadb': common_query.format( |
| 892 | serial_no_concat_syntax="GROUP_CONCAT(sed.serial_no)", |
| 893 | batch_no_concat_syntax="GROUP_CONCAT(sed.batch_no)" |
| 894 | ), |
| 895 | 'postgres': common_query.format( |
| 896 | serial_no_concat_syntax="STRING_AGG(sed.serial_no, ',')", |
| 897 | batch_no_concat_syntax="STRING_AGG(sed.batch_no, ',')" |
| 898 | ) |
| 899 | }, (purchase_order, fg_item), as_dict=1) |
rohitwaghchaure | 2da6b3d | 2018-06-05 13:06:52 +0530 | [diff] [blame] | 900 | |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 901 | return raw_materials |
| 902 | |
| 903 | def get_backflushed_subcontracted_raw_materials(purchase_orders): |
rohitwaghchaure | 4c688b7 | 2020-09-15 19:40:37 +0530 | [diff] [blame] | 904 | purchase_receipts = frappe.get_all("Purchase Receipt Item", |
| 905 | fields = ["purchase_order", "item_code", "name", "parent"], |
| 906 | filters={"docstatus": 1, "purchase_order": ("in", list(purchase_orders))}) |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 907 | |
rohitwaghchaure | 4c688b7 | 2020-09-15 19:40:37 +0530 | [diff] [blame] | 908 | distinct_purchase_receipts = {} |
| 909 | for pr in purchase_receipts: |
| 910 | key = (pr.purchase_order, pr.item_code, pr.parent) |
| 911 | distinct_purchase_receipts.setdefault(key, []).append(pr.name) |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 912 | |
| 913 | backflushed_raw_materials_map = frappe._dict() |
rohitwaghchaure | 4c688b7 | 2020-09-15 19:40:37 +0530 | [diff] [blame] | 914 | for args, references in iteritems(distinct_purchase_receipts): |
| 915 | purchase_receipt_supplied_items = get_supplied_items(args[1], args[2], references) |
| 916 | |
| 917 | for data in purchase_receipt_supplied_items: |
Rohit Waghchaure | 71913c3 | 2020-10-30 02:47:39 +0530 | [diff] [blame] | 918 | pr_key = (data.rm_item_code, data.main_item_code, args[0]) |
rohitwaghchaure | 4c688b7 | 2020-09-15 19:40:37 +0530 | [diff] [blame] | 919 | if pr_key not in backflushed_raw_materials_map: |
| 920 | backflushed_raw_materials_map.setdefault(pr_key, frappe._dict({ |
| 921 | "qty": 0.0, |
| 922 | "serial_no": [], |
Rohit Waghchaure | 538d62b | 2020-09-22 10:36:52 +0530 | [diff] [blame] | 923 | "batch_no": [], |
| 924 | "consumed_batch": {} |
rohitwaghchaure | 4c688b7 | 2020-09-15 19:40:37 +0530 | [diff] [blame] | 925 | })) |
| 926 | |
| 927 | row = backflushed_raw_materials_map.get(pr_key) |
| 928 | row.qty += data.consumed_qty |
| 929 | |
| 930 | for field in ["serial_no", "batch_no"]: |
| 931 | if data.get(field): |
| 932 | row[field].append(data.get(field)) |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 933 | |
Rohit Waghchaure | 538d62b | 2020-09-22 10:36:52 +0530 | [diff] [blame] | 934 | if data.get("batch_no"): |
| 935 | if data.get("batch_no") in row.consumed_batch: |
| 936 | row.consumed_batch[data.get("batch_no")] += data.consumed_qty |
| 937 | else: |
| 938 | row.consumed_batch[data.get("batch_no")] = data.consumed_qty |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 939 | |
| 940 | return backflushed_raw_materials_map |
rohitwaghchaure | 2da6b3d | 2018-06-05 13:06:52 +0530 | [diff] [blame] | 941 | |
rohitwaghchaure | 4c688b7 | 2020-09-15 19:40:37 +0530 | [diff] [blame] | 942 | def get_supplied_items(item_code, purchase_receipt, references): |
| 943 | return frappe.get_all("Purchase Receipt Item Supplied", |
Rohit Waghchaure | 71913c3 | 2020-10-30 02:47:39 +0530 | [diff] [blame] | 944 | fields=["rm_item_code", "main_item_code", "consumed_qty", "serial_no", "batch_no"], |
rohitwaghchaure | 4c688b7 | 2020-09-15 19:40:37 +0530 | [diff] [blame] | 945 | filters={"main_item_code": item_code, "parent": purchase_receipt, "reference_name": ("in", references)}) |
| 946 | |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 947 | def get_asset_item_details(asset_items): |
| 948 | asset_items_data = {} |
Saqib | d995609 | 2019-11-18 11:46:55 +0530 | [diff] [blame] | 949 | for d in frappe.get_all('Item', fields = ["name", "auto_create_assets", "asset_naming_series"], |
Rohit Waghchaure | ab84254 | 2018-04-26 19:18:29 +0530 | [diff] [blame] | 950 | filters = {'name': ('in', asset_items)}): |
| 951 | asset_items_data.setdefault(d.name, d) |
| 952 | |
| 953 | return asset_items_data |
Ameya Shenoy | 873e28d | 2018-06-06 05:53:19 +0000 | [diff] [blame] | 954 | |
Zarrar | fc03a04 | 2018-06-04 12:52:52 +0530 | [diff] [blame] | 955 | def validate_item_type(doc, fieldname, message): |
| 956 | # iterate through items and check if they are valid sales or purchase items |
Zarrar | 7c088ff | 2018-06-05 10:32:09 +0530 | [diff] [blame] | 957 | items = [d.item_code for d in doc.items if d.item_code] |
| 958 | |
| 959 | # No validation check inase of creating transaction using 'Opening Invoice Creation Tool' |
| 960 | if not items: |
| 961 | return |
| 962 | |
Suraj Shetty | bfc195d | 2018-09-21 10:20:52 +0530 | [diff] [blame] | 963 | item_list = ", ".join(["%s" % frappe.db.escape(d) for d in items]) |
Zarrar | fc03a04 | 2018-06-04 12:52:52 +0530 | [diff] [blame] | 964 | |
| 965 | invalid_items = [d[0] for d in frappe.db.sql(""" |
| 966 | select item_code from tabItem where name in ({0}) and {1}=0 |
| 967 | """.format(item_list, fieldname), as_list=True)] |
| 968 | |
| 969 | if invalid_items: |
Faris Ansari | 2ab6e0e | 2018-09-19 13:13:59 +0530 | [diff] [blame] | 970 | items = ", ".join([d for d in invalid_items]) |
| 971 | |
| 972 | if len(invalid_items) > 1: |
Suraj Shetty | 48e9bc3 | 2020-01-29 15:06:18 +0530 | [diff] [blame] | 973 | 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 Ansari | 2ab6e0e | 2018-09-19 13:13:59 +0530 | [diff] [blame] | 974 | else: |
Suraj Shetty | 48e9bc3 | 2020-01-29 15:06:18 +0530 | [diff] [blame] | 975 | 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 Ansari | 2ab6e0e | 2018-09-19 13:13:59 +0530 | [diff] [blame] | 976 | |
| 977 | frappe.throw(error_message) |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 978 | |
| 979 | def get_qty_to_be_received(purchase_orders): |
| 980 | return frappe._dict(frappe.db.sql(""" |
| 981 | SELECT CONCAT(poi.`item_code`, poi.`parent`) AS item_key, |
| 982 | SUM(poi.`qty`) - SUM(poi.`received_qty`) AS qty_to_be_received |
| 983 | FROM `tabPurchase Order Item` poi |
| 984 | WHERE |
| 985 | poi.`parent` in %s |
| 986 | GROUP BY poi.`item_code`, poi.`parent` |
| 987 | HAVING SUM(poi.`qty`) > SUM(poi.`received_qty`) |
| 988 | """, (purchase_orders))) |
| 989 | |
| 990 | def get_non_stock_items(purchase_order, fg_item_code): |
| 991 | return frappe.db.sql(""" |
| 992 | SELECT |
| 993 | pois.main_item_code, |
| 994 | pois.rm_item_code, |
| 995 | item.description, |
| 996 | pois.required_qty AS qty, |
| 997 | pois.rate, |
| 998 | 1 as non_stock_item, |
| 999 | pois.stock_uom |
| 1000 | FROM `tabPurchase Order Item Supplied` pois, `tabItem` item |
| 1001 | WHERE |
| 1002 | pois.`rm_item_code` = item.`name` |
| 1003 | AND item.is_stock_item = 0 |
| 1004 | AND pois.`parent` = %s |
| 1005 | AND pois.`main_item_code` = %s |
| 1006 | """, (purchase_order, fg_item_code), as_dict=1) |
| 1007 | |
| 1008 | |
| 1009 | def set_serial_nos(raw_material, consumed_serial_nos, qty): |
| 1010 | serial_nos = set(get_serial_nos(raw_material.serial_nos)) - \ |
| 1011 | set(get_serial_nos(consumed_serial_nos)) |
| 1012 | if serial_nos and qty <= len(serial_nos): |
| 1013 | raw_material.serial_no = '\n'.join(list(serial_nos)[0:frappe.utils.cint(qty)]) |
| 1014 | |
| 1015 | def get_transferred_batch_qty_map(purchase_order, fg_item): |
| 1016 | # returns |
| 1017 | # { |
| 1018 | # (item_code, fg_code): { |
| 1019 | # batch1: 10, # qty |
| 1020 | # batch2: 16 |
| 1021 | # }, |
| 1022 | # } |
| 1023 | transferred_batch_qty_map = {} |
| 1024 | transferred_batches = frappe.db.sql(""" |
| 1025 | SELECT |
| 1026 | sed.batch_no, |
| 1027 | SUM(sed.qty) AS qty, |
rohitwaghchaure | 1cfa616 | 2020-09-14 21:12:16 +0530 | [diff] [blame] | 1028 | sed.item_code, |
| 1029 | sed.subcontracted_item |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 1030 | FROM `tabStock Entry` se,`tabStock Entry Detail` sed |
| 1031 | WHERE |
| 1032 | se.name = sed.parent |
| 1033 | AND se.docstatus=1 |
| 1034 | AND se.purpose='Send to Subcontractor' |
| 1035 | AND se.purchase_order = %s |
rohitwaghchaure | 1cfa616 | 2020-09-14 21:12:16 +0530 | [diff] [blame] | 1036 | AND ifnull(sed.subcontracted_item, '') in ('', %s) |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 1037 | AND sed.batch_no IS NOT NULL |
| 1038 | GROUP BY |
| 1039 | sed.batch_no, |
| 1040 | sed.item_code |
| 1041 | """, (purchase_order, fg_item), as_dict=1) |
| 1042 | |
| 1043 | for batch_data in transferred_batches: |
rohitwaghchaure | 1cfa616 | 2020-09-14 21:12:16 +0530 | [diff] [blame] | 1044 | key = ((batch_data.item_code, fg_item) |
| 1045 | if batch_data.subcontracted_item else (batch_data.item_code, purchase_order)) |
| 1046 | transferred_batch_qty_map.setdefault(key, {}) |
| 1047 | transferred_batch_qty_map[key][batch_data.batch_no] = batch_data.qty |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 1048 | |
| 1049 | return transferred_batch_qty_map |
| 1050 | |
| 1051 | def get_backflushed_batch_qty_map(purchase_order, fg_item): |
| 1052 | # returns |
| 1053 | # { |
| 1054 | # (item_code, fg_code): { |
| 1055 | # batch1: 10, # qty |
| 1056 | # batch2: 16 |
| 1057 | # }, |
| 1058 | # } |
| 1059 | backflushed_batch_qty_map = {} |
| 1060 | backflushed_batches = frappe.db.sql(""" |
| 1061 | SELECT |
| 1062 | pris.batch_no, |
| 1063 | SUM(pris.consumed_qty) AS qty, |
| 1064 | pris.rm_item_code AS item_code |
| 1065 | FROM `tabPurchase Receipt` pr, `tabPurchase Receipt Item` pri, `tabPurchase Receipt Item Supplied` pris |
| 1066 | WHERE |
| 1067 | pr.name = pri.parent |
| 1068 | AND pri.parent = pris.parent |
| 1069 | AND pri.purchase_order = %s |
| 1070 | AND pri.item_code = pris.main_item_code |
| 1071 | AND pr.docstatus = 1 |
| 1072 | AND pris.main_item_code = %s |
| 1073 | AND pris.batch_no IS NOT NULL |
| 1074 | GROUP BY |
| 1075 | pris.rm_item_code, pris.batch_no |
| 1076 | """, (purchase_order, fg_item), as_dict=1) |
| 1077 | |
| 1078 | for batch_data in backflushed_batches: |
| 1079 | backflushed_batch_qty_map.setdefault((batch_data.item_code, fg_item), {}) |
| 1080 | backflushed_batch_qty_map[(batch_data.item_code, fg_item)][batch_data.batch_no] = batch_data.qty |
| 1081 | |
| 1082 | return backflushed_batch_qty_map |
| 1083 | |
Rohit Waghchaure | 538d62b | 2020-09-22 10:36:52 +0530 | [diff] [blame] | 1084 | def get_batches_with_qty(item_code, fg_item, required_qty, transferred_batch_qty_map, backflushed_batches, po): |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 1085 | # Returns available batches to be backflushed based on requirements |
| 1086 | transferred_batches = transferred_batch_qty_map.get((item_code, fg_item), {}) |
rohitwaghchaure | 1cfa616 | 2020-09-14 21:12:16 +0530 | [diff] [blame] | 1087 | if not transferred_batches: |
| 1088 | transferred_batches = transferred_batch_qty_map.get((item_code, po), {}) |
Suraj Shetty | 9d6d95c | 2019-11-29 13:26:52 +0530 | [diff] [blame] | 1089 | |
| 1090 | available_batches = [] |
| 1091 | |
| 1092 | for (batch, transferred_qty) in transferred_batches.items(): |
| 1093 | backflushed_qty = backflushed_batches.get(batch, 0) |
| 1094 | available_qty = transferred_qty - backflushed_qty |
| 1095 | |
| 1096 | if available_qty >= required_qty: |
| 1097 | available_batches.append({'batch': batch, 'qty': required_qty}) |
| 1098 | break |
| 1099 | else: |
| 1100 | available_batches.append({'batch': batch, 'qty': available_qty}) |
| 1101 | required_qty -= available_qty |
| 1102 | |
Saqib | bba78f0 | 2020-03-31 10:49:44 +0530 | [diff] [blame] | 1103 | return available_batches |