dolibarr/htdocs/compta/paiement/index.php

40 lines
943 B
PHP
Raw Normal View History

<?php
2003-04-26 18:19:05 +02:00
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
*
* 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 3 of the License, or
2003-04-26 18:19:05 +02:00
* (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/>.
2003-04-26 18:19:05 +02:00
*
*/
2010-03-27 03:35:08 +01:00
require '../../main.inc.php';
2009-03-02 20:07:12 +01:00
// Security check
if (!$user->admin && $user->societe_id > 0)
accessforbidden();
2003-04-26 18:19:05 +02:00
/*
2009-03-02 20:07:12 +01:00
* View
2003-04-26 18:19:05 +02:00
*/
2009-03-02 20:07:12 +01:00
llxHeader();
print_fiche_titre("Payments");
2003-04-26 18:19:05 +02:00
$db->close();
2009-03-02 20:07:12 +01:00
llxFooter();
2003-04-26 18:19:05 +02:00
?>