invoice3-generate.jsp
<%@ page contentType="text/html; charset=euc-jp" %>
<center>
<p>
<%@ include file="psgHeader.html" %>
<table border=1 cellspacing=3 cellpadding=5>
<tr>
<th align="right">請求書発効日:</th>
<td><inv:getProperty name="date" /></td>
</tr>
<tr>
<th align="right">コンサルティング サービス発注元:</th>
<td><inv:getProperty name="clientCompany" /></td>
</tr>
<tr>
<th align="right">住所: </th>
<td><inv:getProperty name="clientAddress" /></td>
</tr>
<tr>
<th align="right">発注番号:</th>
<td><inv:getProperty name="clientPO" /></td>
</tr>
<tr>
<th align="right">週:</th>
<td><inv:getProperty name="weekEndingDate" /></td>
</tr>
<tr>
<th align="right">開発者:</th>
<td><inv:getProperty name="developerName" /></td>
</tr>
<tr>
<th align="right">レート:</th>
<td><inv:getProperty name="developerRate" /></td>
</tr>
</table>
<p> 実働時間:
<table border=1 cellspacing=3 cellpadding=5>
<inv:foreachDay>
<tr>
<th align="right"><inv:getDayName />: </th>
<td><inv:getDayHours /></td>
</tr>
</inv:foreachDay>
<tr>
<th align="right">合計時間: </th>
<td><inv:getProperty name="totalHours" /></td>
</tr>
<tr><th></th><td></td></tr>
<tr>
<th align="right">合計額: </th>
<td><inv:getProperty name="balanceDue" /></td>
</tr>
</table>
<p>
<input
type="submit" name="reselect" value="リセット"
onClick="invoiceForm.operation.value='SETUP';this.form.submit()">
</input>
</center>