1
2
3
4
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, gmMedicationWidgets
13 from Gnumed.pycommon import gmI18N
14
15
16 _log = logging.getLogger('gm.ui')
17
19 """Plugin to encapsulate patient current medication list."""
20
21 tab_name = _('Medication')
22
25
29
31 return ('emr', _('&Medication'))
32
34 if not self._verify_patient_avail():
35 return None
36 return 1
37
38
39
40 if __name__ == "__main__":
41 print "no test code"
42
43
44