Correction noms de tables

This commit is contained in:
Rodolphe Quiedeville 2003-07-08 20:03:08 +00:00
parent 6424015d68
commit b4dbf9478b

View File

@ -76,11 +76,13 @@ if ($action == 'stcomm') {
} }
} }
if ($actioncommid) { if ($actioncommid)
$sql = "INSERT INTO actioncomm (datea, fk_action, fk_soc, fk_user_author) VALUES ('$dateaction',$actioncommid,$socid,'" . $user->id . "')"; {
$sql = "INSERT INTO llx_actioncomm (datea, fk_action, fk_soc, fk_user_author) VALUES ('$dateaction',$actioncommid,$socid,'" . $user->id . "')";
$result = @$db->query($sql); $result = @$db->query($sql);
if (!$result) { if (!$result)
{
$errmesg = "ERREUR DE DATE !"; $errmesg = "ERREUR DE DATE !";
} }
} }
@ -114,20 +116,27 @@ if ($mode == 'search') {
if ($socid > 0) { if ($socid > 0) {
$societe = new Societe($db, $socid); $societe = new Societe($db, $socid);
$sql = "SELECT s.idp, s.nom, ".$db->pdate("s.datec")." as dc, s.tel, s.fax, st.libelle as stcomm, s.fk_stcomm, s.url,s.address,s.cp,s.ville, s.note, t.libelle as typent, e.libelle as effectif, s.siren, s.prefix_comm, s.services,s.parent, s.description FROM llx_societe as s, c_stcomm as st, c_typent as t, c_effectif as e "; $sql = "SELECT s.idp, s.nom, ".$db->pdate("s.datec")." as dc, s.tel, s.fax, st.libelle as stcomm, s.fk_stcomm, s.url,s.address,s.cp,s.ville, s.note, t.libelle as typent, e.libelle as effectif, s.siren, s.prefix_comm, s.services,s.parent, s.description";
$sql .= " FROM llx_societe as s, c_stcomm as st, c_typent as t, c_effectif as e ";
$sql .= " WHERE s.fk_stcomm=st.id AND s.fk_typent = t.id AND s.fk_effectif = e.id"; $sql .= " WHERE s.fk_stcomm=st.id AND s.fk_typent = t.id AND s.fk_effectif = e.id";
if ($to == 'next') { if ($to == 'next')
{
$sql .= " AND s.idp > $socid ORDER BY idp ASC LIMIT 1"; $sql .= " AND s.idp > $socid ORDER BY idp ASC LIMIT 1";
} elseif ($to == 'prev') { }
elseif ($to == 'prev')
{
$sql .= " AND s.idp < $socid ORDER BY idp DESC LIMIT 1"; $sql .= " AND s.idp < $socid ORDER BY idp DESC LIMIT 1";
} else { }
else
{
$sql .= " AND s.idp = $socid"; $sql .= " AND s.idp = $socid";
} }
$result = $db->query($sql); $result = $db->query($sql);
if ($result) { if ($result)
{
$objsoc = $db->fetch_object(0); $objsoc = $db->fetch_object(0);
$dac = strftime("%Y-%m-%d %H:%M", time()); $dac = strftime("%Y-%m-%d %H:%M", time());
@ -263,7 +272,8 @@ if ($socid > 0) {
print "<td><b>Fax</b></td><td><b>Email</b></td>"; print "<td><b>Fax</b></td><td><b>Email</b></td>";
print "<td><a href=\"people.php3?socid=$objsoc->idp&action=addcontact\">Ajouter</a></td></tr>"; print "<td><a href=\"people.php3?socid=$objsoc->idp&action=addcontact\">Ajouter</a></td></tr>";
$sql = "SELECT p.idp, p.name, p.firstname, p.poste, p.phone, p.fax, p.email, p.note FROM socpeople as p WHERE p.fk_soc = $objsoc->idp ORDER by p.datec"; $sql = "SELECT p.idp, p.name, p.firstname, p.poste, p.phone, p.fax, p.email, p.note";
$sql .= " FROM llx_socpeople as p WHERE p.fk_soc = $objsoc->idp ORDER by p.datec";
$result = $db->query($sql); $result = $db->query($sql);
$i = 0 ; $num = $db->num_rows(); $tag = True; $i = 0 ; $num = $db->num_rows(); $tag = True;
while ($i < $num) { while ($i < $num) {
@ -302,28 +312,36 @@ if ($socid > 0) {
* *
*/ */
$sql = "SELECT a.id, ".$db->pdate("a.datea")." as da, c.libelle, u.code, a.propalrowid, a.fk_user_author, fk_contact, u.rowid "; $sql = "SELECT a.id, ".$db->pdate("a.datea")." as da, c.libelle, u.code, a.propalrowid, a.fk_user_author, fk_contact, u.rowid ";
$sql .= " FROM actioncomm as a, c_actioncomm as c, llx_user as u "; $sql .= " FROM llx_actioncomm as a, c_actioncomm as c, llx_user as u ";
$sql .= " WHERE a.fk_soc = $objsoc->idp "; $sql .= " WHERE a.fk_soc = $objsoc->idp ";
$sql .= " AND u.rowid = a.fk_user_author"; $sql .= " AND u.rowid = a.fk_user_author";
$sql .= " AND c.id=a.fk_action "; $sql .= " AND c.id=a.fk_action ";
$sql .= " ORDER BY a.datea DESC, a.id DESC"; $sql .= " ORDER BY a.datea DESC, a.id DESC";
if ( $db->query($sql) ) { if ( $db->query($sql) )
{
print "<table width=\"100%\" cellspacing=0 border=0 cellpadding=2>\n"; print "<table width=\"100%\" cellspacing=0 border=0 cellpadding=2>\n";
print '<tr><td><a href="/comm/action/index.php3?socid='.$objsoc->idp.'">Actions</a></td></tr>'; print '<tr><td><a href="/comm/action/index.php3?socid='.$objsoc->idp.'">Actions</a></td></tr>';
$i = 0 ; $num = $db->num_rows(); $tag = True; $i = 0 ; $num = $db->num_rows(); $tag = True;
while ($i < $num) { while ($i < $num)
{
$obj = $db->fetch_object( $i); $obj = $db->fetch_object( $i);
if ($tag) { if ($tag)
{
print "<tr bgcolor=\"e0e0e0\">"; print "<tr bgcolor=\"e0e0e0\">";
} else { }
else
{
print "<tr>"; print "<tr>";
} }
if ($oldyear == strftime("%Y",$obj->da) ) { if ($oldyear == strftime("%Y",$obj->da) )
{
print '<td align="center">|</td>'; print '<td align="center">|</td>';
} else { }
else
{
print "<TD align=\"center\">" .strftime("%Y",$obj->da)."</TD>\n"; print "<TD align=\"center\">" .strftime("%Y",$obj->da)."</TD>\n";
$oldyear = strftime("%Y",$obj->da); $oldyear = strftime("%Y",$obj->da);
} }
@ -365,7 +383,7 @@ if ($socid > 0) {
$db->free(); $db->free();
} else { } else {
print $db->error(); print $db->error() . "<br>" . $sql;
} }
print "</td></tr></table>"; print "</td></tr></table>";
/* /*