<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:te="http://www.seasar.org/teeda/extension" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="../../css/layout.css" type="text/css" />
<title>買い物履歴</title>
</head>
<body>
<form id="form">
<input type="hidden" id="purchaseItemsSave" />
<div><span id="messages"></span></div>
<h1>買い物履歴</h1>
<select id="yearOut"><option value="1"></option></select>年
<select id="monthOut"><option value="1"></option></select>月
<input type="submit" value="表示" id=""/>
<br />
<br />
<div>「*」は<ステータス>もしくは<変更履歴>が変更してあるもの。</div>
<table id="option" border="1">
        <tr class="style2">
                <th width="100">日付</th>
                <th width="100">種別</th>
                <th width="100">ステータス</th>
                <th width="200">品目</th>
                <th width="100">金額</th>
                <th width="100">削除</th>
                <th width="50"></th>
        </tr>
                <tbody id="purchaseItems">
                        <tr align="center">
                                <td>
                                        <span id="year"></span>/<span id="month"></span>/<span id="day"></span>
                                </td>
                                <td>
                                        <span id="name"></span>
                                </td>
                                <td>
                                        <span id="isCharge">*</span><span id="status"></span>
                                </td>
                                <td align="left" width="400">
                                        <a id="goChange"
                                        href="change.html?id=1&amp;year=1&amp;month=1&amp;day=1&amp;name=aaa&amp;description=aaa&amp;amount=1&amp;status=aaa">
                                        <p><span id="description"></span></p></a>
                                </td>
                                <td align="right">
                                        <p>¥<span id="amount"></span></p>
                                </td>
                                <td>
                                        <a id="goDelete"
                                        href="delete.html?id=1&amp;year=1&amp;month=1&amp;day=1&amp;name=aaa&amp;description=aaa&amp;amount=1">
                                        <p><img src="../../img/batu2.png" alt="削除" /></p></a>
                                </td>
                                <td>
                                        <input type="checkbox" id="checked" />
                                </td>
                                <td><input type="hidden" id="dummy"/></td>
                        </tr>
                </tbody>
</table>
<table border="1">
        <tr>
                <th width="50" class="style2">
                        合計
                </th>
                <td>
                        <p>¥<span id="sum"></span></p>
                </td>
        </tr>
</table>
<br />
<input type="submit" value="submit" id="doDelete" />
<input type="button" id="jumpTop" value="トップに戻る" onclick="location.href='top.html'" />
</form>
</body></html>