1
2
3
4
5
6 __author__ = "Nico Latzer <nl@mnet-online.de>, Karsten Hilbert <Karsten.Hilbert@gmx.net>"
7 __license__ = 'GPL v2 or later (details at http://www.gnu.org)'
8
9 import logging
10
11 import wx
12
13 from Gnumed.wxpython import gmPlugin
14
15 from Gnumed.wxpython import gmBillingWidgets
16
17 _log = logging.getLogger('gm.billing')
18
19
21
22 tab_name = _('Billing')
23
26
30
33
35 if not self._verify_patient_avail():
36 return None
37 return 1
38
39
40 if __name__ == '__main__':
41 pass
42