-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGainLossSaleNonpublicSecSch.xsl
139 lines (119 loc) · 6.73 KB
/
GainLossSaleNonpublicSecSch.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="yes" encoding="iso-8859-1"/>
<xsl:strip-space elements="*" />
<xsl:include href="PopulateTemplate.xsl"/>
<xsl:include href="CommonPathRef.xsl"/>
<xsl:include href="AddHeader.xsl"/>
<xsl:include href="AddOnTable.xsl"/>
<xsl:param name="DependencyData" select="$RtnDoc/GainLossSaleNonpublicSecSch" />
<xsl:param name="depDocTitle">
<xsl:call-template name="PopulateDisplayName"><xsl:with-param name="TargetNode" select="$DependencyData" /></xsl:call-template>
</xsl:param>
<xsl:template name="DependencyTemplate">
<table id="GLSNTbl" class="styDepTblLandscape" style="margin-top:4mm; font-size:7pt;">
<thead class="styTableThead">
<tr class="styDepTblHdr">
<!--th class="styDepTblCell" scope="col">Item No.</th-->
<th class="styDepTblCell" scope="col">Name</th>
<th class="styDepTblCell" scope="col">Date Acquired</th>
<th class="styDepTblCell" scope="col">How Acquired</th>
<th class="styDepTblCell" scope="col">Date Sold</th>
<th class="styDepTblCell" scope="col">Purchaser Name</th>
<th class="styDepTblCell" scope="col">Gross Sales Price</th>
<th class="styDepTblCell" scope="col">Basis</th>
<th class="styDepTblCell" scope="col">Sales Expenses</th>
<th class="styDepTblCell" scope="col">Total (net)</th>
</tr>
</thead>
<tfoot></tfoot>
<tbody>
<xsl:for-each select="$DependencyData/GainLossSaleNonpublicSecurity">
<tr>
<xsl:attribute name="class">
<xsl:choose>
<xsl:when test="position() mod 2 = 1">styDepTblRow1</xsl:when>
<xsl:otherwise>styDepTblRow2</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<!--td class="styDepTblCell" valign="top">
<xsl:value-of select="position()" />
</td-->
<td class="styDepTblCell" align="left" valign="top">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="Name" /></xsl:call-template>
</td>
<td class="styDepTblCell" nowrap="nowrap" align="left" valign="top">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="DateAcquired" /></xsl:call-template>
</td>
<td class="styDepTblCell" align="left" valign="top">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="HowAcquired" /></xsl:call-template>
</td>
<td class="styDepTblCell" nowrap="nowrap" align="left" valign="top">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="DateSold" /></xsl:call-template>
</td>
<td class="styDepTblCell" align="left" valign="top" style="font-family:verdana;font-size:6pt">
<xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="PurchaserName/Individual" /></xsl:call-template>
<xsl:if test="normalize-space(PurchaserName/Business/BusinessNameLine1) != ''">
<br /><xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="PurchaserName/Business/BusinessNameLine1" /></xsl:call-template>
</xsl:if>
<xsl:if test="normalize-space(PurchaserName/Business/BusinessNameLine2) != ''">
<br /><xsl:call-template name="PopulateText"><xsl:with-param name="TargetNode" select="PurchaserName/Business/BusinessNameLine2" /></xsl:call-template>
</xsl:if>
</td>
<td class="styDepTblCell" align="right" valign="top" nowrap="nowrap">
<xsl:call-template name="PopulateAmount"><xsl:with-param name="TargetNode" select="GrossSalesPrice" /></xsl:call-template>
</td>
<td class="styDepTblCell" align="right" valign="top" nowrap="nowrap">
<xsl:call-template name="PopulateAmount"><xsl:with-param name="TargetNode" select="Basis" /></xsl:call-template>
</td>
<td class="styDepTblCell" align="right" valign="top" nowrap="nowrap">
<xsl:call-template name="PopulateAmount"><xsl:with-param name="TargetNode" select="SalesExpenses" /></xsl:call-template>
</td>
<td class="styDepTblCell" align="right" valign="top" nowrap="nowrap">
<xsl:call-template name="PopulateAmount"><xsl:with-param name="TargetNode" select="TotalNet" /></xsl:call-template>
</td>
</tr>
</xsl:for-each>
</tbody>
</table>
</xsl:template>
<!-- Main template -->
<xsl:template match="/">
<html>
<head>
<title>
<!--Gain/Loss from Sale of Nonpublic Securities Schedule-->
<xsl:value-of select="$depDocTitle" />
</title>
<!-- No Browser Caching -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- No Proxy Caching -->
<meta http-equiv="Cache-Control" content="private" />
<!-- Define Character Set -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="Description" content="{$depDocTitle}" />
<script language="JavaScript" src="{$ScriptPath}/FormDisplay.js" type="text/javascript"></script>
<xsl:call-template name="InitJS"></xsl:call-template>
<style type="text/css">
<xsl:if test="not($Print) or $Print=''">
<xsl:call-template name="AddOnStyle"></xsl:call-template>
</xsl:if>
</style>
<xsl:call-template name="GlobalStylesDep"/>
</head>
<body class="styBodyClass">
<xsl:call-template name="DocumentHeaderDependencyLandscape"></xsl:call-template>
<div class="styDepTitleLineLandscape">
<div class="styDepTitle" style="width:145mm">
TY 2003 Gain/Loss from Sale of Nonpublic Securities Schedule
<!--xsl:value-of select="$depDocTitle" /-->
</div>
</div>
<xsl:call-template name="PopulateDepCommonLeftoverLandscape"><xsl:with-param name="TargetNode" select="$DependencyData"/></xsl:call-template>
<xsl:call-template name="DependencyTemplate" />
</body>
</html>
</xsl:template>
</xsl:stylesheet>