1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?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="6%" align="center">Item</td>
- <td bgcolor = "#e0e0e0" width="4%" align="center">부위</td>
- <td bgcolor = "#e0e0e0" width="4%" align="center">구분</td>
- <td bgcolor = "#e0e0e0" width="10%" align="center">시행일시</td>
- <td bgcolor = "#e0e0e0" width="18%" align="center">종류(처방선택)</td>
- <td bgcolor = "#e0e0e0" width="6%" align="center">크기</td>
- <td bgcolor = "#e0e0e0" width="18%" align="center">종류(직접입력)</td>
- <td bgcolor = "#e0e0e0" width="6%" align="center">크기</td>
- <td bgcolor = "#e0e0e0" width="6%" align="center" colspan="2">고정</td>
- <td bgcolor = "#e0e0e0" width="6%" align="center" colspan="2">압력</td>
- <td bgcolor = "#e0e0e0" width="10%" align="center">비고</td>
- <td bgcolor = "#e0e0e0" width="6%" align="center">수행자</td>
- </tr>
- <xsl:apply-templates select="/SignData/SignInfo/cathinfo/cathlist"/>
- </table>
- </div>
- </body>
- </html>
- </xsl:template>
-
- <xsl:template match="cathlist">
- <tr>
- <td align="left" width="6%"><xsl:value-of select="itemnm"/></td>
- <td align="left" width="4%"><xsl:value-of select="loc"/></td>
- <td align="center" width="4%"><xsl:value-of select="opflag"/></td>
- <td align="center" width="10%">
- <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="18%"><xsl:value-of select="supnm"/></td>
- <td align="left" width="6%"><xsl:value-of select="vol"/></td>
- <td align="left" width="18%"><xsl:value-of select="typeremark"/></td>
- <td align="left" width="6%"><xsl:value-of select="typevol"/></td>
- <td align="center" width="3%"><xsl:value-of select="fix"/></td>
- <td align="center" width="3%"><xsl:value-of select="fixunit"/></td>
- <td align="center" width="3%"><xsl:value-of select="pres"/></td>
- <td align="center" width="3%"><xsl:value-of select="presunit"/></td>
- <td align="left" width="10%"><xsl:value-of select="cathremark"/></td>
- <td align="center" width="6%"><xsl:value-of select="opusernm"/></td>
- </tr>
- </xsl:template>
- </xsl:stylesheet>
|