fixing misplaced apostrophe
[koha.git] / koha-tmpl / intranet-tmpl / prog / fr / modules / acqui / supplier.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Fournisseur <!-- TMPL_VAR name="bookselname" --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <!-- TMPL_UNLESS NAME="enter" --><!-- TMPL_INCLUDE NAME="yui-toolbars.inc" --><!-- /TMPL_UNLESS -->
5 <script type="text/javascript">
6 //<![CDATA[
7 function confirm_deletion() {
8     if (confirm("Confirm deletion of this supplier ?")) {
9         window.location="/cgi-bin/koha/acqui/supplier.pl?supplierid=<!--TMPL_VAR Name="id"-->&op=delete";
10     }
11 }
12 //]]>
13 </script>
14 </head>
15 <body class="yui-skin-sam">
16 <!-- TMPL_INCLUDE NAME="header.inc" -->
17 <!-- TMPL_INCLUDE NAME="acquisitions-search.inc" -->
18
19 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Accueil</a> &rsaquo;<a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo; <!--TMPL_IF Name="enter"--><!-- TMPL_IF name="id" --> <a href="/cgi-bin/koha/acqui/supplier.pl?supplierid=<!-- TMPL_VAR NAME="id" -->"><!-- TMPL_VAR NAME="name" --></a> &rsaquo; Mise à jour <!-- TMPL_VAR NAME="name" --><!-- TMPL_ELSE -->Ajout d'un fournisseur<!-- /TMPL_IF --> <!-- TMPL_ELSE --><!-- TMPL_VAR NAME="name" --><!-- /TMPL_IF --></div>
20
21 <div id="doc" class="yui-t7">
22    
23    <div id="bd">
24         <div id="yui-main">
25         <div class="yui-g">
26         
27 <!-- TMPL_UNLESS NAME="enter" --><!-- TMPL_INCLUDE NAME="acquisitions-toolbar.inc" --><!-- /TMPL_UNLESS -->
28         
29 <!--TMPL_IF Name="enter"-->
30     <form action="updatesupplier.pl" method="post">
31     
32     <input type="hidden" name="id" value="<!-- TMPL_VAR NAME="id" -->" />
33     
34     <!-- TMPL_IF name="id" -->
35         <h1>Mettre à jour : <!-- TMPL_VAR NAME="name" --></h1>
36     <!-- TMPL_ELSE -->
37         <h1>Ajout d'un fournisseur</h1>
38     <!-- /TMPL_IF -->
39         <fieldset class="rows">
40             <legend>Coordonnées société</legend>
41             <ol><li><label for="company">Nom de société</label>
42                 <input type="text" size="40" id="company" name="company" value="<!-- TMPL_VAR NAME="name" -->" /></li>
43             <li><label for="company_postal">Adresse postale</label>
44                     <textarea id="company_postal" name="company_postal" cols="40" rows="3"><!-- TMPL_VAR NAME="postal" --></textarea></li>
45             <li><label for="physical">Adresse physique</label>
46                 <textarea id="physical" name="physical" cols="40" rows="3"><!-- TMPL_VAR NAME="address1" --><!-- TMPL_VAR NAME="address2" --><!-- TMPL_VAR NAME="address3" --><!-- TMPL_VAR NAME="address4" --></textarea></li>
47             <li><label for="company_phone">Téléphone</label>
48                 <input type="text" size="20" id="company_phone" name="company_phone" value="<!-- TMPL_VAR NAME="phone" -->" /></li>
49             <li><label for="company_fax">Fax</label>
50                 <input type="text" size="20" id="company_fax" name="company_fax" value="<!-- TMPL_VAR NAME="fax" -->" /></li>
51             <li><label for="website">Site Web</label>
52                 <input type="text" size="40" id="website" name="website" value="<!-- TMPL_VAR NAME="url" -->" /></li></ol>
53         </fieldset>
54         <fieldset class="rows">
55             <legend>Coordonnées du contact</legend>
56            <ol> <li><label for="company_contact_name">Nom du contact</label>
57                 <input type="text" size="40" id="company_contact_name" name="company_contact_name" value="<!-- TMPL_VAR NAME="contact" -->" /></li>
58             <li><label for="company_contact_position">Poste</label>
59                 <input type="text" size="40" id="company_contact_position" name="company_contact_position" value="<!-- TMPL_VAR NAME="contpos" -->" /></li>
60             <li><label for="contact_phone">Téléphone</label>
61                 <input type="text" size="20" id="contact_phone" name="contact_phone" value="<!-- TMPL_VAR NAME="contphone" -->" /> </li>
62             <li><label for="contact_phone_2">Autre téléphone</label>
63                 <input type="text" size="20" id="contact_phone_2" name="contact_phone_2" value="<!-- TMPL_VAR NAME="contaltphone" -->" /></li>
64             <li><label for="contact_fax">Fax</label>
65                 <input type="text" size="20" id="contact_fax" name="contact_fax" value="<!-- TMPL_VAR NAME="contfax" -->" /></li>
66             <li><label for="company_email">Email</label>
67                 <input type="text" size="40" id="company_email" name="company_email" value="<!-- TMPL_VAR NAME="contemail" -->" /></li>
68             <li><label for="contact_notes">Notes</label>
69                 <textarea id="contact_notes" name="contact_notes" cols="40" rows="4"><!-- TMPL_VAR NAME="contnotes" --></textarea></li></ol>
70         </fieldset>
71         <fieldset class="rows">
72             <legend>Informations sur les commandes</legend>
73             <ol class="radio"><li><label for="activestatus" class="radio">Le fournisseur est :</label>
74                     <!-- TMPL_IF name="active" -->
75                         <label for="activestatus">Actif</label> <input type="radio" id="activestatus" name="status" value="1" checked="checked" />
76                         <label for="inactivestatus">Inactif</label> <input type="radio" id="inactivestatus" name="status" value="0" />
77                     <!-- TMPL_ELSE -->
78                         <label for="activestatus">Actif</label> <input type="radio" id="activestatus" name="status" value="1" />
79                         <label for="inactivestatus">Inactif</label> <input type="radio" id="inactivestatus" name="status" value="0" checked="checked" />
80                     <!-- /TMPL_IF --></li>
81                         </ol>
82                         <ol>
83             <li><label for="publishers_imprints">Editeurs référencés</label>
84                 <textarea id="publishers_imprints" name="publishers_imprints" cols="40" rows="3"><!-- TMPL_VAR NAME="specialty" --></textarea></li>
85             <li><label for="list_currency">La liste des prix est en</label>
86                     <select name="list_currency" id="list_currency">
87                     <!-- TMPL_LOOP NAME="loop_pricescurrency" -->
88                         <!-- TMPL_VAR NAME="currency" -->
89                     <!-- /TMPL_LOOP -->
90                     </select></li>
91             <li><label for="invoice_currency">Les prix facturés sont en</label>
92                     <select name="invoice_currency" id="invoice_currency">
93                     <!-- TMPL_LOOP NAME="loop_invoicecurrency" -->
94                         <!-- TMPL_VAR NAME="currency" -->
95                     <!-- /TMPL_LOOP -->
96                     </select></li>
97             <!-- TMPL_IF NAME="GST" --><li>TVA enregistrée
98                                 <!-- TMPL_IF name="gstreg" -->
99                                         <input type="radio" name="gst" id="gstyes" value="1" checked="checked" /><label for="gstyes">Oui</label>
100                     <input type="radio" name="gst" id="gstno" value="0" /><label for="gstno">Non</label>
101                                 <!-- TMPL_ELSE -->
102                     <input type="radio" name="gst" id="gstyes" value="1" /><label for="gstyes">Oui</label>
103                     <input type="radio" name="gst" id="gstno" value="0" checked="checked" /><label for="gstno">Non</label>
104                                 <!-- /TMPL_IF --></li><!-- TMPL_ELSE --><input type="hidden" name="gst" value="0" /><!-- /TMPL_IF -->
105                         
106             <!-- TMPL_IF NAME="GST" --><li>Prix de commande
107                                 <!-- TMPL_IF name="listincgst" -->
108                                         <input type="radio" id="list_gstyes" name="list_gst" value="1" checked="checked" /><label for="list_gstyes">TVA inclusebudgetée</label>
109                     <input type="radio" id="list_gstno" name="list_gst" value="0" /><label for="list_gstno">ne comprend pas la TVA</label>
110                                 <!-- TMPL_ELSE -->
111                     <input type="radio" id="list_gstyes" name="list_gst" value="1" /><label for="list_gstyes">TVA inclusebudgetée</label>
112                     <input type="radio" id="list_gstno" name="list_gst" value="0" checked="checked" /><label for="list_gstno">ne comprend pas la TVA</label>
113                                 <!-- /TMPL_IF --></li><!-- TMPL_ELSE --><input type="hidden" name="list_gst" value="0" /><!-- /TMPL_IF -->
114                         
115             <!-- TMPL_IF NAME="GST" --><li>Prix facturés
116                                 <!-- TMPL_IF name= "invoiceincgst" -->
117                     <input type="radio" id="invoice_gstyes" name="invoice_gst" value="1" checked="checked" /><label for="invoice_gstyes">TVA inclusebudgetée</label>
118                     <input type="radio" id="invoice_gstno" name="invoice_gst" value="0" /><label for="invoice_gstno">ne comprend pas la TVA</label>
119                                         <!-- TMPL_ELSE -->
120                     <input type="radio" id="invoice_gstyes" name="invoice_gst" value="1"><label for="invoice_gstyes">TVA inclusebudgetée</label>
121                     <input type="radio" id="invoice_gstno" name="invoice_gst" value="0" checked="checked" /><label for="invoice_gstno">ne comprend pas la TVA</label>
122                                 <!-- /TMPL_IF --></li><!-- TMPL_ELSE --><input type="hidden"  name="invoice_gst" value="0" /><!-- /TMPL_IF -->
123             <li><label for="discount">Remise</label>
124                 <input type="text" size="3" id="discount" name="discount" value="<!-- TMPL_VAR NAME="discount" -->" /> %</li>
125             <li><label for="notes">Notes</label>
126                 <textarea cols="40" rows="4" id="notes" name="notes" ><!-- TMPL_VAR NAME="notes" --></textarea></li></ol>
127         </fieldset>
128         <p><input type="submit" value="Valider"></p>
129     </form>
130 <!--TMPL_ELSE-->
131     <h1>Renseignements sur : <!-- TMPL_VAR NAME="name" --></h1>
132
133         <div id="supplier-company-details">
134             <h3>Coordonnées société</h3>
135             <p><strong>Nom de société : </strong>
136                 <!-- TMPL_VAR NAME="name" --></p>
137             <p><strong>Adresse postale : </strong>
138                     <!-- TMPL_VAR NAME="postal" --></p>
139             <p><strong>Adresse physique : </strong>
140                 <!-- TMPL_VAR NAME="address1" --><!-- TMPL_VAR NAME="address2" --><!-- TMPL_VAR NAME="address3" --><!-- TMPL_VAR NAME="address4" --></p>
141             <p><strong>Téléphone :  </strong>
142                 <!-- TMPL_VAR NAME="phone" --></p>
143             <p><strong>Fax :  </strong>
144                 <!-- TMPL_VAR NAME="fax" --></p>
145            <!-- TMPL_IF NAME="url" --> <p><strong>Site Web : </strong>
146                 <a href="<!-- TMPL_VAR NAME="url" -->"><!-- TMPL_VAR NAME="url" --></a></p><!-- /TMPL_IF -->
147         </div>
148         <div id="supplier-contact-details">
149             <h3>Coordonnées du contact</h3>
150             <p><strong>Nom du contact : </strong>
151                 <!-- TMPL_VAR NAME="contact" --></p>
152             <p><strong>Poste : </strong>
153                 <!-- TMPL_VAR NAME="contpos" --></p>
154             <p><strong>Téléphone :  </strong>
155                 <!-- TMPL_VAR NAME="contphone" --></p>
156             <p><strong>Autre téléphone : </strong>
157                 <!-- TMPL_VAR NAME="contaltphone" --></p>
158             <p><strong>Fax :  </strong>
159                 <!-- TMPL_VAR NAME="contfax" --></p>
160             <!-- TMPL_IF NAME="contemail" --><p><strong>Email : </strong>
161                 <a href="mailto:<!-- TMPL_VAR NAME="contemail" -->"><!-- TMPL_VAR NAME="contemail" --></a></p><!-- /TMPL_IF -->
162             <p><strong>Notes :  </strong>
163                 <!-- TMPL_VAR NAME="contnotes" --></p>
164         
165         </div>
166         <div id="supplier-ordering-information">
167         <h3>Informations sur les commandes</h3>
168             <p><strong>Le fournisseur est : </strong>
169                     <!-- TMPL_IF name="active" -->
170                         Actif
171                     <!-- TMPL_ELSE -->
172                         Inactif
173                     <!-- /TMPL_IF --></p>
174             <p><strong>Editeurs et imprimeurs : </strong>
175                 <!-- TMPL_VAR NAME="specialty" --></p>
176             <p><strong>La liste des prix est en : </strong><!--TMPL_VAR Name="listprice"--></p>
177             <p><strong>Les prix facturés sont en : </strong><!--TMPL_VAR Name="invoiceprice"--></p>
178             <p><strong>TVA : </strong>
179                     <!-- TMPL_IF name="gstreg" -->Oui<!--TMPL_ELSE-->Non<!-- /TMPL_IF --></p>
180             <p><strong>Liste des prix des documents incluant la TVA </strong>
181                     <!-- TMPL_IF name="listincgst" -->Oui<!--TMPL_ELSE-->Non<!-- /TMPL_IF --></p>
182             <p><strong>Le prix facturé comprend la TVA : </strong>
183                     <!-- TMPL_IF name= "invoiceincgst" -->Oui<!--TMPL_ELSE-->Non<!-- /TMPL_IF --></p>
184             <p><strong>Remise : </strong>
185                 <!-- TMPL_VAR NAME="discount" --> %</p>
186             <p><strong>Notes :  </strong>
187                 <!-- TMPL_VAR NAME="notes" --></p>
188         </div>
189
190 <!--/TMPL_IF-->
191
192 </div>
193 </div>
194 </div>
195 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->