0
每個月我們都會收到一個包含兩列數據的.csv文件。第一列是一個代碼,然後另一個是一個描述。例如:M23 |缺少發票。使用VB.Net創建.XSL文件的最佳方法?
我需要使用這些數據來創建一個新的.XSL文件,看起來像這樣。
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="AdjustmentRemarkCodeReplacements">
<xsl:param name="CodeValue"/><xsl:choose><xsl:when test="$CodeValue = 'A0'">Patient refund amount.</xsl:when><xsl:when test="$CodeValue = 'A1'">Claim denied charges.</xsl:when><xsl:when test="$CodeValue = '999'">TESTING ONE TWO THREE now.</xsl:when><xsl:otherwise/></xsl:choose></xsl:template>
<xsl:template name="RemarkCodeReplacements">
<xsl:param name="CodeValue"/><xsl:choose><xsl:when test="$CodeValue = 'M1'">X-ray not taken within the past 12 months or near enough to the start of treatment.</xsl:when><xsl:when test="$CodeValue = 'M2'">Not paid separately when the patient is an inpatient.</xsl:when><xsl:otherwise/></xsl:choose></xsl:template>
</xsl:stylesheet>
這樣做的最好方法是什麼?