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
2b95bd2f
Commit
2b95bd2f
authored
10 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Link to linked object was not working for invoice and order.
Fix: end date
parent
eea034e0
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/company.lib.php
+26
-8
26 additions, 8 deletions
htdocs/core/lib/company.lib.php
with
26 additions
and
8 deletions
htdocs/core/lib/company.lib.php
+
26
−
8
View file @
2b95bd2f
...
...
@@ -929,7 +929,7 @@ function show_actions_todo($conf,$langs,$db,$object,$objcon='',$noprint=0)
$sql
=
"SELECT a.id, a.label,"
;
$sql
.
=
" a.datep as dp,"
;
$sql
.
=
" a.date
a
as d
a
,"
;
$sql
.
=
" a.date
p2
as d
p2
,"
;
$sql
.
=
" a.percent,"
;
$sql
.
=
" a.fk_user_author, a.fk_contact,"
;
$sql
.
=
" a.fk_element, a.elementtype,"
;
...
...
@@ -970,10 +970,20 @@ function show_actions_todo($conf,$langs,$db,$object,$objcon='',$noprint=0)
$obj
=
$db
->
fetch_object
(
$result
);
$datep
=
$db
->
jdate
(
$obj
->
dp
);
$datep2
=
$db
->
jdate
(
$obj
->
dp2
);
$out
.
=
"<tr "
.
$bc
[
$var
]
.
">"
;
$out
.
=
'<td width="120" align="left" class="nowrap">'
.
dol_print_date
(
$datep
,
'dayhour'
)
.
"</td>
\n
"
;
$out
.
=
'<td width="120" align="left" class="nowrap">'
;
$out
.
=
dol_print_date
(
$datep
,
'dayhour'
);
if
(
$datep2
&&
$datep2
!=
$datep
)
{
$tmpa
=
dol_getdate
(
$datep
);
$tmpb
=
dol_getdate
(
$datep2
);
if
(
$tmpa
[
'mday'
]
==
$tmpb
[
'mday'
]
&&
$tmpa
[
'mon'
]
==
$tmpb
[
'mon'
]
&&
$tmpa
[
'year'
]
==
$tmpb
[
'year'
])
$out
.
=
'-'
.
dol_print_date
(
$datep2
,
'hour'
);
else
$out
.
=
'-'
.
dol_print_date
(
$datep2
,
'dayhour'
);
}
$out
.
=
"</td>
\n
"
;
// Picto warning
$out
.
=
'<td width="16">'
;
...
...
@@ -1103,7 +1113,7 @@ function show_actions_done($conf,$langs,$db,$object,$objcon='',$noprint=0)
'type'
=>
'action'
,
'id'
=>
$obj
->
id
,
'datestart'
=>
$db
->
jdate
(
$obj
->
dp
),
'date'
=>
$db
->
jdate
(
$obj
->
dp2
),
'date
end
'
=>
$db
->
jdate
(
$obj
->
dp2
),
'note'
=>
$obj
->
label
,
'percent'
=>
$obj
->
percent
,
'acode'
=>
$obj
->
acode
,
...
...
@@ -1154,7 +1164,8 @@ function show_actions_done($conf,$langs,$db,$object,$objcon='',$noprint=0)
$histo
[
$numaction
]
=
array
(
'type'
=>
'mailing'
,
'id'
=>
$obj
->
id
,
'date'
=>
$db
->
jdate
(
$obj
->
da
),
'datestart'
=>
$db
->
jdate
(
$obj
->
da
),
'dateend'
=>
$db
->
jdate
(
$obj
->
da
),
'note'
=>
$obj
->
note
,
'percent'
=>
$obj
->
percentage
,
'acode'
=>
$obj
->
acode
,
...
...
@@ -1217,8 +1228,14 @@ function show_actions_done($conf,$langs,$db,$object,$objcon='',$noprint=0)
// Champ date
$out
.
=
'<td width="120" class="nowrap">'
;
if
(
$histo
[
$key
][
'date'
])
$out
.
=
dol_print_date
(
$histo
[
$key
][
'date'
],
'dayhour'
);
else
if
(
$histo
[
$key
][
'datestart'
])
$out
.
=
dol_print_date
(
$histo
[
$key
][
'datestart'
],
'dayhour'
);
$out
.
=
dol_print_date
(
$histo
[
$key
][
'datestart'
],
'dayhour'
);
if
(
$histo
[
$key
][
'dateend'
]
&&
$histo
[
$key
][
'dateend'
]
!=
$histo
[
$key
][
'datestart'
])
{
$tmpa
=
dol_getdate
(
$histo
[
$key
][
'datestart'
]);
$tmpb
=
dol_getdate
(
$histo
[
$key
][
'dateend'
]);
if
(
$tmpa
[
'mday'
]
==
$tmpb
[
'mday'
]
&&
$tmpa
[
'mon'
]
==
$tmpb
[
'mon'
]
&&
$tmpa
[
'year'
]
==
$tmpb
[
'year'
])
$out
.
=
'-'
.
dol_print_date
(
$histo
[
$key
][
'dateend'
],
'hour'
);
else
$out
.
=
'-'
.
dol_print_date
(
$histo
[
$key
][
'dateend'
],
'dayhour'
);
}
$out
.
=
"</td>
\n
"
;
// Picto
...
...
@@ -1251,6 +1268,7 @@ function show_actions_done($conf,$langs,$db,$object,$objcon='',$noprint=0)
// Objet lie
// TODO uniformize
$out
.
=
'<td>'
;
//var_dump($histo[$key]['elementtype']);
if
(
isset
(
$histo
[
$key
][
'elementtype'
]))
{
if
(
$histo
[
$key
][
'elementtype'
]
==
'propal'
&&
!
empty
(
$conf
->
propal
->
enabled
))
...
...
@@ -1259,13 +1277,13 @@ function show_actions_done($conf,$langs,$db,$object,$objcon='',$noprint=0)
$propalstatic
->
id
=
$histo
[
$key
][
'fk_element'
];
$out
.
=
$propalstatic
->
getNomUrl
(
1
);
}
elseif
(
$histo
[
$key
][
'elementtype'
]
==
'commande'
&&
!
empty
(
$conf
->
commande
->
enabled
))
elseif
(
(
$histo
[
$key
][
'elementtype'
]
==
'order'
||
$histo
[
$key
][
'elementtype'
]
==
'commande'
)
&&
!
empty
(
$conf
->
commande
->
enabled
))
{
$orderstatic
->
ref
=
$langs
->
trans
(
"Order"
);
$orderstatic
->
id
=
$histo
[
$key
][
'fk_element'
];
$out
.
=
$orderstatic
->
getNomUrl
(
1
);
}
elseif
(
$histo
[
$key
][
'elementtype'
]
==
'facture'
&&
!
empty
(
$conf
->
facture
->
enabled
))
elseif
(
(
$histo
[
$key
][
'elementtype'
]
==
'invoice'
||
$histo
[
$key
][
'elementtype'
]
==
'facture'
)
&&
!
empty
(
$conf
->
facture
->
enabled
))
{
$facturestatic
->
ref
=
$langs
->
trans
(
"Invoice"
);
$facturestatic
->
id
=
$histo
[
$key
][
'fk_element'
];
...
...
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