Implementeaza planul aprobat din docs/raport-comparatie-mockup-5.16.md (T-1..T-9): - T-1/T-8: rand lista 4->2 linii (placuta primar + cod RAR · operatie · data + pill), fallback placuta, eticheta-problema 10px->--fs-xs (_submissions.html, base.html) - T-2: pill slim restilat fill-tint + dot 7px + text colorat per stare (base.html) - T-3: bug 4a coliziune pill/vehicul in preview — col-stare 104->140px (base.html) - T-4: preview 8->5 coloane (scos #, KM, Note; motivul -> title pe pill) - T-5: titlu sectiune "Trimiterile tale" -> sr-only (a11y) + badge/export discret - T-6: linia plan N/60 in corp doar pe avertizare; consum normal in badge+burger - T-7: guard chenar gol chips extra (_chips_prestatii.html) - T-9: "Anuleaza"->"Renunta"; nume operatie emfatic bold Fix boot: init_db reincarca seedul de ~17k operatii (5.18) pe FIECARE pornire, pe API + worker concurent -> "database is locked" la al doilea proces. Guard "_if_empty" pe mapping_suggestions (ca seed_nomenclator_if_empty) -> boot rapid, fara cursa. Teste actualizate (slim 2-linii, fallback placuta, plan in burger). TODOS.md: defer trackuit (eroare HTMX lista, retokenizare px, diacritice). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
235 lines
12 KiB
HTML
235 lines
12 KiB
HTML
{#
|
||
_chips_prestatii.html — sectiunea de prestatii chips (E4, server-driven via /form-chips).
|
||
|
||
Re-randata de endpoint-ul /form-chips la fiecare add/remove de chip.
|
||
Inclusa si din _form_editare.html pentru randarea initiala.
|
||
|
||
Starea chip-urilor traieste in input-uri hidden din form (NU in DB mid-edit).
|
||
Fiecare operatie are un picker propriu cand e nemapata (E4 binding op<->cod).
|
||
Reveal odometru initial semnalat prin data-has-r-odo="true" si chip-warn pe R-ODO/I-ODO.
|
||
|
||
Context vars (toate cu defaults):
|
||
prestatii_chips — list of {cod_prestatie, cod_op_service, denumire}
|
||
nomenclator_rar — list of {cod_prestatie, nume_prestatie} pentru picker
|
||
has_r_odo — True daca orice chip e R-ODO sau I-ODO (server-computed)
|
||
form_chips_url — URL pentru HTMX; default '/form-chips'
|
||
chips_section_id — ID div (default 'chips-section')
|
||
csrf_token — CSRF (trecut prin hx-include din form parinte)
|
||
#}
|
||
{% set _chips_url = form_chips_url or '/form-chips' %}
|
||
{% set _sec_id = chips_section_id or 'chips-section' %}
|
||
{% set _chips = prestatii_chips or [] %}
|
||
{% set _has_ops = _chips | selectattr('cod_op_service') | list | length > 0 %}
|
||
{# US-009: chips_submission_id e setat din _detaliu_ctx cand chips sunt randate in modalul de detaliu.
|
||
Lipseste cand _chips_prestatii.html e rerandat via /form-chips (stateless, fara submission). #}
|
||
{% set _sub_id = chips_submission_id if chips_submission_id is defined else none %}
|
||
|
||
<div id="{{ _sec_id }}" data-has-r-odo="{{ 'true' if has_r_odo else 'false' }}"
|
||
aria-live="polite" aria-label="Prestatii cod RAR">
|
||
|
||
{# ===== Input-uri hidden pentru starea curenta a chip-urilor =====
|
||
TOATE itemele emit 3 hidden inputs (cod poate fi "" pentru unmapped).
|
||
Paralele index-by-index: cod_prestatie[i], chip_op_service[i], chip_denumire[i].
|
||
Filtrate la submit de post_corectie_trimitere (coduri goale = neschimbate). #}
|
||
{% for chip in _chips %}
|
||
<input type="hidden" name="cod_prestatie" value="{{ chip.cod_prestatie or '' }}">
|
||
<input type="hidden" name="chip_op_service" value="{{ chip.cod_op_service or '' }}">
|
||
<input type="hidden" name="chip_denumire" value="{{ chip.denumire or '' }}">
|
||
{% endfor %}
|
||
|
||
<div class="camp-slim" style="margin-bottom:8px;">
|
||
<label>Prestatii — cod RAR pe fiecare operatie</label>
|
||
|
||
{% if _has_ops %}
|
||
{# ===== Mod operatii: UN picker PE operatie (E4 binding) ===== #}
|
||
{% for chip in _chips %}
|
||
{% if chip.cod_op_service %}
|
||
{% set _is_warn = chip.cod_prestatie in ('R-ODO', 'I-ODO') %}
|
||
{% set _nemapat = not chip.cod_prestatie %}
|
||
<div class="op-row {% if _nemapat %}op-row-warn{% endif %}" style="margin-bottom:6px;">
|
||
<span class="op-row-name">
|
||
{{ chip.cod_op_service }}
|
||
{% if chip.denumire and chip.denumire != chip.cod_op_service %}
|
||
<span class="muted" style="font-weight:400;font-size:11px;"> — {{ chip.denumire }}</span>
|
||
{% endif %}
|
||
{% if _nemapat %}
|
||
<span style="color:var(--warn);font-size:10px;font-weight:400;"> · lipsa cod</span>
|
||
{% endif %}
|
||
</span>
|
||
<span style="display:flex;align-items:center;gap:8px;">
|
||
{% if chip.cod_prestatie %}
|
||
{# ===== Operatie mapata: chip cu × ===== #}
|
||
<span class="chip {% if _is_warn %}chip-warn{% endif %}"
|
||
aria-label="Prestatie {{ chip.cod_prestatie }} adaugata pentru {{ chip.cod_op_service }}">
|
||
{{ chip.cod_prestatie }}
|
||
<button type="button" class="chip-del"
|
||
hx-post="{{ _chips_url }}"
|
||
hx-include="closest form"
|
||
hx-target="#{{ _sec_id }}"
|
||
hx-swap="outerHTML"
|
||
hx-vals='{"chips_action":"remove","chips_remove_index":{{ loop.index0 }}}'
|
||
aria-label="Sterge codul {{ chip.cod_prestatie }} pentru {{ chip.cod_op_service }}">
|
||
×
|
||
</button>
|
||
</span>
|
||
{# US-009: "salveaza ca regula op->cod" — apare doar cand submission_id e cunoscut
|
||
(in modalul de detaliu, nu la re-randarea stateless via /form-chips).
|
||
Reuse EXACT save_mapping + reresolve_account via endpoint dedicat.
|
||
hx-include="closest form" propaga csrf_token din form-ul parinte. #}
|
||
<span id="save-rule-slot-{{ loop.index0 }}" class="save-rule-slot">
|
||
{% if _sub_id and chip.cod_op_service and chip.cod_prestatie %}
|
||
<button type="button"
|
||
style="font-size:10px;color:var(--muted);background:none;border:none;cursor:pointer;text-decoration:underline;padding:0;margin-left:4px;line-height:1;"
|
||
hx-post="/trimitere/{{ _sub_id }}/salveaza-regula-chip"
|
||
hx-include="closest form"
|
||
hx-target="#detaliu-modal-body"
|
||
hx-swap="innerHTML"
|
||
hx-vals='{"salveaza_op":{{ chip.cod_op_service | tojson }},"salveaza_cod":{{ chip.cod_prestatie | tojson }}}'
|
||
aria-label="Salveaza regula {{ chip.cod_op_service }} -> {{ chip.cod_prestatie }}">
|
||
salveaza ca regula
|
||
</button>
|
||
{% endif %}
|
||
</span>
|
||
{% else %}
|
||
{# ===== Operatie nemapata: picker galben cu "alege cod RAR" ===== #}
|
||
<select name="chips_add_cod_{{ loop.index0 }}"
|
||
id="picker-op-{{ loop.index0 }}"
|
||
aria-label="Alege cod RAR pentru {{ chip.cod_op_service }}"
|
||
style="min-width:160px;font-size:11px;height:26px;">
|
||
<option value="">— alege cod RAR —</option>
|
||
{% for n in (nomenclator_rar or []) %}
|
||
<option value="{{ n.cod_prestatie }}">{{ n.cod_prestatie }} — {{ n.nume_prestatie }}</option>
|
||
{% endfor %}
|
||
</select>
|
||
<button type="button"
|
||
class="add-code"
|
||
hx-post="{{ _chips_url }}"
|
||
hx-include="closest form"
|
||
hx-target="#{{ _sec_id }}"
|
||
hx-swap="outerHTML"
|
||
hx-vals='{"chips_action":"add","chips_add_op_index":{{ loop.index0 }}}'
|
||
aria-label="Adauga cod RAR pentru {{ chip.cod_op_service }}">
|
||
+ Adauga
|
||
</button>
|
||
{% endif %}
|
||
</span>
|
||
</div>
|
||
{% endif %}
|
||
{% endfor %}
|
||
|
||
{# ===== US-005 (5.16): Chips extra + picker '+ Adauga alta operatie / cod RAR' in mod operatii ===== #}
|
||
{# Chips extra: cod_op_service gol, cod_prestatie setat — afisate flat cu × (reuse remove_flat).
|
||
T-7 (5.16): containerul .chips se randeaza DOAR cand exista chips extra — altfel ramanea
|
||
un chenar gol nefinisat sub randurile de operatie. #}
|
||
{% set _extra_chips = _chips | rejectattr('cod_op_service') | selectattr('cod_prestatie') | list %}
|
||
{% if _extra_chips %}
|
||
<div class="chips" role="group" aria-label="Coduri RAR suplimentare" style="margin-top:4px;">
|
||
{% for chip in _extra_chips %}
|
||
{% set _is_warn_extra = chip.cod_prestatie in ('R-ODO', 'I-ODO') %}
|
||
<span class="chip {% if _is_warn_extra %}chip-warn{% endif %}"
|
||
aria-label="Cod RAR suplimentar {{ chip.cod_prestatie }}">
|
||
{{ chip.cod_prestatie }}
|
||
<button type="button" class="chip-del"
|
||
hx-post="{{ _chips_url }}"
|
||
hx-include="closest form"
|
||
hx-target="#{{ _sec_id }}"
|
||
hx-swap="outerHTML"
|
||
hx-vals='{"chips_action":"remove_flat","chips_remove_cod":"{{ chip.cod_prestatie }}"}'
|
||
aria-label="Sterge codul suplimentar {{ chip.cod_prestatie }}">×</button>
|
||
</span>
|
||
{% endfor %}
|
||
</div>
|
||
{% endif %}
|
||
{% if nomenclator_rar %}
|
||
<span style="display:inline-flex;align-items:center;gap:4px;margin-top:4px;">
|
||
<select name="chips_add_cod_flat"
|
||
aria-label="Adauga cod RAR suplimentar"
|
||
style="min-width:160px;font-size:11px;height:26px;border:1px dashed color-mix(in srgb,var(--accent) 55%,var(--line));border-radius:5px;background:transparent;color:var(--accent);">
|
||
<option value="">+ Adauga alta operatie / cod RAR</option>
|
||
{% for n in nomenclator_rar %}
|
||
<option value="{{ n.cod_prestatie }}">{{ n.cod_prestatie }} — {{ n.nume_prestatie }}</option>
|
||
{% endfor %}
|
||
</select>
|
||
<button type="button"
|
||
class="add-code"
|
||
hx-post="{{ _chips_url }}"
|
||
hx-include="closest form"
|
||
hx-target="#{{ _sec_id }}"
|
||
hx-swap="outerHTML"
|
||
hx-vals='{"chips_action":"add_extra"}'
|
||
aria-label="Adauga cod RAR suplimentar la trimitere">
|
||
+
|
||
</button>
|
||
</span>
|
||
{% else %}
|
||
{# T-D1/T-E5 (5.16): empty state in mod operatii cand nomenclatorul lipseste #}
|
||
<div class="chips-nom-gol" style="font-size:11px;color:var(--warn);padding:4px 0;margin-top:4px;">
|
||
Nomenclator indisponibil — adaugarea de coduri suplimentare nu e posibila.
|
||
</div>
|
||
{% endif %}
|
||
{% if chips_extra_error %}
|
||
{# T-C1/T-E4 (5.16): semnal vizibil cand add_extra are select gol sau cod invalid #}
|
||
<div class="chips-extra-error" style="font-size:11px;color:var(--err);padding:2px 0;" role="alert">
|
||
Selecteaza un cod RAR din lista inainte de a adauga.
|
||
</div>
|
||
{% endif %}
|
||
|
||
{% else %}
|
||
{# ===== Mod plat: lista de coduri libere (corectie pura, fara op_service) ===== #}
|
||
<div class="chips" role="group" aria-label="Coduri RAR selectate">
|
||
{% for chip in _chips %}
|
||
{% if chip.cod_prestatie %}
|
||
{% set _is_warn_flat = chip.cod_prestatie in ('R-ODO', 'I-ODO') %}
|
||
<span class="chip {% if _is_warn_flat %}chip-warn{% endif %}"
|
||
aria-label="Prestatie {{ chip.cod_prestatie }}">
|
||
{{ chip.cod_prestatie }}
|
||
<button type="button" class="chip-del"
|
||
hx-post="{{ _chips_url }}"
|
||
hx-include="closest form"
|
||
hx-target="#{{ _sec_id }}"
|
||
hx-swap="outerHTML"
|
||
hx-vals='{"chips_action":"remove_flat","chips_remove_cod":"{{ chip.cod_prestatie }}"}'
|
||
aria-label="Sterge codul {{ chip.cod_prestatie }}">×</button>
|
||
</span>
|
||
{% endif %}
|
||
{% endfor %}
|
||
{# Picker adaugare cod nou in mod plat #}
|
||
{% if nomenclator_rar %}
|
||
<span style="display:inline-flex;align-items:center;gap:4px;">
|
||
<select name="chips_add_cod_flat"
|
||
aria-label="Adauga cod RAR nou"
|
||
style="font-size:11px;height:22px;border:1px dashed color-mix(in srgb,var(--accent) 55%,var(--line));border-radius:5px;background:transparent;color:var(--accent);">
|
||
<option value="">+ cod</option>
|
||
{% for n in nomenclator_rar %}
|
||
<option value="{{ n.cod_prestatie }}">{{ n.cod_prestatie }} — {{ n.nume_prestatie }}</option>
|
||
{% endfor %}
|
||
</select>
|
||
<button type="button"
|
||
class="add-code"
|
||
hx-post="{{ _chips_url }}"
|
||
hx-include="closest form"
|
||
hx-target="#{{ _sec_id }}"
|
||
hx-swap="outerHTML"
|
||
hx-vals='{"chips_action":"add_flat"}'
|
||
aria-label="Adauga cod RAR selectat in lista">
|
||
+
|
||
</button>
|
||
</span>
|
||
{% else %}
|
||
{# T-D1/T-E5 (5.16): empty state in mod plat cand nomenclatorul lipseste #}
|
||
<div class="chips-nom-gol" style="font-size:11px;color:var(--warn);padding:4px 0;">
|
||
Nomenclator indisponibil — nu se pot adauga coduri RAR momentan.
|
||
</div>
|
||
{% endif %}
|
||
</div>
|
||
{% endif %}
|
||
|
||
{# Hint discret fara chips (debut) #}
|
||
{% if not _chips %}
|
||
<div style="font-size:10px;color:var(--muted);padding:4px 0;">
|
||
Niciun cod RAR inca — alege din picker (sus) sau adauga prin mapare.
|
||
</div>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|