efb037b566
BREAKING CHANGE: remove Shopify integration. The integration is moved to a separate app with additional enhancements. The app is still FOSS and licensed under the same license as ERPNext. Any data migration required is taken care of after installing the app and enabling it. New app: https://github.com/frappe/ecommerce_integrations
11 lines
276 B
Python
11 lines
276 B
Python
import click
|
|
|
|
|
|
def execute():
|
|
|
|
click.secho(
|
|
"Shopify Integration is moved to a separate app and will be removed from ERPNext in version-14.\n"
|
|
"Please install the app to continue using the integration: https://github.com/frappe/ecommerce_integrations",
|
|
fg="yellow",
|
|
)
|