diff --git a/theo/config.py b/theo/config.py index 420353f..ceafd14 100644 --- a/theo/config.py +++ b/theo/config.py @@ -41,15 +41,21 @@ class TheoConfig(ConfigExtension): # Theo comes with its own menu for web app config.setdefault('tailbone', 'menus', 'theo.web.menus') + # do we integrate w/ CORE-POS? + if integrate_corepos(config): + config.setdefault('rattail', 'model', 'theo.db.model_corepos') + config.setdefault('rattail.mail', 'emails', 'theo.emails.theo, theo.emails.corepos') + config.setdefault('rattail.importing', 'versions.handler', 'theo.importing.versions_corepos:FromTheoToTheoVersions') + # do we integrate w/ Catapult? - if integrate_catapult(config): + elif integrate_catapult(config): config.setdefault('rattail', 'model', 'theo.db.model_catapult') + # config.setdefault('rattail.mail', 'emails', 'theo.emails.theo, theo.emails.catapult') + config.setdefault('rattail.mail', 'emails', 'theo.emails.theo') config.setdefault('rattail.importing', 'versions.handler', 'theo.importing.versions_catapult:FromTheoToTheoVersions') - # do we integrate w/ CORE-POS? - elif integrate_corepos(config): - config.setdefault('rattail', 'model', 'theo.db.model_corepos') - config.setdefault('rattail.importing', 'versions.handler', 'theo.importing.versions_corepos:FromTheoToTheoVersions') + else: # no integration + config.setdefault('rattail.mail', 'emails', 'theo.emails.theo') def integrate_catapult(config): diff --git a/theo/emails/__init__.py b/theo/emails/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/theo/emails/corepos.py b/theo/emails/corepos.py new file mode 100644 index 0000000..c7a1f74 --- /dev/null +++ b/theo/emails/corepos.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8; -*- +################################################################################ +# +# Rattail -- Retail Software Framework +# Copyright © 2010-2020 Lance Edgar +# +# This file is part of Rattail. +# +# Rattail is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# Rattail is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# Rattail. If not, see . +# +################################################################################ +""" +Theo email profile settings +""" + +from rattail_corepos.emails import (rattail_import_corepos_api_updates, + rattail_import_corepos_db_updates) diff --git a/theo/emails/theo.py b/theo/emails/theo.py new file mode 100644 index 0000000..0b37f28 --- /dev/null +++ b/theo/emails/theo.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8; -*- +################################################################################ +# +# Rattail -- Retail Software Framework +# Copyright © 2010-2020 Lance Edgar +# +# This file is part of Rattail. +# +# Rattail is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# Rattail is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# Rattail. If not, see . +# +################################################################################ +""" +Theo email profile settings +""" + +# bring in some common config from rattail +from rattail.emails import (upgrade_failure, + upgrade_success, + user_feedback)