* Copyright (C) 2004-2007 Laurent Destailleur * * 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$ */ /** \file htdocs/comm/remx.php \ingroup commercial, invoice \brief Onglet de définition des avoirs \version $Revision$ */ require_once("./pre.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/company.lib.php"); require_once(DOL_DOCUMENT_ROOT."/facture.class.php"); $user->getrights('propale'); $user->getrights('commande'); $user->getrights('projet'); $langs->load("orders"); $langs->load("bills"); $langs->load("companies"); // Sécurité si un client essaye d'accéder à une autre fiche que la sienne $_socid = $_GET["id"]; if ($user->societe_id > 0) { $_socid = $user->societe_id; } /* * Actions */ if ($_POST["action"] == 'setremise') { if (price2num($_POST["amount_ht"]) > 0) { if (! $_POST["desc"]) { $mesg='
'.$langs->trans("ErrorFieldRequired",$langs->trans("ReasonDiscount")).'
'; } $soc = New Societe($db); $soc->fetch($_GET["id"]); $soc->set_remise_except($_POST["amount_ht"],$user,$_POST["desc"],$_POST["tva_tx"]); if ($result > 0) { Header("Location: remx.php?id=".$_GET["id"]); exit; } else { $mesg='
'.$soc->error.'
'; } } else { $mesg='
'.$langs->trans("ErrorFieldFormat",$langs->trans("NewGlobalDiscount")).'
'; } } if ($_GET["action"] == 'remove') { $soc = New Societe($db); $soc->fetch($_GET["id"]); $result=$soc->del_remise_except($_GET["remid"]); if ($result > 0) { Header("Location: remx.php?id=".$_GET["id"]); exit; } else { $mesg='
'.$soc->error.'
'; } } /* * Affichage fiche des remises fixes */ $form=new Form($db); $facturestatic=new Facture($db); llxHeader(); if ($_socid > 0) { if ($mesg) print "$mesg
"; // On recupere les donnees societes par l'objet $objsoc = new Societe($db); $objsoc->id=$_socid; $objsoc->fetch($_socid,$to); $dac = strftime("%Y-%m-%d %H:%M", time()); /* * Affichage onglets */ $head = societe_prepare_head($objsoc); dolibarr_fiche_head($head, 'absolutediscount', $objsoc->nom); /* * * */ print '
'; print ''; print ''; // Calcul avoirs en cours $remise_all=$remise_user=0; $sql = "SELECT SUM(rc.amount_ht) as amount, rc.fk_user"; $sql.= " FROM ".MAIN_DB_PREFIX."societe_remise_except as rc"; $sql.= " WHERE rc.fk_soc =". $objsoc->id; $sql.= " AND fk_facture IS NULL"; $sql.= " GROUP BY rc.fk_user"; $resql=$db->query($sql); if ($resql) { $obj = $db->fetch_object($resql); $remise_all+=$obj->amount; if ($obj->fk_user == $user->id) $remise_user+=$obj->amount; } else { dolibarr_print_error($db); } print ''; print ''; print ''; print ''; print "
'.$langs->trans("CustomerAbsoluteDiscountAllUsers").''.$remise_all.' '.$langs->trans("Currency".$conf->monnaie).'
'.$langs->trans("CustomerAbsoluteDiscountMy").''.$remise_user.' '.$langs->trans("Currency".$conf->monnaie).'
"; print '
'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "
'.$langs->trans("NewGlobalDiscount").' '.$langs->trans("Currency".$conf->monnaie).'
'.$langs->trans("VAT").''; $form->select_tva('tva_tx','0','',$mysoc,''); print '
'.$langs->trans("NoteReason").'
"; print "\n"; print "\n"; print '
'; /* * Liste remises fixes restant en cours */ $sql = "SELECT rc.rowid, rc.amount_ht, rc.amount_tva, rc.amount_ttc, rc.tva_tx,"; $sql.= $db->pdate("rc.datec")." as dc, rc.description,"; $sql.= " rc.fk_facture_source,"; $sql.= " u.login, u.rowid as user_id,"; $sql.= " fa.facnumber as ref, fa.type as type"; $sql.= " FROM ".MAIN_DB_PREFIX."user as u, ".MAIN_DB_PREFIX."societe_remise_except as rc"; $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."facture as fa ON rc.fk_facture_source = fa.rowid"; $sql.= " WHERE rc.fk_soc =". $objsoc->id; $sql.= " AND u.rowid = rc.fk_user AND rc.fk_facture IS NULL"; $sql.= " ORDER BY rc.datec DESC"; $resql=$db->query($sql); if ($resql) { print_titre($langs->trans("DiscountStillRemaining")); print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; $var = true; $i = 0 ; $num = $db->num_rows($resql); while ($i < $num) { $obj = $db->fetch_object($resql); $var = !$var; print ""; print ''; print ''; print ''; print ''; print ''; print ''; if ($obj->user_id == $user->id) print ''; else print ''; print ''; $i++; } $db->free($resql); print "
'.$langs->trans("Date").''.$langs->trans("ReasonDiscount").''.$langs->trans("AmountHT").''.$langs->trans("VATRate").''.$langs->trans("AmountTTC").''.$langs->trans("DiscountOfferedBy").' 
'.dolibarr_print_date($obj->dc,'dayhour').''; if ($obj->description == '(CREDIT_NOTE)') { $facturestatic->id=$obj->fk_facture_source; $facturestatic->ref=$obj->ref; $facturestatic->type=$obj->type; print $langs->trans("CreditNote").' '.$facturestatic->getNomURl(1); } else { print $obj->description; } print ''.price($obj->amount_ht).''.price($obj->tva_tx).'%'.price($obj->amount_ttc).''; print ''.img_object($langs->trans("ShowUser"),'user').' '.$obj->login; print 'rowid.'">'.img_delete($langs->trans("RemoveDiscount")).' 
"; } else { dolibarr_print_error($db); } print '
'; /* * Liste ristournes appliquées */ $sql = "SELECT rc.rowid, rc.amount_ht, rc.amount_tva, rc.amount_ttc, rc.tva_tx,"; $sql.= $db->pdate("rc.datec")." as dc, rc.description, rc.fk_facture,"; $sql.= " rc.fk_facture_source,"; $sql.= " u.login, u.rowid as user_id,"; $sql.= " f.rowid, f.facnumber,"; $sql.= " fa.facnumber as ref, fa.type as type"; $sql.= " FROM ".MAIN_DB_PREFIX."facture as f"; $sql.= " , ".MAIN_DB_PREFIX."user as u"; $sql.= " , ".MAIN_DB_PREFIX."facturedet as fc"; $sql.= " , ".MAIN_DB_PREFIX."societe_remise_except as rc"; $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."facture as fa ON rc.fk_facture_source = fa.rowid"; $sql.= " WHERE rc.fk_soc =". $objsoc->id; $sql.= " AND rc.fk_facture = fc.rowid"; $sql.= " AND fc.fk_facture = f.rowid"; $sql.= " AND rc.fk_user = u.rowid"; $sql.= " ORDER BY rc.datec DESC"; $resql=$db->query($sql); if ($resql) { print_titre($langs->trans("DiscountAlreadyCounted")); print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; $var = true; $i = 0 ; $num = $db->num_rows($resql); while ($i < $num ) { $obj = $db->fetch_object($resql); $var = !$var; print ""; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; $i++; } $db->free($resql); print "
'.$langs->trans("Date").''.$langs->trans("ReasonDiscount").''.$langs->trans("Invoice").''.$langs->trans("AmountHT").''.$langs->trans("VATRate").''.$langs->trans("AmountTTC").''.$langs->trans("Author").' 
'.dolibarr_print_date($obj->dc,'dayhour').''; if ($obj->description == '(CREDIT_NOTE)') { $facturestatic->id=$obj->fk_facture_source; $facturestatic->ref=$obj->ref; $facturestatic->type=$obj->type; print $langs->trans("CreditNote").' '.$facturestatic->getNomURl(1); } else { print $obj->description; } print ''.img_object($langs->trans("ShowBill"),'bill').' '.$obj->facnumber.''.price($obj->amount_ht).''.price($obj->tva_tx).'%'.price($obj->amount_ttc).''; print ''.img_object($langs->trans("ShowUser"),'user').' '.$obj->login; print ' 
"; } else { print dolibarr_print_error($db); } } $db->close(); llxFooter('$Date$ - $Revision$'); ?>