1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303
|
# coding: latin-1
"""GNUmed quick person search widgets.
This widget allows to search for persons based on the
critera name, date of birth and person ID. It goes to
considerable lengths to understand the user's intent from
her input. For that to work well we need per-culture
query generators. However, there's always the fallback
generator.
"""
#============================================================
__author__ = "K.Hilbert <Karsten.Hilbert@gmx.net>"
__license__ = 'GPL v2 or later (for details see http://www.gnu.org/)'
import sys, os.path, glob, re as regex, logging
import wx
if __name__ == '__main__':
sys.path.insert(0, '../../')
from Gnumed.pycommon import gmLog2
from Gnumed.pycommon import gmDispatcher
from Gnumed.pycommon import gmDateTime
from Gnumed.pycommon import gmTools
from Gnumed.pycommon import gmPG2
from Gnumed.pycommon import gmI18N
from Gnumed.pycommon import gmCfg
from Gnumed.pycommon import gmMatchProvider
from Gnumed.pycommon import gmCfg2
from Gnumed.pycommon import gmNetworkTools
from Gnumed.business import gmPerson
from Gnumed.business import gmStaff
from Gnumed.business import gmKVK
from Gnumed.business import gmPraxis
from Gnumed.business import gmCA_MSVA
from Gnumed.business import gmPersonSearch
from Gnumed.business import gmProviderInbox
from Gnumed.wxpython import gmGuiHelpers
from Gnumed.wxpython import gmAuthWidgets
from Gnumed.wxpython import gmRegetMixin
from Gnumed.wxpython import gmEditArea
from Gnumed.wxpython import gmPhraseWheel
from Gnumed.wxpython.gmPersonCreationWidgets import create_new_person
_log = logging.getLogger('gm.person')
_cfg = gmCfg2.gmCfgData()
ID_PatPickList = wx.NewId()
ID_BTN_AddNew = wx.NewId()
#============================================================
def merge_patients(parent=None):
dlg = cMergePatientsDlg(parent, -1)
result = dlg.ShowModal()
#============================================================
from Gnumed.wxGladeWidgets import wxgMergePatientsDlg
class cMergePatientsDlg(wxgMergePatientsDlg.wxgMergePatientsDlg):
def __init__(self, *args, **kwargs):
wxgMergePatientsDlg.wxgMergePatientsDlg.__init__(self, *args, **kwargs)
curr_pat = gmPerson.gmCurrentPatient()
if curr_pat.connected:
self._TCTRL_patient1.person = curr_pat
self._TCTRL_patient1._display_name()
self._RBTN_patient1.SetValue(True)
#--------------------------------------------------------
def _on_merge_button_pressed(self, event):
if self._TCTRL_patient1.person is None:
gmDispatcher.send(signal = 'statustext', msg = _('No patient selected on the left.'), beep = True)
return
if self._TCTRL_patient2.person is None:
gmDispatcher.send(signal = 'statustext', msg = _('No patient selected on the right.'), beep = True)
return
if self._RBTN_patient1.GetValue():
patient2keep = self._TCTRL_patient1.person
patient2merge = self._TCTRL_patient2.person
else:
patient2keep = self._TCTRL_patient2.person
patient2merge = self._TCTRL_patient1.person
if patient2merge['lastnames'] == u'Kirk':
if _cfg.get(option = 'debug'):
gmNetworkTools.open_url_in_browser(url = 'http://en.wikipedia.org/wiki/File:Picard_as_Locutus.jpg')
gmGuiHelpers.gm_show_info(_('\n\nYou will be assimilated.\n\n'), _('The Borg'))
return
else:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot merge Kirk into another patient.'), beep = True)
return
doit = gmGuiHelpers.gm_show_question (
aMessage = _(
'Are you positively sure you want to merge patient\n\n'
' #%s: %s (%s, %s)\n\n'
'into patient\n\n'
' #%s: %s (%s, %s) ?\n\n'
'Note that this action can ONLY be reversed by a laborious\n'
'manual process requiring in-depth knowledge about databases\n'
'and the patients in question !\n'
) % (
patient2merge.ID,
patient2merge['description_gender'],
patient2merge['gender'],
patient2merge.get_formatted_dob(format = '%Y %b %d', encoding = gmI18N.get_encoding()),
patient2keep.ID,
patient2keep['description_gender'],
patient2keep['gender'],
patient2keep.get_formatted_dob(format = '%Y %b %d', encoding = gmI18N.get_encoding())
),
aTitle = _('Merging patients: confirmation'),
cancel_button = False
)
if not doit:
return
conn = gmAuthWidgets.get_dbowner_connection(procedure = _('Merging patients'))
if conn is None:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot merge patients without admin access.'), beep = True)
return
success, msg = patient2keep.assimilate_identity(other_identity = patient2merge, link_obj = conn)
conn.close()
if not success:
gmDispatcher.send(signal = 'statustext', msg = msg, beep = True)
return
msg = _(
'The patient\n'
'\n'
' #%s: %s (%s, %s)\n'
'\n'
'has successfully been merged into\n'
'\n'
' #%s: %s (%s, %s)'
) % (
patient2merge.ID,
patient2merge['description_gender'],
patient2merge['gender'],
patient2merge.get_formatted_dob(format = '%Y %b %d', encoding = gmI18N.get_encoding()),
patient2keep.ID,
patient2keep['description_gender'],
patient2keep['gender'],
patient2keep.get_formatted_dob(format = '%Y %b %d', encoding = gmI18N.get_encoding())
)
title = _('Merging patients: success')
curr_pat = gmPerson.gmCurrentPatient()
# announce success
if (curr_pat.connected) and (patient2keep.ID == curr_pat.ID):
gmGuiHelpers.gm_show_info(aMessage = msg, aTitle = title)
# and offer to activate kept patient if not active
else:
msg = msg + (
'\n\n\n'
'Do you want to activate that patient\n'
'now for further modifications ?\n'
)
doit = gmGuiHelpers.gm_show_question (
aMessage = msg,
aTitle = title,
cancel_button = False
)
if doit:
wx.CallAfter(set_active_patient, patient = patient2keep)
if self.IsModal():
self.EndModal(wx.ID_OK)
else:
self.Close()
#============================================================
from Gnumed.wxGladeWidgets import wxgSelectPersonFromListDlg
class cSelectPersonFromListDlg(wxgSelectPersonFromListDlg.wxgSelectPersonFromListDlg):
def __init__(self, *args, **kwargs):
wxgSelectPersonFromListDlg.wxgSelectPersonFromListDlg.__init__(self, *args, **kwargs)
self.__cols = [
_('Title'),
_('Lastname'),
_('Firstname'),
_('Nickname'),
_('DOB'),
_('Gender'),
_('last visit'),
_('found via')
]
self.__init_ui()
#--------------------------------------------------------
def __init_ui(self):
for col in range(len(self.__cols)):
self._LCTRL_persons.InsertColumn(col, self.__cols[col])
#--------------------------------------------------------
def set_persons(self, persons=None):
self._LCTRL_persons.DeleteAllItems()
pos = len(persons) + 1
if pos == 1:
return False
for person in persons:
row_num = self._LCTRL_persons.InsertStringItem(pos, label = gmTools.coalesce(person['title'], ''))
self._LCTRL_persons.SetStringItem(index = row_num, col = 1, label = person['lastnames'])
self._LCTRL_persons.SetStringItem(index = row_num, col = 2, label = person['firstnames'])
self._LCTRL_persons.SetStringItem(index = row_num, col = 3, label = gmTools.coalesce(person['preferred'], ''))
self._LCTRL_persons.SetStringItem(index = row_num, col = 4, label = person.get_formatted_dob(format = '%Y %b %d', encoding = gmI18N.get_encoding()))
self._LCTRL_persons.SetStringItem(index = row_num, col = 5, label = gmTools.coalesce(person['l10n_gender'], '?'))
label = u''
if person.is_patient:
enc = person.get_last_encounter()
if enc is not None:
label = u'%s (%s)' % (gmDateTime.pydt_strftime(enc['started'], '%Y %b %d'), enc['l10n_type'])
self._LCTRL_persons.SetStringItem(index = row_num, col = 6, label = label)
try:
self._LCTRL_persons.SetStringItem(index = row_num, col = 7, label = person['match_type'])
except KeyError:
_log.warning('cannot set match_type field')
self._LCTRL_persons.SetStringItem(index = row_num, col = 7, label = u'??')
for col in range(len(self.__cols)):
self._LCTRL_persons.SetColumnWidth(col=col, width=wx.LIST_AUTOSIZE)
self._BTN_select.Enable(False)
self._LCTRL_persons.SetFocus()
self._LCTRL_persons.Select(0)
self._LCTRL_persons.set_data(data=persons)
#--------------------------------------------------------
def get_selected_person(self):
return self._LCTRL_persons.get_item_data(self._LCTRL_persons.GetFirstSelected())
#--------------------------------------------------------
# event handlers
#--------------------------------------------------------
def _on_list_item_selected(self, evt):
self._BTN_select.Enable(True)
return
#--------------------------------------------------------
def _on_list_item_activated(self, evt):
self._BTN_select.Enable(True)
if self.IsModal():
self.EndModal(wx.ID_OK)
else:
self.Close()
#============================================================
from Gnumed.wxGladeWidgets import wxgSelectPersonDTOFromListDlg
class cSelectPersonDTOFromListDlg(wxgSelectPersonDTOFromListDlg.wxgSelectPersonDTOFromListDlg):
def __init__(self, *args, **kwargs):
wxgSelectPersonDTOFromListDlg.wxgSelectPersonDTOFromListDlg.__init__(self, *args, **kwargs)
self.__cols = [
_('Source'),
_('Lastname'),
_('Firstname'),
_('DOB'),
_('Gender')
]
self.__init_ui()
#--------------------------------------------------------
def __init_ui(self):
for col in range(len(self.__cols)):
self._LCTRL_persons.InsertColumn(col, self.__cols[col])
#--------------------------------------------------------
def set_dtos(self, dtos=None):
self._LCTRL_persons.DeleteAllItems()
pos = len(dtos) + 1
if pos == 1:
return False
for rec in dtos:
row_num = self._LCTRL_persons.InsertStringItem(pos, label = rec['source'])
dto = rec['dto']
self._LCTRL_persons.SetStringItem(index = row_num, col = 1, label = dto.lastnames)
self._LCTRL_persons.SetStringItem(index = row_num, col = 2, label = dto.firstnames)
if dto.dob is None:
self._LCTRL_persons.SetStringItem(index = row_num, col = 3, label = u'')
else:
self._LCTRL_persons.SetStringItem(index = row_num, col = 3, label = gmDateTime.pydt_strftime(dto.dob, '%Y %b %d'))
self._LCTRL_persons.SetStringItem(index = row_num, col = 4, label = gmTools.coalesce(dto.gender, ''))
for col in range(len(self.__cols)):
self._LCTRL_persons.SetColumnWidth(col=col, width=wx.LIST_AUTOSIZE)
self._BTN_select.Enable(False)
self._LCTRL_persons.SetFocus()
self._LCTRL_persons.Select(0)
self._LCTRL_persons.set_data(data=dtos)
#--------------------------------------------------------
def get_selected_dto(self):
return self._LCTRL_persons.get_item_data(self._LCTRL_persons.GetFirstSelected())
#--------------------------------------------------------
# event handlers
#--------------------------------------------------------
def _on_list_item_selected(self, evt):
self._BTN_select.Enable(True)
return
#--------------------------------------------------------
def _on_list_item_activated(self, evt):
self._BTN_select.Enable(True)
if self.IsModal():
self.EndModal(wx.ID_OK)
else:
self.Close()
#============================================================
def load_persons_from_ca_msva():
group = u'CA Medical Manager MSVA'
src_order = [
('explicit', 'append'),
('workbase', 'append'),
('local', 'append'),
('user', 'append'),
('system', 'append')
]
msva_files = _cfg.get (
group = group,
option = 'filename',
source_order = src_order
)
if msva_files is None:
return []
dtos = []
for msva_file in msva_files:
try:
# FIXME: potentially return several persons per file
msva_dtos = gmCA_MSVA.read_persons_from_msva_file(filename = msva_file)
except StandardError:
gmGuiHelpers.gm_show_error (
_(
'Cannot load patient from Medical Manager MSVA file\n\n'
' [%s]'
) % msva_file,
_('Activating MSVA patient')
)
_log.exception('cannot read patient from MSVA file [%s]' % msva_file)
continue
dtos.extend([ {'dto': dto, 'source': dto.source} for dto in msva_dtos ])
#dtos.extend([ {'dto': dto} for dto in msva_dtos ])
return dtos
#============================================================
def load_persons_from_xdt():
bdt_files = []
# some can be auto-detected
# MCS/Isynet: $DRIVE:\Winacs\TEMP\BDTxx.tmp where xx is the workplace
candidates = []
drives = 'cdefghijklmnopqrstuvwxyz'
for drive in drives:
candidate = drive + ':\Winacs\TEMP\BDT*.tmp'
candidates.extend(glob.glob(candidate))
for candidate in candidates:
path, filename = os.path.split(candidate)
# FIXME: add encoding !
bdt_files.append({'file': candidate, 'source': 'MCS/Isynet %s' % filename[-6:-4]})
# some need to be configured
# aggregate sources
src_order = [
('explicit', 'return'),
('workbase', 'append'),
('local', 'append'),
('user', 'append'),
('system', 'append')
]
xdt_profiles = _cfg.get (
group = 'workplace',
option = 'XDT profiles',
source_order = src_order
)
if xdt_profiles is None:
return []
# first come first serve
src_order = [
('explicit', 'return'),
('workbase', 'return'),
('local', 'return'),
('user', 'return'),
('system', 'return')
]
for profile in xdt_profiles:
name = _cfg.get (
group = 'XDT profile %s' % profile,
option = 'filename',
source_order = src_order
)
if name is None:
_log.error('XDT profile [%s] does not define a <filename>' % profile)
continue
encoding = _cfg.get (
group = 'XDT profile %s' % profile,
option = 'encoding',
source_order = src_order
)
if encoding is None:
_log.warning('xDT source profile [%s] does not specify an <encoding> for BDT file [%s]' % (profile, name))
source = _cfg.get (
group = 'XDT profile %s' % profile,
option = 'source',
source_order = src_order
)
dob_format = _cfg.get (
group = 'XDT profile %s' % profile,
option = 'DOB format',
source_order = src_order
)
if dob_format is None:
_log.warning('XDT profile [%s] does not define a date of birth format in <DOB format>' % profile)
bdt_files.append({'file': name, 'source': source, 'encoding': encoding, 'dob_format': dob_format})
dtos = []
for bdt_file in bdt_files:
try:
# FIXME: potentially return several persons per file
dto = gmPerson.get_person_from_xdt (
filename = bdt_file['file'],
encoding = bdt_file['encoding'],
dob_format = bdt_file['dob_format']
)
except IOError:
gmGuiHelpers.gm_show_info (
_(
'Cannot access BDT file\n\n'
' [%s]\n\n'
'to import patient.\n\n'
'Please check your configuration.'
) % bdt_file,
_('Activating xDT patient')
)
_log.exception('cannot access xDT file [%s]' % bdt_file['file'])
continue
except:
gmGuiHelpers.gm_show_error (
_(
'Cannot load patient from BDT file\n\n'
' [%s]'
) % bdt_file,
_('Activating xDT patient')
)
_log.exception('cannot read patient from xDT file [%s]' % bdt_file['file'])
continue
dtos.append({'dto': dto, 'source': gmTools.coalesce(bdt_file['source'], dto.source)})
return dtos
#============================================================
def load_persons_from_pracsoft_au():
pracsoft_files = []
# try detecting PATIENTS.IN files
candidates = []
drives = 'cdefghijklmnopqrstuvwxyz'
for drive in drives:
candidate = drive + ':\MDW2\PATIENTS.IN'
candidates.extend(glob.glob(candidate))
for candidate in candidates:
drive, filename = os.path.splitdrive(candidate)
pracsoft_files.append({'file': candidate, 'source': 'PracSoft (AU): drive %s' % drive})
# add configured one(s)
src_order = [
('explicit', 'append'),
('workbase', 'append'),
('local', 'append'),
('user', 'append'),
('system', 'append')
]
fnames = _cfg.get (
group = 'AU PracSoft PATIENTS.IN',
option = 'filename',
source_order = src_order
)
src_order = [
('explicit', 'return'),
('user', 'return'),
('system', 'return'),
('local', 'return'),
('workbase', 'return')
]
source = _cfg.get (
group = 'AU PracSoft PATIENTS.IN',
option = 'source',
source_order = src_order
)
if source is not None:
for fname in fnames:
fname = os.path.abspath(os.path.expanduser(fname))
if os.access(fname, os.R_OK):
pracsoft_files.append({'file': os.path.expanduser(fname), 'source': source})
else:
_log.error('cannot read [%s] in AU PracSoft profile' % fname)
# and parse them
dtos = []
for pracsoft_file in pracsoft_files:
try:
tmp = gmPerson.get_persons_from_pracsoft_file(filename = pracsoft_file['file'])
except:
_log.exception('cannot parse PracSoft file [%s]' % pracsoft_file['file'])
continue
for dto in tmp:
dtos.append({'dto': dto, 'source': pracsoft_file['source']})
return dtos
#============================================================
def load_persons_from_kvks():
dbcfg = gmCfg.cCfgSQL()
kvk_dir = os.path.abspath(os.path.expanduser(dbcfg.get2 (
option = 'DE.KVK.spool_dir',
workplace = gmPraxis.gmCurrentPraxisBranch().active_workplace,
bias = 'workplace',
default = u'/var/spool/kvkd/'
)))
dtos = []
for dto in gmKVK.get_available_kvks_as_dtos(spool_dir = kvk_dir):
dtos.append({'dto': dto, 'source': 'KVK'})
return dtos
#============================================================
def get_person_from_external_sources(parent=None, search_immediately=False, activate_immediately=False):
"""Load patient from external source.
- scan external sources for candidates
- let user select source
- if > 1 available: always
- if only 1 available: depending on search_immediately
- search for patients matching info from external source
- if more than one match:
- let user select patient
- if no match:
- create patient
- activate patient
"""
# get DTOs from interfaces
dtos = []
dtos.extend(load_persons_from_xdt())
dtos.extend(load_persons_from_pracsoft_au())
dtos.extend(load_persons_from_kvks())
dtos.extend(load_persons_from_ca_msva())
# no external persons
if len(dtos) == 0:
gmDispatcher.send(signal='statustext', msg=_('No patients found in external sources.'))
return None
# one external patient with DOB - already active ?
if (len(dtos) == 1) and (dtos[0]['dto'].dob is not None):
dto = dtos[0]['dto']
# is it already the current patient ?
curr_pat = gmPerson.gmCurrentPatient()
if curr_pat.connected:
key_dto = dto.firstnames + dto.lastnames + dto.dob.strftime('%Y-%m-%d') + dto.gender
names = curr_pat.get_active_name()
key_pat = names['firstnames'] + names['lastnames'] + curr_pat.get_formatted_dob(format = '%Y-%m-%d') + curr_pat['gender']
_log.debug('current patient: %s' % key_pat)
_log.debug('dto patient : %s' % key_dto)
if key_dto == key_pat:
gmDispatcher.send(signal='statustext', msg=_('The only external patient is already active in GNUmed.'), beep=False)
return None
# one external person - look for internal match immediately ?
if (len(dtos) == 1) and search_immediately:
dto = dtos[0]['dto']
# several external persons
else:
if parent is None:
parent = wx.GetApp().GetTopWindow()
dlg = cSelectPersonDTOFromListDlg(parent=parent, id=-1)
dlg.set_dtos(dtos=dtos)
result = dlg.ShowModal()
if result == wx.ID_CANCEL:
return None
dto = dlg.get_selected_dto()['dto']
dlg.Destroy()
# search
idents = dto.get_candidate_identities(can_create=True)
if idents is None:
gmGuiHelpers.gm_show_info (_(
'Cannot create new patient:\n\n'
' [%s %s (%s), %s]'
) % (
dto.firstnames, dto.lastnames, dto.gender, gmDateTime.pydt_strftime(dto.dob, '%Y %b %d')
),
_('Activating external patient')
)
return None
if len(idents) == 1:
ident = idents[0]
if len(idents) > 1:
if parent is None:
parent = wx.GetApp().GetTopWindow()
dlg = cSelectPersonFromListDlg(parent=parent, id=-1)
dlg.set_persons(persons=idents)
result = dlg.ShowModal()
if result == wx.ID_CANCEL:
return None
ident = dlg.get_selected_person()
dlg.Destroy()
if activate_immediately:
if not set_active_patient(patient = ident):
gmGuiHelpers.gm_show_info (_(
'Cannot activate patient:\n\n'
'%s %s (%s)\n'
'%s'
) % (
dto.firstnames, dto.lastnames, dto.gender, gmDateTime.pydt_strftime(dto.dob, '%Y %b %d')
),
_('Activating external patient')
)
return None
dto.import_extra_data(identity = ident)
dto.delete_from_source()
return ident
#============================================================
class cPersonSearchCtrl(wx.TextCtrl):
"""Widget for smart search for persons."""
def __init__(self, *args, **kwargs):
try:
kwargs['style'] = kwargs['style'] | wx.TE_PROCESS_ENTER
except KeyError:
kwargs['style'] = wx.TE_PROCESS_ENTER
# need to explicitly process ENTER events to avoid
# them being handed over to the next control
wx.TextCtrl.__init__(self, *args, **kwargs)
self.person = None
self._tt_search_hints = _(
'To search for a person, type any of: \n'
'\n'
' - fragment(s) of last and/or first name(s)\n'
" - GNUmed ID of person (can start with '#')\n"
' - any external ID of person\n'
" - date of birth (can start with '$' or '*')\n"
'\n'
'and hit <ENTER>.\n'
'\n'
'Shortcuts:\n'
' <F2>\n'
' - scan external sources for persons\n'
' <CURSOR-UP>\n'
' - recall most recently used search term\n'
' <CURSOR-DOWN>\n'
' - list 10 most recently found persons\n'
)
self.SetToolTipString(self._tt_search_hints)
# FIXME: set query generator
self.__person_searcher = gmPersonSearch.cPatientSearcher_SQL()
self._prev_search_term = None
self.__prev_idents = []
self._lclick_count = 0
self.__register_events()
#--------------------------------------------------------
# properties
#--------------------------------------------------------
def _set_person(self, person):
self.__person = person
wx.CallAfter(self._display_name)
def _get_person(self):
return self.__person
person = property(_get_person, _set_person)
#--------------------------------------------------------
# utility methods
#--------------------------------------------------------
def _display_name(self):
name = u''
if self.person is not None:
name = self.person['description']
self.SetValue(name)
#--------------------------------------------------------
def _remember_ident(self, ident=None):
if not isinstance(ident, gmPerson.cIdentity):
return False
# only unique identities
for known_ident in self.__prev_idents:
if known_ident['pk_identity'] == ident['pk_identity']:
return True
self.__prev_idents.append(ident)
# and only 10 of them
if len(self.__prev_idents) > 10:
self.__prev_idents.pop(0)
return True
#--------------------------------------------------------
# event handling
#--------------------------------------------------------
def __register_events(self):
wx.EVT_CHAR(self, self.__on_char)
wx.EVT_SET_FOCUS(self, self._on_get_focus)
wx.EVT_KILL_FOCUS (self, self._on_loose_focus)
wx.EVT_TEXT_ENTER (self, self.GetId(), self.__on_enter)
#--------------------------------------------------------
def _on_get_focus(self, evt):
"""upon tabbing in
- select all text in the field so that the next
character typed will delete it
"""
wx.CallAfter(self.SetSelection, -1, -1)
evt.Skip()
#--------------------------------------------------------
def _on_loose_focus(self, evt):
# - redraw the currently active name upon losing focus
#
# if we use wx.EVT_KILL_FOCUS we will also receive this event
# when closing our application or loosing focus to another
# application which is NOT what we intend to achieve,
# however, this is the least ugly way of doing this due to
# certain vagaries of wxPython (see the Wiki)
evt.Skip()
wx.CallAfter(self.__on_lost_focus)
#--------------------------------------------------------
def __on_lost_focus(self):
# just for good measure
self.SetSelection(0, 0)
self._display_name()
self._remember_ident(self.person)
#--------------------------------------------------------
def __on_char(self, evt):
self._on_char(evt)
def _on_char(self, evt):
"""True: patient was selected.
False: no patient was selected.
"""
keycode = evt.GetKeyCode()
# list of previously active patients
if keycode == wx.WXK_DOWN:
evt.Skip()
if len(self.__prev_idents) == 0:
return False
dlg = cSelectPersonFromListDlg(parent = wx.GetTopLevelParent(self), id = -1)
dlg.set_persons(persons = self.__prev_idents)
result = dlg.ShowModal()
if result == wx.ID_OK:
wx.BeginBusyCursor()
self.person = dlg.get_selected_person()
dlg.Destroy()
wx.EndBusyCursor()
return True
dlg.Destroy()
return False
# recall previous search fragment
if keycode == wx.WXK_UP:
evt.Skip()
# FIXME: cycling through previous fragments
if self._prev_search_term is not None:
self.SetValue(self._prev_search_term)
return False
# invoke external patient sources
if keycode == wx.WXK_F2:
evt.Skip()
dbcfg = gmCfg.cCfgSQL()
search_immediately = bool(dbcfg.get2 (
option = 'patient_search.external_sources.immediately_search_if_single_source',
workplace = gmPraxis.gmCurrentPraxisBranch().active_workplace,
bias = 'user',
default = 0
))
p = get_person_from_external_sources (
parent = wx.GetTopLevelParent(self),
search_immediately = search_immediately
)
if p is not None:
self.person = p
return True
return False
# FIXME: invoke add new person
# FIXME: add popup menu apart from system one
evt.Skip()
#--------------------------------------------------------
def __on_enter(self, evt):
"""This is called from the ENTER handler."""
# ENTER but no search term ?
curr_search_term = self.GetValue().strip()
if curr_search_term == '':
return None
# same person anyways ?
if self.person is not None:
if curr_search_term == self.person['description']:
return None
# remember search fragment
if self.IsModified():
self._prev_search_term = curr_search_term
self._on_enter(search_term = curr_search_term)
#--------------------------------------------------------
def _on_enter(self, search_term=None):
"""This can be overridden in child classes."""
wx.BeginBusyCursor()
# get list of matching ids
idents = self.__person_searcher.get_identities(search_term)
if idents is None:
wx.EndBusyCursor()
gmGuiHelpers.gm_show_info (
_('Error searching for matching persons.\n\n'
'Search term: "%s"'
) % search_term,
_('selecting person')
)
return None
_log.info("%s matching person(s) found", len(idents))
if len(idents) == 0:
wx.EndBusyCursor()
dlg = gmGuiHelpers.c2ButtonQuestionDlg (
wx.GetTopLevelParent(self),
-1,
caption = _('Selecting patient'),
question = _(
'Cannot find any matching patients for the search term\n\n'
' "%s"\n\n'
'You may want to try a shorter search term.\n'
) % search_term,
button_defs = [
{'label': _('Go back'), 'tooltip': _('Go back and search again.'), 'default': True},
{'label': _('Create new'), 'tooltip': _('Create new patient.')}
]
)
if dlg.ShowModal() != wx.ID_NO:
return
success = create_new_person(activate = True)
if success:
self.person = gmPerson.gmCurrentPatient()
else:
self.person = None
return None
# only one matching identity
if len(idents) == 1:
self.person = idents[0]
wx.EndBusyCursor()
return None
# more than one matching identity: let user select from pick list
dlg = cSelectPersonFromListDlg(parent=wx.GetTopLevelParent(self), id=-1)
dlg.set_persons(persons=idents)
wx.EndBusyCursor()
result = dlg.ShowModal()
if result == wx.ID_CANCEL:
dlg.Destroy()
return None
wx.BeginBusyCursor()
self.person = dlg.get_selected_person()
dlg.Destroy()
wx.EndBusyCursor()
return None
#============================================================
def _check_has_dob(patient=None):
if patient is None:
return
if patient['dob'] is None:
gmGuiHelpers.gm_show_warning (
aTitle = _('Checking date of birth'),
aMessage = _(
'\n'
' %s\n'
'\n'
'The date of birth for this patient is not known !\n'
'\n'
'You can proceed to work on the patient but\n'
'GNUmed will be unable to assist you with\n'
'age-related decisions.\n'
) % patient['description_gender']
)
return
#------------------------------------------------------------
def _check_for_provider_chart_access(patient=None):
if patient is None:
return True
curr_prov = gmStaff.gmCurrentProvider()
# can view my own chart
if patient.ID == curr_prov['pk_identity']:
return True
if patient.ID not in [ s['pk_identity'] for s in gmStaff.get_staff_list() ]:
return True
proceed = gmGuiHelpers.gm_show_question (
aTitle = _('Privacy check'),
aMessage = _(
'You have selected the chart of a member of staff,\n'
'for whom privacy is especially important:\n'
'\n'
' %s, %s\n'
'\n'
'This may be OK depending on circumstances.\n'
'\n'
'Please be aware that accessing patient charts is\n'
'logged and that %s%s will be\n'
'notified of the access if you choose to proceed.\n'
'\n'
'Are you sure you want to draw this chart ?'
) % (
patient.get_description_gender(),
patient.get_formatted_dob(),
gmTools.coalesce(patient['title'], u'', u'%s '),
patient['lastnames']
)
)
if proceed:
prov = u'%s (%s%s %s)' % (
curr_prov['short_alias'],
gmTools.coalesce(curr_prov['title'], u'', u'%s '),
curr_prov['firstnames'],
curr_prov['lastnames']
)
pat = u'%s%s %s' % (
gmTools.coalesce(patient['title'], u'', u'%s '),
patient['firstnames'],
patient['lastnames']
)
# notify the staff member
gmProviderInbox.create_inbox_message (
staff = patient.staff_id,
message_type = _('Privacy notice'),
message_category = u'administrative',
subject = _('%s: Your chart has been accessed by %s.') % (pat, prov),
patient = patient.ID
)
# notify /me about the staff member notification
gmProviderInbox.create_inbox_message (
staff = curr_prov['pk_staff'],
message_type = _('Privacy notice'),
message_category = u'administrative',
subject = _('%s: Staff member %s has been notified of your chart access.') % (prov, pat)
)
return proceed
#------------------------------------------------------------
def _check_birthday(patient=None):
if patient['dob'] is None:
return
dbcfg = gmCfg.cCfgSQL()
dob_distance = dbcfg.get2 (
option = u'patient_search.dob_warn_interval',
workplace = gmPraxis.gmCurrentPraxisBranch().active_workplace,
bias = u'user',
default = u'1 week'
)
if not patient.dob_in_range(dob_distance, dob_distance):
return
now = gmDateTime.pydt_now_here()
enc = gmI18N.get_encoding()
msg = _('%(pat)s turns %(age)s on %(month)s %(day)s ! (today is %(month_now)s %(day_now)s)') % {
'pat': patient.get_description_gender(),
'age': patient.get_medical_age().strip('y'),
'month': patient.get_formatted_dob(format = '%B', encoding = enc),
'day': patient.get_formatted_dob(format = '%d', encoding = enc),
'month_now': gmDateTime.pydt_strftime(now, '%B', enc, gmDateTime.acc_months),
'day_now': gmDateTime.pydt_strftime(now, '%d', enc, gmDateTime.acc_days)
}
gmDispatcher.send(signal = 'statustext', msg = msg)
#------------------------------------------------------------
def set_active_patient(patient=None, forced_reload=False):
if isinstance(patient, gmPerson.cPatient):
pass
elif isinstance(patient, gmPerson.cIdentity):
patient = gmPerson.cPatient(aPK_obj = patient['pk_identity'])
# elif isinstance(patient, cStaff):
# patient = cPatient(aPK_obj=patient['pk_identity'])
elif isinstance(patient, gmPerson.gmCurrentPatient):
patient = patient.patient
elif patient == -1:
pass
else:
# maybe integer ?
success, pk = gmTools.input2int(initial = patient, minval = 1)
if not success:
raise ValueError('<patient> must be either -1, >0, or a cPatient, cIdentity or gmCurrentPatient instance, is: %s' % patient)
# but also valid patient ID ?
try:
patient = gmPerson.cPatient(aPK_obj = pk)
except:
_log.exception('error changing active patient to [%s]' % patient)
return False
_check_has_dob(patient = patient)
if not _check_for_provider_chart_access(patient = patient):
return False
success = gmPerson.set_active_patient(patient = patient, forced_reload = forced_reload)
if not success:
return False
_check_birthday(patient = patient)
return True
#------------------------------------------------------------
class cActivePatientSelector(cPersonSearchCtrl):
def __init__ (self, *args, **kwargs):
cPersonSearchCtrl.__init__(self, *args, **kwargs)
# get configuration
cfg = gmCfg.cCfgSQL()
self.__always_dismiss_on_search = bool (
cfg.get2 (
option = 'patient_search.always_dismiss_previous_patient',
workplace = gmPraxis.gmCurrentPraxisBranch().active_workplace,
bias = 'user',
default = 0
)
)
self.__always_reload_after_search = bool (
cfg.get2 (
option = 'patient_search.always_reload_new_patient',
workplace = gmPraxis.gmCurrentPraxisBranch().active_workplace,
bias = 'user',
default = 0
)
)
self.__register_events()
#--------------------------------------------------------
# utility methods
#--------------------------------------------------------
def _display_name(self):
curr_pat = gmPerson.gmCurrentPatient()
if curr_pat.connected:
name = curr_pat['description']
if curr_pat.locked:
name = _('%(name)s (locked)') % {'name': name}
else:
if curr_pat.locked:
name = _('<patient search locked>')
else:
name = _('<type here to search patient>')
self.SetValue(name)
# adjust tooltip
if self.person is None:
self.SetToolTipString(self._tt_search_hints)
return
if (self.person['emergency_contact'] is None) and (self.person['comment'] is None):
separator = u''
else:
separator = u'%s\n' % (gmTools.u_box_horiz_single * 40)
tt = u'%s%s%s%s' % (
gmTools.coalesce(self.person['emergency_contact'], u'', u'%s\n %%s\n' % _('In case of emergency contact:')),
gmTools.coalesce(self.person['comment'], u'', u'\n%s\n'),
separator,
self._tt_search_hints
)
self.SetToolTipString(tt)
#--------------------------------------------------------
def _set_person_as_active_patient(self, pat):
if not set_active_patient(patient=pat, forced_reload = self.__always_reload_after_search):
_log.error('cannot change active patient')
return None
self._remember_ident(pat)
return True
#--------------------------------------------------------
# event handling
#--------------------------------------------------------
def __register_events(self):
# client internal signals
gmDispatcher.connect(signal = u'post_patient_selection', receiver = self._on_post_patient_selection)
gmDispatcher.connect(signal = u'dem.names_mod_db', receiver = self._on_name_identity_change)
gmDispatcher.connect(signal = u'dem.identity_mod_db', receiver = self._on_name_identity_change)
gmDispatcher.connect(signal = 'patient_locked', receiver = self._on_post_patient_selection)
gmDispatcher.connect(signal = 'patient_unlocked', receiver = self._on_post_patient_selection)
#----------------------------------------------
def _on_name_identity_change(self, **kwargs):
wx.CallAfter(self._display_name)
#----------------------------------------------
def _on_post_patient_selection(self, **kwargs):
if gmPerson.gmCurrentPatient().connected:
self.person = gmPerson.gmCurrentPatient().patient
else:
self.person = None
#----------------------------------------------
def _on_enter(self, search_term = None):
if self.__always_dismiss_on_search:
_log.warning("dismissing patient before patient search")
self._set_person_as_active_patient(-1)
super(self.__class__, self)._on_enter(search_term=search_term)
if self.person is None:
return
self._set_person_as_active_patient(self.person)
#----------------------------------------------
def _on_char(self, evt):
success = super(self.__class__, self)._on_char(evt)
if success:
self._set_person_as_active_patient(self.person)
#============================================================
# main
#------------------------------------------------------------
if __name__ == "__main__":
if len(sys.argv) > 1:
if sys.argv[1] == 'test':
gmI18N.activate_locale()
gmI18N.install_domain()
app = wx.PyWidgetTester(size = (200, 40))
# app.SetWidget(cSelectPersonFromListDlg, -1)
app.SetWidget(cPersonSearchCtrl, -1)
# app.SetWidget(cActivePatientSelector, -1)
app.MainLoop()
#============================================================
# docs
#------------------------------------------------------------
# functionality
# -------------
# - hitting ENTER on non-empty field (and more than threshold chars)
# - start search
# - display results in a list, prefixed with numbers
# - last name
# - first name
# - gender
# - age
# - city + street (no ZIP, no number)
# - last visit (highlighted if within a certain interval)
# - arbitrary marker (e.g. office attendance this quartal, missing KVK, appointments, due dates)
# - if none found -> go to entry of new patient
# - scrolling in this list
# - ENTER selects patient
# - ESC cancels selection
# - number selects patient
#
# - hitting cursor-up/-down
# - cycle through history of last 10 search fragments
#
# - hitting alt-L = List, alt-P = previous
# - show list of previous ten patients prefixed with numbers
# - scrolling in list
# - ENTER selects patient
# - ESC cancels selection
# - number selects patient
#
# - hitting ALT-N
# - immediately goes to entry of new patient
#
# - hitting cursor-right in a patient selection list
# - pops up more detail about the patient
# - ESC/cursor-left goes back to list
#
# - hitting TAB
# - makes sure the currently active patient is displayed
#------------------------------------------------------------
# samples
# -------
# working:
# Ian Haywood
# Haywood Ian
# Haywood
# Amador Jimenez (yes, two last names but no hyphen: Spain, for example)
# Ian Haywood 19/12/1977
# 19/12/1977
# 19-12-1977
# 19.12.1977
# 19771219
# $dob
# *dob
# #ID
# ID
# HIlbert, karsten
# karsten, hilbert
# kars, hilb
#
# non-working:
# Haywood, Ian <40
# ?, Ian 1977
# Ian Haywood, 19/12/77
# PUPIC
# "hilb; karsten, 23.10.74"
#------------------------------------------------------------
# notes
# -----
# >> 3. There are countries in which people have more than one
# >> (significant) lastname (spanish-speaking countries are one case :), some
# >> asian countries might be another one).
# -> we need per-country query generators ...
# search case sensitive by default, switch to insensitive if not found ?
# accent insensitive search:
# select * from * where to_ascii(column, 'encoding') like '%test%';
# may not work with Unicode
# phrase wheel is most likely too slow
# extend search fragment history
# ask user whether to send off level 3 queries - or thread them
# we don't expect patient IDs in complicated patterns, hence any digits signify a date
# FIXME: make list window fit list size ...
# clear search field upon get-focus ?
# F1 -> context help with hotkey listing
# th -> th|t
# v/f/ph -> f|v|ph
# maybe don't do umlaut translation in the first 2-3 letters
# such that not to defeat index use for the first level query ?
# user defined function key to start search
|