ZIS0300.tpl
1.55 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
<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 align="center" nowrap>
</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}
<tr>
<td align="center">
{$strData[idx][3]}
</td>
<td align="right">
{$strData[idx][0]}
</td>
<td align="right">
{$strData[idx][1]}
</td>
<td align="right">
{$strData[idx][2]}
</td>
</tr>
{/section}
</table>
</TD>
</TR>
</table>
<br>
</div>
<br>
</div>
<input type="hidden" name="dispStart" value="{$dispStart}">