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
bbd01c0c
Commit
bbd01c0c
authored
9 years ago
by
Marcos García de La Fuente
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Bug #2577 Incorrect invoice status in "Linked objects" page of a project
parent
d549c00b
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/projet/element.php
+9
-1
9 additions, 1 deletion
htdocs/projet/element.php
with
10 additions
and
1 deletion
ChangeLog
+
1
−
0
View file @
bbd01c0c
...
...
@@ -10,6 +10,7 @@ Fix: [ bug #1757 ] Sorting breaks product/service statistics
Fix: [ bug #1797 ] Tulip supplier invoice module takes creation date instead of invoice date
Fix: [ bug #1792 ] Users are not allowed to see margins module index page when no product view permission is enabled
Fix: [ bug #1846 ] Browser IE11 not detected
Fix: [ bug #2577 ] Incorrect invoice status in "Linked objects" page of a project
***** 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/projet/element.php
+
9
−
1
View file @
bbd01c0c
...
...
@@ -3,6 +3,7 @@
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2010 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
*
* 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
...
...
@@ -281,7 +282,14 @@ foreach ($listofreferent as $key => $value)
if
(
empty
(
$value
[
'disableamount'
]))
print
'<td align="right">'
.
(
isset
(
$element
->
total_ttc
)
?
price
(
$element
->
total_ttc
)
:
' '
)
.
'</td>'
;
// Status
print
'<td align="right">'
.
$element
->
getLibStatut
(
5
)
.
'</td>'
;
print
'<td align="right">'
;
if
(
$element
instanceof
CommonInvoice
)
{
//This applies for Facture and FactureFournisseur
print
$element
->
getLibStatut
(
5
,
$element
->
getSommePaiement
());
}
else
{
print
$element
->
getLibStatut
(
5
);
}
print
'</td>'
;
print
'</tr>'
;
...
...
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