- Mehrfach-Upload von PDF-Kontoauszügen mit automatischer Metadaten-Erkennung - Dashboard mit Übersichts-Widgets (letzte Buchungen und Kontoauszüge) - Menü-Integration unter "Banken und Kasse" statt eigenem Top-Menü - Erinnerungsfunktion bei veralteten Kontoauszügen (konfigurierbar) - Verknüpfung von Buchungen mit PDF-Kontoauszügen - Auszugsnummer wird automatisch aus dem Zeitraum abgeleitet (Monat/Jahr) - Jahrfilter zeigt nur Jahre mit vorhandenen Kontoauszügen - Modul-Icon auf fa-money-check-alt gesetzt - README und ChangeLog aktualisiert - .gitignore für Kontoauszüge und Build-Artefakte hinzugefügt 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 => '*',
|
|
),
|
|
),
|
|
),
|
|
);
|