Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

Changeset 3995

Show
Ignore:
Timestamp:
04/22/08 17:24:47 (9 months ago)
Author:
tmdugan
Message:

-- chica

* continuation of previous commit

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs-modules/chica/.classpath

    r3815 r3995  
    11<?xml version="1.0" encoding="UTF-8"?> 
    22<classpath> 
    3         <classpathentry kind="lib" path="dist"/> 
    43        <classpathentry kind="lib" path="metadata"/> 
    54        <classpathentry kind="src" path="src"/> 
     
    6665        <classpathentry kind="lib" path="lib-common/tests-openmrs-api-1.2.11.3658.jar"/> 
    6766        <classpathentry kind="lib" path="lib-common/web-openmrs-api-1.2.11.3658.jar"/> 
    68         <classpathentry kind="lib" path="lib-common/atd-1.21.jar"/> 
    69         <classpathentry kind="lib" path="lib-common/dss-2.11.jar"/> 
     67        <classpathentry kind="lib" path="lib-common/atd-1.22.jar"/> 
     68        <classpathentry kind="lib" path="lib-common/dss-2.12.jar"/> 
     69        <classpathentry kind="lib" path="dist"/> 
    7070        <classpathentry kind="output" path="build"/> 
    7171</classpath> 
  • openmrs-modules/chica/src/org/openmrs/module/chica/impl/ChicaServiceImpl.java

    r3815 r3995  
    135135                 
    136136                atdService.consume(input, formInstanceId, formId,  
    137                                 patient,encounterId,formInstanceIdTag);        
     137                                patient,encounterId,formInstanceIdTag,null,null);      
    138138                 
    139139                saveAnswers(fieldMap,formInstanceId,formId,patient,encounterId); 
     
    283283                parameters.put("encounterId", encounterId); 
    284284                providerNameRule.setParameters(parameters); 
    285                 Result consultingDoc = dssService.runRule(patient, providerNameRule, defaultPackagePrefix); 
     285                Result consultingDoc = dssService.runRule(patient, providerNameRule, defaultPackagePrefix,null); 
    286286 
    287287                for (FormField currField : databaseForm.getFormFields()) 
     
    516516                dssManager.setMaxDssElementsByType(dssType, maxDssElements); 
    517517                atdService.produce(patient, formInstanceId,output,formId, 
    518                                 dssManager,encounterId); 
     518                                dssManager,encounterId,null,null); 
    519519                                 
    520520                this.saveStats(patient,formInstanceId,dssManager);