Package Gnumed :: Package wxpython :: Module gmMedicationWidgets
[frames] | no frames]

Source Code for Module Gnumed.wxpython.gmMedicationWidgets

   1  """GNUmed medication/substances handling widgets. 
   2  """ 
   3  #================================================================ 
   4  __version__ = "$Revision: 1.33 $" 
   5  __author__ = "Karsten Hilbert <Karsten.Hilbert@gmx.net>" 
   6   
   7  import logging, sys, os.path, webbrowser, decimal 
   8   
   9   
  10  import wx, wx.grid 
  11   
  12   
  13  if __name__ == '__main__': 
  14          sys.path.insert(0, '../../') 
  15  from Gnumed.pycommon import gmDispatcher, gmCfg, gmShellAPI, gmTools, gmDateTime 
  16  from Gnumed.pycommon import gmMatchProvider, gmI18N, gmPrinting, gmCfg2 
  17  from Gnumed.business import gmPerson, gmATC, gmSurgery, gmMedication, gmForms 
  18  from Gnumed.wxpython import gmGuiHelpers, gmRegetMixin, gmAuthWidgets, gmEditArea, gmMacro 
  19  from Gnumed.wxpython import gmCfgWidgets, gmListWidgets, gmPhraseWheel, gmFormWidgets 
  20  from Gnumed.wxpython import gmAllergyWidgets 
  21   
  22   
  23  _log = logging.getLogger('gm.ui') 
  24  _log.info(__version__) 
  25   
  26  #============================================================ 
  27  # generic drug database access 
  28  #============================================================ 
