.
This commit is contained in:
parent
1c791f6c6e
commit
1177f1af39
@ -264,7 +264,6 @@ function ppt ($db, $year, $socidp) {
|
|||||||
|
|
||||||
print "</td><td align=\"center\">CA $year</td>";
|
print "</td><td align=\"center\">CA $year</td>";
|
||||||
print "<td valign=\"top\">Delta</td></tr>";
|
print "<td valign=\"top\">Delta</td></tr>";
|
||||||
|
|
||||||
print "<tr><td valign=\"top\" width=\"30%\">";
|
print "<tr><td valign=\"top\" width=\"30%\">";
|
||||||
|
|
||||||
$sql = "SELECT sum(f.amount) as sum, round(date_format(f.datef, '%m')) as dm";
|
$sql = "SELECT sum(f.amount) as sum, round(date_format(f.datef, '%m')) as dm";
|
||||||
|
|||||||
@ -166,7 +166,7 @@ if ($socid > 0) {
|
|||||||
print "<tr><td><div class=\"titre\">Fiche client : $objsoc->nom</div></td>";
|
print "<tr><td><div class=\"titre\">Fiche client : $objsoc->nom</div></td>";
|
||||||
print "<td align=\"center\"><a href=\"bookmark.php3?socidp=$objsoc->idp&action=add\">[Bookmark]</a></td>";
|
print "<td align=\"center\"><a href=\"bookmark.php3?socidp=$objsoc->idp&action=add\">[Bookmark]</a></td>";
|
||||||
print "<td align=\"center\"><a href=\"projet/fiche.php3?socidp=$objsoc->idp&action=create\">[Projet]</a></td>";
|
print "<td align=\"center\"><a href=\"projet/fiche.php3?socidp=$objsoc->idp&action=create\">[Projet]</a></td>";
|
||||||
print "<td align=\"center\"><a href=\"addpropal.php3?socidp=$objsoc->idp&action=create\">[Propal]</a></td>";
|
print "<td><a href=\"facture.php3?action=create&socidp=$objsoc->idp\">".translate("Bill")."</a></td>";
|
||||||
print "<td><a href=\"socnote.php3?socid=$objsoc->idp\">Notes</a></td>";
|
print "<td><a href=\"socnote.php3?socid=$objsoc->idp\">Notes</a></td>";
|
||||||
print "<td align=\"center\">[<a href=\"../soc.php3?socid=$objsoc->idp&action=edit\">Editer</a>]</td>";
|
print "<td align=\"center\">[<a href=\"../soc.php3?socid=$objsoc->idp&action=edit\">Editer</a>]</td>";
|
||||||
print "</tr></table>";
|
print "</tr></table>";
|
||||||
|
|||||||
@ -53,7 +53,7 @@ if ($action == 'del_bookmark') {
|
|||||||
$result = $db->query($sql);
|
$result = $db->query($sql);
|
||||||
}
|
}
|
||||||
|
|
||||||
print_titre("Espace compta");
|
print_titre(translate("Espace compta"));
|
||||||
|
|
||||||
print '<TABLE border="0" width="100%" cellspacing="0" cellpadding="4">';
|
print '<TABLE border="0" width="100%" cellspacing="0" cellpadding="4">';
|
||||||
|
|
||||||
@ -94,7 +94,7 @@ if ( $db->query($sql) ) {
|
|||||||
*/
|
*/
|
||||||
print '<TABLE border="0" cellspacing="0" cellpadding="3" width="100%">';
|
print '<TABLE border="0" cellspacing="0" cellpadding="3" width="100%">';
|
||||||
print "<TR class=\"liste_titre\">";
|
print "<TR class=\"liste_titre\">";
|
||||||
print "<td colspan=\"2\">Propositions commerciales</td>";
|
print '<td colspan="2">'.translate("Propositions commerciales").'</td>';
|
||||||
print "</TR>\n";
|
print "</TR>\n";
|
||||||
|
|
||||||
$sql = "SELECT count(*) FROM llx_propal WHERE fk_statut = 2";
|
$sql = "SELECT count(*) FROM llx_propal WHERE fk_statut = 2";
|
||||||
@ -109,7 +109,7 @@ print "</table><br>";
|
|||||||
*/
|
*/
|
||||||
print '<TABLE border="0" cellspacing="0" cellpadding="3" width="100%">';
|
print '<TABLE border="0" cellspacing="0" cellpadding="3" width="100%">';
|
||||||
print "<TR class=\"liste_titre\">";
|
print "<TR class=\"liste_titre\">";
|
||||||
print "<td colspan=\"2\">Factures</td>";
|
print '<td colspan="2">'.translate("Bills").'</td>';
|
||||||
print "</TR>\n";
|
print "</TR>\n";
|
||||||
|
|
||||||
$sql = "SELECT count(*) FROM llx_facture WHERE paye = 0";
|
$sql = "SELECT count(*) FROM llx_facture WHERE paye = 0";
|
||||||
|
|||||||
@ -1,8 +1,5 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
* $Source$
|
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -18,6 +15,9 @@
|
|||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
|
* $Id$
|
||||||
|
* $Source$
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
require("./pre.inc.php3");
|
require("./pre.inc.php3");
|
||||||
|
|
||||||
|
|||||||
@ -58,5 +58,7 @@ print '</table>';
|
|||||||
|
|
||||||
$db = new Db();
|
$db = new Db();
|
||||||
|
|
||||||
|
?> <a href="phpinfo.php3">phpinfo</a> <?PHP
|
||||||
|
|
||||||
llxFooter();
|
llxFooter();
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -1,7 +1,14 @@
|
|||||||
#do not change next line please !
|
#do not change next line please !
|
||||||
#{@"htmltagoption"=>"nothing","charset"=>"iso-8859-1","name"=>"Français","translator_0"=>"Éric SEIGNE <erics@rycks.com>"}
|
#{@"htmltagoption"=>"nothing","charset"=>"iso-8859-1","name"=>"Français","translator_0"=>"Éric SEIGNE <erics@rycks.com>"}
|
||||||
Please choose your language=Choisissez votre langue
|
Please choose your language=Choisissez votre langue
|
||||||
|
Add=Ajouter
|
||||||
Commercial=Commercial
|
Commercial=Commercial
|
||||||
Company=Société
|
Company=Société
|
||||||
Date=Date
|
Date=Date
|
||||||
|
Delete=Supprimer
|
||||||
|
Bills=Factures
|
||||||
|
Bill=Facture
|
||||||
|
Propositions commerciales=Propositions commerciales
|
||||||
|
Espace compta=Espace comptabilité
|
||||||
|
Author=Auteur
|
||||||
User=Utilisateur
|
User=Utilisateur
|
||||||
@ -47,7 +47,7 @@ $db->close();
|
|||||||
if(!isset($application_lang))
|
if(!isset($application_lang))
|
||||||
$application_lang = "fr";
|
$application_lang = "fr";
|
||||||
|
|
||||||
$rtplang = new rtplang("langs", "en", "en", $application_lang);
|
$rtplang = new rtplang($GLOBALS["DOCUMENT_ROOT"]."/langs", "en", "en", $application_lang);
|
||||||
$rtplang->debug=1;
|
$rtplang->debug=1;
|
||||||
/*
|
/*
|
||||||
*/
|
*/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user