2020-01-14 00:06:14 +11:00
|
|
|
{#
|
|
|
|
ledger-pyreport
|
|
|
|
Copyright © 2020 Lee Yingtong Li (RunasSudo)
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
#}
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>ledger-pyreport</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<ul>
|
|
|
|
<li><form action="{{ url_for('trial') }}">
|
|
|
|
<button type="submit">Trial balance</button>
|
2020-02-15 11:47:10 +11:00
|
|
|
<label>Date: <input name="date" value="{{ date.strftime('%Y-%m-%d') }}" style="width: 6em;" oninput="txtc(this)"></label>
|
|
|
|
<label>Period start: <input name="pstart" value="{{ pstart.strftime('%Y-%m-%d') }}" style="width: 6em;" oninput="txtc(this)"></label>
|
|
|
|
<label>Compare <input name="compare" value="0" style="width: 2em;" oninput="txtc(this)"> periods</label>
|
2020-02-15 15:50:33 +11:00
|
|
|
{#<label><input name="cash" type="checkbox" oninput="chbc(this)"> Cash basis</label>#}
|
2020-01-14 00:06:14 +11:00
|
|
|
</form></li>
|
|
|
|
|
|
|
|
<li><form action="{{ url_for('balance') }}">
|
|
|
|
<button type="submit">Balance sheet</button>
|
2020-02-15 11:47:10 +11:00
|
|
|
<label>Date: <input name="date" value="{{ date.strftime('%Y-%m-%d') }}" style="width: 6em;" oninput="txtc(this)"></label>
|
|
|
|
<label>Period start: <input name="pstart" value="{{ pstart.strftime('%Y-%m-%d') }}" style="width: 6em;" oninput="txtc(this)"></label>
|
|
|
|
<label>Compare <input name="compare" value="0" style="width: 2em;" oninput="txtc(this)"> periods</label>
|
2020-02-15 15:50:33 +11:00
|
|
|
{#<label><input name="cash" type="checkbox" oninput="chbc(this)"> Cash basis</label>#}
|
2020-01-14 00:06:14 +11:00
|
|
|
</form></li>
|
|
|
|
|
|
|
|
<li><form action="{{ url_for('pandl') }}">
|
|
|
|
<button type="submit">Income statement</button>
|
2020-02-15 11:47:10 +11:00
|
|
|
<label>Begin date: <input name="date_beg" value="{{ pstart.strftime('%Y-%m-%d') }}" style="width: 6em;" oninput="txtc(this)"></label>
|
|
|
|
<label>End date: <input name="date_end" value="{{ date.strftime('%Y-%m-%d') }}" style="width: 6em;" oninput="txtc(this)"></label>
|
|
|
|
<label>Compare <input name="compare" value="0" style="width: 2em;" oninput="txtc(this)"> periods</label>
|
2020-02-15 15:50:33 +11:00
|
|
|
{#<label><input name="cash" type="checkbox" oninput="chbc(this)"> Cash basis</label>#}
|
2020-01-14 00:06:14 +11:00
|
|
|
</form></li>
|
|
|
|
</ul>
|
2020-02-15 11:47:10 +11:00
|
|
|
|
|
|
|
<script>
|
|
|
|
// Called whenever a text input changes - update others to match
|
|
|
|
function txtc(el) {
|
|
|
|
for (var e2 of document.querySelectorAll('input[name="' + el.name + '"]')) {
|
|
|
|
e2.value = el.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ditto for checkboxes
|
|
|
|
function chbc(el) {
|
|
|
|
for (var e2 of document.querySelectorAll('input[name="' + el.name + '"]')) {
|
|
|
|
e2.checked = el.checked;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2020-01-14 00:06:14 +11:00
|
|
|
</body>
|
|
|
|
</html>
|