Anand Doshi | 885e074 | 2015-03-03 14:55:30 +0530 | [diff] [blame] | 1 | # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 2 | # License: GNU General Public License v3. See license.txt |
| 3 | |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 4 | |
| 5 | import json |
| 6 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 7 | import frappe |
| 8 | from frappe import _, throw |
Ankush Menat | 1e97664 | 2022-02-15 10:57:06 +0530 | [diff] [blame] | 9 | from frappe.model import child_table_fields, default_fields |
Rushabh Mehta | 66e08e3 | 2014-09-29 12:17:03 +0530 | [diff] [blame] | 10 | from frappe.model.meta import get_field_precision |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 11 | from frappe.query_builder.functions import CombineDatetime, IfNull, Sum |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 12 | from frappe.utils import add_days, add_months, cint, cstr, flt, getdate |
Nabin Hait | 98c2a05 | 2014-05-05 18:41:41 +0530 | [diff] [blame] | 13 | |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 14 | from erpnext import get_company_currency |
| 15 | from erpnext.accounts.doctype.pricing_rule.pricing_rule import ( |
| 16 | get_pricing_rule_for_item, |
| 17 | set_transaction_type, |
| 18 | ) |
| 19 | from erpnext.setup.doctype.brand.brand import get_brand_defaults |
| 20 | from erpnext.setup.doctype.item_group.item_group import get_item_group_defaults |
| 21 | from erpnext.setup.utils import get_exchange_rate |
| 22 | from erpnext.stock.doctype.batch.batch import get_batch_no |
| 23 | from erpnext.stock.doctype.item.item import get_item_defaults, get_uom_conv_factor |
| 24 | from erpnext.stock.doctype.item_manufacturer.item_manufacturer import get_item_manufacturer_part_no |
| 25 | from erpnext.stock.doctype.price_list.price_list import get_price_list_details |
tundebabzy | acccdb3 | 2017-11-23 08:35:15 +0100 | [diff] [blame] | 26 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 27 | sales_doctypes = ["Quotation", "Sales Order", "Delivery Note", "Sales Invoice", "POS Invoice"] |
| 28 | purchase_doctypes = [ |
| 29 | "Material Request", |
| 30 | "Supplier Quotation", |
| 31 | "Purchase Order", |
| 32 | "Purchase Receipt", |
| 33 | "Purchase Invoice", |
| 34 | ] |
| 35 | |
Nabin Hait | 0d1ccc3 | 2019-02-14 18:30:10 +0530 | [diff] [blame] | 36 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 37 | @frappe.whitelist() |
Deepesh Garg | 4c61ee3 | 2023-04-02 09:35:27 +0530 | [diff] [blame] | 38 | def get_item_details( |
| 39 | args, |
| 40 | doc=None, |
| 41 | for_validate=False, |
| 42 | overwrite_warehouse=True, |
| 43 | return_basic_details=False, |
| 44 | basic_details=None, |
| 45 | ): |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 46 | """ |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 47 | args = { |
| 48 | "item_code": "", |
| 49 | "warehouse": None, |
| 50 | "customer": "", |
| 51 | "conversion_rate": 1.0, |
| 52 | "selling_price_list": None, |
| 53 | "price_list_currency": None, |
| 54 | "plc_conversion_rate": 1.0, |
| 55 | "doctype": "", |
| 56 | "name": "", |
| 57 | "supplier": None, |
| 58 | "transaction_date": None, |
| 59 | "conversion_rate": 1.0, |
| 60 | "buying_price_list": None, |
Sagar Sharma | 409df26 | 2022-04-19 14:57:31 +0530 | [diff] [blame] | 61 | "is_subcontracted": 0/1, |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 62 | "ignore_pricing_rule": 0/1 |
| 63 | "project": "" |
| 64 | "set_warehouse": "" |
| 65 | } |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 66 | """ |
Suraj Shetty | 182f4de | 2019-08-16 08:16:22 +0530 | [diff] [blame] | 67 | |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 68 | args = process_args(args) |
marination | 392f323 | 2020-07-14 17:03:17 +0530 | [diff] [blame] | 69 | for_validate = process_string_args(for_validate) |
| 70 | overwrite_warehouse = process_string_args(overwrite_warehouse) |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 71 | item = frappe.get_cached_doc("Item", args.item_code) |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 72 | validate_item_details(args, item) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 73 | |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 74 | if isinstance(doc, str): |
Deepesh Garg | ef0d26c | 2020-01-06 15:34:15 +0530 | [diff] [blame] | 75 | doc = json.loads(doc) |
| 76 | |
Deepesh Garg | ef0d26c | 2020-01-06 15:34:15 +0530 | [diff] [blame] | 77 | if doc: |
Sagar Vora | 1a3997a | 2022-06-16 17:03:47 +0000 | [diff] [blame] | 78 | args["transaction_date"] = doc.get("transaction_date") or doc.get("posting_date") |
Deepesh Garg | ef0d26c | 2020-01-06 15:34:15 +0530 | [diff] [blame] | 79 | |
Sagar Vora | 1a3997a | 2022-06-16 17:03:47 +0000 | [diff] [blame] | 80 | if doc.get("doctype") == "Purchase Invoice": |
| 81 | args["bill_date"] = doc.get("bill_date") |
| 82 | |
Deepesh Garg | 4c61ee3 | 2023-04-02 09:35:27 +0530 | [diff] [blame] | 83 | if not basic_details: |
| 84 | out = get_basic_details(args, item, overwrite_warehouse) |
| 85 | else: |
| 86 | out = basic_details |
| 87 | |
| 88 | basic_details = out.copy() |
| 89 | |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 90 | get_item_tax_template(args, item, out) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 91 | out["item_tax_rate"] = get_item_tax_map( |
| 92 | args.company, |
| 93 | args.get("item_tax_template") |
| 94 | if out.get("item_tax_template") is None |
| 95 | else out.get("item_tax_template"), |
| 96 | as_json=True, |
| 97 | ) |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 98 | |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 99 | get_party_item_code(args, item, out) |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 100 | |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 101 | set_valuation_rate(out, args) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 102 | |
Manas Solanki | e5e87f7 | 2018-05-28 20:07:08 +0530 | [diff] [blame] | 103 | update_party_blanket_order(args, out) |
| 104 | |
HENRY Florian | 231fe41 | 2023-02-13 16:26:05 +0100 | [diff] [blame] | 105 | # Never try to find a customer price if customer is set in these Doctype |
| 106 | current_customer = args.customer |
| 107 | if args.get("doctype") in ["Purchase Order", "Purchase Receipt", "Purchase Invoice"]: |
| 108 | args.customer = None |
| 109 | |
Ankush | 16d4de5 | 2021-08-09 10:41:24 +0530 | [diff] [blame] | 110 | out.update(get_price_list_rate(args, item)) |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 111 | |
HENRY Florian | 231fe41 | 2023-02-13 16:26:05 +0100 | [diff] [blame] | 112 | args.customer = current_customer |
| 113 | |
Rushabh Mehta | b46069d | 2016-01-15 16:59:26 +0530 | [diff] [blame] | 114 | if args.customer and cint(args.is_pos): |
Anuja Pawar | f132ed4 | 2021-05-07 12:11:09 +0530 | [diff] [blame] | 115 | out.update(get_pos_profile_item_details(args.company, args, update_data=True)) |
Rushabh Mehta | 6b53792 | 2017-03-14 16:59:11 +0530 | [diff] [blame] | 116 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 117 | if ( |
| 118 | args.get("doctype") == "Material Request" |
| 119 | and args.get("material_request_type") == "Material Transfer" |
| 120 | ): |
Nabin Hait | da17f9c | 2020-05-01 18:16:25 +0530 | [diff] [blame] | 121 | out.update(get_bin_details(args.item_code, args.get("from_warehouse"))) |
| 122 | |
| 123 | elif out.get("warehouse"): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 124 | if doc and doc.get("doctype") == "Purchase Order": |
Saqib Ansari | eb3aae8 | 2021-10-12 13:29:32 +0530 | [diff] [blame] | 125 | # calculate company_total_stock only for po |
s-aga-r | c716dcc | 2022-12-29 12:34:18 +0530 | [diff] [blame] | 126 | bin_details = get_bin_details( |
| 127 | args.item_code, out.warehouse, args.company, include_child_warehouses=True |
| 128 | ) |
Saqib Ansari | eb3aae8 | 2021-10-12 13:29:32 +0530 | [diff] [blame] | 129 | else: |
s-aga-r | c716dcc | 2022-12-29 12:34:18 +0530 | [diff] [blame] | 130 | bin_details = get_bin_details(args.item_code, out.warehouse, include_child_warehouses=True) |
Saqib Ansari | eb3aae8 | 2021-10-12 13:29:32 +0530 | [diff] [blame] | 131 | |
| 132 | out.update(bin_details) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 133 | |
Nabin Hait | a3dd72a | 2014-05-28 12:49:20 +0530 | [diff] [blame] | 134 | # update args with out, if key or value not exists |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 135 | for key, value in out.items(): |
Nabin Hait | a3dd72a | 2014-05-28 12:49:20 +0530 | [diff] [blame] | 136 | if args.get(key) is None: |
| 137 | args[key] = value |
| 138 | |
Deepesh Garg | 6192af5 | 2022-12-08 18:04:40 +0530 | [diff] [blame] | 139 | data = get_pricing_rule_for_item(args, doc=doc, for_validate=for_validate) |
rohitwaghchaure | a85ddf2 | 2019-11-19 18:47:48 +0530 | [diff] [blame] | 140 | |
Rohit Waghchaure | 8bfe330 | 2019-03-18 14:34:19 +0530 | [diff] [blame] | 141 | out.update(data) |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 142 | |
| 143 | update_stock(args, out) |
| 144 | |
| 145 | if args.transaction_date and item.lead_time_days: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 146 | out.schedule_date = out.lead_time_date = add_days(args.transaction_date, item.lead_time_days) |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 147 | |
Sagar Sharma | 409df26 | 2022-04-19 14:57:31 +0530 | [diff] [blame] | 148 | if args.get("is_subcontracted"): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 149 | out.bom = args.get("bom") or get_default_bom(args.item_code) |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 150 | |
| 151 | get_gross_profit(out) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 152 | if args.doctype == "Material Request": |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 153 | out.rate = args.rate or out.price_list_rate |
Rohit Waghchaure | 1bc53a3 | 2021-03-31 15:28:26 +0530 | [diff] [blame] | 154 | out.amount = flt(args.qty) * flt(out.rate) |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 155 | |
Ankush Menat | 1e97664 | 2022-02-15 10:57:06 +0530 | [diff] [blame] | 156 | out = remove_standard_fields(out) |
Deepesh Garg | 4c61ee3 | 2023-04-02 09:35:27 +0530 | [diff] [blame] | 157 | |
| 158 | if return_basic_details: |
| 159 | return out, basic_details |
| 160 | else: |
| 161 | return out |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 162 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 163 | |
Ankush Menat | 1e97664 | 2022-02-15 10:57:06 +0530 | [diff] [blame] | 164 | def remove_standard_fields(details): |
| 165 | for key in child_table_fields + default_fields: |
| 166 | details.pop(key, None) |
| 167 | return details |
| 168 | |
| 169 | |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 170 | def update_stock(args, out): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 171 | if ( |
| 172 | ( |
| 173 | args.get("doctype") == "Delivery Note" |
| 174 | or (args.get("doctype") == "Sales Invoice" and args.get("update_stock")) |
| 175 | ) |
| 176 | and out.warehouse |
| 177 | and out.stock_qty > 0 |
| 178 | ): |
pratu16x7 | 577e4c4 | 2017-06-23 11:39:03 +0530 | [diff] [blame] | 179 | |
Nabin Hait | 8fac2ad | 2017-05-18 11:54:24 +0530 | [diff] [blame] | 180 | if out.has_batch_no and not args.get("batch_no"): |
Rushabh Mehta | 551406a | 2017-04-21 12:40:19 +0530 | [diff] [blame] | 181 | out.batch_no = get_batch_no(out.item_code, out.warehouse, out.qty) |
rohitwaghchaure | 2fb8cc5 | 2017-11-29 13:50:04 +0530 | [diff] [blame] | 182 | actual_batch_qty = get_batch_qty(out.batch_no, out.warehouse, out.item_code) |
| 183 | if actual_batch_qty: |
| 184 | out.update(actual_batch_qty) |
Shreya | 14bd43d | 2018-04-27 16:24:05 +0530 | [diff] [blame] | 185 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 186 | if out.has_serial_no and args.get("batch_no"): |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 187 | reserved_so = get_so_reservation_for_item(args) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 188 | out.batch_no = args.get("batch_no") |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 189 | out.serial_no = get_serial_no(out, args.serial_no, sales_order=reserved_so) |
Shreya | 14bd43d | 2018-04-27 16:24:05 +0530 | [diff] [blame] | 190 | |
| 191 | elif out.has_serial_no: |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 192 | reserved_so = get_so_reservation_for_item(args) |
| 193 | out.serial_no = get_serial_no(out, args.serial_no, sales_order=reserved_so) |
Rushabh Mehta | 551406a | 2017-04-21 12:40:19 +0530 | [diff] [blame] | 194 | |
Ankush Menat | c8ead0a | 2022-04-01 20:25:30 +0530 | [diff] [blame] | 195 | if not out.serial_no: |
| 196 | out.pop("serial_no", None) |
| 197 | |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 198 | |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 199 | def set_valuation_rate(out, args): |
Nabin Hait | 50238c3 | 2018-08-08 18:43:04 +0530 | [diff] [blame] | 200 | if frappe.db.exists("Product Bundle", args.item_code, cache=True): |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 201 | valuation_rate = 0.0 |
| 202 | bundled_items = frappe.get_doc("Product Bundle", args.item_code) |
Rushabh Mehta | 0394aec | 2016-04-22 17:22:22 +0530 | [diff] [blame] | 203 | |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 204 | for bundle_item in bundled_items.items: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 205 | valuation_rate += flt( |
| 206 | get_valuation_rate(bundle_item.item_code, args.company, out.get("warehouse")).get( |
| 207 | "valuation_rate" |
| 208 | ) |
| 209 | * bundle_item.qty |
| 210 | ) |
Anand Doshi | 70f57eb | 2015-11-27 14:37:40 +0530 | [diff] [blame] | 211 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 212 | out.update({"valuation_rate": valuation_rate}) |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 213 | |
| 214 | else: |
| 215 | out.update(get_valuation_rate(args.item_code, args.company, out.get("warehouse"))) |
| 216 | |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 217 | |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 218 | def process_args(args): |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 219 | if isinstance(args, str): |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 220 | args = json.loads(args) |
| 221 | |
| 222 | args = frappe._dict(args) |
| 223 | |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 224 | if not args.get("price_list"): |
| 225 | args.price_list = args.get("selling_price_list") or args.get("buying_price_list") |
| 226 | |
Devin Slauenwhite | 55276f1 | 2022-05-25 00:05:22 -0400 | [diff] [blame] | 227 | if not args.item_code and args.barcode: |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 228 | args.item_code = get_item_code(barcode=args.barcode) |
| 229 | elif not args.item_code and args.serial_no: |
| 230 | args.item_code = get_item_code(serial_no=args.serial_no) |
Rushabh Mehta | 0394aec | 2016-04-22 17:22:22 +0530 | [diff] [blame] | 231 | |
mbauskar | 6f60339 | 2016-01-21 16:10:22 +0530 | [diff] [blame] | 232 | set_transaction_type(args) |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 233 | return args |
| 234 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 235 | |
marination | 392f323 | 2020-07-14 17:03:17 +0530 | [diff] [blame] | 236 | def process_string_args(args): |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 237 | if isinstance(args, str): |
marination | 392f323 | 2020-07-14 17:03:17 +0530 | [diff] [blame] | 238 | args = json.loads(args) |
| 239 | return args |
tundebabzy | acccdb3 | 2017-11-23 08:35:15 +0100 | [diff] [blame] | 240 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 241 | |
Neil Trini Lasrado | 4abda67 | 2015-02-25 17:34:27 +0530 | [diff] [blame] | 242 | @frappe.whitelist() |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 243 | def get_item_code(barcode=None, serial_no=None): |
| 244 | if barcode: |
Giovanni | 2144e02 | 2017-12-10 17:27:09 +0100 | [diff] [blame] | 245 | item_code = frappe.db.get_value("Item Barcode", {"barcode": barcode}, fieldname=["parent"]) |
Rushabh Mehta | c38fc71 | 2014-04-16 17:21:25 +0530 | [diff] [blame] | 246 | if not item_code: |
| 247 | frappe.throw(_("No Item with Barcode {0}").format(barcode)) |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 248 | elif serial_no: |
Anand Doshi | e9baaa6 | 2014-02-26 12:35:33 +0530 | [diff] [blame] | 249 | item_code = frappe.db.get_value("Serial No", serial_no, "item_code") |
Rushabh Mehta | c38fc71 | 2014-04-16 17:21:25 +0530 | [diff] [blame] | 250 | if not item_code: |
| 251 | frappe.throw(_("No Item with Serial No {0}").format(serial_no)) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 252 | |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 253 | return item_code |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 254 | |
tundebabzy | acccdb3 | 2017-11-23 08:35:15 +0100 | [diff] [blame] | 255 | |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 256 | def validate_item_details(args, item): |
| 257 | if not args.company: |
| 258 | throw(_("Please specify Company")) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 259 | |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 260 | from erpnext.stock.doctype.item.item import validate_end_of_life |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 261 | |
Anand Doshi | 21e09a2 | 2015-10-29 12:21:41 +0530 | [diff] [blame] | 262 | validate_end_of_life(item.name, item.end_of_life, item.disabled) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 263 | |
Rohit Waghchaure | 2c83fff | 2023-01-18 23:21:29 +0530 | [diff] [blame] | 264 | if cint(item.has_variants): |
| 265 | msg = f"Item {item.name} is a template, please select one of its variants" |
| 266 | |
| 267 | throw(_(msg), title=_("Template Item Selected")) |
Rushabh Mehta | 0394aec | 2016-04-22 17:22:22 +0530 | [diff] [blame] | 268 | |
tundebabzy | acccdb3 | 2017-11-23 08:35:15 +0100 | [diff] [blame] | 269 | elif args.transaction_type == "buying" and args.doctype != "Material Request": |
s-aga-r | 6d89b2f | 2022-06-18 15:46:59 +0530 | [diff] [blame] | 270 | if args.get("is_subcontracted"): |
| 271 | if args.get("is_old_subcontracting_flow"): |
| 272 | if item.is_sub_contracted_item != 1: |
| 273 | throw(_("Item {0} must be a Sub-contracted Item").format(item.name)) |
| 274 | else: |
| 275 | if item.is_stock_item: |
| 276 | throw(_("Item {0} must be a Non-Stock Item").format(item.name)) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 277 | |
tundebabzy | acccdb3 | 2017-11-23 08:35:15 +0100 | [diff] [blame] | 278 | |
Suraj Shetty | 182f4de | 2019-08-16 08:16:22 +0530 | [diff] [blame] | 279 | def get_basic_details(args, item, overwrite_warehouse=True): |
tundebabzy | acccdb3 | 2017-11-23 08:35:15 +0100 | [diff] [blame] | 280 | """ |
| 281 | :param args: { |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 282 | "item_code": "", |
| 283 | "warehouse": None, |
| 284 | "customer": "", |
| 285 | "conversion_rate": 1.0, |
| 286 | "selling_price_list": None, |
| 287 | "price_list_currency": None, |
| 288 | "price_list_uom_dependant": None, |
| 289 | "plc_conversion_rate": 1.0, |
| 290 | "doctype": "", |
| 291 | "name": "", |
| 292 | "supplier": None, |
| 293 | "transaction_date": None, |
| 294 | "conversion_rate": 1.0, |
| 295 | "buying_price_list": None, |
Sagar Sharma | 409df26 | 2022-04-19 14:57:31 +0530 | [diff] [blame] | 296 | "is_subcontracted": 0/1, |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 297 | "ignore_pricing_rule": 0/1 |
| 298 | "project": "", |
| 299 | barcode: "", |
| 300 | serial_no: "", |
| 301 | currency: "", |
| 302 | update_stock: "", |
| 303 | price_list: "", |
| 304 | company: "", |
| 305 | order_type: "", |
| 306 | is_pos: "", |
| 307 | project: "", |
| 308 | qty: "", |
| 309 | stock_qty: "", |
| 310 | conversion_factor: "", |
| 311 | against_blanket_order: 0/1 |
| 312 | } |
tundebabzy | acccdb3 | 2017-11-23 08:35:15 +0100 | [diff] [blame] | 313 | :param item: `item_code` of Item object |
| 314 | :return: frappe._dict |
| 315 | """ |
| 316 | |
Rushabh Mehta | 1a76374 | 2014-10-03 16:36:43 +0530 | [diff] [blame] | 317 | if not item: |
| 318 | item = frappe.get_doc("Item", args.get("item_code")) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 319 | |
Rushabh Mehta | 724f9e5 | 2014-10-07 15:29:58 +0530 | [diff] [blame] | 320 | if item.variant_of: |
| 321 | item.update_template_tables() |
| 322 | |
Manas Solanki | b16a4ec | 2018-05-04 16:49:33 +0530 | [diff] [blame] | 323 | item_defaults = get_item_defaults(item.name, args.company) |
Shreya Shah | 3c9839f | 2018-07-17 18:01:44 +0530 | [diff] [blame] | 324 | item_group_defaults = get_item_group_defaults(item.name, args.company) |
Saif Ur Rehman | c819ea3 | 2018-09-25 14:53:12 +0500 | [diff] [blame] | 325 | brand_defaults = get_brand_defaults(item.name, args.company) |
Shreya Shah | 3c9839f | 2018-07-17 18:01:44 +0530 | [diff] [blame] | 326 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 327 | defaults = frappe._dict( |
| 328 | { |
| 329 | "item_defaults": item_defaults, |
| 330 | "item_group_defaults": item_group_defaults, |
| 331 | "brand_defaults": brand_defaults, |
| 332 | } |
| 333 | ) |
marination | e05013e | 2020-04-06 22:13:13 +0530 | [diff] [blame] | 334 | |
Saqib | 438e043 | 2020-04-03 10:02:56 +0530 | [diff] [blame] | 335 | warehouse = get_item_warehouse(item, args, overwrite_warehouse, defaults) |
Nabin Hait | 36028bf | 2014-02-12 19:09:28 +0530 | [diff] [blame] | 336 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 337 | if args.get("doctype") == "Material Request" and not args.get("material_request_type"): |
| 338 | args["material_request_type"] = frappe.db.get_value( |
| 339 | "Material Request", args.get("name"), "material_request_type", cache=True |
| 340 | ) |
rohitwaghchaure | e8ccc0e | 2017-11-21 16:17:22 +0530 | [diff] [blame] | 341 | |
Anurag Mishra | f3b393f | 2019-11-28 18:52:16 +0530 | [diff] [blame] | 342 | expense_account = None |
| 343 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 344 | if args.get("doctype") == "Purchase Invoice" and item.is_fixed_asset: |
Anurag Mishra | f3b393f | 2019-11-28 18:52:16 +0530 | [diff] [blame] | 345 | from erpnext.assets.doctype.asset_category.asset_category import get_asset_category_account |
Anurag Mishra | f3b393f | 2019-11-28 18:52:16 +0530 | [diff] [blame] | 346 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 347 | expense_account = get_asset_category_account( |
| 348 | fieldname="fixed_asset_account", item=args.item_code, company=args.company |
| 349 | ) |
| 350 | |
| 351 | # Set the UOM to the Default Sales UOM or Default Purchase UOM if configured in the Item Master |
| 352 | if not args.get("uom"): |
| 353 | if args.get("doctype") in sales_doctypes: |
Nabin Hait | 79a1d2a | 2017-09-29 18:14:10 +0530 | [diff] [blame] | 354 | args.uom = item.sales_uom if item.sales_uom else item.stock_uom |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 355 | elif (args.get("doctype") in ["Purchase Order", "Purchase Receipt", "Purchase Invoice"]) or ( |
| 356 | args.get("doctype") == "Material Request" and args.get("material_request_type") == "Purchase" |
| 357 | ): |
Nabin Hait | 79a1d2a | 2017-09-29 18:14:10 +0530 | [diff] [blame] | 358 | args.uom = item.purchase_uom if item.purchase_uom else item.stock_uom |
| 359 | else: |
| 360 | args.uom = item.stock_uom |
| 361 | |
Sagar Vora | 57038c3 | 2022-11-09 18:56:09 +0530 | [diff] [blame] | 362 | # Set stock UOM in args, so that it can be used while fetching item price |
| 363 | args.stock_uom = item.stock_uom |
| 364 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 365 | if args.get("batch_no") and item.name != frappe.get_cached_value( |
| 366 | "Batch", args.get("batch_no"), "item" |
| 367 | ): |
| 368 | args["batch_no"] = "" |
Rohit Waghchaure | e1f0704 | 2021-08-23 14:27:55 +0530 | [diff] [blame] | 369 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 370 | out = frappe._dict( |
| 371 | { |
| 372 | "item_code": item.name, |
| 373 | "item_name": item.item_name, |
| 374 | "description": cstr(item.description).strip(), |
| 375 | "image": cstr(item.image).strip(), |
| 376 | "warehouse": warehouse, |
| 377 | "income_account": get_default_income_account( |
| 378 | args, item_defaults, item_group_defaults, brand_defaults |
| 379 | ), |
| 380 | "expense_account": expense_account |
| 381 | or get_default_expense_account(args, item_defaults, item_group_defaults, brand_defaults), |
| 382 | "discount_account": get_default_discount_account(args, item_defaults), |
Deepesh Garg | 3ce6417 | 2022-04-11 14:35:22 +0530 | [diff] [blame] | 383 | "provisional_expense_account": get_provisional_account(args, item_defaults), |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 384 | "cost_center": get_default_cost_center( |
| 385 | args, item_defaults, item_group_defaults, brand_defaults |
| 386 | ), |
| 387 | "has_serial_no": item.has_serial_no, |
| 388 | "has_batch_no": item.has_batch_no, |
| 389 | "batch_no": args.get("batch_no"), |
| 390 | "uom": args.uom, |
maharshivpatel | b3ccc4b | 2022-05-31 19:48:30 +0530 | [diff] [blame] | 391 | "stock_uom": item.stock_uom, |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 392 | "min_order_qty": flt(item.min_order_qty) if args.doctype == "Material Request" else "", |
| 393 | "qty": flt(args.qty) or 1.0, |
| 394 | "stock_qty": flt(args.qty) or 1.0, |
| 395 | "price_list_rate": 0.0, |
| 396 | "base_price_list_rate": 0.0, |
| 397 | "rate": 0.0, |
| 398 | "base_rate": 0.0, |
| 399 | "amount": 0.0, |
| 400 | "base_amount": 0.0, |
| 401 | "net_rate": 0.0, |
| 402 | "net_amount": 0.0, |
| 403 | "discount_percentage": 0.0, |
maharshivpatel | b3ccc4b | 2022-05-31 19:48:30 +0530 | [diff] [blame] | 404 | "discount_amount": flt(args.discount_amount) or 0.0, |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 405 | "supplier": get_default_supplier(args, item_defaults, item_group_defaults, brand_defaults), |
| 406 | "update_stock": args.get("update_stock") |
| 407 | if args.get("doctype") in ["Sales Invoice", "Purchase Invoice"] |
| 408 | else 0, |
| 409 | "delivered_by_supplier": item.delivered_by_supplier |
| 410 | if args.get("doctype") in ["Sales Order", "Sales Invoice"] |
| 411 | else 0, |
| 412 | "is_fixed_asset": item.is_fixed_asset, |
| 413 | "last_purchase_rate": item.last_purchase_rate |
| 414 | if args.get("doctype") in ["Purchase Order"] |
| 415 | else 0, |
| 416 | "transaction_date": args.get("transaction_date"), |
| 417 | "against_blanket_order": args.get("against_blanket_order"), |
| 418 | "bom_no": item.get("default_bom"), |
| 419 | "weight_per_unit": args.get("weight_per_unit") or item.get("weight_per_unit"), |
| 420 | "weight_uom": args.get("weight_uom") or item.get("weight_uom"), |
| 421 | "grant_commission": item.get("grant_commission"), |
| 422 | } |
| 423 | ) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 424 | |
Zlash65 | 627be1d | 2019-01-15 14:16:32 +0530 | [diff] [blame] | 425 | if item.get("enable_deferred_revenue") or item.get("enable_deferred_expense"): |
Zlash65 | 80f5cb0 | 2018-08-29 11:39:08 +0530 | [diff] [blame] | 426 | out.update(calculate_service_end_date(args, item)) |
Manas Solanki | 0393848 | 2018-05-14 16:16:46 +0530 | [diff] [blame] | 427 | |
Rohit Waghchaure | dc981dc | 2017-04-03 14:17:08 +0530 | [diff] [blame] | 428 | # calculate conversion factor |
mbauskar | 287fe81 | 2017-04-10 19:15:57 +0530 | [diff] [blame] | 429 | if item.stock_uom == args.uom: |
| 430 | out.conversion_factor = 1.0 |
| 431 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 432 | out.conversion_factor = args.conversion_factor or get_conversion_factor(item.name, args.uom).get( |
| 433 | "conversion_factor" |
| 434 | ) |
mbauskar | 287fe81 | 2017-04-10 19:15:57 +0530 | [diff] [blame] | 435 | |
| 436 | args.conversion_factor = out.conversion_factor |
| 437 | out.stock_qty = out.qty * out.conversion_factor |
Saqib Ansari | 3713ae7 | 2022-02-14 11:33:34 +0530 | [diff] [blame] | 438 | args.stock_qty = out.stock_qty |
Rohit Waghchaure | dc981dc | 2017-04-03 14:17:08 +0530 | [diff] [blame] | 439 | |
Shreya Shah | 44fa9a6 | 2018-01-08 14:58:20 +0530 | [diff] [blame] | 440 | # calculate last purchase rate |
Rohit Waghchaure | ec171fc | 2023-01-09 18:49:48 +0530 | [diff] [blame] | 441 | if args.get("doctype") in purchase_doctypes and not frappe.db.get_single_value( |
| 442 | "Buying Settings", "disable_last_purchase_rate" |
| 443 | ): |
Nabin Hait | 0d1ccc3 | 2019-02-14 18:30:10 +0530 | [diff] [blame] | 444 | from erpnext.buying.doctype.purchase_order.purchase_order import item_last_purchase_rate |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 445 | |
| 446 | out.last_purchase_rate = item_last_purchase_rate( |
| 447 | args.name, args.conversion_rate, item.name, out.conversion_factor |
| 448 | ) |
Shreya Shah | 44fa9a6 | 2018-01-08 14:58:20 +0530 | [diff] [blame] | 449 | |
Nabin Hait | b09ed41 | 2015-02-17 10:33:58 +0530 | [diff] [blame] | 450 | # if default specified in item is for another company, fetch from company |
Rushabh Mehta | e385b5b | 2017-04-20 15:21:01 +0530 | [diff] [blame] | 451 | for d in [ |
| 452 | ["Account", "income_account", "default_income_account"], |
Rushabh Mehta | 0394aec | 2016-04-22 17:22:22 +0530 | [diff] [blame] | 453 | ["Account", "expense_account", "default_expense_account"], |
Rushabh Mehta | e385b5b | 2017-04-20 15:21:01 +0530 | [diff] [blame] | 454 | ["Cost Center", "cost_center", "cost_center"], |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 455 | ["Warehouse", "warehouse", ""], |
| 456 | ]: |
| 457 | if not out[d[1]]: |
| 458 | out[d[1]] = frappe.get_cached_value("Company", args.company, d[2]) if d[2] else None |
Nabin Hait | b09ed41 | 2015-02-17 10:33:58 +0530 | [diff] [blame] | 459 | |
Ankush Menat | 6490518 | 2022-03-09 15:37:14 +0530 | [diff] [blame] | 460 | for fieldname in ("item_name", "item_group", "brand", "stock_uom"): |
Anand Doshi | f78d1ae | 2014-03-28 13:55:00 +0530 | [diff] [blame] | 461 | out[fieldname] = item.get(fieldname) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 462 | |
Rohit Waghchaure | 3cf2436 | 2019-06-02 16:03:05 +0530 | [diff] [blame] | 463 | if args.get("manufacturer"): |
| 464 | part_no = get_item_manufacturer_part_no(args.get("item_code"), args.get("manufacturer")) |
| 465 | if part_no: |
| 466 | out["manufacturer_part_no"] = part_no |
| 467 | else: |
| 468 | out["manufacturer_part_no"] = None |
| 469 | out["manufacturer"] = None |
marination | 3e7a8ab | 2020-04-07 21:00:57 +0530 | [diff] [blame] | 470 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 471 | data = frappe.get_value( |
| 472 | "Item", item.name, ["default_item_manufacturer", "default_manufacturer_part_no"], as_dict=1 |
| 473 | ) |
rohitwaghchaure | be16e5c | 2020-05-01 10:50:17 +0530 | [diff] [blame] | 474 | |
| 475 | if data: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 476 | out.update( |
| 477 | { |
| 478 | "manufacturer": data.default_item_manufacturer, |
| 479 | "manufacturer_part_no": data.default_manufacturer_part_no, |
| 480 | } |
| 481 | ) |
Rohit Waghchaure | 3cf2436 | 2019-06-02 16:03:05 +0530 | [diff] [blame] | 482 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 483 | child_doctype = args.doctype + " Item" |
Nabin Hait | 34c551d | 2019-07-03 10:34:31 +0530 | [diff] [blame] | 484 | meta = frappe.get_meta(child_doctype) |
| 485 | if meta.get_field("barcode"): |
| 486 | update_barcode_value(out) |
| 487 | |
Rohit Waghchaure | bde159a | 2021-03-22 23:36:48 +0530 | [diff] [blame] | 488 | if out.get("weight_per_unit"): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 489 | out["total_weight"] = out.weight_per_unit * out.stock_qty |
Rohit Waghchaure | bde159a | 2021-03-22 23:36:48 +0530 | [diff] [blame] | 490 | |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 491 | return out |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 492 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 493 | |
Chillar Anand | 772d475 | 2021-10-06 22:28:48 +0530 | [diff] [blame] | 494 | def get_item_warehouse(item, args, overwrite_warehouse, defaults=None): |
Saqib | 438e043 | 2020-04-03 10:02:56 +0530 | [diff] [blame] | 495 | if not defaults: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 496 | defaults = frappe._dict( |
| 497 | { |
| 498 | "item_defaults": get_item_defaults(item.name, args.company), |
| 499 | "item_group_defaults": get_item_group_defaults(item.name, args.company), |
| 500 | "brand_defaults": get_brand_defaults(item.name, args.company), |
| 501 | } |
| 502 | ) |
Saqib | 438e043 | 2020-04-03 10:02:56 +0530 | [diff] [blame] | 503 | |
| 504 | if overwrite_warehouse or not args.warehouse: |
| 505 | warehouse = ( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 506 | args.get("set_warehouse") |
| 507 | or defaults.item_defaults.get("default_warehouse") |
| 508 | or defaults.item_group_defaults.get("default_warehouse") |
| 509 | or defaults.brand_defaults.get("default_warehouse") |
| 510 | or args.get("warehouse") |
Saqib | 438e043 | 2020-04-03 10:02:56 +0530 | [diff] [blame] | 511 | ) |
| 512 | |
| 513 | if not warehouse: |
| 514 | defaults = frappe.defaults.get_defaults() or {} |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 515 | warehouse_exists = frappe.db.exists( |
| 516 | "Warehouse", {"name": defaults.default_warehouse, "company": args.company} |
| 517 | ) |
Saqib | 438e043 | 2020-04-03 10:02:56 +0530 | [diff] [blame] | 518 | if defaults.get("default_warehouse") and warehouse_exists: |
| 519 | warehouse = defaults.default_warehouse |
| 520 | |
| 521 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 522 | warehouse = args.get("warehouse") |
marination | e05013e | 2020-04-06 22:13:13 +0530 | [diff] [blame] | 523 | |
Marica | 3b1be2b | 2020-10-22 17:04:31 +0530 | [diff] [blame] | 524 | if not warehouse: |
| 525 | default_warehouse = frappe.db.get_single_value("Stock Settings", "default_warehouse") |
| 526 | if frappe.db.get_value("Warehouse", default_warehouse, "company") == args.company: |
| 527 | return default_warehouse |
| 528 | |
Saqib | 438e043 | 2020-04-03 10:02:56 +0530 | [diff] [blame] | 529 | return warehouse |
| 530 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 531 | |
Nabin Hait | 34c551d | 2019-07-03 10:34:31 +0530 | [diff] [blame] | 532 | def update_barcode_value(out): |
Nabin Hait | 34c551d | 2019-07-03 10:34:31 +0530 | [diff] [blame] | 533 | barcode_data = get_barcode_data([out]) |
| 534 | |
| 535 | # If item has one barcode then update the value of the barcode field |
| 536 | if barcode_data and len(barcode_data.get(out.item_code)) == 1: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 537 | out["barcode"] = barcode_data.get(out.item_code)[0] |
| 538 | |
Nabin Hait | 34c551d | 2019-07-03 10:34:31 +0530 | [diff] [blame] | 539 | |
Saqib | a6f98d4 | 2020-07-23 18:51:26 +0530 | [diff] [blame] | 540 | def get_barcode_data(items_list): |
| 541 | # get itemwise batch no data |
| 542 | # exmaple: {'LED-GRE': [Batch001, Batch002]} |
| 543 | # where LED-GRE is item code, SN0001 is serial no and Pune is warehouse |
| 544 | |
| 545 | itemwise_barcode = {} |
| 546 | for item in items_list: |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 547 | barcodes = frappe.db.get_all( |
| 548 | "Item Barcode", filters={"parent": item.item_code}, fields="barcode" |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 549 | ) |
Saqib | a6f98d4 | 2020-07-23 18:51:26 +0530 | [diff] [blame] | 550 | |
| 551 | for barcode in barcodes: |
| 552 | if item.item_code not in itemwise_barcode: |
| 553 | itemwise_barcode.setdefault(item.item_code, []) |
| 554 | itemwise_barcode[item.item_code].append(barcode.get("barcode")) |
| 555 | |
| 556 | return itemwise_barcode |
| 557 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 558 | |
Zlash65 | 80f5cb0 | 2018-08-29 11:39:08 +0530 | [diff] [blame] | 559 | @frappe.whitelist() |
Deepesh Garg | 8cdd7ce | 2021-06-24 19:17:58 +0530 | [diff] [blame] | 560 | def get_item_tax_info(company, tax_category, item_codes, item_rates=None, item_tax_templates=None): |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 561 | out = {} |
Deepesh Garg | cae42b48 | 2021-06-25 13:34:00 +0530 | [diff] [blame] | 562 | |
Deepesh Garg | 8dd99c0 | 2021-06-25 13:38:06 +0530 | [diff] [blame] | 563 | if item_tax_templates is None: |
Deepesh Garg | cae42b48 | 2021-06-25 13:34:00 +0530 | [diff] [blame] | 564 | item_tax_templates = {} |
Rohit Waghchaure | 4acbeec | 2021-07-13 11:45:41 +0530 | [diff] [blame] | 565 | |
Deepesh Garg | 8dd99c0 | 2021-06-25 13:38:06 +0530 | [diff] [blame] | 566 | if item_rates is None: |
| 567 | item_rates = {} |
Deepesh Garg | cae42b48 | 2021-06-25 13:34:00 +0530 | [diff] [blame] | 568 | |
Deepesh Garg | 8cdd7ce | 2021-06-24 19:17:58 +0530 | [diff] [blame] | 569 | if isinstance(item_codes, (str,)): |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 570 | item_codes = json.loads(item_codes) |
| 571 | |
Deepesh Garg | 8cdd7ce | 2021-06-24 19:17:58 +0530 | [diff] [blame] | 572 | if isinstance(item_rates, (str,)): |
Deepesh Garg | 8a7e283 | 2021-06-04 22:53:26 +0530 | [diff] [blame] | 573 | item_rates = json.loads(item_rates) |
| 574 | |
Deepesh Garg | 8cdd7ce | 2021-06-24 19:17:58 +0530 | [diff] [blame] | 575 | if isinstance(item_tax_templates, (str,)): |
Deepesh Garg | 94d4604 | 2021-06-23 20:56:27 +0530 | [diff] [blame] | 576 | item_tax_templates = json.loads(item_tax_templates) |
| 577 | |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 578 | for item_code in item_codes: |
Deepesh Garg | 94d4604 | 2021-06-23 20:56:27 +0530 | [diff] [blame] | 579 | if not item_code or item_code[1] in out or not item_tax_templates.get(item_code[1]): |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 580 | continue |
Deepesh Garg | 94d4604 | 2021-06-23 20:56:27 +0530 | [diff] [blame] | 581 | |
Deepesh Garg | 8a7e283 | 2021-06-04 22:53:26 +0530 | [diff] [blame] | 582 | out[item_code[1]] = {} |
| 583 | item = frappe.get_cached_doc("Item", item_code[0]) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 584 | args = { |
| 585 | "company": company, |
| 586 | "tax_category": tax_category, |
| 587 | "net_rate": item_rates.get(item_code[1]), |
| 588 | } |
Deepesh Garg | 269962a | 2021-06-23 22:52:51 +0530 | [diff] [blame] | 589 | |
| 590 | if item_tax_templates: |
| 591 | args.update({"item_tax_template": item_tax_templates.get(item_code[1])}) |
Deepesh Garg | 94d4604 | 2021-06-23 20:56:27 +0530 | [diff] [blame] | 592 | |
Deepesh Garg | 8a7e283 | 2021-06-04 22:53:26 +0530 | [diff] [blame] | 593 | get_item_tax_template(args, item, out[item_code[1]]) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 594 | out[item_code[1]]["item_tax_rate"] = get_item_tax_map( |
| 595 | company, out[item_code[1]].get("item_tax_template"), as_json=True |
| 596 | ) |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 597 | |
| 598 | return out |
| 599 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 600 | |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 601 | def get_item_tax_template(args, item, out): |
| 602 | """ |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 603 | args = { |
| 604 | "tax_category": None |
| 605 | "item_tax_template": None |
| 606 | } |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 607 | """ |
Saqib Ansari | eb3aae8 | 2021-10-12 13:29:32 +0530 | [diff] [blame] | 608 | item_tax_template = None |
| 609 | if item.taxes: |
| 610 | item_tax_template = _get_item_tax_template(args, item.taxes, out) |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 611 | |
| 612 | if not item_tax_template: |
| 613 | item_group = item.item_group |
| 614 | while item_group and not item_tax_template: |
| 615 | item_group_doc = frappe.get_cached_doc("Item Group", item_group) |
| 616 | item_tax_template = _get_item_tax_template(args, item_group_doc.taxes, out) |
| 617 | item_group = item_group_doc.parent_item_group |
| 618 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 619 | |
18alantom | 308905b | 2021-05-03 23:34:34 +0530 | [diff] [blame] | 620 | def _get_item_tax_template(args, taxes, out=None, for_validate=False): |
| 621 | if out is None: |
| 622 | out = {} |
Deepesh Garg | ef0d26c | 2020-01-06 15:34:15 +0530 | [diff] [blame] | 623 | taxes_with_validity = [] |
| 624 | taxes_with_no_validity = [] |
| 625 | |
| 626 | for tax in taxes: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 627 | tax_company = frappe.get_cached_value("Item Tax Template", tax.item_tax_template, "company") |
| 628 | if tax_company == args["company"]: |
| 629 | if tax.valid_from or tax.maximum_net_rate: |
Saqib Ansari | eb3aae8 | 2021-10-12 13:29:32 +0530 | [diff] [blame] | 630 | # In purchase Invoice first preference will be given to supplier invoice date |
| 631 | # if supplier date is not present then posting date |
Sagar Vora | 1a3997a | 2022-06-16 17:03:47 +0000 | [diff] [blame] | 632 | validation_date = args.get("bill_date") or args.get("transaction_date") |
Deepesh Garg | ef0d26c | 2020-01-06 15:34:15 +0530 | [diff] [blame] | 633 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 634 | if getdate(tax.valid_from) <= getdate(validation_date) and is_within_valid_range(args, tax): |
Saqib Ansari | eb3aae8 | 2021-10-12 13:29:32 +0530 | [diff] [blame] | 635 | taxes_with_validity.append(tax) |
| 636 | else: |
mohammadahmad1990 | e39649b | 2020-06-18 11:42:53 +0500 | [diff] [blame] | 637 | taxes_with_no_validity.append(tax) |
Deepesh Garg | ef0d26c | 2020-01-06 15:34:15 +0530 | [diff] [blame] | 638 | |
| 639 | if taxes_with_validity: |
Deepesh Garg | 6f6928f | 2023-04-09 09:38:13 +0530 | [diff] [blame^] | 640 | taxes = sorted( |
| 641 | taxes_with_validity, key=lambda i: i.valid_from or tax.maximum_net_rate, reverse=True |
| 642 | ) |
Deepesh Garg | ef0d26c | 2020-01-06 15:34:15 +0530 | [diff] [blame] | 643 | else: |
| 644 | taxes = taxes_with_no_validity |
| 645 | |
| 646 | if for_validate: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 647 | return [ |
| 648 | tax.item_tax_template |
| 649 | for tax in taxes |
| 650 | if ( |
| 651 | cstr(tax.tax_category) == cstr(args.get("tax_category")) |
| 652 | and (tax.item_tax_template not in taxes) |
| 653 | ) |
| 654 | ] |
Deepesh Garg | ef0d26c | 2020-01-06 15:34:15 +0530 | [diff] [blame] | 655 | |
| 656 | # all templates have validity and no template is valid |
| 657 | if not taxes_with_validity and (not taxes_with_no_validity): |
| 658 | return None |
| 659 | |
Deepesh Garg | 8a7e283 | 2021-06-04 22:53:26 +0530 | [diff] [blame] | 660 | # do not change if already a valid template |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 661 | if args.get("item_tax_template") in {t.item_tax_template for t in taxes}: |
| 662 | out["item_tax_template"] = args.get("item_tax_template") |
| 663 | return args.get("item_tax_template") |
Deepesh Garg | 8a7e283 | 2021-06-04 22:53:26 +0530 | [diff] [blame] | 664 | |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 665 | for tax in taxes: |
| 666 | if cstr(tax.tax_category) == cstr(args.get("tax_category")): |
| 667 | out["item_tax_template"] = tax.item_tax_template |
| 668 | return tax.item_tax_template |
| 669 | return None |
| 670 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 671 | |
Deepesh Garg | 8a7e283 | 2021-06-04 22:53:26 +0530 | [diff] [blame] | 672 | def is_within_valid_range(args, tax): |
| 673 | if not flt(tax.maximum_net_rate): |
| 674 | # No range specified, just ignore |
| 675 | return True |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 676 | elif flt(tax.minimum_net_rate) <= flt(args.get("net_rate")) <= flt(tax.maximum_net_rate): |
Deepesh Garg | 8a7e283 | 2021-06-04 22:53:26 +0530 | [diff] [blame] | 677 | return True |
| 678 | |
| 679 | return False |
| 680 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 681 | |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 682 | @frappe.whitelist() |
Saif Ur Rehman | eeead1d | 2018-12-29 02:25:00 +0500 | [diff] [blame] | 683 | def get_item_tax_map(company, item_tax_template, as_json=True): |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 684 | item_tax_map = {} |
| 685 | if item_tax_template: |
| 686 | template = frappe.get_cached_doc("Item Tax Template", item_tax_template) |
| 687 | for d in template.taxes: |
Saif Ur Rehman | eeead1d | 2018-12-29 02:25:00 +0500 | [diff] [blame] | 688 | if frappe.get_cached_value("Account", d.tax_type, "company") == company: |
| 689 | item_tax_map[d.tax_type] = d.tax_rate |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 690 | |
| 691 | return json.dumps(item_tax_map) if as_json else item_tax_map |
| 692 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 693 | |
Saif Ur Rehman | 6778668 | 2018-12-27 02:11:07 +0500 | [diff] [blame] | 694 | @frappe.whitelist() |
Zlash65 | 80f5cb0 | 2018-08-29 11:39:08 +0530 | [diff] [blame] | 695 | def calculate_service_end_date(args, item=None): |
| 696 | args = process_args(args) |
| 697 | if not item: |
| 698 | item = frappe.get_cached_doc("Item", args.item_code) |
| 699 | |
Zlash65 | 627be1d | 2019-01-15 14:16:32 +0530 | [diff] [blame] | 700 | doctype = args.get("parenttype") or args.get("doctype") |
Zlash65 | a3dd798 | 2019-01-15 14:36:11 +0530 | [diff] [blame] | 701 | if doctype == "Sales Invoice": |
| 702 | enable_deferred = "enable_deferred_revenue" |
| 703 | no_of_months = "no_of_months" |
| 704 | account = "deferred_revenue_account" |
| 705 | else: |
| 706 | enable_deferred = "enable_deferred_expense" |
| 707 | no_of_months = "no_of_months_exp" |
| 708 | account = "deferred_expense_account" |
Zarrar | e83ff38 | 2018-09-21 15:45:40 +0530 | [diff] [blame] | 709 | |
Zlash65 | 80f5cb0 | 2018-08-29 11:39:08 +0530 | [diff] [blame] | 710 | service_start_date = args.service_start_date if args.service_start_date else args.transaction_date |
Zarrar | e83ff38 | 2018-09-21 15:45:40 +0530 | [diff] [blame] | 711 | service_end_date = add_months(service_start_date, item.get(no_of_months)) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 712 | deferred_detail = {"service_start_date": service_start_date, "service_end_date": service_end_date} |
Zarrar | e83ff38 | 2018-09-21 15:45:40 +0530 | [diff] [blame] | 713 | deferred_detail[enable_deferred] = item.get(enable_deferred) |
| 714 | deferred_detail[account] = get_default_deferred_account(args, item, fieldname=account) |
Zlash65 | 80f5cb0 | 2018-08-29 11:39:08 +0530 | [diff] [blame] | 715 | |
| 716 | return deferred_detail |
tundebabzy | acccdb3 | 2017-11-23 08:35:15 +0100 | [diff] [blame] | 717 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 718 | |
Saif Ur Rehman | c819ea3 | 2018-09-25 14:53:12 +0500 | [diff] [blame] | 719 | def get_default_income_account(args, item, item_group, brand): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 720 | return ( |
| 721 | item.get("income_account") |
Shreya Shah | 3c9839f | 2018-07-17 18:01:44 +0530 | [diff] [blame] | 722 | or item_group.get("income_account") |
Saif Ur Rehman | c819ea3 | 2018-09-25 14:53:12 +0500 | [diff] [blame] | 723 | or brand.get("income_account") |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 724 | or args.income_account |
| 725 | ) |
| 726 | |
Rushabh Mehta | 1a76374 | 2014-10-03 16:36:43 +0530 | [diff] [blame] | 727 | |
Saif Ur Rehman | c819ea3 | 2018-09-25 14:53:12 +0500 | [diff] [blame] | 728 | def get_default_expense_account(args, item, item_group, brand): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 729 | return ( |
| 730 | item.get("expense_account") |
Shreya Shah | 3c9839f | 2018-07-17 18:01:44 +0530 | [diff] [blame] | 731 | or item_group.get("expense_account") |
Saif Ur Rehman | c819ea3 | 2018-09-25 14:53:12 +0500 | [diff] [blame] | 732 | or brand.get("expense_account") |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 733 | or args.expense_account |
| 734 | ) |
| 735 | |
Rushabh Mehta | 1a76374 | 2014-10-03 16:36:43 +0530 | [diff] [blame] | 736 | |
Deepesh Garg | 3ce6417 | 2022-04-11 14:35:22 +0530 | [diff] [blame] | 737 | def get_provisional_account(args, item): |
| 738 | return item.get("default_provisional_account") or args.default_provisional_account |
| 739 | |
| 740 | |
GangaManoj | 0b7d8fb | 2021-07-13 01:37:30 +0530 | [diff] [blame] | 741 | def get_default_discount_account(args, item): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 742 | return item.get("default_discount_account") or args.discount_account |
| 743 | |
GangaManoj | 657e9b5 | 2021-07-06 16:51:12 +0530 | [diff] [blame] | 744 | |
Zarrar | e83ff38 | 2018-09-21 15:45:40 +0530 | [diff] [blame] | 745 | def get_default_deferred_account(args, item, fieldname=None): |
Zlash65 | 627be1d | 2019-01-15 14:16:32 +0530 | [diff] [blame] | 746 | if item.get("enable_deferred_revenue") or item.get("enable_deferred_expense"): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 747 | return ( |
| 748 | item.get(fieldname) |
Zarrar | e83ff38 | 2018-09-21 15:45:40 +0530 | [diff] [blame] | 749 | or args.get(fieldname) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 750 | or frappe.get_cached_value("Company", args.company, "default_" + fieldname) |
| 751 | ) |
Manas Solanki | 0393848 | 2018-05-14 16:16:46 +0530 | [diff] [blame] | 752 | else: |
| 753 | return None |
| 754 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 755 | |
rohitwaghchaure | 1c8c1d7 | 2020-11-15 09:40:44 +0530 | [diff] [blame] | 756 | def get_default_cost_center(args, item=None, item_group=None, brand=None, company=None): |
Nabin Hait | 50238c3 | 2018-08-08 18:43:04 +0530 | [diff] [blame] | 757 | cost_center = None |
rohitwaghchaure | 1c8c1d7 | 2020-11-15 09:40:44 +0530 | [diff] [blame] | 758 | |
| 759 | if not company and args.get("company"): |
| 760 | company = args.get("company") |
| 761 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 762 | if args.get("project"): |
Nabin Hait | 50238c3 | 2018-08-08 18:43:04 +0530 | [diff] [blame] | 763 | cost_center = frappe.db.get_value("Project", args.get("project"), "cost_center", cache=True) |
Rushabh Mehta | 49f9747 | 2018-08-30 18:50:48 +0530 | [diff] [blame] | 764 | |
rohitwaghchaure | 1c8c1d7 | 2020-11-15 09:40:44 +0530 | [diff] [blame] | 765 | if not cost_center and (item and item_group and brand): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 766 | if args.get("customer"): |
| 767 | cost_center = ( |
| 768 | item.get("selling_cost_center") |
| 769 | or item_group.get("selling_cost_center") |
| 770 | or brand.get("selling_cost_center") |
| 771 | ) |
Nabin Hait | 50238c3 | 2018-08-08 18:43:04 +0530 | [diff] [blame] | 772 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 773 | cost_center = ( |
| 774 | item.get("buying_cost_center") |
| 775 | or item_group.get("buying_cost_center") |
| 776 | or brand.get("buying_cost_center") |
| 777 | ) |
Rushabh Mehta | 49f9747 | 2018-08-30 18:50:48 +0530 | [diff] [blame] | 778 | |
rohitwaghchaure | 1c8c1d7 | 2020-11-15 09:40:44 +0530 | [diff] [blame] | 779 | elif not cost_center and args.get("item_code") and company: |
| 780 | for method in ["get_item_defaults", "get_item_group_defaults", "get_brand_defaults"]: |
| 781 | path = "erpnext.stock.get_item_details.{0}".format(method) |
| 782 | data = frappe.get_attr(path)(args.get("item_code"), company) |
| 783 | |
| 784 | if data and (data.selling_cost_center or data.buying_cost_center): |
| 785 | return data.selling_cost_center or data.buying_cost_center |
| 786 | |
| 787 | if not cost_center and args.get("cost_center"): |
| 788 | cost_center = args.get("cost_center") |
Rohit Waghchaure | 9a792c2 | 2019-05-15 12:42:37 +0530 | [diff] [blame] | 789 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 790 | if ( |
| 791 | company |
| 792 | and cost_center |
| 793 | and frappe.get_cached_value("Cost Center", cost_center, "company") != company |
| 794 | ): |
Rohit Waghchaure | 9a792c2 | 2019-05-15 12:42:37 +0530 | [diff] [blame] | 795 | return None |
| 796 | |
rohitwaghchaure | 1c8c1d7 | 2020-11-15 09:40:44 +0530 | [diff] [blame] | 797 | if not cost_center and company: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 798 | cost_center = frappe.get_cached_value("Company", company, "cost_center") |
rohitwaghchaure | 1c8c1d7 | 2020-11-15 09:40:44 +0530 | [diff] [blame] | 799 | |
Rohit Waghchaure | 9a792c2 | 2019-05-15 12:42:37 +0530 | [diff] [blame] | 800 | return cost_center |
Rushabh Mehta | 1a76374 | 2014-10-03 16:36:43 +0530 | [diff] [blame] | 801 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 802 | |
Saif Ur Rehman | c819ea3 | 2018-09-25 14:53:12 +0500 | [diff] [blame] | 803 | def get_default_supplier(args, item, item_group, brand): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 804 | return ( |
| 805 | item.get("default_supplier") |
Saif Ur Rehman | c819ea3 | 2018-09-25 14:53:12 +0500 | [diff] [blame] | 806 | or item_group.get("default_supplier") |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 807 | or brand.get("default_supplier") |
| 808 | ) |
| 809 | |
Shreya Shah | 3c9839f | 2018-07-17 18:01:44 +0530 | [diff] [blame] | 810 | |
Ankush | 16d4de5 | 2021-08-09 10:41:24 +0530 | [diff] [blame] | 811 | def get_price_list_rate(args, item_doc, out=None): |
| 812 | if out is None: |
| 813 | out = frappe._dict() |
| 814 | |
Anand Doshi | 39a2891 | 2016-02-15 11:42:18 +0530 | [diff] [blame] | 815 | meta = frappe.get_meta(args.parenttype or args.doctype) |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 816 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 817 | if meta.get_field("currency") or args.get("currency"): |
Marica | e8bc912 | 2021-04-19 11:05:21 +0530 | [diff] [blame] | 818 | if not args.get("price_list_currency") or not args.get("plc_conversion_rate"): |
| 819 | # if currency and plc_conversion_rate exist then |
| 820 | # `get_price_list_currency_and_exchange_rate` has already been called |
| 821 | pl_details = get_price_list_currency_and_exchange_rate(args) |
| 822 | args.update(pl_details) |
| 823 | |
Nabin Hait | 06c8cf4 | 2019-05-16 19:17:02 +0530 | [diff] [blame] | 824 | if meta.get_field("currency"): |
rohitwaghchaure | 4cccdbd | 2017-07-25 14:05:01 +0530 | [diff] [blame] | 825 | validate_conversion_rate(args, meta) |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 826 | |
Ankush | 16d4de5 | 2021-08-09 10:41:24 +0530 | [diff] [blame] | 827 | price_list_rate = get_price_list_rate_for(args, item_doc.name) |
Rushabh Mehta | b46069d | 2016-01-15 16:59:26 +0530 | [diff] [blame] | 828 | |
hiousi | 1516e29 | 2019-01-08 18:34:08 +0100 | [diff] [blame] | 829 | # variant |
Ankush | 16d4de5 | 2021-08-09 10:41:24 +0530 | [diff] [blame] | 830 | if price_list_rate is None and item_doc.variant_of: |
hiousi | 1516e29 | 2019-01-08 18:34:08 +0100 | [diff] [blame] | 831 | price_list_rate = get_price_list_rate_for(args, item_doc.variant_of) |
Rushabh Mehta | b46069d | 2016-01-15 16:59:26 +0530 | [diff] [blame] | 832 | |
| 833 | # insert in database |
Ankush | 16d4de5 | 2021-08-09 10:41:24 +0530 | [diff] [blame] | 834 | if price_list_rate is None: |
Rushabh Mehta | a208c56 | 2015-08-03 13:18:54 +0530 | [diff] [blame] | 835 | if args.price_list and args.rate: |
| 836 | insert_item_price(args) |
Ankush | 16d4de5 | 2021-08-09 10:41:24 +0530 | [diff] [blame] | 837 | return out |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 838 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 839 | out.price_list_rate = ( |
| 840 | flt(price_list_rate) * flt(args.plc_conversion_rate) / flt(args.conversion_rate) |
| 841 | ) |
mbauskar | 287fe81 | 2017-04-10 19:15:57 +0530 | [diff] [blame] | 842 | |
Rohit Waghchaure | d1d4671 | 2023-01-09 15:12:46 +0530 | [diff] [blame] | 843 | if frappe.db.get_single_value("Buying Settings", "disable_last_purchase_rate"): |
| 844 | return out |
| 845 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 846 | if not out.price_list_rate and args.transaction_type == "buying": |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 847 | from erpnext.stock.doctype.item.item import get_last_purchase_details |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 848 | |
| 849 | out.update(get_last_purchase_details(item_doc.name, args.name, args.conversion_rate)) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 850 | |
Ankush | 16d4de5 | 2021-08-09 10:41:24 +0530 | [diff] [blame] | 851 | return out |
| 852 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 853 | |
Rushabh Mehta | a208c56 | 2015-08-03 13:18:54 +0530 | [diff] [blame] | 854 | def insert_item_price(args): |
| 855 | """Insert Item Price if Price List and Price List Rate are specified and currency is the same""" |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 856 | if frappe.db.get_value( |
| 857 | "Price List", args.price_list, "currency", cache=True |
| 858 | ) == args.currency and cint( |
| 859 | frappe.db.get_single_value("Stock Settings", "auto_insert_price_list_rate_if_missing") |
| 860 | ): |
Rushabh Mehta | a208c56 | 2015-08-03 13:18:54 +0530 | [diff] [blame] | 861 | if frappe.has_permission("Item Price", "write"): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 862 | price_list_rate = ( |
Rohit Waghchaure | 0f28074 | 2022-12-15 16:34:06 +0530 | [diff] [blame] | 863 | (flt(args.rate) + flt(args.discount_amount)) / args.get("conversion_factor") |
maharshivpatel | b3ccc4b | 2022-05-31 19:48:30 +0530 | [diff] [blame] | 864 | if args.get("conversion_factor") |
Rohit Waghchaure | 0f28074 | 2022-12-15 16:34:06 +0530 | [diff] [blame] | 865 | else (flt(args.rate) + flt(args.discount_amount)) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 866 | ) |
Rushabh Mehta | 985cb82 | 2016-12-30 15:06:54 +0530 | [diff] [blame] | 867 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 868 | item_price = frappe.db.get_value( |
| 869 | "Item Price", |
| 870 | {"item_code": args.item_code, "price_list": args.price_list, "currency": args.currency}, |
| 871 | ["name", "price_list_rate"], |
| 872 | as_dict=1, |
| 873 | ) |
Nabin Hait | b479a87 | 2018-09-07 13:17:11 +0530 | [diff] [blame] | 874 | if item_price and item_price.name: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 875 | if item_price.price_list_rate != price_list_rate and frappe.db.get_single_value( |
| 876 | "Stock Settings", "update_existing_price_list_rate" |
| 877 | ): |
| 878 | frappe.db.set_value("Item Price", item_price.name, "price_list_rate", price_list_rate) |
| 879 | frappe.msgprint( |
| 880 | _("Item Price updated for {0} in Price List {1}").format(args.item_code, args.price_list), |
| 881 | alert=True, |
| 882 | ) |
Rushabh Mehta | 985cb82 | 2016-12-30 15:06:54 +0530 | [diff] [blame] | 883 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 884 | item_price = frappe.get_doc( |
| 885 | { |
| 886 | "doctype": "Item Price", |
| 887 | "price_list": args.price_list, |
| 888 | "item_code": args.item_code, |
| 889 | "currency": args.currency, |
| 890 | "price_list_rate": price_list_rate, |
maharshivpatel | b3ccc4b | 2022-05-31 19:48:30 +0530 | [diff] [blame] | 891 | "uom": args.stock_uom, |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 892 | } |
| 893 | ) |
Kanchan Chauhan | 5ee8fcc | 2016-06-24 17:11:15 +0530 | [diff] [blame] | 894 | item_price.insert() |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 895 | frappe.msgprint( |
| 896 | _("Item Price added for {0} in Price List {1}").format(args.item_code, args.price_list), |
| 897 | alert=True, |
| 898 | ) |
| 899 | |
Rushabh Mehta | a208c56 | 2015-08-03 13:18:54 +0530 | [diff] [blame] | 900 | |
Nabin Hait | 01ca3e5 | 2019-01-25 16:25:15 +0530 | [diff] [blame] | 901 | def get_item_price(args, item_code, ignore_party=False): |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 902 | """ |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 903 | Get name, price_list_rate from Item Price based on conditions |
| 904 | Check if the desired qty is within the increment of the packing list. |
| 905 | :param args: dict (or frappe._dict) with mandatory fields price_list, uom |
| 906 | optional fields transaction_date, customer, supplier |
| 907 | :param item_code: str, Item Doctype field item_code |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 908 | """ |
| 909 | |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 910 | ip = frappe.qb.DocType("Item Price") |
| 911 | query = ( |
| 912 | frappe.qb.from_(ip) |
| 913 | .select(ip.name, ip.price_list_rate, ip.uom) |
| 914 | .where( |
| 915 | (ip.item_code == item_code) |
| 916 | & (ip.price_list == args.get("price_list")) |
| 917 | & (IfNull(ip.uom, "").isin(["", args.get("uom")])) |
| 918 | & (IfNull(ip.batch_no, "").isin(["", args.get("batch_no")])) |
| 919 | ) |
| 920 | .orderby(ip.valid_from, order=frappe.qb.desc) |
| 921 | .orderby(IfNull(ip.batch_no, ""), order=frappe.qb.desc) |
| 922 | .orderby(ip.uom, order=frappe.qb.desc) |
| 923 | ) |
Deepesh Garg | bd9bdc5 | 2021-01-28 12:05:57 +0530 | [diff] [blame] | 924 | |
Nabin Hait | 01ca3e5 | 2019-01-25 16:25:15 +0530 | [diff] [blame] | 925 | if not ignore_party: |
Nabin Hait | 01ca3e5 | 2019-01-25 16:25:15 +0530 | [diff] [blame] | 926 | if args.get("customer"): |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 927 | query = query.where(ip.customer == args.get("customer")) |
Nabin Hait | 4e45663 | 2019-01-29 14:02:08 +0530 | [diff] [blame] | 928 | elif args.get("supplier"): |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 929 | query = query.where(ip.supplier == args.get("supplier")) |
Nabin Hait | 4e45663 | 2019-01-29 14:02:08 +0530 | [diff] [blame] | 930 | else: |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 931 | query = query.where((IfNull(ip.customer, "") == "") & (IfNull(ip.supplier, "") == "")) |
Nabin Hait | 01ca3e5 | 2019-01-25 16:25:15 +0530 | [diff] [blame] | 932 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 933 | if args.get("transaction_date"): |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 934 | query = query.where( |
| 935 | (IfNull(ip.valid_from, "2000-01-01") <= args["transaction_date"]) |
| 936 | & (IfNull(ip.valid_upto, "2500-12-31") >= args["transaction_date"]) |
| 937 | ) |
Deepesh Garg | f15ff5f | 2020-07-11 13:58:53 +0530 | [diff] [blame] | 938 | |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 939 | return query.run() |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 940 | |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 941 | |
| 942 | def get_price_list_rate_for(args, item_code): |
| 943 | """ |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 944 | :param customer: link to Customer DocType |
| 945 | :param supplier: link to Supplier DocType |
| 946 | :param price_list: str (Standard Buying or Standard Selling) |
| 947 | :param item_code: str, Item Doctype field item_code |
| 948 | :param qty: Desired Qty |
| 949 | :param transaction_date: Date of the price |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 950 | """ |
| 951 | item_price_args = { |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 952 | "item_code": item_code, |
| 953 | "price_list": args.get("price_list"), |
| 954 | "customer": args.get("customer"), |
| 955 | "supplier": args.get("supplier"), |
| 956 | "uom": args.get("uom"), |
| 957 | "transaction_date": args.get("transaction_date"), |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 958 | "batch_no": args.get("batch_no"), |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | item_price_data = 0 |
| 962 | price_list_rate = get_item_price(item_price_args, item_code) |
| 963 | if price_list_rate: |
| 964 | desired_qty = args.get("qty") |
Rohit Waghchaure | b48effe | 2019-02-27 19:31:32 +0530 | [diff] [blame] | 965 | if desired_qty and check_packing_list(price_list_rate[0][0], desired_qty, item_code): |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 966 | item_price_data = price_list_rate |
| 967 | else: |
Don-Leopardo | ccdf193 | 2020-01-09 03:54:43 -0300 | [diff] [blame] | 968 | for field in ["customer", "supplier"]: |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 969 | del item_price_args[field] |
| 970 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 971 | general_price_list_rate = get_item_price( |
| 972 | item_price_args, item_code, ignore_party=args.get("ignore_party") |
| 973 | ) |
Don-Leopardo | ccdf193 | 2020-01-09 03:54:43 -0300 | [diff] [blame] | 974 | |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 975 | if not general_price_list_rate and args.get("uom") != args.get("stock_uom"): |
Suraj Shetty | c87b47a | 2019-04-29 23:18:47 +0530 | [diff] [blame] | 976 | item_price_args["uom"] = args.get("stock_uom") |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 977 | general_price_list_rate = get_item_price( |
| 978 | item_price_args, item_code, ignore_party=args.get("ignore_party") |
| 979 | ) |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 980 | |
| 981 | if general_price_list_rate: |
| 982 | item_price_data = general_price_list_rate |
| 983 | |
| 984 | if item_price_data: |
| 985 | if item_price_data[0][2] == args.get("uom"): |
| 986 | return item_price_data[0][1] |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 987 | elif not args.get("price_list_uom_dependant"): |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 988 | return flt(item_price_data[0][1] * flt(args.get("conversion_factor", 1))) |
| 989 | else: |
| 990 | return item_price_data[0][1] |
| 991 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 992 | |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 993 | def check_packing_list(price_list_rate_name, desired_qty, item_code): |
| 994 | """ |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 995 | Check if the desired qty is within the increment of the packing list. |
| 996 | :param price_list_rate_name: Name of Item Price |
| 997 | :param desired_qty: Desired Qt |
| 998 | :param item_code: str, Item Doctype field item_code |
| 999 | :param qty: Desired Qt |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 1000 | """ |
| 1001 | |
Rohit Waghchaure | cd34c70 | 2019-02-27 18:01:25 +0530 | [diff] [blame] | 1002 | flag = True |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 1003 | item_price = frappe.get_doc("Item Price", price_list_rate_name) |
Rohit Waghchaure | b48effe | 2019-02-27 19:31:32 +0530 | [diff] [blame] | 1004 | if item_price.packing_unit: |
Nabin Hait | e45ec66 | 2018-08-01 17:44:34 +0530 | [diff] [blame] | 1005 | packing_increment = desired_qty % item_price.packing_unit |
| 1006 | |
Rohit Waghchaure | cd34c70 | 2019-02-27 18:01:25 +0530 | [diff] [blame] | 1007 | if packing_increment != 0: |
| 1008 | flag = False |
| 1009 | |
| 1010 | return flag |
Rushabh Mehta | 1a76374 | 2014-10-03 16:36:43 +0530 | [diff] [blame] | 1011 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1012 | |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 1013 | def validate_conversion_rate(args, meta): |
Rushabh Mehta | 66e08e3 | 2014-09-29 12:17:03 +0530 | [diff] [blame] | 1014 | from erpnext.controllers.accounts_controller import validate_conversion_rate |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1015 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1016 | company_currency = frappe.get_cached_value("Company", args.company, "default_currency") |
| 1017 | if not args.conversion_rate and args.currency == company_currency: |
Anand Doshi | fe13bfe | 2015-08-25 12:49:40 +0530 | [diff] [blame] | 1018 | args.conversion_rate = 1.0 |
| 1019 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1020 | if ( |
| 1021 | not args.ignore_conversion_rate |
| 1022 | and args.conversion_rate == 1 |
| 1023 | and args.currency != company_currency |
| 1024 | ): |
| 1025 | args.conversion_rate = ( |
| 1026 | get_exchange_rate(args.currency, company_currency, args.transaction_date, "for_buying") or 1.0 |
| 1027 | ) |
Rohit Waghchaure | 4acbeec | 2021-07-13 11:45:41 +0530 | [diff] [blame] | 1028 | |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 1029 | # validate currency conversion rate |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1030 | validate_conversion_rate( |
| 1031 | args.currency, args.conversion_rate, meta.get_label("conversion_rate"), args.company |
| 1032 | ) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1033 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1034 | args.conversion_rate = flt( |
| 1035 | args.conversion_rate, |
| 1036 | get_field_precision(meta.get_field("conversion_rate"), frappe._dict({"fields": args})), |
| 1037 | ) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1038 | |
Nabin Hait | 06c8cf4 | 2019-05-16 19:17:02 +0530 | [diff] [blame] | 1039 | if args.price_list: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1040 | if not args.plc_conversion_rate and args.price_list_currency == frappe.db.get_value( |
| 1041 | "Price List", args.price_list, "currency", cache=True |
| 1042 | ): |
Nabin Hait | 06c8cf4 | 2019-05-16 19:17:02 +0530 | [diff] [blame] | 1043 | args.plc_conversion_rate = 1.0 |
Manas Solanki | 3504a23 | 2018-06-06 12:46:06 +0530 | [diff] [blame] | 1044 | |
Nabin Hait | 06c8cf4 | 2019-05-16 19:17:02 +0530 | [diff] [blame] | 1045 | # validate price list currency conversion rate |
| 1046 | if not args.get("price_list_currency"): |
| 1047 | throw(_("Price List Currency not selected")) |
| 1048 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1049 | validate_conversion_rate( |
| 1050 | args.price_list_currency, |
| 1051 | args.plc_conversion_rate, |
| 1052 | meta.get_label("plc_conversion_rate"), |
| 1053 | args.company, |
| 1054 | ) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1055 | |
Nabin Hait | 06c8cf4 | 2019-05-16 19:17:02 +0530 | [diff] [blame] | 1056 | if meta.get_field("plc_conversion_rate"): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1057 | args.plc_conversion_rate = flt( |
| 1058 | args.plc_conversion_rate, |
| 1059 | get_field_precision(meta.get_field("plc_conversion_rate"), frappe._dict({"fields": args})), |
| 1060 | ) |
| 1061 | |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1062 | |
Rushabh Mehta | f14b809 | 2014-04-03 14:30:42 +0530 | [diff] [blame] | 1063 | def get_party_item_code(args, item_doc, out): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1064 | if args.transaction_type == "selling" and args.customer: |
Zarrar | 3fd6347 | 2018-03-09 12:10:45 +0530 | [diff] [blame] | 1065 | out.customer_item_code = None |
Nabin Hait | 34c551d | 2019-07-03 10:34:31 +0530 | [diff] [blame] | 1066 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1067 | if args.quotation_to and args.quotation_to != "Customer": |
Nabin Hait | 34c551d | 2019-07-03 10:34:31 +0530 | [diff] [blame] | 1068 | return |
| 1069 | |
Nabin Hait | 79f091e | 2014-12-26 11:41:15 +0530 | [diff] [blame] | 1070 | customer_item_code = item_doc.get("customer_items", {"customer_name": args.customer}) |
Zarrar | 3fd6347 | 2018-03-09 12:10:45 +0530 | [diff] [blame] | 1071 | |
| 1072 | if customer_item_code: |
| 1073 | out.customer_item_code = customer_item_code[0].ref_code |
| 1074 | else: |
Nabin Hait | 9a33bc6 | 2018-08-09 10:47:09 +0530 | [diff] [blame] | 1075 | customer_group = frappe.get_cached_value("Customer", args.customer, "customer_group") |
Zarrar | 3fd6347 | 2018-03-09 12:10:45 +0530 | [diff] [blame] | 1076 | customer_group_item_code = item_doc.get("customer_items", {"customer_group": customer_group}) |
| 1077 | if customer_group_item_code and not customer_group_item_code[0].customer_name: |
| 1078 | out.customer_item_code = customer_group_item_code[0].ref_code |
Anand Doshi | 54abf02 | 2016-01-21 22:28:47 +0530 | [diff] [blame] | 1079 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1080 | if args.transaction_type == "buying" and args.supplier: |
Nabin Hait | 79f091e | 2014-12-26 11:41:15 +0530 | [diff] [blame] | 1081 | item_supplier = item_doc.get("supplier_items", {"supplier": args.supplier}) |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 1082 | out.supplier_part_no = item_supplier[0].supplier_part_no if item_supplier else None |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1083 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1084 | |
rohitwaghchaure | 2ea593b | 2018-04-12 13:37:08 +0530 | [diff] [blame] | 1085 | def get_pos_profile_item_details(company, args, pos_profile=None, update_data=False): |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 1086 | res = frappe._dict() |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1087 | |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 1088 | if not frappe.flags.pos_profile and not pos_profile: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1089 | pos_profile = frappe.flags.pos_profile = get_pos_profile(company, args.get("pos_profile")) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1090 | |
Rushabh Mehta | ad9156a | 2015-08-18 15:29:42 +0530 | [diff] [blame] | 1091 | if pos_profile: |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 1092 | for fieldname in ("income_account", "cost_center", "warehouse", "expense_account"): |
rohitwaghchaure | 2ea593b | 2018-04-12 13:37:08 +0530 | [diff] [blame] | 1093 | if (not args.get(fieldname) or update_data) and pos_profile.get(fieldname): |
Rushabh Mehta | ad9156a | 2015-08-18 15:29:42 +0530 | [diff] [blame] | 1094 | res[fieldname] = pos_profile.get(fieldname) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1095 | |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 1096 | if res.get("warehouse"): |
s-aga-r | c716dcc | 2022-12-29 12:34:18 +0530 | [diff] [blame] | 1097 | res.actual_qty = get_bin_details( |
| 1098 | args.item_code, res.warehouse, include_child_warehouses=True |
| 1099 | ).get("actual_qty") |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1100 | |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 1101 | return res |
| 1102 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1103 | |
Rushabh Mehta | ad9156a | 2015-08-18 15:29:42 +0530 | [diff] [blame] | 1104 | @frappe.whitelist() |
rohitwaghchaure | c037dc7 | 2017-11-28 16:11:15 +0530 | [diff] [blame] | 1105 | def get_pos_profile(company, pos_profile=None, user=None): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1106 | if pos_profile: |
| 1107 | return frappe.get_cached_doc("POS Profile", pos_profile) |
rohitwaghchaure | c037dc7 | 2017-11-28 16:11:15 +0530 | [diff] [blame] | 1108 | |
| 1109 | if not user: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1110 | user = frappe.session["user"] |
rohitwaghchaure | c037dc7 | 2017-11-28 16:11:15 +0530 | [diff] [blame] | 1111 | |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1112 | pf = frappe.qb.DocType("POS Profile") |
| 1113 | pfu = frappe.qb.DocType("POS Profile User") |
Rohit Waghchaure | e8e3fb1 | 2019-04-05 00:42:48 +0530 | [diff] [blame] | 1114 | |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1115 | query = ( |
| 1116 | frappe.qb.from_(pf) |
| 1117 | .left_join(pfu) |
| 1118 | .on(pf.name == pfu.parent) |
| 1119 | .select(pf.star) |
| 1120 | .where((pfu.user == user) & (pfu.default == 1)) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1121 | ) |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1122 | |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1123 | if company: |
| 1124 | query = query.where(pf.company == company) |
| 1125 | |
| 1126 | pos_profile = query.run(as_dict=True) |
| 1127 | |
Rohit Waghchaure | e8e3fb1 | 2019-04-05 00:42:48 +0530 | [diff] [blame] | 1128 | if not pos_profile and company: |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1129 | pos_profile = ( |
| 1130 | frappe.qb.from_(pf) |
| 1131 | .left_join(pfu) |
| 1132 | .on(pf.name == pfu.parent) |
| 1133 | .select(pf.star) |
| 1134 | .where((pf.company == company) & (pf.disabled == 0)) |
| 1135 | ).run(as_dict=True) |
Rohit Waghchaure | e8e3fb1 | 2019-04-05 00:42:48 +0530 | [diff] [blame] | 1136 | |
Rushabh Mehta | ad9156a | 2015-08-18 15:29:42 +0530 | [diff] [blame] | 1137 | return pos_profile and pos_profile[0] or None |
Anand Doshi | bd67e87 | 2014-04-11 16:51:27 +0530 | [diff] [blame] | 1138 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1139 | |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 1140 | def get_serial_nos_by_fifo(args, sales_order=None): |
Rushabh Mehta | 85abdc4 | 2015-09-03 10:29:38 +0530 | [diff] [blame] | 1141 | if frappe.db.get_single_value("Stock Settings", "automatically_set_serial_nos_based_on_fifo"): |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1142 | sn = frappe.qb.DocType("Serial No") |
| 1143 | query = ( |
| 1144 | frappe.qb.from_(sn) |
| 1145 | .select(sn.name) |
| 1146 | .where((sn.item_code == args.item_code) & (sn.warehouse == args.warehouse)) |
| 1147 | .orderby(CombineDatetime(sn.purchase_date, sn.purchase_time)) |
| 1148 | .limit(abs(cint(args.stock_qty))) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1149 | ) |
| 1150 | |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1151 | if sales_order: |
| 1152 | query = query.where(sn.sales_order == sales_order) |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1153 | if args.batch_no: |
| 1154 | query = query.where(sn.batch_no == args.batch_no) |
| 1155 | |
| 1156 | serial_nos = query.run(as_list=True) |
| 1157 | serial_nos = [s[0] for s in serial_nos] |
| 1158 | |
| 1159 | return "\n".join(serial_nos) |
| 1160 | |
Shreya | a20157a | 2018-04-13 12:03:42 +0530 | [diff] [blame] | 1161 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 1162 | @frappe.whitelist() |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 1163 | def get_conversion_factor(item_code, uom): |
Rushabh Mehta | 708e47a | 2018-08-08 16:37:31 +0530 | [diff] [blame] | 1164 | variant_of = frappe.db.get_value("Item", item_code, "variant_of", cache=True) |
Rushabh Mehta | 724f9e5 | 2014-10-07 15:29:58 +0530 | [diff] [blame] | 1165 | filters = {"parent": item_code, "uom": uom} |
s-aga-r | 58c027d | 2023-02-28 15:14:34 +0530 | [diff] [blame] | 1166 | |
Rushabh Mehta | 724f9e5 | 2014-10-07 15:29:58 +0530 | [diff] [blame] | 1167 | if variant_of: |
Nabin Hait | 314086d | 2015-10-07 11:55:01 +0530 | [diff] [blame] | 1168 | filters["parent"] = ("in", (item_code, variant_of)) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1169 | conversion_factor = frappe.db.get_value("UOM Conversion Detail", filters, "conversion_factor") |
Sagar Vora | 508189e | 2018-09-11 17:22:25 +0530 | [diff] [blame] | 1170 | if not conversion_factor: |
| 1171 | stock_uom = frappe.db.get_value("Item", item_code, "stock_uom") |
| 1172 | conversion_factor = get_uom_conv_factor(uom, stock_uom) |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1173 | |
rohitwaghchaure | ffdadbf | 2019-01-08 16:21:25 +0530 | [diff] [blame] | 1174 | return {"conversion_factor": conversion_factor or 1.0} |
Nabin Hait | 0822215 | 2014-02-28 11:30:47 +0530 | [diff] [blame] | 1175 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1176 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 1177 | @frappe.whitelist() |
Nabin Hait | 436f526 | 2014-02-10 14:47:54 +0530 | [diff] [blame] | 1178 | def get_projected_qty(item_code, warehouse): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1179 | return { |
| 1180 | "projected_qty": frappe.db.get_value( |
| 1181 | "Bin", {"item_code": item_code, "warehouse": warehouse}, "projected_qty" |
| 1182 | ) |
| 1183 | } |
| 1184 | |
Nabin Hait | 0822215 | 2014-02-28 11:30:47 +0530 | [diff] [blame] | 1185 | |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 1186 | @frappe.whitelist() |
s-aga-r | c716dcc | 2022-12-29 12:34:18 +0530 | [diff] [blame] | 1187 | def get_bin_details(item_code, warehouse, company=None, include_child_warehouses=False): |
ruthra kumar | be38205 | 2023-01-16 08:50:39 +0530 | [diff] [blame] | 1188 | bin_details = {"projected_qty": 0, "actual_qty": 0, "reserved_qty": 0} |
s-aga-r | c716dcc | 2022-12-29 12:34:18 +0530 | [diff] [blame] | 1189 | |
| 1190 | if warehouse: |
s-aga-r | c3911a5 | 2022-12-29 16:38:08 +0530 | [diff] [blame] | 1191 | from frappe.query_builder.functions import Coalesce, Sum |
s-aga-r | 58c027d | 2023-02-28 15:14:34 +0530 | [diff] [blame] | 1192 | |
s-aga-r | c716dcc | 2022-12-29 12:34:18 +0530 | [diff] [blame] | 1193 | from erpnext.stock.doctype.warehouse.warehouse import get_child_warehouses |
| 1194 | |
| 1195 | warehouses = get_child_warehouses(warehouse) if include_child_warehouses else [warehouse] |
s-aga-r | c3911a5 | 2022-12-29 16:38:08 +0530 | [diff] [blame] | 1196 | |
| 1197 | bin = frappe.qb.DocType("Bin") |
| 1198 | bin_details = ( |
| 1199 | frappe.qb.from_(bin) |
| 1200 | .select( |
| 1201 | Coalesce(Sum(bin.projected_qty), 0).as_("projected_qty"), |
| 1202 | Coalesce(Sum(bin.actual_qty), 0).as_("actual_qty"), |
| 1203 | Coalesce(Sum(bin.reserved_qty), 0).as_("reserved_qty"), |
| 1204 | ) |
| 1205 | .where((bin.item_code == item_code) & (bin.warehouse.isin(warehouses))) |
| 1206 | ).run(as_dict=True)[0] |
s-aga-r | c716dcc | 2022-12-29 12:34:18 +0530 | [diff] [blame] | 1207 | |
Anupam | 4980dd6 | 2021-03-15 11:37:46 +0530 | [diff] [blame] | 1208 | if company: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1209 | bin_details["company_total_stock"] = get_company_total_stock(item_code, company) |
s-aga-r | b425c2d | 2023-01-02 11:25:13 +0530 | [diff] [blame] | 1210 | |
Anupam | 4980dd6 | 2021-03-15 11:37:46 +0530 | [diff] [blame] | 1211 | return bin_details |
Kanchan Chauhan | af0d637 | 2016-11-13 21:19:09 +0530 | [diff] [blame] | 1212 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1213 | |
Anupam | 4980dd6 | 2021-03-15 11:37:46 +0530 | [diff] [blame] | 1214 | def get_company_total_stock(item_code, company): |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1215 | bin = frappe.qb.DocType("Bin") |
| 1216 | wh = frappe.qb.DocType("Warehouse") |
| 1217 | |
| 1218 | return ( |
| 1219 | frappe.qb.from_(bin) |
| 1220 | .inner_join(wh) |
| 1221 | .on(bin.warehouse == wh.name) |
| 1222 | .select(Sum(bin.actual_qty)) |
| 1223 | .where((wh.company == company) & (bin.item_code == item_code)) |
| 1224 | ).run()[0][0] |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1225 | |
Anupam | 4980dd6 | 2021-03-15 11:37:46 +0530 | [diff] [blame] | 1226 | |
| 1227 | @frappe.whitelist() |
Kanchan Chauhan | 5a980ac | 2017-02-10 14:27:11 +0530 | [diff] [blame] | 1228 | def get_serial_no_details(item_code, warehouse, stock_qty, serial_no): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1229 | args = frappe._dict( |
| 1230 | {"item_code": item_code, "warehouse": warehouse, "stock_qty": stock_qty, "serial_no": serial_no} |
| 1231 | ) |
Kanchan Chauhan | af0d637 | 2016-11-13 21:19:09 +0530 | [diff] [blame] | 1232 | serial_no = get_serial_no(args) |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1233 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1234 | return {"serial_no": serial_no} |
| 1235 | |
Rushabh Mehta | 985cb82 | 2016-12-30 15:06:54 +0530 | [diff] [blame] | 1236 | |
Kanchan Chauhan | af0d637 | 2016-11-13 21:19:09 +0530 | [diff] [blame] | 1237 | @frappe.whitelist() |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1238 | def get_bin_details_and_serial_nos( |
| 1239 | item_code, warehouse, has_batch_no=None, stock_qty=None, serial_no=None |
| 1240 | ): |
Kanchan Chauhan | af0d637 | 2016-11-13 21:19:09 +0530 | [diff] [blame] | 1241 | bin_details_and_serial_nos = {} |
| 1242 | bin_details_and_serial_nos.update(get_bin_details(item_code, warehouse)) |
Rushabh Mehta | 49f9747 | 2018-08-30 18:50:48 +0530 | [diff] [blame] | 1243 | if flt(stock_qty) > 0: |
Shreya | a20157a | 2018-04-13 12:03:42 +0530 | [diff] [blame] | 1244 | if has_batch_no: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1245 | args = frappe._dict({"item_code": item_code, "warehouse": warehouse, "stock_qty": stock_qty}) |
Shreya | a20157a | 2018-04-13 12:03:42 +0530 | [diff] [blame] | 1246 | serial_no = get_serial_no(args) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1247 | bin_details_and_serial_nos.update({"serial_no": serial_no}) |
Shreya | a20157a | 2018-04-13 12:03:42 +0530 | [diff] [blame] | 1248 | return bin_details_and_serial_nos |
| 1249 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1250 | bin_details_and_serial_nos.update( |
| 1251 | get_serial_no_details(item_code, warehouse, stock_qty, serial_no) |
| 1252 | ) |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1253 | |
Kanchan Chauhan | af0d637 | 2016-11-13 21:19:09 +0530 | [diff] [blame] | 1254 | return bin_details_and_serial_nos |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1255 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1256 | |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1257 | @frappe.whitelist() |
Shreya | a20157a | 2018-04-13 12:03:42 +0530 | [diff] [blame] | 1258 | def get_batch_qty_and_serial_no(batch_no, stock_qty, warehouse, item_code, has_serial_no): |
| 1259 | batch_qty_and_serial_no = {} |
| 1260 | batch_qty_and_serial_no.update(get_batch_qty(batch_no, warehouse, item_code)) |
| 1261 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1262 | if (flt(batch_qty_and_serial_no.get("actual_batch_qty")) >= flt(stock_qty)) and has_serial_no: |
| 1263 | args = frappe._dict( |
| 1264 | {"item_code": item_code, "warehouse": warehouse, "stock_qty": stock_qty, "batch_no": batch_no} |
| 1265 | ) |
Shreya | a20157a | 2018-04-13 12:03:42 +0530 | [diff] [blame] | 1266 | serial_no = get_serial_no(args) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1267 | batch_qty_and_serial_no.update({"serial_no": serial_no}) |
s-aga-r | 58c027d | 2023-02-28 15:14:34 +0530 | [diff] [blame] | 1268 | |
Shreya | a20157a | 2018-04-13 12:03:42 +0530 | [diff] [blame] | 1269 | return batch_qty_and_serial_no |
| 1270 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1271 | |
Shreya | a20157a | 2018-04-13 12:03:42 +0530 | [diff] [blame] | 1272 | @frappe.whitelist() |
Rushabh Mehta | e385b5b | 2017-04-20 15:21:01 +0530 | [diff] [blame] | 1273 | def get_batch_qty(batch_no, warehouse, item_code): |
sburanaw | 66951e5 | 2017-04-25 15:28:57 +0700 | [diff] [blame] | 1274 | from erpnext.stock.doctype.batch import batch |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1275 | |
Sambhaji Kolate | 98dbccd | 2015-03-10 15:04:28 +0530 | [diff] [blame] | 1276 | if batch_no: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1277 | return {"actual_batch_qty": batch.get_batch_qty(batch_no, warehouse)} |
| 1278 | |
Rushabh Mehta | 1e8025b | 2015-07-24 15:16:25 +0530 | [diff] [blame] | 1279 | |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1280 | @frappe.whitelist() |
Rushabh Mehta | b46069d | 2016-01-15 16:59:26 +0530 | [diff] [blame] | 1281 | def apply_price_list(args, as_doc=False): |
| 1282 | """Apply pricelist on a document-like dict object and return as |
| 1283 | {'parent': dict, 'children': list} |
| 1284 | |
| 1285 | :param args: See below |
| 1286 | :param as_doc: Updates value in the passed dict |
| 1287 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1288 | args = { |
| 1289 | "doctype": "", |
| 1290 | "name": "", |
| 1291 | "items": [{"doctype": "", "name": "", "item_code": "", "brand": "", "item_group": ""}, ...], |
| 1292 | "conversion_rate": 1.0, |
| 1293 | "selling_price_list": None, |
| 1294 | "price_list_currency": None, |
| 1295 | "price_list_uom_dependant": None, |
| 1296 | "plc_conversion_rate": 1.0, |
| 1297 | "doctype": "", |
| 1298 | "name": "", |
| 1299 | "supplier": None, |
| 1300 | "transaction_date": None, |
| 1301 | "conversion_rate": 1.0, |
| 1302 | "buying_price_list": None, |
| 1303 | "ignore_pricing_rule": 0/1 |
| 1304 | } |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1305 | """ |
| 1306 | args = process_args(args) |
| 1307 | |
| 1308 | parent = get_price_list_currency_and_exchange_rate(args) |
Marica | e8bc912 | 2021-04-19 11:05:21 +0530 | [diff] [blame] | 1309 | args.update(parent) |
| 1310 | |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1311 | children = [] |
| 1312 | |
Rushabh Mehta | b46069d | 2016-01-15 16:59:26 +0530 | [diff] [blame] | 1313 | if "items" in args: |
| 1314 | item_list = args.get("items") |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1315 | args.update(parent) |
| 1316 | |
| 1317 | for item in item_list: |
| 1318 | args_copy = frappe._dict(args.copy()) |
| 1319 | args_copy.update(item) |
| 1320 | item_details = apply_price_list_on_item(args_copy) |
| 1321 | children.append(item_details) |
| 1322 | |
Rushabh Mehta | b46069d | 2016-01-15 16:59:26 +0530 | [diff] [blame] | 1323 | if as_doc: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1324 | args.price_list_currency = (parent.price_list_currency,) |
Rushabh Mehta | b46069d | 2016-01-15 16:59:26 +0530 | [diff] [blame] | 1325 | args.plc_conversion_rate = parent.plc_conversion_rate |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1326 | if args.get("items"): |
| 1327 | for i, item in enumerate(args.get("items")): |
Rushabh Mehta | b46069d | 2016-01-15 16:59:26 +0530 | [diff] [blame] | 1328 | for fieldname in children[i]: |
| 1329 | # if the field exists in the original doc |
| 1330 | # update the value |
| 1331 | if fieldname in item and fieldname not in ("name", "doctype"): |
| 1332 | item[fieldname] = children[i][fieldname] |
Rushabh Mehta | b46069d | 2016-01-15 16:59:26 +0530 | [diff] [blame] | 1333 | return args |
| 1334 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1335 | return {"parent": parent, "children": children} |
| 1336 | |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1337 | |
| 1338 | def apply_price_list_on_item(args): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1339 | item_doc = frappe.db.get_value("Item", args.item_code, ["name", "variant_of"], as_dict=1) |
Ankush | 16d4de5 | 2021-08-09 10:41:24 +0530 | [diff] [blame] | 1340 | item_details = get_price_list_rate(args, item_doc) |
Deepesh Garg | b741ae1 | 2022-12-02 17:14:06 +0530 | [diff] [blame] | 1341 | item_details.update(get_pricing_rule_for_item(args)) |
Rushabh Mehta | b46069d | 2016-01-15 16:59:26 +0530 | [diff] [blame] | 1342 | |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1343 | return item_details |
| 1344 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1345 | |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1346 | def get_price_list_currency_and_exchange_rate(args): |
Anand Doshi | 70f57eb | 2015-11-27 14:37:40 +0530 | [diff] [blame] | 1347 | if not args.price_list: |
| 1348 | return {} |
| 1349 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1350 | if args.doctype in ["Quotation", "Sales Order", "Delivery Note", "Sales Invoice"]: |
Shreya | 3f77852 | 2018-05-15 16:59:20 +0530 | [diff] [blame] | 1351 | args.update({"exchange_rate": "for_selling"}) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1352 | elif args.doctype in ["Purchase Order", "Purchase Receipt", "Purchase Invoice"]: |
Shreya | 3f77852 | 2018-05-15 16:59:20 +0530 | [diff] [blame] | 1353 | args.update({"exchange_rate": "for_buying"}) |
| 1354 | |
rohitwaghchaure | a85ddf2 | 2019-11-19 18:47:48 +0530 | [diff] [blame] | 1355 | price_list_details = get_price_list_details(args.price_list) |
| 1356 | |
| 1357 | price_list_currency = price_list_details.get("currency") |
| 1358 | price_list_uom_dependant = price_list_details.get("price_list_uom_dependant") |
| 1359 | |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1360 | plc_conversion_rate = args.plc_conversion_rate |
tundebabzy | 6e90f49 | 2018-02-12 10:48:57 +0100 | [diff] [blame] | 1361 | company_currency = get_company_currency(args.company) |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1362 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1363 | if (not plc_conversion_rate) or ( |
| 1364 | price_list_currency |
| 1365 | and args.price_list_currency |
| 1366 | and price_list_currency != args.price_list_currency |
| 1367 | ): |
| 1368 | # cksgb 19/09/2016: added args.transaction_date as posting_date argument for get_exchange_rate |
| 1369 | plc_conversion_rate = ( |
| 1370 | get_exchange_rate( |
| 1371 | price_list_currency, company_currency, args.transaction_date, args.exchange_rate |
| 1372 | ) |
| 1373 | or plc_conversion_rate |
| 1374 | ) |
Anand Doshi | dffec8f | 2014-07-01 17:45:15 +0530 | [diff] [blame] | 1375 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1376 | return frappe._dict( |
| 1377 | { |
| 1378 | "price_list_currency": price_list_currency, |
| 1379 | "price_list_uom_dependant": price_list_uom_dependant, |
| 1380 | "plc_conversion_rate": plc_conversion_rate or 1, |
| 1381 | } |
| 1382 | ) |
| 1383 | |
ankitjavalkarwork | 5edae0e | 2014-11-05 20:14:53 +0530 | [diff] [blame] | 1384 | |
| 1385 | @frappe.whitelist() |
| 1386 | def get_default_bom(item_code=None): |
marination | 9f2d325 | 2022-06-14 17:20:44 +0530 | [diff] [blame] | 1387 | def _get_bom(item): |
| 1388 | bom = frappe.get_all( |
| 1389 | "BOM", dict(item=item, is_active=True, is_default=True, docstatus=1), limit=1 |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1390 | ) |
marination | 9f2d325 | 2022-06-14 17:20:44 +0530 | [diff] [blame] | 1391 | return bom[0].name if bom else None |
| 1392 | |
| 1393 | if not item_code: |
| 1394 | return |
| 1395 | |
| 1396 | bom_name = _get_bom(item_code) |
| 1397 | |
| 1398 | template_item = frappe.db.get_value("Item", item_code, "variant_of") |
| 1399 | if not bom_name and template_item: |
| 1400 | bom_name = _get_bom(template_item) |
| 1401 | |
| 1402 | return bom_name |
Rushabh Mehta | 0394aec | 2016-04-22 17:22:22 +0530 | [diff] [blame] | 1403 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1404 | |
Deepesh Garg | 15ff6a5 | 2020-02-18 12:28:41 +0530 | [diff] [blame] | 1405 | @frappe.whitelist() |
Manas Solanki | 087a225 | 2018-05-04 16:02:38 +0530 | [diff] [blame] | 1406 | def get_valuation_rate(item_code, company, warehouse=None): |
Manas Solanki | b16a4ec | 2018-05-04 16:49:33 +0530 | [diff] [blame] | 1407 | item = get_item_defaults(item_code, company) |
Shreya Shah | 3c9839f | 2018-07-17 18:01:44 +0530 | [diff] [blame] | 1408 | item_group = get_item_group_defaults(item_code, company) |
Saif Ur Rehman | c819ea3 | 2018-09-25 14:53:12 +0500 | [diff] [blame] | 1409 | brand = get_brand_defaults(item_code, company) |
Manas Solanki | 087a225 | 2018-05-04 16:02:38 +0530 | [diff] [blame] | 1410 | # item = frappe.get_doc("Item", item_code) |
Manas Solanki | e3910fb | 2018-05-16 15:50:17 +0530 | [diff] [blame] | 1411 | if item.get("is_stock_item"): |
Saurabh | bd01a81 | 2016-03-07 14:32:23 +0530 | [diff] [blame] | 1412 | if not warehouse: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1413 | warehouse = ( |
| 1414 | item.get("default_warehouse") |
| 1415 | or item_group.get("default_warehouse") |
| 1416 | or brand.get("default_warehouse") |
| 1417 | ) |
Rushabh Mehta | 0394aec | 2016-04-22 17:22:22 +0530 | [diff] [blame] | 1418 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1419 | return frappe.db.get_value( |
| 1420 | "Bin", {"item_code": item_code, "warehouse": warehouse}, ["valuation_rate"], as_dict=True |
| 1421 | ) or {"valuation_rate": 0} |
Rushabh Mehta | 0394aec | 2016-04-22 17:22:22 +0530 | [diff] [blame] | 1422 | |
Manas Solanki | e3910fb | 2018-05-16 15:50:17 +0530 | [diff] [blame] | 1423 | elif not item.get("is_stock_item"): |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1424 | pi_item = frappe.qb.DocType("Purchase Invoice Item") |
| 1425 | valuation_rate = ( |
| 1426 | frappe.qb.from_(pi_item) |
| 1427 | .select((Sum(pi_item.base_net_amount) / Sum(pi_item.qty * pi_item.conversion_factor))) |
s-aga-r | 58c027d | 2023-02-28 15:14:34 +0530 | [diff] [blame] | 1428 | .where((pi_item.docstatus == 1) & (pi_item.item_code == item_code)) |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1429 | ).run() |
Rushabh Mehta | 0394aec | 2016-04-22 17:22:22 +0530 | [diff] [blame] | 1430 | |
Saurabh | bd01a81 | 2016-03-07 14:32:23 +0530 | [diff] [blame] | 1431 | if valuation_rate: |
| 1432 | return {"valuation_rate": valuation_rate[0][0] or 0.0} |
| 1433 | else: |
| 1434 | return {"valuation_rate": 0.0} |
Rushabh Mehta | 0394aec | 2016-04-22 17:22:22 +0530 | [diff] [blame] | 1435 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1436 | |
Saurabh | 2d7af63 | 2016-02-26 11:09:20 +0530 | [diff] [blame] | 1437 | def get_gross_profit(out): |
Saurabh | 5ada14b | 2016-02-26 18:02:55 +0530 | [diff] [blame] | 1438 | if out.valuation_rate: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1439 | out.update({"gross_profit": ((out.base_rate - out.valuation_rate) * out.stock_qty)}) |
Rushabh Mehta | 0394aec | 2016-04-22 17:22:22 +0530 | [diff] [blame] | 1440 | |
Saurabh | d313553 | 2016-02-25 18:59:20 +0530 | [diff] [blame] | 1441 | return out |
mbauskar | 6f60339 | 2016-01-21 16:10:22 +0530 | [diff] [blame] | 1442 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1443 | |
Kanchan Chauhan | af0d637 | 2016-11-13 21:19:09 +0530 | [diff] [blame] | 1444 | @frappe.whitelist() |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 1445 | def get_serial_no(args, serial_nos=None, sales_order=None): |
Rohit Waghchaure | ba3f0e6 | 2017-08-28 17:19:28 +0530 | [diff] [blame] | 1446 | serial_no = None |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 1447 | if isinstance(args, str): |
Kanchan Chauhan | af0d637 | 2016-11-13 21:19:09 +0530 | [diff] [blame] | 1448 | args = json.loads(args) |
| 1449 | args = frappe._dict(args) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1450 | if args.get("doctype") == "Sales Invoice" and not args.get("update_stock"): |
Rohit Waghchaure | dc981dc | 2017-04-03 14:17:08 +0530 | [diff] [blame] | 1451 | return "" |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1452 | if args.get("warehouse") and args.get("stock_qty") and args.get("item_code"): |
| 1453 | has_serial_no = frappe.get_value("Item", {"item_code": args.item_code}, "has_serial_no") |
| 1454 | if args.get("batch_no") and has_serial_no == 1: |
s-aga-r | 35489fb | 2023-02-18 14:33:31 +0530 | [diff] [blame] | 1455 | return get_serial_nos_by_fifo(args, sales_order) |
Shreya | a20157a | 2018-04-13 12:03:42 +0530 | [diff] [blame] | 1456 | elif has_serial_no == 1: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1457 | args = json.dumps( |
| 1458 | { |
| 1459 | "item_code": args.get("item_code"), |
| 1460 | "warehouse": args.get("warehouse"), |
| 1461 | "stock_qty": args.get("stock_qty"), |
| 1462 | } |
| 1463 | ) |
Kanchan Chauhan | af0d637 | 2016-11-13 21:19:09 +0530 | [diff] [blame] | 1464 | args = process_args(args) |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 1465 | serial_no = get_serial_nos_by_fifo(args, sales_order) |
Rohit Waghchaure | ba3f0e6 | 2017-08-28 17:19:28 +0530 | [diff] [blame] | 1466 | |
| 1467 | if not serial_no and serial_nos: |
| 1468 | # For POS |
| 1469 | serial_no = serial_nos |
| 1470 | |
| 1471 | return serial_no |
Manas Solanki | e5e87f7 | 2018-05-28 20:07:08 +0530 | [diff] [blame] | 1472 | |
| 1473 | |
| 1474 | def update_party_blanket_order(args, out): |
ronelvcabrera | 370cdc0 | 2019-12-04 18:37:11 +0800 | [diff] [blame] | 1475 | if out["against_blanket_order"]: |
| 1476 | blanket_order_details = get_blanket_order_details(args) |
| 1477 | if blanket_order_details: |
| 1478 | out.update(blanket_order_details) |
Manas Solanki | e5e87f7 | 2018-05-28 20:07:08 +0530 | [diff] [blame] | 1479 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1480 | |
Manas Solanki | e5e87f7 | 2018-05-28 20:07:08 +0530 | [diff] [blame] | 1481 | @frappe.whitelist() |
| 1482 | def get_blanket_order_details(args): |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 1483 | if isinstance(args, str): |
Manas Solanki | e5e87f7 | 2018-05-28 20:07:08 +0530 | [diff] [blame] | 1484 | args = frappe._dict(json.loads(args)) |
| 1485 | |
| 1486 | blanket_order_details = None |
Nabin Hait | 2737b08 | 2018-06-14 18:07:22 +0530 | [diff] [blame] | 1487 | |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1488 | if args.item_code: |
| 1489 | bo = frappe.qb.DocType("Blanket Order") |
| 1490 | bo_item = frappe.qb.DocType("Blanket Order Item") |
| 1491 | |
| 1492 | query = ( |
| 1493 | frappe.qb.from_(bo) |
| 1494 | .from_(bo_item) |
| 1495 | .select(bo_item.rate.as_("blanket_order_rate"), bo.name.as_("blanket_order")) |
| 1496 | .where( |
| 1497 | (bo.company == args.company) |
| 1498 | & (bo_item.item_code == args.item_code) |
| 1499 | & (bo.docstatus == 1) |
| 1500 | & (bo.name == bo_item.parent) |
| 1501 | ) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1502 | ) |
Nabin Hait | 2737b08 | 2018-06-14 18:07:22 +0530 | [diff] [blame] | 1503 | |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1504 | if args.customer and args.doctype == "Sales Order": |
| 1505 | query = query.where(bo.customer == args.customer) |
| 1506 | elif args.supplier and args.doctype == "Purchase Order": |
| 1507 | query = query.where(bo.supplier == args.supplier) |
| 1508 | if args.blanket_order: |
| 1509 | query = query.where(bo.name == args.blanket_order) |
| 1510 | if args.transaction_date: |
| 1511 | query = query.where(bo.to_date >= args.transaction_date) |
| 1512 | |
| 1513 | blanket_order_details = query.run(as_dict=True) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1514 | blanket_order_details = blanket_order_details[0] if blanket_order_details else "" |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1515 | |
Manas Solanki | e5e87f7 | 2018-05-28 20:07:08 +0530 | [diff] [blame] | 1516 | return blanket_order_details |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 1517 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1518 | |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 1519 | def get_so_reservation_for_item(args): |
| 1520 | reserved_so = None |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1521 | if args.get("against_sales_order"): |
| 1522 | if get_reserved_qty_for_so(args.get("against_sales_order"), args.get("item_code")): |
| 1523 | reserved_so = args.get("against_sales_order") |
| 1524 | elif args.get("against_sales_invoice"): |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1525 | sales_order = frappe.db.get_all( |
| 1526 | "Sales Invoice Item", |
| 1527 | filters={"parent": args.get("against_sales_invoice"), "item_code": args.get("item_code")}, |
| 1528 | fields="sales_order", |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1529 | ) |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 1530 | if sales_order and sales_order[0]: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1531 | if get_reserved_qty_for_so(sales_order[0][0], args.get("item_code")): |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 1532 | reserved_so = sales_order[0] |
| 1533 | elif args.get("sales_order"): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1534 | if get_reserved_qty_for_so(args.get("sales_order"), args.get("item_code")): |
| 1535 | reserved_so = args.get("sales_order") |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 1536 | return reserved_so |
| 1537 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1538 | |
Ranjith Kurungadam | d54991d | 2018-08-01 17:47:07 +0530 | [diff] [blame] | 1539 | def get_reserved_qty_for_so(sales_order, item_code): |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1540 | reserved_qty = frappe.db.get_value( |
| 1541 | "Sales Order Item", |
| 1542 | filters={ |
| 1543 | "parent": sales_order, |
| 1544 | "item_code": item_code, |
| 1545 | "ensure_delivery_based_on_produced_serial_no": 1, |
| 1546 | }, |
| 1547 | fieldname="sum(qty)", |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 1548 | ) |
s-aga-r | 6b144ba | 2023-02-18 12:18:41 +0530 | [diff] [blame] | 1549 | |
| 1550 | return reserved_qty or 0 |