- 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>
38 lines
1.2 KiB
PHP
Executable file
38 lines
1.2 KiB
PHP
Executable file
<?php return array(
|
|
'root' => array(
|
|
'name' => 'dolibarr/bankimport',
|
|
'pretty_version' => '1.0.0+no-version-set',
|
|
'version' => '1.0.0.0',
|
|
'reference' => null,
|
|
'type' => 'dolibarr-module',
|
|
'install_path' => __DIR__ . '/../../',
|
|
'aliases' => array(),
|
|
'dev' => true,
|
|
),
|
|
'versions' => array(
|
|
'dolibarr/bankimport' => array(
|
|
'pretty_version' => '1.0.0+no-version-set',
|
|
'version' => '1.0.0.0',
|
|
'reference' => null,
|
|
'type' => 'dolibarr-module',
|
|
'install_path' => __DIR__ . '/../../',
|
|
'aliases' => array(),
|
|
'dev_requirement' => false,
|
|
),
|
|
'nemiah/php-fints' => array(
|
|
'pretty_version' => '3.7.0',
|
|
'version' => '3.7.0.0',
|
|
'reference' => '08257e10229db2d4ca8c54ed7fec0f390b332519',
|
|
'type' => 'library',
|
|
'install_path' => __DIR__ . '/../nemiah/php-fints',
|
|
'aliases' => array(),
|
|
'dev_requirement' => false,
|
|
),
|
|
'psr/log' => array(
|
|
'dev_requirement' => false,
|
|
'replaced' => array(
|
|
0 => '*',
|
|
),
|
|
),
|
|
),
|
|
);
|