ajout Doc techniques dans dossier_view.pt et articles.pt
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
<span class="glyphicon glyphicon-tint logo-success"></span>
|
||||
<h4>RAPPORTS RDF</h4></a>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<div class="col-sm-3" tal:condition="logged_in=='CAO'">
|
||||
<a href="${request.application_url}/devis_list">
|
||||
<span class="glyphicon glyphicon-text-height logo-small"></span>
|
||||
<h4>E-DEVIS</h4></a>
|
||||
|
||||
@@ -97,7 +97,7 @@
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-3 col-sm-9">
|
||||
<div class="form-group">
|
||||
<a class="btn btn-default" href="${request.route_url('devis_web', nodossier=nodossier)}">
|
||||
<a class="btn btn-default" href="${request.route_url('devis_web', nodevis=nodevis)}">
|
||||
<span class="glyphicon glyphicon-arrow-left"></span> Annuler</a>
|
||||
<button class="btn btn-primary" type="submit" name="form.submited">
|
||||
<span class="glyphicon glyphicon-ok"></span> Enregistrer</button>
|
||||
|
||||
@@ -3,99 +3,105 @@
|
||||
<!-- ENTETE -->
|
||||
<img src="${logo_url}" width="100%" />
|
||||
<br />
|
||||
<div class="row">
|
||||
<!-- colonne gauche : REFERENCES -->
|
||||
<div class="col-sm-6">
|
||||
<p tal:condition="devis.no_agrement">N° Agrément : ${devis.no_agrement}</p>
|
||||
<br/><br/>
|
||||
<p tal:condition="devis.NOSIN">N° sinistre : ${devis.NOSIN}</p>
|
||||
<p tal:condition="devis.NOPOL">N° sinistre : ${devis.NOPOL}</p>
|
||||
<p tal:condition="devis.REF_EXPERT">Réf. expert : ${devis.REF_EXPERT}</p>
|
||||
<p tal:condition="devis.VREF">V/Référence : ${devis.VREF}</p>
|
||||
<br />
|
||||
<p>${devis.LIBCOMPL}</p>
|
||||
<br/><br/>
|
||||
<p>N° dossier : ${devis.nochantier}</p>
|
||||
<br/><br/>
|
||||
<H3>DEVIS N° ${devis.societe}-${devis.NO_ID}<h/H3>
|
||||
|
||||
</div>
|
||||
<!-- colonne droite : ADRESSES -->
|
||||
<div class="col-sm-6">
|
||||
<br/><br/>
|
||||
<h4>${devis.C_QUALITE} ${devis.C_NOM}</h4>
|
||||
<h4>${devis.C_ADR}</h4>
|
||||
<h4 tal:condition="devis.C_ADR2">${devis.C_ADR2}<br /></h4>
|
||||
<h4>${devis.C_CP} ${devis.C_VILLE}</h4>
|
||||
<br />
|
||||
<br />
|
||||
<p>Rilieux-la-Pape, le ${devis.DATE.strftime('%d-%m-%Y')}</p>
|
||||
<br />
|
||||
<h4>${devis.QUALITE} ${devis.NOM}</h4>
|
||||
<h4>${devis.ADRESSE}</h4>
|
||||
<h4 tal:condition="devis.ADRESSE2">${devis.ADRESSE2}<br /></h4>
|
||||
<h4>${devis.CP} ${devis.VILLE}</h4>
|
||||
</div>
|
||||
</div> <!-- row : entête-->
|
||||
<table style="width:100%">
|
||||
<tr>
|
||||
<td style="width:55%">
|
||||
<p tal:condition="devis.no_agrement">N° Agrément : ${devis.no_agrement}</p>
|
||||
<br/><br/>
|
||||
<p tal:condition="devis.NOSIN">N° sinistre : ${devis.NOSIN}</p>
|
||||
<p tal:condition="devis.NOPOL">N° sinistre : ${devis.NOPOL}</p>
|
||||
<p tal:condition="devis.REF_EXPERT">Réf. expert : ${devis.REF_EXPERT}</p>
|
||||
<p tal:condition="devis.VREF">V/Référence : ${devis.VREF}</p>
|
||||
<br />
|
||||
<p>${devis.LIBCOMPL}</p>
|
||||
<br/><br/>
|
||||
<p>N° dossier : ${devis.nochantier}</p>
|
||||
<br/><br/>
|
||||
<H3>DEVIS N° ${devis.societe}-${devis.NO_ID}<h/H3>
|
||||
</td>
|
||||
<td style="width:45%">
|
||||
<br/><br/>
|
||||
<h4>${devis.C_QUALITE} ${devis.C_NOM}</h4>
|
||||
<h4>${devis.C_ADR}</h4>
|
||||
<h4 tal:condition="devis.C_ADR2">${devis.C_ADR2}<br /></h4>
|
||||
<h4>${devis.C_CP} ${devis.C_VILLE}</h4>
|
||||
<br />
|
||||
<br />
|
||||
<p>Rilieux-la-Pape, le ${devis.DATE.strftime('%d-%m-%Y')}</p>
|
||||
<br />
|
||||
<h4>${devis.QUALITE} ${devis.NOM}</h4>
|
||||
<h4>${devis.ADRESSE}</h4>
|
||||
<h4 tal:condition="devis.ADRESSE2">${devis.ADRESSE2}<br /></h4>
|
||||
<h4>${devis.CP} ${devis.VILLE}</h4>
|
||||
</td>
|
||||
</tr>
|
||||
</table> <!-- row : entête-->
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-8">
|
||||
<p class="text-right">Surf./ Qté</p>
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<p class="text-right">P.U. HT</p>
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<p class="text-right">Montant HT</p>
|
||||
</div>
|
||||
</div> <!-- row : entête tableau-->
|
||||
|
||||
<hr>
|
||||
<div tal:replace="structure dt_html">Page text goes here.</div>
|
||||
<hr>
|
||||
<!-- row : entête tableau-->
|
||||
<table style="width:100%">
|
||||
<tr>
|
||||
<td style="width:56%"></td>
|
||||
<td style="width:8%; text-align:right">Surf./ Qté</td>
|
||||
<td style="width:18%; text-align:right">P.U. HT</td>
|
||||
<td style="width:18%; text-align:right">Montant HT</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"><hr></td>
|
||||
</tr>
|
||||
<div tal:replace="structure dt_html">Les lignes du devis ici</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-7">
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<h4>Total HT</h4>
|
||||
<h4>TVA ${layout.to_percent(devis.TAUXTVA)}</h4>
|
||||
<h4>Total TTC</h4>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<h4 class="text-right">${layout.to_euro(devis.TOTALHT)}</h4>
|
||||
<h4 class="text-right">${layout.to_euro(devis.TOTALTVA)}</h4>
|
||||
<h4 class="text-right">${layout.to_euro(devis.TOTALTTC)}</h4>
|
||||
</div>
|
||||
<br />
|
||||
<div class="col-sm-12">
|
||||
<p>
|
||||
Si vous acceptez ce devis, veuillez nous en retourner un exemplaire signé et précédé de la mention "Bon pour Accord".
|
||||
</p>
|
||||
</div>
|
||||
</div> <!-- row : bas de devis-->
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<p tal:condition="devis.TYPECLI == 'P'">
|
||||
<b>Conditions de réglement :</b><br />
|
||||
Acompte de 30 % à la commande, Le solde à réception de la facture.
|
||||
</p>
|
||||
<p tal:condition="devis.CODETVA == 4">
|
||||
NOTA : Pour bénéficier du taux réduit de T.V.A. à 7%, vous devez nous fournir en même temps que l'acceptation du devis, une attestation sur papier libre, stipulant que votre habitation est construite depuis plus de deux ans.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-sm-1">
|
||||
</div>
|
||||
<div class="col-sm-5">
|
||||
<p>
|
||||
Le <br/>
|
||||
Nom et Signature du Client<br/>
|
||||
BON POUR ACCORD
|
||||
</p>
|
||||
</div>
|
||||
</div> <!-- row : bon pour accord-->
|
||||
<tr>
|
||||
<td colspan="3"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"></td>
|
||||
<td>Total HT</td>
|
||||
<td style="text-align:right">${layout.to_euro(devis.TOTALHT)}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"></td>
|
||||
<td>TVA ${layout.to_percent(devis.TAUXTVA)}</td>
|
||||
<td style="text-align:right">${layout.to_euro(devis.TOTALTVA)}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"></td>
|
||||
<td><b>Total TTC</b></td>
|
||||
<td style="text-align:right"><b>${layout.to_euro(devis.TOTALTTC)}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3">
|
||||
Si vous acceptez ce devis, veuillez nous en retourner un exemplaire signé et précédé de la mention "Bon pour Accord".
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"> </td>
|
||||
</tr>
|
||||
<!-- row : bas de devis-->
|
||||
<tr>
|
||||
<td>
|
||||
<p tal:condition="devis.TYPECLI == 'P'">
|
||||
<b>Conditions de réglement :</b><br />
|
||||
Acompte de 30 % à la commande, Le solde à réception de la facture.
|
||||
</p>
|
||||
<p tal:condition="devis.CODETVA == 4">
|
||||
NOTA : Pour bénéficier du taux réduit de T.V.A. à 7%, vous devez nous fournir en même temps que l'acceptation du devis, une attestation sur papier libre, stipulant que votre habitation est construite depuis plus de deux ans.
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
<td colspan="2">
|
||||
<p>
|
||||
Le <br/>
|
||||
Nom et Signature du Client<br/>
|
||||
BON POUR ACCORD
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
<br />
|
||||
|
||||
|
||||
@@ -103,12 +103,7 @@
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<!-- The form is placed inside the body of modal -->
|
||||
<form id="add_justif-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">
|
||||
|
||||
<form id="add_justif-form" class="form-horizontal" action="${url}" method="post">
|
||||
<div class="form-group">
|
||||
<label class="control-label col-xs-4">Sélectionner le type :</label>
|
||||
<div class="col-xs-8">
|
||||
@@ -117,11 +112,9 @@
|
||||
<label class="radio"><input type="radio" name="type_lig" value="ST">Sous-total</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-xs-5 col-xs-offset-3">
|
||||
<button type="submit" class="btn btn-success" name="form.submited">Ajouter</button>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">Annuler</button>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-success" name="form.submited">Ajouter</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@@ -97,7 +97,12 @@
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<h4>Statut : ${dossier.STATUS}</h4>
|
||||
Dernière modif. le <b>${dossier.DATEMAJ.strftime('%d/%m/%Y à %H:%M')}</b> par <b>${dossier.USERMAJ}</b>
|
||||
<p>Dernière modif. le <b>${dossier.DATEMAJ.strftime('%d/%m/%Y à %H:%M')}</b> par <b>${dossier.USERMAJ}</b></p>
|
||||
<p>
|
||||
<a class="btn btn-warning" role="button" href="#"
|
||||
data-toggle="modal" data-target="#confirmCloture"><span class="glyphicon glyphicon-check"></span> Clôturer dossier</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div> <!-- row -->
|
||||
|
||||
@@ -137,7 +142,7 @@
|
||||
<p>
|
||||
<a class="btn btn-success" role="button" href="${request.route_url('suivi_edit', nodossier=nodossier, nolig='0')}">
|
||||
<span class="glyphicon glyphicon-plus"></span> Nouvelle ligne</a>
|
||||
<a class="btn btn-warning" role="button" href="${request.route_url('rdv_edit', nodossier=nodossier, nolig='0')}">
|
||||
<a class="btn btn-success" role="button" href="${request.route_url('rdv_edit', nodossier=nodossier, nolig='0')}">
|
||||
<span class="glyphicon glyphicon-calendar"></span> Nouveau rendez-vous</a>
|
||||
</p>
|
||||
<table class="table table-bordered table-condensed">
|
||||
@@ -210,10 +215,10 @@
|
||||
|
||||
<!-- PANEL DOCS ATTACHES -->
|
||||
<div id="tab_attaches" class="tab-pane fade">
|
||||
<h3>DOCUMENTS ATTACHES</h3>
|
||||
<h3 class="text-center">DOCUMENTS ATTACHES</h3>
|
||||
<p>
|
||||
<a href="${request.application_url}/upload_doc/${nodossier}" class="btn btn-success" role="button">
|
||||
<span class="glyphicon glyphicon-cloud-upload"></span> Ajouter un document</a>
|
||||
<a href="${request.application_url}/upload_doc/${nodossier}/CLT" class="btn btn-success" role="button">
|
||||
<span class="glyphicon glyphicon-plus"></span> Ajouter document</a>
|
||||
<a href="${request.application_url}/upload_img/${nodossier}/0" class="btn btn-primary" role="button">
|
||||
<span class="glyphicon glyphicon-picture"></span> Gérer les photos</a>
|
||||
</p>
|
||||
@@ -242,6 +247,37 @@
|
||||
<td class="text-center">${detail.usermaj}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h3 class="text-center">DOCUMENTS TECHNIQUES</h3>
|
||||
<p>
|
||||
<a href="${request.application_url}/upload_doc/${nodossier}/FRN" class="btn btn-success" role="button">
|
||||
<span class="glyphicon glyphicon-plus"></span> Document technique</a>
|
||||
</p>
|
||||
<table class="table table-bordered table-condensed">
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Nom du fichier</th>
|
||||
<th class="text-right">Taille</th>
|
||||
<th>Crée le</th>
|
||||
<th class="text-center">par</th>
|
||||
</tr>
|
||||
<tr tal:repeat="detail docs_techniques">
|
||||
<td class="text-center">
|
||||
<span class="glyphicon glyphicon-file" tal:condition="detail.nomfichier[-3:]=='pdf'"></span>
|
||||
<span class="glyphicon glyphicon-picture" tal:condition="detail.nomfichier.lower()[-3:]=='jpg'"></span>
|
||||
</td>
|
||||
<td>
|
||||
<a href="${docs_url}${detail.nomrep}/${detail.societe}/${detail.nochantier}/${detail.nomfichier}"
|
||||
target="popup"
|
||||
onclick="window.open('${docs_url}${detail.nomrep}/${detail.societe}/${detail.nochantier}/${detail.nomfichier},'popup','width=900,height=768'); return false;">
|
||||
${detail.nomfichier}
|
||||
</a>
|
||||
</td>
|
||||
<td class="text-right">${detail.taillefichier}</td>
|
||||
<td>${detail.cree_le.strftime('%d-%m-%Y')}</td>
|
||||
<td class="text-center">${detail.usermaj}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- PANEL RDF -->
|
||||
<div id="tab_rdf" class="tab-pane fade">
|
||||
@@ -274,6 +310,30 @@
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Modal : Confirmation CLOTURE -->
|
||||
<div class="modal fade" id="confirmCloture" role="dialog" aria-labelledby="confirmClotureLabel" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<h4 class="modal-title">Clôturer le dossier</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<!-- The form is placed inside the body of modal -->
|
||||
<form id="add_justif-form" class="form-horizontal" action="${url}" method="post">
|
||||
<div class="form-group">
|
||||
<p class="text-center"><b>Voulez-vous clôturer le dossier ?</b></p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">Annuler</button>
|
||||
<button type="submit" class="btn btn-warning" name="form.close">Clôturer</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</metal:block>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<span class="glyphicon glyphicon-chevron-left"></span> Retour</a>
|
||||
</p>
|
||||
|
||||
<table id="users_list" class="table table-striped table-bordered">
|
||||
<table id="rdf_list" class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Rapport</th>
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
$(document).ready(function() {
|
||||
$.fn.dataTable.moment('DD-MM-YYYY');
|
||||
$('#users_list').DataTable({
|
||||
$('#rdf_list').DataTable({
|
||||
data: dataSet,
|
||||
pageLength: 50,
|
||||
bLengthChange: false,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<div metal:fill-slot="content">
|
||||
|
||||
<div class="row">
|
||||
|
||||
<br />
|
||||
<form id="upload_doc-form" action="${url}" method="post" accept-charset="utf-8" enctype="multipart/form-data"
|
||||
data-fv-framework="bootstrap"
|
||||
data-fv-icon-valid="glyphicon glyphicon-ok"
|
||||
|
||||
166
mondumas/templates/parametres/article_edit.pt
Normal file
166
mondumas/templates/parametres/article_edit.pt
Normal file
@@ -0,0 +1,166 @@
|
||||
<metal:block use-macro="main_template">
|
||||
<div metal:fill-slot="content">
|
||||
|
||||
<div tal:condition="message" tal:content="message" class="alert alert-danger" />
|
||||
<br />
|
||||
<form id="user_edit-form" class="form-horizontal" action="${url}" method="post" tal:condition="item"
|
||||
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 id="tarif" class="tab-pane fade in active">
|
||||
<br />
|
||||
<div class="form-group">
|
||||
<label class="control-label col-xs-2" for="REF">Référence</label>
|
||||
<div class="col-xs-6">
|
||||
<input class="form-control" type="text" id="REF" name="REF" value="${item.REF}"
|
||||
placeholder="10 caractères maximum"
|
||||
data-fv-notempty="true"
|
||||
data-fv-notempty-message="La référence est obligatoire"
|
||||
data-fv-stringlength="true"
|
||||
data-fv-stringlength-max="10"
|
||||
data-fv-stringlength-message="10 caractères maximum" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-xs-2">Famille</label>
|
||||
<div class="col-xs-6">
|
||||
<select class="form-control" id="FAM" name="FAM">
|
||||
<tal:block tal:repeat="famille familles">
|
||||
<option value="${famille}" tal:attributes="selected famille[0]==item.FAM and 'selected' or None">${famille}</option>
|
||||
</tal:block>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-xs-2" for="LIBART">Libellé</label>
|
||||
<div class="col-xs-6">
|
||||
<input class="form-control" type="text" id="LIBART" name="LIBART" value="${item.LIBART}"
|
||||
placeholder="45 caractères maximum"
|
||||
data-fv-notempty="true"
|
||||
data-fv-notempty-message="Le libellé est obligatoire"
|
||||
data-fv-stringlength="true"
|
||||
data-fv-stringlength-max="45"
|
||||
data-fv-stringlength-message="45 caractères maximum" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-xs-2" for="LIBCOMPL1">Libellé compl. 1</label>
|
||||
<div class="col-xs-6">
|
||||
<input class="form-control" type="text" id="LIBCOMPL1" name="LIBCOMPL1" value="${item.LIBCOMPL1}"
|
||||
placeholder="45 caractères maximum"
|
||||
data-fv-stringlength="true"
|
||||
data-fv-stringlength-max="45"
|
||||
data-fv-stringlength-message="45 caractères maximum" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-xs-2" for="LIBCOMPL2">Libellé compl. 2</label>
|
||||
<div class="col-xs-6">
|
||||
<input class="form-control" type="text" id="LIBCOMPL2" name="LIBCOMPL2" value="${item.LIBCOMPL2}"
|
||||
placeholder="45 caractères maximum"
|
||||
data-fv-stringlength="true"
|
||||
data-fv-stringlength-max="45"
|
||||
data-fv-stringlength-message="45 caractères maximum" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-xs-2" for="LIBCOMPL3">Libellé compl. 3</label>
|
||||
<div class="col-xs-6">
|
||||
<input class="form-control" type="text" id="LIBCOMPL3" name="LIBCOMPL3" value="${item.LIBCOMPL3}"
|
||||
placeholder="45 caractères maximum"
|
||||
data-fv-stringlength="true"
|
||||
data-fv-stringlength-max="45"
|
||||
data-fv-stringlength-message="45 caractères maximum" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-xs-2" for="LIBCOMPL4">Libellé compl. 4</label>
|
||||
<div class="col-xs-6">
|
||||
<input class="form-control" type="text" id="LIBCOMPL4" name="LIBCOMPL4" value="${item.LIBCOMPL4}"
|
||||
placeholder="45 caractères maximum"
|
||||
data-fv-stringlength="true"
|
||||
data-fv-stringlength-max="45"
|
||||
data-fv-stringlength-message="45 caractères maximum" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-xs-2 control-label">Prix HT 1</label>
|
||||
<div class="col-xs-6">
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon"><i class="glyphicon glyphicon-euro"></i></span>
|
||||
<input class="form-control" type="text" id="PRIXHT1" name="PRIXHT1" value="${item.PRIXHT1}"
|
||||
data-fv-numeric="true"
|
||||
data-fv-numeric-message="Le montant est invalide" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-xs-2 control-label">Prix HT 2</label>
|
||||
<div class="col-xs-6">
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon"><i class="glyphicon glyphicon-euro"></i></span>
|
||||
<input class="form-control" type="text" id="PRIXHT2" name="PRIXHT2" value="${item.PRIXHT2}"
|
||||
data-fv-numeric="true"
|
||||
data-fv-numeric-message="Le montant est invalide" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-xs-2" for="ref_cli1">Réf. client 1</label>
|
||||
<div class="col-xs-6">
|
||||
<input class="form-control" type="text" id="ref_cli1" name="ref_cli1" value="${item.ref_cli1}"
|
||||
placeholder="20 caractères maximum"
|
||||
data-fv-stringlength="true"
|
||||
data-fv-stringlength-max="20"
|
||||
data-fv-stringlength-message="20 caractères maximum" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-xs-2" for="ref_cli2">Réf. client 2</label>
|
||||
<div class="col-xs-6">
|
||||
<input class="form-control" type="text" id="ref_cli2" name="ref_cli2" value="${item.ref_cli2}"
|
||||
placeholder="20 caractères maximum"
|
||||
data-fv-stringlength="true"
|
||||
data-fv-stringlength-max="20"
|
||||
data-fv-stringlength-message="20 caractères maximum" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-xs-2" for="access">Dernière modif.</label>
|
||||
<div class="col-xs-7">
|
||||
<p class="form-control-static" tal:condition="item.REF != '0'">${item.modif_le.strftime('%d/%m/%Y - %H:%M')}</p>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
|
||||
<div class="form-group">
|
||||
<div class="col-xs-offset-2 col-xs-10">
|
||||
<div class="form-group">
|
||||
<a class="btn btn-default" href="${request.application_url}/articles">
|
||||
<span class="glyphicon glyphicon-chevron-left"></span> Annuler</a>
|
||||
<button class="btn btn-primary" type="submit" name="form.submitted">
|
||||
<span class="glyphicon glyphicon-ok"></span> Enregistrer</button>
|
||||
<button class="btn btn-warning" type="submit" name="form.deleted"
|
||||
tal:condition="item.REF != '0'">
|
||||
<span class="glyphicon glyphicon-remove"></span> Supprimer</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<br />
|
||||
<br />
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$('#user_edit-form').formValidation();
|
||||
$('form input').on('keypress', function(e) {
|
||||
return e.which !== 13;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</div>
|
||||
</metal:block>
|
||||
70
mondumas/templates/parametres/articles.pt
Normal file
70
mondumas/templates/parametres/articles.pt
Normal file
@@ -0,0 +1,70 @@
|
||||
<metal:block use-macro="main_template">
|
||||
<div metal:fill-slot="content">
|
||||
|
||||
<form method="POST" id="frm" class="form-horizontal">
|
||||
<div class="form-group">
|
||||
<label class="control-label col-md-1">Famille : </label>
|
||||
<div class="col-md-3">
|
||||
<select class="form-control" id="famille" name="famille" onChange="$('#frm').submit()">
|
||||
<tal:block tal:repeat="item familles">
|
||||
<option value="${item}" tal:attributes="selected famille==item and 'selected' or None">${item}</option>
|
||||
</tal:block>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<p>
|
||||
<a href="${request.application_url}/parametres" class="btn btn-default" role="button">
|
||||
<span class="glyphicon glyphicon-chevron-left"></span> Retour</a>
|
||||
<a href="${request.application_url}/article_edit/0" class="btn btn-success" role="button">
|
||||
<span class="glyphicon glyphicon-plus"></span> Nouvel article</a>
|
||||
</p>
|
||||
|
||||
<table id="articles_list" class="table table-condensed table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Référence</th>
|
||||
<th>Libellé</th>
|
||||
<th>Libellé 2</th>
|
||||
<th class="text-right">Prix HT 1</th>
|
||||
<th class="text-right">Prix HT 2</th>
|
||||
<th>Réf. client 1</th>
|
||||
<th>Réf. client 2</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
|
||||
<br />
|
||||
<br />
|
||||
|
||||
<script type="text/javascript">
|
||||
var dataSet = ${dt_data};
|
||||
|
||||
$(document).ready(function() {
|
||||
$.fn.dataTable.moment('DD-MM-YYYY HH:mm');
|
||||
$('#articles_list').DataTable({
|
||||
data: dataSet,
|
||||
pageLength: 100,
|
||||
bLengthChange: false,
|
||||
searching: false,
|
||||
language: {
|
||||
url: 'https://cdn.datatables.net/plug-ins/1.10.16/i18n/French.json'
|
||||
},
|
||||
columnDefs: [
|
||||
{ className: "text-right", "targets": [3,4] },
|
||||
{ targets: 0,
|
||||
render: function (data, type, full, meta) {
|
||||
// ajouter un link vers le formulaire
|
||||
return '<a href="/article_edit/' + data + '">' + data + '</a>';
|
||||
},
|
||||
},
|
||||
]
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
</div><!-- content -->
|
||||
</metal:block>
|
||||
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
<metal:block use-macro="main_template">
|
||||
<div metal:fill-slot="content">
|
||||
<div metal:fill-slot="content">logged_in
|
||||
|
||||
<div id="jquery" class="container-fluid">
|
||||
<div class="row text-center">
|
||||
<div class="col-sm-3">
|
||||
<a href="${request.application_url}/users_list"><span class="glyphicon glyphicon-user logo-primary"></span></a>
|
||||
<a href="${request.application_url}/users"><span class="glyphicon glyphicon-user logo-primary"></span></a>
|
||||
<h4>UTILISATEURS</h4>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<a href="${request.application_url}/rdf_causes_list"><span class="glyphicon glyphicon-tint logo-primary"></span></a>
|
||||
<a href="${request.application_url}/articles"><span class="glyphicon glyphicon-list logo-primary"></span></a>
|
||||
<h4>ARTICLES</h4>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<a href="${request.application_url}/rdf_causes"><span class="glyphicon glyphicon-list logo-primary"></span></a>
|
||||
<h4>RDF : CAUSES</h4>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<a href="${request.application_url}/text_list"><span class="glyphicon glyphicon-list-alt logo-primary"></span></a>
|
||||
<a href="${request.application_url}/text_list"><span class="glyphicon glyphicon-list logo-primary"></span></a>
|
||||
<h4>TEXTES EMAIL</h4>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-3 col-sm-9">
|
||||
<a class="btn btn-default" href="${request.route_url('rdf_causes_list')">
|
||||
<a class="btn btn-default" href="${request.route_url('rdf_causes')">
|
||||
<span class="glyphicon glyphicon-arrow-left"></span> Annuler</a>
|
||||
<button class="btn btn-primary" type="submit" name="form.submitted">
|
||||
<span class="glyphicon glyphicon-ok"></span> Enregistrer</button>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<span class="glyphicon glyphicon-plus"></span> Nouvelle cause</a>
|
||||
</p>
|
||||
|
||||
<table id="rdf_causes_list" class="table table-striped table-bordered">
|
||||
<table id="rdf_causes" class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Code</th>
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
$(document).ready(function() {
|
||||
$.fn.dataTable.moment('DD/MM/YYYY - HH:mm');
|
||||
$('#rdf_causes_list').DataTable({
|
||||
$('#rdf_causes').DataTable({
|
||||
data: dataSet,
|
||||
pageLength: 50,
|
||||
bLengthChange: false,
|
||||
@@ -92,7 +92,7 @@
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-3 col-sm-9">
|
||||
<div class="form-group">
|
||||
<a class="btn btn-default" href="/users_list"><span class="glyphicon glyphicon-chevron-left"></span> Retour</a>
|
||||
<a class="btn btn-default" href="/users"><span class="glyphicon glyphicon-chevron-left"></span> Retour</a>
|
||||
<button class="btn btn-primary" type="submit" name="form.submitted">
|
||||
<span class="glyphicon glyphicon-ok"></span> Enregistrer</button>
|
||||
<button class="btn btn-danger" type="submit" name="form.deleted"
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<span class="glyphicon glyphicon-plus"></span> Nouveau utilisateur</a>
|
||||
</p>
|
||||
|
||||
<table id="users_list_ua" class="table table-striped table-bordered">
|
||||
<table id="users_ua" class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Dern cnx</th>
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
$(document).ready(function() {
|
||||
$.fn.dataTable.moment('DD/MM/YYYY - HH:mm');
|
||||
$('#users_list_ua').DataTable({
|
||||
$('#users_ua').DataTable({
|
||||
data: dataSet,
|
||||
pageLength: 50,
|
||||
bLengthChange: false,
|
||||
|
||||
Reference in New Issue
Block a user