- Add multi-invoice payment support (link one bank transaction to multiple invoices) - Add payment unlinking feature to correct wrong matches - Show linked payments, invoices and bank entries in transaction detail view - Allow linking already paid invoices to bank transactions - Update README with new features - Add CHANGELOG.md Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
39 lines
1.1 KiB
PHP
Executable file
39 lines
1.1 KiB
PHP
Executable file
<?php
|
|
|
|
// autoload_static.php @generated by Composer
|
|
|
|
namespace Composer\Autoload;
|
|
|
|
class ComposerStaticInitcfc07b7e6c4a3dcfdcd6e754983b1a9b
|
|
{
|
|
public static $prefixesPsr0 = array (
|
|
'T' =>
|
|
array (
|
|
'Tests\\Fhp' =>
|
|
array (
|
|
0 => __DIR__ . '/..' . '/nemiah/php-fints/lib',
|
|
),
|
|
),
|
|
'F' =>
|
|
array (
|
|
'Fhp' =>
|
|
array (
|
|
0 => __DIR__ . '/..' . '/nemiah/php-fints/lib',
|
|
),
|
|
),
|
|
);
|
|
|
|
public static $classMap = array (
|
|
'BankImportFinTS' => __DIR__ . '/../..' . '/class/fints.class.php',
|
|
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
|
);
|
|
|
|
public static function getInitializer(ClassLoader $loader)
|
|
{
|
|
return \Closure::bind(function () use ($loader) {
|
|
$loader->prefixesPsr0 = ComposerStaticInitcfc07b7e6c4a3dcfdcd6e754983b1a9b::$prefixesPsr0;
|
|
$loader->classMap = ComposerStaticInitcfc07b7e6c4a3dcfdcd6e754983b1a9b::$classMap;
|
|
|
|
}, null, ClassLoader::class);
|
|
}
|
|
}
|