This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
80 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# This file is part of SENAITE.HEALTH. | ||
# | ||
# SENAITE.HEALTH 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, version 2. | ||
# | ||
# This program 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 | ||
# this program; if not, write to the Free Software Foundation, Inc., 51 | ||
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
# | ||
# Copyright 2018-2019 by it's authors. | ||
# Some rights reserved, see README and LICENSE. | ||
|
||
from bika.health import logger | ||
from bika.health.catalog.patient_catalog import CATALOG_PATIENTS | ||
from bika.health.config import PROJECTNAME | ||
from bika.health.setuphandlers import setup_id_formatting, \ | ||
setup_content_actions, remove_action, setup_roles_permissions, \ | ||
setup_batches_ownership | ||
from bika.health.subscribers.patient import purge_owners_for | ||
from bika.health.upgrade.utils import setup_catalogs, del_index, del_column | ||
from bika.lims import api | ||
from bika.lims.upgrade import upgradestep | ||
from bika.lims.upgrade.utils import UpgradeUtils, commit_transaction | ||
|
||
version = '1.2.1' | ||
profile = 'profile-{0}:default'.format(PROJECTNAME) | ||
|
||
|
||
@upgradestep(PROJECTNAME, version) | ||
def upgrade(tool): | ||
portal = tool.aq_inner.aq_parent | ||
setup = portal.portal_setup | ||
ut = UpgradeUtils(portal) | ||
ver_from = ut.getInstalledVersion(PROJECTNAME) | ||
|
||
if ut.isOlderVersion(PROJECTNAME, version): | ||
logger.info("Skipping upgrade of {0}: {1} > {2}".format( | ||
PROJECTNAME, ver_from, version)) | ||
return True | ||
|
||
logger.info("Upgrading {0}: {1} -> {2}".format(PROJECTNAME, ver_from, | ||
version)) | ||
|
||
# -------- ADD YOUR STUFF BELOW -------- | ||
|
||
logger.info("{0} upgraded to version {1}".format(PROJECTNAME, version)) | ||
return True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters