- HKEKA v3/v4/v5 Segmente fuer phpFinTS implementiert (VR Bank unterstuetzt kein HKEKP) - GetElectronicStatement Action mit Base64-Erkennung und Quittungscode - PDF-Deduplizierung per MD5 (Bank sendet identische Saldenmitteilungen) - Saldenmitteilungen ohne Auszugsnummer werden uebersprungen - Datums-Validierung: 30.02. (Bank-Konvention) wird auf 28.02. korrigiert - Numerische Sortierung fuer statement_number (CAST statt String-Sort) - Jahr-Filter: statement_year=0 ausgeschlossen - Menue/Button: "Kontoauszuege" -> "Umsaetze" (statements.php zeigt MT940, nicht PDFs) - Redirect nach FinTS-Abruf auf aktuelles Jahr statt year=0 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
813 B
PHP
Executable file
29 lines
813 B
PHP
Executable file
<?php
|
|
|
|
namespace Fhp\Segment;
|
|
|
|
class Segmentkopf extends BaseDeg
|
|
{
|
|
/**
|
|
* The name/type of the segment, e.g. "HITANS", corresponding to {@link SegmentDescriptor::$kennung}.
|
|
* Max length: 6
|
|
*/
|
|
public string $segmentkennung;
|
|
|
|
/**
|
|
* A number to refer to the segment within a message. Similar to an index, but they don't technically have to be
|
|
* consecutive within a message.
|
|
*/
|
|
public int $segmentnummer;
|
|
|
|
/**
|
|
* Version of the segment, corresponding to {@link SegmentDescriptor::$version}.
|
|
*/
|
|
public int $segmentversion;
|
|
|
|
/**
|
|
* Not allowed in requests, optionally present in responses.
|
|
* In a response message, this refers to the {@link $segmentnummer} of a segment in the request message.
|
|
*/
|
|
public ?int $bezugselement = null;
|
|
}
|