Add custom email profile settings

This commit is contained in:
Lance Edgar 2020-09-19 14:09:36 -05:00
parent 9a723fa924
commit a40069d151
4 changed files with 69 additions and 5 deletions

View file

@ -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):

0
theo/emails/__init__.py Normal file
View file

28
theo/emails/corepos.py Normal file
View file

@ -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 <http://www.gnu.org/licenses/>.
#
################################################################################
"""
Theo email profile settings
"""
from rattail_corepos.emails import (rattail_import_corepos_api_updates,
rattail_import_corepos_db_updates)

30
theo/emails/theo.py Normal file
View file

@ -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 <http://www.gnu.org/licenses/>.
#
################################################################################
"""
Theo email profile settings
"""
# bring in some common config from rattail
from rattail.emails import (upgrade_failure,
upgrade_success,
user_feedback)