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
|
"""GNUmed immunisation/vaccination widgets.
Modelled after Richard Terry's design document.
copyright: authors
"""
#======================================================================
__author__ = "R.Terry, S.J.Tan, K.Hilbert"
__license__ = "GPL v2 or later (details at http://www.gnu.org)"
import sys, time, logging
import wx
if __name__ == '__main__':
sys.path.insert(0, '../../')
from Gnumed.pycommon import gmDispatcher
from Gnumed.pycommon import gmMatchProvider
from Gnumed.pycommon import gmTools
from Gnumed.pycommon import gmI18N
from Gnumed.pycommon import gmCfg
from Gnumed.pycommon import gmDateTime
from Gnumed.pycommon import gmNetworkTools
from Gnumed.pycommon import gmPrinting
from Gnumed.business import gmPerson
from Gnumed.business import gmVaccination
from Gnumed.business import gmPraxis
from Gnumed.business import gmProviderInbox
from Gnumed.wxpython import gmPhraseWheel
from Gnumed.wxpython import gmTerryGuiParts
from Gnumed.wxpython import gmRegetMixin
from Gnumed.wxpython import gmGuiHelpers
from Gnumed.wxpython import gmEditArea
from Gnumed.wxpython import gmListWidgets
from Gnumed.wxpython import gmFormWidgets
from Gnumed.wxpython import gmMacro
_log = logging.getLogger('gm.vaccination')
#======================================================================
# vaccination indication related widgets
#----------------------------------------------------------------------
def manage_vaccination_indications(parent=None):
if parent is None:
parent = wx.GetApp().GetTopWindow()
#------------------------------------------------------------
def refresh(lctrl):
inds = gmVaccination.get_indications(order_by = 'l10n_description')
items = [ [
i['l10n_description'],
gmTools.coalesce (
i['atcs_single_indication'],
u'',
u'%s'
),
gmTools.coalesce (
i['atcs_combi_indication'],
u'',
u'%s'
),
u'%s' % i['id']
] for i in inds ]
lctrl.set_string_items(items)
lctrl.set_data(inds)
#------------------------------------------------------------
gmListWidgets.get_choices_from_list (
parent = parent,
msg = _('\nConditions preventable by vaccination as currently known to GNUmed.\n'),
caption = _('Showing vaccination preventable conditions.'),
columns = [ _('Condition'), _('ATCs: single-condition vaccines'), _('ATCs: multi-condition vaccines'), u'#' ],
single_selection = True,
refresh_callback = refresh
)
#----------------------------------------------------------------------
def pick_indications(parent=None, msg=None, right_column=None, picks=None):
if parent is None:
parent = wx.GetApp().GetTopWindow()
if msg is None:
msg = _('Pick the relevant indications.')
if right_column is None:
right_columns = ['This vaccine']
else:
right_columns = [right_column]
picker = gmListWidgets.cItemPickerDlg(parent, -1, msg = msg)
picker.set_columns(columns = [_('Known indications')], columns_right = right_columns)
inds = gmVaccination.get_indications(order_by = 'l10n_description')
picker.set_choices (
choices = [ i['l10n_description'] for i in inds ],
data = inds
)
picker.set_picks (
picks = [ p['l10n_description'] for p in picks ],
data = picks
)
result = picker.ShowModal()
if result == wx.ID_CANCEL:
picker.Destroy()
return None
picks = picker.picks
picker.Destroy()
return picks
#======================================================================
# vaccines related widgets
#----------------------------------------------------------------------
def edit_vaccine(parent=None, vaccine=None, single_entry=True):
ea = cVaccineEAPnl(parent = parent, id = -1)
ea.data = vaccine
ea.mode = gmTools.coalesce(vaccine, 'new', 'edit')
dlg = gmEditArea.cGenericEditAreaDlg2(parent = parent, id = -1, edit_area = ea, single_entry = single_entry)
dlg.SetTitle(gmTools.coalesce(vaccine, _('Adding new vaccine'), _('Editing vaccine')))
if dlg.ShowModal() == wx.ID_OK:
dlg.Destroy()
return True
dlg.Destroy()
return False
#----------------------------------------------------------------------
def manage_vaccines(parent=None):
if parent is None:
parent = wx.GetApp().GetTopWindow()
#------------------------------------------------------------
def delete(vaccine=None):
deleted = gmVaccination.delete_vaccine(vaccine = vaccine['pk_vaccine'])
if deleted:
return True
gmGuiHelpers.gm_show_info (
_(
'Cannot delete vaccine\n'
'\n'
' %s - %s (#%s)\n'
'\n'
'It is probably documented in a vaccination.'
) % (
vaccine['vaccine'],
vaccine['preparation'],
vaccine['pk_vaccine']
),
_('Deleting vaccine')
)
return False
#------------------------------------------------------------
def edit(vaccine=None):
return edit_vaccine(parent = parent, vaccine = vaccine, single_entry = True)
#------------------------------------------------------------
def refresh(lctrl):
vaccines = gmVaccination.get_vaccines(order_by = 'vaccine')
items = [ [
u'%s' % v['pk_brand'],
u'%s%s' % (
v['vaccine'],
gmTools.bool2subst (
v['is_fake_vaccine'],
u' (%s)' % _('fake'),
u''
)
),
v['preparation'],
#u'%s (%s)' % (v['route_abbreviation'], v['route_description']),
#gmTools.bool2subst(v['is_live'], gmTools.u_checkmark_thin, u'', u'?'),
gmTools.coalesce(v['atc_code'], u''),
u'%s%s' % (
gmTools.coalesce(v['min_age'], u'?'),
gmTools.coalesce(v['max_age'], u'?', u' - %s'),
),
gmTools.coalesce(v['comment'], u'')
] for v in vaccines ]
lctrl.set_string_items(items)
lctrl.set_data(vaccines)
#------------------------------------------------------------
gmListWidgets.get_choices_from_list (
parent = parent,
msg = _('\nThe vaccines currently known to GNUmed.\n'),
caption = _('Showing vaccines.'),
#columns = [ u'#', _('Brand'), _('Preparation'), _(u'Route'), _('Live'), _('ATC'), _('Age range'), _('Comment') ],
columns = [ u'#', _('Brand'), _('Preparation'), _('ATC'), _('Age range'), _('Comment') ],
single_selection = True,
refresh_callback = refresh,
edit_callback = edit,
new_callback = edit,
delete_callback = delete
)
#----------------------------------------------------------------------
class cBatchNoPhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
gmPhraseWheel.cPhraseWheel.__init__(self, *args, **kwargs)
context = {
u'ctxt_vaccine': {
u'where_part': u'AND pk_vaccine = %(pk_vaccine)s',
u'placeholder': u'pk_vaccine'
}
}
query = u"""
SELECT data, field_label, list_label FROM (
SELECT distinct on (field_label)
data,
field_label,
list_label,
rank
FROM ((
-- batch_no by vaccine
SELECT
batch_no AS data,
batch_no AS field_label,
batch_no || ' (' || vaccine || ')' AS list_label,
1 as rank
FROM
clin.v_pat_vaccinations
WHERE
batch_no %(fragment_condition)s
%(ctxt_vaccine)s
) UNION ALL (
-- batch_no for any vaccine
SELECT
batch_no AS data,
batch_no AS field_label,
batch_no || ' (' || vaccine || ')' AS list_label,
2 AS rank
FROM
clin.v_pat_vaccinations
WHERE
batch_no %(fragment_condition)s
)
) AS matching_batch_nos
) as unique_matches
ORDER BY rank, list_label
LIMIT 25
"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries = query, context = context)
mp.setThresholds(1, 2, 3)
self.matcher = mp
self.unset_context(context = u'pk_vaccine')
self.SetToolTipString(_('Enter or select the batch/lot number of the vaccine used.'))
self.selection_only = False
#----------------------------------------------------------------------
class cVaccinePhraseWheel(gmPhraseWheel.cPhraseWheel):
def __init__(self, *args, **kwargs):
gmPhraseWheel.cPhraseWheel.__init__(self, *args, **kwargs)
# consider ATCs in ref.branded_drug and vacc_indication
query = u"""
SELECT data, list_label, field_label FROM (
SELECT DISTINCT ON (data)
data,
list_label,
field_label
FROM ((
-- fragment -> vaccine
SELECT
pk_vaccine AS data,
vaccine || ' (' || array_to_string(l10n_indications, ', ') || ')' AS list_label,
vaccine AS field_label
FROM
clin.v_vaccines
WHERE
vaccine %(fragment_condition)s
) union all (
-- fragment -> localized indication -> vaccines
SELECT
pk_vaccine AS data,
vaccine || ' (' || array_to_string(l10n_indications, ', ') || ')' AS list_label,
vaccine AS field_label
FROM
clin.v_indications4vaccine
WHERE
l10n_indication %(fragment_condition)s
) union all (
-- fragment -> indication -> vaccines
SELECT
pk_vaccine AS data,
vaccine || ' (' || array_to_string(indications, ', ') || ')' AS list_label,
vaccine AS field_label
FROM
clin.v_indications4vaccine
WHERE
indication %(fragment_condition)s
)
) AS distinct_total
) AS total
ORDER by list_label
LIMIT 25
"""
mp = gmMatchProvider.cMatchProvider_SQL2(queries = query)
mp.setThresholds(1, 2, 3)
self.matcher = mp
self.selection_only = True
#------------------------------------------------------------------
def _data2instance(self):
return gmVaccination.cVaccine(aPK_obj = self.GetData())
#----------------------------------------------------------------------
from Gnumed.wxGladeWidgets import wxgVaccineEAPnl
class cVaccineEAPnl(wxgVaccineEAPnl.wxgVaccineEAPnl, gmEditArea.cGenericEditAreaMixin):
def __init__(self, *args, **kwargs):
try:
data = kwargs['vaccine']
del kwargs['vaccine']
except KeyError:
data = None
wxgVaccineEAPnl.wxgVaccineEAPnl.__init__(self, *args, **kwargs)
gmEditArea.cGenericEditAreaMixin.__init__(self)
self.mode = 'new'
self.data = data
if data is not None:
self.mode = 'edit'
#----------------------------------------------------------------
def __refresh_indications(self):
self._TCTRL_indications.SetValue(u'')
if len(self.__indications) == 0:
return
self._TCTRL_indications.SetValue(u'- ' + u'\n- '.join([ i['l10n_description'] for i in self.__indications ]))
#----------------------------------------------------------------
# generic Edit Area mixin API
#----------------------------------------------------------------
def _valid_for_save(self):
has_errors = False
if self._PRW_brand.GetValue().strip() == u'':
has_errors = True
self._PRW_brand.display_as_valid(False)
else:
self._PRW_brand.display_as_valid(True)
if self._PRW_atc.GetValue().strip() in [u'', u'J07']:
self._PRW_atc.display_as_valid(True)
else:
if self._PRW_atc.GetData() is None:
self._PRW_atc.display_as_valid(True)
else:
has_errors = True
self._PRW_atc.display_as_valid(False)
val = self._PRW_age_min.GetValue().strip()
if val == u'':
self._PRW_age_min.display_as_valid(True)
else:
if gmDateTime.str2interval(val) is None:
has_errors = True
self._PRW_age_min.display_as_valid(False)
else:
self._PRW_age_min.display_as_valid(True)
val = self._PRW_age_max.GetValue().strip()
if val == u'':
self._PRW_age_max.display_as_valid(True)
else:
if gmDateTime.str2interval(val) is None:
has_errors = True
self._PRW_age_max.display_as_valid(False)
else:
self._PRW_age_max.display_as_valid(True)
# are we editing ?
ask_user = (self.mode == 'edit')
# is this vaccine in use ?
ask_user = (ask_user and self.data.is_in_use)
# a change ...
ask_user = ask_user and (
# ... of brand ...
(self.data['pk_brand'] != self._PRW_route.GetData())
or
# ... or indications ?
(set(self.data['pk_indications']) != set([ i['id'] for i in self.__indications ]))
)
if ask_user:
do_it = gmGuiHelpers.gm_show_question (
aTitle = _('Saving vaccine'),
aMessage = _(
u'This vaccine is already in use:\n'
u'\n'
u' "%s"\n'
u' (%s)\n'
u'\n'
u'Are you absolutely positively sure that\n'
u'you really want to edit this vaccine ?\n'
'\n'
u'This will change the vaccine name and/or target\n'
u'conditions in each patient this vaccine was\n'
u'used in to document a vaccination with.\n'
) % (
self._PRW_brand.GetValue().strip(),
u', '.join(self.data['l10n_indications'])
)
)
if not do_it:
has_errors = True
return (has_errors is False)
#----------------------------------------------------------------
def _save_as_new(self):
if len(self.__indications) == 0:
gmGuiHelpers.gm_show_info (
aTitle = _('Saving vaccine'),
aMessage = _('You must select at least one indication.')
)
return False
# save the data as a new instance
data = gmVaccination.create_vaccine (
pk_brand = self._PRW_brand.GetData(),
brand_name = self._PRW_brand.GetValue(),
pk_indications = [ i['id'] for i in self.__indications ]
)
# data['is_live'] = self._CHBOX_live.GetValue()
val = self._PRW_age_min.GetValue().strip()
if val != u'':
data['min_age'] = gmDateTime.str2interval(val)
val = self._PRW_age_max.GetValue().strip()
if val != u'':
data['max_age'] = gmDateTime.str2interval(val)
val = self._TCTRL_comment.GetValue().strip()
if val != u'':
data['comment'] = val
data.save()
drug = data.brand
drug['is_fake_brand'] = self._CHBOX_fake.GetValue()
val = self._PRW_atc.GetData()
if val is not None:
if val != u'J07':
drug['atc'] = val.strip()
drug.save()
# must be done very late or else the property access
# will refresh the display such that later field
# access will return empty values
self.data = data
return True
#----------------------------------------------------------------
def _save_as_update(self):
if len(self.__indications) == 0:
gmGuiHelpers.gm_show_info (
aTitle = _('Saving vaccine'),
aMessage = _('You must select at least one indication.')
)
return False
drug = self.data.brand
drug['brand'] = self._PRW_brand.GetValue().strip()
drug['is_fake_brand'] = self._CHBOX_fake.GetValue()
val = self._PRW_atc.GetData()
if val is not None:
if val != u'J07':
drug['atc'] = val.strip()
drug.save()
# the validator already asked for changes so just do it
self.data.set_indications(pk_indications = [ i['id'] for i in self.__indications ])
# self.data['is_live'] = self._CHBOX_live.GetValue()
val = self._PRW_age_min.GetValue().strip()
if val != u'':
self.data['min_age'] = gmDateTime.str2interval(val)
if val != u'':
self.data['max_age'] = gmDateTime.str2interval(val)
val = self._TCTRL_comment.GetValue().strip()
if val != u'':
self.data['comment'] = val
self.data.save()
return True
#----------------------------------------------------------------
def _refresh_as_new(self):
self._PRW_brand.SetText(value = u'', data = None, suppress_smarts = True)
# self._CHBOX_live.SetValue(True)
self._CHBOX_fake.SetValue(False)
self._PRW_atc.SetText(value = u'', data = None, suppress_smarts = True)
self._PRW_age_min.SetText(value = u'', data = None, suppress_smarts = True)
self._PRW_age_max.SetText(value = u'', data = None, suppress_smarts = True)
self._TCTRL_comment.SetValue(u'')
self.__indications = []
self.__refresh_indications()
self._PRW_brand.SetFocus()
#----------------------------------------------------------------
def _refresh_from_existing(self):
self._PRW_brand.SetText(value = self.data['vaccine'], data = self.data['pk_brand'])
# self._CHBOX_live.SetValue(self.data['is_live'])
self._CHBOX_fake.SetValue(self.data['is_fake_vaccine'])
self._PRW_atc.SetText(value = self.data['atc_code'], data = self.data['atc_code'])
if self.data['min_age'] is None:
self._PRW_age_min.SetText(value = u'', data = None, suppress_smarts = True)
else:
self._PRW_age_min.SetText (
value = gmDateTime.format_interval(self.data['min_age'], gmDateTime.acc_years),
data = self.data['min_age']
)
if self.data['max_age'] is None:
self._PRW_age_max.SetText(value = u'', data = None, suppress_smarts = True)
else:
self._PRW_age_max.SetText (
value = gmDateTime.format_interval(self.data['max_age'], gmDateTime.acc_years),
data = self.data['max_age']
)
self._TCTRL_comment.SetValue(gmTools.coalesce(self.data['comment'], u''))
self.__indications = self.data.indications
self.__refresh_indications()
self._PRW_brand.SetFocus()
#----------------------------------------------------------------
def _refresh_as_new_from_existing(self):
self._refresh_as_new()
#----------------------------------------------------------------
#----------------------------------------------------------------
def _on_manage_indications_button_pressed(self, event):
event.Skip()
picks = pick_indications (
parent = self,
msg = _('Pick the diseases this vaccine protects against.'),
right_column = _('This vaccine'),
picks = self.__indications
)
if picks is None:
return
self.__indications = picks
self.__refresh_indications()
#======================================================================
# vaccination related widgets
#----------------------------------------------------------------------
def print_vaccinations(parent=None):
if parent is None:
parent = wx.GetApp().GetTopWindow()
vaccs_printout = gmFormWidgets.generate_form_from_template (
parent = parent,
template_types = [
u'Medical statement',
u'vaccination report',
u'vaccination record',
u'reminder'
],
edit = False
)
if vaccs_printout is None:
return False
return gmFormWidgets.act_on_generated_forms (
parent = parent,
forms = [vaccs_printout],
jobtype = 'vaccinations',
episode_name = u'administrative',
review_copy_as_normal = True
)
#----------------------------------------------------------------------
def edit_vaccination(parent=None, vaccination=None, single_entry=True):
ea = cVaccinationEAPnl(parent = parent, id = -1)
ea.data = vaccination
ea.mode = gmTools.coalesce(vaccination, 'new', 'edit')
dlg = gmEditArea.cGenericEditAreaDlg2(parent = parent, id = -1, edit_area = ea, single_entry = single_entry)
dlg.SetTitle(gmTools.coalesce(vaccination, _('Adding new vaccinations'), _('Editing vaccination')))
if dlg.ShowModal() == wx.ID_OK:
dlg.Destroy()
return True
dlg.Destroy()
if not single_entry:
return True
return False
#----------------------------------------------------------------------
def manage_vaccinations(parent=None):
pat = gmPerson.gmCurrentPatient()
emr = pat.get_emr()
if parent is None:
parent = wx.GetApp().GetTopWindow()
#------------------------------------------------------------
def browse2schedules(vaccination=None):
dbcfg = gmCfg.cCfgSQL()
url = dbcfg.get2 (
option = 'external.urls.vaccination_plans',
workplace = gmPraxis.gmCurrentPraxisBranch().active_workplace,
bias = 'user',
default = u'http://www.bundesaerztekammer.de/downloads/STIKOEmpf2011.pdf'
)
gmNetworkTools.open_url_in_browser(url = url)
return False
#------------------------------------------------------------
def print_vaccs(vaccination=None):
print_vaccinations(parent = parent)
return False
#------------------------------------------------------------
def add_recall(vaccination=None):
if vaccination is None:
subject = _('vaccination recall')
else:
subject = _('vaccination recall (%s)') % vaccination['vaccine']
recall = gmProviderInbox.create_inbox_message (
message_type = _('Vaccination'),
subject = subject,
patient = pat.ID,
staff = None
)
if vaccination is not None:
recall['data'] = _('Existing vaccination:\n\n%s') % u'\n'.join(vaccination.format(
with_indications = True,
with_comment = True,
with_reaction = False,
date_format = '%Y %b %d'
))
recall.save()
from Gnumed.wxpython import gmProviderInboxWidgets
gmProviderInboxWidgets.edit_inbox_message (
parent = parent,
message = recall,
single_entry = False
)
return False
#------------------------------------------------------------
def get_tooltip(vaccination):
if vaccination is None:
return None
return u'\n'.join(vaccination.format (
with_indications = True,
with_comment = True,
with_reaction = True,
date_format = '%Y %b %d'
))
#------------------------------------------------------------
def edit(vaccination=None):
return edit_vaccination(parent = parent, vaccination = vaccination, single_entry = (vaccination is not None))
#------------------------------------------------------------
def delete(vaccination=None):
gmVaccination.delete_vaccination(vaccination = vaccination['pk_vaccination'])
return True
#------------------------------------------------------------
def refresh(lctrl):
vaccs = emr.get_vaccinations(order_by = 'date_given DESC, pk_vaccination')
items = [ [
gmDateTime.pydt_strftime(v['date_given'], '%Y %b %d'),
v['vaccine'],
u', '.join(v['l10n_indications']),
v['batch_no'],
gmTools.coalesce(v['site'], u''),
gmTools.coalesce(v['reaction'], u''),
gmTools.coalesce(v['comment'], u'')
] for v in vaccs ]
lctrl.set_string_items(items)
lctrl.set_data(vaccs)
#------------------------------------------------------------
gmListWidgets.get_choices_from_list (
parent = parent,
msg = _('\nComplete vaccination history for this patient.\n'),
caption = _('Showing vaccinations.'),
columns = [ _('Date'), _('Vaccine'), _(u'Intended to protect from'), _('Batch'), _('Site'), _('Reaction'), _('Comment') ],
single_selection = True,
refresh_callback = refresh,
new_callback = edit,
edit_callback = edit,
delete_callback = delete,
list_tooltip_callback = get_tooltip,
left_extra_button = (_('Print'), _('Print vaccinations or recalls.'), print_vaccs),
middle_extra_button = (_('Recall'), _('Add a recall for a vaccination'), add_recall),
right_extra_button = (_('Vx schedules'), _('Open a browser showing vaccination schedules.'), browse2schedules)
)
#----------------------------------------------------------------------
from Gnumed.wxGladeWidgets import wxgVaccinationEAPnl
class cVaccinationEAPnl(wxgVaccinationEAPnl.wxgVaccinationEAPnl, gmEditArea.cGenericEditAreaMixin):
"""
- warn on apparent duplicates
- ask if "missing" (= previous, non-recorded) vaccinations
should be estimated and saved (add note "auto-generated")
Batch No (http://www.fao.org/docrep/003/v9952E12.htm)
"""
def __init__(self, *args, **kwargs):
try:
data = kwargs['vaccination']
del kwargs['vaccination']
except KeyError:
data = None
wxgVaccinationEAPnl.wxgVaccinationEAPnl.__init__(self, *args, **kwargs)
gmEditArea.cGenericEditAreaMixin.__init__(self)
self.mode = 'new'
self.data = data
if data is not None:
self.mode = 'edit'
self.__init_ui()
#----------------------------------------------------------------
def __init_ui(self):
# adjust phrasewheels etc
self._PRW_vaccine.add_callback_on_lose_focus(self._on_PRW_vaccine_lost_focus)
self._PRW_provider.selection_only = False
self._PRW_reaction.add_callback_on_lose_focus(self._on_PRW_reaction_lost_focus)
if self.mode == 'edit':
self._BTN_select_indications.Disable()
#----------------------------------------------------------------
def _on_PRW_vaccine_lost_focus(self):
vaccine = self._PRW_vaccine.GetData(as_instance=True)
# if we are editing we do not allow using indications rather than a vaccine
if self.mode == u'edit':
if vaccine is None:
self._PRW_batch.unset_context(context = 'pk_vaccine')
self.__indications = []
else:
self._PRW_batch.set_context(context = 'pk_vaccine', val = vaccine['pk_vaccine'])
self.__indications = vaccine.indications
# we are entering a new vaccination
else:
if vaccine is None:
self._PRW_batch.unset_context(context = 'pk_vaccine')
self.__indications = []
self._BTN_select_indications.Enable()
else:
self._PRW_batch.set_context(context = 'pk_vaccine', val = vaccine['pk_vaccine'])
self.__indications = vaccine.indications
self._BTN_select_indications.Disable()
self.__refresh_indications()
#----------------------------------------------------------------
def _on_PRW_reaction_lost_focus(self):
if self._PRW_reaction.GetValue().strip() == u'':
self._BTN_report.Enable(False)
else:
self._BTN_report.Enable(True)
#----------------------------------------------------------------
def __refresh_indications(self):
self._TCTRL_indications.SetValue(u'')
if len(self.__indications) == 0:
return
self._TCTRL_indications.SetValue(u'- ' + u'\n- '.join([ i['l10n_description'] for i in self.__indications ]))
#----------------------------------------------------------------
# generic Edit Area mixin API
#----------------------------------------------------------------
def _valid_for_save(self):
has_errors = False
if not self._PRW_date_given.is_valid_timestamp(allow_empty = False):
has_errors = True
vaccine = self._PRW_vaccine.GetData(as_instance = True)
# we are editing, require vaccine rather than indications
if self.mode == u'edit':
if vaccine is None:
has_errors = True
self._PRW_vaccine.display_as_valid(False)
else:
self._PRW_vaccine.display_as_valid(True)
# we are creating, allow either vaccine or indications
else:
if vaccine is None:
if len(self.__indications) == 0:
self._PRW_vaccine.display_as_valid(False)
has_errors = True
else:
self._PRW_vaccine.display_as_valid(True)
else:
self._PRW_vaccine.display_as_valid(True)
if self._PRW_batch.GetValue().strip() == u'':
has_errors = True
self._PRW_batch.display_as_valid(False)
else:
self._PRW_batch.display_as_valid(True)
if self._PRW_episode.GetValue().strip() == u'':
self._PRW_episode.SetText(value = _('prevention'))
return (has_errors is False)
#----------------------------------------------------------------
def _save_as_new(self):
vaccine = self._PRW_vaccine.GetData()
if vaccine is None:
data = self.__save_new_from_indications()
else:
data = self.__save_new_from_vaccine(vaccine = vaccine)
# must be done very late or else the property access
# will refresh the display such that later field
# access will return empty values
self.data = data
return True
#----------------------------------------------------------------
def __save_new_from_indications(self):
if len(self.__indications) == 0:
gmGuiHelpers.gm_show_info (
aTitle = _('Saving vaccination'),
aMessage = _('You must select at least one indication.')
)
return False
vaccine = gmVaccination.map_indications2generic_vaccine(indications = [ i['description'] for i in self.__indications ])
if vaccine is None:
for ind in self.__indications:
vaccine = gmVaccination.map_indications2generic_vaccine(indications = [ind['description']])
data = self.__save_new_from_vaccine(vaccine = vaccine['pk_vaccine'])
else:
data = self.__save_new_from_vaccine(vaccine = vaccine['pk_vaccine'])
return data
#----------------------------------------------------------------
def __save_new_from_vaccine(self, vaccine=None):
emr = gmPerson.gmCurrentPatient().get_emr()
data = emr.add_vaccination (
episode = self._PRW_episode.GetData(can_create = True, is_open = False),
vaccine = vaccine,
batch_no = self._PRW_batch.GetValue().strip()
)
if self._CHBOX_anamnestic.GetValue() is True:
data['soap_cat'] = u's'
else:
data['soap_cat'] = u'p'
data['date_given'] = self._PRW_date_given.GetData()
data['site'] = self._PRW_site.GetValue().strip()
data['pk_provider'] = self._PRW_provider.GetData()
data['reaction'] = self._PRW_reaction.GetValue().strip()
data['comment'] = self._TCTRL_comment.GetValue().strip()
data.save()
return data
#----------------------------------------------------------------
def _save_as_update(self):
if self._CHBOX_anamnestic.GetValue() is True:
self.data['soap_cat'] = u's'
else:
self.data['soap_cat'] = u'p'
self.data['date_given'] = self._PRW_date_given.GetData()
self.data['pk_vaccine'] = self._PRW_vaccine.GetData()
self.data['batch_no'] = self._PRW_batch.GetValue().strip()
self.data['pk_episode'] = self._PRW_episode.GetData(can_create = True, is_open = False)
self.data['site'] = self._PRW_site.GetValue().strip()
self.data['pk_provider'] = self._PRW_provider.GetData()
self.data['reaction'] = self._PRW_reaction.GetValue().strip()
self.data['comment'] = self._TCTRL_comment.GetValue().strip()
self.data.save()
return True
#----------------------------------------------------------------
def _refresh_as_new(self):
self._PRW_date_given.SetText(data = gmDateTime.pydt_now_here())
self._CHBOX_anamnestic.SetValue(False)
self._PRW_vaccine.SetText(value = u'', data = None, suppress_smarts = True)
self._PRW_batch.unset_context(context = 'pk_vaccine')
self._PRW_batch.SetValue(u'')
self._PRW_episode.SetText(value = u'', data = None, suppress_smarts = True)
self._PRW_site.SetValue(u'')
self._PRW_provider.SetData(data = None)
self._PRW_reaction.SetText(value = u'', data = None, suppress_smarts = True)
self._BTN_report.Enable(False)
self._TCTRL_comment.SetValue(u'')
self.__indications = []
self.__refresh_indications()
self._BTN_select_indications.Enable()
self._PRW_date_given.SetFocus()
#----------------------------------------------------------------
def _refresh_from_existing(self):
self._PRW_date_given.SetText(data = self.data['date_given'])
if self.data['soap_cat'] == u's':
self._CHBOX_anamnestic.SetValue(True)
else:
self._CHBOX_anamnestic.SetValue(False)
self._PRW_vaccine.SetText(value = self.data['vaccine'], data = self.data['pk_vaccine'])
self._PRW_batch.SetValue(self.data['batch_no'])
self._PRW_episode.SetData(data = self.data['pk_episode'])
self._PRW_site.SetValue(gmTools.coalesce(self.data['site'], u''))
self._PRW_provider.SetData(self.data['pk_provider'])
self._PRW_reaction.SetValue(gmTools.coalesce(self.data['reaction'], u''))
if self.data['reaction'] is None:
self._BTN_report.Enable(False)
else:
self._BTN_report.Enable(True)
self._TCTRL_comment.SetValue(gmTools.coalesce(self.data['comment'], u''))
self.__indications = self.data.vaccine.indications
self.__refresh_indications()
self._BTN_select_indications.Disable()
self._PRW_date_given.SetFocus()
#----------------------------------------------------------------
def _refresh_as_new_from_existing(self):
self._PRW_date_given.SetText(data = self.data['date_given'])
#self._CHBOX_anamnestic.SetValue(False)
self._PRW_vaccine.SetText(value = self.data['vaccine'], data = self.data['pk_vaccine'])
self._PRW_batch.set_context(context = 'pk_vaccine', val = self.data['pk_vaccine'])
self._PRW_batch.SetValue(u'')
self._PRW_episode.SetData(data = self.data['pk_episode'])
self._PRW_site.SetValue(gmTools.coalesce(self.data['site'], u''))
self._PRW_provider.SetData(self.data['pk_provider'])
self._PRW_reaction.SetValue(u'')
self._BTN_report.Enable(False)
self._TCTRL_comment.SetValue(u'')
self.__indications = self.data.vaccine.indications
self.__refresh_indications()
self._BTN_select_indications.Enable()
self._PRW_date_given.SetFocus()
#----------------------------------------------------------------
# event handlers
#----------------------------------------------------------------
def _on_report_button_pressed(self, event):
event.Skip()
dbcfg = gmCfg.cCfgSQL()
url = dbcfg.get2 (
option = u'external.urls.report_vaccine_ADR',
workplace = gmPraxis.gmCurrentPraxisBranch().active_workplace,
bias = u'user',
default = u'http://www.pei.de/cln_042/SharedDocs/Downloads/fachkreise/uaw/meldeboegen/b-ifsg-meldebogen,templateId=raw,property=publicationFile.pdf/b-ifsg-meldebogen.pdf'
)
if url.strip() == u'':
url = dbcfg.get2 (
option = u'external.urls.report_ADR',
workplace = gmPraxis.gmCurrentPraxisBranch().active_workplace,
bias = u'user'
)
gmNetworkTools.open_url_in_browser(url = url)
#----------------------------------------------------------------
def _on_add_vaccine_button_pressed(self, event):
edit_vaccine(parent = self, vaccine = None, single_entry = False)
# FIXME: could set newly generated vaccine here
#----------------------------------------------------------------
def _on_select_indications_button_pressed(self, event):
event.Skip()
picks = pick_indications (
parent = self,
msg = _('Pick the diseases this vaccination was given against.'),
right_column = _('This vaccine'),
picks = self.__indications
)
if picks is None:
return
self.__indications = picks
self.__refresh_indications()
#======================================================================
#======================================================================
#======================================================================
#======================================================================
class cImmunisationsPanel(wx.Panel, gmRegetMixin.cRegetOnPaintMixin):
def __init__(self, parent, id):
wx.Panel.__init__(self, parent, id, wx.DefaultPosition, wx.DefaultSize, wx.RAISED_BORDER)
gmRegetMixin.cRegetOnPaintMixin.__init__(self)
self.__pat = gmPerson.gmCurrentPatient()
# do this here so "import cImmunisationsPanel from gmVaccWidgets" works
self.ID_VaccinatedIndicationsList = wx.NewId()
self.ID_VaccinationsPerRegimeList = wx.NewId()
self.ID_MissingShots = wx.NewId()
self.ID_ActiveSchedules = wx.NewId()
self.__do_layout()
self.__register_interests()
self.__reset_ui_content()
#----------------------------------------------------
def __do_layout(self):
#-----------------------------------------------
# top part
#-----------------------------------------------
pnl_UpperCaption = gmTerryGuiParts.cHeadingCaption(self, -1, _(" IMMUNISATIONS "))
self.editarea = cVaccinationEditArea(self, -1, wx.DefaultPosition, wx.DefaultSize, wx.NO_BORDER)
#-----------------------------------------------
# middle part
#-----------------------------------------------
# divider headings below editing area
indications_heading = gmTerryGuiParts.cDividerCaption(self, -1, _("Indications"))
vaccinations_heading = gmTerryGuiParts.cDividerCaption(self, -1, _("Vaccinations"))
schedules_heading = gmTerryGuiParts.cDividerCaption(self, -1, _("Active Schedules"))
szr_MiddleCap = wx.BoxSizer(wx.HORIZONTAL)
szr_MiddleCap.Add(indications_heading, 4, wx.EXPAND)
szr_MiddleCap.Add(vaccinations_heading, 6, wx.EXPAND)
szr_MiddleCap.Add(schedules_heading, 10, wx.EXPAND)
# left list: indications for which vaccinations have been given
self.LBOX_vaccinated_indications = wx.ListBox(
parent = self,
id = self.ID_VaccinatedIndicationsList,
choices = [],
style = wx.LB_HSCROLL | wx.LB_NEEDED_SB | wx.SUNKEN_BORDER
)
self.LBOX_vaccinated_indications.SetFont(wx.Font(12,wx.SWISS, wx.NORMAL, wx.NORMAL, False, ''))
# right list: when an indication has been selected on the left
# display the corresponding vaccinations on the right
self.LBOX_given_shots = wx.ListBox(
parent = self,
id = self.ID_VaccinationsPerRegimeList,
choices = [],
style = wx.LB_HSCROLL | wx.LB_NEEDED_SB | wx.SUNKEN_BORDER
)
self.LBOX_given_shots.SetFont(wx.Font(12,wx.SWISS, wx.NORMAL, wx.NORMAL, False, ''))
self.LBOX_active_schedules = wx.ListBox (
parent = self,
id = self.ID_ActiveSchedules,
choices = [],
style = wx.LB_HSCROLL | wx.LB_NEEDED_SB | wx.SUNKEN_BORDER
)
self.LBOX_active_schedules.SetFont(wx.Font(12, wx.SWISS, wx.NORMAL, wx.NORMAL, False, ''))
szr_MiddleLists = wx.BoxSizer(wx.HORIZONTAL)
szr_MiddleLists.Add(self.LBOX_vaccinated_indications, 4, wx.EXPAND)
szr_MiddleLists.Add(self.LBOX_given_shots, 6, wx.EXPAND)
szr_MiddleLists.Add(self.LBOX_active_schedules, 10, wx.EXPAND)
#---------------------------------------------
# bottom part
#---------------------------------------------
missing_heading = gmTerryGuiParts.cDividerCaption(self, -1, _("Missing Immunisations"))
szr_BottomCap = wx.BoxSizer(wx.HORIZONTAL)
szr_BottomCap.Add(missing_heading, 1, wx.EXPAND)
self.LBOX_missing_shots = wx.ListBox (
parent = self,
id = self.ID_MissingShots,
choices = [],
style = wx.LB_HSCROLL | wx.LB_NEEDED_SB | wx.SUNKEN_BORDER
)
self.LBOX_missing_shots.SetFont(wx.Font(12, wx.SWISS, wx.NORMAL, wx.NORMAL, False, ''))
szr_BottomLists = wx.BoxSizer(wx.HORIZONTAL)
szr_BottomLists.Add(self.LBOX_missing_shots, 1, wx.EXPAND)
# alert caption
pnl_AlertCaption = gmTerryGuiParts.cAlertCaption(self, -1, _(' Alerts '))
#---------------------------------------------
# add all elements to the main background sizer
#---------------------------------------------
self.mainsizer = wx.BoxSizer(wx.VERTICAL)
self.mainsizer.Add(pnl_UpperCaption, 0, wx.EXPAND)
self.mainsizer.Add(self.editarea, 6, wx.EXPAND)
self.mainsizer.Add(szr_MiddleCap, 0, wx.EXPAND)
self.mainsizer.Add(szr_MiddleLists, 4, wx.EXPAND)
self.mainsizer.Add(szr_BottomCap, 0, wx.EXPAND)
self.mainsizer.Add(szr_BottomLists, 4, wx.EXPAND)
self.mainsizer.Add(pnl_AlertCaption, 0, wx.EXPAND)
self.SetAutoLayout(True)
self.SetSizer(self.mainsizer)
self.mainsizer.Fit(self)
#----------------------------------------------------
def __register_interests(self):
# wxPython events
wx.EVT_SIZE(self, self.OnSize)
wx.EVT_LISTBOX(self, self.ID_VaccinatedIndicationsList, self._on_vaccinated_indication_selected)
wx.EVT_LISTBOX_DCLICK(self, self.ID_VaccinationsPerRegimeList, self._on_given_shot_selected)
wx.EVT_LISTBOX_DCLICK(self, self.ID_MissingShots, self._on_missing_shot_selected)
# wx.EVT_RIGHT_UP(self.lb1, self.EvtRightButton)
# client internal signals
gmDispatcher.connect(signal= u'post_patient_selection', receiver=self._schedule_data_reget)
gmDispatcher.connect(signal= u'vaccinations_updated', receiver=self._schedule_data_reget)
#----------------------------------------------------
# event handlers
#----------------------------------------------------
def OnSize (self, event):
w, h = event.GetSize()
self.mainsizer.SetDimension (0, 0, w, h)
#----------------------------------------------------
def _on_given_shot_selected(self, event):
"""Paste previously given shot into edit area.
"""
self.editarea.set_data(aVacc=event.GetClientData())
#----------------------------------------------------
def _on_missing_shot_selected(self, event):
self.editarea.set_data(aVacc = event.GetClientData())
#----------------------------------------------------
def _on_vaccinated_indication_selected(self, event):
"""Update right hand middle list to show vaccinations given for selected indication."""
ind_list = event.GetEventObject()
selected_item = ind_list.GetSelection()
ind = ind_list.GetClientData(selected_item)
# clear list
self.LBOX_given_shots.Set([])
emr = self.__pat.get_emr()
shots = emr.get_vaccinations(indications = [ind])
# FIXME: use Set() for entire array (but problem with client_data)
for shot in shots:
if shot['is_booster']:
marker = 'B'
else:
marker = '#%s' % shot['seq_no']
label = '%s - %s: %s' % (marker, shot['date'].strftime('%m/%Y'), shot['vaccine'])
self.LBOX_given_shots.Append(label, shot)
#----------------------------------------------------
def __reset_ui_content(self):
# clear edit area
self.editarea.set_data()
# clear lists
self.LBOX_vaccinated_indications.Clear()
self.LBOX_given_shots.Clear()
self.LBOX_active_schedules.Clear()
self.LBOX_missing_shots.Clear()
#----------------------------------------------------
def _populate_with_data(self):
# clear lists
self.LBOX_vaccinated_indications.Clear()
self.LBOX_given_shots.Clear()
self.LBOX_active_schedules.Clear()
self.LBOX_missing_shots.Clear()
emr = self.__pat.get_emr()
t1 = time.time()
# populate vaccinated-indications list
# FIXME: consider adding virtual indication "most recent" to
# FIXME: display most recent of all indications as suggested by Syan
status, indications = emr.get_vaccinated_indications()
# FIXME: would be faster to use Set() but can't
# use Set(labels, client_data), and have to know
# line position in SetClientData :-(
for indication in indications:
self.LBOX_vaccinated_indications.Append(indication[1], indication[0])
# self.LBOX_vaccinated_indications.Set(lines)
# self.LBOX_vaccinated_indications.SetClientData(data)
print "vaccinated indications took", time.time()-t1, "seconds"
t1 = time.time()
# populate active schedules list
scheds = emr.get_scheduled_vaccination_regimes()
if scheds is None:
label = _('ERROR: cannot retrieve active vaccination schedules')
self.LBOX_active_schedules.Append(label)
elif len(scheds) == 0:
label = _('no active vaccination schedules')
self.LBOX_active_schedules.Append(label)
else:
for sched in scheds:
label = _('%s for %s (%s shots): %s') % (sched['regime'], sched['l10n_indication'], sched['shots'], sched['comment'])
self.LBOX_active_schedules.Append(label)
print "active schedules took", time.time()-t1, "seconds"
t1 = time.time()
# populate missing-shots list
missing_shots = emr.get_missing_vaccinations()
print "getting missing shots took", time.time()-t1, "seconds"
if missing_shots is None:
label = _('ERROR: cannot retrieve due/overdue vaccinations')
self.LBOX_missing_shots.Append(label, None)
return True
# due
due_template = _('%.0d weeks left: shot %s for %s in %s, due %s (%s)')
overdue_template = _('overdue %.0dyrs %.0dwks: shot %s for %s in schedule "%s" (%s)')
for shot in missing_shots['due']:
if shot['overdue']:
years, days_left = divmod(shot['amount_overdue'].days, 364.25)
weeks = days_left / 7
# amount_overdue, seq_no, indication, regime, vacc_comment
label = overdue_template % (
years,
weeks,
shot['seq_no'],
shot['l10n_indication'],
shot['regime'],
shot['vacc_comment']
)
self.LBOX_missing_shots.Append(label, shot)
else:
# time_left, seq_no, regime, latest_due, vacc_comment
label = due_template % (
shot['time_left'].days / 7,
shot['seq_no'],
shot['indication'],
shot['regime'],
shot['latest_due'].strftime('%m/%Y'),
shot['vacc_comment']
)
self.LBOX_missing_shots.Append(label, shot)
# booster
lbl_template = _('due now: booster for %s in schedule "%s" (%s)')
for shot in missing_shots['boosters']:
# indication, regime, vacc_comment
label = lbl_template % (
shot['l10n_indication'],
shot['regime'],
shot['vacc_comment']
)
self.LBOX_missing_shots.Append(label, shot)
print "displaying missing shots took", time.time()-t1, "seconds"
return True
#----------------------------------------------------
def _on_post_patient_selection(self, **kwargs):
return 1
# FIXME:
# if has_focus:
# wxCallAfter(self.__reset_ui_content)
# else:
# return 1
#----------------------------------------------------
def _on_vaccinations_updated(self, **kwargs):
return 1
# FIXME:
# if has_focus:
# wxCallAfter(self.__reset_ui_content)
# else:
# is_stale == True
# return 1
#======================================================================
# main
#----------------------------------------------------------------------
if __name__ == "__main__":
if len(sys.argv) < 2:
sys.exit()
if sys.argv[1] != u'test':
sys.exit()
app = wx.PyWidgetTester(size = (600, 600))
app.SetWidget(cATCPhraseWheel, -1)
app.MainLoop()
|