shopping cart fix
diff --git a/erpnext/templates/pages/shipments.py b/erpnext/templates/pages/shipments.py
index fe28c7e..350b3e4 100644
--- a/erpnext/templates/pages/shipments.py
+++ b/erpnext/templates/pages/shipments.py
@@ -3,7 +3,7 @@
from __future__ import unicode_literals
import frappe
-from shopping_cart.templates.utils import get_currency_context
+from erpnext.templates.utils import get_currency_context
no_cache = 1
no_sitemap = 1
@@ -12,7 +12,7 @@
shipments_context = get_currency_context()
shipments_context.update({
"title": "Shipments",
- "method": "shopping_cart.templates.pages.shipments.get_shipments",
+ "method": "erpnext.templates.pages.shipments.get_shipments",
"icon": "icon-truck",
"empty_list_message": "No Shipments Found",
"page": "shipment"
@@ -21,5 +21,5 @@
@frappe.whitelist()
def get_shipments(start=0):
- from shopping_cart.templates.utils import get_transaction_list
+ from erpnext.templates.utils import get_transaction_list
return get_transaction_list("Delivery Note", start)