Home | Trees | Indices | Help |
|
---|
|
1 # -*- coding: utf-8 -*- 2 #====================================================================== 3 # GNUmed billing plugin 4 # 5 # @copyright: authors 6 #====================================================================== 7 __author__ = "Nico Latzer <nl@mnet-online.de>, Karsten Hilbert <Karsten.Hilbert@gmx.net>" 8 __license__ = 'GPL v2 or later (details at http://www.gnu.org)' 9 10 import logging 11 12 13 import wx 14 15 16 from Gnumed.wxpython import gmPlugin 17 from Gnumed.wxpython import gmBillingWidgets 18 from Gnumed.wxpython import gmAccessPermissionWidgets 19 20 21 _log = logging.getLogger('gm.billing')22 23 #====================================================================== 24 -class gmBillingPlugin(gmPlugin.cNotebookPlugin):25 26 tab_name = _('Billing') 27 required_minimum_role = 'full clinical access' 28 29 @gmAccessPermissionWidgets.verify_minimum_required_role ( 30 required_minimum_role, 31 activity = _('loading plugin <%s>') % tab_name, 32 return_value_on_failure = False, 33 fail_silently = False 34 ) 37 40 44 4752 53 #====================================================================== 54 if __name__ == '__main__': 55 pass 56
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Sun Nov 10 02:55:34 2019 | http://epydoc.sourceforge.net |