Reformat the code with
- astyle --style=ansi Broke : the <<<<EOF .
This commit is contained in:
parent
6c1a597fdf
commit
0e5fcddfc1
246 changed files with 42452 additions and 36227 deletions
|
|
@ -39,37 +39,37 @@ $sub_action=(isset($_REQUEST['sa']))?$_REQUEST['sa']:"";
|
|||
// TODO add function for generating url, hidden tags...
|
||||
if ( isset ($_REQUEST['url']))
|
||||
{
|
||||
$retour=HtmlInput::button_anchor('Retour',urldecode($_REQUEST['url']));
|
||||
$retour=HtmlInput::button_anchor('Retour',urldecode($_REQUEST['url']));
|
||||
|
||||
$h_url=sprintf('<input type="hidden" name="url" value="%s">',urldecode($_REQUEST['url']));
|
||||
$h_url=sprintf('<input type="hidden" name="url" value="%s">',urldecode($_REQUEST['url']));
|
||||
}
|
||||
else
|
||||
{
|
||||
$retour="";
|
||||
$h_url="";
|
||||
$retour="";
|
||||
$h_url="";
|
||||
}
|
||||
|
||||
// Menu
|
||||
// Remove a card
|
||||
if ( isset ($_POST['delete']) )
|
||||
{
|
||||
$f_id=$_REQUEST['f_id'];
|
||||
$f_id=$_REQUEST['f_id'];
|
||||
|
||||
$fiche=new contact($cn,$f_id);
|
||||
$fiche->remove();
|
||||
$sub_action="list";
|
||||
$fiche=new contact($cn,$f_id);
|
||||
$fiche->remove();
|
||||
$sub_action="list";
|
||||
}
|
||||
//-----------------------------------------------------
|
||||
// Add card
|
||||
if ( $sub_action=="insert" )
|
||||
{
|
||||
$contact=new Contact($cn);
|
||||
$contact->Save($_REQUEST['fd_id']);
|
||||
echo $retour;
|
||||
echo "<table>";
|
||||
echo $contact->Display(true);
|
||||
echo "</table>";
|
||||
echo $retour;
|
||||
$contact=new Contact($cn);
|
||||
$contact->Save($_REQUEST['fd_id']);
|
||||
echo $retour;
|
||||
echo "<table>";
|
||||
echo $contact->Display(true);
|
||||
echo "</table>";
|
||||
echo $retour;
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -77,120 +77,125 @@ if ( $sub_action=="insert" )
|
|||
// Save modification
|
||||
if ( isset ($_POST['mod']))
|
||||
{
|
||||
// modification is asked
|
||||
$f_id=$_REQUEST['f_id'];
|
||||
// modification is asked
|
||||
$f_id=$_REQUEST['f_id'];
|
||||
|
||||
$contact=new contact($cn,$f_id);
|
||||
$contact->Save();
|
||||
$sub_action="list";
|
||||
$contact=new contact($cn,$f_id);
|
||||
$contact->Save();
|
||||
$sub_action="list";
|
||||
}
|
||||
// by default open liste
|
||||
if ( $sub_action == "" )
|
||||
$sub_action="list";
|
||||
$sub_action="list";
|
||||
//-----------------------------------------------------
|
||||
//Display a blank card
|
||||
if ( $sub_action=="blank")
|
||||
{
|
||||
$retour_action=HtmlInput::button_anchor('Retour', "commercial.php?p_action=contact&$str_dossier");
|
||||
$retour_action=HtmlInput::button_anchor('Retour', "commercial.php?p_action=contact&$str_dossier");
|
||||
|
||||
echo '<div class="u_redcontent">';
|
||||
echo '<div class="u_redcontent">';
|
||||
|
||||
echo $retour_action;
|
||||
$c=new contact($cn);
|
||||
echo '<form method="post" action="commercial.php"';
|
||||
echo dossier::hidden();
|
||||
echo HtmlInput::hidden('p_action','client');
|
||||
echo HtmlInput::hidden("sa","insert");
|
||||
echo HtmlInput::hidden("fd_id",$_GET['fd_id']);
|
||||
echo HtmlInput::hidden("url", $_GET['url']);;
|
||||
echo $c->blank($_GET['fd_id']);
|
||||
echo HtmlInput::submit('Sauve','Sauve');
|
||||
echo '</form>';
|
||||
echo $retour_action;
|
||||
echo '</div>';
|
||||
echo $retour_action;
|
||||
$c=new contact($cn);
|
||||
echo '<form method="post" action="commercial.php"';
|
||||
echo dossier::hidden();
|
||||
echo HtmlInput::hidden('p_action','client');
|
||||
echo HtmlInput::hidden("sa","insert");
|
||||
echo HtmlInput::hidden("fd_id",$_GET['fd_id']);
|
||||
echo HtmlInput::hidden("url", $_GET['url']);
|
||||
;
|
||||
echo $c->blank($_GET['fd_id']);
|
||||
echo HtmlInput::submit('Sauve','Sauve');
|
||||
echo '</form>';
|
||||
echo $retour_action;
|
||||
echo '</div>';
|
||||
}
|
||||
//-----------------------------------------------------
|
||||
// list
|
||||
if ( $sub_action == "list" )
|
||||
{
|
||||
?>
|
||||
<div class="content">
|
||||
<span>
|
||||
<form method="get" action="commercial.php">
|
||||
<?php
|
||||
echo dossier::hidden();
|
||||
$a=(isset($_GET['query']))?$_GET['query']:"";
|
||||
printf ('<input type="text" name="query" value="%s">',
|
||||
$a);
|
||||
?>
|
||||
<input type="submit" class="button" name="submit_query" value="<?_('recherche')?>">
|
||||
<input type="hidden" name="p_action" value="contact">
|
||||
</form>
|
||||
?>
|
||||
<div class="content">
|
||||
<span>
|
||||
<form method="get" action="commercial.php">
|
||||
<?php
|
||||
echo dossier::hidden();
|
||||
$a=(isset($_GET['query']))?$_GET['query']:"";
|
||||
printf ('<input type="text" name="query" value="%s">',
|
||||
$a);
|
||||
?>
|
||||
<input type="submit" class="button" name="submit_query" value="<?_('recherche')?>">
|
||||
<input type="hidden" name="p_action" value="contact">
|
||||
</form>
|
||||
|
||||
|
||||
<form>
|
||||
<?php
|
||||
echo dossier::hidden();
|
||||
$qcode=(isset($_GET['qcode']))?$_GET['qcode']:"";
|
||||
echo JS_LEDGER;
|
||||
$w=new ICard();
|
||||
$w->name='qcode';
|
||||
$w->value=$qcode;
|
||||
$w->label='qcode';
|
||||
$w->table=0;
|
||||
$w->jrn=0;
|
||||
$w->extra='4,8,9,14';
|
||||
echo $w->input();
|
||||
<form>
|
||||
<?php
|
||||
echo dossier::hidden();
|
||||
$qcode=(isset($_GET['qcode']))?$_GET['qcode']:"";
|
||||
echo JS_LEDGER;
|
||||
$w=new ICard();
|
||||
$w->name='qcode';
|
||||
$w->value=$qcode;
|
||||
$w->label='qcode';
|
||||
$w->table=0;
|
||||
$w->jrn=0;
|
||||
$w->extra='4,8,9,14';
|
||||
echo $w->input();
|
||||
|
||||
|
||||
$sp=new ISpan();
|
||||
echo $sp->input("qcode_label",$qcode)."</TD></TR>";
|
||||
$sp=new ISpan();
|
||||
echo $sp->input("qcode_label",$qcode)."</TD></TR>";
|
||||
|
||||
|
||||
?>
|
||||
<input type="submit" class="button" name="submit_query" value="recherche">
|
||||
<input type="hidden" name="p_action" value="contact">
|
||||
?>
|
||||
<input type="submit" class="button" name="submit_query" value="recherche">
|
||||
<input type="hidden" name="p_action" value="contact">
|
||||
|
||||
</FORM>
|
||||
</span>
|
||||
<span>
|
||||
<form method="get" action="commercial.php">
|
||||
<? echo dossier::hidden(); ?>
|
||||
<input type="hidden" name="url" <?php $url=urlencode($_SERVER['REQUEST_URI']);echo 'value="'.$url.'"'; ?>>
|
||||
<input type="hidden" name="p_action" value="contact">
|
||||
</FORM>
|
||||
</span>
|
||||
<span>
|
||||
<form method="get" action="commercial.php">
|
||||
<? echo dossier::hidden();
|
||||
?>
|
||||
<input type="hidden" name="url" <?php $url=urlencode($_SERVER['REQUEST_URI']);
|
||||
echo 'value="'.$url.'"';
|
||||
?>>
|
||||
<input type="hidden" name="p_action" value="contact">
|
||||
|
||||
<?php
|
||||
$w=new ISelect();
|
||||
$w->name="fd_id";
|
||||
$w->value= $cn->make_array("select fd_id,fd_label from fiche_def where ".
|
||||
" frd_id=".FICHE_TYPE_CONTACT);
|
||||
// if array is empty show an warning and stops
|
||||
if ( sizeof ($w->value) == 0 ) {
|
||||
echo '<p style="color:red">Aucune fiche de catégories contact</p>';
|
||||
echo '<p>allez dans fiche creation et choississez contact comme sorte</p>';
|
||||
exit();
|
||||
}
|
||||
echo $w->input();
|
||||
<?php
|
||||
$w=new ISelect();
|
||||
$w->name="fd_id";
|
||||
$w->value= $cn->make_array("select fd_id,fd_label from fiche_def where ".
|
||||
" frd_id=".FICHE_TYPE_CONTACT);
|
||||
// if array is empty show an warning and stops
|
||||
if ( sizeof ($w->value) == 0 )
|
||||
{
|
||||
echo '<p style="color:red">Aucune fiche de catégories contact</p>';
|
||||
echo '<p>allez dans fiche creation et choississez contact comme sorte</p>';
|
||||
exit();
|
||||
}
|
||||
echo $w->input();
|
||||
|
||||
?>
|
||||
<input type="hidden" name="sa" value="blank">
|
||||
<input type="submit" class="button" name="submit_query" value="Ajout Contact">
|
||||
?>
|
||||
<input type="hidden" name="sa" value="blank">
|
||||
<input type="submit" class="button" name="submit_query" value="Ajout Contact">
|
||||
|
||||
</form>
|
||||
</span>
|
||||
<?php
|
||||
$contact=new Contact($cn);
|
||||
$search=(isset($_GET['query']))?$_GET['query']:"";
|
||||
// check if a company is asked if yes, add a condition
|
||||
if ( $qcode != "" )
|
||||
{
|
||||
$contact->company=$qcode;
|
||||
}
|
||||
echo $retour;
|
||||
echo '<div class="u_redcontent">';
|
||||
echo $contact->Summary($search);
|
||||
echo '</div>';
|
||||
echo $retour;
|
||||
</form>
|
||||
</span>
|
||||
<?php
|
||||
$contact=new Contact($cn);
|
||||
$search=(isset($_GET['query']))?$_GET['query']:"";
|
||||
// check if a company is asked if yes, add a condition
|
||||
if ( $qcode != "" )
|
||||
{
|
||||
$contact->company=$qcode;
|
||||
}
|
||||
echo $retour;
|
||||
echo '<div class="u_redcontent">';
|
||||
echo $contact->Summary($search);
|
||||
echo '</div>';
|
||||
echo $retour;
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -198,27 +203,27 @@ if ( $sub_action == "list" )
|
|||
// Show Detail
|
||||
if ( $sub_action == 'detail' )
|
||||
{
|
||||
$f_id=$_REQUEST['f_id'];
|
||||
echo '<div class="u_redcontent">';
|
||||
$contact=new contact($cn,$f_id);
|
||||
echo $retour;
|
||||
echo '<form action="'.$_SERVER['REQUEST_URI'].'" method="post">';
|
||||
echo dossier::hidden();
|
||||
echo $contact->Display(false);
|
||||
$w=new IHidden();
|
||||
$w->name="p_action";
|
||||
$w->value="contact";
|
||||
echo $w->input();
|
||||
$w->name="f_id";
|
||||
$w->value=$f_id;
|
||||
echo $w->input();
|
||||
$f_id=$_REQUEST['f_id'];
|
||||
echo '<div class="u_redcontent">';
|
||||
$contact=new contact($cn,$f_id);
|
||||
echo $retour;
|
||||
echo '<form action="'.$_SERVER['REQUEST_URI'].'" method="post">';
|
||||
echo dossier::hidden();
|
||||
echo $contact->Display(false);
|
||||
$w=new IHidden();
|
||||
$w->name="p_action";
|
||||
$w->value="contact";
|
||||
echo $w->input();
|
||||
$w->name="f_id";
|
||||
$w->value=$f_id;
|
||||
echo $w->input();
|
||||
|
||||
echo HtmlInput::submit('mod','Sauver les modifications');
|
||||
echo '<A HREF="commercial.php?p_action=contact&'.$str_dossier.'"><INPUT TYPE="button" class="button" value="Retour"></A>';
|
||||
echo HtmlInput::submit('delete','Effacer cette fiche');
|
||||
echo '</form>';
|
||||
echo $retour;
|
||||
echo '<div>';
|
||||
echo HtmlInput::submit('mod','Sauver les modifications');
|
||||
echo '<A HREF="commercial.php?p_action=contact&'.$str_dossier.'"><INPUT TYPE="button" class="button" value="Retour"></A>';
|
||||
echo HtmlInput::submit('delete','Effacer cette fiche');
|
||||
echo '</form>';
|
||||
echo $retour;
|
||||
echo '<div>';
|
||||
}
|
||||
html_page_stop();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue