ZIS0200.tpl 2.79 KB
<div class="SimMiddle">
	<small><br></small>
	<div class="MenuTitle">
		<span id="titletxt">資金実績損益表</span>
	</div>
	<div class="ConfMain">
			<br>
				&nbsp;&nbsp;&nbsp;&nbsp;
				<select name="ZIS_cboY" onchange="date_chg();">
					{$lstY}
				</select>年
				<select name="ZIS_cboM" onchange="date_chg();">
					{$lstM}
				</select>月
				&nbsp;&nbsp;&nbsp;&nbsp;
				<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>&nbsp;&nbsp;&nbsp;&nbsp;<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}">