calebasse / calebasse / facturation / templates / facturation / close.html @ fcfb4f5b
1 |
<div id="close-dlg"> |
---|---|
2 |
{% if service_name == "CMPP" and invoicing.status == "open" %} |
3 |
Êtes-vous sûr de vouloir clôre la facturation {{ invoicing.seq_id }} débutée le {{ invoicing.start_date }} en date du |
4 |
<input type="text" value="{{ date|date:"d/m/Y" }}" id="close-date" readonly="readonly" size="10"/> |
5 |
<script type="text/javascript"> |
6 |
$('#close-date').datepicker({showOn: 'button'}); |
7 |
</script>
|
8 |
? |
9 |
{% else %} |
10 |
Opération refusée. |
11 |
{% endif %} |
12 |
</div>
|