Look: Modif esthétiques mineures. Ajout du picto statut sur les produits

This commit is contained in:
Laurent Destailleur 2006-03-17 00:24:52 +00:00
parent 124fe2e2bc
commit b0dcf70b0d
3 changed files with 4 additions and 18 deletions

View File

@ -1,6 +1,6 @@
<?php <?php
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2004-2006 Laurent Destailleur <eldy@users.sourceforge.net>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by

View File

@ -67,7 +67,7 @@ if ($_POST["action"] == 'add' && $user->rights->produit->creer)
$product->catid = $_POST["catid"]; $product->catid = $_POST["catid"];
$product->tva_tx = $_POST["tva_tx"]; $product->tva_tx = $_POST["tva_tx"];
$product->type = $_POST["type"]; $product->type = $_POST["type"];
$product->envente = $_POST["statut"]; $product->status = $_POST["statut"];
$product->description = $_POST["desc"]; $product->description = $_POST["desc"];
$product->duration_value = $_POST["duration_value"]; $product->duration_value = $_POST["duration_value"];
$product->duration_unit = $_POST["duration_unit"]; $product->duration_unit = $_POST["duration_unit"];
@ -361,14 +361,7 @@ else
print "<tr>"; print "<tr>";
print '<td width="20%">'.$langs->trans("Ref").'</td><td width="40%">'.$product->ref.'</td>'; print '<td width="20%">'.$langs->trans("Ref").'</td><td width="40%">'.$product->ref.'</td>';
print '<td width="40%">'; print '<td width="40%">';
if ($product->envente) print $product->getLibStatut(2);
{
print $langs->trans("OnSell");
}
else
{
print $langs->trans("NotOnSell");
}
print '</td></tr>'; print '</td></tr>';
print '<tr><td>'.$langs->trans("Label").'</td><td colspan="2">'.$product->libelle.'</td></tr>'; print '<tr><td>'.$langs->trans("Label").'</td><td colspan="2">'.$product->libelle.'</td></tr>';
print '<tr><td>'.$langs->trans("SellingPrice").'</td><td>'.price($product->price).'</td>'; print '<tr><td>'.$langs->trans("SellingPrice").'</td><td>'.price($product->price).'</td>';

View File

@ -108,14 +108,7 @@ if ($_GET["id"])
print "<tr>"; print "<tr>";
print '<td>'.$langs->trans("Ref").'</td><td>'.$product->ref.'</td>'; print '<td>'.$langs->trans("Ref").'</td><td>'.$product->ref.'</td>';
print '<td colspan="2">'; print '<td colspan="2">';
if ($product->envente) print $product->getLibStatut(2);
{
print $langs->trans("OnSell");
}
else
{
print $langs->trans("NotOnSell");
}
print '</td></tr>'; print '</td></tr>';
print '<tr><td>'.$langs->trans("Label").'</td><td>'.$product->libelle.'</td>'; print '<tr><td>'.$langs->trans("Label").'</td><td>'.$product->libelle.'</td>';
print '<td>'.$langs->trans("SellingPrice").'</td><td>'.price($product->price).'</td></tr>'; print '<td>'.$langs->trans("SellingPrice").'</td><td>'.price($product->price).'</td></tr>';