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 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
|
"""GNUmed patient export area widgets."""
#================================================================
__author__ = "Karsten.Hilbert@gmx.net"
__license__ = "GPL v2 or later"
# std lib
import sys
import logging
import os.path
import shutil
# 3rd party
import wx
# GNUmed libs
if __name__ == '__main__':
sys.path.insert(0, '../../')
from Gnumed.pycommon import gmDispatcher
from Gnumed.pycommon import gmTools
from Gnumed.pycommon import gmMimeLib
from Gnumed.pycommon import gmDateTime
from Gnumed.pycommon import gmPrinting
from Gnumed.pycommon import gmShellAPI
from Gnumed.pycommon import gmNetworkTools
from Gnumed.pycommon import gmCfg2
from Gnumed.pycommon import gmLog2
from Gnumed.business import gmPerson
from Gnumed.business import gmExportArea
from Gnumed.business import gmPraxis
from Gnumed.wxpython import gmRegetMixin
from Gnumed.wxpython import gmGuiHelpers
from Gnumed.wxpython import gmDocumentWidgets
_log = logging.getLogger('gm.ui')
_cfg = gmCfg2.gmCfgData()
#============================================================
def _add_file_to_export_area(**kwargs):
try:
del kwargs['signal']
del kwargs['sender']
except KeyError:
pass
wx.CallAfter(add_file_to_export_area, **kwargs)
def _add_files_to_export_area(**kwargs):
try:
del kwargs['signal']
del kwargs['sender']
except KeyError:
pass
wx.CallAfter(add_files_to_export_area, **kwargs)
#----------------------
def add_file_to_export_area(parent=None, filename=None, hint=None, unlock_patient=False):
return add_files_to_export_area (
parent = parent,
filenames = [filename],
hint = hint,
unlock_patient = unlock_patient
)
#----------------------
def add_files_to_export_area(parent=None, filenames=None, hint=None, unlock_patient=False):
pat = gmPerson.gmCurrentPatient()
if not pat.connected:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot add files to export area. No patient.'), beep = True)
return False
wx.BeginBusyCursor()
if parent is None:
parent = wx.GetApp().GetTopWindow()
if not pat.export_area.add_files(filenames = filenames, hint = hint):
wx.EndBusyCursor()
gmGuiHelpers.gm_show_error (
aMessage = _('Cannot import files into export area.'),
aTitle = _('Export area')
)
return False
wx.EndBusyCursor()
# remove non-temp files
tmp_dir = gmTools.gmPaths().tmp_dir
files2remove = [ f for f in filenames if not f.startswith(tmp_dir) ]
if len(files2remove) > 0:
do_delete = gmGuiHelpers.gm_show_question (
_( 'Successfully imported files into export area.\n'
'\n'
'Do you want to delete imported files from the filesystem ?\n'
'\n'
' %s'
) % '\n '.join(files2remove),
_('Removing files')
)
if do_delete:
for fname in files2remove:
gmTools.remove_file(fname)
else:
gmDispatcher.send(signal = 'statustext', msg = _('Imported files into export area.'), beep = True)
return True
#if unlock_patient:
# pat.locked = False
#----------------------
gmDispatcher.connect(signal = 'add_file_to_export_area', receiver = _add_file_to_export_area)
gmDispatcher.connect(signal = 'add_files_to_export_area', receiver = _add_files_to_export_area)
#============================================================
from Gnumed.wxGladeWidgets import wxgExportAreaExportToMediaDlg
class cExportAreaExportToMediaDlg(wxgExportAreaExportToMediaDlg.wxgExportAreaExportToMediaDlg):
def __init__(self, *args, **kwargs):
self.__patient = kwargs['patient']
del kwargs['patient']
self.__item_count = kwargs['item_count']
del kwargs['item_count']
super().__init__(*args, **kwargs)
self.__init_ui()
#--------------------------------------------------------
# event handling
#--------------------------------------------------------
def _on_reload_media_list_button_pressed(self, event):
event.Skip()
wx.BeginBusyCursor()
try:
self.__update_media_list()
finally:
wx.EndBusyCursor()
#--------------------------------------------------------
def _on_media_selected(self, event):
self.__update_ui_state()
#--------------------------------------------------------
def _on_media_deselected(self, event):
self.__update_ui_state()
#--------------------------------------------------------
def _on_use_subdirectory_toggled(self, event):
event.Skip()
self.__update_ui_state()
#--------------------------------------------------------
def _on_open_directory_button_pressed(self, event):
event.Skip()
path = self.__calc_path()
if not os.path.isdir(path):
return
gmMimeLib.call_viewer_on_file(path, block = False)
#--------------------------------------------------------
def _on_clear_directory_button_pressed(self, event):
event.Skip()
path = self.__calc_path()
if not os.path.isdir(path):
return
delete_data = gmGuiHelpers.gm_show_question (
title = _('Clearing out a directory'),
question = _(
'Do you really want to delete all existing data\n'
'from the following directory ?\n'
'\n'
' %s\n'
'\n'
'Note, this can NOT be reversed without backups.'
) % path,
cancel_button = False
)
if delete_data:
gmTools.rm_dir_content(path)
self.__update_ui_state()
#--------------------------------------------------------
def _on_save2media_button_pressed(self, event):
event.Skip()
path = self.__calc_path()
if path is None:
return # no media selected, should not happen
if path == -2: # not mounted, should not happen
return
if path == -1: # optical drive
if self.__burn_script is None:
return # no burn script, should not happen
self.EndModal(wx.ID_SAVE)
#--------------------------------------------------------
# internal API
#--------------------------------------------------------
def __init_ui(self):
msg = _(
'\n'
'Number of entries to export: %s\n'
'\n'
'Patient: %s\n'
'\n'
'Select the media to export onto below.\n'
) % (
self.__item_count,
self.__patient['description_gender']
)
self._LBL_header.Label = msg
self._LCTRL_removable_media.set_columns([_('Type'), _('Medium'), _('Details')])
self._LCTRL_removable_media.set_column_widths([wx.LIST_AUTOSIZE, wx.LIST_AUTOSIZE])
self._LCTRL_removable_media.set_resize_column()
self._LCTRL_removable_media.select_callback = self._on_media_selected
self._LCTRL_removable_media.deselect_callback = self._on_media_deselected
self.__update_media_list()
self.__update_ui_state()
#--------------------------------------------------------
def __calc_path(self):
media = self._LCTRL_removable_media.get_selected_item_data(only_one = True)
if media is None:
return None
if media['type'] == 'cd':
return -1
if media['is_mounted'] is False:
return -2
mnt_path = media['mountpoint']
if self._CHBOX_use_subdirectory.IsChecked():
return os.path.join(mnt_path, self.__patient.subdir_name)
return mnt_path
#--------------------------------------------------------
def __update_media_list(self):
self._LCTRL_removable_media.remove_items_safely()
items = []
data = []
found, self.__burn_script = gmShellAPI.detect_external_binary('gm-burn_doc')
# USB / MMC drives
removable_partitions = gmTools.enumerate_removable_partitions()
for key in removable_partitions:
part = removable_partitions[key]
if part['is_mounted'] is False:
continue
items.append ([
part['bus'].upper(),
_('%s (%s %s) - %s free') % (
part['fs_label'],
part['vendor'],
part['model'],
gmTools.size2str(part['bytes_free'])
),
_('%s (%s): %s in %s on %s') % (
part['mountpoint'],
gmTools.size2str(part['size_in_bytes']),
part['fs_type'],
part['partition'],
part['device']
)
])
data.append(part)
for key in removable_partitions:
part = removable_partitions[key]
if part['is_mounted'] is True:
continue
items.append ([
part['bus'].upper(),
'%s (%s %s)' % (
part['fs_label'],
part['vendor'],
part['model']
),
_('%s on %s, not mounted') % (
part['partition'],
part['device']
)
])
data.append(part)
# optical drives: CD/DVD/BD
optical_writers = gmTools.enumerate_optical_writers()
for cdrw in optical_writers:
items.append ([
cdrw['type'].upper(),
cdrw['model'],
cdrw['device']
])
data.append(cdrw)
self._LCTRL_removable_media.set_string_items(items)
self._LCTRL_removable_media.set_data(data)
self._LCTRL_removable_media.set_column_widths()
self._BTN_save2media.Disable()
#--------------------------------------------------------
def __update_ui_state(self):
media = self._LCTRL_removable_media.get_selected_item_data(only_one = True)
if media is None:
self._BTN_save2media.Disable()
self._BTN_open_directory.Disable()
self._BTN_clear_directory.Disable()
self._CHBOX_encrypt.Disable()
self._CHBOX_use_subdirectory.Disable()
self._LBL_directory.Label = ''
self._LBL_dir_is_empty.Label = ''
return
if media['type'] == 'cd':
self._BTN_open_directory.Disable()
self._BTN_clear_directory.Disable()
self._LBL_directory.Label = ''
if self.__burn_script is None:
self._BTN_save2media.Disable()
self._CHBOX_use_subdirectory.Disable()
self._CHBOX_encrypt.Disable()
self._LBL_dir_is_empty.Label = _('helper <gm-burn_doc(.bat)> not found')
else:
self._BTN_save2media.Enable()
self._CHBOX_use_subdirectory.Enable()
self._CHBOX_encrypt.Enable()
self._LBL_dir_is_empty.Label = ''
return
if media['is_mounted'] is False:
self._BTN_save2media.Disable()
self._BTN_open_directory.Disable()
self._BTN_clear_directory.Disable()
self._CHBOX_use_subdirectory.Disable()
self._CHBOX_encrypt.Disable()
self._LBL_directory.Label = ''
self._LBL_dir_is_empty.Label = _('media not mounted')
return
self._BTN_save2media.Enable()
self._CHBOX_use_subdirectory.Enable()
self._CHBOX_encrypt.Enable()
path = self.__calc_path()
self._LBL_directory.Label = path + os.sep
is_empty = gmTools.dir_is_empty(directory = path)
if is_empty is True:
self._LBL_dir_is_empty.Label = ''
self._BTN_open_directory.Enable()
self._BTN_clear_directory.Disable()
elif is_empty is False:
self._LBL_dir_is_empty.Label = _('directory contains data')
self._BTN_open_directory.Enable()
self._BTN_clear_directory.Enable()
else: # we don't know, say, use_subdir and subdir does not yet exist
self._LBL_dir_is_empty.Label = ''
self._BTN_open_directory.Disable()
self._BTN_clear_directory.Disable()
#============================================================
from Gnumed.wxGladeWidgets import wxgExportAreaSaveAsDlg
class cExportAreaSaveAsDlg(wxgExportAreaSaveAsDlg.wxgExportAreaSaveAsDlg):
def __init__(self, *args, **kwargs):
self.__patient = kwargs['patient']
del kwargs['patient']
self.__item_count = kwargs['item_count']
del kwargs['item_count']
super().__init__(*args, **kwargs)
self.__init_ui()
#--------------------------------------------------------
# event handlers
#--------------------------------------------------------
def _on_use_subdirectory_toggled(self, event):
event.Skip()
self.__update_ui_state()
#--------------------------------------------------------
def _on_save_as_encrypted_toggled(self, event):
event.Skip()
self.__update_ui_state()
#--------------------------------------------------------
def _on_select_directory_button_pressed(self, event):
event.Skip()
curr_path = self._LBL_directory.Label.rstrip(os.sep).rstrip('/')
if not os.path.isdir(curr_path):
curr_path = os.path.join(gmTools.gmPaths().home_dir, 'gnumed')
msg = _('Select directory where to save the archive or files.')
dlg = wx.DirDialog(self, message = msg, defaultPath = curr_path, style = wx.DD_DEFAULT_STYLE)# | wx.DD_DIR_MUST_EXIST)
choice = dlg.ShowModal()
selected_path = dlg.GetPath().rstrip(os.sep).rstrip('/')
dlg.DestroyLater()
if choice != wx.ID_OK:
return
self._LBL_directory.Label = selected_path + os.sep
self.__update_ui_state()
#--------------------------------------------------------
def _on_open_directory_button_pressed(self, event):
event.Skip()
path = self._LBL_directory.Label.strip().rstrip(os.sep).rstrip('/')
if not os.path.isdir(path):
return
gmMimeLib.call_viewer_on_file(path, block = False)
#--------------------------------------------------------
def _on_clear_directory_button_pressed(self, event):
event.Skip()
path = self._LBL_directory.Label.strip().rstrip(os.sep).rstrip('/')
if not os.path.isdir(path):
return
delete_data = gmGuiHelpers.gm_show_question (
title = _('Clearing out a directory'),
question = _(
'Do you really want to delete all existing data\n'
'from the following directory ?\n'
'\n'
' %s\n'
'\n'
'Note, this can NOT be reversed without backups.'
) % path,
cancel_button = False
)
if delete_data:
gmTools.rm_dir_content(path)
self.__update_ui_state()
#--------------------------------------------------------
def _on_save_archive_button_pressed(self, event):
event.Skip()
self.EndModal(wx.ID_SAVE)
#--------------------------------------------------------
# internal API
#--------------------------------------------------------
def __init_ui(self):
msg = ('\n' + _('Number of entries to save: %s') + '\n\n' + _('Patient: %s') + '\n') % (
self.__item_count,
self.__patient['description_gender']
)
self._LBL_header.Label = msg
self._LBL_directory.Label = os.path.join(gmTools.gmPaths().home_dir, 'gnumed', self.__patient.subdir_name) + os.sep
self.__update_ui_state()
#--------------------------------------------------------
def __update_ui_state(self):
subdir_name = self.__patient.subdir_name
path = self._LBL_directory.Label.strip().rstrip(os.sep).rstrip('/')
if self._CHBOX_use_subdirectory.IsChecked():
# add subdir if needed
if not path.endswith(subdir_name):
path = os.path.join(path, subdir_name)
self._LBL_directory.Label = path + os.sep
else:
# remove subdir if there
if path.endswith(subdir_name):
path = path[:-len(subdir_name)].rstrip(os.sep).rstrip('/')
self._LBL_directory.Label = path + os.sep
if self._CHBOX_encrypt.IsChecked():
self._CHBOX_convert2pdf.Enable()
else:
self._CHBOX_convert2pdf.Disable()
is_empty = gmTools.dir_is_empty(directory = path)
if is_empty is True:
self._LBL_dir_is_empty.Label = ''
self._BTN_open_directory.Disable()
self._BTN_clear_directory.Disable()
self._BTN_save_files.Enable()
self._BTN_save_archive.Enable()
elif is_empty is False:
self._LBL_dir_is_empty.Label = _('directory contains data')
self._BTN_open_directory.Enable()
self._BTN_clear_directory.Enable()
self._BTN_save_files.Disable()
self._BTN_save_archive.Disable()
else: # we don't know, say, use_subdir and subdir does not yet exist
self._LBL_dir_is_empty.Label = ''
self._BTN_open_directory.Disable()
self._BTN_clear_directory.Disable()
self._BTN_save_files.Enable()
self._BTN_save_archive.Enable()
self.Layout()
#============================================================
from Gnumed.wxGladeWidgets import wxgExportAreaPluginPnl
class cExportAreaPluginPnl(wxgExportAreaPluginPnl.wxgExportAreaPluginPnl, gmRegetMixin.cRegetOnPaintMixin):
"""Panel holding a number of items for further processing.
Acts on the current patient.
Used as notebook page."""
def __init__(self, *args, **kwargs):
wxgExportAreaPluginPnl.wxgExportAreaPluginPnl.__init__(self, *args, **kwargs)
gmRegetMixin.cRegetOnPaintMixin.__init__(self)
self.__init_ui()
self.__register_interests()
#--------------------------------------------------------
# event handling
#--------------------------------------------------------
def __register_interests(self):
gmDispatcher.connect(signal = 'pre_patient_unselection', receiver = self._on_pre_patient_unselection)
# gmDispatcher.connect(signal = u'post_patient_selection', receiver = self._schedule_data_reget)
gmDispatcher.connect(signal = 'gm_table_mod', receiver = self._on_table_mod)
#--------------------------------------------------------
def _on_pre_patient_unselection(self):
self._LCTRL_items.set_string_items([])
#--------------------------------------------------------
def _on_table_mod(self, *args, **kwargs):
if kwargs['table'] != 'clin.export_item':
return
pat = gmPerson.gmCurrentPatient()
if not pat.connected:
return
if kwargs['pk_identity'] != pat.ID:
return
self._schedule_data_reget()
#--------------------------------------------------------
def _on_list_item_selected(self, event):
event.Skip()
#--------------------------------------------------------
def _on_show_item_button_pressed(self, event):
event.Skip()
item = self._LCTRL_items.get_selected_item_data(only_one = True)
if item is None:
return
item.display_via_mime(block = False)
#--------------------------------------------------------
def _on_add_items_button_pressed(self, event):
event.Skip()
dlg = wx.FileDialog (
parent = self,
message = _("Select files to add to the export area"),
defaultDir = os.path.expanduser(os.path.join('~', 'gnumed')),
style = wx.FD_OPEN | wx.FD_FILE_MUST_EXIST | wx.FD_MULTIPLE | wx.FD_PREVIEW
)
choice = dlg.ShowModal()
fnames = dlg.GetPaths()
dlg.DestroyLater()
if choice != wx.ID_OK:
return
if not gmPerson.gmCurrentPatient().export_area.add_files(fnames):
gmGuiHelpers.gm_show_error (
title = _('Adding files to export area'),
error = _('Cannot add (some of) the following files to the export area:\n%s ') % '\n '.join(fnames)
)
#--------------------------------------------------------
def _on_add_directory_button_pressed(self, event):
event.Skip()
dlg = wx.DirDialog (
parent = self,
message = _("Select directory to add to the export area"),
defaultPath = os.path.expanduser(os.path.join('~', 'gnumed')),
style = wx.DD_DEFAULT_STYLE | wx.DD_DIR_MUST_EXIST
)
choice = dlg.ShowModal()
path = dlg.GetPath()
dlg.DestroyLater()
if choice != wx.ID_OK:
return
if not gmPerson.gmCurrentPatient().export_area.add_path(path):
gmGuiHelpers.gm_show_error (
title = _('Adding path to export area'),
error = _('Cannot add the following path to the export area:\n%s ') % path
)
#--------------------------------------------------------
def _on_add_from_archive_button_pressed(self, event):
event.Skip()
selected_docs = gmDocumentWidgets.manage_documents (
parent = self,
msg = _('Select the documents to be put into the export area:'),
single_selection = False
)
if selected_docs is None:
return
gmPerson.gmCurrentPatient().export_area.add_documents(documents = selected_docs)
#--------------------------------------------------------
def _on_clipboard_items_button_pressed(self, event):
event.Skip()
clip = gmGuiHelpers.clipboard2file(check_for_filename = True)
if clip is None:
return
if clip is False:
return
if not gmPerson.gmCurrentPatient().export_area.add_file(filename = clip, hint = _('clipboard')):
gmGuiHelpers.gm_show_error (
title = _('Loading clipboard item (saved to file) into export area'),
error = _('Cannot add the following clip to the export area:\n%s ') % clip
)
#--------------------------------------------------------
def _on_scan_items_button_pressed(self, event):
event.Skip()
scans = gmDocumentWidgets.acquire_images_from_capture_device(calling_window = self)
if scans is None:
return
if not gmPerson.gmCurrentPatient().export_area.add_files(scans, _('scan')):
gmGuiHelpers.gm_show_error (
title = _('Scanning files into export area'),
error = _('Cannot add (some of) the following scans to the export area:\n%s ') % '\n '.join(fnames)
)
#--------------------------------------------------------
def _on_remove_items_button_pressed(self, event):
event.Skip()
items = self._LCTRL_items.get_selected_item_data(only_one = False)
if len(items) == 0:
return
really_delete = gmGuiHelpers.gm_show_question (
title = _('Deleting document from export area.'),
question = _('Really remove %s selected document(s)\nfrom the patient export area ?') % len(items)
)
if not really_delete:
return
for item in items:
gmPerson.gmCurrentPatient().export_area.remove_item(item)
#--------------------------------------------------------
def _on_print_items_button_pressed(self, event):
event.Skip()
items = self._LCTRL_items.get_selected_item_data(only_one = False)
if len(items) == 0:
return
files2print = []
for item in items:
files2print.append(item.save_to_file())
if len(files2print) == 0:
return
jobtype = 'export_area'
printed = gmPrinting.print_files(filenames = files2print, jobtype = jobtype, verbose = _cfg.get(option = 'debug'))
if not printed:
gmGuiHelpers.gm_show_error (
aMessage = _('Error printing documents.'),
aTitle = _('Printing [%s]') % jobtype
)
return False
self.__save_soap_note(soap = _('Printed:\n - %s') % '\n - '.join([ i['description'] for i in items ]))
return True
#--------------------------------------------------------
def _on_remote_print_button_pressed(self, event):
event.Skip()
items = self._LCTRL_items.get_selected_item_data(only_one = False)
if len(items) == 0:
return
for item in items:
item.is_print_job = True
gmDispatcher.send(signal = 'statustext', msg = _('Item(s) moved to Print Center.'))
#--------------------------------------------------------
def _on_save_items_button_pressed(self, event):
event.Skip()
items = self.__get_items_to_work_on(_('Saving entries'))
if items is None:
return
pat = gmPerson.gmCurrentPatient()
dlg = cExportAreaSaveAsDlg(self, -1, patient = pat, item_count = len(items))
choice = dlg.ShowModal()
path = dlg._LBL_directory.Label
generate_metadata = dlg._CHBOX_generate_metadata.IsChecked()
use_subdir = dlg._CHBOX_use_subdirectory.IsChecked()
encrypt = dlg._CHBOX_encrypt.IsChecked()
convert2pdf = dlg._CHBOX_convert2pdf.IsChecked()
dlg.DestroyLater()
if choice == wx.ID_CANCEL:
return
if choice == wx.ID_SAVE:
create_archive = True
elif choice == wx.ID_OK:
create_archive = False
else:
raise Exception('invalid return')
if create_archive:
export_dir = path
zip_file = self.__export_as_zip (
gmTools.coalesce (
value2test = encrypt,
value2return = _('Saving entries as encrypted ZIP archive'),
return_instead = _('Saving entries as unencrypted ZIP archive')
),
items = items,
encrypt = encrypt
)
if zip_file is None:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot save: aborted or error.'))
return
gmTools.mkdir(export_dir)
final_zip_file = shutil.move(zip_file, export_dir)
gmDispatcher.send(signal = 'statustext', msg = _('Saved entries into [%s]') % final_zip_file)
target = final_zip_file
else:
export_dir = self.__export_as_files (
gmTools.coalesce (
value2test = encrypt,
value2return = _('Saving entries as encrypted files'),
return_instead = _('Saving entries as unencrypted files')
),
base_dir = path,
items = items,
encrypt = encrypt,
with_metadata = generate_metadata,
convert2pdf = convert2pdf
)
if export_dir is None:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot save: aborted or error.'))
return
gmDispatcher.send(signal = 'statustext', msg = _('Saved entries into [%s]') % export_dir)
target = export_dir
self.__save_soap_note(soap = _('Saved from export area to [%s]:\n - %s') % (
target,
'\n - '.join([ i['description'] for i in items ])
))
self.__browse_patient_data(export_dir)
# remove_entries ?
return True
# cleanup - ask !
# - files corresponding to DIR/DIR CONTENT entries
# - entries in export area
# remove_items = gmGuiHelpers.gm_show_question (
# title = _('Creating zip archive'),
# question = _(
# 'Zip archive created as:\n'
# '\n'
# ' [%s]\n'
# '\n'
# 'Remove archived entries from export area ?'
# ) % zip_file,
# cancel_button = False
# )
# if remove_items:
# exp_area.remove_items(items = items)
# return True
#--------------------------------------------------------
def _on_export_items_button_pressed(self, event):
event.Skip()
items = self.__get_items_to_work_on(_('Exporting entries'))
if items is None:
return
# export dialog
pat = gmPerson.gmCurrentPatient()
dlg = cExportAreaExportToMediaDlg(self, -1, patient = pat, item_count = len(items))
choice = dlg.ShowModal()
media = dlg._LCTRL_removable_media.get_selected_item_data(only_one = True)
use_subdir = dlg._CHBOX_use_subdirectory.IsChecked()
encrypt = dlg._CHBOX_encrypt.IsChecked()
dlg.DestroyLater()
if choice == wx.ID_CANCEL:
return
# export the files
if media['type'] == 'cd':
base_dir = gmTools.mk_sandbox_dir(prefix = 'iso-')
else:
base_dir = media['mountpoint']
if use_subdir:
dir2save2 = os.path.join(base_dir, pat.subdir_name)
else:
dir2save2 = base_dir
export_dir = self.__export_as_files (
gmTools.coalesce(encrypt, _('Exporting encrypted entries'), _('Exporting entries')),
base_dir = dir2save2,
items = items,
encrypt = encrypt,
with_metadata = True
)
if export_dir is None:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot export: aborted or error.'))
return
if media['type'] == 'cd':
if not self.__burn_dir_to_disk(base_dir = base_dir):
return
gmDispatcher.send(signal = 'statustext', msg = _('Entries successfully burned to disk.'))
self.__save_soap_note(soap = _('Burned onto CD/DVD:\n - %s') % '\n - '.join([ i['description'] for i in items ]))
else:
gmDispatcher.send(signal = 'statustext', msg = _('Exported entries into [%s]') % export_dir)
self.__save_soap_note(soap = _('Exported onto removable media:\n - %s') % '\n - '.join([ i['description'] for i in items ]))
self.__browse_patient_data(dir2save2, encrypted = encrypt, archive = False, has_metadata = True)
# remove_entries ?
return True
#--------------------------------------------------------
def _on_archive_items_button_pressed(self, event):
print("Event handler '_on_archive_items_button_pressed' not implemented!")
event.Skip()
#--------------------------------------------------------
def _on_mail_items_button_pressed(self, event):
event.Skip()
_log.debug('gm-mail_doc(.bat) API: "MAIL-PROGRAM PRAXIS-VCF ZIP-ARCHIVE"')
found, external_cmd = gmShellAPI.detect_external_binary('gm-mail_doc')
if not found:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot send e-mail: <gm-mail_doc(.bat)> not found'))
return False
zip_file = self.__export_as_zip (
_('Mailing documents as zip archive'),
encrypt = True
)
if zip_file is None:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot send e-mail: no archive created.'))
return False
prax = gmPraxis.gmCurrentPraxisBranch()
args = [external_cmd, prax.vcf, zip_file]
success, ret_code, stdout = gmShellAPI.run_process(cmd_line = args, verbose = _cfg.get(option = 'debug'))
if not success:
gmGuiHelpers.gm_show_error (
aMessage = _('Error mailing documents.'),
aTitle = _('Mailing documents')
)
return False
#self.__save_soap_note(soap = _('Mailed:\n - %s') % '\n - '.join([ i['description'] for i in items ]))
self.__save_soap_note(soap = _('Mailed export area content.'))
return True
#--------------------------------------------------------
def _on_fax_items_button_pressed(self, event):
event.Skip()
_log.debug('gm-fax_doc(.bat) API: "FAX-PROGRAM FAXNUMBER-OR-<EMPTY> LIST-OF-FILES-TO-FAX" (any file type !)')
found, external_cmd = gmShellAPI.detect_external_binary('gm-fax_doc')
if not found:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot send fax: <gm-fax_doc(.bat)> not found'))
return False
items = self._LCTRL_items.get_selected_item_data(only_one = False)
if len(items) == 0:
items = self._LCTRL_items.get_item_data()
if len(items) == 0:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot send fax: no items'))
return None
if len(items) > 1:
# ask, might be a lot
process_all = gmGuiHelpers.gm_show_question (
title = _('Faxing documents'),
question = _('You have not selected any entries.\n\nSend fax with all %s entries ?') % len(items),
cancel_button = False
)
if not process_all:
return None
return False
files2fax = []
for item in items:
files2fax.append(item.save_to_file())
fax_number = wx.GetTextFromUser (
_('Please enter the fax number here !\n\n'
'It can be left empty if the external\n'
'fax software knows how to get the number.'),
caption = _('Faxing documents'),
parent = self,
centre = True
)
if fax_number == '':
fax_number = 'EMPTY'
args = [external_cmd, fax_number, ' '.join(files2fax)]
success, ret_code, stdout = gmShellAPI.run_process(cmd_line = args, verbose = _cfg.get(option = 'debug'))
if not success:
gmGuiHelpers.gm_show_error (
aMessage = _('Error faxing documents to\n\n %s') % fax_number,
aTitle = _('Faxing documents')
)
return False
self.__save_soap_note(soap = _('Faxed to [%s]:\n - %s') % (fax_number, '\n - '.join([ i['description'] for i in items ])))
return True
#--------------------------------------------------------
def repopulate_ui(self):
self._populate_with_data()
#--------------------------------------------------------
# internal API
#--------------------------------------------------------
def __init_ui(self):
self._LCTRL_items.set_columns([_('By'), _('When'), _('Description')])
self._BTN_archive_items.Disable()
# there's no GetToolTipText() in wx2.8
self.__mail_script_exists, path = gmShellAPI.detect_external_binary(binary = r'gm-mail_doc')
if not self.__mail_script_exists:
self._BTN_mail_items.Disable()
tt = self._BTN_mail_items.GetToolTipText() + '\n\n' + _('<gm-mail_doc(.bat) not found>')
self._BTN_mail_items.SetToolTip(tt)
self.__fax_script_exists, path = gmShellAPI.detect_external_binary(binary = r'gm-fax_doc')
if not self.__fax_script_exists:
self._BTN_fax_items.Disable()
tt = self._BTN_fax_items.GetToolTipText() + '\n\n' + _('<gm-fax_doc(.bat) not found>')
self._BTN_fax_items.SetToolTip(tt)
# this is now handled one level down in the UI
# self.__burn_script_exists, path = gmShellAPI.detect_external_binary(binary = r'gm-burn_doc')
# if not self.__burn_script_exists:
# self._BTN_burn_items.Disable()
# tt = self._BTN_burn_items.GetToolTipText() + '\n\n' + _('<gm-burn_doc(.bat) not found>')
# self._BTN_burn_items.SetToolTip(tt)
# make me and listctrl file drop targets
dt = gmGuiHelpers.cFileDropTarget(target = self)
self.SetDropTarget(dt)
dt = gmGuiHelpers.cFileDropTarget(on_drop_callback = self._drop_target_consume_filenames)
self._LCTRL_items.SetDropTarget(dt)
#--------------------------------------------------------
def __save_soap_note(self, soap=None):
if soap.strip() == '':
return
emr = gmPerson.gmCurrentPatient().emr
epi = emr.add_episode(episode_name = 'administrative', is_open = False)
emr.add_clin_narrative (
soap_cat = None,
note = soap,
episode = epi
)
#--------------------------------------------------------
def __export_as_files(self, msg_title, base_dir=None, encrypt=False, with_metadata=False, items=None, convert2pdf=False):
data_pwd = None
if encrypt:
data_pwd = self.__get_password(msg_title)
if data_pwd is None:
_log.debug('user aborted by not providing the same password twice')
gmDispatcher.send(signal = 'statustext', msg = _('Password not provided twice. Aborting.'))
return None
wx.BeginBusyCursor()
try:
exp_area = gmPerson.gmCurrentPatient().export_area
if with_metadata:
export_dir = exp_area.export(base_dir = base_dir, items = items, passphrase = data_pwd)
else:
export_dir = exp_area.dump_items_to_disk(base_dir = base_dir, items = items, passphrase = data_pwd, convert2pdf = convert2pdf)
finally:
wx.EndBusyCursor()
if export_dir is None:
gmGuiHelpers.gm_show_error (
aMessage = _('Error exporting entries.'),
aTitle = msg_title
)
return None
return export_dir
#--------------------------------------------------------
def __export_as_zip(self, msg_title, encrypt=True, items=None):
# get password
zip_pwd = None
if encrypt:
zip_pwd = self.__get_password(msg_title)
if zip_pwd is None:
_log.debug('user aborted by not providing the same password twice')
gmDispatcher.send(signal = 'statustext', msg = _('Password not provided twice. Aborting.'))
return None
# create archive
wx.BeginBusyCursor()
zip_file = None
try:
exp_area = gmPerson.gmCurrentPatient().export_area
zip_file = exp_area.export_as_zip(passphrase = zip_pwd, items = items)
except Exception:
_log.exception('cannot create zip file')
wx.EndBusyCursor()
if zip_file is None:
gmGuiHelpers.gm_show_error (
aMessage = _('Error creating zip file.'),
aTitle = msg_title
)
return zip_file
#--------------------------------------------------------
def __get_password(self, msg_title):
while True:
data_pwd = wx.GetPasswordFromUser (
message = _(
'Enter passphrase to protect the data with.\n'
'\n'
'(minimum length: 5, trailing blanks will be stripped)'
),
caption = msg_title
)
# minimal weakness check
data_pwd = data_pwd.rstrip()
if len(data_pwd) > 4:
break
retry = gmGuiHelpers.gm_show_question (
title = msg_title,
question = _(
'Insufficient passphrase.\n'
'\n'
'(minimum length: 5, trailing blanks will be stripped)\n'
'\n'
'Enter another passphrase ?'
)
)
if not retry:
# user changed her mind
return None
# confidentiality
gmLog2.add_word2hide(data_pwd)
# reget password
while True:
data_pwd4comparison = wx.GetPasswordFromUser (
message = _(
'Once more enter passphrase to protect the data with.\n'
'\n'
'(this will protect you from typos)\n'
'\n'
'Abort by leaving empty.'
),
caption = msg_title
)
data_pwd4comparison = data_pwd4comparison.rstrip()
if data_pwd4comparison == '':
# user changed her mind ...
return None
if data_pwd == data_pwd4comparison:
break
gmGuiHelpers.gm_show_error (
error = _(
'Passphrases do not match.\n'
'\n'
'Retry, or abort with an empty passphrase.'
),
title = msg_title
)
return data_pwd
#--------------------------------------------------------
def __get_items_to_work_on(self, msg_title):
items = self._LCTRL_items.get_selected_item_data(only_one = False)
if len(items) > 0:
return items
items = self._LCTRL_items.get_item_data()
if len(items) == 0:
gmDispatcher.send(signal = 'statustext', msg = _('Export area empty. Nothing to do.'))
return None
if len(items) == 1:
return items
process_all = gmGuiHelpers.gm_show_question (
title = msg_title,
question = _('You have not selected any entries.\n\nReally use all %s entries ?') % len(items),
cancel_button = False
)
if process_all:
return items
return None
#--------------------------------------------------------
def __burn_dir_to_disk(self, base_dir):
_log.debug('gm-burn_doc(.bat) API: "DIRECTORY-TO-BURN-FROM"')
found, burn_cmd = gmShellAPI.detect_external_binary('gm-burn_doc')
if not found:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot burn to disk: Helper not found.')) # should not happen
return False
args = [burn_cmd, base_dir]
wx.BeginBusyCursor()
try:
success, ret_code, stdout = gmShellAPI.run_process(cmd_line = args, verbose = _cfg.get(option = 'debug'))
finally:
wx.EndBusyCursor()
if success:
return True
gmGuiHelpers.gm_show_error (
aMessage = _('Error burning documents to CD/DVD.'),
aTitle = _('Burning documents')
)
return False
#--------------------------------------------------------
def __browse_patient_data(self, base_dir):
msg = _('Documents saved into:\n\n %s') % base_dir
browse_index = gmGuiHelpers.gm_show_question (
title = _('Browsing patient data excerpt'),
question = msg + '\n\n' + _('Browse saved entries ?'),
cancel_button = False
)
if not browse_index:
return
if os.path.isfile(os.path.join(base_dir, 'index.html')):
gmNetworkTools.open_url_in_browser(url = 'file://%s' % os.path.join(base_dir, 'index.html'))
return
gmMimeLib.call_viewer_on_file(base_dir, block = False)
#--------------------------------------------------------
# file drop target API
#--------------------------------------------------------
def _drop_target_consume_filenames(self, filenames):
pat = gmPerson.gmCurrentPatient()
if not pat.connected:
gmDispatcher.send(signal = 'statustext', msg = _('Cannot accept new documents. No active patient.'))
return
# dive into folders dropped onto us and extract files (one level deep only)
real_filenames = []
for pathname in filenames:
try:
files = os.listdir(pathname)
gmDispatcher.send(signal='statustext', msg=_('Extracting files from folder [%s] ...') % pathname)
for file in files:
fullname = os.path.join(pathname, file)
if not os.path.isfile(fullname):
continue
real_filenames.append(fullname)
except OSError:
real_filenames.append(pathname)
if not pat.export_area.add_files(real_filenames, hint = _('Drag&Drop')):
gmGuiHelpers.gm_show_error (
title = _('Adding files to export area'),
error = _('Cannot add (some of) the following files to the export area:\n%s ') % '\n '.join(real_filenames)
)
#--------------------------------------------------------
# reget mixin API
#
# remember to call
# self._schedule_data_reget()
# whenever you learn of data changes from database
# listener threads, dispatcher signals etc.
#--------------------------------------------------------
def _populate_with_data(self):
pat = gmPerson.gmCurrentPatient()
if not pat.connected:
return True
items = pat.export_area.items
self._LCTRL_items.set_string_items ([
[ i['created_by'],
gmDateTime.pydt_strftime(i['created_when'], '%Y %b %d %H:%M'),
i['description']
] for i in items
])
self._LCTRL_items.set_column_widths([wx.LIST_AUTOSIZE, wx.LIST_AUTOSIZE, wx.LIST_AUTOSIZE])
self._LCTRL_items.set_data(items)
self._LCTRL_items.SetFocus()
return True
#============================================================
from Gnumed.wxGladeWidgets import wxgPrintMgrPluginPnl
class cPrintMgrPluginPnl(wxgPrintMgrPluginPnl.wxgPrintMgrPluginPnl, gmRegetMixin.cRegetOnPaintMixin):
"""Panel holding print jobs.
Used as notebook page."""
def __init__(self, *args, **kwargs):
wxgPrintMgrPluginPnl.wxgPrintMgrPluginPnl.__init__(self, *args, **kwargs)
gmRegetMixin.cRegetOnPaintMixin.__init__(self)
self.__init_ui()
self.__register_interests()
#--------------------------------------------------------
# event handling
#--------------------------------------------------------
def __register_interests(self):
gmDispatcher.connect(signal = 'pre_patient_unselection', receiver = self._on_pre_patient_unselection)
gmDispatcher.connect(signal = 'post_patient_selection', receiver = self._on_post_patient_selection)
gmDispatcher.connect(signal = 'gm_table_mod', receiver = self._on_table_mod)
#--------------------------------------------------------
def _on_pre_patient_unselection(self):
self._RBTN_active_patient_only.Enable(False)
self._RBTN_all_patients.Value = True
self._BTN_export_printouts.Enable(False)
#--------------------------------------------------------
def _on_post_patient_selection(self):
self._RBTN_active_patient_only.Enable(True)
self._BTN_export_printouts.Enable(True)
#--------------------------------------------------------
def _on_table_mod(self, *args, **kwargs):
if kwargs['table'] != 'clin.export_item':
return
if self._RBTN_all_patients.Value is True:
self._schedule_data_reget()
return
pat = gmPerson.gmCurrentPatient()
if not pat.connected:
return
if kwargs['pk_identity'] != pat.ID:
return
self._schedule_data_reget()
#--------------------------------------------------------
def _on_all_patients_selected(self, event):
event.Skip()
self._schedule_data_reget()
#--------------------------------------------------------
def _on_active_patient_only_selected(self, event):
event.Skip()
self._schedule_data_reget()
#--------------------------------------------------------
def _on_view_button_pressed(self, event):
event.Skip()
printout = self._LCTRL_printouts.get_selected_item_data(only_one = True)
if printout is None:
return
printout.display_via_mime(block = False)
#--------------------------------------------------------
def _on_print_button_pressed(self, event):
event.Skip()
printouts = self._LCTRL_printouts.get_selected_item_data(only_one = False)
if len(printouts) == 0:
return
files2print = []
for printout in printouts:
files2print.append(printout.save_to_file())
if len(files2print) == 0:
return
jobtype = 'print_manager'
printed = gmPrinting.print_files(filenames = files2print, jobtype = jobtype, verbose = _cfg.get(option = 'debug'))
if not printed:
gmGuiHelpers.gm_show_error (
aMessage = _('Error printing documents.'),
aTitle = _('Printing [%s]') % jobtype
)
return False
return True
#--------------------------------------------------------
def _on_export_button_pressed(self, event):
event.Skip()
pat = gmPerson.gmCurrentPatient()
if not pat.connected:
return
printouts = self._LCTRL_printouts.get_selected_item_data(only_one = False)
for printout in printouts:
printout.is_print_job = False
#--------------------------------------------------------
def _on_delete_button_pressed(self, event):
event.Skip()
printouts = self._LCTRL_printouts.get_selected_item_data(only_one = False)
if len(printouts) == 0:
return
if len(printouts) > 1:
really_delete = gmGuiHelpers.gm_show_question (
title = _('Deleting document from export area.'),
question = _('Really remove %s selected document(s)\nfrom the patient export area ?') % len(printouts)
)
if not really_delete:
return
for printout in printouts:
gmExportArea.delete_export_item(pk_export_item = printout['pk_export_item'])
#--------------------------------------------------------
# internal API
#--------------------------------------------------------
def __init_ui(self):
self._BTN_export_printouts.Enable(False)
#--------------------------------------------------------
# reget mixin API
#--------------------------------------------------------
def _populate_with_data(self):
if self._RBTN_all_patients.Value is True:
columns = [_('Patient'), _('Provider'), _('Description')]
printouts = gmExportArea.get_print_jobs(order_by = 'pk_identity, description')
items = [[
'%s, %s (%s)' % (
p['lastnames'],
p['firstnames'],
p['gender']
),
p['created_by'],
p['description']
] for p in printouts ]
else:
pat = gmPerson.gmCurrentPatient()
if pat.connected:
columns = [_('Provider'), _('Created'), _('Description')]
printouts = pat.export_area.get_printouts(order_by = 'created_when, description')
items = [[
p['created_by'],
gmDateTime.pydt_strftime(p['created_when'], '%Y %b %d %H:%M'),
p['description']
] for p in printouts ]
else:
columns = [_('Patient'), _('Provider'), _('Description')]
printouts = gmExportArea.get_print_jobs(order_by = 'pk_identity, description')
items = [[
'%s, %s (%s)' % (
p['lastnames'],
p['firstnames'],
p['gender']
),
p['created_by'],
p['description']
] for p in printouts ]
self._LCTRL_printouts.set_columns(columns)
self._LCTRL_printouts.set_string_items(items)
self._LCTRL_printouts.set_column_widths([wx.LIST_AUTOSIZE, wx.LIST_AUTOSIZE, wx.LIST_AUTOSIZE])
self._LCTRL_printouts.set_data(printouts)
self._LCTRL_printouts.SetFocus()
return True
|