No description, no 3 parties showed planned entrie


DOLIBARR ENVIRONMENT
- Version: Dolibar 9.0
- Operating System: MacOs 10.14
- Web Server: MAMP 5,2 Apache
- PHP: 7.2.10
- Database: MySql 5.7.2.3
- URL(s): http://localhost:8888/dolibarr/compta/bank/treso.php?account=XXXXX (Number account)


No description and no third parties showed in planned entries.

I’m not a dolibarr developer, but I’ve found a solution, that works for me.
I don’t know if it is the right solution, so do it on your own risk

changed line 267 +268 in \htdocs\compta\bank\treso.php

from

$ref = isset($hookmanager->resArray['ref']) ? $hookmanager->resArray['ref'] : '';
$refcomp = isset($hookmanager->resArray['refcomp']) ? $hookmanager->resArray['refcomp'] : '';

to

$ref = isset($hookmanager->resArray['ref']) ? $hookmanager->resArray['ref'] : $ref;
$refcomp = isset($hookmanager->resArray['refcomp']) ? $hookmanager->resArray['refcomp'] : $refcomp;