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
865f9def
Commit
865f9def
authored
8 years ago
by
Marcos García de La Fuente
Browse files
Options
Downloads
Patches
Plain Diff
FIX #4424 Missing email of user popup in supplier orders area
Close #4424
parent
234f3e33
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/fourn/commande/index.php
+2
-1
2 additions, 1 deletion
htdocs/fourn/commande/index.php
with
2 additions
and
1 deletion
htdocs/fourn/commande/index.php
+
2
−
1
View file @
865f9def
...
...
@@ -245,7 +245,7 @@ if (! empty($conf->fournisseur->enabled))
/*
* List of users allowed
*/
$sql
=
"SELECT u.rowid, u.lastname, u.firstname"
;
$sql
=
"SELECT u.rowid, u.lastname, u.firstname
, u.email
"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"user as u,"
;
$sql
.
=
" "
.
MAIN_DB_PREFIX
.
"user_rights as ur"
;
$sql
.
=
", "
.
MAIN_DB_PREFIX
.
"rights_def as rd"
;
...
...
@@ -278,6 +278,7 @@ if ($resql)
$userstatic
->
id
=
$obj
->
rowid
;
$userstatic
->
lastname
=
$obj
->
lastname
;
$userstatic
->
firstname
=
$obj
->
firstname
;
$userstatic
->
email
=
$obj
->
email
;
print
$userstatic
->
getNomUrl
(
1
);
print
'</td>'
;
print
"</tr>
\n
"
;
...
...
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