Skip to content
Merged

20.0 #18

Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
e71631a
fix : missing update for extrafields on holidays (#31256)
thomas-Ngr Oct 3, 2024
336d3ad
finish fix (#31203)
thomas-Ngr Oct 3, 2024
9509929
Merge branch '14.0' of git@github.com:Dolibarr/dolibarr.git into 15.0
eldy Oct 7, 2024
1e64870
NEW - Add a new hook on order list (#31315)
atm-lucasmantegari Oct 11, 2024
822e3ca
fix translation for non latin languages (#31343)
sonikf Oct 13, 2024
b2c59aa
Fix: Does not filter correctly by project contacts (#31340)
fmarcet Oct 13, 2024
52a60dc
Undefined stdClass property warnings fixed (#31325)
vladimirdulov Oct 13, 2024
ffcc1ee
CSS
eldy Oct 13, 2024
33c6d95
Backport Fix wrong invoice status when invoice has discount (#31323)
UltraViolet33 Oct 13, 2024
9b0186c
Update makepack-dolibarr.pl (#31320)
frederic34 Oct 13, 2024
24722c1
fix sql close #31374 (#31379)
frederic34 Oct 13, 2024
70a453a
FIX: substitutions THIRDPARTY_XXX are not available for actioncomm re…
thomas-Ngr Oct 14, 2024
cd510a4
Merge branch '20.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Oct 14, 2024
80ced1c
FIX convert amount into text when using numberwords
eldy Oct 14, 2024
f4a76e5
Fix translation file header
eldy Oct 14, 2024
7b81ccc
FIX uniformize and check delete contact action (#31384)
hregis Oct 14, 2024
3f98aee
Doc
eldy Oct 14, 2024
a83c6a8
Merge branch '20.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Oct 14, 2024
793e77b
Merge branch '14.0' of git@github.com:Dolibarr/dolibarr.git into 15.0
eldy Oct 14, 2024
fa22ebd
Merge branch '15.0' of git@github.com:Dolibarr/dolibarr.git into 16.0
eldy Oct 14, 2024
414a289
Doc
eldy Oct 14, 2024
7cd1425
Fix css
eldy Oct 14, 2024
278eea6
Merge branch '16.0' of git@github.com:Dolibarr/dolibarr.git into 17.0
eldy Oct 14, 2024
d819d88
Merge branch '17.0' of git@github.com:Dolibarr/dolibarr.git into 18.0
eldy Oct 14, 2024
b099e10
Merge branch '18.0' of git@github.com:Dolibarr/dolibarr.git into 19.0
eldy Oct 14, 2024
9160147
Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Oct 14, 2024
30fd054
Fix look and feel v19
eldy Oct 14, 2024
cd20099
Fix duplicate call/output
eldy Oct 14, 2024
1c9631b
Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Oct 14, 2024
86a9069
FIX Support for PDF_ADD_POSITION was not complete
eldy Oct 14, 2024
4972c57
FIX Bad balance of td into setup page of shipments
eldy Oct 14, 2024
3c74d67
FIX Show twice the technical ID
eldy Oct 15, 2024
e731910
Miscellaneous fix on PDf template (trans, position column, warning)
eldy Oct 15, 2024
448616d
Translate
eldy Oct 15, 2024
f3f7b67
add missing dol_escape_all (#31406)
frederic34 Oct 15, 2024
ccc2773
Fix bad escapement
eldy Oct 15, 2024
53a1d06
Merge branch '19.0' of git@github.com:Dolibarr/dolibarr.git into 20.0
eldy Oct 15, 2024
4758144
FIX dol_openinpopup for virtual card
eldy Oct 16, 2024
495a31c
FIX CSS and access to media files
eldy Oct 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
NEW - Add a new hook on order list (Dolibarr#31315)
* Add a new hook on order list

* pr correction
  • Loading branch information
atm-lucasmantegari authored Oct 11, 2024
commit 1e64870a9ec465f090f94e907a4dd3c1a1257305
15 changes: 15 additions & 0 deletions htdocs/commande/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -2566,6 +2566,21 @@
}
}
}

// Call Hook modifyTextInfo
$parameters = array('textinfo' => $text_info);
$reshook = $hookmanager->executeHooks('modifyTextInfo', $parameters, $object, $action);
if ($reshook == 1) {
// for add information
$text_info .= $hookmanager->resPrint;
} elseif ($reshook == 0) {
// for replace information
$text_info = $hookmanager->resPrint;
} elseif ($reshook == -1) {
// for errors
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
}

if ($notshippable == 0) {
$text_icon = img_picto('', 'dolly', '', false, 0, 0, '', 'green paddingleft');
$text_info = $text_icon.' '.$langs->trans('Shippable').'<br>'.$text_info;
Expand Down