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
739eaede
Commit
739eaede
authored
9 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Plain Diff
Merge branch 'marcosgdf-bug-3268' into 3.5
parents
8d7c1f8d
4100026c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
htdocs/societe/info.php
+15
-14
15 additions, 14 deletions
htdocs/societe/info.php
with
16 additions
and
14 deletions
ChangeLog
+
1
−
0
View file @
739eaede
...
...
@@ -24,6 +24,7 @@ Fix: [ bug #2835 ] Customer prices of a product shows incorrect history order
Fix: [ bug #2814 ] JPEG photos are not displayed in Product photos page
Fix: [ bug #2715 ] Statistics page has broken layout with long thirdparty names
Fix: [ bug #2570 ] [Contacts] Page should not process if ID is invalid
Fix: [ bug #3268 ] SQL error when accessing thirdparty log page without a socid parameter
***** ChangeLog for 3.5.6 compared to 3.5.5 *****
Fix: Avoid missing class error for fetch_thirdparty method #1973
...
...
This diff is collapsed.
Click to expand it.
htdocs/societe/info.php
+
15
−
14
View file @
739eaede
...
...
@@ -40,6 +40,7 @@ $result = restrictedArea($user, 'societe', $socid, '&societe');
// Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
$hookmanager
->
initHooks
(
array
(
'infothirdparty'
));
$soc
=
new
Societe
(
$db
);
/*
...
...
@@ -59,27 +60,27 @@ $error=$hookmanager->error; $errors=array_merge($errors, (array) $hookmanager->e
$help_url
=
'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas'
;
llxHeader
(
''
,
$langs
->
trans
(
"ThirdParty"
),
$help_url
);
$soc
=
new
Societe
(
$db
);
$soc
->
fetch
(
$socid
);
$soc
->
info
(
$socid
);
/*
* Affichage onglets
*/
$head
=
societe_prepare_head
(
$soc
);
if
(
$socid
>
0
)
{
$result
=
$soc
->
fetch
(
$socid
);
dol_fiche_head
(
$head
,
'info'
,
$langs
->
trans
(
"ThirdParty"
),
0
,
'company'
);
$soc
->
info
(
$socid
);
/*
* Affichage onglets
*/
$head
=
societe_prepare_head
(
$soc
);
dol_fiche_head
(
$head
,
'info'
,
$langs
->
trans
(
"ThirdParty"
),
0
,
'company'
);
print
'<table width="100%"><tr><td>'
;
dol_print_object_info
(
$soc
);
print
'</td></tr></table>'
;
print
'</div>'
;
print
'<table width="100%"><tr><td>'
;
dol_print_object_info
(
$soc
);
print
'</td></tr></table>'
;
dol_fiche_end
();
}
llxFooter
();
$db
->
close
();
?>
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