Produced by Araxis Merge on 6/9/2017 3:51:37 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | Fri Jun 9 19:51:37 2017 UTC | ||
| 2 | eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-web\src\main\webapp\WEB-INF\web\admin\organization | edit.jsp | Fri Apr 21 20:15:58 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 0 | 0 |
| Changed | 0 | 0 |
| Inserted | 1 | 154 |
| Removed | 0 | 0 |
| Whitespace | |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
| 1 | <%-- | |||||
| 2 | Docume nt : edi t | |||||
| 3 | Create d on : Mar 17, 2016, 6:25:38 A M | |||||
| 4 | Author : Joh ann Sonnen berg | |||||
| 5 | --%> | |||||
| 6 | <%@taglib tagdir="/W EB-INF/tag s/formatti ng" prefix ="f" %> | |||||
| 7 | <%@taglib uri="http: //java.sun .com/jsp/j stl/core" prefix="c" %> | |||||
| 8 | <%@taglib tagdir="/W EB-INF/tag s/cpp" pre fix="cpp" %> | |||||
| 9 | ||||||
| 10 | <f:mainTem plate head erText="Pa rtner Orga nizations" > | |||||
| 11 | <scrip t language ="JavaScri pt"> | |||||
| 12 | $( document). ready(func tion() { | |||||
| 13 | <c:if te st="${orga nization.a ctive == ' N'}"> | |||||
| 14 | //ma ke the fie lds read o nly becaus e this par tner organ ization is NOT activ e. | |||||
| 15 | $('# frmEditOrg anization .disableWh enInactive ').prop('d isabled', true); | |||||
| 16 | </c:if> | |||||
| 17 | ||||||
| 18 | $('.orgO ptions').o n('change' , function (event) { | |||||
| 19 | var link = $(t his); // l ink that t riggered t he modal | |||||
| 20 | var key = link .data('org -option'); // extrac t info fro m data-* a ttributes | |||||
| 21 | ||||||
| 22 | if(k ey === 'tr ustedSourc e') | |||||
| 23 | { | |||||
| 24 | $('#truste dSourceWar ning').sho w(); | |||||
| 25 | } el se { | |||||
| 26 | $('#truste dSourceWar ning').hid e(); | |||||
| 27 | } | |||||
| 28 | ||||||
| 29 | if ( key === 'a ctive') // if it chan ges and it NOT check ed show it | |||||
| 30 | { | |||||
| 31 | if (!$(thi s).is(':ch ecked')) | |||||
| 32 | { | |||||
| 33 | //show the warni ng message | |||||
| 34 | $('#ac tiveWarnin g').show() ; | |||||
| 35 | ||||||
| 36 | //rese t the form back to w hat it was | |||||
| 37 | $(this ).closest( 'form')[0] .reset(); | |||||
| 38 | ||||||
| 39 | //set the active checkbox to not che cked | |||||
| 40 | $(this ).prop('ch ecked', fa lse); | |||||
| 41 | ||||||
| 42 | //pop a dialog/m odal to te ll the use r that we are | |||||
| 43 | $('#di alog-no-lo nger-activ e').dialog ({ | |||||
| 44 | mo dal: true, | |||||
| 45 | bu ttons: { | |||||
| 46 | Ok: func tion () { | |||||
| 47 | $(th is).dialog ("close"); | |||||
| 48 | } | |||||
| 49 | } | |||||
| 50 | }); | |||||
| 51 | ||||||
| 52 | if(!$( this).is(' :checked') ) | |||||
| 53 | { | |||||
| 54 | // show the w arning mes sage | |||||
| 55 | $( '#activeWa rning').sh ow(); | |||||
| 56 | ||||||
| 57 | // reset the form back to what it was | |||||
| 58 | $( this).clos est('form' )[0].reset (); | |||||
| 59 | ||||||
| 60 | // set the ac tive check box to not checked | |||||
| 61 | $( this).prop ('checked' , false); | |||||
| 62 | ||||||
| 63 | // pop a dial og/modal t o tell the user that we are | |||||
| 64 | $( '#dialog- no-longer- active' ). dialog({ | |||||
| 65 | modal: t rue, | |||||
| 66 | buttons: { | |||||
| 67 | Ok: func tion() { | |||||
| 68 | $( this ). dialog( "c lose" ); | |||||
| 69 | } | |||||
| 70 | } | |||||
| 71 | }) ; | |||||
| 72 | ||||||
| 73 | // disable al l the fiel ds | |||||
| 74 | $( '#frmEditO rganizatio n .disable WhenInacti ve').prop( 'disabled' , true); | |||||
| 75 | } else { | |||||
| 76 | // remove the warning m essage | |||||
| 77 | $( '#activeWa rning').hi de(); | |||||
| 78 | ||||||
| 79 | // enable all fields | |||||
| 80 | $( '#frmEditO rganizatio n .disable WhenInacti ve').prop( 'disabled' , false); | |||||
| 81 | } | |||||
| 82 | } | |||||
| 83 | } | |||||
| 84 | }); | |||||
| 85 | }) ; | |||||
| 86 | </scri pt> | |||||
| 87 | ||||||
| 88 | <div c lass="form -container "> | |||||
| 89 | <f orm name=" frmEditOrg anization" id="frmEd itOrganiza tion" acti on="Organi zationHand ler.do_sec ?editCompl ete=true" method="po st"> | |||||
| 90 | <input t ype="hidde n" name="o rgId" id=" orgId" val ue="<c:out value="${ organizati on.orgId}" />" /> | |||||
| 91 | <fieldse t> | |||||
| 92 | <leg end>Edit P artner Org anization< /legend> | |||||
| 93 | <div id="error Message" c lass="erro rs" style= "display: none;"></d iv> | |||||
| 94 | <div > | |||||
| 95 | <label for ="orgName" >Organizat ion name</ label> | |||||
| 96 | <input dat a-tooltip= "<c:out va lue="${des criptors[' partnerOrg anizationN ameField'] }"/>" type ="text" na me="orgNam e" id="org Name" maxl ength="255 " value="< c:out valu e="${organ ization.or gName}"/>" required /> <i clas s="fa fa-a sterisk va p-required "></i> | |||||
| 97 | </di v> | |||||
| 98 | <div > | |||||
| 99 | <label for ="orgNumbe r">Organiz ation numb er</label> | |||||
| 100 | <input dat a-tooltip= "<c:out va lue="${des criptors[' partnerOrg anizationN umberField ']}"/>" ty pe="text" name="orgN umber" id= "orgNumber " maxlengt h="255" va lue="<c:ou t value="$ {organizat ion.orgNum ber}"/>" r equired /> <i class= "fa fa-ast erisk vap- required"> </i> | |||||
| 101 | </di v> | |||||
| 102 | <div > | |||||
| 103 | <label for ="orgConta ct">Contac t name</la bel> | |||||
| 104 | <input dat a-tooltip= "<c:out va lue="${des criptors[' partnerOrg anizationC ontactName Field']}"/ >" type="t ext" name= "orgContac t" id="org Contact" m axlength=" 255" value ="<c:out v alue="${or ganization .orgContac t}"/>" /> | |||||
| 105 | </di v> | |||||
| 106 | <div > | |||||
| 107 | <label for ="orgPhone ">Contact phone</lab el> | |||||
| 108 | <input dat a-tooltip= "<c:out va lue="${des criptors[' partnerOrg anizationC ontactPhon eField']}" />" type=" text" name ="orgPhone " id="orgP hone" maxl ength="255 " value="< c:out valu e="${organ ization.oo rgPhoneNum ber}"/>" / > | |||||
| 109 | </di v> | |||||
| 110 | <div class="no -padding"> | |||||
| 111 | <label for ="isTruste dClinicalS ource">Is trusted cl inical sou rce</label > | |||||
| 112 | <input dat a-tooltip= "<c:out va lue="${des criptors[' partnerOrg anizationI sTrustedCl inicalSour ceField']} "/>" type= "checkbox" name="isT rustedClin icalSource " id="isTr ustedClini calSource" value="Y" <c:if tes t="${organ ization.is TrustedCli nicalSourc e == 'Y'}" >checked=" checked" < /c:if>clas s="orgOpti ons" data- org-option ="trustedS ource" /> | |||||
| 113 | <div class ="bg-warni ng" style= "display: none;" id= "trustedSo urceWarnin g"> | |||||
| 114 | NOTE: Clinical d ata submit ted from t his partne r will be input into VistA wit hout a cli nician's r eview. | |||||
| 115 | </div> | |||||
| 116 | <div class ="clearfix "></div> | |||||
| 117 | </di v> | |||||
| 118 | <div > | |||||
| 119 | <label for ="orgActiv e">Active< /label> | |||||
| 120 | <c:choose> | |||||
| 121 | <c:whe n test="${ organizati on.active == 'Y'}">Y es</c:when > | |||||
| 122 | <c:oth erwise>No< /c:otherwi se> | |||||
| 123 | </c:choose > | |||||
| 124 | </di v> | |||||
| 125 | <div > | |||||
| 126 | <label for ="orgConsu merOnly">C onsumer on ly</label> | |||||
| 127 | <c:choose> | |||||
| 128 | <c:whe n test="${ organizati on.orgCons umerOnly}" >Yes</c:wh en> | |||||
| 129 | <c:oth erwise>No< /c:otherwi se> | |||||
| 130 | </c:choose > | |||||
| 131 | </di v> | |||||
| 132 | <div > | |||||
| 133 | <label for ="orgOid"> Organizati on ID</lab el> | |||||
| 134 | <c:out val ue="${orga nization.o rgOid}"/> | |||||
| 135 | </di v> | |||||
| 136 | <div > | |||||
| 137 | <label for ="orgDomai n">Domain< /label> | |||||
| 138 | <c:out val ue="${orga nization.o rgDomain}" /> | |||||
| 139 | </di v> | |||||
| 140 | <div > | |||||
| 141 | <label for ="orgPrefi x">Prefix< /label> | |||||
| 142 | <c:out val ue="${orga nization.o rgCommunit yIdPrefix} "/> | |||||
| 143 | </di v> | |||||
| 144 | </fields et> | |||||
| 145 | <div> | |||||
| 146 | <inp ut name="b tnSave" id ="btnSearc h" title=" Save" clas s="button" type="sub mit" value ="Save" /> &nbs p; | |||||
| 147 | <inp ut type="b utton" val ue="Cancel " onclick= "location. href='Orga nizationHa ndler.do_s ec?list=tr ue';" /> | |||||
| 148 | </div> | |||||
| 149 | </ form> | |||||
| 150 | </div> | |||||
| 151 | <div i d="dialog- no-longer- active" st yle="displ ay: none;" title="Pa rtner Orga nization N o Longer A ctive"> | |||||
| 152 | Yo u have sel ected to i nactivate this partn er organiz ation. All fields ar e now lock ed and no more chang es, other than the s tatus will be saved. | |||||
| 153 | </div> | |||||
| 154 | </f:mainTe mplate> |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.