mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
278 lines
9.6 KiB
PHP
278 lines
9.6 KiB
PHP
<?php
|
||
/* Copyright (C) 2001-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
||
* Copyright (C) 2005 Eric Seigne <eric.seigne@ryxeo.com>
|
||
* Copyright (C) 2005-2007 Regis Houssin <regis@dolibarr.fr>
|
||
*
|
||
* 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$
|
||
*/
|
||
|
||
/**
|
||
\file htdocs/product/photos.php
|
||
\ingroup product
|
||
\brief Onglet photos de la fiche produit
|
||
\version $Revision$
|
||
*/
|
||
|
||
require("./pre.inc.php");
|
||
require_once(DOL_DOCUMENT_ROOT."/lib/product.lib.php");
|
||
require_once(DOL_DOCUMENT_ROOT."/propal.class.php");
|
||
require_once(DOL_DOCUMENT_ROOT."/facture.class.php");
|
||
require_once(DOL_DOCUMENT_ROOT."/product.class.php");
|
||
require_once(DOL_DOCUMENT_ROOT."/html.formfile.class.php");
|
||
|
||
$langs->load("products");
|
||
$langs->load("bills");
|
||
|
||
$mesg = '';
|
||
|
||
if (!$user->rights->produit->lire) accessforbidden();
|
||
|
||
/*
|
||
* Actions
|
||
*/
|
||
|
||
if ($_FILES['userfile']['size'] > 0 && $_POST["sendit"] && $conf->upload != 0)
|
||
{
|
||
if ($_GET["id"])
|
||
{
|
||
$product = new Product($db);
|
||
$result = $product->fetch($_GET["id"]);
|
||
|
||
// if (dol_move_uploaded_file($_FILES['userfile']['tmp_name'], $upload_dir . "/" . $_FILES['userfile']['name'],1))
|
||
|
||
// var_dump($_FILES);
|
||
|
||
$product->add_photo($conf->produit->dir_output, $_FILES['userfile']);
|
||
}
|
||
}
|
||
|
||
if ($_REQUEST["action"] == 'confirm_delete' && $_GET["file"] && $_REQUEST['confirm'] == 'yes')
|
||
{
|
||
if ($user->rights->produit->creer)
|
||
{
|
||
$product = new Product($db);
|
||
$product->delete_photo($conf->produit->dir_output."/".$_GET["file"]);
|
||
}
|
||
}
|
||
|
||
if ($_GET["action"] == 'addthumb' && $_GET["file"])
|
||
{
|
||
$product = new Product($db);
|
||
$product->add_thumb($conf->produit->dir_output."/".$_GET["file"]);
|
||
}
|
||
|
||
|
||
/*
|
||
*
|
||
*/
|
||
|
||
$html = new Form($db);
|
||
|
||
if ($_GET["id"] || $_GET["ref"])
|
||
{
|
||
|
||
$product = new Product($db);
|
||
if ($_GET["ref"]) $result = $product->fetch('',$_GET["ref"]);
|
||
if ($_GET["id"]) $result = $product->fetch($_GET["id"]);
|
||
|
||
llxHeader("","",$langs->trans("CardProduct".$product->type));
|
||
|
||
if ($result)
|
||
{
|
||
/*
|
||
* En mode visu
|
||
*/
|
||
$head=product_prepare_head($product, $user);
|
||
$titre=$langs->trans("CardProduct".$product->type);
|
||
dolibarr_fiche_head($head, 'photos', $titre);
|
||
|
||
/*
|
||
* Confirmation de la suppression de photo
|
||
*/
|
||
if ($_GET['action'] == 'delete')
|
||
{
|
||
$html->form_confirm($_SERVER["PHP_SELF"].'?id='.$product->id.'&file='.$_GET["file"], $langs->trans('DeletePicture'), $langs->trans('ConfirmDeletePicture'), 'confirm_delete');
|
||
print '<br>';
|
||
}
|
||
|
||
print($mesg);
|
||
|
||
print '<table class="border" width="100%">';
|
||
|
||
// Reference
|
||
print '<tr>';
|
||
print '<td width="15%">'.$langs->trans("Ref").'</td><td colspan="2">';
|
||
print $html->showrefnav($product,'ref','',1,'ref');
|
||
print '</td>';
|
||
print '</tr>';
|
||
|
||
// Libelle
|
||
print '<tr><td>'.$langs->trans("Label").'</td><td colspan="2">'.$product->libelle.'</td>';
|
||
print '</tr>';
|
||
|
||
// Prix
|
||
print '<tr><td>'.$langs->trans("SellingPrice").'</td><td colspan="2">';
|
||
if ($product->price_base_type == 'TTC')
|
||
{
|
||
print price($product->price_ttc).' '.$langs->trans($product->price_base_type);
|
||
}
|
||
else
|
||
{
|
||
print price($product->price).' '.$langs->trans($product->price_base_type);
|
||
}
|
||
print '</td></tr>';
|
||
|
||
// Statut
|
||
print '<tr><td>'.$langs->trans("Status").'</td><td colspan="2">';
|
||
print $product->getLibStatut(2);
|
||
print '</td></tr>';
|
||
|
||
print "</table>\n";
|
||
|
||
print "</div>\n";
|
||
|
||
|
||
|
||
/* ************************************************************************** */
|
||
/* */
|
||
/* Barre d'action */
|
||
/* */
|
||
/* ************************************************************************** */
|
||
|
||
print "\n<div class=\"tabsAction\">\n";
|
||
|
||
if ($_GET["action"] != 'ajout_photo' && $user->rights->produit->creer && $conf->upload)
|
||
{
|
||
print '<a class="butAction" href="'.DOL_URL_ROOT.'/product/photos.php?action=ajout_photo&id='.$product->id.'">';
|
||
print $langs->trans("AddPhoto").'</a>';
|
||
}
|
||
|
||
print "\n</div>\n";
|
||
|
||
/*
|
||
* Ajouter une photo
|
||
*/
|
||
if ($_GET["action"] == 'ajout_photo' && $conf->upload && $user->rights->produit->creer)
|
||
{
|
||
// Affiche formulaire upload
|
||
$formfile=new FormFile($db);
|
||
$formfile->form_attach_new_file(DOL_URL_ROOT.'/product/photos.php?id='.$product->id,$langs->trans("AddPhoto"),1);
|
||
}
|
||
|
||
// Affiche photos
|
||
if ($_GET["action"] != 'ajout_photo')
|
||
{
|
||
$nbphoto=0;
|
||
$nbbyrow=5;
|
||
|
||
$maxWidth = 160;
|
||
$maxHeight = 120;
|
||
|
||
$pdir = get_exdir($product->id,2) . $product->id ."/photos/";
|
||
$dir = $conf->produit->dir_output . '/'. $pdir;
|
||
|
||
print '<br>';
|
||
print '<table width="100%" valign="top" align="center" border="0" cellpadding="2" cellspacing="2">';
|
||
|
||
foreach ($product->liste_photos($dir) as $key => $obj)
|
||
{
|
||
$nbphoto++;
|
||
|
||
// if ($nbbyrow && $nbphoto == 1) print '<table width="100%" valign="top" align="center" border="0" cellpadding="2" cellspacing="2">';
|
||
|
||
if ($nbbyrow && ($nbphoto % $nbbyrow == 1)) print '<tr align=center valign=middle border=1>';
|
||
if ($nbbyrow) print '<td width="'.ceil(100/$nbbyrow).'%" class="photo">';
|
||
|
||
print '<a href="'.DOL_URL_ROOT.'/viewimage.php?modulepart=product&file='.urlencode($pdir.$obj['photo']).'" alt="Taille origine" target="_blank">';
|
||
|
||
// Si fichier vignette disponible, on l'utilise, sinon on utilise photo origine
|
||
if ($obj['photo_vignette'])
|
||
{
|
||
$filename='thumbs/'.$obj['photo_vignette'];
|
||
}
|
||
else
|
||
{
|
||
$filename=$obj['photo'];
|
||
}
|
||
|
||
// Nom affich<63>
|
||
$viewfilename=$obj['photo'];
|
||
|
||
// Taille de l'image
|
||
$product->get_image_size($dir.$filename);
|
||
$imgWidth = ($product->imgWidth < $maxWidth) ? $product->imgWidth : $maxWidth;
|
||
$imgHeight = ($product->imgHeight < $maxHeight) ? $product->imgHeight : $maxHeight;
|
||
|
||
print '<img border="0" width="'.$imgWidth.'" height="'.$imgHeight.'" src="'.DOL_URL_ROOT.'/viewimage.php?modulepart=product&file='.urlencode($pdir.$filename).'">';
|
||
|
||
print '</a>';
|
||
print '<br>'.$viewfilename;
|
||
print '<br>';
|
||
|
||
// On propose la g<>n<EFBFBD>ration de la vignette si elle n'existe pas et si la taille est sup<75>rieure aux limites
|
||
if (!$obj['photo_vignette'] && eregi('(\.bmp|\.gif|\.jpg|\.jpeg|\.png)$',$obj['photo']) && ($product->imgWidth > $maxWidth || $product->imgHeight > $maxHeight))
|
||
{
|
||
print '<a href="'.$_SERVER["PHP_SELF"].'?id='.$_GET["id"].'&action=addthumb&file='.urlencode($pdir.$viewfilename).'">'.img_refresh($langs->trans('GenerateThumb')).' </a>';
|
||
}
|
||
if ($user->rights->produit->creer)
|
||
{
|
||
if ($conf->use_javascript_ajax && $conf->global->MAIN_CONFIRM_AJAX)
|
||
{
|
||
$url = $_SERVER["PHP_SELF"].'?id='.$product->id.'&file='.urlencode($pdir.$viewfilename).'&action=confirm_delete&confirm=yes';
|
||
print '<a href="#" onClick="dialogConfirm(\''.$url.'\',\''.$langs->trans('ConfirmDeletePicture').'\',\''.$langs->trans("Yes").'\',\''.$langs->trans("No").'\',\'delete\')">';
|
||
}
|
||
else
|
||
{
|
||
print '<a href="'.$_SERVER["PHP_SELF"].'?id='.$_GET["id"].'&action=delete&file='.urlencode($pdir.$viewfilename).'">';
|
||
}
|
||
print img_delete().'</a>';
|
||
}
|
||
if ($nbbyrow) print '</td>';
|
||
if ($nbbyrow && ($nbphoto % $nbbyrow == 0)) print '</tr>';
|
||
}
|
||
|
||
// Ferme tableau
|
||
while ($nbphoto % $nbbyrow)
|
||
{
|
||
print '<td width="'.ceil(100/$nbbyrow).'%"> </td>';
|
||
$nbphoto++;
|
||
}
|
||
|
||
if ($nbphoto < 1)
|
||
{
|
||
print '<tr align=center valign=middle border=1><td class="photo">';
|
||
print "<br>".$langs->trans("NoPhotoYet")."<br><br>";
|
||
print '</td></tr>';
|
||
}
|
||
|
||
print '</table>';
|
||
}
|
||
}
|
||
}
|
||
else
|
||
{
|
||
print $langs->trans("ErrorUnknown");
|
||
}
|
||
|
||
|
||
|
||
$db->close();
|
||
|
||
llxFooter('$Date$ - $Revision$');
|
||
?>
|