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
7b080dec
Commit
7b080dec
authored
11 years ago
by
Florian Henry
Browse files
Options
Downloads
Patches
Plain Diff
Better extrafield management
parent
162ccf68
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/commande/fiche.php
+41
-66
41 additions, 66 deletions
htdocs/commande/fiche.php
with
41 additions
and
66 deletions
htdocs/commande/fiche.php
+
41
−
66
View file @
7b080dec
<?php
/* Copyright (C) 2003-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2013 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005 Marc Barilley / Ocebo <marc@ocebo.com>
* Copyright (C) 2005-2013 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
* Copyright (C) 2010-2013 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2011 Philippe Grand <philippe.grand@atoo-net.com>
* Copyright (C) 2012 Christophe Battarel <christophe.battarel@altairis.fr>
* Copyright (C) 2012 Marcos García <marcosgdf@gmail.com>
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
* Copyright (C) 2005 Marc Barilley / Ocebo <marc@ocebo.com>
* Copyright (C) 2005-2013 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
* Copyright (C) 2010-2013 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2011 Philippe Grand <philippe.grand@atoo-net.com>
* Copyright (C) 2012 Christophe Battarel <christophe.battarel@altairis.fr>
* Copyright (C) 2012 Marcos García <marcosgdf@gmail.com>
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/commande/fiche.php
* \ingroup commande
* \brief Page to show customer order
*/
* \ingroup commande
* \brief Page to show customer order
*/
require
'../main.inc.php'
;
require_once
DOL_DOCUMENT_ROOT
.
'/core/class/html.formfile.class.php'
;
...
...
@@ -1121,7 +1121,7 @@ else if ($action == 'print_file' AND $user->rights->printipp->use)
{
require_once
DOL_DOCUMENT_ROOT
.
'/core/class/dolprintipp.class.php'
;
$printer
=
new
dolPrintIPP
(
$db
,
$conf
->
global
->
PRINTIPP_HOST
,
$conf
->
global
->
PRINTIPP_PORT
,
$user
->
login
,
$conf
->
global
->
PRINTIPP_USER
,
$conf
->
global
->
PRINTIPP_PASSWORD
);
$printer
->
print_file
(
GETPOST
(
'file'
,
'alpha'
),
GETPOST
(
'printer'
,
'alpha'
));
$printer
->
print_file
(
GETPOST
(
'file'
,
'alpha'
),
GETPOST
(
'printer'
,
'alpha'
));
}
else
if
(
$action
==
'update_extras'
)
...
...
@@ -2135,48 +2135,23 @@ else
$reshook
=
$hookmanager
->
executeHooks
(
'formObjectOptions'
,
$parameters
,
$object
,
$action
);
// Note that $action and $object may have been modified by hook
if
(
empty
(
$reshook
)
&&
!
empty
(
$extrafields
->
attribute_label
))
{
if
(
count
(
$extrafields
->
attribute_label
)
>
0
)
{
if
(
$action
==
'edit_extras'
)
{
print
'<form enctype="multipart/form-data" action="'
.
$_SERVER
[
"PHP_SELF"
]
.
'" method="post" name="formsoc">'
;
print
'<input type="hidden" name="action" value="update_extras">'
;
print
'<input type="hidden" name="token" value="'
.
$_SESSION
[
'newtoken'
]
.
'">'
;
print
'<input type="hidden" name="id" value="'
.
$object
->
id
.
'">'
;
}
// TODO : use showOptionals($extrafields) function
foreach
(
$extrafields
->
attribute_label
as
$key
=>
$label
)
{
$value
=
(
isset
(
$_POST
[
"options_"
.
$key
])
?
$_POST
[
"options_"
.
$key
]
:
$object
->
array_options
[
"options_"
.
$key
]);
if
(
$extrafields
->
attribute_type
[
$key
]
==
'separate'
)
if
(
$action
==
'edit_extras'
)
{
print
$extrafields
->
showSeparator
(
$key
);
print
'<form enctype="multipart/form-data" action="'
.
$_SERVER
[
"PHP_SELF"
]
.
'" method="post" name="formsoc">'
;
print
'<input type="hidden" name="action" value="update_extras">'
;
print
'<input type="hidden" name="token" value="'
.
$_SESSION
[
'newtoken'
]
.
'">'
;
print
'<input type="hidden" name="id" value="'
.
$object
->
id
.
'">'
;
}
else
{
print
'<tr><td'
;
if
(
!
empty
(
$extrafields
->
attribute_required
[
$key
]))
print
' class="fieldrequired"'
;
print
'>'
.
$label
.
'</td><td colspan="3">'
;
// Convert date into timestamp format
if
(
in_array
(
$extrafields
->
attribute_type
[
$key
],
array
(
'date'
,
'datetime'
)))
{
$value
=
isset
(
$_POST
[
"options_"
.
$key
])
?
dol_mktime
(
$_POST
[
"options_"
.
$key
.
"hour"
],
$_POST
[
"options_"
.
$key
.
"min"
],
0
,
$_POST
[
"options_"
.
$key
.
"month"
],
$_POST
[
"options_"
.
$key
.
"day"
],
$_POST
[
"options_"
.
$key
.
"year"
])
:
$object
->
array_options
[
'options_'
.
$key
];
}
if
(
$action
==
'edit_extras'
&&
$user
->
rights
->
propal
->
creer
)
{
print
$extrafields
->
showInputField
(
$key
,
$value
);
}
else
{
print
$extrafields
->
showOutputField
(
$key
,
$value
);
}
print
'</td></tr>'
.
"
\n
"
;
if
(
$action
==
'edit_extras'
&&
$user
->
rights
->
propal
->
creer
)
{
print
$object
->
showOptionals
(
$extrafields
,
'edit'
);
}
else
{
print
$object
->
showOptionals
(
$extrafields
);
}
}
if
(
count
(
$extrafields
->
attribute_label
)
>
0
)
{
if
(
$action
==
'edit_extras'
&&
$user
->
rights
->
propal
->
creer
)
{
...
...
@@ -2307,7 +2282,7 @@ else
/*
* Boutons actions
*/
*/
if
(
$action
!=
'presend'
)
{
if
(
$user
->
societe_id
==
0
&&
$action
<>
'editline'
)
...
...
@@ -2447,7 +2422,7 @@ else
/*
* Documents generes
*/
*/
$comref
=
dol_sanitizeFileName
(
$object
->
ref
);
$file
=
$conf
->
commande
->
dir_output
.
'/'
.
$comref
.
'/'
.
$comref
.
'.pdf'
;
$relativepath
=
$comref
.
'/'
.
$comref
.
'.pdf'
;
...
...
@@ -2461,7 +2436,7 @@ else
/*
* Linked object block
*/
*/
$somethingshown
=
$object
->
showLinkedObjectBlock
();
print
'</div><div class="fichehalfright"><div class="ficheaddleft">'
;
...
...
@@ -2473,7 +2448,7 @@ else
$somethingshown
=
$formactions
->
showactions
(
$object
,
'order'
,
$socid
);
//print '</td></tr></table>';
print
'</div></div></div>'
;
print
'</div></div></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