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
ff47f379
Commit
ff47f379
authored
15 years ago
by
Regis Houssin
Browse files
Options
Downloads
Patches
Plain Diff
Add document tabs in project and task cards
parent
a5ea5f26
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/projet/document.php
+18
-18
18 additions, 18 deletions
htdocs/projet/document.php
htdocs/projet/tasks/document.php
+38
-36
38 additions, 36 deletions
htdocs/projet/tasks/document.php
with
56 additions
and
54 deletions
htdocs/projet/document.php
+
18
−
18
View file @
ff47f379
...
...
@@ -56,8 +56,8 @@ $pagenext = $page + 1;
$id
=
$_GET
[
'id'
];
$ref
=
$_GET
[
'ref'
];
$o
b
ject
=
new
Project
(
$db
);
if
(
!
$o
b
ject
->
fetch
(
$_GET
[
'id'
],
$_GET
[
'ref'
])
>
0
)
$
pr
oject
=
new
Project
(
$db
);
if
(
!
$
pr
oject
->
fetch
(
$_GET
[
'id'
],
$_GET
[
'ref'
])
>
0
)
{
dol_print_error
(
$db
);
}
...
...
@@ -70,7 +70,7 @@ if (! $object->fetch($_GET['id'],$_GET['ref']) > 0)
// Envoi fichier
if
(
$_POST
[
"sendit"
]
&&
!
empty
(
$conf
->
global
->
MAIN_UPLOAD_DOC
))
{
$upload_dir
=
$conf
->
projet
->
dir_output
.
"/"
.
dol_sanitizeFileName
(
$o
b
ject
->
ref
);
$upload_dir
=
$conf
->
projet
->
dir_output
.
"/"
.
dol_sanitizeFileName
(
$
pr
oject
->
ref
);
if
(
!
is_dir
(
$upload_dir
))
create_exdir
(
$upload_dir
);
if
(
is_dir
(
$upload_dir
))
...
...
@@ -99,7 +99,7 @@ if ($_POST["sendit"] && ! empty($conf->global->MAIN_UPLOAD_DOC))
// Delete
if
(
$action
==
'delete'
)
{
$upload_dir
=
$conf
->
projet
->
dir_output
.
"/"
.
dol_sanitizeFileName
(
$o
b
ject
->
ref
);
$upload_dir
=
$conf
->
projet
->
dir_output
.
"/"
.
dol_sanitizeFileName
(
$
pr
oject
->
ref
);
$file
=
$upload_dir
.
'/'
.
$_GET
[
'urlfile'
];
// Do not use urldecode here ($_GET and $_REQUEST are already decoded by PHP).
dol_delete_file
(
$file
);
$mesg
=
'<div class="ok">'
.
$langs
->
trans
(
"FileWasRemoved"
)
.
'</div>'
;
...
...
@@ -116,18 +116,18 @@ $form = new Form($db);
if
(
$id
>
0
||
!
empty
(
$ref
))
{
$upload_dir
=
$conf
->
projet
->
dir_output
.
'/'
.
dol_sanitizeFileName
(
$o
b
ject
->
ref
);
$upload_dir
=
$conf
->
projet
->
dir_output
.
'/'
.
dol_sanitizeFileName
(
$
pr
oject
->
ref
);
$company
=
new
Societe
(
$db
);
$company
->
fetch
(
$o
b
ject
->
socid
);
$company
->
fetch
(
$
pr
oject
->
socid
);
if
(
$o
b
ject
->
societe
->
id
>
0
)
$result
=
$o
b
ject
->
societe
->
fetch
(
$o
b
ject
->
societe
->
id
);
if
(
$
pr
oject
->
societe
->
id
>
0
)
$result
=
$
pr
oject
->
societe
->
fetch
(
$
pr
oject
->
societe
->
id
);
// To verify role of users
$userAccess
=
$o
b
ject
->
restrictedProjectArea
(
$user
);
$userAccess
=
$
pr
oject
->
restrictedProjectArea
(
$user
);
$head
=
project_prepare_head
(
$o
b
ject
);
dol_fiche_head
(
$head
,
'document'
,
$langs
->
trans
(
"Project"
),
0
,
(
$o
b
ject
->
public
?
'projectpub'
:
'project'
));
$head
=
project_prepare_head
(
$
pr
oject
);
dol_fiche_head
(
$head
,
'document'
,
$langs
->
trans
(
"Project"
),
0
,
(
$
pr
oject
->
public
?
'projectpub'
:
'project'
));
// Files list constructor
$filearray
=
dol_dir_list
(
$upload_dir
,
"files"
,
0
,
''
,
'\.meta$'
,
$sortfield
,(
strtolower
(
$sortorder
)
==
'desc'
?
SORT_ASC
:
SORT_DESC
),
1
);
...
...
@@ -141,26 +141,26 @@ if ($id > 0 || ! empty($ref))
// Ref
print
'<tr><td width="30%">'
.
$langs
->
trans
(
"Ref"
)
.
'</td><td>'
;
print
$form
->
showrefnav
(
$o
b
ject
,
'ref'
,
''
,
1
,
'ref'
,
'ref'
);
print
$form
->
showrefnav
(
$
pr
oject
,
'ref'
,
''
,
1
,
'ref'
,
'ref'
);
print
'</td></tr>'
;
// Label
print
'<tr><td>'
.
$langs
->
trans
(
"Label"
)
.
'</td><td>'
.
$o
b
ject
->
title
.
'</td></tr>'
;
print
'<tr><td>'
.
$langs
->
trans
(
"Label"
)
.
'</td><td>'
.
$
pr
oject
->
title
.
'</td></tr>'
;
// Company
print
'<tr><td>'
.
$langs
->
trans
(
"Company"
)
.
'</td><td>'
;
if
(
!
empty
(
$o
b
ject
->
societe
->
id
))
print
$o
b
ject
->
societe
->
getNomUrl
(
1
);
if
(
!
empty
(
$
pr
oject
->
societe
->
id
))
print
$
pr
oject
->
societe
->
getNomUrl
(
1
);
else
print
' '
;
print
'</td></tr>'
;
// Visibility
print
'<tr><td>'
.
$langs
->
trans
(
"Visibility"
)
.
'</td><td>'
;
if
(
$o
b
ject
->
public
)
print
$langs
->
trans
(
'SharedProject'
);
if
(
$
pr
oject
->
public
)
print
$langs
->
trans
(
'SharedProject'
);
else
print
$langs
->
trans
(
'PrivateProject'
);
print
'</td></tr>'
;
// Statut
print
'<tr><td>'
.
$langs
->
trans
(
"Status"
)
.
'</td><td>'
.
$o
b
ject
->
getLibStatut
(
4
)
.
'</td></tr>'
;
print
'<tr><td>'
.
$langs
->
trans
(
"Status"
)
.
'</td><td>'
.
$
pr
oject
->
getLibStatut
(
4
)
.
'</td></tr>'
;
// Files infos
print
'<tr><td>'
.
$langs
->
trans
(
"NbOfAttachedFiles"
)
.
'</td><td colspan="3">'
.
sizeof
(
$filearray
)
.
'</td></tr>'
;
...
...
@@ -174,12 +174,12 @@ if ($id > 0 || ! empty($ref))
// Affiche formulaire upload
$formfile
=
new
FormFile
(
$db
);
$formfile
->
form_attach_new_file
(
DOL_URL_ROOT
.
'/projet/document.php?id='
.
$o
b
ject
->
id
,
''
,
0
,
0
,
$user
->
rights
->
projet
->
creer
);
$formfile
->
form_attach_new_file
(
DOL_URL_ROOT
.
'/projet/document.php?id='
.
$
pr
oject
->
id
,
''
,
0
,
0
,
$user
->
rights
->
projet
->
creer
);
// List of document
$param
=
'&id='
.
$o
b
ject
->
id
;
$formfile
->
list_of_documents
(
$filearray
,
$o
b
ject
,
'projet'
,
$param
);
$param
=
'&id='
.
$
pr
oject
->
id
;
$formfile
->
list_of_documents
(
$filearray
,
$
pr
oject
,
'projet'
,
$param
);
}
else
...
...
This diff is collapsed.
Click to expand it.
htdocs/projet/tasks/document.php
+
38
−
36
View file @
ff47f379
...
...
@@ -24,6 +24,7 @@
*/
require
(
'../../main.inc.php'
);
require_once
(
DOL_DOCUMENT_ROOT
.
"/projet/project.class.php"
);
require_once
(
DOL_DOCUMENT_ROOT
.
"/projet/tasks/task.class.php"
);
require_once
(
DOL_DOCUMENT_ROOT
.
'/lib/project.lib.php'
);
require_once
(
DOL_DOCUMENT_ROOT
.
"/lib/files.lib.php"
);
...
...
@@ -58,8 +59,19 @@ $pagenext = $page + 1;
$id
=
$_GET
[
'id'
];
$ref
=
$_GET
[
'ref'
];
$object
=
new
Task
(
$db
);
if
(
!
$object
->
fetch
(
$_GET
[
'id'
],
$_GET
[
'ref'
])
>
0
)
$task
=
new
Task
(
$db
);
if
(
$task
->
fetch
(
$id
,
$ref
)
>
0
)
{
$projectstatic
=
new
Project
(
$db
);
$projectstatic
->
fetch
(
$task
->
fk_project
);
if
(
!
empty
(
$projectstatic
->
socid
))
$projectstatic
->
societe
->
fetch
(
$projectstatic
->
socid
);
$upload_dir
=
$conf
->
projet
->
dir_output
.
'/'
.
dol_sanitizeFileName
(
$projectstatic
->
ref
)
.
'/'
.
dol_sanitizeFileName
(
$task
->
ref
);
}
else
{
dol_print_error
(
$db
);
}
...
...
@@ -72,7 +84,6 @@ if (! $object->fetch($_GET['id'],$_GET['ref']) > 0)
// Envoi fichier
if
(
$_POST
[
"sendit"
]
&&
!
empty
(
$conf
->
global
->
MAIN_UPLOAD_DOC
))
{
$upload_dir
=
$conf
->
projet
->
dir_output
.
"/"
.
dol_sanitizeFileName
(
$object
->
ref
);
if
(
!
is_dir
(
$upload_dir
))
create_exdir
(
$upload_dir
);
if
(
is_dir
(
$upload_dir
))
...
...
@@ -101,7 +112,6 @@ if ($_POST["sendit"] && ! empty($conf->global->MAIN_UPLOAD_DOC))
// Delete
if
(
$action
==
'delete'
)
{
$upload_dir
=
$conf
->
projet
->
dir_output
.
"/"
.
dol_sanitizeFileName
(
$object
->
ref
);
$file
=
$upload_dir
.
'/'
.
$_GET
[
'urlfile'
];
// Do not use urldecode here ($_GET and $_REQUEST are already decoded by PHP).
dol_delete_file
(
$file
);
$mesg
=
'<div class="ok">'
.
$langs
->
trans
(
"FileWasRemoved"
)
.
'</div>'
;
...
...
@@ -117,19 +127,12 @@ llxHeader('',$langs->trans('Project'),'EN:Customers_Orders|FR:Commandes_Clients|
$form
=
new
Form
(
$db
);
if
(
$id
>
0
||
!
empty
(
$ref
))
{
$upload_dir
=
$conf
->
projet
->
dir_output
.
'/'
.
dol_sanitizeFileName
(
$object
->
ref
);
$company
=
new
Societe
(
$db
);
$company
->
fetch
(
$object
->
socid
);
if
(
$object
->
societe
->
id
>
0
)
$result
=
$object
->
societe
->
fetch
(
$object
->
societe
->
id
);
{
// To verify role of users
$userAccess
=
$o
b
ject
->
restrictedProjectArea
(
$user
);
$userAccess
=
$
pr
oject
static
->
restrictedProjectArea
(
$user
);
$head
=
project
_prepare_head
(
$
object
);
dol_fiche_head
(
$head
,
'document'
,
$langs
->
trans
(
"
Project"
),
0
,
(
$object
->
public
?
'projectpub'
:
'project'
)
);
$head
=
task
_prepare_head
(
$
task
);
dol_fiche_head
(
$head
,
'document'
,
$langs
->
trans
(
"
Task"
),
0
,
'projecttask'
);
// Files list constructor
$filearray
=
dol_dir_list
(
$upload_dir
,
"files"
,
0
,
''
,
'\.meta$'
,
$sortfield
,(
strtolower
(
$sortorder
)
==
'desc'
?
SORT_ASC
:
SORT_DESC
),
1
);
...
...
@@ -142,28 +145,27 @@ if ($id > 0 || ! empty($ref))
print
'<table class="border" width="100%">'
;
// Ref
print
'<tr><td width="30%">'
.
$langs
->
trans
(
"Ref"
)
.
'</td><td>'
;
print
$form
->
showrefnav
(
$object
,
'ref'
,
''
,
1
,
'ref'
,
'ref'
);
print
'</td></tr>'
;
print
'<tr><td width="30%">'
;
print
$langs
->
trans
(
"Ref"
);
print
'</td><td colspan="3">'
;
print
$form
->
showrefnav
(
$task
,
'id'
,
''
,
1
,
'rowid'
,
'ref'
,
''
,
''
);
print
'</td>'
;
print
'</tr>'
;
// Label
print
'<tr><td>'
.
$langs
->
trans
(
"Label"
)
.
'</td><td>'
.
$object
->
title
.
'</td></tr>'
;
// Company
print
'<tr><td>'
.
$langs
->
trans
(
"Company"
)
.
'</td><td>'
;
if
(
!
empty
(
$object
->
societe
->
id
))
print
$object
->
societe
->
getNomUrl
(
1
);
else
print
' '
;
print
'<tr><td>'
.
$langs
->
trans
(
"Label"
)
.
'</td><td colspan="3">'
.
$task
->
label
.
'</td></tr>'
;
// Project
print
'<tr><td>'
.
$langs
->
trans
(
"Project"
)
.
'</td><td colspan="3">'
;
print
$projectstatic
->
getNomUrl
(
1
);
print
'</td></tr>'
;
//
Visibili
ty
print
'<
tr><
td>'
.
$langs
->
trans
(
"
Visibilit
y"
)
.
'</td><td>'
;
if
(
$o
b
ject
->
public
)
print
$langs
->
trans
(
'SharedProject'
);
else
print
$langs
->
trans
(
'PrivateProject'
)
;
//
Third par
ty
print
'<td>'
.
$langs
->
trans
(
"
Compan
y"
)
.
'</td><td
colspan="3"
>'
;
if
(
$
pr
oject
static
->
societe
->
id
)
print
$projectstatic
->
societe
->
getNomUrl
(
1
);
else
print
' '
;
print
'</td></tr>'
;
// Statut
print
'<tr><td>'
.
$langs
->
trans
(
"Status"
)
.
'</td><td>'
.
$object
->
getLibStatut
(
4
)
.
'</td></tr>'
;
// Files infos
print
'<tr><td>'
.
$langs
->
trans
(
"NbOfAttachedFiles"
)
.
'</td><td colspan="3">'
.
sizeof
(
$filearray
)
.
'</td></tr>'
;
print
'<tr><td>'
.
$langs
->
trans
(
"TotalSizeOfAttachedFiles"
)
.
'</td><td colspan="3">'
.
$totalsize
.
' '
.
$langs
->
trans
(
"bytes"
)
.
'</td></tr>'
;
...
...
@@ -176,12 +178,12 @@ if ($id > 0 || ! empty($ref))
// Affiche formulaire upload
$formfile
=
new
FormFile
(
$db
);
$formfile
->
form_attach_new_file
(
DOL_URL_ROOT
.
'/projet/document.php?id='
.
$
object
->
id
,
''
,
0
,
0
,
$user
->
rights
->
projet
->
creer
);
$formfile
->
form_attach_new_file
(
DOL_URL_ROOT
.
'/projet/
tasks/
document.php?id='
.
$
task
->
id
,
''
,
0
,
0
,
$user
->
rights
->
projet
->
creer
);
// List of document
$param
=
'&id='
.
$
object
->
id
;
$formfile
->
list_of_documents
(
$filearray
,
$
object
,
'projet'
,
$param
);
$param
=
'&id='
.
$
task
->
id
;
$formfile
->
list_of_documents
(
$filearray
,
$
task
,
'projet'
,
$param
);
}
else
...
...
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