diff --git a/erpnext/public/js/erpnext-web.bundle.js b/erpnext/public/js/erpnext-web.bundle.js index 576abd2686f..cbe899dc060 100644 --- a/erpnext/public/js/erpnext-web.bundle.js +++ b/erpnext/public/js/erpnext-web.bundle.js @@ -1,7 +1,6 @@ import "./website_utils"; import "./wishlist"; import "./shopping_cart"; -import "./cart"; import "./customer_reviews"; import "../../e_commerce/product_ui/list"; import "../../e_commerce/product_ui/views"; diff --git a/erpnext/templates/pages/cart.html b/erpnext/templates/pages/cart.html index 89bc2993b78..2b7d9e35239 100644 --- a/erpnext/templates/pages/cart.html +++ b/erpnext/templates/pages/cart.html @@ -127,4 +127,6 @@ {% block base_scripts %} {{ include_script("frappe-web.bundle.js") }} +{{ include_script("controls.bundle.js") }} +{{ include_script("dialog.bundle.js") }} {% endblock %} diff --git a/erpnext/public/js/cart.js b/erpnext/templates/pages/cart.js similarity index 98% rename from erpnext/public/js/cart.js rename to erpnext/templates/pages/cart.js index 14a5ac3a4ca..fb2d159dcf9 100644 --- a/erpnext/public/js/cart.js +++ b/erpnext/templates/pages/cart.js @@ -1,10 +1,7 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt -import "../../../../frappe/frappe/public/js/controls.bundle"; -import "../../../../frappe/frappe/public/js/dialog.bundle"; -// js inside blog page -// shopping cart +// JS exclusive to /cart page frappe.provide("erpnext.e_commerce.shopping_cart"); var shopping_cart = erpnext.e_commerce.shopping_cart;