1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?xml version="1.0" encoding="euc-kr"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
- <xsl:template match="/">
- <html>
- <body >
- <div id="page" style="position:relative; top:5px; width:682px; ">
- <!-- <div id="patinfo" >
- <table bordercolor="silver" frame="box" cellspacing="0" width="100%">
- <tr>
- <td>
- <table>
- <tr>
- <td>등록번호</td>
- <td>
- <xsl:value-of select="/SignData/PatientInfo/pid"/>
- </td>
- </tr>
- <tr>
- <td>성명</td>
- <td>
- <xsl:value-of select="/SignData/PatientInfo/pname"/>
- </td>
- </tr>
- <tr>
- <td>성별/나이</td>
- <td>
- <xsl:value-of select="/SignData/PatientInfo/age"/>
- </td>
- </tr>
- <tr>
- <td>진료과</td>
- <td>
- <xsl:value-of select="/SignData/PatientInfo/orddept"/>
- </td>
- </tr>
- </table>
- </td>
- <td align="center"><font size="5"><b>기본간호기록</b></font></td>
- </tr>
- </table>
- </div><br/> -->
- <table border="1" frame="box" bordercolor="silver" cellspacing="0" width="100%">
- <tr>
- <td bgcolor = "#e0e0e0" width="10%" align="center">구분</td>
- <td bgcolor = "#e0e0e0" width="15%" align="center">기본간호항목</td>
- <td bgcolor = "#e0e0e0" width="15%" align="center">최소시행주기</td>
- <td bgcolor = "#e0e0e0" width="60%" align="center" colspan="4">시행내역</td>
- </tr>
- <xsl:apply-templates select="/SignData/SignInfo/nursebasicinfo/nursebasiclist"/>
- </table>
- </div>
- </body>
- </html>
- </xsl:template>
-
- <xsl:template match="nursebasiclist">
- <tr>
- <td width="10%" align="left"><xsl:value-of select="supnm"/></td>
- <td width="15%" align="left"><xsl:value-of select="itemnm"/></td>
- <td width="15%" align="center"><xsl:value-of select="periodtime"/></td>
- <td width="10%" align="center"><xsl:value-of select="recdt"/></td>
- <td width="10%" align="center"><xsl:value-of select="recnm"/></td>
- <td width="10%" align="left"><xsl:value-of select="actingcon"/></td>
- <td width="20%" align="left"><xsl:value-of select="etcactremark"/></td>
- </tr>
- </xsl:template>
-
- </xsl:stylesheet>
|