Ajout des templates

This commit is contained in:
Rodolphe Quiedeville 2006-12-02 14:20:37 +00:00
parent 71645f76fc
commit d6f95ff3e9
3 changed files with 438 additions and 0 deletions

View File

@ -0,0 +1,176 @@
<!-- BEGIN SMARTY TEMPLATE -->
<form id="evolForm" action="fiche.php" method="post">
<input type="hidden" name="action" value="add">
<input type="hidden" name="type" value="0">
<input type="hidden" name="canvas" value="livre">
<table class="border" width="100%">
<tr>
<td width="15%">Réf.</td>
<td colspan="2">
<input name="ref" size="20" value="{$prod_ref}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td width="15%">Titre</td>
<td width="85%" colspan="3">
<input name="libelle" size="40" value="{$prod_label}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td width="15%">ISBN</td>
<td width="35%">
<input name="isbna" size="2" maxlength="12" value="{$prod_isbna}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">-
<input name="isbnb" size="8" maxlength="7" value="{$prod_isbnb}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">-
<input name="isbnc" size="13" maxlength="12" class="normal" value="{$prod_isbnc}"
onfocus="this.className='focus';" onblur="this.className='normal';" >
{$prod_isbn}
</td>
<td width="15%">ISBN-13</td>
<td width="35%">978-
<input name="isbn13" size="13" maxlength="12" class="normal"
onfocus="this.className='focus';" onblur="this.className='normal';" value="{$prod_isbn}">
</td>
</tr>
<tr>
<td width="15%">EAN</td>
<td width="35%">
<input class="normal" name="ean" size="16" maxlength="15" value="{$prod_ean}"
onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
<td>Code barre</td>
<td>{$prod_ean}</td>
</tr>
<tr>
<td>Pages</td>
<td>
<input name="pages" size="6" maxlength="5" value="{$prod_pages}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
<td>Format</td>
<td>
<input name="format" size="8" maxlength="7" value="{$prod_format}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td>Prix au feuillet</td>
<td>
<input name="px_feuillet" type="text" size="7" maxlength="6" value="{$prod_pxfeuil}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
<td>Prix couverture</td>
<td>
<input name="px_couverture" type="text" size="7" maxlength="6" value="{$prod_pxcouv}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td>Prix de revient</td>
<td>{$prod_pxrevient}</td>
<td>Prix de vente</td>
<td>{$prod_pxvente}</td>
</tr>
<tr>
<td>Taux TVA</td>
<td colspan="2">
<select class="flat" name="tva_tx">
<option value="0">0%</option>
<option value="5.5">5.5%</option>
<option value="19.6" selected="true">19.6%</option>
</select>
</td>
</tr>
<tr>
<td>État</td>
<td colspan="2">
<select class="flat" name="statut">
<option value="1" selected="true">En vente</option>
<option value="0">Hors vente</option>
</select>
</td>
</tr>
<tr>
<td>Seuil stock</td>
<td colspan="2"><input name="seuil_stock_alerte" size="4"
value="300"></td>
</tr>
<tr>
<td>Emplacement Stock</td>
<td colspan="3">{$prod_pages}</td>
</tr>
<tr>
<td colspan="4">Contrat</td>
</tr>
<tr>
<td>Durée du contrat :</td>
<td>
<input name="contrat_duree" type="text" size="7" maxlength="6" value="{$prod_contrat_duree}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
<td>Date d'application</td>
<td>
<input name="contrat_date_app" type="text" size="7" maxlength="6" value="{$prod_contrat_date_app}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td>Taux conclu</td>
<td>
<input name="contrat_taux" type="text" size="7" maxlength="6" value="{$prod_contrat_taux}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">%
</td>
<td>Quantité achetée</td>
<td>
<input name="contrat_quant" type="text" size="7" maxlength="6" value="{$prod_contrat_quant}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td valign="top">Description</td>
<td colspan="3">
<textarea name="desc" rows="4" cols="90"></textarea>
</td>
</tr>
<tr>
<td valign="top">Note (non visible sur les factures, propals...)
</td>
<td colspan="3">
<textarea name="note" rows="8" cols="70"></textarea>
</td>
</tr>
<tr>
<td colspan="4" align="center">
<input type="submit" class="button" value="Enregistrer">&nbsp;
<input type="submit" class="button" name="cancel" value="Annuler">
</td>
</tr>
</table>
</form>
<!-- CUT HERE -->
<!-- END SMARTY TEMPLATE -->

View File

