Gestion de la suppression
This commit is contained in:
parent
c951e7dc5d
commit
c26788fb1f
@ -48,6 +48,14 @@ if ($_GET["id"])
|
||||
$db->query($sql);
|
||||
}
|
||||
|
||||
if ($_GET["action"] == 'del')
|
||||
{
|
||||
$sql = "DELETE FROM ".MAIN_DB_PREFIX."telephonie_societe_commentaire";
|
||||
$sql .= " WHERE rowid = '".$_GET["commid"]."'";
|
||||
$sql .= " AND fk_user = '".$user->id."';";
|
||||
$db->query($sql);
|
||||
}
|
||||
|
||||
if (!$soc->perm_read)
|
||||
{
|
||||
print "Lecture non authorisée";
|
||||
@ -56,111 +64,112 @@ if ($_GET["id"])
|
||||
if ( $result == 1 && $soc->perm_read)
|
||||
{
|
||||
|
||||
$h=0;
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/fiche.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Contrats");
|
||||
$h=0;
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/fiche.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Contrats");
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/lignes.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Lignes");
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/factures.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Factures");
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/stats.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Stats");
|
||||
$h++;
|
||||
|
||||
$sql = "SELECT count(*) FROM ".MAIN_DB_PREFIX."telephonie_tarif_client";
|
||||
$sql .= " WHERE fk_client = '".$soc->id."';";
|
||||
$resql = $db->query($sql);
|
||||
|
||||
if ($resql)
|
||||
{
|
||||
$row = $db->fetch_row($resql);
|
||||
$db->free($resql);
|
||||
}
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/tarifs.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Tarifs (".$row[0].")");
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/commentaires.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Commentaires");
|
||||
$hselected = $h;
|
||||
$h++;
|
||||
|
||||
if ($soc->perm_perms)
|
||||
{
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/permissions.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Permissions");
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/lignes.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Lignes");
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/factures.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Factures");
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/stats.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Stats");
|
||||
$h++;
|
||||
|
||||
$sql = "SELECT count(*) FROM ".MAIN_DB_PREFIX."telephonie_tarif_client";
|
||||
$sql .= " WHERE fk_client = '".$soc->id."';";
|
||||
$resql = $db->query($sql);
|
||||
|
||||
if ($resql)
|
||||
}
|
||||
|
||||
dolibarr_fiche_head($head, $hselected, 'Client : '.$soc->nom);
|
||||
|
||||
print '<table class="border" cellpadding="3" cellspacing="0" width="100%">';
|
||||
print '<tr><td width="20%">'.$langs->trans('Name').'</td><td>'.$soc->nom.'</td><td>'.$langs->trans('Code client').'</td><td>'.$soc->code_client.'</td></tr>';
|
||||
|
||||
print "<tr><td valign=\"top\">".$langs->trans('Address')."</td><td colspan=\"3\">".nl2br($soc->adresse)."<br>".$soc->cp." ".$soc->ville." ".$soc->pays."</td></tr>";
|
||||
|
||||
print '<tr><td>'.$langs->trans('Phone').'</td><td>'.dolibarr_print_phone($soc->tel).'</td>';
|
||||
print '<td>'.$langs->trans('Fax').'</td><td>'.dolibarr_print_phone($soc->fax).'</td></tr>';
|
||||
|
||||
print '<tr><td><a href="'.DOL_URL_ROOT.'/societe/rib.php?socid='.$soc->id.'">'.img_edit() ."</a> ";
|
||||
print $langs->trans('RIB').'</td><td colspan="3">';
|
||||
print $soc->display_rib();
|
||||
print '</td></tr>';
|
||||
|
||||
print '</table><br />';
|
||||
|
||||
print '<form method="POST" action="commentaires.php?id='.$soc->id.'&action=add">';
|
||||
print '<table class="border" width="100%" cellspacing="0" cellpadding="4">';
|
||||
print '<tr><td width="15%" valign="center">Nouveau<br>commentaire';
|
||||
print '</td><td><textarea cols="60" rows="3" name="comment"></textarea></td>';
|
||||
print '<td><input type="submit" value="Ajouter"></td></tr>';
|
||||
print "</table></form><br />";
|
||||
|
||||
print '<table class="border" width="100%" cellspacing="0" cellpadding="4">';
|
||||
|
||||
/* Commentaires */
|
||||
|
||||
$sql = "SELECT c.commentaire, u.firstname, u.name, u.code, c.rowid";
|
||||
$sql .= " , ".$db->pdate("c.datec") ." as datec";
|
||||
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_societe_commentaire as c";
|
||||
$sql .= " , ".MAIN_DB_PREFIX."user as u";
|
||||
$sql .= " WHERE fk_soc = ".$soc->id;
|
||||
$sql .= " AND c.fk_user = u.rowid";
|
||||
$sql .= " ORDER BY c.datec DESC";
|
||||
|
||||
$resql = $db->query($sql);
|
||||
|
||||
if ($resql)
|
||||
{
|
||||
print '<tr class="liste_titre"><td width="15%" valign="center">Date';
|
||||
print '</td><td>Commentaire</td><td align="center" colspan="2">Auteur</td>';
|
||||
print "</tr>\n";
|
||||
|
||||
while ($obj = $db->fetch_object($resql))
|
||||
{
|
||||
$row = $db->fetch_row($resql);
|
||||
$db->free($resql);
|
||||
}
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/tarifs.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Tarifs (".$row[0].")");
|
||||
$h++;
|
||||
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/commentaires.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Commentaires");
|
||||
$hselected = $h;
|
||||
$h++;
|
||||
|
||||
if ($soc->perm_perms)
|
||||
{
|
||||
$head[$h][0] = DOL_URL_ROOT."/telephonie/client/permissions.php?id=".$soc->id;
|
||||
$head[$h][1] = $langs->trans("Permissions");
|
||||
$h++;
|
||||
}
|
||||
|
||||
dolibarr_fiche_head($head, $hselected, 'Client : '.$soc->nom);
|
||||
|
||||
print '<table class="border" cellpadding="3" cellspacing="0" width="100%">';
|
||||
print '<tr><td width="20%">'.$langs->trans('Name').'</td><td>'.$soc->nom.'</td><td>'.$langs->trans('Code client').'</td><td>'.$soc->code_client.'</td></tr>';
|
||||
|
||||
print "<tr><td valign=\"top\">".$langs->trans('Address')."</td><td colspan=\"3\">".nl2br($soc->adresse)."<br>".$soc->cp." ".$soc->ville." ".$soc->pays."</td></tr>";
|
||||
|
||||
print '<tr><td>'.$langs->trans('Phone').'</td><td>'.dolibarr_print_phone($soc->tel).'</td>';
|
||||
print '<td>'.$langs->trans('Fax').'</td><td>'.dolibarr_print_phone($soc->fax).'</td></tr>';
|
||||
|
||||
print '<tr><td><a href="'.DOL_URL_ROOT.'/societe/rib.php?socid='.$soc->id.'">'.img_edit() ."</a> ";
|
||||
print $langs->trans('RIB').'</td><td colspan="3">';
|
||||
print $soc->display_rib();
|
||||
print '</td></tr>';
|
||||
|
||||
print '</table><br />';
|
||||
|
||||
print '<form method="POST" action="commentaires.php?id='.$soc->id.'&action=add">';
|
||||
print '<table class="border" width="100%" cellspacing="0" cellpadding="4">';
|
||||
print '<tr><td width="15%" valign="center">Nouveau<br>commentaire';
|
||||
print '</td><td><textarea cols="60" rows="3" name="comment"></textarea></td>';
|
||||
print '<td><input type="submit" value="Ajouter"></td></tr>';
|
||||
print "</table></form><br />";
|
||||
|
||||
print '<table class="border" width="100%" cellspacing="0" cellpadding="4">';
|
||||
|
||||
/* Commentaires */
|
||||
|
||||
$sql = "SELECT c.commentaire, u.firstname, u.name, u.code";
|
||||
$sql .= " , ".$db->pdate("c.datec") ." as datec";
|
||||
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_societe_commentaire as c";
|
||||
$sql .= " , ".MAIN_DB_PREFIX."user as u";
|
||||
$sql .= " WHERE fk_soc = ".$soc->id;
|
||||
$sql .= " AND c.fk_user = u.rowid";
|
||||
$sql .= " ORDER BY c.datec DESC";
|
||||
|
||||
$resql = $db->query($sql);
|
||||
|
||||
if ($resql)
|
||||
{
|
||||
print '<tr class="liste_titre"><td width="15%" valign="center">Date';
|
||||
print '</td><td>Commentaire</td><td align="center">Auteur</td>';
|
||||
print "<tr $bc[$var]><td>".strftime("%d/%m/%y %H:%M",$obj->datec);
|
||||
print "</td>\n";
|
||||
print '<td>'.nl2br(stripslashes($obj->commentaire))."</td>\n";
|
||||
print '<td align="center">'.$obj->code."</td>\n";
|
||||
print '<td align="right">';
|
||||
print '<a href="commentaires.php?id='.$soc->id.'&commid='.$obj->rowid.'&action=del">';
|
||||
print img_delete().'</a></td>';
|
||||
print "</tr>\n";
|
||||
|
||||
while ($obj = $db->fetch_object($resql))
|
||||
{
|
||||
print "<tr $bc[$var]><td>".strftime("%d/%m/%y %H:%M",$obj->datec);
|
||||
print "</td>\n";
|
||||
print '<td>'.nl2br(stripslashes($obj->commentaire))."</td>\n";
|
||||
print '<td align="center">'.$obj->code."</td>\n";
|
||||
print "</tr>\n";
|
||||
$var=!$var;
|
||||
}
|
||||
$db->free($resql);
|
||||
|
||||
$var=!$var;
|
||||
}
|
||||
else
|
||||
{
|
||||
print $sql;
|
||||
}
|
||||
|
||||
print "</table>";
|
||||
$db->free($resql);
|
||||
}
|
||||
else
|
||||
{
|
||||
print $sql;
|
||||
}
|
||||
print "</table>";
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Loading…
Reference in New Issue
Block a user