ZIS0200.tpl
2.79 KB
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
<div class="SimMiddle">
<small><br></small>
<div class="MenuTitle">
<span id="titletxt">資金実績損益表</span>
</div>
<div class="ConfMain">
<br>
<select name="ZIS_cboY" onchange="date_chg();">
{$lstY}
</select>年
<select name="ZIS_cboM" onchange="date_chg();">
{$lstM}
</select>月
<input type="button" value="<前月" onclick="move_navi(1);">
<input type="button" value="今月" onclick="move_navi(0);">
<input type="button" value="翌月>" onclick="move_navi(2);">
{if $dispStart == 1}
<br> <font color="red">※決算翌月です。</font>
{/if}
<hr>
<table width="86%">
<TR>
<TD align="left">
<table width="95%" class="ZIS_Table">
<tr>
<th style="text-align: center;" nowrap >
科目
</th>
<th style="text-align: center;" nowrap >
区分
</th>
<th align="center" nowrap>
{if $dispStart == 1}
初期残高({$strUnit})
{else}
前月繰越({$strUnit})
{/if}
</th>
<th align="center" nowrap >
当月残高({$strUnit})
</th>
<th align="center" nowrap >
当月増減高({$strUnit})
</th>
<th align="center" nowrap >
累計増減高({$strUnit})
</th>
</tr>
{section name=idx loop=$strData}
{if $strData[idx][10] == 1}
<tr bgcolor="{$strData[idx][13]}" style="font-weight: 700;">
{else}
<tr>
{/if}
<td style="text-align:left;">
{if $strData[idx][10] == 1}
<b>{$strData[idx][6]}</b>
{else}
{$strData[idx][6]}
{/if}
</td>
<td align="center">
{$strData[idx][7]}
</td>
<td align="right">
{$strData[idx][9]}
</td>
<td align="right">
{$strData[idx][8]}
</td>
<td align="right">
{$strData[idx][11]}
</td>
<td align="right">
{$strData[idx][12]}
</td>
</tr>
{if $strData[idx][2] == 0 && $strData[idx][3] == 0 && $strData[idx][4] == 0 && $strData[idx][5] == 0 && $smarty.section.idx.index < ($strData|@count - 1)}
<tr>
<th style="text-align: center;">
科目
</th>
<th style="text-align: center;" >
区分
</th>
<th align="center" >
{if $dispStart == 1}
初期残高({$strUnit})
{else}
前月繰越({$strUnit})
{/if}
</th>
<th align="center" >
当月残高({$strUnit})
</th>
<th align="center" >
当月増減高({$strUnit})
</th>
<th align="center" >
累計増減高({$strUnit})
</th>
</tr>
{/if}
{/section}
</table>
</TD>
</TR>
</table>
<br>
</div>
<br>
</div>
<input type="hidden" name="dispStart" value="{$dispStart}">