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