Skip to content

Commit

Permalink
Merge branch 'version-15' into version-15-hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitwaghchaure authored Dec 11, 2024
2 parents 20186fb + 925eb44 commit 44f798c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion erpnext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import frappe
from frappe.utils.user import is_website_user

__version__ = "15.39.6"
__version__ = "15.45.4"


def get_default_company(user=None):
Expand Down
9 changes: 9 additions & 0 deletions erpnext/manufacturing/doctype/bom/bom.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,15 @@ frappe.ui.form.on("BOM", {
});
}

if (!skip_qty_field) {
fields.push({
fieldtype: "Check",
label: __("Use Multi-Level BOM"),
fieldname: "use_multi_level_bom",
default: 1,
});
}

if (!skip_qty_field) {
fields.push({
fieldtype: "Float",
Expand Down

0 comments on commit 44f798c

Please sign in to comment.