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
ea860c3d
Commit
ea860c3d
authored
21 years ago
by
Rodolphe Quiedeville
Browse files
Options
Downloads
Patches
Plain Diff
Positionnement du modèle de propale par défaut
parent
14b2a5fe
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/includes/modules/modPropale.class.php
+11
-15
11 additions, 15 deletions
htdocs/includes/modules/modPropale.class.php
with
11 additions
and
15 deletions
htdocs/includes/modules/modPropale.class.php
+
11
−
15
View file @
ea860c3d
...
...
@@ -45,7 +45,7 @@ class modPropale
*/
$const
[
0
][
0
]
=
"PROPALE_ADDON_PDF"
;
$const
[
0
][
1
]
=
"chaine"
;
$const
[
0
][
2
]
=
"
propale_
rouge"
;
$const
[
0
][
2
]
=
"rouge"
;
foreach
(
$const
as
$key
=>
$value
)
{
...
...
@@ -78,15 +78,9 @@ class modPropale
}
}
$sql
=
"INSERT INTO llx_boxes_def (name,file) VALUES('Proposition commerciales', 'box_propales.php');"
;
if
(
$this
->
db
->
query
(
$sql
)
)
{
}
/*
* Permissions
* Permissions
et valeurs par dfaut
*/
$sql
=
array
(
"insert into llx_rights_def values (20,'Tous les droits sur les propositions commerciales','propale','a',0);"
,
...
...
@@ -95,7 +89,9 @@ class modPropale
"insert into llx_rights_def values (24,'Valider les propositions commerciales','propale','d',0);"
,
"insert into llx_rights_def values (25,'Envoyer les propositions commerciales aux clients','propale','d',0);"
,
"insert into llx_rights_def values (26,'Clturer les propositions commerciales','propale','d',0);"
,
"insert into llx_rights_def values (27,'Supprimer les propositions commerciales','propale','d',0);"
"insert into llx_rights_def values (27,'Supprimer les propositions commerciales','propale','d',0);"
,
"INSERT INTO llx_boxes_def (name,file) VALUES('Proposition commerciales', 'box_propales.php');"
,
"REPLACE INTO llx_propal_model_pdf SET nom = '"
.
$const
[
0
][
2
]
.
"'"
);
//"insert into llx_rights_def values (23,'Modifier les propositions commerciales d\'autrui','propale','m',0);",
for
(
$i
=
0
;
$i
<
sizeof
(
$sql
)
;
$i
++
)
...
...
@@ -112,16 +108,16 @@ class modPropale
Function
remove
()
{
$sql
=
"DELETE FROM llx_boxes_def WHERE file = 'box_propales.php';"
;
$sql
=
array
(
"DELETE FROM llx_boxes_def WHERE file = 'box_propales.php';"
,
"DELETE FROM llx_rights_def WHERE module = 'propale';"
);
if
(
$this
->
db
->
query
(
$sql
)
)
for
(
$i
=
0
;
$i
<
sizeof
(
$sql
)
;
$i
++
)
{
$this
->
db
->
query
(
$sql
[
$i
]);
}
$sql
=
"DELETE FROM llx_rights_def WHERE module = 'propale';"
;
$this
->
db
->
query
(
$sql
);
}
}
?>
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