@ -0,0 +1,176 @@
<!-- BEGIN SMARTY TEMPLATE -->
<form id="evolForm" action="fiche.php" method="post">
<input type="hidden" name="action" value="update">
<input type="hidden" name="id" value="{$prod_id}">
<input type="hidden" name="canvas" value="{$prod_canvas}">
<table class="border" width="100%">
<tr>
<td width="15%">Réf.</td>
<td colspan="2">
<input name="ref" size="20" value="{$prod_ref}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td width="15%">Titre</td>
<td width="85%" colspan="3">
<input name="libelle" size="40" value="{$prod_label}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td width="15%">ISBN</td>
<td width="35%">
<input name="isbna" size="2" maxlength="12" value="{$prod_isbna}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">-
<input name="isbnb" size="8" maxlength="7" value="{$prod_isbnb}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">-
<input name="isbnc" size="13" maxlength="12" class="normal" value="{$prod_isbnc}"
onfocus="this.className='focus';" onblur="this.className='normal';" >
{$prod_isbn}
</td>
<td width="15%">ISBN-13</td>
<td width="35%">978-
<input name="isbn13" size="13" maxlength="12" class="normal"
onfocus="this.className='focus';" onblur="this.className='normal';" value="{$prod_isbn}">
</td>
</tr>
<tr>
<td width="15%">EAN</td>
<td width="35%">
<input class="normal" name="ean" size="16" maxlength="15" value="{$prod_ean}"
onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
<td>Code barre</td>
<td>{$prod_ean}</td>
</tr>
<tr>
<td>Pages</td>
<td>
<input name="pages" size="6" maxlength="5" value="{$prod_pages}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
<td>Format</td>
<td>
<input name="format" size="8" maxlength="7" value="{$prod_format}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td>Prix au feuillet</td>
<td>
<input name="px_feuillet" type="text" size="7" maxlength="6" value="{$prod_pxfeuil}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
<td>Prix couverture</td>
<td>
<input name="px_couverture" type="text" size="7" maxlength="6" value="{$prod_pxcouv}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td>Prix de revient</td>
<td>{$prod_pxrevient}</td>
<td>Prix de vente</td>
<td>{$prod_pxvente}</td>
</tr>
<tr>
<td>Taux TVA</td>
<td colspan="2">
<select class="flat" name="tva_tx">
<option value="0">0%</option>
<option value="5.5">5.5%</option>
<option value="19.6" selected="true">19.6%</option>
</select>
</td>
</tr>
<tr>
<td>État</td>
<td colspan="2">
<select class="flat" name="statut">
<option value="1" selected="true">En vente</option>
<option value="0">Hors vente</option>
</select>
</td>
</tr>
<tr>
<td>Seuil stock</td>
<td colspan="2"><input name="seuil_stock_alerte" size="4"
value="300"></td>
</tr>
<tr>
<td>Emplacement Stock</td>
<td colspan="3">{$prod_pages}</td>
</tr>
<tr>
<td colspan="4">Contrat</td>
</tr>
<tr>
<td>Durée du contrat :</td>
<td>
<input name="contrat_duree" type="text" size="7" maxlength="6" value="{$prod_contrat_duree}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
<td>Date d'application</td>
<td>
<input name="contrat_date_app" type="text" size="7" maxlength="6" value="{$prod_contrat_date_app}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td>Taux conclu</td>
<td>
<input name="contrat_taux" type="text" size="7" maxlength="6" value="{$prod_contrat_taux}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">%
</td>
<td>Quantité achetée</td>
<td>
<input name="contrat_quant" type="text" size="7" maxlength="6" value="{$prod_contrat_quant}"
class="normal" onfocus="this.className='focus';" onblur="this.className='normal';">
</td>
</tr>
<tr>
<td valign="top">Description</td>
<td colspan="3">
<textarea name="desc" rows="4" cols="90"></textarea>
</td>
</tr>
<tr>
<td valign="top">Note (non visible sur les factures, propals...)
</td>
<td colspan="3">
<textarea name="note" rows="8" cols="70"></textarea>
</td>
</tr>
<tr>
<td colspan="3" align="center">
<input type="submit" class="button" value="Enregistrer">&nbsp;
<input type="submit" class="button" name="cancel" value="Annuler">
</td>
</tr>
</table>
</form>
<!-- CUT HERE -->
<!-- END SMARTY TEMPLATE -->

View File

@ -0,0 +1,86 @@
<!-- BEGIN SMARTY TEMPLATE -->
</table>
<table class="border" width="100%">
<tr>
<td width="15%">Titre</td>
<td width="85%" colspan="3">{$prod_label}</td>
</tr>
<tr>
<td width="15%">ISBN</td>
<td width="35%">{$prod_isbn}</td>
<td width="15%">ISBN-13</td>
<td width="35%">{$prod_isbn13}</td>
</tr>
<tr>
<td width="15%">EAN</td>
<td width="35%">{$prod_ean}</td>
<td>Code barre</td>
<td>{$prod_ean}</td>
</tr>
<tr>
<td>Pages</td>
<td>{$prod_pages}</td>
<td>Format</td>
<td>{$prod_format}</td>
</tr>
<tr>
<td>Prix au feuillet</td>
<td>{$prod_pxfeuil}</td>
<td>Prix couverture</td>
<td>{$prod_pxcouv}</td>
</tr>
<tr>
<td>Prix de revient</td>
<td>{$prod_pxrevient}</td>
<td>Prix de vente</td>
<td>{$prod_pxvente}</td>
</tr>
</table>
<br>
<table class="border" width="100%">
<tr>
<td width="15%">Stock</td>
<td width="85%" colspan="3"><b>{$prod_stock_dispo}</b></td>
</tr>
<tr>
<td width="15%">Stock réel</td>
<td width="35%">{$prod_stock_reel}</td>
<td width="15%">Exemplaires en commande</td>
<td width="35%">{$prod_stock_in_command}</td>
</tr>
<tr>
<td>Emplacement Stock</td>
<td colspan="3">{$prod_pages}</td>
</tr>
</table>
<br>
<table class="border" width="100%">
<tr>
<td width="15%">Durée du contrat : </td>
<td width="35%">{$prod_contrat_duree}</td>
<td width="15%">Date d'application</td>
<td width="35%"></td>
</tr>
<tr>
<td>Taux conclu</td>
<td>{$prod_contrat_taux}</td>
<td>Quantité achetée</td>
<td>{$prod_contrat_quant}</td>
</tr>
<tr>
<!-- END SMARTY TEMPLATE -->