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