Removed deprecated hub functions

This commit is contained in:
Nabin Hait 2017-10-05 13:10:32 +05:30
parent d6d99e0d59
commit 26507d7867
2 changed files with 3 additions and 5 deletions

View File

@ -208,9 +208,7 @@ scheduler_events = {
"erpnext.stock.doctype.serial_no.serial_no.update_maintenance_status",
"erpnext.buying.doctype.supplier_scorecard.supplier_scorecard.refresh_scorecards",
"erpnext.setup.doctype.company.company.cache_companies_monthly_sales_history",
"erpnext.manufacturing.doctype.bom_update_tool.bom_update_tool.update_latest_price_in_all_boms",
"erpnext.hub_node.doctype.hub_settings.hub_settings.sync_item_fields_at_hub",
"erpnext.hub_node.update_local_hub_categories"
"erpnext.manufacturing.doctype.bom_update_tool.bom_update_tool.update_latest_price_in_all_boms"
]
}

View File

@ -10,8 +10,8 @@ from frappe import _
from erpnext.utilities.product import get_price, get_qty_in_stock
from six import string_types
hub_url = "http://erpnext.hub:8000"
# hub_url = "https://hub.erpnext.org"
# hub_url = "http://erpnext.hub:8000"
hub_url = "https://hub.erpnext.org"
# hub_url = "http://192.168.29.145:3000"
class HubSetupError(frappe.ValidationError): pass