Laurent Destailleur
b3a2908b48
Merge branch '14.0' of git@github.com:Dolibarr/dolibarr.git into 15.0
2024-10-29 15:46:43 +01:00
Laurent Destailleur
910f7e8564
Merge branch '13.0' of git@github.com:Dolibarr/dolibarr.git into 14.0
2024-10-29 15:46:12 +01:00
Laurent Destailleur
7cf1a97673
Merge branch '12.0' of git@github.com:Dolibarr/dolibarr.git into 13.0
2024-10-29 15:44:55 +01:00
Laurent Destailleur
cf57e7e88b
Merge
2024-10-29 15:44:25 +01:00
Laurent Destailleur
a186e16568
Backport fix for mysql 8 export
2024-10-29 15:32:54 +01:00
Florian Mortgat
abefce7ae2
FIX 17.0: supplier invoice template card: buyer and seller swapped in VAT-related function calls (probably a copy-paste from customer invoice templates) ( #31446 )
2024-10-19 01:55:58 +02:00
Kamel Khelifa
87c16498ca
FIX: Fix return value of hook sendMail when hook return -1 who must be return false in sendfile() function
2024-10-18 14:26:04 +02:00
UltraViolet33
33c6d95b1c
Backport Fix wrong invoice status when invoice has discount ( #31323 )
...
Co-authored-by: Ulysse Valdenaire <uvaldenaire@easya.solutions >
2024-10-13 21:04:17 +02:00
Laurent Destailleur
63d4b5e3d8
FIX Backport fix fatal error on price with some truncating setup
2024-10-06 22:17:26 +02:00
Sylvain Legrand
5d58a33f37
Fix tz array ( #31240 )
...
The list of time zones included in the 'get_tz_array()' function no longer matches the list of zones supported by PHP!
See the pages "https://www.php.net/manual/fr/timezones.php "
When using these values, this caused a 500 error: "PHP Fatal error: Uncaught Exception: DateTimeZone::__construct(): Unknown or bad timezone (Pacific/Enderbury) " for example =>
$arraytz = get_tz_array();
foreach ($arraytz as $key => $value) {
$date = new DateTime();
$date->setTimezone(new DateTimeZone($value));
}
When several zone names could be used for the same time zone, I favored the canonical name (The primary, preferred zone name).
See the table "https://en.wikipedia.org/wiki/List_of_tz_database_time_zones "
2024-10-03 15:38:41 +02:00
Laurent Destailleur
97eacefa6b
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into 18.0
2024-09-29 22:41:54 +02:00
Laurent Destailleur
f5fbbcfcb8
Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 17.0
2024-09-29 22:40:45 +02:00
Laurent Destailleur
2c67c8b6ff
Merge branch '15.0' of git@github.com:Dolibarr/dolibarr.git into 16.0
2024-09-29 22:32:01 +02:00
Laurent Destailleur
d0fb08adf4
Merge branch '14.0' of git@github.com:Dolibarr/dolibarr.git into 15.0
2024-09-29 22:31:42 +02:00
Laurent Destailleur
624493fb26
Merge branch '13.0' of git@github.com:Dolibarr/dolibarr.git into 14.0
2024-09-29 22:30:07 +02:00
Laurent Destailleur
6eddee9a78
Merge branch '12.0' of git@github.com:Dolibarr/dolibarr.git into 13.0
2024-09-29 22:29:19 +02:00
Laurent Destailleur
a27538f582
Merge branch '11.0' of git@github.com:Dolibarr/dolibarr.git into 12.0
2024-09-29 22:27:42 +02:00
Florian Mortgat
385927fe06
FIX: box_actions.php still uses fk_user_done which no longer exists ( #31190 )
...
Co-authored-by: FlorianMortgat <5845502+FlorianMortgat@users.noreply.github.com >
2024-09-29 22:18:18 +02:00
Laurent Destailleur
32646cb7f4
Merge branch '10.0' of git@github.com:Dolibarr/dolibarr.git into 11.0
2024-09-29 19:25:49 +02:00
Florian Mortgat
74b67eb6c6
FIX - use price() to display qty on a product's stats tab to avoid showing too many decimals when rounding errors are possible ( #31165 )
2024-09-29 15:57:05 +02:00
Florian Mortgat
231fc6ce70
FIX: if you call fetchLines several times, your $object->lines contains duplicates ( #31167 )
2024-09-29 15:27:24 +02:00
Laurent Destailleur
4ea503f366
Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 17.0
2024-09-26 03:30:40 +02:00
Laurent Destailleur
65c9bd7dcf
Merge remote-tracking branch 'origin/15.0' into 16.0
2024-09-26 03:25:38 +02:00
Laurent Destailleur
16a0d1d7d5
Merge branch '14.0' of git@github.com:Dolibarr/dolibarr.git into 15.0
2024-09-26 03:23:00 +02:00
thomas-Ngr
bb40a43c5f
FIX Add same security test whe nuploading files from API than from GUI ( #31114 )
...
Co-authored-by: Laurent Destailleur <eldy@destailleur.fr >
2024-09-26 03:13:34 +02:00
lvessiller-opendsi
e4a93da82e
FIX mysql error during dump for enable sandbox M999999 ( #31116 )
2024-09-25 22:54:31 +02:00
Laurent Destailleur
2f773e9326
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into 18.0
2024-09-23 21:45:03 +02:00
William Mead
21d8c40fc0
Fixed select list for long third party names ( #30948 )
2024-09-23 03:55:18 +02:00
MaximilienR-easya
fd0338cb1c
Backport Fix error on empty(NOLOGIN) ( #30594 )
...
* initial commit
* Backport Fix from develop
* Fix precommit
* Correction as sugested in the PR
* Deleted too much last commit
* this time it's good
2024-09-23 03:53:22 +02:00
HENRY Florian
61c5a61623
fix: better error reporting in CMailFile ( #31058 )
2024-09-20 17:46:52 +02:00
mrozniecki
bad8ee865d
Fix title encode
2024-09-20 14:34:34 +02:00
Benjamin Falière
dcba3347d8
Retroport: FIX determine multi-currency price on object line create tpl ( #28021 ) ( #30535 )
...
* NEW determine multi-currency price on object line create tpl (#28021 )
* Update html.form.class.php
---------
Co-authored-by: lvessiller-opendsi <lvessiller@open-dsi.fr >
Co-authored-by: Laurent Destailleur <eldy@destailleur.fr >
2024-09-18 03:22:38 +02:00
mrozniecki
1ee3c5e5a0
Backport fix title
2024-09-13 12:08:58 +02:00
Laurent Destailleur
1b24270a46
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into 18.0
2024-09-12 21:59:42 +02:00
Laurent Destailleur
65e5899442
Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 17.0
2024-09-12 21:58:28 +02:00
Marc de Lima Lucio
d17890f05b
FIX: purge files cron: php warnings when rest module enabled ( #30919 )
2024-09-12 21:57:41 +02:00
mrozniecki
0be0c1a1c1
Backport #yogosha18281
2024-09-10 14:01:04 +02:00
kkhelifa-opendsi
d29ebee2ac
FIX avoid from re-initializing array result on nested hook getEntity ( #30626 )
2024-09-09 04:35:13 +02:00
Laurent Destailleur
966ac2cdbc
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into 18.0
2024-07-25 18:04:42 +02:00
Laurent Destailleur
385d98b3e0
Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 17.0
2024-07-25 18:04:17 +02:00
Laurent Destailleur
c1b8197b8b
Merge branch '15.0' of git@github.com:Dolibarr/dolibarr.git into 16.0
2024-07-25 18:02:04 +02:00
Laurent Destailleur
d5004258db
Merge branch '14.0' of git@github.com:Dolibarr/dolibarr.git into 15.0
2024-07-25 18:00:55 +02:00
Thibault Fiacre
7c9e6b1fb9
FIX lang output for sales representative on PDF ( #30469 )
2024-07-25 17:56:13 +02:00
HENRY Florian
517e5e732c
fix: load translation for extrafields in PDF ( #30461 )
2024-07-25 14:29:12 +02:00
MaximilienR-easya
30f1d4f18b
Backport fix from develop ( #30421 )
2024-07-20 18:24:01 +02:00
lvessiller-opendsi
09fdb887bb
FIX expedition PDF models using units labels ( #30358 )
2024-07-13 17:18:05 +02:00
noec764
96a5479e9e
FIX: Error mesg show untranslated extrafield name ( #30227 )
...
Co-authored-by: Noé <noe@scopen.fr >
2024-07-02 01:56:45 +02:00
Laurent Destailleur
d6da8fafc2
Merge branch '18.0' of git@github.com:Dolibarr/dolibarr.git into 18.0
2024-06-29 20:49:12 +02:00
Laurent Destailleur
d4b49fac4a
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into 18.0
2024-06-29 20:49:03 +02:00
Laurent Destailleur
00b58c94c3
Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 17.0
2024-06-29 20:48:39 +02:00