$sql="INSERT INTO actioncomm (datea, fk_action, fk_soc, fk_user_author) VALUES ('$dateaction',$actioncommid,$socid,'".$user->id."')";
$sql="INSERT INTO ".MAIN_DB_PREFIX."actioncomm (datea, fk_action, fk_soc, fk_user_author) VALUES ('$dateaction',$actioncommid,$socid,'".$user->id."')";
$result=@$db->query($sql);
if(!$result){
...
...
@@ -63,12 +70,6 @@ if ($action == 'stcomm') {
}
}
}
if($page==-1){$page=0;}
$limit=$conf->liste_limit;
$offset=$limit*$page;
$pageprev=$page-1;
$pagenext=$page+1;
/*
* Recherche
...
...
@@ -90,6 +91,14 @@ if ($mode == 'search') {
}
}
if($page==-1){$page=0;}
$offset=$conf->liste_limit*$page;
$pageprev=$page-1;
$pagenext=$page+1;
/*
* Mode Liste
*
...
...
@@ -106,7 +115,6 @@ if ($sortfield == "")
$sortfield="nom";
}
print_barre_liste("Liste des fournisseurs",$page,$PHP_SELF);
$sql="SELECT s.idp, s.nom, s.ville,".$db->pdate("s.datec")." as datec, ".$db->pdate("s.datea")." as datea, st.libelle as stcomm, s.prefix_comm FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."c_stcomm as st WHERE s.fk_stcomm = st.id AND s.fournisseur=1";
...
...
@@ -128,7 +136,7 @@ if ($socname) {
$sortorder="ASC";
}
$sql.=" ORDER BY $sortfield$sortorder ".$db->plimit($limit,$offset);
$sql.=" ORDER BY $sortfield$sortorder ".$db->plimit($conf->liste_limit,$offset);
$result=$db->query($sql);
if($result)
...
...
@@ -136,6 +144,7 @@ if ($result)
$num=$db->num_rows();
$i=0;
print_barre_liste("Liste des fournisseurs",$page,$PHP_SELF,"",$sortfield,$sortorder,'',$num);