Package Gnumed :: Package wxpython :: Package gui :: Module gmCurrentSubstancesPlugin
[frames] | no frames]

Source Code for Module Gnumed.wxpython.gui.gmCurrentSubstancesPlugin

 1  #====================================================================== 
 2  # GNUmed current substances plugin 
 3  # 
 4  # @copyright: author 
 5  #====================================================================== 
 6  __author__ = "Karsten Hilbert" 
 7  __license__ = 'GPL v2 or later (details at http://www.gnu.org)' 
 8   
 9  import logging 
10   
11   
12  from Gnumed.wxpython import gmPlugin 
13  from Gnumed.wxpython import gmMedicationWidgets 
14   
15  from Gnumed.wxpython import gmAccessPermissionWidgets 
16   
17   
18  _log = logging.getLogger('gm.ui') 
19 #====================================================================== 20 -class gmCurrentSubstancesPlugin(gmPlugin.cNotebookPlugin):
21 """Plugin to encapsulate patient current medication list.""" 22 23 tab_name = _('Medication') 24 required_minimum_role = 'doctor' 25 26 @gmAccessPermissionWidgets.verify_minimum_required_role ( 27 required_minimum_role, 28 activity = _('loading plugin <%s>') % tab_name, 29 return_value_on_failure = False, 30 fail_silently = False 31 )
32 - def register(self):
34
35 - def name (self):
37
38 - def GetWidget (self, parent):
39 self._widget = gmMedicationWidgets.cCurrentSubstancesPnl(parent, -1) 40 return self._widget
41
42 - def MenuInfo (self):
43 return ('emr', _('&Medication'))
44
45 - def can_receive_focus(self):
46 if not self._verify_patient_avail(): 47 return None 48 return 1
49 #====================================================================== 50 # main 51 #---------------------------------------------------------------------- 52 if __name__ == "__main__": 53 print "no test code" 54 55 #====================================================================== 56