29 -def configure_drug_data_source(parent=None):
30 gmCfgWidgets.configure_string_from_list_option ( 31 parent = parent, 32 message = _( 33 '\n' 34 'Please select the default drug data source from the list below.\n' 35 '\n' 36 'Note that to actually use it you need to have the database installed, too.' 37 ), 38 option = 'external.drug_data.default_source', 39 bias = 'user', 40 default_value = None, 41 choices = gmMedication.drug_data_source_interfaces.keys(), 42 columns = [_('Drug data source')], 43 data = gmMedication.drug_data_source_interfaces.keys(), 44 caption = _('Configuring default drug data source') 45 )
46 #============================================================
47 -def get_drug_database(parent = None):
48 dbcfg = gmCfg.cCfgSQL() 49 50 default_db = dbcfg.get2 ( 51 option = 'external.drug_data.default_source', 52 workplace = gmSurgery.gmCurrentPractice().active_workplace, 53 bias = 'workplace' 54 ) 55 56 if default_db is None: 57 gmDispatcher.send('statustext', msg = _('No default drug database configured.'), beep = True) 58 configure_drug_data_source(parent = parent) 59 default_db = dbcfg.get2 ( 60 option = 'external.drug_data.default_source', 61 workplace = gmSurgery.gmCurrentPractice().active_workplace, 62 bias = 'workplace' 63 ) 64 if default_db is None: 65 gmGuiHelpers.gm_show_error ( 66 aMessage = _('There is no default drug database configured.'), 67 aTitle = _('Jumping to drug database') 68 ) 69 return None 70 71 try: 72 drug_db = gmMedication.drug_data_source_interfaces[default_db]() 73 except KeyError: 74 _log.error('faulty default drug data source configuration: %s', default_db) 75 configure_drug_data_source(parent = parent) 76 default_db = dbcfg.get2 ( 77 option = 'external.drug_data.default_source', 78 workplace = gmSurgery.gmCurrentPractice().active_workplace, 79 bias = 'workplace' 80 ) 81 if default_db is None: 82 return None 83 84 pat = gmPerson.gmCurrentPatient() 85 if pat.connected: 86 drug_db.patient = pat 87 88 return drug_db
89 #============================================================
90 -def jump_to_drug_database():
91 dbcfg = gmCfg.cCfgSQL() 92 drug_db = get_drug_database() 93 if drug_db is None: 94 return 95 drug_db.switch_to_frontend(blocking = False)
96 97 #============================================================
98 -def jump_to_ifap(import_drugs=False):
99 100 dbcfg = gmCfg.cCfgSQL() 101 102 ifap_cmd = dbcfg.get2 ( 103 option = 'external.ifap-win.shell_command', 104 workplace = gmSurgery.gmCurrentPractice().active_workplace, 105 bias = 'workplace', 106 default = 'wine "C:\Ifapwin\WIAMDB.EXE"' 107 ) 108 found, binary = gmShellAPI.detect_external_binary(ifap_cmd) 109 if not found: 110 gmDispatcher.send('statustext', msg = _('Cannot call IFAP via [%s].') % ifap_cmd) 111 return False 112 ifap_cmd = binary 113 114 if import_drugs: 115 transfer_file = os.path.expanduser(dbcfg.get2 ( 116 option = 'external.ifap-win.transfer_file', 117 workplace = gmSurgery.gmCurrentPractice().active_workplace, 118 bias = 'workplace', 119 default = '~/.wine/drive_c/Ifapwin/ifap2gnumed.csv' 120 )) 121 # file must exist for Ifap to write into it 122 try: 123 f = open(transfer_file, 'w+b').close() 124 except IOError: 125 _log.exception('Cannot create IFAP <-> GNUmed transfer file [%s]', transfer_file) 126 gmDispatcher.send('statustext', msg = _('Cannot create IFAP <-> GNUmed transfer file [%s].') % transfer_file) 127 return False 128 129 wx.BeginBusyCursor() 130 gmShellAPI.run_command_in_shell(command = ifap_cmd, blocking = import_drugs) 131 wx.EndBusyCursor() 132 133 if import_drugs: 134 # COMMENT: this file must exist PRIOR to invoking IFAP 135 # COMMENT: or else IFAP will not write data into it ... 136 try: 137 csv_file = open(transfer_file, 'rb') # FIXME: encoding 138 except: 139 _log.exception('cannot access [%s]', fname) 140 csv_file = None 141 142 if csv_file is not None: 143 import csv 144 csv_lines = csv.DictReader ( 145 csv_file, 146 fieldnames = u'PZN Handelsname Form Abpackungsmenge Einheit Preis1 Hersteller Preis2 rezeptpflichtig Festbetrag Packungszahl Packungsgr\xf6\xdfe'.split(), 147 delimiter = ';' 148 ) 149 pat = gmPerson.gmCurrentPatient() 150 emr = pat.get_emr() 151 # dummy episode for now 152 epi = emr.add_episode(episode_name = _('Current medication')) 153 for line in csv_lines: 154 narr = u'%sx %s %s %s (\u2258 %s %s) von %s (%s)' % ( 155 line['Packungszahl'].strip(), 156 line['Handelsname'].strip(), 157 line['Form'].strip(), 158 line[u'Packungsgr\xf6\xdfe'].strip(), 159 line['Abpackungsmenge'].strip(), 160 line['Einheit'].strip(), 161 line['Hersteller'].strip(), 162 line['PZN'].strip() 163 ) 164 emr.add_clin_narrative(note = narr, soap_cat = 's', episode = epi) 165 csv_file.close() 166 167 return True
168 169 #============================================================ 170 # ATC related widgets 171 #============================================================ 172
173 -def browse_atc_reference(parent=None):
174 175 if parent is None: 176 parent = wx.GetApp().GetTopWindow() 177 #------------------------------------------------------------ 178 def refresh(lctrl): 179 atcs = gmATC.get_reference_atcs() 180 181 items = [ [ 182 a['atc'], 183 a['term'], 184 u'%s' % gmTools.coalesce(a['ddd'], u''), 185 gmTools.coalesce(a['unit'], u''), 186 gmTools.coalesce(a['administrative_route'], u''), 187 gmTools.coalesce(a['comment'], u''), 188 a['version'], 189 a['lang'] 190 ] for a in atcs ] 191 lctrl.set_string_items(items) 192 lctrl.set_data(atcs)
193 #------------------------------------------------------------ 194 gmListWidgets.get_choices_from_list ( 195 parent = parent, 196 msg = _('\nThe ATC codes as known to GNUmed.\n'), 197 caption = _('Showing ATC codes.'), 198 columns = [ u'ATC', _('Term'), u'DDD', _('Unit'), _(u'Route'), _('Comment'), _('Version'), _('Language') ], 199 single_selection = True, 200 refresh_callback = refresh 201 ) 202 203 #============================================================
204 -def update_atc_reference_data():
205 206 dlg = wx.FileDialog ( 207 parent = None, 208 message = _('Choose an ATC import config file'), 209 defaultDir = os.path.expanduser(os.path.join('~', 'gnumed')), 210 defaultFile = '', 211 wildcard = "%s (*.conf)|*.conf|%s (*)|*" % (_('config files'), _('all files')), 212 style = wx.OPEN | wx.HIDE_READONLY | wx.FILE_MUST_EXIST 213 ) 214 215 result = dlg.ShowModal() 216 if result == wx.ID_CANCEL: 217 return 218 219 cfg_file = dlg.GetPath() 220 dlg.Destroy() 221 222 conn = gmAuthWidgets.get_dbowner_connection(procedure = _('importing ATC reference data')) 223 if conn is None: 224 return False 225 226 wx.BeginBusyCursor() 227 228 if gmATC.atc_import(cfg_fname = cfg_file, conn = conn): 229 gmDispatcher.send(signal = 'statustext', msg = _('Successfully imported ATC reference data.')) 230 else: 231 gmDispatcher.send(signal = 'statustext', msg = _('Importing ATC reference data failed.'), beep = True) 232 233 wx.EndBusyCursor() 234 return True
235 236 #============================================================ 237
238 -class cATCPhraseWheel(gmPhraseWheel.cPhraseWheel):
239
240 - def __init__(self, *args, **kwargs):
241 242 gmPhraseWheel.cPhraseWheel.__init__(self, *args, **kwargs) 243 244 query = u""" 245 246 SELECT DISTINCT ON (label) 247 atc_code, 248 label 249 FROM ( 250 251 SELECT 252 code as atc_code, 253 (code || ': ' || term || coalesce(' (' || ddd || unit || ')', '')) 254 AS label 255 FROM ref.atc 256 WHERE 257 term %(fragment_condition)s 258 OR 259 code %(fragment_condition)s 260 261 UNION ALL 262 263 SELECT 264 atc_code, 265 (atc_code || ': ' || description) 266 AS label 267 FROM ref.consumable_substance 268 WHERE 269 description %(fragment_condition)s 270 OR 271 atc_code %(fragment_condition)s 272 273 UNION ALL 274 275 SELECT 276 atc_code, 277 (atc_code || ': ' || description || ' (' || preparation || ')') 278 AS label 279 FROM ref.branded_drug 280 WHERE 281 description %(fragment_condition)s 282 OR 283 atc_code %(fragment_condition)s 284 285 -- it would be nice to be able to include clin.vacc_indication but that's hard to do in SQL 286 287 ) AS candidates 288 WHERE atc_code IS NOT NULL 289 ORDER BY label 290 LIMIT 50""" 291 292 mp = gmMatchProvider.cMatchProvider_SQL2(queries = query) 293 mp.setThresholds(1, 2, 4) 294 # mp.word_separators = '[ \t=+&:@]+' 295 self.SetToolTipString(_('Select an ATC (Anatomical-Therapeutic-Chemical) code.')) 296 self.matcher = mp 297 self.selection_only = True
298 299 #============================================================ 300 # consumable substances widgets 301 #------------------------------------------------------------
302 -def manage_consumable_substances(parent=None):
303 304 if parent is None: 305 parent = wx.GetApp().GetTopWindow() 306 #------------------------------------------------------------ 307 def add_from_db(substance): 308 drug_db = get_drug_database(parent = parent) 309 if drug_db is None: 310 return False 311 drug_db.import_drugs() 312 return True
313 #------------------------------------------------------------ 314 def edit(substance=None): 315 return edit_consumable_substance(parent = parent, substance = substance, single_entry = (substance is not None)) 316 #------------------------------------------------------------ 317 def delete(substance): 318 if substance.is_in_use_by_patients: 319 gmDispatcher.send(signal = 'statustext', msg = _('Cannot delete this substance. It is in use.'), beep = True) 320 return False 321 322 return gmMedication.delete_consumable_substance(substance = substance['pk']) 323 #------------------------------------------------------------ 324 def refresh(lctrl): 325 substs = gmMedication.get_consumable_substances(order_by = 'description') 326 items = [ [ 327 s['description'], 328 s['amount'], 329 s['unit'], 330 gmTools.coalesce(s['atc_code'], u''), 331 s['pk'] 332 ] for s in substs ] 333 lctrl.set_string_items(items) 334 lctrl.set_data(substs) 335 #------------------------------------------------------------ 336 msg = _('\nThese are the consumable substances registered with GNUmed.\n') 337 338 gmListWidgets.get_choices_from_list ( 339 parent = parent, 340 msg = msg, 341 caption = _('Showing consumable substances.'), 342 columns = [_('Substance'), _('Amount'), _('Unit'), 'ATC', u'#'], 343 single_selection = True, 344 new_callback = edit, 345 edit_callback = edit, 346 delete_callback = delete, 347 refresh_callback = refresh, 348 left_extra_button = (_('Import'), _('Import consumable substances from a drug database.'), add_from_db) 349 ) 350 351 #------------------------------------------------------------
352 -def edit_consumable_substance(parent=None, substance=None, single_entry=False):
353 354 if substance is not None: 355 if substance.is_in_use_by_patients: 356 gmDispatcher.send(signal = 'statustext', msg = _('Cannot edit this substance. It is in use.'), beep = True) 357 return False 358 359 ea = cConsumableSubstanceEAPnl(parent = parent, id = -1) 360 ea.data = substance 361 ea.mode = gmTools.coalesce(substance, 'new', 'edit') 362 dlg = gmEditArea.cGenericEditAreaDlg2(parent = parent, id = -1, edit_area = ea, single_entry = single_entry) 363 dlg.SetTitle(gmTools.coalesce(substance, _('Adding new consumable substance'), _('Editing consumable substance'))) 364 if dlg.ShowModal() == wx.ID_OK: 365 dlg.Destroy() 366 return True 367 dlg.Destroy() 368 return False
369 370 #============================================================ 371 from Gnumed.wxGladeWidgets import wxgConsumableSubstanceEAPnl 372
373 -class cConsumableSubstanceEAPnl(wxgConsumableSubstanceEAPnl.wxgConsumableSubstanceEAPnl, gmEditArea.cGenericEditAreaMixin):
374
375 - def __init__(self, *args, **kwargs):
376 377 try: 378 data = kwargs['substance'] 379 del kwargs['substance'] 380 except KeyError: 381 data = None 382 383 wxgConsumableSubstanceEAPnl.wxgConsumableSubstanceEAPnl.__init__(self, *args, **kwargs) 384 gmEditArea.cGenericEditAreaMixin.__init__(self) 385 386 # Code using this mixin should set mode and data 387 # after instantiating the class: 388 self.mode = 'new' 389 self.data = data 390 if data is not None: 391 self.mode = 'edit'
392 393 # self.__init_ui() 394 #---------------------------------------------------------------- 395 # def __init_ui(self): 396 # self._PRW_atc.selection_only = False 397 #---------------------------------------------------------------- 398 # generic Edit Area mixin API 399 #----------------------------------------------------------------
400 - def _valid_for_save(self):
401 402 validity = True 403 404 if self._TCTRL_substance.GetValue().strip() == u'': 405 validity = False 406 self.display_tctrl_as_valid(tctrl = self._TCTRL_substance, valid = False) 407 self._TCTRL_substance.SetFocus() 408 else: 409 self.display_tctrl_as_valid(tctrl = self._TCTRL_substance, valid = True) 410 411 try: 412 decimal.Decimal(self._TCTRL_amount.GetValue().strip().replace(',', '.')) 413 self.display_tctrl_as_valid(tctrl = self._TCTRL_amount, valid = True) 414 except (TypeError, decimal.InvalidOperation): 415 validity = False 416 self.display_tctrl_as_valid(tctrl = self._TCTRL_amount, valid = False) 417 self._TCTRL_amount.SetFocus() 418 419 if self._PRW_unit.GetValue().strip() == u'': 420 validity = False 421 self._PRW_unit.display_as_valid(valid = False) 422 self._TCTRL_substance.SetFocus() 423 else: 424 self._PRW_unit.display_as_valid(valid = True) 425 426 if validity is False: 427 gmDispatcher.send(signal = 'statustext', msg = _('Cannot save consumable substance. Missing essential input.')) 428 429 return validity
430 #----------------------------------------------------------------
431 - def _save_as_new(self):
432 subst = gmMedication.create_consumable_substance ( 433 substance = self._TCTRL_substance.GetValue().strip(), 434 atc = self._PRW_atc.GetData(), 435 amount = decimal.Decimal(self._TCTRL_amount.GetValue().strip().replace(',', '.')), 436 unit = gmTools.coalesce(self._PRW_unit.GetData(), self._PRW_unit.GetValue().strip(), function_initial = ('strip', None)) 437 ) 438 success, data = subst.save() 439 if not success: 440 err, msg = data 441 _log.error(err) 442 _log.error(msg) 443 gmDispatcher.send(signal = 'statustext', msg = _('Cannot save consumable substance. %s') % msg, beep = True) 444 return False 445 446 self.data = subst 447 return True
448 #----------------------------------------------------------------
449 - def _save_as_update(self):
450 self.data['description'] = self._TCTRL_substance.GetValue().strip() 451 self.data['atc_code'] = self._PRW_atc.GetData() 452 self.data['amount'] = decimal.Decimal(self._TCTRL_amount.GetValue().strip().replace(',', '.')) 453 self.data['unit'] = gmTools.coalesce(self._PRW_unit.GetData(), self._PRW_unit.GetValue().strip(), function_initial = ('strip', None)) 454 success, data = self.data.save() 455 456 if not success: 457 err, msg = data 458 _log.error(err) 459 _log.error(msg) 460 gmDispatcher.send(signal = 'statustext', msg = _('Cannot save consumable substance. %s') % msg, beep = True) 461 return False 462 463 return True
464 #----------------------------------------------------------------
465 - def _refresh_as_new(self):
466 self._TCTRL_substance.SetValue(u'') 467 self._TCTRL_amount.SetValue(u'') 468 self._PRW_unit.SetText(u'', None) 469 self._PRW_atc.SetText(u'', None) 470 471 self._TCTRL_substance.SetFocus()
472 #----------------------------------------------------------------
473 - def _refresh_from_existing(self):
474 self._TCTRL_substance.SetValue(self.data['description']) 475 self._TCTRL_amount.SetValue(u'%s' % self.data['amount']) 476 self._PRW_unit.SetText(self.data['unit'], self.data['unit']) 477 self._PRW_atc.SetText(gmTools.coalesce(self.data['atc_code'], u''), self.data['atc_code']) 478 479 self._TCTRL_substance.SetFocus()
480 #----------------------------------------------------------------
482 self._refresh_as_new()
483 484 #============================================================ 485 # drug component widgets 486 #------------------------------------------------------------
487 -def manage_drug_components(parent=None):
488 489 if parent is None: 490 parent = wx.GetApp().GetTopWindow() 491 492 #------------------------------------------------------------ 493 def edit(component=None): 494 substance = gmMedication.cConsumableSubstance(aPK_obj = component['pk_consumable_substance']) 495 return edit_consumable_substance(parent = parent, substance = substance, single_entry = True)
496 #------------------------------------------------------------ 497 def delete(component): 498 if component.is_in_use_by_patients: 499 gmDispatcher.send(signal = 'statustext', msg = _('Cannot remove this component from the drug. It is in use.'), beep = True) 500 return False 501 502 return component.containing_drug.remove_component(substance = component['pk_component']) 503 #------------------------------------------------------------ 504 def refresh(lctrl): 505 comps = gmMedication.get_drug_components() 506 items = [ [ 507 u'%s%s' % (c['brand'], gmTools.coalesce(c['atc_brand'], u'', u' [%s]')), 508 u'%s%s' % (c['substance'], gmTools.coalesce(c['atc_substance'], u'', u' [%s]')), 509 u'%s%s' % (c['amount'], c['unit']), 510 c['preparation'], 511 gmTools.coalesce(c['external_code_brand'], u'', u'%%s [%s]' % c['external_code_type_brand']), 512 c['pk_component'] 513 ] for c in comps ] 514 lctrl.set_string_items(items) 515 lctrl.set_data(comps) 516 #------------------------------------------------------------ 517 msg = _('\nThese are the components in the drug brands known to GNUmed.\n') 518 519 gmListWidgets.get_choices_from_list ( 520 parent = parent, 521 msg = msg, 522 caption = _('Showing drug brand components.'), 523 columns = [_('Brand'), _('Substance'), _('Strength'), _('Preparation'), _('Code'), u'#'], 524 single_selection = True, 525 #new_callback = edit, 526 edit_callback = edit, 527 delete_callback = delete, 528 refresh_callback = refresh 529 ) 530 531 #------------------------------------------------------------
532 -def edit_drug_component(parent=None, drug_component=None, single_entry=False):
533 ea = cDrugComponentEAPnl(parent = parent, id = -1) 534 ea.data = drug_component 535 ea.mode = gmTools.coalesce(drug_component, 'new', 'edit') 536 dlg = gmEditArea.cGenericEditAreaDlg2(parent = parent, id = -1, edit_area = ea, single_entry = single_entry) 537 dlg.SetTitle(gmTools.coalesce(drug_component, _('Adding new drug component'), _('Editing drug component'))) 538 if dlg.ShowModal() == wx.ID_OK: 539 dlg.Destroy() 540 return True 541 dlg.Destroy() 542 return False
543 544 #============================================================ 545 from Gnumed.wxGladeWidgets import wxgDrugComponentEAPnl 546
547 -class cDrugComponentEAPnl(wxgDrugComponentEAPnl.wxgDrugComponentEAPnl, gmEditArea.cGenericEditAreaMixin):
548
549 - def __init__(self, *args, **kwargs):
550 551 try: 552 data = kwargs['component'] 553 del kwargs['component'] 554 except KeyError: 555 data = None 556 557 wxgDrugComponentEAPnl.wxgDrugComponentEAPnl.__init__(self, *args, **kwargs) 558 gmEditArea.cGenericEditAreaMixin.__init__(self) 559 560 # Code using this mixin should set mode and data 561 # after instantiating the class: 562 self.mode = 'new' 563 self.data = data 564 if data is not None: 565 self.mode = 'edit'
566 567 #self.__init_ui() 568 #---------------------------------------------------------------- 569 # def __init_ui(self): 570 # # adjust phrasewheels etc 571 #---------------------------------------------------------------- 572 # generic Edit Area mixin API 573 #----------------------------------------------------------------
574 - def _valid_for_save(self):
575 if self.data is not None: 576 if self.data['is_in_use']: 577 gmDispatcher.send(signal = 'statustext', msg = _('Cannot edit drug component. It is in use.'), beep = True) 578 return False 579 580 validity = True 581 582 if self._PRW_substance.GetData() is None: 583 validity = False 584 self._PRW_substance.display_as_valid(False) 585 else: 586 self._PRW_substance.display_as_valid(True) 587 588 val = self._TCTRL_amount.GetValue().strip().replace(',', u'.', 1) 589 try: 590 decimal.Decimal(val) 591 self.display_tctrl_as_valid(tctrl = self._TCTRL_amount, valid = True) 592 except: 593 validity = False 594 self.display_tctrl_as_valid(tctrl = self._TCTRL_amount, valid = False) 595 596 if self._PRW_unit.GetValue().strip() == u'': 597 validity = False 598 self._PRW_unit.display_as_valid(False) 599 else: 600 self._PRW_unit.display_as_valid(True) 601 602 if validity is False: 603 gmDispatcher.send(signal = 'statustext', msg = _('Cannot save drug component. Invalid or missing essential input.')) 604 605 return validity
606 #----------------------------------------------------------------
607 - def _save_as_new(self):
608 # save the data as a new instance 609 data = 1 610 data[''] = 1 611 data[''] = 1 612 # data.save() 613 614 # must be done very late or else the property access 615 # will refresh the display such that later field 616 # access will return empty values 617 # self.data = data 618 return False 619 return True
620 #----------------------------------------------------------------
621 - def _save_as_update(self):
622 self.data['pk_consumable_substance'] = self._PRW_substance.GetData() 623 self.data['amount'] = decimal.Decimal(self._TCTRL_amount.GetValue().strip().replace(',', u'.', 1)) 624 self.data['unit'] = self._PRW_unit.GetValue().strip() 625 return self.data.save()
626 #----------------------------------------------------------------
627 - def _refresh_as_new(self):
628 self._TCTRL_brand.SetValue(u'') 629 self._TCTRL_components.SetValue(u'') 630 self._TCTRL_codes.SetValue(u'') 631 self._PRW_substance.SetText(u'', None) 632 self._TCTRL_amount.SetValue(u'') 633 self._PRW_unit.SetText(u'', None) 634 635 self._PRW_substance.SetFocus()
636 #----------------------------------------------------------------
637 - def _refresh_from_existing(self):
638 self._TCTRL_brand.SetValue(u'%s (%s)' % (self.data['brand'], self.data['preparation'])) 639 self._TCTRL_components.SetValue(u' / '.join(self.data.containing_drug['components'])) 640 details = [] 641 if self.data['atc_brand'] is not None: 642 details.append(u'ATC: %s' % self.data['atc_brand']) 643 if self.data['external_code_brand'] is not None: 644 details.append(u'%s: %s' % (self.data['external_code_type_brand'], self.data['external_code_brand'])) 645 self._TCTRL_codes.SetValue(u'; '.join(details)) 646 647 self._PRW_substance.SetText(self.data['substance'], self.data['pk_consumable_substance']) 648 self._TCTRL_amount.SetValue(u'%s' % self.data['amount']) 649 self._PRW_unit.SetText(self.data['unit'], self.data['unit']) 650 651 self._PRW_substance.SetFocus()
652 #----------------------------------------------------------------
654 #self._PRW_brand.SetText(u'', None) 655 #self._TCTRL_prep.SetValue(u'') 656 #self._TCTRL_brand_details.SetValue(u'') 657 self._PRW_substance.SetText(u'', None) 658 self._TCTRL_amount.SetValue(u'') 659 self._PRW_unit.SetText(u'', None) 660 661 self._PRW_substance.SetFocus()
662 663 #============================================================
664 -class cDrugComponentPhraseWheel(gmPhraseWheel.cPhraseWheel):
665
666 - def __init__(self, *args, **kwargs):
667 668 mp = gmMedication.cDrugComponentMatchProvider() 669 mp.setThresholds(2, 3, 4) 670 gmPhraseWheel.cPhraseWheel.__init__(self, *args, **kwargs) 671 self.SetToolTipString(_('A drug component with optional strength.')) 672 self.matcher = mp 673 self.selection_only = False
674 #============================================================ 675 #============================================================
676 -class cSubstancePreparationPhraseWheel(gmPhraseWheel.cPhraseWheel):
677
678 - def __init__(self, *args, **kwargs):
679 680 query = u""" 681 ( 682 SELECT DISTINCT ON (preparation) 683 preparation as prep, preparation 684 FROM ref.branded_drug 685 WHERE preparation %(fragment_condition)s 686 ) UNION ( 687 SELECT DISTINCT ON (preparation) 688 preparation as prep, preparation 689 FROM clin.substance_intake 690 WHERE preparation %(fragment_condition)s 691 ) 692 ORDER BY prep 693 limit 30""" 694 695 mp = gmMatchProvider.cMatchProvider_SQL2(queries = query) 696 mp.setThresholds(1, 2, 4) 697 gmPhraseWheel.cPhraseWheel.__init__(self, *args, **kwargs) 698 self.SetToolTipString(_('The preparation (form) of the substance or brand.')) 699 self.matcher = mp 700 self.selection_only = False
701 #============================================================
702 -class cSubstancePhraseWheel(gmPhraseWheel.cPhraseWheel):
703
704 - def __init__(self, *args, **kwargs):
705 706 mp = gmMedication.cSubstanceMatchProvider() 707 mp.setThresholds(1, 2, 4) 708 gmPhraseWheel.cPhraseWheel.__init__(self, *args, **kwargs) 709 self.SetToolTipString(_('The substance with optional strength.')) 710 self.matcher = mp 711 self.selection_only = False 712 self.phrase_separators = None
713 #============================================================ 714 # branded drugs widgets 715 #------------------------------------------------------------
716 -def manage_components_of_branded_drug(parent=None, brand=None):
717 718 if brand is not None: 719 if brand['is_in_use']: 720 gmGuiHelpers.gm_show_info ( 721 aTitle = _('Managing components of a drug'), 722 aMessage = _( 723 'Cannot manage the components of the branded drug product\n' 724 '\n' 725 ' "%s" (%s)\n' 726 '\n' 727 'because it is currently taken by patients.\n' 728 ) % (brand['brand'], brand['preparation']) 729 ) 730 return False 731 #-------------------------------------------------------- 732 if parent is None: 733 parent = wx.GetApp().GetTopWindow() 734 #-------------------------------------------------------- 735 if brand is None: 736 msg = _('Pick the substances which are components of this drug.') 737 right_col = _('Components of drug') 738 comp_substs = [] 739 else: 740 right_col = u'%s (%s)' % (brand['brand'], brand['preparation']) 741 msg = _( 742 'Adjust the components of "%s"\n' 743 '\n' 744 'The drug must contain at least one component. Any given\n' 745 'substance can only be included once per drug.' 746 ) % right_col 747 comp_substs = [ c.substance for c in brand.components ] 748 749 substs = gmMedication.get_consumable_substances(order_by = 'description') 750 choices = [ u'%s %s%s' % (s['description'], s['amount'], s['unit']) for s in substs ] 751 picks = [ u'%s %s%s' % (c['description'], c['amount'], c['unit']) for c in comp_substs ] 752 753 picker = gmListWidgets.cItemPickerDlg ( 754 parent, 755 -1, 756 title = _('Managing components of a drug ...'), 757 msg = msg 758 ) 759 picker.set_columns(['Substances'], [right_col]) 760 picker.set_choices(choices = choices, data = substs) 761 picker.set_picks(picks = picks, data = comp_substs) 762 763 btn_pressed = picker.ShowModal() 764 substs = picker.get_picks() 765 picker.Destroy() 766 767 if btn_pressed != wx.ID_OK: 768 return (False, None) 769 770 if brand is not None: 771 brand.set_substances_as_components(substances = substs) 772 773 return (True, substs)
774 #------------------------------------------------------------
775 -def manage_branded_drugs(parent=None, ignore_OK_button=False):
776 777 if parent is None: 778 parent = wx.GetApp().GetTopWindow() 779 #------------------------------------------------------------ 780 def add_from_db(brand): 781 drug_db = get_drug_database(parent = parent) 782 if drug_db is None: 783 return False 784 drug_db.import_drugs() 785 return True
786 #------------------------------------------------------------ 787 def get_tooltip(brand=None): 788 tt = u'%s %s\n' % (brand['brand'], brand['preparation']) 789 tt += u'\n' 790 tt += u'%s%s%s\n' % ( 791 gmTools.bool2subst(brand.is_vaccine, u'%s, ' % _('Vaccine'), u''), 792 u'%s, ' % gmTools.bool2subst(brand['is_in_use'], _('in use'), _('not in use')), 793 gmTools.bool2subst(brand['is_fake_brand'], _('fake'), u'') 794 ) 795 tt += gmTools.coalesce(brand['atc'], u'', _('ATC: %s\n')) 796 tt += gmTools.coalesce(brand['external_code'], u'', u'%s: %%s\n' % brand['external_code_type']) 797 if brand['components'] is not None: 798 tt += u'- %s' % u'\n- '.join(brand['components']) 799 return tt 800 #------------------------------------------------------------ 801 def edit(brand=None): 802 if brand.is_vaccine: 803 gmGuiHelpers.gm_show_info ( 804 aTitle = _('Editing medication'), 805 aMessage = _( 806 'Cannot edit the medication\n' 807 '\n' 808 ' "%s" (%s)\n' 809 '\n' 810 'because it is a vaccine. Please edit it\n' 811 'from the vaccine management section !\n' 812 ) % (brand['brand'], brand['preparation']) 813 ) 814 return False 815 816 return edit_branded_drug(parent = parent, branded_drug = brand, single_entry = True) 817 #------------------------------------------------------------ 818 def delete(brand): 819 if brand.is_vaccine: 820 gmGuiHelpers.gm_show_info ( 821 aTitle = _('Deleting medication'), 822 aMessage = _( 823 'Cannot delete the medication\n' 824 '\n' 825 ' "%s" (%s)\n' 826 '\n' 827 'because it is a vaccine. Please delete it\n' 828 'from the vaccine management section !\n' 829 ) % (brand['brand'], brand['preparation']) 830 ) 831 return False 832 gmMedication.delete_branded_drug(brand = brand['pk_brand']) 833 return True 834 #------------------------------------------------------------ 835 def new(): 836 return edit_branded_drug(parent = parent, branded_drug = None, single_entry = False) 837 #------------------------------------------------------------ 838 def refresh(lctrl): 839 drugs = gmMedication.get_branded_drugs() 840 items = [ [ 841 u'%s%s' % ( 842 d['brand'], 843 gmTools.bool2subst(d['is_fake_brand'], ' (%s)' % _('fake'), u'') 844 ), 845 d['preparation'], 846 gmTools.coalesce(d['atc'], u''), 847 gmTools.coalesce(d['components'], u''), 848 gmTools.coalesce(d['external_code'], u'', u'%%s [%s]' % d['external_code_type']), 849 d['pk_brand'] 850 ] for d in drugs ] 851 lctrl.set_string_items(items) 852 lctrl.set_data(drugs) 853 #------------------------------------------------------------ 854 msg = _('\nThese are the drug brands known to GNUmed.\n') 855 856 gmListWidgets.get_choices_from_list ( 857 parent = parent, 858 msg = msg, 859 caption = _('Showing branded drugs.'), 860 columns = [_('Name'), _('Preparation'), _('ATC'), _('Components'), _('Code'), u'#'], 861 single_selection = True, 862 ignore_OK_button = ignore_OK_button, 863 refresh_callback = refresh, 864 new_callback = new, 865 edit_callback = edit, 866 delete_callback = delete, 867 list_tooltip_callback = get_tooltip, 868 left_extra_button = (_('Import'), _('Import substances and brands from a drug database.'), add_from_db) 869 #, middle_extra_button = (_('Clone'), _('Clone selected drug into a new entry for editing.'), clone_from_existing) 870 #, right_extra_button = (_('Reassign'), _('Reassign all patients taking the selected drug to another drug.'), reassign_patients) 871 ) 872 873 #------------------------------------------------------------
874 -def edit_branded_drug(parent=None, branded_drug=None, single_entry=False):
875 if branded_drug is not None: 876 if branded_drug['is_in_use']: 877 gmGuiHelpers.gm_show_info ( 878 aTitle = _('Editing drug'), 879 aMessage = _( 880 'Cannot edit the branded drug product\n' 881 '\n' 882 ' "%s" (%s)\n' 883 '\n' 884 'because it is currently taken by patients.\n' 885 ) % (branded_drug['brand'], branded_drug['preparation']) 886 ) 887 return False 888 889 ea = cBrandedDrugEAPnl(parent = parent, id = -1) 890 ea.data = branded_drug 891 ea.mode = gmTools.coalesce(branded_drug, 'new', 'edit') 892 dlg = gmEditArea.cGenericEditAreaDlg2(parent = parent, id = -1, edit_area = ea, single_entry = single_entry) 893 dlg.SetTitle(gmTools.coalesce(branded_drug, _('Adding new drug brand'), _('Editing drug brand'))) 894 if dlg.ShowModal() == wx.ID_OK: 895 dlg.Destroy() 896 return True 897 dlg.Destroy() 898 return False
899 900 #============================================================ 901 from Gnumed.wxGladeWidgets import wxgBrandedDrugEAPnl 902
903 -class cBrandedDrugEAPnl(wxgBrandedDrugEAPnl.wxgBrandedDrugEAPnl, gmEditArea.cGenericEditAreaMixin):
904
905 - def __init__(self, *args, **kwargs):
906 907 try: 908 data = kwargs['drug'] 909 del kwargs['drug'] 910 except KeyError: 911 data = None 912 913 wxgBrandedDrugEAPnl.wxgBrandedDrugEAPnl.__init__(self, *args, **kwargs) 914 gmEditArea.cGenericEditAreaMixin.__init__(self) 915 916 self.mode = 'new' 917 self.data = data 918 if data is not None: 919 self.mode = 'edit' 920 self.__component_substances = data.components_as_substances
921 922 #self.__init_ui() 923 #---------------------------------------------------------------- 924 # def __init_ui(self): 925 # adjust external type PRW 926 #---------------------------------------------------------------- 927 # generic Edit Area mixin API 928 #----------------------------------------------------------------
929 - def _valid_for_save(self):
930 931 if self.data is not None: 932 if self.data['is_in_use']: 933 gmDispatcher.send(signal = 'statustext', msg = _('Cannot edit drug brand. It is in use.'), beep = True) 934 return False 935 936 validity = True 937 938 if self._PRW_brand.GetValue().strip() == u'': 939 validity = False 940 self._PRW_brand.display_as_valid(False) 941 else: 942 self._PRW_brand.display_as_valid(True) 943 944 if self._PRW_preparation.GetValue().strip() == u'': 945 validity = False 946 self._PRW_preparation.display_as_valid(False) 947 else: 948 self._PRW_preparation.display_as_valid(True) 949 950 if validity is False: 951 gmDispatcher.send(signal = 'statustext', msg = _('Cannot save branded drug. Invalid or missing essential input.')) 952 953 return validity
954 #----------------------------------------------------------------
955 - def _save_as_new(self):
956 957 drug = gmMedication.create_branded_drug ( 958 brand_name = self._PRW_brand.GetValue().strip(), 959 preparation = gmTools.coalesce ( 960 self._PRW_preparation.GetData(), 961 self._PRW_preparation.GetValue() 962 ).strip(), 963 return_existing = True 964 ) 965 drug['is_fake_brand'] = self._CHBOX_is_fake.GetValue() 966 drug['atc'] = self._PRW_atc.GetData() 967 code = self._TCTRL_external_code.GetValue().strip() 968 if code != u'': 969 drug['external_code'] = code 970 drug['external_code_type'] = self._PRW_external_code_type.GetData().strip() 971 972 drug.save() 973 974 if len(self.__component_substances) > 0: 975 drug.set_substances_as_components(substances = self.__component_substances) 976 977 self.data = drug 978 979 return True
980 #----------------------------------------------------------------
981 - def _save_as_update(self):
982 self.data['brand'] = self._PRW_brand.GetValue().strip() 983 self.data['preparation'] = gmTools.coalesce ( 984 self._PRW_preparation.GetData(), 985 self._PRW_preparation.GetValue() 986 ).strip() 987 self.data['is_fake_brand'] = self._CHBOX_is_fake.GetValue() 988 self.data['atc'] = self._PRW_atc.GetData() 989 code = self._TCTRL_external_code.GetValue().strip() 990 if code != u'': 991 self.data['external_code'] = code 992 self.data['external_code_type'] = self._PRW_external_code_type.GetData().strip() 993 success, data = self.data.save() 994 if not success: 995 err, msg = data 996 _log.error('problem saving') 997 _log.error('%s', err) 998 _log.error('%s', msg) 999 return (success is True)
1000 #----------------------------------------------------------------
1001 - def _refresh_as_new(self):
1002 self._PRW_brand.SetText(u'', None) 1003 self._PRW_preparation.SetText(u'', None) 1004 self._CHBOX_is_fake.SetValue(False) 1005 self._TCTRL_components.SetValue(u'') 1006 self._PRW_atc.SetText(u'', None) 1007 self._TCTRL_external_code.SetValue(u'') 1008 self._PRW_external_code_type.SetText(u'', None) 1009 1010 self._PRW_brand.SetFocus() 1011 1012 self.__component_substances = []
1013 #----------------------------------------------------------------
1015 self._refresh_as_new()
1016 #----------------------------------------------------------------
1017 - def _refresh_from_existing(self):
1018 self._PRW_brand.SetText(self.data['brand'], self.data['pk_brand']) 1019 self._PRW_preparation.SetText(self.data['preparation'], self.data['preparation']) 1020 self._CHBOX_is_fake.SetValue(self.data['is_fake_brand']) 1021 comps = u'' 1022 if self.data['components'] is not None: 1023 comps = u'- %s' % u'\n- '.join(self.data['components']) 1024 self._TCTRL_components.SetValue(comps) 1025 self._PRW_atc.SetText(gmTools.coalesce(self.data['atc'], u''), self.data['atc']) 1026 self._TCTRL_external_code.SetValue(gmTools.coalesce(self.data['external_code'], u'')) 1027 t = gmTools.coalesce(self.data['external_code_type'], u'') 1028 self._PRW_external_code_type.SetText(t, t) 1029 1030 self._PRW_brand.SetFocus() 1031 1032 self.__component_substances = self.data.components_as_substances
1033 #---------------------------------------------------------------- 1034 # event handler 1035 #----------------------------------------------------------------
1036 - def _on_manage_components_button_pressed(self, event):
1037 event.Skip() 1038 OKed, substs = manage_components_of_branded_drug(parent = self, brand = self.data) 1039 if OKed is True: 1040 self.__component_substances = substs 1041 comps = u'' 1042 if len(substs) > 0: 1043 comps = u'- %s' % u'\n- '.join([ u'%s %s%s' % (s['description'], s['amount'], s['unit']) for s in substs ]) 1044 self._TCTRL_components.SetValue(comps)
1045 #============================================================
1046 -class cBrandedDrugPhraseWheel(gmPhraseWheel.cPhraseWheel):
1047
1048 - def __init__(self, *args, **kwargs):
1049 1050 query = u""" 1051 SELECT 1052 pk, 1053 (description || ' (' || preparation || ')' || coalesce(' [' || atc_code || ']', '')) 1054 AS brand 1055 FROM ref.branded_drug 1056 WHERE description %(fragment_condition)s 1057 ORDER BY brand 1058 LIMIT 50""" 1059 1060 mp = gmMatchProvider.cMatchProvider_SQL2(queries = query) 1061 mp.setThresholds(2, 3, 4) 1062 gmPhraseWheel.cPhraseWheel.__init__(self, *args, **kwargs) 1063 self.SetToolTipString(_('The brand name of the drug.')) 1064 self.matcher = mp 1065 self.selection_only = False
1066 1067 #============================================================ 1068 # current substance intake widgets 1069 #------------------------------------------------------------
1070 -class cSubstanceSchedulePhraseWheel(gmPhraseWheel.cPhraseWheel):
1071
1072 - def __init__(self, *args, **kwargs):
1073 1074 query = u""" 1075 SELECT DISTINCT ON (sched) 1076 schedule as sched, 1077 schedule 1078 FROM clin.substance_intake 1079 WHERE schedule %(fragment_condition)s 1080 ORDER BY sched 1081 LIMIT 50""" 1082 1083 mp = gmMatchProvider.cMatchProvider_SQL2(queries = query) 1084 mp.setThresholds(1, 2, 4) 1085 mp.word_separators = '[ \t=+&:@]+' 1086 gmPhraseWheel.cPhraseWheel.__init__(self, *args, **kwargs) 1087 self.SetToolTipString(_('The schedule for taking this substance.')) 1088 self.matcher = mp 1089 self.selection_only = False
1090 #============================================================
1091 -def turn_substance_intake_into_allergy(parent=None, intake=None, emr=None):
1092 1093 if intake['is_currently_active']: 1094 intake['discontinued'] = gmDateTime.pydt_now_here() 1095 if intake['discontinue_reason'] is None: 1096 intake['discontinue_reason'] = u'%s %s' % (_('not tolerated:'), _('discontinued due to allergy or intolerance')) 1097 else: 1098 if not intake['discontinue_reason'].startswith(_('not tolerated:')): 1099 intake['discontinue_reason'] = u'%s %s' % (_('not tolerated:'), intake['discontinue_reason']) 1100 if not intake.save(): 1101 return False 1102 1103 allg = intake.turn_into_allergy(encounter_id = emr.active_encounter['pk_encounter']) 1104 1105 brand = intake.containing_drug 1106 if brand is not None: 1107 comps = [ c['substance'] for c in brand.components ] 1108 if len(comps) > 1: 1109 gmGuiHelpers.gm_show_info ( 1110 aTitle = _(u'Documented an allergy'), 1111 aMessage = _( 1112 u'An allergy was documented against the substance:\n' 1113 u'\n' 1114 u' [%s]\n' 1115 u'\n' 1116 u'This substance was taken with the multi-component brand:\n' 1117 u'\n' 1118 u' [%s (%s)]\n' 1119 u'\n' 1120 u'Note that ALL components of this brand were discontinued.' 1121 ) % ( 1122 intake['substance'], 1123 intake['brand'], 1124 u' & '.join(comps) 1125 ) 1126 ) 1127 1128 if parent is None: 1129 parent = wx.GetApp().GetTopWindow() 1130 1131 dlg = gmAllergyWidgets.cAllergyManagerDlg(parent = parent, id = -1) 1132 dlg.ShowModal() 1133 1134 return True
1135 #============================================================ 1136 from Gnumed.wxGladeWidgets import wxgCurrentMedicationEAPnl 1137
1138 -class cSubstanceIntakeEAPnl(wxgCurrentMedicationEAPnl.wxgCurrentMedicationEAPnl, gmEditArea.cGenericEditAreaMixin):
1139
1140 - def __init__(self, *args, **kwargs):
1141 1142 try: 1143 data = kwargs['substance'] 1144 del kwargs['substance'] 1145 except KeyError: 1146 data = None 1147 1148 wxgCurrentMedicationEAPnl.wxgCurrentMedicationEAPnl.__init__(self, *args, **kwargs) 1149 gmEditArea.cGenericEditAreaMixin.__init__(self) 1150 1151 self.mode = 'new' 1152 self.data = data 1153 if data is not None: 1154 self.mode = 'edit' 1155 1156 self.__init_ui()
1157 #----------------------------------------------------------------
1158 - def __init_ui(self):
1159 1160 self._PRW_component.add_callback_on_lose_focus(callback = self._on_leave_component) 1161 self._PRW_component.selection_only = True 1162 1163 self._PRW_substance.add_callback_on_lose_focus(callback = self._on_leave_substance) 1164 self._PRW_substance.selection_only = True
1165 #----------------------------------------------------------------
1166 - def __refresh_allergies(self):
1167 emr = gmPerson.gmCurrentPatient().get_emr() 1168 1169 state = emr.allergy_state 1170 if state['last_confirmed'] is None: 1171 confirmed = _('never') 1172 else: 1173 confirmed = state['last_confirmed'].strftime('%Y %B %d').decode(gmI18N.get_encoding()) 1174 msg = _(u'%s, last confirmed %s\n') % (state.state_string, confirmed) 1175 msg += gmTools.coalesce(state['comment'], u'', _('Comment (%s): %%s\n') % state['modified_by']) 1176 msg += u'\n' 1177 1178 for allergy in emr.get_allergies(): 1179 msg += u'%s (%s, %s): %s\n' % ( 1180 allergy['descriptor'], 1181 allergy['l10n_type'], 1182 gmTools.bool2subst(allergy['definite'], _('definite'), _('suspected'), u'?'), 1183 gmTools.coalesce(allergy['reaction'], _('reaction not recorded')) 1184 ) 1185 1186 self._LBL_allergies.SetLabel(msg)
1187 #---------------------------------------------------------------- 1188 # generic Edit Area mixin API 1189 #----------------------------------------------------------------
1190 - def _valid_for_save(self):
1191 1192 validity = True 1193 1194 has_component = (self._PRW_component.GetData() is not None) 1195 has_substance = (self._PRW_substance.GetValue().strip() != u'') 1196 1197 # must have either brand or substance 1198 if (has_component is False) and (has_substance is False): 1199 self._PRW_substance.display_as_valid(False) 1200 self._PRW_component.display_as_valid(False) 1201 validity = False 1202 else: 1203 self._PRW_substance.display_as_valid(True) 1204 self._PRW_component.display_as_valid(True) 1205 1206 # brands already have a preparation, so only required for substances 1207 if not has_component: 1208 if self._PRW_preparation.GetValue().strip() == u'': 1209 self._PRW_preparation.display_as_valid(False) 1210 validity = False 1211 else: 1212 self._PRW_preparation.display_as_valid(True) 1213 1214 # episode must be set if intake is to be approved of 1215 if self._CHBOX_approved.IsChecked(): 1216 if self._PRW_episode.GetValue().strip() == u'': 1217 self._PRW_episode.display_as_valid(False) 1218 validity = False 1219 else: 1220 self._PRW_episode.display_as_valid(True) 1221 1222 # # huh ? 1223 # if self._CHBOX_approved.IsChecked() is True: 1224 # self._PRW_duration.display_as_valid(True) 1225 # else: 1226 # if self._PRW_duration.GetValue().strip() in [u'', gmTools.u_infinity]: 1227 # self._PRW_duration.display_as_valid(True) 1228 # else: 1229 # if gmDateTime.str2interval(self._PRW_duration.GetValue()) is None: 1230 # self._PRW_duration.display_as_valid(False) 1231 # validity = False 1232 # else: 1233 # self._PRW_duration.display_as_valid(True) 1234 1235 # end must be > start if at all 1236 end = self._DP_discontinued.GetData() 1237 if end is not None: 1238 start = self._DP_started.GetData() 1239 if start > end: 1240 self._DP_started.display_as_valid(False) 1241 self._DP_discontinued.display_as_valid(False) 1242 validity = False 1243 else: 1244 self._DP_started.display_as_valid(True) 1245 self._DP_discontinued.display_as_valid(True) 1246 1247 if validity is False: 1248 gmDispatcher.send(signal = 'statustext', msg = _('Cannot save substance intake. Invalid or missing essential input.')) 1249 1250 return validity
1251 #----------------------------------------------------------------
1252 - def _save_as_new(self):
1253 1254 emr = gmPerson.gmCurrentPatient().get_emr() 1255 epi = self._PRW_episode.GetData(can_create = True) 1256 1257 if self._PRW_substance.GetData() is None: 1258 # auto-creates all components as intakes 1259 intake = emr.add_substance_intake ( 1260 pk_component = self._PRW_component.GetData(), 1261 episode = epi 1262 ) 1263 else: 1264 intake = emr.add_substance_intake ( 1265 pk_substance = self._PRW_substance.GetData(), 1266 episode = epi, 1267 preparation = self._PRW_preparation.GetValue().strip() 1268 ) 1269 1270 intake['started'] = self._DP_started.GetData() 1271 intake['discontinued'] = self._DP_discontinued.GetData() 1272 if intake['discontinued'] is None: 1273 intake['discontinue_reason'] = None 1274 else: 1275 intake['discontinue_reason'] = self._PRW_discontinue_reason.GetValue().strip() 1276 intake['schedule'] = self._PRW_schedule.GetValue().strip() 1277 intake['aim'] = self._PRW_aim.GetValue().strip() 1278 intake['notes'] = self._PRW_notes.GetValue().strip() 1279 intake['is_long_term'] = self._CHBOX_long_term.IsChecked() 1280 intake['intake_is_approved_of'] = self._CHBOX_approved.IsChecked() 1281 if self._PRW_duration.GetValue().strip() in [u'', gmTools.u_infinity]: 1282 intake['duration'] = None 1283 else: 1284 intake['duration'] = gmDateTime.str2interval(self._PRW_duration.GetValue()) 1285 intake.save() 1286 1287 self.data = intake 1288 1289 return True
1290 #----------------------------------------------------------------
1291 - def _save_as_update(self):
1292 1293 # auto-applies to all components of drug if any: 1294 self.data['started'] = self._DP_started.GetData() 1295 self.data['discontinued'] = self._DP_discontinued.GetData() 1296 if self.data['discontinued'] is None: 1297 self.data['discontinue_reason'] = None 1298 else: 1299 self.data['discontinue_reason'] = self._PRW_discontinue_reason.GetValue().strip() 1300 self.data['schedule'] = self._PRW_schedule.GetValue() 1301 self.data['is_long_term'] = self._CHBOX_long_term.IsChecked() 1302 self.data['intake_is_approved_of'] = self._CHBOX_approved.IsChecked() 1303 if self._PRW_duration.GetValue().strip() in [u'', gmTools.u_infinity]: 1304 self.data['duration'] = None 1305 else: 1306 self.data['duration'] = gmDateTime.str2interval(self._PRW_duration.GetValue()) 1307 1308 # applies to non-component substances only 1309 self.data['preparation'] = self._PRW_preparation.GetValue() 1310 1311 # per-component 1312 self.data['aim'] = self._PRW_aim.GetValue() 1313 self.data['notes'] = self._PRW_notes.GetValue() 1314 self.data['pk_episode'] = self._PRW_episode.GetData(can_create = True) 1315 1316 self.data.save() 1317 1318 return True
1319 #----------------------------------------------------------------
1320 - def _refresh_as_new(self):
1321 self._PRW_component.SetText(u'', None) 1322 self._TCTRL_brand_ingredients.SetValue(u'') 1323 1324 self._PRW_substance.SetText(u'', None) 1325 self._PRW_substance.Enable(True) 1326 1327 self._PRW_preparation.SetText(u'', None) 1328 self._PRW_preparation.Enable(True) 1329 1330 self._PRW_schedule.SetText(u'', None) 1331 self._PRW_duration.SetText(u'', None) 1332 self._PRW_aim.SetText(u'', None) 1333 self._PRW_notes.SetText(u'', None) 1334 self._PRW_episode.SetText(u'', None) 1335 1336 self._CHBOX_long_term.SetValue(False) 1337 self._CHBOX_approved.SetValue(True) 1338 1339 self._DP_started.SetData(gmDateTime.pydt_now_here()) 1340 self._DP_discontinued.SetData(None) 1341 self._PRW_discontinue_reason.SetValue(u'') 1342 1343 self.__refresh_allergies() 1344 1345 self._PRW_component.SetFocus()
1346 #----------------------------------------------------------------
1347 - def _refresh_from_existing(self):
1348 1349 self._TCTRL_brand_ingredients.SetValue(u'') 1350 1351 if self.data['pk_brand'] is None: 1352 self.__refresh_from_existing_substance() 1353 else: 1354 self.__refresh_from_existing_component() 1355 1356 self._PRW_component.Enable(False) 1357 self._PRW_substance.Enable(False) 1358 1359 if self.data['is_long_term']: 1360 self._CHBOX_long_term.SetValue(True) 1361 self._PRW_duration.Enable(False) 1362 self._PRW_duration.SetText(gmTools.u_infinity, None) 1363 self._BTN_discontinued_as_planned.Enable(False) 1364 else: 1365 self._CHBOX_long_term.SetValue(False) 1366 self._PRW_duration.Enable(True) 1367 self._BTN_discontinued_as_planned.Enable(True) 1368 if self.data['duration'] is None: 1369 self._PRW_duration.SetText(u'', None) 1370 else: 1371 self._PRW_duration.SetText(gmDateTime.format_interval(self.data['duration'], gmDateTime.acc_days), self.data['duration']) 1372 self._PRW_aim.SetText(gmTools.coalesce(self.data['aim'], u''), self.data['aim']) 1373 self._PRW_notes.SetText(gmTools.coalesce(self.data['notes'], u''), self.data['notes']) 1374 self._PRW_episode.SetData(self.data['pk_episode']) 1375 self._PRW_schedule.SetText(gmTools.coalesce(self.data['schedule'], u''), self.data['schedule']) 1376 1377 self._CHBOX_approved.SetValue(self.data['intake_is_approved_of']) 1378 1379 self._DP_started.SetData(self.data['started']) 1380 self._DP_discontinued.SetData(self.data['discontinued']) 1381 self._PRW_discontinue_reason.SetValue(gmTools.coalesce(self.data['discontinue_reason'], u'')) 1382 if self.data['discontinued'] is not None: 1383 self._PRW_discontinue_reason.Enable() 1384 1385 self.__refresh_allergies() 1386 1387 self._PRW_schedule.SetFocus()
1388 #----------------------------------------------------------------
1390 self._LBL_component.Enable(False) 1391 self._PRW_component.SetText(u'', None) 1392 self._PRW_component.display_as_valid(True) 1393 1394 self._PRW_substance.SetText ( 1395 u'%s %s%s' % (self.data['substance'], self.data['amount'], self.data['unit']), 1396 self.data['pk_substance'] 1397 ) 1398 1399 self._PRW_preparation.SetText(gmTools.coalesce(self.data['preparation'], u''), self.data['preparation']) 1400 self._PRW_preparation.Enable(True)
1401 #----------------------------------------------------------------
1403 self._PRW_component.SetText ( 1404 u'%s %s%s (%s)' % (self.data['substance'], self.data['amount'], self.data['unit'], self.data['brand']), 1405 self.data['pk_drug_component'] 1406 ) 1407 1408 brand = gmMedication.cBrandedDrug(aPK_obj = self.data['pk_brand']) 1409 if brand['components'] is not None: 1410 self._TCTRL_brand_ingredients.SetValue(u'%s\n- %s' % (self.data['brand'], u'\n- '.join(brand['components']))) 1411 1412 self._LBL_or.Enable(False) 1413 self._LBL_substance.Enable(False) 1414 self._PRW_substance.SetText(u'', None) 1415 self._PRW_substance.display_as_valid(True) 1416 1417 self._PRW_preparation.SetText(self.data['preparation'], self.data['preparation']) 1418 self._PRW_preparation.Enable(False)
1419 #----------------------------------------------------------------
1421 self._refresh_as_new()
1422 #---------------------------------------------------------------- 1423 # event handlers 1424 #----------------------------------------------------------------
1425 - def _on_leave_component(self):
1426 if self._PRW_component.GetData() is None: 1427 self._LBL_or.Enable(True) 1428 self._PRW_component.SetText(u'', None) 1429 self._LBL_substance.Enable(True) 1430 self._PRW_substance.Enable(True) 1431 self._LBL_preparation.Enable(True) 1432 self._PRW_preparation.Enable(True) 1433 self._PRW_preparation.SetText(u'', None) 1434 self._TCTRL_brand_ingredients.SetValue(u'') 1435 else: 1436 self._LBL_or.Enable(False) 1437 self._LBL_substance.Enable(False) 1438 self._PRW_substance.SetText(u'', None) 1439 self._PRW_substance.display_as_valid(True) 1440 self._PRW_substance.Enable(False) 1441 self._LBL_preparation.Enable(False) 1442 self._PRW_preparation.Enable(False) 1443 comp = gmMedication.cDrugComponent(aPK_obj = self._PRW_component.GetData()) 1444 self._PRW_preparation.SetText(comp['preparation'], comp['preparation']) 1445 brand = comp.containing_drug 1446 if brand['components'] is not None: 1447 self._TCTRL_brand_ingredients.SetValue(u'%s\n- %s' % (brand['brand'], u'\n- '.join(brand['components'])))
1448 #----------------------------------------------------------------
1449 - def _on_leave_substance(self):
1450 if self._PRW_substance.GetData() is None: 1451 self._LBL_or.Enable(True) 1452 self._LBL_component.Enable(True) 1453 self._PRW_component.Enable(True) 1454 self._PRW_substance.SetText(u'', None) 1455 else: 1456 self._LBL_or.Enable(False) 1457 self._LBL_component.Enable(False) 1458 self._PRW_component.SetText(u'', None) 1459 self._PRW_component.display_as_valid(True) 1460 self._PRW_component.Enable(False) 1461 self._LBL_preparation.Enable(True) 1462 self._PRW_preparation.Enable(True) 1463 self._TCTRL_brand_ingredients.SetValue(u'')
1464 #----------------------------------------------------------------
1465 - def _on_discontinued_date_changed(self, event):
1466 if self._DP_discontinued.GetData() is None: 1467 self._PRW_discontinue_reason.Enable(False) 1468 else: 1469 self._PRW_discontinue_reason.Enable(True)
1470 #----------------------------------------------------------------
1471 - def _on_manage_brands_button_pressed(self, event):
1472 manage_branded_drugs(parent = self, ignore_OK_button = True)
1473 #----------------------------------------------------------------
1474 - def _on_manage_substances_button_pressed(self, event):
1475 manage_consumable_substances(parent = self)
1476 #----------------------------------------------------------------
1478 1479 now = gmDateTime.pydt_now_here() 1480 1481 self.__refresh_allergies() 1482 1483 if self.data is None: 1484 return 1485 1486 # do we have a (full) plan ? 1487 if None not in [self.data['started'], self.data['duration']]: 1488 planned_end = self.data['started'] + self.data['duration'] 1489 # the plan hasn't ended so [Per plan] can't apply ;-) 1490 if planned_end > now: 1491 return 1492 self._DP_discontinued.SetData(planned_end) 1493 self._PRW_discontinue_reason.Enable(True) 1494 self._PRW_discontinue_reason.SetValue(u'') 1495 return 1496 1497 # we know started but not duration: apparently the plan is to stop today 1498 if self.data['started'] is not None: 1499 # but we haven't started yet so we can't stop 1500 if self.data['started'] > now: 1501 return 1502 1503 self._DP_discontinued.SetData(now) 1504 self._PRW_discontinue_reason.Enable(True) 1505 self._PRW_discontinue_reason.SetValue(u'')
1506 #----------------------------------------------------------------
1507 - def _on_chbox_long_term_checked(self, event):
1508 if self._CHBOX_long_term.IsChecked() is True: 1509 self._PRW_duration.Enable(False) 1510 self._BTN_discontinued_as_planned.Enable(False) 1511 self._PRW_discontinue_reason.Enable(False) 1512 else: 1513 self._PRW_duration.Enable(True) 1514 self._BTN_discontinued_as_planned.Enable(True) 1515 self._PRW_discontinue_reason.Enable(True) 1516 1517 self.__refresh_allergies()
1518 #----------------------------------------------------------------
1519 - def turn_into_allergy(self, data=None):
1520 if not self.save(): 1521 return False 1522 1523 return turn_substance_intake_into_allergy ( 1524 parent = self, 1525 intake = self.data, 1526 emr = gmPerson.gmCurrentPatient().get_emr() 1527 )
1528 #============================================================
1529 -def delete_substance_intake(parent=None, substance=None):
1530 1531 subst = gmMedication.cSubstanceIntakeEntry(aPK_obj = substance) 1532 msg = _( 1533 '\n' 1534 '[%s]\n' 1535 '\n' 1536 'It may be prudent to edit (before deletion) the details\n' 1537 'of this substance intake entry so as to leave behind\n' 1538 'some indication of why it was deleted.\n' 1539 ) % subst.format() 1540 1541 dlg = gmGuiHelpers.c3ButtonQuestionDlg ( 1542 parent, 1543 -1, 1544 caption = _('Deleting medication / substance intake'), 1545 question = msg, 1546 button_defs = [ 1547 {'label': _('&Edit'), 'tooltip': _('Allow editing of substance intake entry before deletion.'), 'default': True}, 1548 {'label': _('&Delete'), 'tooltip': _('Delete immediately without editing first.')}, 1549 {'label': _('&Cancel'), 'tooltip': _('Abort. Do not delete or edit substance intake entry.')} 1550 ] 1551 ) 1552 1553 edit_first = dlg.ShowModal() 1554 dlg.Destroy() 1555 1556 if edit_first == wx.ID_CANCEL: 1557 return 1558 1559 if edit_first == wx.ID_YES: 1560 edit_intake_of_substance(parent = parent, substance = subst) 1561 delete_it = gmGuiHelpers.gm_show_question ( 1562 aMessage = _('Now delete substance intake entry ?'), 1563 aTitle = _('Deleting medication / substance intake') 1564 ) 1565 else: 1566 delete_it = True 1567 1568 if not delete_it: 1569 return 1570 1571 gmMedication.delete_substance_intake(substance = substance)
1572 #------------------------------------------------------------
1573 -def edit_intake_of_substance(parent = None, substance=None):
1574 ea = cSubstanceIntakeEAPnl(parent = parent, id = -1, substance = substance) 1575 dlg = gmEditArea.cGenericEditAreaDlg2(parent = parent, id = -1, edit_area = ea, single_entry = (substance is not None)) 1576 dlg.SetTitle(gmTools.coalesce(substance, _('Adding substance intake'), _('Editing substance intake'))) 1577 dlg.left_extra_button = ( 1578 _('Allergy'), 1579 _('Document an allergy against this substance.'), 1580 ea.turn_into_allergy 1581 ) 1582 if dlg.ShowModal() == wx.ID_OK: 1583 dlg.Destroy() 1584 return True 1585 dlg.Destroy() 1586 return False
1587 1588 #============================================================ 1589 # current substances grid 1590 #------------------------------------------------------------
1591 -def configure_medication_list_template(parent=None):
1592 1593 if parent is None: 1594 parent = wx.GetApp().GetTopWindow() 1595 1596 template = gmFormWidgets.manage_form_templates ( 1597 parent = parent, 1598 template_types = ['current medication list'] 1599 ) 1600 option = u'form_templates.medication_list' 1601 1602 if template is None: 1603 gmDispatcher.send(signal = 'statustext', msg = _('No medication list template configured.'), beep = True) 1604 return None 1605 1606 if template['engine'] != u'L': 1607 gmDispatcher.send(signal = 'statustext', msg = _('No medication list template configured.'), beep = True) 1608 return None 1609 1610 dbcfg = gmCfg.cCfgSQL() 1611 dbcfg.set ( 1612 workplace = gmSurgery.gmCurrentPractice().active_workplace, 1613 option = option, 1614 value = u'%s - %s' % (template['name_long'], template['external_version']) 1615 ) 1616 1617 return template
1618 #------------------------------------------------------------ 1698 #------------------------------------------------------------
1699 -def update_substance_intake_list_from_prescription(parent=None, prescribed_drugs=None, emr=None):
1700 1701 if len(prescribed_drugs) == 0: 1702 return 1703 1704 curr_brands = [ i['pk_brand'] for i in emr.get_current_substance_intake() if i['pk_brand'] is not None ] 1705 new_drugs = [] 1706 for drug in prescribed_drugs: 1707 if drug['pk_brand'] not in curr_brands: 1708 new_drugs.append(drug) 1709 1710 if len(new_drugs) == 0: 1711 return 1712 1713 if parent is None: 1714 parent = wx.GetApp().GetTopWindow() 1715 1716 dlg = gmListWidgets.cItemPickerDlg ( 1717 parent, 1718 -1, 1719 msg = _( 1720 'These brands have been prescribed but are not listed\n' 1721 'in the current medication list of this patient.\n' 1722 '\n' 1723 'Please select those you want added to the medication list.' 1724 ) 1725 ) 1726 dlg.set_columns ( 1727 columns = [_('Newly prescribed drugs')], 1728 columns_right = [_('Add to medication list')] 1729 ) 1730 choices = [ (u'%s %s (%s)' % (d['brand'], d['preparation'], u'; '.join(d['components']))) for d in new_drugs ] 1731 dlg.set_choices ( 1732 choices = choices, 1733 data = new_drugs 1734 ) 1735 dlg.ShowModal() 1736 drugs2add = dlg.get_picks() 1737 dlg.Destroy() 1738 1739 if drugs2add is None: 1740 return 1741 1742 if len(drugs2add) == 0: 1743 return 1744 1745 for drug in drugs2add: 1746 # only add first component since all other components get added by a trigger ... 1747 intake = emr.add_substance_intake ( 1748 pk_component = drug['pk_components'][0], 1749 episode = emr.add_episode(episode_name = gmMedication.DEFAULT_MEDICATION_HISTORY_EPISODE)['pk_episode'], 1750 ) 1751 intake['intake_is_approved_of'] = True 1752 intake.save() 1753 1754 return
1755 #------------------------------------------------------------
1756 -class cCurrentSubstancesGrid(wx.grid.Grid):
1757 """A grid class for displaying current substance intake. 1758 1759 - does NOT listen to the currently active patient 1760 - thereby it can display any patient at any time 1761 """
1762 - def __init__(self, *args, **kwargs):
1763 1764 wx.grid.Grid.__init__(self, *args, **kwargs) 1765 1766 self.__patient = None 1767 self.__row_data = {} 1768 self.__prev_row = None 1769 self.__prev_tooltip_row = None 1770 self.__prev_cell_0 = None 1771 self.__grouping_mode = u'episode' 1772 self.__filter_show_unapproved = True 1773 self.__filter_show_inactive = False 1774 1775 self.__grouping2col_labels = { 1776 u'episode': [ 1777 _('Episode'), 1778 _('Substance'), 1779 _('Dose'), 1780 _('Schedule'), 1781 _('Started'), 1782 _('Duration / Until'), 1783 _('Brand') 1784 ], 1785 u'brand': [ 1786 _('Brand'), 1787 _('Schedule'), 1788 _('Substance'), 1789 _('Dose'), 1790 _('Started'), 1791 _('Duration / Until'), 1792 _('Episode') 1793 ] 1794 } 1795 1796 self.__grouping2order_by_clauses = { 1797 u'episode': u'pk_health_issue nulls first, episode, substance, started', 1798 u'brand': u'brand nulls last, substance, started' 1799 } 1800 1801 self.__init_ui() 1802 self.__register_events()
1803 #------------------------------------------------------------ 1804 # external API 1805 #------------------------------------------------------------
1806 - def get_selected_cells(self):
1807 1808 sel_block_top_left = self.GetSelectionBlockTopLeft() 1809 sel_block_bottom_right = self.GetSelectionBlockBottomRight() 1810 sel_cols = self.GetSelectedCols() 1811 sel_rows = self.GetSelectedRows() 1812 1813 selected_cells = [] 1814 1815 # individually selected cells (ctrl-click) 1816 selected_cells += self.GetSelectedCells() 1817 1818 # selected rows 1819 selected_cells += list ( 1820 (row, col) 1821 for row in sel_rows 1822 for col in xrange(self.GetNumberCols()) 1823 ) 1824 1825 # selected columns 1826 selected_cells += list ( 1827 (row, col) 1828 for row in xrange(self.GetNumberRows()) 1829 for col in sel_cols 1830 ) 1831 1832 # selection blocks 1833 for top_left, bottom_right in zip(self.GetSelectionBlockTopLeft(), self.GetSelectionBlockBottomRight()): 1834 selected_cells += [ 1835 (row, col) 1836 for row in xrange(top_left[0], bottom_right[0] + 1) 1837 for col in xrange(top_left[1], bottom_right[1] + 1) 1838 ] 1839 1840 return set(selected_cells)
1841 #------------------------------------------------------------
1842 - def get_selected_rows(self):
1843 rows = {} 1844 1845 for row, col in self.get_selected_cells(): 1846 rows[row] = True 1847 1848 return rows.keys()
1849 #------------------------------------------------------------
1850 - def get_selected_data(self):
1851 return [ self.__row_data[row] for row in self.get_selected_rows() ]
1852 #------------------------------------------------------------
1853 - def repopulate_grid(self):
1854 1855 self.empty_grid() 1856 1857 if self.__patient is None: 1858 return 1859 1860 emr = self.__patient.get_emr() 1861 meds = emr.get_current_substance_intake ( 1862 order_by = self.__grouping2order_by_clauses[self.__grouping_mode], 1863 include_unapproved = self.__filter_show_unapproved, 1864 include_inactive = self.__filter_show_inactive 1865 ) 1866 if not meds: 1867 return 1868 1869 self.BeginBatch() 1870 1871 # columns 1872 labels = self.__grouping2col_labels[self.__grouping_mode] 1873 if self.__filter_show_unapproved: 1874 self.AppendCols(numCols = len(labels) + 1) 1875 else: 1876 self.AppendCols(numCols = len(labels)) 1877 for col_idx in range(len(labels)): 1878 self.SetColLabelValue(col_idx, labels[col_idx]) 1879 if self.__filter_show_unapproved: 1880 self.SetColLabelValue(len(labels), u'OK?') 1881 self.SetColSize(len(labels), 40) 1882 1883 self.AppendRows(numRows = len(meds)) 1884 1885 # loop over data 1886 for row_idx in range(len(meds)): 1887 med = meds[row_idx] 1888 self.__row_data[row_idx] = med 1889 1890 if med['is_currently_active'] is True: 1891 atcs = [] 1892 if med['atc_substance'] is not None: 1893 atcs.append(med['atc_substance']) 1894 # if med['atc_brand'] is not None: 1895 # atcs.append(med['atc_brand']) 1896 # allg = emr.is_allergic_to(atcs = tuple(atcs), inns = (med['substance'],), brand = med['brand']) 1897 allg = emr.is_allergic_to(atcs = tuple(atcs), inns = (med['substance'],)) 1898 if allg not in [None, False]: 1899 attr = self.GetOrCreateCellAttr(row_idx, 0) 1900 if allg['type'] == u'allergy': 1901 attr.SetTextColour('red') 1902 else: 1903 attr.SetTextColour('yellow') 1904 self.SetRowAttr(row_idx, attr) 1905 else: 1906 attr = self.GetOrCreateCellAttr(row_idx, 0) 1907 attr.SetTextColour('grey') 1908 self.SetRowAttr(row_idx, attr) 1909 1910 if self.__grouping_mode == u'episode': 1911 if med['pk_episode'] is None: 1912 self.__prev_cell_0 = None 1913 epi = gmTools.u_diameter 1914 else: 1915 if self.__prev_cell_0 == med['episode']: 1916 epi = u'' 1917 else: 1918 self.__prev_cell_0 = med['episode'] 1919 epi = gmTools.coalesce(med['episode'], u'') 1920 self.SetCellValue(row_idx, 0, gmTools.wrap(text = epi, width = 40)) 1921 1922 self.SetCellValue(row_idx, 1, med['substance']) 1923 self.SetCellValue(row_idx, 2, u'%s%s' % (med['amount'], med['unit'])) 1924 self.SetCellValue(row_idx, 3, gmTools.coalesce(med['schedule'], u'')) 1925 self.SetCellValue(row_idx, 4, med['started'].strftime('%Y-%m-%d')) 1926 1927 if med['is_long_term']: 1928 self.SetCellValue(row_idx, 5, gmTools.u_infinity) 1929 else: 1930 if med['discontinued'] is None: 1931 if med['duration'] is None: 1932 self.SetCellValue(row_idx, 5, u'') 1933 else: 1934 self.SetCellValue(row_idx, 5, gmDateTime.format_interval(med['duration'], gmDateTime.acc_days)) 1935 else: 1936 self.SetCellValue(row_idx, 5, med['discontinued'].strftime('%Y-%m-%d')) 1937 1938 if med['pk_brand'] is None: 1939 brand = u'' 1940 else: 1941 if med['fake_brand']: 1942 brand = gmTools.coalesce(med['brand'], u'', _('%s (fake)')) 1943 else: 1944 brand = gmTools.coalesce(med['brand'], u'') 1945 self.SetCellValue(row_idx, 6, gmTools.wrap(text = brand, width = 35)) 1946 1947 elif self.__grouping_mode == u'brand': 1948 1949 if med['pk_brand'] is None: 1950 self.__prev_cell_0 = None 1951 brand = gmTools.u_diameter 1952 else: 1953 if self.__prev_cell_0 == med['brand']: 1954 brand = u'' 1955 else: 1956 self.__prev_cell_0 = med['brand'] 1957 if med['fake_brand']: 1958 brand = gmTools.coalesce(med['brand'], u'', _('%s (fake)')) 1959 else: 1960 brand = gmTools.coalesce(med['brand'], u'') 1961 self.SetCellValue(row_idx, 0, gmTools.wrap(text = brand, width = 35)) 1962 1963 self.SetCellValue(row_idx, 1, gmTools.coalesce(med['schedule'], u'')) 1964 self.SetCellValue(row_idx, 2, med['substance']) 1965 self.SetCellValue(row_idx, 3, u'%s%s' % (med['amount'], med['unit'])) 1966 self.SetCellValue(row_idx, 4, med['started'].strftime('%Y-%m-%d')) 1967 1968 if med['is_long_term']: 1969 self.SetCellValue(row_idx, 5, gmTools.u_infinity) 1970 else: 1971 if med['discontinued'] is None: 1972 if med['duration'] is None: 1973 self.SetCellValue(row_idx, 5, u'') 1974 else: 1975 self.SetCellValue(row_idx, 5, gmDateTime.format_interval(med['duration'], gmDateTime.acc_days)) 1976 else: 1977 self.SetCellValue(row_idx, 5, med['discontinued'].strftime('%Y-%m-%d')) 1978 1979 if med['pk_episode'] is None: 1980 epi = u'' 1981 else: 1982 epi = gmTools.coalesce(med['episode'], u'') 1983 self.SetCellValue(row_idx, 6, gmTools.wrap(text = epi, width = 40)) 1984 1985 else: 1986 raise ValueError('unknown grouping mode [%s]' % self.__grouping_mode) 1987 1988 if self.__filter_show_unapproved: 1989 self.SetCellValue ( 1990 row_idx, 1991 len(labels), 1992 gmTools.bool2subst(med['intake_is_approved_of'], gmTools.u_checkmark_thin, u'', u'?') 1993 ) 1994 1995 #self.SetCellAlignment(row, col, horiz = wx.ALIGN_RIGHT, vert = wx.ALIGN_CENTRE) 1996 1997 self.AutoSize() 1998 self.EndBatch()
1999 #------------------------------------------------------------
2000 - def empty_grid(self):
2001 self.BeginBatch() 2002 self.ClearGrid() 2003 # Windows cannot do "nothing", it rather decides to assert() 2004 # on thinking it is supposed to do nothing 2005 if self.GetNumberRows() > 0: 2006 self.DeleteRows(pos = 0, numRows = self.GetNumberRows()) 2007 if self.GetNumberCols() > 0: 2008 self.DeleteCols(pos = 0, numCols = self.GetNumberCols()) 2009 self.EndBatch() 2010 self.__row_data = {} 2011 self.__prev_cell_0 = None
2012 #------------------------------------------------------------
2013 - def show_info_on_entry(self):
2014 2015 if len(self.__row_data) == 0: 2016 return 2017 2018 sel_rows = self.get_selected_rows() 2019 if len(sel_rows) != 1: 2020 return 2021 2022 drug_db = get_drug_database() 2023 if drug_db is None: 2024 return 2025 2026 intake = self.get_selected_data()[0] # just in case 2027 if intake['brand'] is None: 2028 drug_db.show_info_on_substance(substance_intake = intake) 2029 else: 2030 drug_db.show_info_on_drug(substance_intake = intake)
2031 #------------------------------------------------------------
2033 2034 if len(self.__row_data) == 0: 2035 return 2036 2037 sel_rows = self.get_selected_rows() 2038 2039 if len(sel_rows) != 1: 2040 return 2041 2042 webbrowser.open ( 2043 url = gmMedication.drug2renal_insufficiency_url(search_term = self.get_selected_data()[0]), 2044 new = False, 2045 autoraise = True 2046 )
2047 #------------------------------------------------------------
2048 - def report_ADR(self):
2049 2050 dbcfg = gmCfg.cCfgSQL() 2051 2052 url = dbcfg.get2 ( 2053 option = u'external.urls.report_ADR', 2054 workplace = gmSurgery.gmCurrentPractice().active_workplace, 2055 bias = u'user', 2056 default = u'https://dcgma.org/uaw/meldung.php' # http://www.akdae.de/Arzneimittelsicherheit/UAW-Meldung/UAW-Meldung-online.html 2057 ) 2058 2059 webbrowser.open(url = url, new = False, autoraise = True)
2060 #------------------------------------------------------------
2061 - def prescribe(self):
2062 drug_db = get_drug_database() 2063 if drug_db is None: 2064 return 2065 2066 drug_db.reviewer = gmPerson.gmCurrentProvider() 2067 update_substance_intake_list_from_prescription ( 2068 parent = self, 2069 prescribed_drugs = drug_db.prescribe(), 2070 emr = self.__patient.get_emr() 2071 )
2072 #------------------------------------------------------------
2073 - def check_interactions(self):
2074 2075 if len(self.__row_data) == 0: 2076 return 2077 2078 drug_db = get_drug_database() 2079 if drug_db is None: 2080 return 2081 2082 if len(self.get_selected_rows()) > 1: 2083 drug_db.check_interactions(substance_intakes = self.get_selected_data()) 2084 else: 2085 drug_db.check_interactions(substance_intakes = self.__row_data.values())
2086 #------------------------------------------------------------
2087 - def add_substance(self):
2088 edit_intake_of_substance(parent = self, substance = None)
2089 #------------------------------------------------------------
2090 - def edit_substance(self):
2091 2092 rows = self.get_selected_rows() 2093 2094 if len(rows) == 0: 2095 return 2096 2097 if len(rows) > 1: 2098 gmDispatcher.send(signal = 'statustext', msg = _('Cannot edit more than one substance at once.'), beep = True) 2099 return 2100 2101 subst = self.get_selected_data()[0] 2102 edit_intake_of_substance(parent = self, substance = subst)
2103 #------------------------------------------------------------
2104 - def delete_substance(self):
2105 2106 rows = self.get_selected_rows() 2107 2108 if len(rows) == 0: 2109 return 2110 2111 if len(rows) > 1: 2112 gmDispatcher.send(signal = 'statustext', msg = _('Cannot delete more than one substance at once.'), beep = True) 2113 return 2114 2115 subst = self.get_selected_data()[0] 2116 delete_substance_intake(parent = self, substance = subst['pk_substance_intake'])
2117 #------------------------------------------------------------
2119 rows = self.get_selected_rows() 2120 2121 if len(rows) == 0: 2122 return 2123 2124 if len(rows) > 1: 2125 gmDispatcher.send(signal = 'statustext', msg = _('Cannot create allergy from more than one substance at once.'), beep = True) 2126 return 2127 2128 return turn_substance_intake_into_allergy ( 2129 parent = self, 2130 intake = self.get_selected_data()[0], 2131 emr = self.__patient.get_emr() 2132 )
2133 #------------------------------------------------------------
2134 - def print_medication_list(self):
2135 # there could be some filtering/user interaction going on here 2136 print_medication_list(parent = self)
2137 #------------------------------------------------------------
2138 - def get_row_tooltip(self, row=None):
2139 2140 try: 2141 entry = self.__row_data[row] 2142 except KeyError: 2143 return u' ' 2144 2145 emr = self.__patient.get_emr() 2146 atcs = [] 2147 if entry['atc_substance'] is not None: 2148 atcs.append(entry['atc_substance']) 2149 # if entry['atc_brand'] is not None: 2150 # atcs.append(entry['atc_brand']) 2151 # allg = emr.is_allergic_to(atcs = tuple(atcs), inns = (entry['substance'],), brand = entry['brand']) 2152 allg = emr.is_allergic_to(atcs = tuple(atcs), inns = (entry['substance'],)) 2153 2154 tt = _('Substance intake entry (%s, %s) [#%s] \n') % ( 2155 gmTools.bool2subst ( 2156 boolean = entry['is_currently_active'], 2157 true_return = gmTools.bool2subst ( 2158 boolean = entry['seems_inactive'], 2159 true_return = _('active, needs check'), 2160 false_return = _('active'), 2161 none_return = _('assumed active') 2162 ), 2163 false_return = _('inactive') 2164 ), 2165 gmTools.bool2subst ( 2166 boolean = entry['intake_is_approved_of'], 2167 true_return = _('approved'), 2168 false_return = _('unapproved') 2169 ), 2170 entry['pk_substance_intake'] 2171 ) 2172 2173 if allg not in [None, False]: 2174 certainty = gmTools.bool2subst(allg['definite'], _('definite'), _('suspected')) 2175 tt += u'\n' 2176 tt += u' !! ---- Cave ---- !!\n' 2177 tt += u' %s (%s): %s (%s)\n' % ( 2178 allg['l10n_type'], 2179 certainty, 2180 allg['descriptor'], 2181 gmTools.coalesce(allg['reaction'], u'')[:40] 2182 ) 2183 tt += u'\n' 2184 2185 tt += u' ' + _('Substance: %s [#%s]\n') % (entry['substance'], entry['pk_substance']) 2186 tt += u' ' + _('Preparation: %s\n') % entry['preparation'] 2187 tt += u' ' + _('Amount per dose: %s%s') % (entry['amount'], entry['unit']) 2188 if entry.ddd is not None: 2189 tt += u' (DDD: %s %s)' % (entry.ddd['ddd'], entry.ddd['unit']) 2190 tt += u'\n' 2191 tt += gmTools.coalesce(entry['atc_substance'], u'', _(' ATC (substance): %s\n')) 2192 2193 tt += u'\n' 2194 2195 tt += gmTools.coalesce ( 2196 entry['brand'], 2197 u'', 2198 _(' Brand name: %%s [#%s]\n') % entry['pk_brand'] 2199 ) 2200 tt += gmTools.coalesce(entry['atc_brand'], u'', _(' ATC (brand): %s\n')) 2201 2202 tt += u'\n' 2203 2204 tt += gmTools.coalesce(entry['schedule'], u'', _(' Regimen: %s\n')) 2205 2206 if entry['is_long_term']: 2207 duration = u' %s %s' % (gmTools.u_right_arrow, gmTools.u_infinity) 2208 else: 2209 if entry['duration'] is None: 2210 duration = u'' 2211 else: 2212 duration = u' %s %s' % (gmTools.u_right_arrow, gmDateTime.format_interval(entry['duration'], gmDateTime.acc_days)) 2213 2214 tt += _(' Started %s%s%s\n') % ( 2215 entry['started'].strftime('%Y %B %d').decode(gmI18N.get_encoding()), 2216 duration, 2217 gmTools.bool2subst(entry['is_long_term'], _(' (long-term)'), _(' (short-term)'), u'') 2218 ) 2219 2220 if entry['discontinued'] is not None: 2221 tt += _(' Discontinued %s\n') % ( 2222 entry['discontinued'].strftime('%Y %B %d').decode(gmI18N.get_encoding()), 2223 ) 2224 tt += _(' Reason: %s\n') % entry['discontinue_reason'] 2225 2226 tt += u'\n' 2227 2228 tt += gmTools.coalesce(entry['aim'], u'', _(' Aim: %s\n')) 2229 tt += gmTools.coalesce(entry['episode'], u'', _(' Episode: %s\n')) 2230 tt += gmTools.coalesce(entry['notes'], u'', _(' Advice: %s\n')) 2231 2232 tt += u'\n' 2233 2234 tt += _(u'Revision: #%(row_ver)s, %(mod_when)s by %(mod_by)s.') % ({ 2235 'row_ver': entry['row_version'], 2236 'mod_when': entry['modified_when'].strftime('%c').decode(gmI18N.get_encoding()), 2237 'mod_by': entry['modified_by'] 2238 }) 2239 2240 return tt
2241 #------------------------------------------------------------ 2242 # internal helpers 2243 #------------------------------------------------------------
2244 - def __init_ui(self):
2245 self.CreateGrid(0, 1) 2246 self.EnableEditing(0) 2247 self.EnableDragGridSize(1) 2248 self.SetSelectionMode(wx.grid.Grid.wxGridSelectRows) 2249 2250 self.SetColLabelAlignment(wx.ALIGN_LEFT, wx.ALIGN_CENTER) 2251 2252 self.SetRowLabelSize(0) 2253 self.SetRowLabelAlignment(horiz = wx.ALIGN_RIGHT, vert = wx.ALIGN_CENTRE)
2254 #------------------------------------------------------------ 2255 # properties 2256 #------------------------------------------------------------
2257 - def _get_patient(self):
2258 return self.__patient
2259
2260 - def _set_patient(self, patient):
2261 self.__patient = patient 2262 self.repopulate_grid()
2263 2264 patient = property(_get_patient, _set_patient) 2265 #------------------------------------------------------------
2266 - def _get_grouping_mode(self):
2267 return self.__grouping_mode
2268
2269 - def _set_grouping_mode(self, mode):
2270 self.__grouping_mode = mode 2271 self.repopulate_grid()
2272 2273 grouping_mode = property(_get_grouping_mode, _set_grouping_mode) 2274 #------------------------------------------------------------
2276 return self.__filter_show_unapproved
2277
2278 - def _set_filter_show_unapproved(self, val):
2279 self.__filter_show_unapproved = val 2280 self.repopulate_grid()
2281 2282 filter_show_unapproved = property(_get_filter_show_unapproved, _set_filter_show_unapproved) 2283 #------------------------------------------------------------
2284 - def _get_filter_show_inactive(self):
2285 return self.__filter_show_inactive
2286
2287 - def _set_filter_show_inactive(self, val):
2288 self.__filter_show_inactive = val 2289 self.repopulate_grid()
2290 2291 filter_show_inactive = property(_get_filter_show_inactive, _set_filter_show_inactive) 2292 #------------------------------------------------------------ 2293 # event handling 2294 #------------------------------------------------------------
2295 - def __register_events(self):
2296 # dynamic tooltips: GridWindow, GridRowLabelWindow, GridColLabelWindow, GridCornerLabelWindow 2297 self.GetGridWindow().Bind(wx.EVT_MOTION, self.__on_mouse_over_cells) 2298 #self.GetGridRowLabelWindow().Bind(wx.EVT_MOTION, self.__on_mouse_over_row_labels) 2299 #self.GetGridColLabelWindow().Bind(wx.EVT_MOTION, self.__on_mouse_over_col_labels) 2300 2301 # editing cells 2302 self.Bind(wx.grid.EVT_GRID_CELL_LEFT_DCLICK, self.__on_cell_left_dclicked)
2303 #------------------------------------------------------------
2304 - def __on_mouse_over_cells(self, evt):
2305 """Calculate where the mouse is and set the tooltip dynamically.""" 2306 2307 # Use CalcUnscrolledPosition() to get the mouse position within the 2308 # entire grid including what's offscreen 2309 x, y = self.CalcUnscrolledPosition(evt.GetX(), evt.GetY()) 2310 2311 # use this logic to prevent tooltips outside the actual cells 2312 # apply to GetRowSize, too 2313 # tot = 0 2314 # for col in xrange(self.NumberCols): 2315 # tot += self.GetColSize(col) 2316 # if xpos <= tot: 2317 # self.tool_tip.Tip = 'Tool tip for Column %s' % ( 2318 # self.GetColLabelValue(col)) 2319 # break 2320 # else: # mouse is in label area beyond the right-most column 2321 # self.tool_tip.Tip = '' 2322 2323 row, col = self.XYToCell(x, y) 2324 2325 if row == self.__prev_tooltip_row: 2326 return 2327 2328 self.__prev_tooltip_row = row 2329 2330 try: 2331 evt.GetEventObject().SetToolTipString(self.get_row_tooltip(row = row)) 2332 except KeyError: 2333 pass
2334 #------------------------------------------------------------
2335 - def __on_cell_left_dclicked(self, evt):
2336 row = evt.GetRow() 2337 data = self.__row_data[row] 2338 edit_intake_of_substance(parent = self, substance = data)
2339 #============================================================ 2340 from Gnumed.wxGladeWidgets import wxgCurrentSubstancesPnl 2341
2342 -class cCurrentSubstancesPnl(wxgCurrentSubstancesPnl.wxgCurrentSubstancesPnl, gmRegetMixin.cRegetOnPaintMixin):
2343 2344 """Panel holding a grid with current substances. Used as notebook page.""" 2345
2346 - def __init__(self, *args, **kwargs):
2347 2348 wxgCurrentSubstancesPnl.wxgCurrentSubstancesPnl.__init__(self, *args, **kwargs) 2349 gmRegetMixin.cRegetOnPaintMixin.__init__(self) 2350 2351 self.__register_interests()
2352 #----------------------------------------------------- 2353 # reget-on-paint mixin API 2354 #-----------------------------------------------------
2355 - def _populate_with_data(self):
2356 """Populate cells with data from model.""" 2357 pat = gmPerson.gmCurrentPatient() 2358 if pat.connected: 2359 self._grid_substances.patient = pat 2360 else: 2361 self._grid_substances.patient = None 2362 return True
2363 #-------------------------------------------------------- 2364 # event handling 2365 #--------------------------------------------------------
2366 - def __register_interests(self):
2367 gmDispatcher.connect(signal = u'pre_patient_selection', receiver = self._on_pre_patient_selection) 2368 gmDispatcher.connect(signal = u'post_patient_selection', receiver = self._schedule_data_reget) 2369 gmDispatcher.connect(signal = u'substance_intake_mod_db', receiver = self._schedule_data_reget)
2370 # active_substance_mod_db 2371 # substance_brand_mod_db 2372 #--------------------------------------------------------
2373 - def _on_pre_patient_selection(self):
2374 wx.CallAfter(self.__on_pre_patient_selection)
2375 #--------------------------------------------------------
2376 - def __on_pre_patient_selection(self):
2377 self._grid_substances.patient = None
2378 #--------------------------------------------------------
2379 - def _on_add_button_pressed(self, event):
2380 self._grid_substances.add_substance()
2381 #--------------------------------------------------------
2382 - def _on_edit_button_pressed(self, event):
2383 self._grid_substances.edit_substance()
2384 #--------------------------------------------------------
2385 - def _on_delete_button_pressed(self, event):
2386 self._grid_substances.delete_substance()
2387 #--------------------------------------------------------
2388 - def _on_info_button_pressed(self, event):
2389 self._grid_substances.show_info_on_entry()
2390 #--------------------------------------------------------
2391 - def _on_interactions_button_pressed(self, event):
2392 self._grid_substances.check_interactions()
2393 #--------------------------------------------------------
2394 - def _on_episode_grouping_selected(self, event):
2395 self._grid_substances.grouping_mode = 'episode'
2396 #--------------------------------------------------------
2397 - def _on_brand_grouping_selected(self, event):
2398 self._grid_substances.grouping_mode = 'brand'
2399 #--------------------------------------------------------
2400 - def _on_show_unapproved_checked(self, event):
2401 self._grid_substances.filter_show_unapproved = self._CHBOX_show_unapproved.GetValue()
2402 #--------------------------------------------------------
2403 - def _on_show_inactive_checked(self, event):
2404 self._grid_substances.filter_show_inactive = self._CHBOX_show_inactive.GetValue()
2405 #--------------------------------------------------------
2406 - def _on_print_button_pressed(self, event):
2407 self._grid_substances.print_medication_list()
2408 #--------------------------------------------------------
2409 - def _on_allergy_button_pressed(self, event):
2410 self._grid_substances.create_allergy_from_substance()
2411 #--------------------------------------------------------
2412 - def _on_button_kidneys_pressed(self, event):
2413 self._grid_substances.show_renal_insufficiency_info()
2414 #--------------------------------------------------------
2415 - def _on_adr_button_pressed(self, event):
2416 self._grid_substances.report_ADR()
2417 #--------------------------------------------------------
2418 - def _on_rx_button_pressed(self, event):
2419 self._grid_substances.prescribe()
2420 #============================================================ 2421 # main 2422 #------------------------------------------------------------ 2423 if __name__ == '__main__': 2424 2425 if len(sys.argv) < 2: 2426 sys.exit() 2427 2428 if sys.argv[1] != 'test': 2429 sys.exit() 2430 2431 from Gnumed.pycommon import gmI18N 2432 2433 gmI18N.activate_locale() 2434 gmI18N.install_domain(domain = 'gnumed') 2435 2436 #---------------------------------------- 2437 app = wx.PyWidgetTester(size = (600, 600)) 2438 #app.SetWidget(cATCPhraseWheel, -1) 2439 app.SetWidget(cSubstancePhraseWheel, -1) 2440 app.MainLoop() 2441 2442 #============================================================ 2443