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
614f3d82
Commit
614f3d82
authored
8 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix param lost when saving setup
parent
e59c2bb6
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/accountancy/admin/index.php
+27
-39
27 additions, 39 deletions
htdocs/accountancy/admin/index.php
with
27 additions
and
39 deletions
htdocs/accountancy/admin/index.php
+
27
−
39
View file @
614f3d82
...
...
@@ -50,8 +50,6 @@ $action = GETPOST('action', 'alpha');
// Parameters ACCOUNTING_* and others
$list
=
array
(
//'ACCOUNTING_LIMIT_LIST_VENTILATION', Useless, we can change value dynamically, so we use default global setup
'ACCOUNTING_MANAGE_ZERO'
,
'ACCOUNTING_LENGTH_GACCOUNT'
,
'ACCOUNTING_LENGTH_AACCOUNT'
,
'ACCOUNTING_LENGTH_DESCRIPTION'
,
// adjust size displayed for lines description for dol_trunc
...
...
@@ -85,13 +83,11 @@ if ($action == 'update') {
$error
++
;
}
if
(
!
$error
)
{
setEventMessages
(
$langs
->
trans
(
"SetupSaved"
),
null
,
'mesgs'
);
}
else
{
if
(
$error
)
{
setEventMessages
(
$langs
->
trans
(
"Error"
),
null
,
'errors'
);
}
foreach
(
$list
as
$constname
)
{
foreach
(
$list
as
$constname
)
{
$constvalue
=
GETPOST
(
$constname
,
'alpha'
);
if
(
!
dolibarr_set_const
(
$db
,
$constname
,
$constvalue
,
'chaine'
,
0
,
''
,
$conf
->
entity
))
{
...
...
@@ -259,41 +255,37 @@ if (! empty($user->admin))
print
'</a></td>'
;
}
print
'</tr>'
;
$var
=
!
$var
;
print
"<tr "
.
$bc
[
$var
]
.
">"
;
print
'<td>'
.
$langs
->
trans
(
"ACCOUNTING_MANAGE_ZERO"
)
.
'</td>'
;
if
(
!
empty
(
$conf
->
global
->
ACCOUNTING_MANAGE_ZERO
))
{
print
'<td align="right"><a href="'
.
$_SERVER
[
'PHP_SELF'
]
.
'?action=setmanagezero&value=0">'
;
print
img_picto
(
$langs
->
trans
(
"Activated"
),
'switch_on'
);
print
'</a></td>'
;
}
else
{
print
'<td align="right"><a href="'
.
$_SERVER
[
'PHP_SELF'
]
.
'?action=setmanagezero&value=1">'
;
print
img_picto
(
$langs
->
trans
(
"Disabled"
),
'switch_off'
);
print
'</a></td>'
;
}
print
'</tr>'
;
}
// Param a user $user->rights->accountancy->chartofaccount can access
foreach
(
$list
as
$key
)
{
foreach
(
$list
as
$key
)
{
$var
=
!
$var
;
if
(
$key
!=
'ACCOUNTING_MANAGE_ZERO'
)
{
print
'<tr '
.
$bc
[
$var
]
.
' class="value">'
;
// Param
$label
=
$langs
->
trans
(
$key
);
print
'<td>'
.
$label
.
'</td>'
;
// Value
print
'<td align="right">'
;
print
'<input type="text" size="20" id="'
.
$key
.
'" name="'
.
$key
.
'" value="'
.
$conf
->
global
->
$key
.
'">'
;
print
'</td>'
;
print
'</tr>'
;
}
if
(
$key
==
'ACCOUNTING_MANAGE_ZERO'
)
{
$var
=
!
$var
;
print
"<tr "
.
$bc
[
$var
]
.
">"
;
print
'<td>'
.
$langs
->
trans
(
"ACCOUNTING_MANAGE_ZERO"
)
.
'</td>'
;
if
(
!
empty
(
$conf
->
global
->
ACCOUNTING_MANAGE_ZERO
))
{
print
'<td align="right""><a href="'
.
$_SERVER
[
'PHP_SELF'
]
.
'?action=setmanagezero&value=0">'
;
print
img_picto
(
$langs
->
trans
(
"Activated"
),
'switch_on'
);
print
'</a></td>'
;
}
else
{
print
'<td align="right"><a href="'
.
$_SERVER
[
'PHP_SELF'
]
.
'?action=setmanagezero&value=1">'
;
print
img_picto
(
$langs
->
trans
(
"Disabled"
),
'switch_off'
);
print
'</a></td>'
;
}
print
'</tr>'
;
}
print
'<tr '
.
$bc
[
$var
]
.
' class="value">'
;
// Param
$label
=
$langs
->
trans
(
$key
);
print
'<td>'
.
$label
.
'</td>'
;
// Value
print
'<td align="right">'
;
print
'<input type="text" size="20" id="'
.
$key
.
'" name="'
.
$key
.
'" value="'
.
$conf
->
global
->
$key
.
'">'
;
print
'</td>'
;
print
'</tr>'
;
}
...
...
@@ -302,10 +294,6 @@ print '</table>';
dol_fiche_end
();
print
'<div class="center"><input type="submit" class="button" value="'
.
$langs
->
trans
(
'Modify'
)
.
'" name="button"></div>'
;
...
...
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