dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #14309
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 4820: Error when showing details for Identifier Type.
------------------------------------------------------------
revno: 4820
committer: Tran Chau <tran.hispvietnam@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2011-10-04 14:35:17 +0700
message:
Error when showing details for Identifier Type.
modified:
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/javascript/patientIdentifierType.js
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/javascript/patientIdentifierType.js'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/javascript/patientIdentifierType.js 2011-10-03 07:45:06 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/javascript/patientIdentifierType.js 2011-10-04 07:35:17 +0000
@@ -6,20 +6,20 @@
{
jQuery.post( 'getPatientIdentifierType.action', { id: patientIdentifierTypeId },
function ( json ) {
- setInnerHTML( 'idField', json.patientAttributeType.id );
- setInnerHTML( 'nameField', json.patientAttributeType.name );
- setInnerHTML( 'descriptionField', json.patientAttributeType.description );
+ setInnerHTML( 'idField', json.patientIdentifierType.id );
+ setInnerHTML( 'nameField', json.patientIdentifierType.name );
+ setInnerHTML( 'descriptionField', json.patientIdentifierType.description );
var boolValueMap = { 'true':i18n_yes, 'false':i18n_no };
- var boolType = json.patientAttributeType.mandatory;
+ var boolType = json.patientIdentifierType.mandatory;
setInnerHTML( 'mandatoryField', boolValueMap[boolType] );
- boolType = json.patientAttributeType.related;
+ boolType = json.patientIdentifierType.related;
setInnerHTML( 'relatedField', boolValueMap[boolType] );
- setInnerHTML( 'noCharsField', json.patientAttributeType.noChars );
+ setInnerHTML( 'noCharsField', json.patientIdentifierType.noChars );
var valueTypeMap = { 'text':i18n_string, 'number':i18n_number, 'letter':i18n_alphabet };
- var valueType = json.patientAttributeType.type;
+ var valueType = json.patientIdentifierType.type;
setInnerHTML( 'typeField', valueTypeMap[valueType] );
showDetails();