2
0
forked from Wavyzz/dolibarr
This commit is contained in:
ldestailleur
2025-09-03 16:31:30 +02:00
parent 5fa3ecd41a
commit f5d71fac3f
2 changed files with 3 additions and 3 deletions

View File

@@ -17,14 +17,15 @@ For developers:
WARNING:
--------
The following changes may create regressions for some external modules, but were necessary to make Dolibarr better:
* The deprecated column egroupware_id has been dropped
* The deprecated column egroupware_id has been dropped.
* The property $sumpayed (duplicated of $totalpaid), $sumdeposit (duplicate of $totaldeposits) and $sumcreditnote (duplicate of $totalcreditnotes) has
been removed (there are replaced with the property that was a duplication of (same for $sumpayed_multicurrency, $sumdeposit_multicurrency, $sumcreditnote_multicurrency).
* Parameters $maxlen and $notooltip of Contract have been inverted to follow the standard. It was breaking the common use of getNomUrl() but if you were using the parameter
maxlen (rare) by using the old signature, result may be a tooltip that is no more visible on ref printed by you module.
* Removed array $MAP_ID_TO_CODE that was a duplicate of array "array_flip($categ->MAP_ID)"
* The signature of the Sale order ->cancel() method and shipment ->cancel() has been modified to introduce the $user param like for other methods that modify a status.
* Adding new document templates must be done by adding files into the mymodule/core/modules/xxx/doc directory. Adding files into custom directory with the
same path than the core path without using a mymodule directory is now forbidden.
***** ChangeLog for 22.0.1 compared to 22.0.0 *****

View File

@@ -99,7 +99,6 @@ Follow these step-by-step instructions to seamlessly upgrade Dolibarr to the lat
See the [ChangeLog](https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog) file.
Adding new templates must be done by adding files into a module directory. Adding files into custom with same path of the core without having using a module is now forbidden
## FEATURES