Skip to content

Commit

Permalink
fix: convert default_item_manufacturer to link field (frappe#30835) (f…
Browse files Browse the repository at this point in the history
…rappe#30866)

(cherry picked from commit dcda556)

Co-authored-by: Ankush Menat <ankush@frappe.io>
  • Loading branch information
mergify[bot] and ankush authored May 2, 2022
1 parent 7c0069c commit 37fad7e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
1 change: 1 addition & 0 deletions erpnext/patches.txt
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ erpnext.patches.v13_0.rename_non_profit_fields
erpnext.patches.v13_0.enable_ksa_vat_docs #1
erpnext.patches.v13_0.create_gst_custom_fields_in_quotation
erpnext.patches.v13_0.update_expense_claim_status_for_paid_advances
erpnext.patches.v13_0.change_default_item_manufacturer_fieldtype
erpnext.patches.v13_0.set_return_against_in_pos_invoice_references
erpnext.patches.v13_0.copy_custom_field_filters_to_website_item
erpnext.patches.v13_0.education_deprecation_warning
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import frappe


def execute():

# Erase all default item manufacturers that dont exist.
item = frappe.qb.DocType("Item")
manufacturer = frappe.qb.DocType("Manufacturer")

(
frappe.qb.update(item)
.set(item.default_item_manufacturer, None)
.left_join(manufacturer)
.on(item.default_item_manufacturer == manufacturer.name)
.where(manufacturer.name.isnull() & item.default_item_manufacturer.isnotnull())
).run()
5 changes: 3 additions & 2 deletions erpnext/stock/doctype/item/item.json
Original file line number Diff line number Diff line change
Expand Up @@ -918,8 +918,9 @@
},
{
"fieldname": "default_item_manufacturer",
"fieldtype": "Data",
"fieldtype": "Link",
"label": "Default Item Manufacturer",
"options": "Manufacturer",
"read_only": 1
},
{
Expand Down Expand Up @@ -954,7 +955,7 @@
"image_field": "image",
"index_web_pages_for_search": 1,
"links": [],
"modified": "2021-12-14 04:13:16.857534",
"modified": "2022-04-28 04:52:10.272256",
"modified_by": "Administrator",
"module": "Stock",
"name": "Item",
Expand Down

0 comments on commit 37fad7e

Please sign in to comment.