Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
88d5cbc6
Commit
88d5cbc6
authored
13 years ago
by
Regis Houssin
Browse files
Options
Downloads
Patches
Plain Diff
New: possibility to view/edit notes in order card
parent
ae54a229
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/core/lib/order.lib.php
+12
-9
12 additions, 9 deletions
htdocs/core/lib/order.lib.php
with
12 additions
and
9 deletions
htdocs/core/lib/order.lib.php
+
12
−
9
View file @
88d5cbc6
<?php
/* Copyright (C) 2006-2012
Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2007
Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2010
Regis Houssin <regis@dolibarr.fr>
* Copyright (C) 2010
Juanjo Menent <jmenent@2byte.es>
/* Copyright (C) 2006-2012
Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2007
Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2010
-2012
Regis Houssin <regis@dolibarr.fr>
* Copyright (C) 2010
Juanjo Menent <jmenent@2byte.es>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -87,11 +87,14 @@ function commande_prepare_head($object)
$head
[
$h
][
1
]
=
$langs
->
trans
(
'Documents'
);
$head
[
$h
][
2
]
=
'documents'
;
$h
++
;
$head
[
$h
][
0
]
=
DOL_URL_ROOT
.
'/commande/note.php?id='
.
$object
->
id
;
$head
[
$h
][
1
]
=
$langs
->
trans
(
'Notes'
);
$head
[
$h
][
2
]
=
'note'
;
$h
++
;
if
(
empty
(
$conf
->
global
->
MAIN_DISABLE_NOTES_TAB
))
{
$head
[
$h
][
0
]
=
DOL_URL_ROOT
.
'/commande/note.php?id='
.
$object
->
id
;
$head
[
$h
][
1
]
=
$langs
->
trans
(
'Notes'
);
$head
[
$h
][
2
]
=
'note'
;
$h
++
;
}
$head
[
$h
][
0
]
=
DOL_URL_ROOT
.
'/commande/info.php?id='
.
$object
->
id
;
$head
[
$h
][
1
]
=
$langs
->
trans
(
"Info"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment