blob: 1eee9eaa9d2c7114f209fa328b871ce78d278fc6 [file] [log] [blame]
Anand Doshi099bbbd2015-09-02 11:18:32 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
2# License: GNU General Public License v3. See license.txt
3
Chillar Anand915b3432021-09-02 16:44:59 +05304
5import copy
6import json
7
Anand Doshi099bbbd2015-09-02 11:18:32 +05308import frappe
9from frappe import _
10from frappe.utils import cstr, flt
Achilles Rasquinha56b2e122018-02-13 14:42:40 +053011
Sabu Siyadf900a782023-10-17 17:05:44 +053012from erpnext.utilities.product import get_item_codes_by_attributes
13
Chillar Anand915b3432021-09-02 16:44:59 +053014
Ankush Menat494bd9e2022-03-28 18:52:46 +053015class ItemVariantExistsError(frappe.ValidationError):
16 pass
17
18
19class InvalidItemAttributeValueError(frappe.ValidationError):
20 pass
21
22
23class ItemTemplateCannotHaveStock(frappe.ValidationError):
24 pass
25
Anand Doshi099bbbd2015-09-02 11:18:32 +053026
27@frappe.whitelist()
Ankush Menat494bd9e2022-03-28 18:52:46 +053028def get_variant(template, args=None, variant=None, manufacturer=None, manufacturer_part_no=None):
Sabu Siyadf900a782023-10-17 17:05:44 +053029 """
30 Validates Attributes and their Values, then looks for an exactly
Ankush Menat494bd9e2022-03-28 18:52:46 +053031 matching Item Variant
Anand Doshi099bbbd2015-09-02 11:18:32 +053032
Ankush Menat494bd9e2022-03-28 18:52:46 +053033 :param item: Template Item
34 :param args: A dictionary with "Attribute" as key and "Attribute Value" as value
Anand Doshi099bbbd2015-09-02 11:18:32 +053035 """
Ankush Menat494bd9e2022-03-28 18:52:46 +053036 item_template = frappe.get_doc("Item", template)
Anand Doshi099bbbd2015-09-02 11:18:32 +053037
Ankush Menat494bd9e2022-03-28 18:52:46 +053038 if item_template.variant_based_on == "Manufacturer" and manufacturer:
39 return make_variant_based_on_manufacturer(item_template, manufacturer, manufacturer_part_no)
Anand Doshi099bbbd2015-09-02 11:18:32 +053040
Sabu Siyadf900a782023-10-17 17:05:44 +053041 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 Mehtaa07c43f2017-03-21 17:48:34 +010048
Ankush Menat494bd9e2022-03-28 18:52:46 +053049
Rushabh Mehtaa07c43f2017-03-21 17:48:34 +010050def make_variant_based_on_manufacturer(template, manufacturer, manufacturer_part_no):
Ankush Menat494bd9e2022-03-28 18:52:46 +053051 """Make and return a new variant based on manufacturer and
52 manufacturer part no"""
Rushabh Mehtaa07c43f2017-03-21 17:48:34 +010053 from frappe.model.naming import append_number_if_name_exists
54
Ankush Menat494bd9e2022-03-28 18:52:46 +053055 variant = frappe.new_doc("Item")
Rushabh Mehtaa07c43f2017-03-21 17:48:34 +010056
57 copy_attributes_to_variant(template, variant)
58
Rohit Waghchaured7e6b832024-01-17 20:52:16 +053059 variant_name = f"{template.name} - {manufacturer}"
60 if manufacturer_part_no:
61 variant_name += f" - {manufacturer_part_no}"
62
63 variant.item_code = append_number_if_name_exists("Item", variant_name)
mergify[bot]4aa960b2023-12-19 14:59:33 +053064 variant.flags.ignore_mandatory = True
65 variant.save()
66
67 if not frappe.db.exists(
68 "Item Manufacturer", {"item_code": variant.name, "manufacturer": manufacturer}
69 ):
70 manufacturer_doc = frappe.new_doc("Item Manufacturer")
71 manufacturer_doc.update(
72 {
73 "item_code": variant.name,
74 "manufacturer": manufacturer,
75 "manufacturer_part_no": manufacturer_part_no,
76 }
77 )
78
79 manufacturer_doc.flags.ignore_mandatory = True
80 manufacturer_doc.save(ignore_permissions=True)
Rushabh Mehtaa07c43f2017-03-21 17:48:34 +010081
82 return variant
Anand Doshi099bbbd2015-09-02 11:18:32 +053083
Ankush Menat494bd9e2022-03-28 18:52:46 +053084
Rushabh Mehtab8bdfbc2016-07-15 12:40:47 +053085def validate_item_variant_attributes(item, args=None):
Ankush Menat8fe5feb2021-11-04 19:48:32 +053086 if isinstance(item, str):
Ankush Menat494bd9e2022-03-28 18:52:46 +053087 item = frappe.get_doc("Item", item)
Rushabh Mehta95383bb2016-07-15 15:11:46 +053088
Rushabh Mehtab8bdfbc2016-07-15 12:40:47 +053089 if not args:
Ankush Menat494bd9e2022-03-28 18:52:46 +053090 args = {d.attribute.lower(): d.attribute_value for d in item.attributes}
Rushabh Mehtaaed79e92016-06-02 17:49:16 +053091
Nabin Haitaaf378e2017-12-13 18:40:52 +053092 attribute_values, numeric_values = get_attribute_values(item)
Rushabh Mehtaaed79e92016-06-02 17:49:16 +053093
Anand Doshi099bbbd2015-09-02 11:18:32 +053094 for attribute, value in args.items():
Rushabh Mehta95383bb2016-07-15 15:11:46 +053095 if not value:
96 continue
97
98 if attribute.lower() in numeric_values:
99 numeric_attribute = numeric_values[attribute.lower()]
Rohit Waghchaure6500ef42016-12-15 18:24:32 +0530100 validate_is_incremental(numeric_attribute, attribute, value, item.name)
Anand Doshi099bbbd2015-09-02 11:18:32 +0530101
Rohit Waghchaure6500ef42016-12-15 18:24:32 +0530102 else:
103 attributes_list = attribute_values.get(attribute.lower(), [])
marination0df7f0f2020-06-01 11:56:33 +0530104 validate_item_attribute_value(attributes_list, attribute, value, item.name, from_variant=True)
Anand Doshi099bbbd2015-09-02 11:18:32 +0530105
Ankush Menat494bd9e2022-03-28 18:52:46 +0530106
Rohit Waghchaure6500ef42016-12-15 18:24:32 +0530107def validate_is_incremental(numeric_attribute, attribute, value, item):
108 from_range = numeric_attribute.from_range
109 to_range = numeric_attribute.to_range
110 increment = numeric_attribute.increment
Anand Doshi099bbbd2015-09-02 11:18:32 +0530111
Rohit Waghchaure6500ef42016-12-15 18:24:32 +0530112 if increment == 0:
113 # defensive validation to prevent ZeroDivisionError
114 frappe.throw(_("Increment for Attribute {0} cannot be 0").format(attribute))
Anand Doshi099bbbd2015-09-02 11:18:32 +0530115
Rohit Waghchaure6500ef42016-12-15 18:24:32 +0530116 is_in_range = from_range <= flt(value) <= to_range
117 precision = max(len(cstr(v).split(".")[-1].rstrip("0")) for v in (value, increment))
Ankush Menat494bd9e2022-03-28 18:52:46 +0530118 # avoid precision error by rounding the remainder
Rohit Waghchaure6500ef42016-12-15 18:24:32 +0530119 remainder = flt((flt(value) - from_range) % increment, precision)
Anand Doshi099bbbd2015-09-02 11:18:32 +0530120
Ankush Menat494bd9e2022-03-28 18:52:46 +0530121 is_incremental = remainder == 0 or remainder == increment
Rushabh Mehtaaed79e92016-06-02 17:49:16 +0530122
Rohit Waghchaure6500ef42016-12-15 18:24:32 +0530123 if not (is_in_range and is_incremental):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530124 frappe.throw(
125 _(
126 "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}"
127 ).format(attribute, from_range, to_range, increment, item),
128 InvalidItemAttributeValueError,
129 title=_("Invalid Attribute"),
130 )
Rohit Waghchaure6500ef42016-12-15 18:24:32 +0530131
Ankush Menat494bd9e2022-03-28 18:52:46 +0530132
133def validate_item_attribute_value(
134 attributes_list, attribute, attribute_value, item, from_variant=True
135):
136 allow_rename_attribute_value = frappe.db.get_single_value(
137 "Item Variant Settings", "allow_rename_attribute_value"
138 )
Vishal Dhayagude668ec252018-03-07 15:31:08 +0530139 if allow_rename_attribute_value:
140 pass
141 elif attribute_value not in attributes_list:
marination0df7f0f2020-06-01 11:56:33 +0530142 if from_variant:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530143 frappe.throw(
144 _("{0} is not a valid Value for Attribute {1} of Item {2}.").format(
145 frappe.bold(attribute_value), frappe.bold(attribute), frappe.bold(item)
146 ),
147 InvalidItemAttributeValueError,
148 title=_("Invalid Value"),
149 )
marination0df7f0f2020-06-01 11:56:33 +0530150 else:
marination91dfd002020-06-17 19:05:40 +0530151 msg = _("The value {0} is already assigned to an existing Item {1}.").format(
Ankush Menat494bd9e2022-03-28 18:52:46 +0530152 frappe.bold(attribute_value), frappe.bold(item)
153 )
154 msg += "<br>" + _(
155 "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings."
156 ).format(frappe.bold("Allow Rename Attribute Value"))
marination0df7f0f2020-06-01 11:56:33 +0530157
Ankush Menat494bd9e2022-03-28 18:52:46 +0530158 frappe.throw(msg, InvalidItemAttributeValueError, title=_("Edit Not Allowed"))
159
Anand Doshi099bbbd2015-09-02 11:18:32 +0530160
Nabin Haitaaf378e2017-12-13 18:40:52 +0530161def get_attribute_values(item):
Rushabh Mehtab8bdfbc2016-07-15 12:40:47 +0530162 if not frappe.flags.attribute_values:
163 attribute_values = {}
Rushabh Mehta95383bb2016-07-15 15:11:46 +0530164 numeric_values = {}
Rushabh Mehtab8bdfbc2016-07-15 12:40:47 +0530165 for t in frappe.get_all("Item Attribute Value", fields=["parent", "attribute_value"]):
Rushabh Mehta95383bb2016-07-15 15:11:46 +0530166 attribute_values.setdefault(t.parent.lower(), []).append(t.attribute_value)
167
Ankush Menat494bd9e2022-03-28 18:52:46 +0530168 for t in frappe.get_all(
169 "Item Variant Attribute",
Nabin Haitaaf378e2017-12-13 18:40:52 +0530170 fields=["attribute", "from_range", "to_range", "increment"],
Ankush Menat494bd9e2022-03-28 18:52:46 +0530171 filters={"numeric_values": 1, "parent": item.variant_of},
172 ):
Nabin Haitaaf378e2017-12-13 18:40:52 +0530173 numeric_values[t.attribute.lower()] = t
Rushabh Mehtab8bdfbc2016-07-15 12:40:47 +0530174
175 frappe.flags.attribute_values = attribute_values
Rushabh Mehta95383bb2016-07-15 15:11:46 +0530176 frappe.flags.numeric_values = numeric_values
Rushabh Mehtab8bdfbc2016-07-15 12:40:47 +0530177
Rushabh Mehta95383bb2016-07-15 15:11:46 +0530178 return frappe.flags.attribute_values, frappe.flags.numeric_values
Rushabh Mehtab8bdfbc2016-07-15 12:40:47 +0530179
Ankush Menat494bd9e2022-03-28 18:52:46 +0530180
Nabin Hait6b068e12015-12-31 13:20:32 +0530181def find_variant(template, args, variant_item_code=None):
Ankush Menat494bd9e2022-03-28 18:52:46 +0530182 possible_variants = [
183 i for i in get_item_codes_by_attributes(args, template) if i != variant_item_code
184 ]
Anand Doshi099bbbd2015-09-02 11:18:32 +0530185
186 for variant in possible_variants:
187 variant = frappe.get_doc("Item", variant)
188
189 if len(args.keys()) == len(variant.get("attributes")):
190 # has the same number of attributes and values
191 # assuming no duplication as per the validation in Item
192 match_count = 0
193
194 for attribute, value in args.items():
195 for row in variant.attributes:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530196 if row.attribute == attribute and row.attribute_value == cstr(value):
Anand Doshi099bbbd2015-09-02 11:18:32 +0530197 # this row matches
198 match_count += 1
199 break
200
201 if match_count == len(args.keys()):
202 return variant.name
203
Ankush Menat494bd9e2022-03-28 18:52:46 +0530204
Anand Doshi099bbbd2015-09-02 11:18:32 +0530205@frappe.whitelist()
206def create_variant(item, args):
Ankush Menat8fe5feb2021-11-04 19:48:32 +0530207 if isinstance(args, str):
Anand Doshi099bbbd2015-09-02 11:18:32 +0530208 args = json.loads(args)
209
210 template = frappe.get_doc("Item", item)
211 variant = frappe.new_doc("Item")
Ankush Menat494bd9e2022-03-28 18:52:46 +0530212 variant.variant_based_on = "Item Attribute"
Anand Doshi099bbbd2015-09-02 11:18:32 +0530213 variant_attributes = []
214
215 for d in template.attributes:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530216 variant_attributes.append({"attribute": d.attribute, "attribute_value": args.get(d.attribute)})
Anand Doshi099bbbd2015-09-02 11:18:32 +0530217
218 variant.set("attributes", variant_attributes)
219 copy_attributes_to_variant(template, variant)
Prateeksha Singh89cec182017-05-19 12:35:36 +0530220 make_variant_item_code(template.item_code, template.item_name, variant)
Anand Doshi099bbbd2015-09-02 11:18:32 +0530221
222 return variant
223
Ankush Menat494bd9e2022-03-28 18:52:46 +0530224
Prateeksha Singh8f43d252017-11-16 18:06:26 +0530225@frappe.whitelist()
226def enqueue_multiple_variant_creation(item, args):
227 # There can be innumerable attribute combinations, enqueue
Ankush Menat8fe5feb2021-11-04 19:48:32 +0530228 if isinstance(args, str):
Ameya Shenoy935f4a42018-07-03 10:48:59 +0530229 variants = json.loads(args)
230 total_variants = 1
231 for key in variants:
232 total_variants *= len(variants[key])
233 if total_variants >= 600:
Anurag Mishra841d8522019-07-03 15:15:08 +0530234 frappe.throw(_("Please do not create more than 500 items at a time"))
Ameya Shenoy935f4a42018-07-03 10:48:59 +0530235 return
Rushabh Mehta87053712018-08-16 09:22:33 +0530236 if total_variants < 10:
237 return create_multiple_variants(item, args)
238 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530239 frappe.enqueue(
240 "erpnext.controllers.item_variant.create_multiple_variants",
241 item=item,
242 args=args,
243 now=frappe.flags.in_test,
244 )
245 return "queued"
246
Prateeksha Singh8f43d252017-11-16 18:06:26 +0530247
248def create_multiple_variants(item, args):
Rushabh Mehta87053712018-08-16 09:22:33 +0530249 count = 0
Ankush Menat8fe5feb2021-11-04 19:48:32 +0530250 if isinstance(args, str):
Prateeksha Singh8f43d252017-11-16 18:06:26 +0530251 args = json.loads(args)
252
253 args_set = generate_keyed_value_combinations(args)
254
255 for attribute_values in args_set:
256 if not get_variant(item, args=attribute_values):
257 variant = create_variant(item, attribute_values)
258 variant.save()
Ankush Menat494bd9e2022-03-28 18:52:46 +0530259 count += 1
Rushabh Mehta87053712018-08-16 09:22:33 +0530260
261 return count
Prateeksha Singh8f43d252017-11-16 18:06:26 +0530262
Ankush Menat494bd9e2022-03-28 18:52:46 +0530263
Prateeksha Singh8f43d252017-11-16 18:06:26 +0530264def generate_keyed_value_combinations(args):
265 """
266 From this:
267
Ankush Menat494bd9e2022-03-28 18:52:46 +0530268 args = {"attr1": ["a", "b", "c"], "attr2": ["1", "2"], "attr3": ["A"]}
Prateeksha Singh8f43d252017-11-16 18:06:26 +0530269
270 To this:
271
Ankush Menat494bd9e2022-03-28 18:52:46 +0530272 [
273 {u'attr1': u'a', u'attr2': u'1', u'attr3': u'A'},
274 {u'attr1': u'b', u'attr2': u'1', u'attr3': u'A'},
275 {u'attr1': u'c', u'attr2': u'1', u'attr3': u'A'},
276 {u'attr1': u'a', u'attr2': u'2', u'attr3': u'A'},
277 {u'attr1': u'b', u'attr2': u'2', u'attr3': u'A'},
278 {u'attr1': u'c', u'attr2': u'2', u'attr3': u'A'}
279 ]
Prateeksha Singh8f43d252017-11-16 18:06:26 +0530280
281 """
282 # Return empty list if empty
283 if not args:
284 return []
285
286 # Turn `args` into a list of lists of key-value tuples:
287 # [
288 # [(u'attr2', u'1'), (u'attr2', u'2')],
289 # [(u'attr3', u'A')],
290 # [(u'attr1', u'a'), (u'attr1', u'b'), (u'attr1', u'c')]
291 # ]
292 key_value_lists = [[(key, val) for val in args[key]] for key in args.keys()]
293
294 # Store the first, but as objects
295 # [{u'attr2': u'1'}, {u'attr2': u'2'}]
296 results = key_value_lists.pop(0)
297 results = [{d[0]: d[1]} for d in results]
298
299 # Iterate the remaining
300 # Take the next list to fuse with existing results
301 for l in key_value_lists:
302 new_results = []
303 for res in results:
304 for key_val in l:
305 # create a new clone of object in result
306 obj = copy.deepcopy(res)
307 # to be used with every incoming new value
308 obj[key_val[0]] = key_val[1]
309 # and pushed into new_results
310 new_results.append(obj)
311 results = new_results
312
313 return results
314
Ankush Menat494bd9e2022-03-28 18:52:46 +0530315
Anand Doshi099bbbd2015-09-02 11:18:32 +0530316def copy_attributes_to_variant(item, variant):
Rushabh Mehtaa07c43f2017-03-21 17:48:34 +0100317 # copy non no-copy fields
318
Ankush Menat494bd9e2022-03-28 18:52:46 +0530319 exclude_fields = [
320 "naming_series",
321 "item_code",
322 "item_name",
323 "published_in_website",
324 "opening_stock",
325 "variant_of",
326 "valuation_rate",
327 ]
Rushabh Mehtaa07c43f2017-03-21 17:48:34 +0100328
Ankush Menat494bd9e2022-03-28 18:52:46 +0530329 if item.variant_based_on == "Manufacturer":
Rushabh Mehtaa07c43f2017-03-21 17:48:34 +0100330 # don't copy manufacturer values if based on part no
Ankush Menat494bd9e2022-03-28 18:52:46 +0530331 exclude_fields += ["manufacturer", "manufacturer_part_no"]
Rushabh Mehtaa07c43f2017-03-21 17:48:34 +0100332
Ankush Menat494bd9e2022-03-28 18:52:46 +0530333 allow_fields = [d.field_name for d in frappe.get_all("Variant Field", fields=["field_name"])]
Nabin Hait945f5022017-09-29 15:11:50 +0530334 if "variant_based_on" not in allow_fields:
335 allow_fields.append("variant_based_on")
Anand Doshi099bbbd2015-09-02 11:18:32 +0530336 for field in item.meta.fields:
tundebabzy6015f0f2017-07-04 11:13:02 +0100337 # "Table" is part of `no_value_field` but we shouldn't ignore tables
Rohit Waghchaure0e28fcc2017-08-29 18:15:57 +0530338 if (field.reqd or field.fieldname in allow_fields) and field.fieldname not in exclude_fields:
Anand Doshi099bbbd2015-09-02 11:18:32 +0530339 if variant.get(field.fieldname) != item.get(field.fieldname):
Nabin Hait945f5022017-09-29 15:11:50 +0530340 if field.fieldtype == "Table":
341 variant.set(field.fieldname, [])
342 for d in item.get(field.fieldname):
343 row = copy.deepcopy(d)
344 if row.get("name"):
345 row.name = None
346 variant.append(field.fieldname, row)
347 else:
348 variant.set(field.fieldname, item.get(field.fieldname))
Nabin Haitc3144852017-09-28 18:55:40 +0530349
Rohit Waghchaure0eef3f62018-06-13 13:06:25 +0530350 variant.variant_of = item.name
Anurag Mishra62d58ac2019-05-30 14:04:08 +0530351
Ankush Menat494bd9e2022-03-28 18:52:46 +0530352 if "description" not in allow_fields:
hiousi38de9942018-04-24 08:40:45 +0200353 if not variant.description:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530354 variant.description = ""
Rucha Mahabalc6b548b2019-09-24 19:17:13 +0530355 else:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530356 if item.variant_based_on == "Item Attribute":
hiousi38de9942018-04-24 08:40:45 +0200357 if variant.attributes:
Anurag Mishra62d58ac2019-05-30 14:04:08 +0530358 attributes_description = item.description + " "
hiousi38de9942018-04-24 08:40:45 +0200359 for d in variant.attributes:
360 attributes_description += "<div>" + d.attribute + ": " + cstr(d.attribute_value) + "</div>"
Prateeksha Singh8f43d252017-11-16 18:06:26 +0530361
hiousi38de9942018-04-24 08:40:45 +0200362 if attributes_description not in variant.description:
Rucha Mahabalc6b548b2019-09-24 19:17:13 +0530363 variant.description = attributes_description
Anand Doshi099bbbd2015-09-02 11:18:32 +0530364
Ankush Menat494bd9e2022-03-28 18:52:46 +0530365
Prateeksha Singh89cec182017-05-19 12:35:36 +0530366def make_variant_item_code(template_item_code, template_item_name, variant):
Anand Doshi099bbbd2015-09-02 11:18:32 +0530367 """Uses template's item code and abbreviations to make variant's item code"""
368 if variant.item_code:
369 return
370
371 abbreviations = []
372 for attr in variant.attributes:
Ankush Menat494bd9e2022-03-28 18:52:46 +0530373 item_attribute = frappe.db.sql(
374 """select i.numeric_values, v.abbr
Anand Doshi099bbbd2015-09-02 11:18:32 +0530375 from `tabItem Attribute` i left join `tabItem Attribute Value` v
376 on (i.name=v.parent)
Ankush Menat494bd9e2022-03-28 18:52:46 +0530377 where i.name=%(attribute)s and (v.attribute_value=%(attribute_value)s or i.numeric_values = 1)""",
378 {"attribute": attr.attribute, "attribute_value": attr.attribute_value},
379 as_dict=True,
380 )
Anand Doshi099bbbd2015-09-02 11:18:32 +0530381
382 if not item_attribute:
Faris Ansariab148922019-05-03 13:57:20 +0530383 continue
Rushabh Mehta95383bb2016-07-15 15:11:46 +0530384 # frappe.throw(_('Invalid attribute {0} {1}').format(frappe.bold(attr.attribute),
385 # frappe.bold(attr.attribute_value)), title=_('Invalid Attribute'),
386 # exc=InvalidItemAttributeValueError)
Anand Doshi099bbbd2015-09-02 11:18:32 +0530387
Ankush Menat494bd9e2022-03-28 18:52:46 +0530388 abbr_or_value = (
389 cstr(attr.attribute_value) if item_attribute[0].numeric_values else item_attribute[0].abbr
390 )
Rohit Waghchaure01693412017-03-09 17:02:55 +0530391 abbreviations.append(abbr_or_value)
Anand Doshi099bbbd2015-09-02 11:18:32 +0530392
393 if abbreviations:
Rushabh Mehta95383bb2016-07-15 15:11:46 +0530394 variant.item_code = "{0}-{1}".format(template_item_code, "-".join(abbreviations))
Prateeksha Singh89cec182017-05-19 12:35:36 +0530395 variant.item_name = "{0}-{1}".format(template_item_name, "-".join(abbreviations))
Rushabh Mehtad5c64162017-11-14 15:27:28 +0530396
Ankush Menat494bd9e2022-03-28 18:52:46 +0530397
Rushabh Mehtad5c64162017-11-14 15:27:28 +0530398@frappe.whitelist()
399def create_variant_doc_for_quick_entry(template, args):
400 variant_based_on = frappe.db.get_value("Item", template, "variant_based_on")
401 args = json.loads(args)
402 if variant_based_on == "Manufacturer":
403 variant = get_variant(template, **args)
404 else:
405 existing_variant = get_variant(template, args)
406 if existing_variant:
407 return existing_variant
408 else:
409 variant = create_variant(template, args=args)
410 variant.name = variant.item_code
411 validate_item_variant_attributes(variant, args)
412 return variant.as_dict()