123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?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>
- <!-- <head>
- <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>
- <body > -->
- <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="20%" align="center">Item</td>
- <td bgcolor = "#e0e0e0" width="10%" align="center">부위</td>
- <td bgcolor = "#e0e0e0" width="10%" align="center">구분</td>
- <td bgcolor = "#e0e0e0" width="20%" align="center">시행일시</td>
- <td bgcolor = "#e0e0e0" width="30%" align="center">비고</td>
- <td bgcolor = "#e0e0e0" width="10%" align="center">수행자</td>
- </tr>
- <xsl:apply-templates select="/SignData/SignInfo/instruinfo/instrulist"/>
- </table>
- </div>
- </body>
- </html>
- </xsl:template>
-
- <xsl:template match="instrulist">
- <tr>
- <td align="left" width="20%"><xsl:value-of select="itemnm"/></td>
- <td align="left" width="10%"><xsl:value-of select="loc"/></td>
- <td align="center" width="10%"><xsl:value-of select="opflag"/></td>
- <td align="center" width="20%">
- <xsl:value-of select="substring(opdd,1,4)"/>
- <xsl:if test="opdd"><xsl:text>-</xsl:text></xsl:if>
- <xsl:value-of select="substring(opdd,5,2)"/>
- <xsl:if test="opdd"><xsl:text>-</xsl:text></xsl:if>
- <xsl:value-of select="substring(opdd,7,2)"/>
- <xsl:if test="opdd"><xsl:text> </xsl:text></xsl:if>
- <xsl:value-of select="substring(optm,1,2)"/>
- <xsl:if test="optm"><xsl:text>:</xsl:text></xsl:if>
- <xsl:value-of select="substring(optm,3,2)"/>
- </td>
- <td align="left" width="30%"><xsl:value-of select="cathremark"/></td>
- <td align="center" width="10%"><xsl:value-of select="opusernm"/></td>
- </tr>
- </xsl:template>
- </xsl:stylesheet>
|