12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?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>
- <!--
- <title>간호수행기록</title>
- <style type="text/css">
- body,
- input,
- select,
- table,
- textarea,
- .vs_button {
- font-family:돋움;
- font-size:9pt;
- }
- </style>
- <script language="JavaScript">
- function fHiddenCommonInfo(){
- patinfo.style.display="none";
- }
- </script>
- </head>
- -->
- <div id="page" style="position:relative; top:5px; width:682px; ">
- <table border="1" frame="box" bordercolor="silver" cellspacing="0" width="100%">
- <tr>
- <td bgcolor = "#e0e0e0" width="18%" align="center">Item</td>
- <td bgcolor = "#e0e0e0" width="7%" align="center">부위</td>
- <td bgcolor = "#e0e0e0" width="18%" align="center">수행일시</td>
- <td bgcolor = "#e0e0e0" width="35%" align="center">수행요소</td>
- <td bgcolor = "#e0e0e0" width="5%" align="center">예약설정</td>
- <td bgcolor = "#e0e0e0" width="10%" align="center" colspan="2">예약주기</td>
- <td bgcolor = "#e0e0e0" width="7%" align="center">수행자</td>
- </tr>
- <xsl:apply-templates select="/SignData/SignInfo/careexecinfo/careexeclist"/>
- </table>
- </div>
- </body>
- </html>
- </xsl:template>
-
- <xsl:template match="careexeclist">
- <tr>
- <td width="18%" align="left" ><xsl:value-of select="itemnm"/></td>
- <td width="7%" align="left" ><xsl:value-of select="loc"/></td>
- <td width="15%" align="center">
- <xsl:value-of select="substring(execdd,1,4)"/>
- <xsl:if test="execdd"><xsl:text>-</xsl:text></xsl:if>
- <xsl:value-of select="substring(execdd,5,2)"/>
- <xsl:if test="execdd"><xsl:text>-</xsl:text></xsl:if>
- <xsl:value-of select="substring(execdd,7,2)"/>
- <xsl:if test="execdd"><xsl:text> </xsl:text></xsl:if>
- <xsl:value-of select="substring(exectm,1,2)"/>
- <xsl:if test="exectm"><xsl:text>:</xsl:text></xsl:if>
- <xsl:value-of select="substring(exectm,3,2)"/>
- </td>
- <td width="35%" align="left"><xsl:value-of select="elmtcd"/></td>
- <td width="5%" align="center"><xsl:value-of select="rsrvyn"/></td>
- <td width="5%" align="center"><xsl:value-of select="execprid"/></td>
- <td width="5%" align="center"><xsl:value-of select="execpridunit"/></td>
- <td width="10%" align="center"><xsl:value-of select="usernm"/></td>
- </tr>
- </xsl:template>
- </xsl:stylesheet>
|