Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 1 | # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors |
| 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 copy |
| 6 | import json |
| 7 | |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 8 | import frappe |
| 9 | from frappe import _ |
| 10 | from frappe.utils import cstr, flt |
Achilles Rasquinha | 56b2e12 | 2018-02-13 14:42:40 +0530 | [diff] [blame] | 11 | |
Sabu Siyad | f900a78 | 2023-10-17 17:05:44 +0530 | [diff] [blame] | 12 | from erpnext.utilities.product import get_item_codes_by_attributes |
| 13 | |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 14 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 15 | class ItemVariantExistsError(frappe.ValidationError): |
| 16 | pass |
| 17 | |
| 18 | |
| 19 | class InvalidItemAttributeValueError(frappe.ValidationError): |
| 20 | pass |
| 21 | |
| 22 | |
| 23 | class ItemTemplateCannotHaveStock(frappe.ValidationError): |
| 24 | pass |
| 25 | |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 26 | |
| 27 | @frappe.whitelist() |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 28 | def get_variant(template, args=None, variant=None, manufacturer=None, manufacturer_part_no=None): |
Sabu Siyad | f900a78 | 2023-10-17 17:05:44 +0530 | [diff] [blame] | 29 | """ |
| 30 | Validates Attributes and their Values, then looks for an exactly |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 31 | matching Item Variant |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 32 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 33 | :param item: Template Item |
| 34 | :param args: A dictionary with "Attribute" as key and "Attribute Value" as value |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 35 | """ |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 36 | item_template = frappe.get_doc("Item", template) |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 37 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 38 | if item_template.variant_based_on == "Manufacturer" and manufacturer: |
| 39 | return make_variant_based_on_manufacturer(item_template, manufacturer, manufacturer_part_no) |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 40 | |
Sabu Siyad | f900a78 | 2023-10-17 17:05:44 +0530 | [diff] [blame] | 41 | if isinstance(args, str): |
| 42 | args = json.loads(args) |
| 43 | |
| 44 | if not args: |
| 45 | frappe.throw(_("Please specify at least one attribute in the Attributes table")) |
| 46 | |
| 47 | return find_variant(template, args, variant) |
Rushabh Mehta | a07c43f | 2017-03-21 17:48:34 +0100 | [diff] [blame] | 48 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 49 | |
Rushabh Mehta | a07c43f | 2017-03-21 17:48:34 +0100 | [diff] [blame] | 50 | def make_variant_based_on_manufacturer(template, manufacturer, manufacturer_part_no): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 51 | """Make and return a new variant based on manufacturer and |
| 52 | manufacturer part no""" |
Rushabh Mehta | a07c43f | 2017-03-21 17:48:34 +0100 | [diff] [blame] | 53 | from frappe.model.naming import append_number_if_name_exists |
| 54 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 55 | variant = frappe.new_doc("Item") |
Rushabh Mehta | a07c43f | 2017-03-21 17:48:34 +0100 | [diff] [blame] | 56 | |
| 57 | copy_attributes_to_variant(template, variant) |
| 58 | |
Nabin Hait | b6a8920 | 2017-04-25 17:27:53 +0530 | [diff] [blame] | 59 | variant.manufacturer = manufacturer |
| 60 | variant.manufacturer_part_no = manufacturer_part_no |
Rushabh Mehta | a07c43f | 2017-03-21 17:48:34 +0100 | [diff] [blame] | 61 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 62 | variant.item_code = append_number_if_name_exists("Item", template.name) |
Rushabh Mehta | a07c43f | 2017-03-21 17:48:34 +0100 | [diff] [blame] | 63 | |
| 64 | return variant |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 65 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 66 | |
Rushabh Mehta | b8bdfbc | 2016-07-15 12:40:47 +0530 | [diff] [blame] | 67 | def validate_item_variant_attributes(item, args=None): |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 68 | if isinstance(item, str): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 69 | item = frappe.get_doc("Item", item) |
Rushabh Mehta | 95383bb | 2016-07-15 15:11:46 +0530 | [diff] [blame] | 70 | |
Rushabh Mehta | b8bdfbc | 2016-07-15 12:40:47 +0530 | [diff] [blame] | 71 | if not args: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 72 | args = {d.attribute.lower(): d.attribute_value for d in item.attributes} |
Rushabh Mehta | aed79e9 | 2016-06-02 17:49:16 +0530 | [diff] [blame] | 73 | |
Nabin Hait | aaf378e | 2017-12-13 18:40:52 +0530 | [diff] [blame] | 74 | attribute_values, numeric_values = get_attribute_values(item) |
Rushabh Mehta | aed79e9 | 2016-06-02 17:49:16 +0530 | [diff] [blame] | 75 | |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 76 | for attribute, value in args.items(): |
Rushabh Mehta | 95383bb | 2016-07-15 15:11:46 +0530 | [diff] [blame] | 77 | if not value: |
| 78 | continue |
| 79 | |
| 80 | if attribute.lower() in numeric_values: |
| 81 | numeric_attribute = numeric_values[attribute.lower()] |
Rohit Waghchaure | 6500ef4 | 2016-12-15 18:24:32 +0530 | [diff] [blame] | 82 | validate_is_incremental(numeric_attribute, attribute, value, item.name) |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 83 | |
Rohit Waghchaure | 6500ef4 | 2016-12-15 18:24:32 +0530 | [diff] [blame] | 84 | else: |
| 85 | attributes_list = attribute_values.get(attribute.lower(), []) |
marination | 0df7f0f | 2020-06-01 11:56:33 +0530 | [diff] [blame] | 86 | validate_item_attribute_value(attributes_list, attribute, value, item.name, from_variant=True) |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 87 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 88 | |
Rohit Waghchaure | 6500ef4 | 2016-12-15 18:24:32 +0530 | [diff] [blame] | 89 | def validate_is_incremental(numeric_attribute, attribute, value, item): |
| 90 | from_range = numeric_attribute.from_range |
| 91 | to_range = numeric_attribute.to_range |
| 92 | increment = numeric_attribute.increment |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 93 | |
Rohit Waghchaure | 6500ef4 | 2016-12-15 18:24:32 +0530 | [diff] [blame] | 94 | if increment == 0: |
| 95 | # defensive validation to prevent ZeroDivisionError |
| 96 | frappe.throw(_("Increment for Attribute {0} cannot be 0").format(attribute)) |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 97 | |
Rohit Waghchaure | 6500ef4 | 2016-12-15 18:24:32 +0530 | [diff] [blame] | 98 | is_in_range = from_range <= flt(value) <= to_range |
| 99 | precision = max(len(cstr(v).split(".")[-1].rstrip("0")) for v in (value, increment)) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 100 | # avoid precision error by rounding the remainder |
Rohit Waghchaure | 6500ef4 | 2016-12-15 18:24:32 +0530 | [diff] [blame] | 101 | remainder = flt((flt(value) - from_range) % increment, precision) |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 102 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 103 | is_incremental = remainder == 0 or remainder == increment |
Rushabh Mehta | aed79e9 | 2016-06-02 17:49:16 +0530 | [diff] [blame] | 104 | |
Rohit Waghchaure | 6500ef4 | 2016-12-15 18:24:32 +0530 | [diff] [blame] | 105 | if not (is_in_range and is_incremental): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 106 | frappe.throw( |
| 107 | _( |
| 108 | "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" |
| 109 | ).format(attribute, from_range, to_range, increment, item), |
| 110 | InvalidItemAttributeValueError, |
| 111 | title=_("Invalid Attribute"), |
| 112 | ) |
Rohit Waghchaure | 6500ef4 | 2016-12-15 18:24:32 +0530 | [diff] [blame] | 113 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 114 | |
| 115 | def validate_item_attribute_value( |
| 116 | attributes_list, attribute, attribute_value, item, from_variant=True |
| 117 | ): |
| 118 | allow_rename_attribute_value = frappe.db.get_single_value( |
| 119 | "Item Variant Settings", "allow_rename_attribute_value" |
| 120 | ) |
Vishal Dhayagude | 668ec25 | 2018-03-07 15:31:08 +0530 | [diff] [blame] | 121 | if allow_rename_attribute_value: |
| 122 | pass |
| 123 | elif attribute_value not in attributes_list: |
marination | 0df7f0f | 2020-06-01 11:56:33 +0530 | [diff] [blame] | 124 | if from_variant: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 125 | frappe.throw( |
| 126 | _("{0} is not a valid Value for Attribute {1} of Item {2}.").format( |
| 127 | frappe.bold(attribute_value), frappe.bold(attribute), frappe.bold(item) |
| 128 | ), |
| 129 | InvalidItemAttributeValueError, |
| 130 | title=_("Invalid Value"), |
| 131 | ) |
marination | 0df7f0f | 2020-06-01 11:56:33 +0530 | [diff] [blame] | 132 | else: |
marination | 91dfd00 | 2020-06-17 19:05:40 +0530 | [diff] [blame] | 133 | msg = _("The value {0} is already assigned to an existing Item {1}.").format( |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 134 | frappe.bold(attribute_value), frappe.bold(item) |
| 135 | ) |
| 136 | msg += "<br>" + _( |
| 137 | "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." |
| 138 | ).format(frappe.bold("Allow Rename Attribute Value")) |
marination | 0df7f0f | 2020-06-01 11:56:33 +0530 | [diff] [blame] | 139 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 140 | frappe.throw(msg, InvalidItemAttributeValueError, title=_("Edit Not Allowed")) |
| 141 | |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 142 | |
Nabin Hait | aaf378e | 2017-12-13 18:40:52 +0530 | [diff] [blame] | 143 | def get_attribute_values(item): |
Rushabh Mehta | b8bdfbc | 2016-07-15 12:40:47 +0530 | [diff] [blame] | 144 | if not frappe.flags.attribute_values: |
| 145 | attribute_values = {} |
Rushabh Mehta | 95383bb | 2016-07-15 15:11:46 +0530 | [diff] [blame] | 146 | numeric_values = {} |
Rushabh Mehta | b8bdfbc | 2016-07-15 12:40:47 +0530 | [diff] [blame] | 147 | for t in frappe.get_all("Item Attribute Value", fields=["parent", "attribute_value"]): |
Rushabh Mehta | 95383bb | 2016-07-15 15:11:46 +0530 | [diff] [blame] | 148 | attribute_values.setdefault(t.parent.lower(), []).append(t.attribute_value) |
| 149 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 150 | for t in frappe.get_all( |
| 151 | "Item Variant Attribute", |
Nabin Hait | aaf378e | 2017-12-13 18:40:52 +0530 | [diff] [blame] | 152 | fields=["attribute", "from_range", "to_range", "increment"], |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 153 | filters={"numeric_values": 1, "parent": item.variant_of}, |
| 154 | ): |
Nabin Hait | aaf378e | 2017-12-13 18:40:52 +0530 | [diff] [blame] | 155 | numeric_values[t.attribute.lower()] = t |
Rushabh Mehta | b8bdfbc | 2016-07-15 12:40:47 +0530 | [diff] [blame] | 156 | |
| 157 | frappe.flags.attribute_values = attribute_values |
Rushabh Mehta | 95383bb | 2016-07-15 15:11:46 +0530 | [diff] [blame] | 158 | frappe.flags.numeric_values = numeric_values |
Rushabh Mehta | b8bdfbc | 2016-07-15 12:40:47 +0530 | [diff] [blame] | 159 | |
Rushabh Mehta | 95383bb | 2016-07-15 15:11:46 +0530 | [diff] [blame] | 160 | return frappe.flags.attribute_values, frappe.flags.numeric_values |
Rushabh Mehta | b8bdfbc | 2016-07-15 12:40:47 +0530 | [diff] [blame] | 161 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 162 | |
Nabin Hait | 6b068e1 | 2015-12-31 13:20:32 +0530 | [diff] [blame] | 163 | def find_variant(template, args, variant_item_code=None): |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 164 | possible_variants = [ |
| 165 | i for i in get_item_codes_by_attributes(args, template) if i != variant_item_code |
| 166 | ] |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 167 | |
| 168 | for variant in possible_variants: |
| 169 | variant = frappe.get_doc("Item", variant) |
| 170 | |
| 171 | if len(args.keys()) == len(variant.get("attributes")): |
| 172 | # has the same number of attributes and values |
| 173 | # assuming no duplication as per the validation in Item |
| 174 | match_count = 0 |
| 175 | |
| 176 | for attribute, value in args.items(): |
| 177 | for row in variant.attributes: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 178 | if row.attribute == attribute and row.attribute_value == cstr(value): |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 179 | # this row matches |
| 180 | match_count += 1 |
| 181 | break |
| 182 | |
| 183 | if match_count == len(args.keys()): |
| 184 | return variant.name |
| 185 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 186 | |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 187 | @frappe.whitelist() |
| 188 | def create_variant(item, args): |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 189 | if isinstance(args, str): |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 190 | args = json.loads(args) |
| 191 | |
| 192 | template = frappe.get_doc("Item", item) |
| 193 | variant = frappe.new_doc("Item") |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 194 | variant.variant_based_on = "Item Attribute" |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 195 | variant_attributes = [] |
| 196 | |
| 197 | for d in template.attributes: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 198 | variant_attributes.append({"attribute": d.attribute, "attribute_value": args.get(d.attribute)}) |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 199 | |
| 200 | variant.set("attributes", variant_attributes) |
| 201 | copy_attributes_to_variant(template, variant) |
Prateeksha Singh | 89cec18 | 2017-05-19 12:35:36 +0530 | [diff] [blame] | 202 | make_variant_item_code(template.item_code, template.item_name, variant) |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 203 | |
| 204 | return variant |
| 205 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 206 | |
Prateeksha Singh | 8f43d25 | 2017-11-16 18:06:26 +0530 | [diff] [blame] | 207 | @frappe.whitelist() |
| 208 | def enqueue_multiple_variant_creation(item, args): |
| 209 | # There can be innumerable attribute combinations, enqueue |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 210 | if isinstance(args, str): |
Ameya Shenoy | 935f4a4 | 2018-07-03 10:48:59 +0530 | [diff] [blame] | 211 | variants = json.loads(args) |
| 212 | total_variants = 1 |
| 213 | for key in variants: |
| 214 | total_variants *= len(variants[key]) |
| 215 | if total_variants >= 600: |
Anurag Mishra | 841d852 | 2019-07-03 15:15:08 +0530 | [diff] [blame] | 216 | frappe.throw(_("Please do not create more than 500 items at a time")) |
Ameya Shenoy | 935f4a4 | 2018-07-03 10:48:59 +0530 | [diff] [blame] | 217 | return |
Rushabh Mehta | 8705371 | 2018-08-16 09:22:33 +0530 | [diff] [blame] | 218 | if total_variants < 10: |
| 219 | return create_multiple_variants(item, args) |
| 220 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 221 | frappe.enqueue( |
| 222 | "erpnext.controllers.item_variant.create_multiple_variants", |
| 223 | item=item, |
| 224 | args=args, |
| 225 | now=frappe.flags.in_test, |
| 226 | ) |
| 227 | return "queued" |
| 228 | |
Prateeksha Singh | 8f43d25 | 2017-11-16 18:06:26 +0530 | [diff] [blame] | 229 | |
| 230 | def create_multiple_variants(item, args): |
Rushabh Mehta | 8705371 | 2018-08-16 09:22:33 +0530 | [diff] [blame] | 231 | count = 0 |
Ankush Menat | 8fe5feb | 2021-11-04 19:48:32 +0530 | [diff] [blame] | 232 | if isinstance(args, str): |
Prateeksha Singh | 8f43d25 | 2017-11-16 18:06:26 +0530 | [diff] [blame] | 233 | args = json.loads(args) |
| 234 | |
| 235 | args_set = generate_keyed_value_combinations(args) |
| 236 | |
| 237 | for attribute_values in args_set: |
| 238 | if not get_variant(item, args=attribute_values): |
| 239 | variant = create_variant(item, attribute_values) |
| 240 | variant.save() |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 241 | count += 1 |
Rushabh Mehta | 8705371 | 2018-08-16 09:22:33 +0530 | [diff] [blame] | 242 | |
| 243 | return count |
Prateeksha Singh | 8f43d25 | 2017-11-16 18:06:26 +0530 | [diff] [blame] | 244 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 245 | |
Prateeksha Singh | 8f43d25 | 2017-11-16 18:06:26 +0530 | [diff] [blame] | 246 | def generate_keyed_value_combinations(args): |
| 247 | """ |
| 248 | From this: |
| 249 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 250 | args = {"attr1": ["a", "b", "c"], "attr2": ["1", "2"], "attr3": ["A"]} |
Prateeksha Singh | 8f43d25 | 2017-11-16 18:06:26 +0530 | [diff] [blame] | 251 | |
| 252 | To this: |
| 253 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 254 | [ |
| 255 | {u'attr1': u'a', u'attr2': u'1', u'attr3': u'A'}, |
| 256 | {u'attr1': u'b', u'attr2': u'1', u'attr3': u'A'}, |
| 257 | {u'attr1': u'c', u'attr2': u'1', u'attr3': u'A'}, |
| 258 | {u'attr1': u'a', u'attr2': u'2', u'attr3': u'A'}, |
| 259 | {u'attr1': u'b', u'attr2': u'2', u'attr3': u'A'}, |
| 260 | {u'attr1': u'c', u'attr2': u'2', u'attr3': u'A'} |
| 261 | ] |
Prateeksha Singh | 8f43d25 | 2017-11-16 18:06:26 +0530 | [diff] [blame] | 262 | |
| 263 | """ |
| 264 | # Return empty list if empty |
| 265 | if not args: |
| 266 | return [] |
| 267 | |
| 268 | # Turn `args` into a list of lists of key-value tuples: |
| 269 | # [ |
| 270 | # [(u'attr2', u'1'), (u'attr2', u'2')], |
| 271 | # [(u'attr3', u'A')], |
| 272 | # [(u'attr1', u'a'), (u'attr1', u'b'), (u'attr1', u'c')] |
| 273 | # ] |
| 274 | key_value_lists = [[(key, val) for val in args[key]] for key in args.keys()] |
| 275 | |
| 276 | # Store the first, but as objects |
| 277 | # [{u'attr2': u'1'}, {u'attr2': u'2'}] |
| 278 | results = key_value_lists.pop(0) |
| 279 | results = [{d[0]: d[1]} for d in results] |
| 280 | |
| 281 | # Iterate the remaining |
| 282 | # Take the next list to fuse with existing results |
| 283 | for l in key_value_lists: |
| 284 | new_results = [] |
| 285 | for res in results: |
| 286 | for key_val in l: |
| 287 | # create a new clone of object in result |
| 288 | obj = copy.deepcopy(res) |
| 289 | # to be used with every incoming new value |
| 290 | obj[key_val[0]] = key_val[1] |
| 291 | # and pushed into new_results |
| 292 | new_results.append(obj) |
| 293 | results = new_results |
| 294 | |
| 295 | return results |
| 296 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 297 | |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 298 | def copy_attributes_to_variant(item, variant): |
Rushabh Mehta | a07c43f | 2017-03-21 17:48:34 +0100 | [diff] [blame] | 299 | # copy non no-copy fields |
| 300 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 301 | exclude_fields = [ |
| 302 | "naming_series", |
| 303 | "item_code", |
| 304 | "item_name", |
| 305 | "published_in_website", |
| 306 | "opening_stock", |
| 307 | "variant_of", |
| 308 | "valuation_rate", |
| 309 | ] |
Rushabh Mehta | a07c43f | 2017-03-21 17:48:34 +0100 | [diff] [blame] | 310 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 311 | if item.variant_based_on == "Manufacturer": |
Rushabh Mehta | a07c43f | 2017-03-21 17:48:34 +0100 | [diff] [blame] | 312 | # don't copy manufacturer values if based on part no |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 313 | exclude_fields += ["manufacturer", "manufacturer_part_no"] |
Rushabh Mehta | a07c43f | 2017-03-21 17:48:34 +0100 | [diff] [blame] | 314 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 315 | allow_fields = [d.field_name for d in frappe.get_all("Variant Field", fields=["field_name"])] |
Nabin Hait | 945f502 | 2017-09-29 15:11:50 +0530 | [diff] [blame] | 316 | if "variant_based_on" not in allow_fields: |
| 317 | allow_fields.append("variant_based_on") |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 318 | for field in item.meta.fields: |
tundebabzy | 6015f0f | 2017-07-04 11:13:02 +0100 | [diff] [blame] | 319 | # "Table" is part of `no_value_field` but we shouldn't ignore tables |
Rohit Waghchaure | 0e28fcc | 2017-08-29 18:15:57 +0530 | [diff] [blame] | 320 | if (field.reqd or field.fieldname in allow_fields) and field.fieldname not in exclude_fields: |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 321 | if variant.get(field.fieldname) != item.get(field.fieldname): |
Nabin Hait | 945f502 | 2017-09-29 15:11:50 +0530 | [diff] [blame] | 322 | if field.fieldtype == "Table": |
| 323 | variant.set(field.fieldname, []) |
| 324 | for d in item.get(field.fieldname): |
| 325 | row = copy.deepcopy(d) |
| 326 | if row.get("name"): |
| 327 | row.name = None |
| 328 | variant.append(field.fieldname, row) |
| 329 | else: |
| 330 | variant.set(field.fieldname, item.get(field.fieldname)) |
Nabin Hait | c314485 | 2017-09-28 18:55:40 +0530 | [diff] [blame] | 331 | |
Rohit Waghchaure | 0eef3f6 | 2018-06-13 13:06:25 +0530 | [diff] [blame] | 332 | variant.variant_of = item.name |
Anurag Mishra | 62d58ac | 2019-05-30 14:04:08 +0530 | [diff] [blame] | 333 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 334 | if "description" not in allow_fields: |
hiousi | 38de994 | 2018-04-24 08:40:45 +0200 | [diff] [blame] | 335 | if not variant.description: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 336 | variant.description = "" |
Rucha Mahabal | c6b548b | 2019-09-24 19:17:13 +0530 | [diff] [blame] | 337 | else: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 338 | if item.variant_based_on == "Item Attribute": |
hiousi | 38de994 | 2018-04-24 08:40:45 +0200 | [diff] [blame] | 339 | if variant.attributes: |
Anurag Mishra | 62d58ac | 2019-05-30 14:04:08 +0530 | [diff] [blame] | 340 | attributes_description = item.description + " " |
hiousi | 38de994 | 2018-04-24 08:40:45 +0200 | [diff] [blame] | 341 | for d in variant.attributes: |
| 342 | attributes_description += "<div>" + d.attribute + ": " + cstr(d.attribute_value) + "</div>" |
Prateeksha Singh | 8f43d25 | 2017-11-16 18:06:26 +0530 | [diff] [blame] | 343 | |
hiousi | 38de994 | 2018-04-24 08:40:45 +0200 | [diff] [blame] | 344 | if attributes_description not in variant.description: |
Rucha Mahabal | c6b548b | 2019-09-24 19:17:13 +0530 | [diff] [blame] | 345 | variant.description = attributes_description |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 346 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 347 | |
Prateeksha Singh | 89cec18 | 2017-05-19 12:35:36 +0530 | [diff] [blame] | 348 | def make_variant_item_code(template_item_code, template_item_name, variant): |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 349 | """Uses template's item code and abbreviations to make variant's item code""" |
| 350 | if variant.item_code: |
| 351 | return |
| 352 | |
| 353 | abbreviations = [] |
| 354 | for attr in variant.attributes: |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 355 | item_attribute = frappe.db.sql( |
| 356 | """select i.numeric_values, v.abbr |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 357 | from `tabItem Attribute` i left join `tabItem Attribute Value` v |
| 358 | on (i.name=v.parent) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 359 | where i.name=%(attribute)s and (v.attribute_value=%(attribute_value)s or i.numeric_values = 1)""", |
| 360 | {"attribute": attr.attribute, "attribute_value": attr.attribute_value}, |
| 361 | as_dict=True, |
| 362 | ) |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 363 | |
| 364 | if not item_attribute: |
Faris Ansari | ab14892 | 2019-05-03 13:57:20 +0530 | [diff] [blame] | 365 | continue |
Rushabh Mehta | 95383bb | 2016-07-15 15:11:46 +0530 | [diff] [blame] | 366 | # frappe.throw(_('Invalid attribute {0} {1}').format(frappe.bold(attr.attribute), |
| 367 | # frappe.bold(attr.attribute_value)), title=_('Invalid Attribute'), |
| 368 | # exc=InvalidItemAttributeValueError) |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 369 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 370 | abbr_or_value = ( |
| 371 | cstr(attr.attribute_value) if item_attribute[0].numeric_values else item_attribute[0].abbr |
| 372 | ) |
Rohit Waghchaure | 0169341 | 2017-03-09 17:02:55 +0530 | [diff] [blame] | 373 | abbreviations.append(abbr_or_value) |
Anand Doshi | 099bbbd | 2015-09-02 11:18:32 +0530 | [diff] [blame] | 374 | |
| 375 | if abbreviations: |
Rushabh Mehta | 95383bb | 2016-07-15 15:11:46 +0530 | [diff] [blame] | 376 | variant.item_code = "{0}-{1}".format(template_item_code, "-".join(abbreviations)) |
Prateeksha Singh | 89cec18 | 2017-05-19 12:35:36 +0530 | [diff] [blame] | 377 | variant.item_name = "{0}-{1}".format(template_item_name, "-".join(abbreviations)) |
Rushabh Mehta | d5c6416 | 2017-11-14 15:27:28 +0530 | [diff] [blame] | 378 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 379 | |
Rushabh Mehta | d5c6416 | 2017-11-14 15:27:28 +0530 | [diff] [blame] | 380 | @frappe.whitelist() |
| 381 | def create_variant_doc_for_quick_entry(template, args): |
| 382 | variant_based_on = frappe.db.get_value("Item", template, "variant_based_on") |
| 383 | args = json.loads(args) |
| 384 | if variant_based_on == "Manufacturer": |
| 385 | variant = get_variant(template, **args) |
| 386 | else: |
| 387 | existing_variant = get_variant(template, args) |
| 388 | if existing_variant: |
| 389 | return existing_variant |
| 390 | else: |
| 391 | variant = create_variant(template, args=args) |
| 392 | variant.name = variant.item_code |
| 393 | validate_item_variant_attributes(variant, args) |
| 394 | return variant.as_dict() |