ZIS0400.tpl
1.95 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
<div class="SimMiddle">
<small><br></small>
<div class="MenuTitle" style="width: 98%;">
<span id="titletxt">資金収支実績表</span>
</div>
<div class="ConfMain" style="width: 98%;">
<br>
{$start_y}年{$start_m}月〜{$end_y}年{$end_m}月
金額単位({$strUnit})
表示切替<select name="dispmode" onchange="location.href='ZIS0500.php'">
<option value="0">年単位</option>
<option value="1" selected>月単位</option>
</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>
<div style="overflow:auto;width:100%;height:420px;">
<table width="86%">
<TR>
<TD align="left">
<table width="95%" class="ZIS_Table">
<tr>
<th align="center" nowrap>
</th>
<th align="center" nowrap>
期首繰越額
</th>
{section name=idx loop=$strMTitle}
<th align="center" nowrap>
{$strMTitle[idx]}
</th>
{/section}
</tr>
{section name=idx loop=$strData}
<tr>
<td align="center" nowrap>
{$strData[idx][3]}
</td>
<td align="right">
{$strData[idx][0]}
</td>
{section name=idx2 loop=$strDataM}
<td align="right">
{$strDataM[idx2][idx]}
</td>
{/section}
</tr>
{/section}
</table>
</TD>
</TR>
</table>
</div>
<br>
</div>
<br>
</div>
<input type="hidden" name="dispStart" value="{$dispStart}">
<input type="hidden" name="start_y" value="{$start_y}">
<input type="hidden" name="start_m" value="{$start_m}">
<input type="hidden" name="end_y" value="{$end_y}">
<input type="hidden" name="end_m" value="{$end_m}">