All checks were successful
Deploy to K8s / deploy (push) Successful in 11s
- io/attendance: CSV-over-public-URL client + Fake for adult/junior tabs - io/drive: Drive v3 modifiedTime client + Fake - io/sheets: Sheets v4 client (GetValues/AppendValues/BatchUpdateValues/ WriteHeader/SortByDateColumn) + Fake with call-capture - io/cache: Drive-modifiedTime-gated FileCache; two TTL knobs; atomic writes; generic Get[T]; Python-compatible JSON format; Flush() - io/fio: Client interface backed by Fio REST API (apiClient) and HTML scraper (transparentClient); Fake; testdata fixtures - membership/sources: NewSources wires attendance CSV + Sheets + cache into LoadAdults/LoadJuniors/LoadTransactions/LoadExceptions; Czech month parsing + merged-month maps - banksync: SyncToSheets (SHA-256 dedup, optional sort) and InferPayments ([?] review prefix, dry-run) — tested with fakes - cmd/fuj: sync and infer subcommands wired; fees and reconcile use real NewSources; go.mod gains google.golang.org/api + x/net - gofumpt extra-rules applied across all packages; lint clean Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
38 lines
825 B
HTML
38 lines
825 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<!-- First table (ignored) -->
|
|
<table class="table"><tr><td>ignored</td></tr></table>
|
|
<!-- Second table (target) -->
|
|
<table class="table">
|
|
<thead>
|
|
<tr><th>Datum</th><th>Částka</th><th>Typ</th><th>Název protiúčtu</th><th>Zpráva</th><th>KS</th><th>VS</th><th>SS</th><th>Poznámka</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>10.04.2026</td>
|
|
<td>750,00 CZK</td>
|
|
<td>Příjem</td>
|
|
<td>Jana Novakova</td>
|
|
<td>duben 2026</td>
|
|
<td>0308</td>
|
|
<td>123</td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td>09.04.2026</td>
|
|
<td>-200,00 CZK</td>
|
|
<td>Odchozí</td>
|
|
<td>Someone</td>
|
|
<td>outgoing</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|