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
c9ce9555
Commit
c9ce9555
authored
8 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Finish work "Can filter on status on objects on the "statistics" pages"
parent
5c6ecf9a
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
htdocs/fichinter/class/fichinterstats.class.php
+2
-3
2 additions, 3 deletions
htdocs/fichinter/class/fichinterstats.class.php
htdocs/fichinter/stats/index.php
+10
-0
10 additions, 0 deletions
htdocs/fichinter/stats/index.php
with
12 additions
and
3 deletions
htdocs/fichinter/class/fichinterstats.class.php
+
2
−
3
View file @
c9ce9555
...
...
@@ -61,6 +61,7 @@ class FichinterStats extends Stats
$this
->
userid
=
$userid
;
$this
->
cachefilesuffix
=
$mode
;
$this
->
where
.
=
" c.entity = "
.
$conf
->
entity
;
if
(
$mode
==
'customer'
)
{
$object
=
new
Fichinter
(
$this
->
db
);
...
...
@@ -68,10 +69,8 @@ class FichinterStats extends Stats
$this
->
from_line
=
MAIN_DB_PREFIX
.
$object
->
table_element_line
.
" as tl"
;
$this
->
field
=
'0'
;
$this
->
field_line
=
'0'
;
$this
->
where
.
=
" c.fk_statut > 0"
;
// Not draft and not cancelled
//
$this->where.= "
AND
c.fk_statut > 0"; // Not draft and not cancelled
}
//$this->where.= " AND c.fk_soc = s.rowid AND c.entity = ".$conf->entity;
$this
->
where
.
=
" AND c.entity = "
.
$conf
->
entity
;
if
(
!
$user
->
rights
->
societe
->
client
->
voir
&&
!
$this
->
socid
)
$this
->
where
.
=
" AND c.fk_soc = sc.fk_soc AND sc.fk_user = "
.
$user
->
id
;
if
(
$this
->
socid
)
{
...
...
This diff is collapsed.
Click to expand it.
htdocs/fichinter/stats/index.php
+
10
−
0
View file @
c9ce9555
...
...
@@ -47,6 +47,8 @@ $year = GETPOST('year')>0?GETPOST('year'):$nowyear;
$startyear
=
$year
-
1
;
$endyear
=
$year
;
$object_status
=
GETPOST
(
'object_status'
);
$langs
->
load
(
'interventions'
);
$langs
->
load
(
'companies'
);
$langs
->
load
(
'other'
);
...
...
@@ -58,6 +60,7 @@ $langs->load('suppliers');
*/
$form
=
new
Form
(
$db
);
$objectstatic
=
new
FichInter
(
$db
);
if
(
$mode
==
'customer'
)
{
...
...
@@ -72,6 +75,7 @@ print load_fiche_titre($title,'','title_commercial.png');
dol_mkdir
(
$dir
);
$stats
=
new
FichinterStats
(
$db
,
$socid
,
$mode
,
(
$userid
>
0
?
$userid
:
0
));
if
(
$object_status
!=
''
&&
$object_status
>
-
1
)
$stats
->
where
.
=
' AND c.fk_statut IN ('
.
$object_status
.
')'
;
// Build graphic number of object
$data
=
$stats
->
getNbByMonthWithPrevYear
(
$endyear
,
$startyear
);
...
...
@@ -249,6 +253,12 @@ print '<div class="fichecenter"><div class="fichethirdleft">';
// User
print
'<tr><td align="left">'
.
$langs
->
trans
(
"CreatedBy"
)
.
'</td><td align="left">'
;
print
$form
->
select_dolusers
(
$userid
,
'userid'
,
1
,
''
,
0
,
''
,
''
,
0
,
0
,
0
,
''
,
0
,
''
,
'maxwidth300'
);
// Status
print
'<tr><td align="left">'
.
$langs
->
trans
(
"Status"
)
.
'</td><td align="left">'
;
$liststatus
=
$objectstatic
->
statuts_short
;
if
(
empty
(
$conf
->
global
->
FICHINTER_CLASSIFY_BILLED
))
unset
(
$liststatus
[
2
]);
// Option deprecated. In a future, billed must be managed with a dedicated field to 0 or 1
print
$form
->
selectarray
(
'object_status'
,
$liststatus
,
$object_status
,
1
,
0
,
0
,
''
,
1
);
print
'</td></tr>'
;
// Year
print
'<tr><td align="left">'
.
$langs
->
trans
(
"Year"
)
.
'</td><td align="left">'
;
if
(
!
in_array
(
$year
,
$arrayyears
))
$arrayyears
[
$year
]
=
$year
;
...
...
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