1. Nội dung
Hướng dân thiết lập để tổng tiền theo từng mức thuế suất hiển thị là “\” thay cho “X” khi không phát sinh tiền thuế (đối với hóa đơn nhiều thuế suất)
2. Các bước thực hiện
- Tại giao diện Tùy chỉnh chi tiết khi khởi tạo mẫu hóa đơn nhiều thuế suất, click chuột vào khu vực Tổng tiền.
- Nhấn biểu tượng </> tại mục Tổng cộng.
- Chọn tab Tiền thuế GTGT.
- Thay đoạn công thức mặc định của chương trình thành đoạn công thức sau:
<xsl:choose xmlns:xsl=”http://www.w3.org/1999/XSL/Transform“>
<xsl:when test=”count(inv:invoiceData/inv:items/inv:item[inv:lineNumber = ‘1’ or InventoryItemType = ‘4’]) = 0 and inv:invoiceData/inv:adjustmentType != 5 and inv:invoiceData/inv:adjustmentType != 4″>
</xsl:when>
<xsl:otherwise>
<xsl:choose>
<xsl:when test=”(inv:invoiceData/inv:totalVATAmount = 0 or inv:invoiceData/inv:totalVATAmount = ”) and count(inv:invoiceData/inv:items/inv:item[InventoryItemType = ‘0’]) > 0″>\</xsl:when>
<xsl:when test=”inv:invoiceData/inv:totalVATAmount = 0 or inv:invoiceData/inv:totalVATAmount = ””>
</xsl:when>
<xsl:otherwise>
<xsl:choose>
<xsl:when test=”$AmountOCDecimalDigits !=0 and normalize-space($mainCurrency) != ” and normalize-space($currencyID) != ” and $mainCurrency != $currencyID”>
<xsl:value-of select=”format-number(inv:invoiceData/inv:totalVATAmount,$amountOCFormat,’decimalFormat’)” />
</xsl:when>
<xsl:when test=”$AmountDecimalDigits !=0 and $mainCurrency = $currencyID”>
<xsl:value-of select=”format-number(inv:invoiceData/inv:totalVATAmount,$amountFormat,’decimalFormat’)” />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select=”format-number(inv:invoiceData/inv:totalVATAmount,’##.##0,##’,’number’)” />
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
- Trên hóa đơn, tổng tiền theo từng mức thuế suất hiển thị là “\” khi không phát sinh tiền thuế.