mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-17 15:01:26 +01:00
1416 lines
43 KiB
PHP
1416 lines
43 KiB
PHP
<?PHP
|
|
/* Copyright (C) 2002-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2004 Éric Seigne <eric.seigne@ryxeo.com>
|
|
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* $Id$
|
|
* $Source$
|
|
*
|
|
*/
|
|
require("./pre.inc.php");
|
|
|
|
$user->getrights('facture');
|
|
if (!$user->rights->facture->lire)
|
|
accessforbidden();
|
|
|
|
require("../facture.class.php");
|
|
require("../lib/CMailFile.class.php");
|
|
require("../paiement.class.php");
|
|
require("../project.class.php");
|
|
require("../propal.class.php");
|
|
require("./bank/account.class.php");
|
|
require("../contrat/contrat.class.php");
|
|
require("../commande/commande.class.php");
|
|
|
|
/*
|
|
* Sécurité accés client
|
|
*/
|
|
if ($user->societe_id > 0)
|
|
{
|
|
$action = '';
|
|
$socidp = $user->societe_id;
|
|
}
|
|
/*
|
|
*
|
|
*/
|
|
|
|
if ($HTTP_POST_VARS["action"] == 'classin')
|
|
{
|
|
$facture = new Facture($db);
|
|
$facture->fetch($facid);
|
|
$facture->classin($HTTP_POST_VARS["projetid"]);
|
|
}
|
|
/*
|
|
*
|
|
*/
|
|
if ($HTTP_POST_VARS["action"] == 'add')
|
|
{
|
|
$datefacture = mktime(12, 0 , 0, $HTTP_POST_VARS["remonth"], $HTTP_POST_VARS["reday"], $HTTP_POST_VARS["reyear"]);
|
|
|
|
$facture = new Facture($db, $HTTP_POST_VARS["socid"]);
|
|
|
|
$facture->number = $HTTP_POST_VARS["facnumber"];
|
|
$facture->date = $datefacture;
|
|
$facture->note = $HTTP_POST_VARS["note"];
|
|
|
|
if ($HTTP_POST_VARS["fac_rec"] > 0)
|
|
{
|
|
/*
|
|
* Facture récurrente
|
|
*/
|
|
$facture->fac_rec = $HTTP_POST_VARS["fac_rec"];
|
|
$facid = $facture->create($user);
|
|
}
|
|
else
|
|
{
|
|
$facture->projetid = $HTTP_POST_VARS["projetid"];
|
|
$facture->cond_reglement = $HTTP_POST_VARS["condid"];
|
|
$facture->amount = $HTTP_POST_VARS["amount"];
|
|
$facture->remise = $HTTP_POST_VARS["remise"];
|
|
$facture->remise_percent = $HTTP_POST_VARS["remise_percent"];
|
|
|
|
if (!$HTTP_POST_VARS["propalid"] && !$HTTP_POST_VARS["commandeid"])
|
|
{
|
|
$facture->add_product($HTTP_POST_VARS["idprod1"],$HTTP_POST_VARS["qty1"],$HTTP_POST_VARS["remise_percent1"]);
|
|
$facture->add_product($HTTP_POST_VARS["idprod2"],$HTTP_POST_VARS["qty2"],$HTTP_POST_VARS["remise_percent2"]);
|
|
$facture->add_product($HTTP_POST_VARS["idprod3"],$HTTP_POST_VARS["qty3"],$HTTP_POST_VARS["remise_percent3"]);
|
|
$facture->add_product($HTTP_POST_VARS["idprod4"],$HTTP_POST_VARS["qty4"],$HTTP_POST_VARS["remise_percent4"]);
|
|
|
|
$facid = $facture->create($user);
|
|
|
|
if ($facid)
|
|
{
|
|
Header("Location: facture.php?facid=".$facid);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/*
|
|
* Propale
|
|
*/
|
|
if ($HTTP_POST_VARS["propalid"])
|
|
{
|
|
$facture->propalid = $HTTP_POST_VARS["propalid"];
|
|
|
|
$facid = $facture->create($user);
|
|
|
|
if ($facid)
|
|
{
|
|
$prop = New Propal($db);
|
|
if ( $prop->fetch($HTTP_POST_VARS["propalid"]) )
|
|
{
|
|
for ($i = 0 ; $i < sizeof($prop->lignes) ; $i++)
|
|
{
|
|
print "<pre>la propale précédente en ligne " . $prop->lignes[$i]->libelle . " avait comme prix : " . $prop->lignes[$i]->price . " !</pre>\n";
|
|
$result = $facture->addline($facid,
|
|
addslashes($prop->lignes[$i]->libelle),
|
|
$prop->lignes[$i]->subprice,
|
|
$prop->lignes[$i]->qty,
|
|
$prop->lignes[$i]->tva_tx,
|
|
$prop->lignes[$i]->product_id,
|
|
$prop->lignes[$i]->remise_percent);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print "Erreur";
|
|
}
|
|
}
|
|
}
|
|
/*
|
|
* Commande
|
|
*/
|
|
|
|
if ($HTTP_POST_VARS["commandeid"])
|
|
{
|
|
$facture->commandeid = $HTTP_POST_VARS["commandeid"];
|
|
$facid = $facture->create($user);
|
|
|
|
if ($facid)
|
|
{
|
|
$comm = New Commande($db);
|
|
if ( $comm->fetch($HTTP_POST_VARS["commandeid"]) )
|
|
{
|
|
$lines = $comm->fetch_lignes();
|
|
for ($i = 0 ; $i < sizeof($lines) ; $i++)
|
|
{
|
|
$result = $facture->addline($facid,
|
|
addslashes($lines[$i]->description),
|
|
$lines[$i]->subprice,
|
|
$lines[$i]->qty,
|
|
$lines[$i]->tva_tx,
|
|
$lines[$i]->product_id,
|
|
$lines[$i]->remise_percent);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print "Erreur";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print "<p><b>Erreur : la facture n'a pas été créée, vérifier le numéro !</b>";
|
|
print "<p>Retour à la <a href=\"propal.php?propalid=$propalid\">propale</a>";
|
|
print $db->error();
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
$action = '';
|
|
}
|
|
/*
|
|
*
|
|
*/
|
|
|
|
if ($HTTP_POST_VARS["action"] == 'confirm_valid' && $HTTP_POST_VARS["confirm"] == yes && $user->rights->facture->valider)
|
|
{
|
|
$fac = new Facture($db);
|
|
$fac->fetch($facid);
|
|
$soc = new Societe($db);
|
|
$soc->fetch($fac->socidp);
|
|
$result = $fac->set_valid($facid, $user, $soc);
|
|
if ($result)
|
|
{
|
|
facture_pdf_create($db, $facid);
|
|
}
|
|
}
|
|
|
|
if ($action == 'payed' && $user->rights->facture->paiement)
|
|
{
|
|
$fac = new Facture($db);
|
|
$result = $fac->set_payed($facid);
|
|
}
|
|
|
|
if ($HTTP_POST_VARS["action"] == 'setremise' && $user->rights->facture->creer)
|
|
{
|
|
$fac = new Facture($db);
|
|
$fac->fetch($facid);
|
|
|
|
$fac->set_remise($user, $HTTP_POST_VARS["remise"]);
|
|
}
|
|
|
|
|
|
if ($action == 'addligne' && $user->rights->facture->creer)
|
|
{
|
|
$fac = new Facture($db);
|
|
$fac->fetch($facid);
|
|
$result = $fac->addline($facid,
|
|
$HTTP_POST_VARS["desc"],
|
|
$HTTP_POST_VARS["pu"],
|
|
$HTTP_POST_VARS["qty"],
|
|
$HTTP_POST_VARS["tva_tx"],
|
|
0,
|
|
$HTTP_POST_VARS["remise_percent"]);
|
|
}
|
|
|
|
if ($action == 'updateligne' && $user->rights->facture->creer)
|
|
{
|
|
$fac = new Facture($db,"",$facid);
|
|
$fac->fetch($facid);
|
|
$result = $fac->updateline($rowid,
|
|
$HTTP_POST_VARS["desc"],
|
|
$HTTP_POST_VARS["price"],
|
|
$HTTP_POST_VARS["qty"],
|
|
$HTTP_POST_VARS["remise_percent"]);
|
|
}
|
|
|
|
if ($action == 'deleteline' && $user->rights->facture->creer)
|
|
{
|
|
$fac = new Facture($db,"",$facid);
|
|
$fac->fetch($facid);
|
|
$result = $fac->deleteline($rowid);
|
|
}
|
|
|
|
if ($HTTP_POST_VARS["action"] == 'confirm_delete' && $HTTP_POST_VARS["confirm"] == yes)
|
|
{
|
|
if ($user->rights->facture->supprimer )
|
|
{
|
|
$fac = new Facture($db);
|
|
$fac->delete($_GET["facid"]);
|
|
$_GET["facid"] = 0 ;
|
|
}
|
|
}
|
|
|
|
/*
|
|
*
|
|
*/
|
|
if ($HTTP_POST_VARS["action"] == 'send' || $HTTP_POST_VARS["action"] == 'relance')
|
|
{
|
|
$fac = new Facture($db,"",$facid);
|
|
if ( $fac->fetch($facid) )
|
|
{
|
|
$file = FAC_OUTPUTDIR . "/" . $fac->ref . "/" . $fac->ref . ".pdf";
|
|
|
|
if (is_readable($file))
|
|
{
|
|
|
|
if ($HTTP_POST_VARS["sendto"]) {
|
|
// Le destinataire a été fourni via le champ libre
|
|
$sendto = $HTTP_POST_VARS["sendto"];
|
|
$sendtoid = 0;
|
|
}
|
|
elseif ($HTTP_POST_VARS["destinataire"]) {
|
|
// Le destinataire a été fourni via la liste déroulante
|
|
$soc = new Societe($db, $fac->socidp);
|
|
$sendto = $soc->contact_get_email($HTTP_POST_VARS["destinataire"]);
|
|
$sendtoid = $HTTP_POST_VARS["destinataire"];
|
|
}
|
|
|
|
if (strlen($sendto))
|
|
{
|
|
if ($HTTP_POST_VARS["action"] == 'send') {
|
|
$subject = "Facture $fac->ref";
|
|
$actioncode=9;
|
|
$actionmsg="Envoyée à $sendto";
|
|
$actionmsg2="Envoi Facture par mail";
|
|
}
|
|
if ($HTTP_POST_VARS["action"] == 'relance') {
|
|
$subject = "Relance facture $fac->ref";
|
|
$actioncode=10;
|
|
$actionmsg="Relance envoyée à $sendto";
|
|
$actionmsg2="Relance Facture par mail";
|
|
}
|
|
$message = $HTTP_POST_VARS["message"];
|
|
$filename = $fac->ref.".pdf";
|
|
|
|
$replyto = $HTTP_POST_VARS["replytoname"] . " <".$HTTP_POST_VARS["replytomail"] .">";
|
|
|
|
// Envoi de la facture
|
|
$mailfile = new CMailFile($subject,$sendto,$replyto,$message,array ($file),array ("application/pdf"),array ($filename));
|
|
|
|
if ( $mailfile->sendfile() )
|
|
{
|
|
$sendto = htmlentities($sendto);
|
|
|
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."actioncomm (datea,fk_action,fk_soc,note,fk_facture, fk_contact,fk_user_author, label, percent) VALUES (now(), '$actioncode' ,'$fac->socidp' ,'$actionmsg','$fac->id','$sendtoid','$user->id', '$actionmsg2',100);";
|
|
|
|
if (! $db->query($sql) )
|
|
{
|
|
print $db->error();
|
|
print "<p>$sql</p>";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print "<b>!! erreur d'envoi<br>$sendto<br>$replyto<br>$filename";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
dolibarr_syslog("Le mail du destinataire est vide");
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
dolibarr_syslog("Impossible de lire :".$file);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
dolibarr_syslog("Impossible de lire les données de la facture. Le fichier facture n'a peut-être pas été généré.");
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Générer ou regénérer le PDF
|
|
*/
|
|
if ($action == 'pdf')
|
|
{
|
|
/*
|
|
* Generation de la facture
|
|
* définit dans /includes/modules/facture/modules_facture.php
|
|
*/
|
|
facture_pdf_create($db, $facid);
|
|
}
|
|
|
|
llxHeader();
|
|
|
|
$html = new Form($db);
|
|
|
|
/*********************************************************************
|
|
*
|
|
* Mode creation
|
|
*
|
|
*
|
|
*
|
|
************************************************************************/
|
|
if ($_GET["action"] == 'create')
|
|
{
|
|
print_titre("Emettre une facture");
|
|
|
|
if ($propalid)
|
|
{
|
|
$sql = "SELECT s.nom, s.prefix_comm, s.idp, p.price, p.remise, p.remise_percent, p.tva, p.total, p.ref, ".$db->pdate("p.datep")." as dp, c.id as statut, c.label as lst";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."propal as p, ".MAIN_DB_PREFIX."c_propalst as c";
|
|
$sql .= " WHERE p.fk_soc = s.idp AND p.fk_statut = c.id";
|
|
$sql .= " AND p.rowid = $propalid";
|
|
}
|
|
else
|
|
{
|
|
$sql = "SELECT s.nom, s.prefix_comm, s.idp ";
|
|
$sql .= "FROM ".MAIN_DB_PREFIX."societe as s ";
|
|
$sql .= "WHERE s.idp = ".$_GET["socidp"];
|
|
}
|
|
|
|
if ($_GET["commandeid"])
|
|
{
|
|
$commande = New Commande($db);
|
|
$commande->fetch($_GET["commandeid"]);
|
|
$societe_id = $commande->soc_id;
|
|
}
|
|
|
|
if ( $db->query($sql) )
|
|
{
|
|
$num = $db->num_rows();
|
|
if ($num)
|
|
{
|
|
$obj = $db->fetch_object(0);
|
|
|
|
$soc = new Societe($db);
|
|
$soc->fetch($obj->idp);
|
|
|
|
print '<form action="'.$PHP_SELF.'" method="post">';
|
|
print '<input type="hidden" name="action" value="add">';
|
|
print '<input type="hidden" name="socid" value="'.$obj->idp.'">' ."\n";
|
|
print '<input type="hidden" name="remise_percent" value="0">';
|
|
|
|
print '<table class="border" cellspacing="0" cellpadding="3" width="100%">';
|
|
|
|
print '<tr><td>Client :</td><td>'.$soc->nom.'</td>';
|
|
print '<td class="border">Commentaire</td></tr>';
|
|
|
|
print "<tr><td>Auteur :</td><td>".$user->fullname."</td>";
|
|
|
|
print '<td rowspan="6" valign="top">';
|
|
print '<textarea name="note" wrap="soft" cols="60" rows="8"></textarea></td></tr>';
|
|
|
|
print "<tr><td>Date :</td><td>";
|
|
|
|
print_date_select(time());
|
|
|
|
print "</td></tr>";
|
|
print "<tr><td>Numéro :</td><td>Provisoire</td></tr>";
|
|
print '<input name="facnumber" type="hidden" value="provisoire">';
|
|
print "<tr><td>Conditions de réglement :</td><td>";
|
|
$sql = "SELECT rowid, libelle FROM ".MAIN_DB_PREFIX."cond_reglement ORDER BY sortorder";
|
|
$result = $db->query($sql);
|
|
$conds=array();
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows();
|
|
$i = 0;
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object($i);
|
|
$conds[$objp->rowid]=$objp->libelle;
|
|
$i++;
|
|
}
|
|
$db->free();
|
|
}
|
|
|
|
$html->select_array("condid",$conds);
|
|
print "</td></tr>";
|
|
|
|
print "<tr><td>Projet :</td><td>";
|
|
$proj = new Project($db);
|
|
$html->select_array("projetid",$proj->liste_array($socidp));
|
|
print "</td></tr>";
|
|
|
|
if ($_GET["propalid"] > 0)
|
|
{
|
|
$amount = ($obj->price);
|
|
print '<input type="hidden" name="amount" value="'.$amount.'">'."\n";
|
|
print '<input type="hidden" name="total" value="'.$obj->total.'">'."\n";
|
|
print '<input type="hidden" name="remise" value="'.$obj->remise.'">'."\n";
|
|
print '<input type="hidden" name="remise_percent" value="'.$obj->remise_percent.'">'."\n";
|
|
print '<input type="hidden" name="tva" value="'.$obj->tva.'">'."\n";
|
|
print '<input type="hidden" name="propalid" value="'.$propalid.'">';
|
|
|
|
print '<tr><td>Proposition</td><td colspan="2">'.$obj->ref.'</td></tr>';
|
|
print '<tr><td>Montant HT</td><td colspan="2">'.price($amount).'</td></tr>';
|
|
print '<tr><td>TVA</td><td colspan="2">'.price($obj->tva)."</td></tr>";
|
|
print '<tr><td>Total TTC</td><td colspan="2">'.price($obj->total)."</td></tr>";
|
|
}
|
|
elseif ($_GET["commandeid"] > 0)
|
|
{
|
|
print '<input type="hidden" name="commandeid" value="'.$commande->id.'">';
|
|
print '<tr><td>Commande</td><td colspan="2">'.$commande->ref.'</td></tr>';
|
|
print '<tr><td>Montant HT</td><td colspan="2">'.price($commande->total_ht).'</td></tr>';
|
|
print '<tr><td>TVA</td><td colspan="2">'.price($commande->total_tva)."</td></tr>";
|
|
print '<tr><td>Total TTC</td><td colspan="2">'.price($commande->total_ttc)."</td></tr>";
|
|
}
|
|
else
|
|
{
|
|
print '<tr><td colspan="2"> </td></tr>';
|
|
print '<tr><td colspan="3">';
|
|
/*
|
|
*
|
|
* Liste des elements
|
|
*
|
|
*/
|
|
$sql = "SELECT p.rowid,p.label,p.ref,p.price FROM ".MAIN_DB_PREFIX."product as p ";
|
|
$sql .= " WHERE envente = 1";
|
|
$sql .= " ORDER BY p.nbvente DESC LIMIT 20";
|
|
if ( $db->query($sql) )
|
|
{
|
|
$opt = "<option value=\"0\" SELECTED></option>";
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows(); $i = 0;
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object( $i);
|
|
$opt .= "<option value=\"$objp->rowid\">[$objp->ref] $objp->label : $objp->price</option>\n";
|
|
$i++;
|
|
}
|
|
}
|
|
$db->free();
|
|
}
|
|
else
|
|
{
|
|
print $db->error();
|
|
}
|
|
|
|
print '<table class="noborder" cellspacing="0">';
|
|
print '<tr><td>Services/Produits prédéfinis</td><td>Quan.</td><td>Remise</td></tr>';
|
|
for ($i = 1 ; $i < 5 ; $i++)
|
|
{
|
|
print '<tr><td><select name="idprod'.$i.'">'.$opt.'</select></td>';
|
|
print '<td><input type="text" size="3" name="qty'.$i.'" value="1"></td>';
|
|
print '<td><input type="text" size="4" name="remise_percent'.$i.'" value="0"> %</td></tr>';
|
|
}
|
|
|
|
print '</table>';
|
|
print '</td></tr>';
|
|
}
|
|
/*
|
|
* Factures récurrentes
|
|
*
|
|
*/
|
|
if ($_GET["propalid"] == 0 && $_GET["commandeid"] == 0)
|
|
{
|
|
$sql = "SELECT r.rowid, r.titre, r.amount FROM ".MAIN_DB_PREFIX."facture_rec as r";
|
|
$sql .= " WHERE r.fk_soc = ".$soc->id;
|
|
if ( $db->query($sql) )
|
|
{
|
|
$num = $db->num_rows();
|
|
$i = 0;
|
|
|
|
if ($num > 0)
|
|
{
|
|
print '<tr><td colspan="3">Factures récurrentes : <select name="fac_rec">';
|
|
print '<option value="0" selected></option>';
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object( $i);
|
|
print "<option value=\"$objp->rowid\">$objp->titre : $objp->amount</option>\n";
|
|
$i++;
|
|
}
|
|
print '</select></td></tr>';
|
|
}
|
|
$db->free();
|
|
}
|
|
else
|
|
{
|
|
print "$sql";
|
|
}
|
|
}
|
|
/*
|
|
*
|
|
*/
|
|
print '<tr><td colspan="3" align="center"><input type="submit" value="Créer"></td></tr>';
|
|
print "</form>\n";
|
|
print "</table>\n";
|
|
|
|
if ($_GET["propalid"])
|
|
{
|
|
/*
|
|
* Produits
|
|
*/
|
|
print_titre("Produits");
|
|
|
|
print '<TABLE border="0" width="100%" cellspacing="0" cellpadding="3">';
|
|
print '<tr class="liste_titre"><td>Réf</td><td>Produit</td>';
|
|
print '<td align="right">Prix</td><td align="center">Remise</td><td align="center">Qté.</td></tr>';
|
|
|
|
$sql = "SELECT pt.rowid, p.label as product, p.ref, pt.price, pt.qty, p.rowid as prodid, pt.remise_percent";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."propaldet as pt, ".MAIN_DB_PREFIX."product as p WHERE pt.fk_product = p.rowid AND pt.fk_propal = $propalid";
|
|
$sql .= " ORDER BY pt.rowid ASC";
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows();
|
|
$i = 0;
|
|
$var=True;
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object($i);
|
|
$var=!$var;
|
|
print "<tr $bc[$var]><td>[$objp->ref]</td>\n";
|
|
print '<td>'.$objp->product.'</td>';
|
|
print "<td align=\"right\">".price($objp->price)."</TD>";
|
|
print '<td align="center">'.$objp->remise_percent.' %</td>';
|
|
print "<td align=\"center\">".$objp->qty."</td></tr>\n";
|
|
$i++;
|
|
}
|
|
}
|
|
$sql = "SELECT pt.rowid, pt.description as product, pt.price, pt.qty, pt.remise_percent";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."propaldet as pt WHERE pt.fk_propal = $propalid AND pt.fk_product = 0";
|
|
$sql .= " ORDER BY pt.rowid ASC";
|
|
if ($db->query($sql))
|
|
{
|
|
$num = $db->num_rows();
|
|
$i = 0;
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object($i);
|
|
$var=!$var;
|
|
print "<tr $bc[$var]><td> </td>\n";
|
|
print '<td>'.$objp->product.'</td>';
|
|
print '<td align="right">'.price($objp->price).'</td>';
|
|
print '<td align="center">'.$objp->remise_percent.' %</td>';
|
|
print "<td align=\"center\">".$objp->qty."</td></tr>\n";
|
|
$i++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $sql;
|
|
}
|
|
|
|
print '</table>';
|
|
}
|
|
/*
|
|
* Produits dans la commande
|
|
*
|
|
*/
|
|
|
|
if ($_GET["commandeid"])
|
|
{
|
|
print_titre("Produits");
|
|
|
|
print '<table border="0" width="100%" cellspacing="0" cellpadding="3">';
|
|
print '<tr class="liste_titre"><td>Réf</td><td>Produit</td>';
|
|
print '<td align="right">Prix</td><td align="center">Remise</td><td align="center">Qté.</td></tr>';
|
|
|
|
$sql = "SELECT pt.rowid, p.label as product, p.ref, pt.subprice, pt.qty, p.rowid as prodid, pt.remise_percent";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."commandedet as pt, ".MAIN_DB_PREFIX."product as p";
|
|
$sql .= " WHERE pt.fk_product = p.rowid AND pt.fk_commande = ".$commande->id;
|
|
$sql .= " ORDER BY pt.rowid ASC";
|
|
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows();
|
|
$i = 0;
|
|
$var=True;
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object($i);
|
|
$var=!$var;
|
|
print "<tr $bc[$var]><td>[$objp->ref]</td>\n";
|
|
print '<td>'.$objp->product.'</td>';
|
|
print '<td align="right">'.price($objp->subprice).'</td>';
|
|
print '<td align="center">'.$objp->remise_percent.' %</td>';
|
|
print '<td align="center">'.$objp->qty.'</td></tr>';
|
|
$i++;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $sql;
|
|
}
|
|
|
|
print '</table>';
|
|
}
|
|
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $db->error();
|
|
}
|
|
}
|
|
else
|
|
/* *************************************************************************** */
|
|
/* */
|
|
/* Mode fiche */
|
|
/* */
|
|
/* *************************************************************************** */
|
|
{
|
|
if ($_GET["facid"] > 0)
|
|
{
|
|
$fac = New Facture($db);
|
|
if ( $fac->fetch($_GET["facid"], $user->societe_id) > 0)
|
|
{
|
|
$soc = new Societe($db, $fac->socidp);
|
|
$soc->fetch($fac->socidp);
|
|
$author = new User($db);
|
|
$author->id = $fac->user_author;
|
|
$author->fetch();
|
|
|
|
print_titre("Facture : ".$fac->ref);
|
|
|
|
/*
|
|
* Confirmation de la suppression de la facture
|
|
*
|
|
*/
|
|
if ($_GET["action"] == 'delete')
|
|
{
|
|
$html->form_confirm("$PHP_SELF?facid=$fac->id","Supprimer la facture","Etes-vous sûr de vouloir supprimer cette facture ?","confirm_delete");
|
|
}
|
|
|
|
/*
|
|
* Confirmation de la validation
|
|
*
|
|
*/
|
|
if ($action == 'valid')
|
|
{
|
|
$numfa = facture_get_num($soc);
|
|
$html->form_confirm("$PHP_SELF?facid=$fac->id","Valider la facture","Etes-vous sûr de vouloir valider cette facture avec le numéro $numfa ?","confirm_valid");
|
|
}
|
|
|
|
/*
|
|
* Facture
|
|
*/
|
|
print '<table class="border" cellspacing="0" cellpadding="2" width="100%">';
|
|
print "<tr><td>Client</td>";
|
|
print "<td colspan=\"3\">";
|
|
print '<b><a href="fiche.php?socid='.$soc->id.'">'.$soc->nom.'</a></b></td>';
|
|
|
|
print "<td>Conditions de réglement : " . $fac->cond_reglement ."</td></tr>";
|
|
|
|
print "<tr><td>Date</td>";
|
|
print "<td colspan=\"3\">".strftime("%A %d %B %Y",$fac->date)."</td>\n";
|
|
print "<td>Date limite de réglement : " . strftime("%d %B %Y",$fac->date_lim_reglement) ."</td></tr>";
|
|
|
|
print '<tr><td>Projet</td><td colspan="3">';
|
|
if ($fac->projetid > 0)
|
|
{
|
|
$projet = New Project($db);
|
|
$projet->fetch($fac->projetid);
|
|
print '<a href="'.DOL_URL_ROOT.'/projet/fiche.php?id='.$fac->projetid.'">'.$projet->title.'</a>';
|
|
}
|
|
else
|
|
{
|
|
print '<a href="facture.php?facid='.$fac->id.'&action=classer">Classer la facture</a>';
|
|
}
|
|
print " </td><td>Paiements</td></tr>";
|
|
|
|
print "<tr><td>Auteur</td><td colspan=\"3\">$author->fullname</td>";
|
|
|
|
if ($fac->remise_percent > 0)
|
|
{
|
|
print '<td rowspan="5" valign="top">';
|
|
}
|
|
else
|
|
{
|
|
print '<td rowspan="4" valign="top">';
|
|
}
|
|
|
|
/*
|
|
* Paiements
|
|
*/
|
|
$sql = "SELECT ".$db->pdate("datep")." as dp, pf.amount,";
|
|
$sql .= "c.libelle as paiement_type, p.num_paiement, p.rowid";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."paiement as p, ".MAIN_DB_PREFIX."c_paiement as c, ".MAIN_DB_PREFIX."paiement_facture as pf";
|
|
$sql .= " WHERE pf.fk_facture = ".$fac->id." AND p.fk_paiement = c.id AND pf.fk_paiement = p.rowid";
|
|
$sql .= " ORDER BY dp DESC";
|
|
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows();
|
|
$i = 0; $total = 0;
|
|
echo '<table class="noborder" width="100%" cellspacing="0" cellpadding="3">';
|
|
print '<tr class="liste_titre"><td>Date</td><td>Type</td>';
|
|
print "<td align=\"right\">Montant</TD><td> </td></tr>";
|
|
|
|
$var=True;
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object( $i);
|
|
$var=!$var;
|
|
print "<TR $bc[$var]><td>";
|
|
print '<a href="'.DOL_URL_ROOT.'/compta/paiement/fiche.php?id='.$objp->rowid.'">'.img_file().'</a>';
|
|
print " ".strftime("%d %B %Y",$objp->dp)."</TD>\n";
|
|
print "<TD>$objp->paiement_type $objp->num_paiement</TD>\n";
|
|
print '<td align="right">'.price($objp->amount)."</TD><td>$_MONNAIE</td>\n";
|
|
print "</tr>";
|
|
$total = $total + $objp->amount;
|
|
$i++;
|
|
}
|
|
|
|
if ($fac->paye == 0)
|
|
{
|
|
print "<tr><td colspan=\"2\" align=\"right\">Total :</td><td align=\"right\"><b>".price($total)."</b></td><td>$_MONNAIE</td></tr>\n";
|
|
print "<tr><td colspan=\"2\" align=\"right\">Facturé :</td><td align=\"right\" bgcolor=\"#d0d0d0\">".price($fac->total_ttc)."</td><td bgcolor=\"#d0d0d0\">$_MONNAIE</td></tr>\n";
|
|
|
|
$resteapayer = $fac->total_ttc - $total;
|
|
|
|
print "<tr><td colspan=\"2\" align=\"right\">Reste à payer :</td>";
|
|
print "<td align=\"right\" bgcolor=\"#f0f0f0\"><b>".price($resteapayer)."</b></td><td bgcolor=\"#f0f0f0\">$_MONNAIE</td></tr>\n";
|
|
}
|
|
print "</table>";
|
|
$db->free();
|
|
} else {
|
|
print $db->error();
|
|
}
|
|
|
|
print "</td></tr>";
|
|
|
|
print '<tr><td>Montant</td>';
|
|
print '<td align="right" colspan="2"><b>'.price($fac->total_ht).'</b></td>';
|
|
print '<td>'.MAIN_MONNAIE.' HT</td></tr>';
|
|
|
|
if ($fac->remise_percent > 0)
|
|
{
|
|
print '<tr><td>Remise</td>';
|
|
print '<td align="right" colspan="2">'.$fac->remise_percent.'</td>';
|
|
print '<td>%</td></tr>';
|
|
}
|
|
|
|
print '<tr><td>TVA</td><td align="right" colspan="2">'.price($fac->total_tva).'</td>';
|
|
print '<td>'.MAIN_MONNAIE.'</td></tr>';
|
|
print '<tr><td>Total</td><td align="right" colspan="2">'.price($fac->total_ttc).'</td>';
|
|
print '<td>'.MAIN_MONNAIE.' TTC</td></tr>';
|
|
if ($fac->note)
|
|
{
|
|
print '<tr><td colspan="5">Note : '.nl2br($fac->note)."</td></tr>";
|
|
}
|
|
|
|
print "</table><br>";
|
|
|
|
if ($fac->brouillon == 1 && $user->rights->facture->creer)
|
|
{
|
|
print '<form action="facture.php?facid='.$fac->id.'" method="post">';
|
|
print '<input type="hidden" name="action" value="setremise">';
|
|
print '<table cellpadding="3" cellspacing="0" border="1"><tr><td>Remise</td><td align="right">';
|
|
print '<input type="text" name="remise" size="3" value="'.$fac->remise_percent.'">%';
|
|
print '<input type="submit" value="Appliquer">';
|
|
print '</td></tr></table></form>';
|
|
}
|
|
|
|
/*
|
|
* Lignes de factures
|
|
*
|
|
*/
|
|
|
|
$sql = "SELECT l.fk_product, l.description, l.price, l.qty, l.rowid, l.tva_taux, l.remise_percent, l.subprice";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."facturedet as l WHERE l.fk_facture = $fac->id ORDER BY l.rowid";
|
|
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num_lignes = $db->num_rows();
|
|
$i = 0; $total = 0;
|
|
|
|
echo '<TABLE border="0" width="100%" cellspacing="0" cellpadding="3">';
|
|
if ($num_lignes)
|
|
{
|
|
print "<tr class=\"liste_titre\">";
|
|
print '<td width="54%">Description</td>';
|
|
print '<td width="8%" align="right">Tva</td>';
|
|
print '<td width="12%" align="right">P.U. HT</td>';
|
|
print '<td width="8%" align="right">Quantité</td>';
|
|
print '<td width="8%" align="right">Remise</td>';
|
|
print '<td width="10%" align="right">Montant HT</td>';
|
|
print '<td> </td><td> </td>';
|
|
print "</tr>\n";
|
|
}
|
|
$var=True;
|
|
while ($i < $num_lignes)
|
|
{
|
|
$objp = $db->fetch_object( $i);
|
|
$var=!$var;
|
|
print "<TR $bc[$var]>";
|
|
if ($objp->fk_product > 0)
|
|
{
|
|
print '<td><a href="'.DOL_URL_ROOT.'/product/fiche.php?id='.$objp->fk_product.'">'.stripslashes(nl2br($objp->description)).'</a></td>';
|
|
}
|
|
else
|
|
{
|
|
print "<td>".stripslashes(nl2br($objp->description))."</TD>\n";
|
|
}
|
|
|
|
print '<TD align="right">'.$objp->tva_taux.' %</TD>';
|
|
print '<TD align="right">'.price($objp->subprice)."</td>\n";
|
|
print '<TD align="right">'.$objp->qty.'</TD>';
|
|
if ($objp->remise_percent > 0)
|
|
{
|
|
print '<td align="right">'.$objp->remise_percent." %</td>\n";
|
|
}
|
|
else
|
|
{
|
|
print '<td> </td>';
|
|
}
|
|
print '<TD align="right">'.price($objp->subprice*$objp->qty*(100-$objp->remise_percent)/100)."</td>\n";
|
|
|
|
// Icone d'edition et suppression
|
|
if ($fac->statut == 0 && $user->rights->facture->creer)
|
|
{
|
|
print '<td align="right"><a href="'.$PHPSELF.'?facid='.$fac->id.'&action=editline&rowid='.$objp->rowid.'">';
|
|
print img_edit();
|
|
print '</a></td>';
|
|
print '<td align="right"><a href="'.$PHPSELF.'?facid='.$fac->id.'&action=deleteline&rowid='.$objp->rowid.'">';
|
|
print img_delete();
|
|
print '</a></td>';
|
|
}
|
|
else
|
|
{
|
|
print '<td> </td><td> </td>';
|
|
}
|
|
print "</tr>";
|
|
|
|
if ($action == 'editline' && $rowid == $objp->rowid)
|
|
{
|
|
print "<form action=\"$PHP_SELF?facid=$fac->id\" method=\"post\">";
|
|
print '<input type="hidden" name="action" value="updateligne">';
|
|
print '<input type="hidden" name="rowid" value="'.$rowid.'">';
|
|
print "<tr $bc[$var]>";
|
|
print '<td><textarea name="desc" cols="60" rows="2">'.stripslashes($objp->description).'</textarea></td>';
|
|
print '<td> </td>';
|
|
print '<td align="right"><input size="8" type="text" name="price" value="'.price($objp->subprice).'"></td>';
|
|
print '<td align="right"><input size="4" type="text" name="qty" value="'.$objp->qty.'"></TD>';
|
|
print '<td align="right"><input size="3" type="text" name="remise_percent" value="'.$objp->remise_percent.'"> %</td>';
|
|
print '<td align="center" colspan="3"><input type="submit" value="Enregistrer"></td>';
|
|
print '</tr>' . "\n";
|
|
print "</form>\n";
|
|
}
|
|
|
|
$total = $total + ($objp->qty * $objp->price);
|
|
$i++;
|
|
}
|
|
|
|
$db->free();
|
|
// print "</table>";
|
|
}
|
|
else
|
|
{
|
|
print $db->error();
|
|
}
|
|
|
|
/*
|
|
* Ajouter une ligne
|
|
*
|
|
*/
|
|
if ($fac->statut == 0 && $user->rights->facture->creer)
|
|
{
|
|
|
|
print "<form action=\"$PHP_SELF?facid=$fac->id\" method=\"post\">";
|
|
// echo '<TABLE border="1" width="100%" cellspacing="0" cellpadding="1">';
|
|
print "<tr class=\"liste_titre\">";
|
|
print '<td width="54%">Description</td>';
|
|
print '<td width="8%" align="right">Tva</td>';
|
|
print '<td width="12%" align="right">P.U. HT</TD>';
|
|
print '<td width="8%" align="right">Quantité</td>';
|
|
print '<td width="8%" align="right">Remise</td>';
|
|
print '<td> </td>';
|
|
print '<td> </td>';
|
|
print '<td> </td>';
|
|
print "</tr>\n";
|
|
print '<input type="hidden" name="action" value="addligne">';
|
|
print '<tr><td><textarea name="desc" cols="60" rows="2"></textarea></td>';
|
|
print '<td align="right">';
|
|
print $html->select_tva("tva_tx",$conf->defaulttx);
|
|
print '</td>';
|
|
print '<td align="right"><input type="text" name="pu" size="8"></td>';
|
|
print '<td align="right"><input type="text" name="qty" value="1" size="2"></td>';
|
|
print '<td align="right"><input type="text" name="remise_percent" size="4" value="0"> %</td>';
|
|
print '<td align="center" colspan="3"><input type="submit" value="Ajouter"></td></tr>';
|
|
|
|
print "</form>";
|
|
}
|
|
print "</table>";
|
|
/*
|
|
* Fin Ajout ligne
|
|
*
|
|
*/
|
|
|
|
if ($user->societe_id == 0 && $_GET["action"] <> 'valid')
|
|
{
|
|
print "<br><div class=\"tabsAction\">\n";
|
|
|
|
// Valider
|
|
if ($fac->statut == 0 && $num_lignes > 0)
|
|
{
|
|
if ($user->rights->facture->valider)
|
|
{
|
|
print "<a class=\"tabAction\" href=\"$PHP_SELF?facid=$fac->id&action=valid\">Valider</a>";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Générer
|
|
if ($fac->statut == 1 && ($fac->paye == 0 || $user->admin) && $user->rights->facture->creer)
|
|
{
|
|
if ($fac->paye == 0)
|
|
{
|
|
print "<a class=\"tabAction\" href=\"facture.php?facid=$fac->id&action=pdf\">Générer la facture</a>";
|
|
}
|
|
else
|
|
{
|
|
print "<a class=\"tabAction\" href=\"facture.php?facid=$fac->id&action=pdf\">Regénérer la facture</a>";
|
|
}
|
|
}
|
|
}
|
|
|
|
// Supprimer
|
|
if ($fac->statut == 0 && $user->rights->facture->supprimer)
|
|
{
|
|
print "<a class=\"tabAction\" href=\"facture.php?facid=$fac->id&action=delete\">Supprimer</a>";
|
|
}
|
|
|
|
// Envoyer
|
|
if ($fac->statut == 1 && price($resteapayer) > 0 && $user->rights->facture->envoyer)
|
|
{
|
|
print "<a class=\"tabAction\" href=\"$PHP_SELF?facid=$fac->id&action=presend\">Envoyer</a>";
|
|
}
|
|
|
|
// Envoyer une relance
|
|
if ($fac->statut == 1 && price($resteapayer) > 0 && $user->rights->facture->envoyer)
|
|
{
|
|
print "<a class=\"tabAction\" href=\"$PHP_SELF?facid=$fac->id&action=prerelance\">Envoyer une relance</a>";
|
|
}
|
|
|
|
// Emettre paiement
|
|
if ($fac->statut == 1 && price($resteapayer) > 0 && $user->rights->facture->paiement)
|
|
{
|
|
print "<a class=\"tabAction\" href=\"paiement.php?facid=".$fac->id."&action=create\">Emettre un paiement</a>";
|
|
}
|
|
|
|
// Classer 'payé'
|
|
if ($fac->statut == 1 && price($resteapayer) <= 0
|
|
&& $fac->paye == 0 && $user->rights->facture->paiement)
|
|
{
|
|
print "<a class=\"tabAction\" href=\"$PHP_SELF?facid=$fac->id&action=payed\">Classer 'Payée'</a>";
|
|
}
|
|
|
|
|
|
// Récurrente
|
|
if (! defined("FACTURE_DISABLE_RECUR")) // Possibilité de désactiver les factures récurrentes
|
|
{
|
|
if ($fac->statut > 0)
|
|
{
|
|
print '<a class="tabAction" href="facture/fiche-rec.php?facid='.$fac->id.'&action=create">Récurrente</a>';
|
|
}
|
|
}
|
|
|
|
print "</div>";
|
|
|
|
}
|
|
print "<p>\n";
|
|
|
|
/*
|
|
* Documents générés
|
|
*
|
|
*/
|
|
$file = FAC_OUTPUTDIR . "/" . $fac->ref . "/" . $fac->ref . ".pdf";
|
|
|
|
if (file_exists($file))
|
|
{
|
|
print "<table width=\"100%\" cellspacing=2><tr><td width=\"50%\" valign=\"top\">";
|
|
print_titre("Documents");
|
|
print '<table width="100%" cellspacing="0" class="border" cellpadding="3">';
|
|
|
|
print "<tr $bc[0]><td>Facture PDF</td>";
|
|
print '<td><a href="'.FAC_OUTPUT_URL."/".$fac->ref."/".$fac->ref.'.pdf">'.$fac->ref.'.pdf</a></td>';
|
|
print '<td align="right">'.filesize($file). ' bytes</td>';
|
|
print '<td align="right">'.strftime("%d %b %Y %H:%M:%S",filemtime($file)).'</td>';
|
|
print '</tr>';
|
|
|
|
print "</table>\n";
|
|
print '</td><td valign="top" width="50%">';
|
|
/*
|
|
* Liste des actions
|
|
*
|
|
*/
|
|
$sql = "SELECT ".$db->pdate("a.datea")." as da, a.note";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."actioncomm as a WHERE a.fk_soc = $fac->socidp AND a.fk_action in (9,10) AND a.fk_facture = $fac->id";
|
|
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows();
|
|
if ($num)
|
|
{
|
|
print_titre("Actions");
|
|
|
|
$i = 0; $total = 0;
|
|
print '<table border="1" cellspacing="0" cellpadding="4" width="100%">';
|
|
print "<tr $bc[$var]><td>Date</td><td>Action</td></tr>\n";
|
|
|
|
$var=True;
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object( $i);
|
|
$var=!$var;
|
|
print "<tr $bc[$var]>";
|
|
print "<td>".strftime("%d %B %Y",$objp->da)."</TD>\n";
|
|
print '<td>'.stripslashes($objp->note).'</TD>';
|
|
print "</tr>";
|
|
$i++;
|
|
}
|
|
print "</table>";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print $db->error();
|
|
}
|
|
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
print "</td></tr></table>";
|
|
}
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
if ($action == 'classer')
|
|
{
|
|
print "<p><form method=\"post\" action=\"$PHP_SELF?facid=$fac->id\">\n";
|
|
print '<input type="hidden" name="action" value="classin">';
|
|
print '<table cellspacing="0" class="border" cellpadding="3">';
|
|
print '<tr><td>Projet</td><td>';
|
|
|
|
$proj = new Project($db);
|
|
$html->select_array("projetid",$proj->liste_array($socidp));
|
|
|
|
print "</td></tr>";
|
|
print '<tr><td colspan="2" align="center"><input type="submit" value="Envoyer"></td></tr></table></form></p>';
|
|
}
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
if ($action == 'presend')
|
|
{
|
|
$replytoname = $user->fullname;
|
|
$from_name = $replytoname;
|
|
|
|
$replytomail = $user->email;
|
|
$from_mail = $replytomail;
|
|
|
|
print "<form method=\"post\" action=\"$PHP_SELF?facid=$fac->id&action=send\">\n";
|
|
print '<input type="hidden" name="facid" value="'.$fac->id.'">';
|
|
print '<input type="hidden" name="action" value="send">';
|
|
print '<input type="hidden" name="replytoname" value="'.$replytoname.'">';
|
|
print '<input type="hidden" name="replytomail" value="'.$replytomail.'">';
|
|
print '<br>';
|
|
|
|
print_titre("Envoyer la facture par mail");
|
|
print "<table cellspacing=\"0\" border=\"1\" cellpadding=\"3\" width=\"100%\">";
|
|
print "<tr><td>Expéditeur</td><td>$from_name</td><td>$from_mail </td></tr>";
|
|
print "<tr><td>Répondre à </td><td>$replytoname</td><td>$replytomail </td></tr>";
|
|
print '<tr><td>Destinataire</td><td colspan=\"2\">';
|
|
|
|
$form = new Form($db);
|
|
$form->select_array("destinataire",$soc->contact_email_array());
|
|
print " ou <input size=\"30\" name=\"sendto\" value=\"$fac->email\"></td></tr>";
|
|
|
|
print '<tr><td>Message</td><td colspan=\"2\">';
|
|
print "<textarea rows=\"5\" cols=\"60\" name=\"message\">";
|
|
print "Veuillez trouver ci-joint la facture $fac->ref\n\nCordialement\n\n";
|
|
print "</textarea></td></tr>";
|
|
|
|
print "</table><br>\n";
|
|
|
|
print "<center><input class=\"flat\" type=\"submit\" value=\"Envoyer\"></center></form>\n";
|
|
}
|
|
|
|
if ($action == 'prerelance')
|
|
{
|
|
$replytoname = $user->fullname;
|
|
$from_name = $replytoname;
|
|
|
|
$replytomail = $user->email;
|
|
$from_mail = $replytomail;
|
|
|
|
print "<form method=\"post\" action=\"$PHP_SELF?facid=$fac->id&action=send\">\n";
|
|
print '<input type="hidden" name="facid" value="'.$fac->id.'">';
|
|
print '<input type="hidden" name="action" value="relance">';
|
|
print '<input type="hidden" name="replytoname" value="'.$replytoname.'">';
|
|
print '<input type="hidden" name="replytomail" value="'.$replytomail.'">';
|
|
print '<br>';
|
|
|
|
print_titre("Envoyer une relance par mail");
|
|
print "<table cellspacing=\"0\" border=\"1\" cellpadding=\"3\" width=\"100%\">";
|
|
print "<tr><td>Expéditeur</td><td>$from_name</td><td>$from_mail </td></tr>";
|
|
print "<tr><td>Répondre à </td><td>$replytoname</td><td>$replytomail </td></tr>";
|
|
print '<tr><td>Destinataire</td><td colspan=\"2\">';
|
|
|
|
$form = new Form($db);
|
|
$form->select_array("destinataire",$soc->contact_email_array());
|
|
print " ou <input size=\"30\" name=\"sendto\" value=\"$fac->email\"></td></tr>";
|
|
|
|
print '<tr><td>Message</td><td colspan=\"2\">';
|
|
print "<textarea rows=\"5\" cols=\"60\" name=\"message\">";
|
|
print "Nous apportons à votre connaissance que la facture ".$fac->ref." ne semble toujours pas avoir été réglée. La voici donc, pour rappel, en pièce jointe.\n\nCordialement\n\n";
|
|
print "</textarea></td></tr>";
|
|
|
|
print "</table><br>\n";
|
|
|
|
print "<center><input class=\"flat\" type=\"submit\" value=\"Envoyer\"></center></form>\n";
|
|
}
|
|
|
|
/*
|
|
* Propales
|
|
*/
|
|
|
|
$sql = "SELECT ".$db->pdate("p.datep")." as dp, p.price, p.ref, p.rowid as propalid";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."propal as p, ".MAIN_DB_PREFIX."fa_pr as fp WHERE fp.fk_propal = p.rowid AND fp.fk_facture = $fac->id";
|
|
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows();
|
|
if ($num)
|
|
{
|
|
$i = 0; $total = 0;
|
|
print "<p>";
|
|
if ($num >1)
|
|
{
|
|
print_titre("Propositions commerciales associées");
|
|
}
|
|
else
|
|
{
|
|
print_titre("Proposition commerciale associée");
|
|
}
|
|
|
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
|
print '<tr class="liste_titre">';
|
|
print "<td>Numéro</td>";
|
|
print "<td>Date</td>";
|
|
print '<td align="right">Prix</td>';
|
|
print "</TR>\n";
|
|
|
|
$var=True;
|
|
while ($i < $num)
|
|
{
|
|
$objp = $db->fetch_object( $i);
|
|
$var=!$var;
|
|
print "<TR $bc[$var]>";
|
|
print "<TD><a href=\"propal.php?propalid=$objp->propalid\">$objp->ref</a></TD>\n";
|
|
print "<TD>".strftime("%d %B %Y",$objp->dp)."</TD>\n";
|
|
print '<TD align="right">'.price($objp->price).'</TD>';
|
|
print "</tr>";
|
|
$total = $total + $objp->price;
|
|
$i++;
|
|
}
|
|
print "<tr><td align=\"right\" colspan=\"3\">Total : <b>".price($total)."</b> $_MONNAIE HT</td></tr>\n";
|
|
print "</table>";
|
|
}
|
|
} else {
|
|
print $db->error();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* Facture non trouvée */
|
|
print "Facture inexistante ou accés refusé";
|
|
}
|
|
} else {
|
|
/***************************************************************************
|
|
* *
|
|
* Mode Liste *
|
|
* *
|
|
* *
|
|
***************************************************************************/
|
|
if ($page == -1)
|
|
{
|
|
$page = 0 ;
|
|
}
|
|
|
|
if ($user->rights->facture->lire)
|
|
{
|
|
$limit = $conf->liste_limit;
|
|
$offset = $limit * $page ;
|
|
|
|
if ($sortorder == "")
|
|
$sortorder="DESC";
|
|
|
|
if ($sortfield == "")
|
|
$sortfield="f.datef";
|
|
|
|
$sql = "SELECT s.nom,s.idp,f.facnumber,f.total,f.total_ttc,".$db->pdate("f.datef")." as df,f.paye,f.rowid as facid, f.fk_statut, sum(pf.amount) as am";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."societe as s,".MAIN_DB_PREFIX."facture as f left join ".MAIN_DB_PREFIX."paiement_facture as pf on f.rowid=pf.fk_facture WHERE f.fk_soc = s.idp";
|
|
|
|
if ($socidp)
|
|
$sql .= " AND s.idp = $socidp";
|
|
|
|
if ($month > 0)
|
|
$sql .= " AND date_format(f.datef, '%m') = $month";
|
|
|
|
if ($filtre)
|
|
{
|
|
$filtrearr = split(",", $filtre);
|
|
foreach ($filtrearr as $fil)
|
|
{
|
|
$filt = split(":", $fil);
|
|
$sql .= " AND " . $filt[0] . " = " . $filt[1];
|
|
}
|
|
}
|
|
|
|
if ($year > 0)
|
|
$sql .= " AND date_format(f.datef, '%Y') = $year";
|
|
|
|
if (strlen($HTTP_POST_VARS["sf_ref"]) > 0)
|
|
{
|
|
$sql .= " AND f.facnumber like '%".$HTTP_POST_VARS["sf_ref"] . "%'";
|
|
}
|
|
|
|
$sql .= " GROUP BY f.facnumber";
|
|
|
|
$sql .= " ORDER BY $sortfield $sortorder, f.rowid DESC ";
|
|
|
|
$sql .= $db->plimit($limit + 1,$offset);
|
|
|
|
$result = $db->query($sql);
|
|
}
|
|
if ($result)
|
|
{
|
|
$num = $db->num_rows();
|
|
print_barre_liste("Factures clients",$page,$PHP_SELF,"&socidp=$socidp",$sortfield,$sortorder,'',$num);
|
|
|
|
$i = 0;
|
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
|
print '<tr class="liste_titre">';
|
|
print '<td>';
|
|
print_liste_field_titre("Numéro",$PHP_SELF,"f.facnumber","","&socidp=$socidp");
|
|
print '</td><td align="center">';
|
|
print_liste_field_titre("Date",$PHP_SELF,"f.datef","","&socidp=$socidp");
|
|
print '</td><td>';
|
|
print_liste_field_titre("Société",$PHP_SELF,"s.nom","","&socidp=$socidp");
|
|
print '</td><td align="right">';
|
|
print_liste_field_titre("Montant HT",$PHP_SELF,"f.total","","&socidp=$socidp");
|
|
print '</td><td align="right">';
|
|
print_liste_field_titre("Montant TTC",$PHP_SELF,"f.totalttc","","&socidp=$socidp");
|
|
print '</td><td align="right">Reçu</td>';
|
|
print '<td align="center">Status</td>';
|
|
print "</tr>\n";
|
|
|
|
if ($num > 0)
|
|
{
|
|
$var=True;
|
|
$total=0;
|
|
$totalrecu=0;
|
|
|
|
while ($i < min($num,$limit))
|
|
{
|
|
$objp = $db->fetch_object($i);
|
|
$var=!$var;
|
|
|
|
print "<tr $bc[$var]>";
|
|
if ($objp->paye)
|
|
{
|
|
$class = "normal";
|
|
}
|
|
else
|
|
{
|
|
if ($objp->fk_statut == 0)
|
|
{
|
|
$class = "normal";
|
|
}
|
|
else
|
|
{
|
|
$class = "impayee";
|
|
}
|
|
}
|
|
|
|
print '<td><a href="facture.php?facid='.$objp->facid.'">'.img_file()."</a> \n";
|
|
print '<a href="facture.php?facid='.$objp->facid.'">'.$objp->facnumber."</a></td>\n";
|
|
|
|
if ($objp->df > 0 )
|
|
{
|
|
print "<TD align=\"center\">";
|
|
$y = strftime("%Y",$objp->df);
|
|
$m = strftime("%m",$objp->df);
|
|
|
|
print strftime("%d",$objp->df)."\n";
|
|
print ' <a href="facture.php?year='.$y.'&month='.$m.'">';
|
|
print substr(strftime("%B",$objp->df),0,3)."</a>\n";
|
|
print ' <a href="facture.php?year='.$y.'">';
|
|
print strftime("%Y",$objp->df)."</a></TD>\n";
|
|
}
|
|
else
|
|
{
|
|
print "<TD align=\"center\"><b>!!!</b></TD>\n";
|
|
}
|
|
print '<TD><a href="fiche.php?socid='.$objp->idp.'">'.$objp->nom.'</a></td>';
|
|
|
|
print "<TD align=\"right\">".price($objp->total)."</TD>";
|
|
print "<TD align=\"right\">".price($objp->total_ttc)."</TD>";
|
|
print "<TD align=\"right\">".price($objp->am)."</TD>";
|
|
|
|
if (! $objp->paye)
|
|
{
|
|
if ($objp->fk_statut == 0)
|
|
{
|
|
print '<td align="center">brouillon</td>';
|
|
}
|
|
else
|
|
{
|
|
print '<td align="center"><a class="'.$class.'" href="facture.php?filtre=paye:0,fk_statut:1">'.($objp->am?"commencé":"impayée").'</a></td>';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print '<td align="center">payée</td>';
|
|
}
|
|
|
|
print "</TR>\n";
|
|
$total+=$objp->total;
|
|
$total_ttc+=$objp->total_ttc;
|
|
$totalrecu+=$objp->am;
|
|
$i++;
|
|
}
|
|
|
|
if ($num <= $limit) {
|
|
// Print total
|
|
print "<tr ".$bc[!$var].">";
|
|
print "<TD colspan=3 align=\"left\">Total : </TD>";
|
|
print "<TD align=\"right\"><b>".price($total)."</b></TD>";
|
|
print "<TD align=\"right\"><b>".price($total_ttc)."</b></TD>";
|
|
print "<TD align=\"right\"><b>".price($totalrecu)."</b></TD>";
|
|
print '<td align="center"> </td>';
|
|
print "</tr>\n";
|
|
}
|
|
}
|
|
|
|
print "</table>";
|
|
$db->free();
|
|
}
|
|
else
|
|
{
|
|
print $db->error() . "<br>" . $sql;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
$db->close();
|
|
|
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
|
?>
|