Revision 783a0c3c
Added by Mikaël Ates about 12 years ago
calebasse/facturation/templates/facturation/detail.html | ||
---|---|---|
244 | 244 |
{% endfor %} |
245 | 245 |
</div> |
246 | 246 |
{% else %} |
247 |
|
|
248 | 247 |
<div id="dossiers-concernes"> |
249 | 248 |
{% for patient, detail in patients_stats.items %} |
250 | 249 |
<div class="frame dossier" id="to-hide"> |
... | ... | |
274 | 273 |
</div> |
275 | 274 |
{% endfor %} |
276 | 275 |
</div> |
277 |
|
|
278 | 276 |
{% endif %} |
279 | 277 |
</div> |
280 | 278 |
{% endif %} |
281 | 279 |
{% if service_name == "CAMSP" and acts_accepted %} |
282 | 280 |
<div id="dossiers"> |
283 | 281 |
<h3>Dossiers concernés</h3> |
284 |
<p id="filtre-dossiers"> |
|
285 |
<input type="checkbox" id="hide-dossiers-cb"><label for="hide-dossiers-cb">N'afficher que les dossiers en pause facturation.</label></input> |
|
286 |
</p> |
|
287 |
<div id="dossiers-concernes"> |
|
288 |
</div> |
|
282 |
{% if invoicing.status == "closed" %} |
|
283 |
<p id="filtre-dossiers"> |
|
284 |
<input type="checkbox" id="hide-dossiers-cb"><label for="hide-dossiers-cb">N'afficher que les dossiers en pause facturation.</label></input> |
|
285 |
</p> |
|
286 |
<div id="dossiers-concernes"> |
|
287 |
{% for patient, acts in acts_accepted.items %} |
|
288 |
{% if patient.pause %} |
|
289 |
<div class="frame dossier facturable"> |
|
290 |
{% else %} |
|
291 |
<div class="frame dossier"> |
|
292 |
{% endif %} |
|
293 |
<h3><a href="../../dossiers/{{ patient.pk }}/view"> |
|
294 |
{% if patient.paper_id %}{{ patient.paper_id }}/{% endif %}{{ patient.pk }} {{ patient.first_name }} <strong>{{ patient.last_name }}</strong></a></h3> |
|
295 |
<div class="info"> |
|
296 |
</div> |
|
297 |
{% if patient.pause %}<p id="pause-fac"><span class="hi-fact">Le dossier patient est en pause facturation.</span></p>{% endif %} |
|
298 |
<ul> |
|
299 |
{% for act in acts %} |
|
300 |
<li>{{ act.date }} {{ act.act_type }}</li> |
|
301 |
{% endfor %} |
|
302 |
</ul> |
|
303 |
</div> |
|
304 |
{% endfor %} |
|
305 |
</div> |
|
306 |
{% else %} |
|
307 |
<div id="dossiers-concernes"> |
|
308 |
{% for patient, acts in acts_accepted.items %} |
|
309 |
<div class="frame dossier"> |
|
310 |
<h3><a href="../../dossiers/{{ patient.pk }}/view"> |
|
311 |
{% if patient.paper_id %}{{ patient.paper_id }}/{% endif %}{{ patient.pk }} {{ patient.first_name }} <strong>{{ patient.last_name }}</strong></a></h3> |
|
312 |
<ul> |
|
313 |
{% for act in acts %} |
|
314 |
<li>{{ act.date }} {{ act.act_type }}</li> |
|
315 |
{% endfor %} |
|
316 |
</ul> |
|
317 |
</div> |
|
318 |
{% endfor %} |
|
319 |
</div> |
|
320 |
{% endif %} |
|
289 | 321 |
</div> |
290 | 322 |
{% endif %} |
291 | 323 |
{% if service_name == "SESSAD DYS" or service_name == "SESSAD TED" %} |
292 | 324 |
{% if acts_accepted %} |
293 |
<div id="dossiers"> |
|
294 |
<h3>Dossiers concernés</h3> |
|
295 |
<p id="filtre-dossiers"> |
|
296 |
<input type="checkbox" id="hide-dossiers-cb"><label for="hide-dossiers-cb">N'afficher que les dossiers en pause facturation ou |
|
297 |
avec des actes décomptables mais sans notification valide.</label></input> |
|
298 |
</p> |
|
299 |
<div id="dossiers-concernes"> |
|
325 |
<div id="dossiers"> |
|
326 |
<h3>Dossiers concernés</h3> |
|
327 |
{% if invoicing.status == "open" or invoicing.status == "closed" %} |
|
328 |
<p id="filtre-dossiers"> |
|
329 |
<input type="checkbox" id="hide-dossiers-cb"><label for="hide-dossiers-cb">N'afficher que les dossiers en pause facturation ou |
|
330 |
avec des actes décomptables mais sans notification valide.</label></input> |
|
331 |
</p> |
|
332 |
<div id="dossiers-concernes"> |
|
333 |
</div> |
|
334 |
{% else %} |
|
335 |
{% endif %} |
|
300 | 336 |
</div> |
301 |
</div> |
|
302 | 337 |
{% endif %} |
303 | 338 |
{% endif %} |
304 | 339 |
|
Also available in: Unified diff
facturation : Show invoicing details for the CAMSP.