79 lines
3.3 KiB
XML
79 lines
3.3 KiB
XML
<metal:block use-macro="main_template">
|
|
<div metal:fill-slot="content">
|
|
|
|
<br />
|
|
<div class="form-group">
|
|
<label class="control-label">N° dossier</label> : ${nodossier}<br />
|
|
<label class="control-label">N° rapport</label> : ${norapport}<br />
|
|
<label class="control-label">Date d'intervention</label> : ${rapport.date_inter.strftime('%d-%m-%Y')}<br />
|
|
<label class="control-label" for="rapport">Compte-rendu : </label>
|
|
<label class="radio-inline">
|
|
<input type="radio" name="rapport" value="Définitif" disabled="disabled"
|
|
tal:attributes="checked rapport.rapport=='Définitif'">Définitif
|
|
</label>
|
|
<label class="radio-inline">
|
|
<input type="radio" name="rapport" value="Provisoire" disabled="disabled"
|
|
tal:attributes="checked rapport.rapport=='Provisoire'">Provisoire
|
|
</label>
|
|
</div>
|
|
|
|
<br />
|
|
<h4 class="text-center text-primary">ADRESSE d'INTERVENTION</h4>
|
|
<br />
|
|
<table class="table table-condensed ">
|
|
<tr>
|
|
<td>
|
|
<p>
|
|
<h4>${rapport.C_QUALITE} ${rapport.C_NOM}</h4>
|
|
${rapport.C_ADR}<br />
|
|
<span tal:condition="rapport.C_ADR2">${rapport.C_ADR2}<br /></span>
|
|
${rapport.C_CP} ${rapport.C_VILLE}<br />
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
Client : <b>${rapport.NOMCLI}</b><br />
|
|
No Sinistre : ${rapport.NOSIN}
|
|
<br />
|
|
Téléphone : ${rapport.C_TEL1}<br />
|
|
Mobile: ${rapport.C_TELP}<br />
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br />
|
|
<form id="rdf_bill-form" class="form-horizontal" action="${url}" method="post"
|
|
data-fv-framework="bootstrap"
|
|
data-fv-icon-valid="glyphicon glyphicon-ok"
|
|
data-fv-icon-invalid="glyphicon glyphicon-remove"
|
|
data-fv-icon-validating="glyphicon glyphicon-refresh">
|
|
|
|
<div class="form-group">
|
|
<label class="control-label col-sm-4" for="article">Sélectionner l'article à facturer</label>
|
|
<div class="col-sm-8">
|
|
<select class="form-control" name="article">
|
|
<div tal:repeat="item articles">
|
|
<option value="${item.REF}" tal:attributes="selected article==item.LIBART and 'selected' or None">${item.LIBART} ${item.PRIXHT1} €</option>
|
|
</div>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-4 col-sm-8">
|
|
<a class="btn btn-default" href="${request.route_url('rdf_view', no_id=rapport.no_id)}">
|
|
<span class="glyphicon glyphicon-arrow-left"></span> Retour rapport</a>
|
|
<button class="btn btn-primary" type="submit" name="form.submitted">
|
|
<span class="glyphicon glyphicon-remove"></span> Générer la facture</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
|
|
</div>
|
|
<div metal:fill-slot="additional_scripts">
|
|
</div>
|
|
</metal:block>
|