dolibarr/htdocs/compta/dons/fiche.php

591 lines
19 KiB
PHP
Raw Normal View History

<?php
2012-07-11 10:14:56 +02:00
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2012 Regis Houssin <regis@dolibarr.fr>
2002-12-19 19:55:38 +01:00
*
* 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
2011-08-03 02:45:22 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2002-12-19 19:55:38 +01:00
*/
2005-08-11 22:28:11 +02:00
/**
2008-11-14 12:56:47 +01:00
* \file htdocs/compta/dons/fiche.php
* \ingroup don
2011-06-12 17:47:10 +02:00
* \brief Page of donation card
2008-11-14 12:56:47 +01:00
*/
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/modules/dons/modules_don.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
require_once DOL_DOCUMENT_ROOT.'/compta/dons/class/don.class.php';
require_once DOL_DOCUMENT_ROOT.'/compta/paiement/class/paiement.class.php';
if ($conf->projet->enabled) require_once DOL_DOCUMENT_ROOT.'/core/lib/project.lib.php';
2002-12-19 19:55:38 +01:00
$langs->load("companies");
$langs->load("donations");
$langs->load("bills");
2012-07-11 10:14:56 +02:00
$id=GETPOST('rowid')?GETPOST('rowid','int'):GETPOST('id','int');
$action=GETPOST('action','alpha');
$cancel=GETPOST('cancel');
$amount=GETPOST('amount');
2012-02-01 14:20:22 +01:00
$mesg="";
2011-06-12 17:47:10 +02:00
$mesgs=array();
2010-02-13 17:28:03 +01:00
$don = new Don($db);
2012-07-11 10:14:56 +02:00
$donation_date=dol_mktime(12, 0, 0, GETPOST('remonth'), GETPOST('reday'), GETPOST('reyear'));
2010-02-13 17:28:03 +01:00
2012-02-01 14:20:22 +01:00
// Security check
$result = restrictedArea($user, 'don', $id);
// Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
$hookmanager=new HookManager($db);
$hookmanager->initHooks(array('doncard'));
/*
* Actions
*/
2008-11-15 19:20:40 +01:00
2012-02-01 14:20:22 +01:00
if ($action == 'update')
2002-12-19 19:55:38 +01:00
{
2012-07-11 10:14:56 +02:00
if (! empty($cancel))
2010-04-05 03:25:44 +02:00
{
2012-07-11 10:14:56 +02:00
Header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
2010-04-05 03:25:44 +02:00
exit;
}
2010-02-13 17:28:03 +01:00
$error=0;
2011-06-12 17:47:10 +02:00
if (empty($donation_date))
{
$mesgs[]=$langs->trans("ErrorFieldRequired",$langs->trans("Date"));
2012-02-01 14:20:22 +01:00
$action = "create";
2011-06-12 17:47:10 +02:00
$error++;
}
2010-02-13 17:28:03 +01:00
2012-07-11 10:14:56 +02:00
if (empty($amount))
2008-11-15 19:20:40 +01:00
{
2011-06-12 17:47:10 +02:00
$mesgs[]=$langs->trans("ErrorFieldRequired",$langs->trans("Amount"));
2012-02-01 14:20:22 +01:00
$action = "create";
2011-06-12 17:47:10 +02:00
$error++;
2010-02-13 17:28:03 +01:00
}
2008-11-15 19:20:40 +01:00
2010-02-13 17:28:03 +01:00
if (! $error)
{
2012-07-11 10:14:56 +02:00
$don->fetch($id);
2008-11-15 19:20:40 +01:00
$don->prenom = $_POST["prenom"];
$don->nom = $_POST["nom"];
$don->societe = $_POST["societe"];
$don->adresse = $_POST["adresse"];
2011-01-04 01:09:09 +01:00
$don->amount = price2num($_POST["amount"]);
2011-06-12 17:47:10 +02:00
$don->cp = $_POST["zipcode"];
$don->ville = $_POST["town"];
$don->zip = $_POST["zipcode"];
$don->town = $_POST["town"];
2008-11-15 19:20:40 +01:00
$don->email = $_POST["email"];
2010-02-13 17:28:03 +01:00
$don->date = $donation_date;
2008-11-15 19:20:40 +01:00
$don->note = $_POST["note"];
$don->pays = $_POST["pays"];
$don->public = $_POST["public"];
2010-03-11 15:31:16 +01:00
$don->fk_project = $_POST["projectid"];
2008-11-15 19:20:40 +01:00
$don->note = $_POST["comment"];
$don->modepaiementid = $_POST["modepaiement"];
if ($don->update($user) > 0)
{
2012-07-11 10:14:56 +02:00
Header("Location: ".$_SERVER['PHP_SELF']."?id=".$don->id);
2008-11-15 19:20:40 +01:00
exit;
}
}
}
2012-02-01 14:20:22 +01:00
if ($action == 'add')
{
2012-07-11 10:14:56 +02:00
if (! empty($cancel))
2010-04-05 03:25:44 +02:00
{
Header("Location: index.php");
exit;
}
2010-02-13 17:28:03 +01:00
$error=0;
2011-06-12 17:47:10 +02:00
if (empty($donation_date))
{
$mesgs[]=$langs->trans("ErrorFieldRequired",$langs->trans("Date"));
2012-07-11 10:14:56 +02:00
$action = "create";
2011-06-12 17:47:10 +02:00
$error++;
}
2010-02-13 17:28:03 +01:00
2012-07-11 10:14:56 +02:00
if (empty($amount))
2010-02-13 17:28:03 +01:00
{
2011-06-12 17:47:10 +02:00
$mesgs[]=$langs->trans("ErrorFieldRequired",$langs->trans("Amount"));
2012-07-11 10:14:56 +02:00
$action = "create";
2011-06-12 17:47:10 +02:00
$error++;
2010-02-13 17:28:03 +01:00
}
2008-11-15 19:20:40 +01:00
2010-02-13 17:28:03 +01:00
if (! $error)
{
2008-11-15 19:20:40 +01:00
$don->prenom = $_POST["prenom"];
$don->nom = $_POST["nom"];
$don->societe = $_POST["societe"];
$don->adresse = $_POST["adresse"];
2011-01-04 01:09:09 +01:00
$don->amount = price2num($_POST["amount"]);
2011-06-12 17:47:10 +02:00
$don->cp = $_POST["zipcode"];
$don->ville = $_POST["town"];
$don->zip = $_POST["zipcode"];
$don->town = $_POST["town"];
2008-11-15 19:20:40 +01:00
$don->email = $_POST["email"];
2010-02-13 17:28:03 +01:00
$don->date = $donation_date;
2008-11-15 19:20:40 +01:00
$don->note = $_POST["note"];
$don->pays = $_POST["pays"];
$don->public = $_POST["public"];
2010-03-11 15:31:16 +01:00
$don->fk_project = $_POST["projectid"];
2008-11-15 19:20:40 +01:00
$don->note = $_POST["comment"];
$don->modepaiementid = $_POST["modepaiement"];
if ($don->create($user) > 0)
{
Header("Location: index.php");
exit;
}
}
2002-12-27 22:54:03 +01:00
}
2002-12-19 19:55:38 +01:00
2012-02-01 14:20:22 +01:00
if ($action == 'delete')
2002-12-19 19:55:38 +01:00
{
2012-07-11 10:14:56 +02:00
$don->delete($id);
2008-11-15 19:20:40 +01:00
Header("Location: liste.php");
exit;
2002-12-19 19:55:38 +01:00
}
2012-02-01 14:20:22 +01:00
if ($action == 'commentaire')
2002-12-26 11:22:14 +01:00
{
2012-07-11 10:14:56 +02:00
$don->fetch($id);
2008-11-15 19:20:40 +01:00
$don->update_note($_POST["commentaire"]);
2002-12-26 11:22:14 +01:00
}
2012-02-01 14:20:22 +01:00
if ($action == 'valid_promesse')
2002-12-19 19:55:38 +01:00
{
2012-07-11 10:14:56 +02:00
if ($don->valid_promesse($id, $user->id) >= 0)
2008-11-15 19:20:40 +01:00
{
2012-07-11 10:14:56 +02:00
Header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
2008-11-15 19:20:40 +01:00
exit;
}
2011-06-12 17:47:10 +02:00
else $mesg=$don->error;
}
2012-02-01 14:20:22 +01:00
if ($action == 'set_cancel')
2011-06-12 17:47:10 +02:00
{
2012-07-11 10:14:56 +02:00
if ($don->set_cancel($id) >= 0)
2011-06-12 17:47:10 +02:00
{
2012-07-11 10:14:56 +02:00
Header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
2011-06-12 17:47:10 +02:00
exit;
}
else $mesg=$don->error;
2002-12-19 19:55:38 +01:00
}
2012-02-01 14:20:22 +01:00
if ($action == 'set_paid')
2002-12-19 19:55:38 +01:00
{
2012-07-11 10:14:56 +02:00
if ($don->set_paye($id, $modepaiement) >= 0)
2008-11-15 19:20:40 +01:00
{
2012-07-11 10:14:56 +02:00
Header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
2008-11-15 19:20:40 +01:00
exit;
}
2011-06-12 17:47:10 +02:00
else $mesg=$don->error;
2002-12-19 19:55:38 +01:00
}
2012-02-01 14:20:22 +01:00
if ($action == 'set_encaisse')
2002-12-19 19:55:38 +01:00
{
2012-07-11 10:14:56 +02:00
if ($don->set_encaisse($id) >= 0)
2008-11-15 19:20:40 +01:00
{
2012-07-11 10:14:56 +02:00
Header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
2008-11-15 19:20:40 +01:00
exit;
}
2011-06-12 17:47:10 +02:00
else $mesg=$don->error;
2002-12-19 19:55:38 +01:00
}
/*
* Build doc
*/
2012-02-01 14:20:22 +01:00
if ($action == 'builddoc')
{
2010-09-08 09:35:11 +02:00
$donation = new Don($db);
2012-07-11 10:14:56 +02:00
$donation->fetch($id);
2008-11-14 12:56:47 +01:00
if ($_REQUEST['model'])
{
$donation->setDocModel($user, $_REQUEST['model']);
}
// Define output language
2008-11-14 12:56:47 +01:00
$outputlangs = $langs;
$newlang='';
if ($conf->global->MAIN_MULTILANGS && empty($newlang) && ! empty($_REQUEST['lang_id'])) $newlang=$_REQUEST['lang_id'];
if ($conf->global->MAIN_MULTILANGS && empty($newlang)) $newlang=$donation->client->default_lang;
if (! empty($newlang))
2008-11-14 12:56:47 +01:00
{
$outputlangs = new Translate("",$conf);
$outputlangs->setDefaultLang($newlang);
2008-11-14 12:56:47 +01:00
}
$result=don_create($db, $donation->id, '', $donation->modelpdf, $outputlangs);
if ($result <= 0)
{
dol_print_error($db,$result);
2008-11-14 12:56:47 +01:00
exit;
}
else
{
2012-07-11 10:14:56 +02:00
Header('Location: '.$_SERVER["PHP_SELF"].'?id='.$donation->id.(empty($conf->global->MAIN_JUMP_TAG)?'':'#builddoc'));
2008-11-14 12:56:47 +01:00
exit;
}
}
2002-12-19 19:55:38 +01:00
2008-11-14 12:56:47 +01:00
/*
* View
*/
2002-12-19 19:55:38 +01:00
llxHeader('',$langs->trans("Donations"),'EN:Module_Donations|FR:Module_Dons|ES:M&oacute;dulo_Donaciones');
2002-12-19 19:55:38 +01:00
$form=new Form($db);
$formfile = new FormFile($db);
$formcompany = new FormCompany($db);
2002-12-26 11:22:14 +01:00
/* ************************************************************************** */
/* */
/* Creation */
2002-12-26 11:22:14 +01:00
/* */
/* ************************************************************************** */
2012-02-01 14:20:22 +01:00
if ($action == 'create')
{
2009-01-15 02:14:03 +01:00
print_fiche_titre($langs->trans("AddDonation"));
2008-11-15 19:20:40 +01:00
2011-06-12 17:47:10 +02:00
dol_htmloutput_errors($mesg,$mesgs);
2009-03-09 22:59:29 +01:00
2008-11-15 19:20:40 +01:00
print '<form name="add" action="fiche.php" method="post">';
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
2008-11-15 19:20:40 +01:00
print '<table class="border" width="100%">';
print '<input type="hidden" name="action" value="add">';
2011-06-12 17:47:10 +02:00
$nbrows=11;
if ($conf->projet->enabled) $nbrows++;
// Date
2010-08-22 15:42:48 +02:00
print '<tr><td class="fieldrequired">'.$langs->trans("Date").'</td><td>';
$form->select_date($donation_date?$donation_date:-1,'','','','',"add",1,1);
2008-11-15 19:20:40 +01:00
print '</td>';
2011-06-12 17:47:10 +02:00
print '<td rowspan="'.$nbrows.'" valign="top">'.$langs->trans("Comments").' :<br>';
print "<textarea name=\"comment\" wrap=\"soft\" cols=\"40\" rows=\"15\">".$_POST["comment"]."</textarea></td>";
print "</tr>";
2008-11-15 19:20:40 +01:00
2011-06-12 17:47:10 +02:00
// Amount
print "<tr>".'<td class="fieldrequired">'.$langs->trans("Amount").'</td><td><input type="text" name="amount" value="'.$_POST["amount"].'" size="10"> '.$langs->trans("Currency".$conf->currency).'</td></tr>';
2008-11-15 19:20:40 +01:00
print '<tr><td class="fieldrequired">'.$langs->trans("PublicDonation")."</td><td>";
print $form->selectyesno("public",isset($_POST["public"])?$_POST["public"]:1,1);
2008-11-15 19:20:40 +01:00
print "</td></tr>\n";
2009-11-30 02:12:54 +01:00
print "<tr>".'<td>'.$langs->trans("Company").'</td><td><input type="text" name="societe" value="'.$_POST["societe"].'" size="40"></td></tr>';
print "<tr>".'<td>'.$langs->trans("Firstname").'</td><td><input type="text" name="prenom" value="'.$_POST["prenom"].'" size="40"></td></tr>';
print "<tr>".'<td>'.$langs->trans("Lastname").'</td><td><input type="text" name="nom" value="'.$_POST["nom"].'" size="40"></td></tr>';
2008-11-15 19:20:40 +01:00
print "<tr>".'<td>'.$langs->trans("Address").'</td><td>';
2009-11-30 02:12:54 +01:00
print '<textarea name="adresse" wrap="soft" cols="40" rows="3">'.$_POST["adresse"].'</textarea></td></tr>';
2011-06-12 17:47:10 +02:00
// Zip / Town
print '<tr><td>'.$langs->trans("Zip").' / '.$langs->trans("Town").'</td><td>';
print $formcompany->select_ziptown((isset($_POST["zipcode"])?$_POST["zipcode"]:$don->zip),'zipcode',array('town','selectcountry_id','departement_id'),6);
2011-06-12 17:47:10 +02:00
print ' ';
print $formcompany->select_ziptown((isset($_POST["town"])?$_POST["town"]:$don->town),'town',array('zipcode','selectcountry_id','departement_id'));
2011-06-12 17:47:10 +02:00
print '</tr>';
2009-11-30 02:12:54 +01:00
print "<tr>".'<td>'.$langs->trans("Country").'</td><td><input type="text" name="pays" value="'.$_POST["pays"].'" size="40"></td></tr>';
print "<tr>".'<td>'.$langs->trans("EMail").'</td><td><input type="text" name="email" value="'.$_POST["email"].'" size="40"></td></tr>';
2011-06-12 17:47:10 +02:00
print "<tr><td>".$langs->trans("PaymentMode")."</td><td>\n";
$form->select_types_paiements('', 'modepaiement', 'CRDT', 0, 1);
2011-06-12 17:47:10 +02:00
print "</td></tr>\n";
if ($conf->projet->enabled)
{
// Si module projet actif
print "<tr><td>".$langs->trans("Project")."</td><td>";
select_projects('',$_POST["projectid"],"projectid");
print "</td></tr>\n";
}
// Other attributes
$parameters=array('colspan' => ' colspan="1"');
$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$don,$action); // Note that $action and $object may have been modified by hook
2008-11-15 19:20:40 +01:00
print "</table>\n";
2010-04-05 03:25:44 +02:00
print '<br><center><input type="submit" class="button" name="save" value="'.$langs->trans("Save").'"> &nbsp; &nbsp; <input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'"></center>';
2008-11-15 19:20:40 +01:00
print "</form>\n";
}
/* ************************************************************ */
/* */
/* Fiche don en mode edition */
/* */
/* ************************************************************ */
2012-07-11 10:14:56 +02:00
if (! empty($id) && $action == 'edit')
{
2012-02-01 14:20:22 +01:00
$don->fetch($id);
2008-11-15 19:20:40 +01:00
$h=0;
2012-07-11 10:14:56 +02:00
$head[$h][0] = $_SERVER['PHP_SELF']."?id=".$don->id;
2010-04-05 03:25:44 +02:00
$head[$h][1] = $langs->trans("Card");
2008-11-15 19:20:40 +01:00
$hselected=$h;
$h++;
2010-04-05 03:25:44 +02:00
dol_fiche_head($head, $hselected, $langs->trans("Donation"), 0, 'generic');
2008-11-15 19:20:40 +01:00
print '<form name="update" action="fiche.php" method="post">';
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
2008-11-15 19:20:40 +01:00
print '<table class="border" width="100%">';
print '<input type="hidden" name="action" value="update">';
print '<input type="hidden" name="rowid" value="'.$don->id.'">';
// Ref
print "<tr>".'<td>'.$langs->trans("Ref").'</td><td colspan="2">';
print $don->getNomUrl();
print '</td>';
print '</tr>';
2008-11-15 19:13:25 +01:00
2011-06-12 17:47:10 +02:00
$nbrows=12;
if ($conf->projet->enabled) $nbrows++;
// Date
print "<tr>".'<td width="25%" class="fieldrequired">'.$langs->trans("Date").'</td><td>';
$form->select_date($don->date,'','','','',"update");
2008-11-15 19:20:40 +01:00
print '</td>';
2008-11-15 19:13:25 +01:00
2011-06-12 17:47:10 +02:00
print '<td rowspan="'.$nbrows.'" valign="top">'.$langs->trans("Comments").' :<br>';
print "<textarea name=\"comment\" wrap=\"soft\" cols=\"40\" rows=\"15\">".$don->note."</textarea></td>";
print "</tr>";
2008-11-15 19:20:40 +01:00
2011-06-12 17:47:10 +02:00
// Amount
print "<tr>".'<td class="fieldrequired">'.$langs->trans("Amount").'</td><td><input type="text" name="amount" size="10" value="'.$don->amount.'"> '.$langs->trans("Currency".$conf->currency).'</td></tr>';
2008-11-15 19:20:40 +01:00
print '<tr><td class="fieldrequired">'.$langs->trans("PublicDonation")."</td><td>";
print $form->selectyesno("public",1,1);
2008-11-15 19:20:40 +01:00
print "</td>";
print "</tr>\n";
$langs->load("companies");
print "<tr>".'<td>'.$langs->trans("Company").'</td><td><input type="text" name="societe" size="40" value="'.$don->societe.'"></td></tr>';
print "<tr>".'<td>'.$langs->trans("Firstname").'</td><td><input type="text" name="prenom" size="40" value="'.$don->prenom.'"></td></tr>';
print "<tr>".'<td>'.$langs->trans("Lastname").'</td><td><input type="text" name="nom" size="40" value="'.$don->nom.'"></td></tr>';
print "<tr>".'<td>'.$langs->trans("Address").'</td><td>';
print '<textarea name="adresse" wrap="soft" cols="40" rows="'.ROWS_3.'">'.$don->adresse.'</textarea></td></tr>';
2011-06-12 17:47:10 +02:00
// Zip / Town
print '<tr><td>'.$langs->trans("Zip").' / '.$langs->trans("Town").'</td><td>';
print $formcompany->select_ziptown((isset($_POST["zipcode"])?$_POST["zipcode"]:$don->zip),'zipcode',array('town','selectcountry_id','departement_id'),6);
2011-06-12 17:47:10 +02:00
print ' ';
print $formcompany->select_ziptown((isset($_POST["town"])?$_POST["town"]:$don->town),'town',array('zipcode','selectcountry_id','departement_id'));
2011-06-12 17:47:10 +02:00
print '</tr>';
2008-11-15 19:20:40 +01:00
print "<tr>".'<td>'.$langs->trans("Country").'</td><td><input type="text" name="pays" size="40" value="'.$don->pays.'"></td></tr>';
print "<tr>".'<td>'.$langs->trans("EMail").'</td><td><input type="text" name="email" size="40" value="'.$don->email.'"></td></tr>';
2011-06-12 17:47:10 +02:00
print "<tr><td>".$langs->trans("PaymentMode")."</td><td>\n";
$form->select_types_paiements('', 'modepaiement', 'CRDT', 0, 1);
2011-06-12 17:47:10 +02:00
print "</td></tr>\n";
2008-11-15 19:20:40 +01:00
print "<tr>".'<td>'.$langs->trans("Status").'</td><td>'.$don->getLibStatut(4).'</td></tr>';
2011-06-12 17:47:10 +02:00
// Project
2012-07-11 10:14:56 +02:00
if (! empty($conf->projet->enabled))
2011-06-12 17:47:10 +02:00
{
$langs->load('projects');
print '<tr><td>'.$langs->trans('Project').'</td><td>';
2012-07-11 10:14:56 +02:00
select_projects(-1, (isset($_POST["projectid"])?$_POST["projectid"]:$don->fk_project), 'projectid');
2011-06-12 17:47:10 +02:00
print '</td></tr>';
}
// Other attributes
$parameters=array('colspan' => ' colspan="1"');
$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$don,$action); // Note that $action and $object may have been modified by hook
2008-11-15 19:20:40 +01:00
print "</table>\n";
2010-04-05 03:25:44 +02:00
print '<br><center><input type="submit" class="button" name="save" value="'.$langs->trans("Save").'"> &nbsp; &nbsp; <input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'"></center>';
2008-11-15 19:20:40 +01:00
print "</form>\n";
print "</div>\n";
}
/* ************************************************************ */
/* */
/* Fiche don en mode visu */
/* */
/* ************************************************************ */
2012-07-11 10:14:56 +02:00
if (! empty($id) && $action != 'edit')
2002-12-19 19:55:38 +01:00
{
2012-02-01 14:20:22 +01:00
$result=$don->fetch($id);
2008-11-15 19:20:40 +01:00
$h=0;
2012-07-11 10:14:56 +02:00
$head[$h][0] = $_SERVER['PHP_SELF']."?id=".$don->id;
2009-11-30 02:12:54 +01:00
$head[$h][1] = $langs->trans("Card");
2008-11-15 19:20:40 +01:00
$hselected=$h;
$h++;
2010-04-05 03:25:44 +02:00
dol_fiche_head($head, $hselected, $langs->trans("Donation"), 0, 'generic');
2008-11-15 19:20:40 +01:00
print "<form action=\"fiche.php\" method=\"post\">";
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
2008-11-15 19:20:40 +01:00
print '<table class="border" width="100%">';
2012-07-28 21:22:59 +02:00
$linkback = '<a href="'.DOL_URL_ROOT.'/compta/dons/liste.php'.(! empty($socid)?'?socid='.$socid:'').'">'.$langs->trans("BackToList").'</a>';
2011-06-12 17:47:10 +02:00
$nbrows=12;
if ($conf->projet->enabled) $nbrows++;
2008-11-15 19:20:40 +01:00
// Ref
print "<tr>".'<td>'.$langs->trans("Ref").'</td><td colspan="2">';
2012-07-28 21:22:59 +02:00
print $form->showrefnav($don, 'rowid', $linkback, 1, 'rowid', 'ref', '');
2008-11-15 19:20:40 +01:00
print '</td>';
2008-11-15 19:13:25 +01:00
print '</tr>';
2009-01-15 02:14:03 +01:00
2008-11-15 19:13:25 +01:00
// Date
2011-06-12 17:47:10 +02:00
print '<tr><td width="25%">'.$langs->trans("Date").'</td><td>';
print dol_print_date($don->date,"day");
2008-11-15 19:20:40 +01:00
print "</td>";
2011-06-12 17:47:10 +02:00
print '<td rowspan="'.$nbrows.'" valign="top" width="50%">'.$langs->trans("Comments").' :<br>';
2008-11-15 19:20:40 +01:00
print nl2br($don->note).'</td></tr>';
print "<tr>".'<td>'.$langs->trans("Amount").'</td><td>'.price($don->amount).' '.$langs->trans("Currency".$conf->currency).'</td></tr>';
2008-11-15 19:20:40 +01:00
print "<tr><td>".$langs->trans("PublicDonation")."</td><td>";
2009-11-30 02:12:54 +01:00
print yn($don->public);
2008-11-15 19:20:40 +01:00
print "</td></tr>\n";
print "<tr>".'<td>'.$langs->trans("Company").'</td><td>'.$don->societe.'</td></tr>';
print "<tr>".'<td>'.$langs->trans("Firstname").'</td><td>'.$don->prenom.'</td></tr>';
print "<tr>".'<td>'.$langs->trans("Lastname").'</td><td>'.$don->nom.'</td></tr>';
2011-06-12 17:47:10 +02:00
print "<tr>".'<td>'.$langs->trans("Address").'</td><td>'.dol_nl2br($don->adresse).'</td></tr>';
// Zip / Town
print "<tr>".'<td>'.$langs->trans("Zip").' / '.$langs->trans("Town").'</td><td>'.$don->cp.($don->cp && $don->ville?' / ':'').$don->ville.'</td></tr>';
// Country
2008-11-15 19:20:40 +01:00
print "<tr>".'<td>'.$langs->trans("Country").'</td><td>'.$don->pays.'</td></tr>';
2011-06-12 17:47:10 +02:00
// EMail
print "<tr>".'<td>'.$langs->trans("EMail").'</td><td>'.dol_print_email($don->email).'</td></tr>';
// Payment mode
2008-11-15 19:20:40 +01:00
print "<tr><td>".$langs->trans("PaymentMode")."</td><td>";
print $don->modepaiement;
print "</td></tr>\n";
print "<tr>".'<td>'.$langs->trans("Status").'</td><td>'.$don->getLibStatut(4).'</td></tr>';
2011-06-12 17:47:10 +02:00
// Project
if ($conf->projet->enabled)
{
print "<tr>".'<td>'.$langs->trans("Project").'</td><td>'.$don->projet.'</td></tr>';
}
// Other attributes
$parameters=array('colspan' => ' colspan="1"');
$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$don,$action); // Note that $action and $object may have been modified by hook
2008-11-15 19:20:40 +01:00
print "</table>\n";
print "</form>\n";
print "</div>";
2011-03-08 12:13:14 +01:00
// TODO Gerer action emettre paiement
2008-11-15 19:20:40 +01:00
$resteapayer = 0;
2009-01-15 02:14:03 +01:00
2008-11-15 19:20:40 +01:00
/**
* Barre d'actions
*/
print '<div class="tabsAction">';
2008-11-15 19:20:40 +01:00
print '<a class="butAction" href="fiche.php?action=edit&rowid='.$don->id.'">'.$langs->trans('Modify').'</a>';
2008-11-15 19:20:40 +01:00
if ($don->statut == 0)
{
print '<a class="butAction" href="fiche.php?rowid='.$don->id.'&action=valid_promesse">'.$langs->trans("ValidPromess").'</a>';
}
2002-12-21 18:34:05 +01:00
2011-06-12 17:47:10 +02:00
if (($don->statut == 0 || $don->statut == 1) && $resteapayer == 0 && $don->paye == 0)
{
print "<a class=\"butAction\" href=\"fiche.php?rowid=$don->id&action=set_cancel\">".$langs->trans("ClassifyCanceled")."</a>";
}
2011-03-08 12:13:14 +01:00
// TODO Gerer action emettre paiement
2008-11-15 19:20:40 +01:00
if ($don->statut == 1 && $resteapayer > 0)
{
print "<a class=\"butAction\" href=\"paiement.php?facid=$facid&action=create\">".$langs->trans("DoPayment")."</a>";
}
if ($don->statut == 1 && $resteapayer == 0 && $don->paye == 0)
{
2009-08-19 19:16:47 +02:00
print "<a class=\"butAction\" href=\"fiche.php?rowid=$don->id&action=set_paid\">".$langs->trans("ClassifyPaid")."</a>";
2008-11-15 19:20:40 +01:00
}
if ($user->rights->don->supprimer)
{
print "<a class=\"butActionDelete\" href=\"fiche.php?rowid=$don->id&action=delete\">".$langs->trans("Delete")."</a>";
}
else
{
print "<a class=\"butActionRefused\" href=\"#\">".$langs->trans("Delete")."</a>";
}
2002-12-19 19:55:38 +01:00
2008-11-15 19:20:40 +01:00
print "</div>";
print '<table width="100%"><tr><td width="50%" valign="top">';
/*
2009-11-30 02:12:54 +01:00
* Documents generes
*/
$filename=dol_sanitizeFileName($don->id);
$filedir=$conf->don->dir_output . '/' . get_exdir($filename,2);
$urlsource=$_SERVER['PHP_SELF'].'?rowid='.$don->id;
2008-11-15 19:20:40 +01:00
// $genallowed=($fac->statut == 1 && ($fac->paye == 0 || $user->admin) && $user->rights->facture->creer);
// $delallowed=$user->rights->facture->supprimer;
2008-11-14 12:56:47 +01:00
$genallowed=1;
$delallowed=0;
$var=true;
print '<br>';
2008-11-14 12:56:47 +01:00
$formfile->show_documents('donation',$filename,$filedir,$urlsource,$genallowed,$delallowed);
2008-11-15 19:20:40 +01:00
print '</td><td>&nbsp;</td>';
2008-11-15 19:20:40 +01:00
print '</tr></table>';
2002-12-26 11:22:14 +01:00
2002-12-19 19:55:38 +01:00
}
llxFooter();
2012-07-11 10:14:56 +02:00
$db->close();
2002-12-19 19:55:38 +01:00
?>