Actualizar contabilidad.html

This commit is contained in:
2026-03-01 16:00:13 +00:00
parent b81014a06c
commit f3e5e4bea3

View File

@@ -221,7 +221,7 @@
<div> <div>
<label class="text-[10px] font-black text-slate-400 uppercase tracking-widest ml-1">Asignar a Operario</label> <label class="text-[10px] font-black text-slate-400 uppercase tracking-widest ml-1">Asignar a Operario</label>
<select id="convOperator" class="w-full border-2 border-slate-200 rounded-xl px-3 py-2 text-sm font-bold outline-none focus:border-emerald-500 text-blue-600"> <select id="convOperator" onchange="handleOperatorChange(this.value)" class="w-full border-2 border-slate-200 rounded-xl px-3 py-2 text-sm font-bold outline-none focus:border-emerald-500 text-blue-600">
<option value="AUTO">⚡ MANDAR A LA BOLSA (AUTO)</option> <option value="AUTO">⚡ MANDAR A LA BOLSA (AUTO)</option>
</select> </select>
</div> </div>
@@ -245,6 +245,13 @@
</div> </div>
</div> </div>
<div class="flex gap-2">
<button onclick="document.getElementById('convertModal').classList.add('hidden')" class="flex-1 bg-slate-100 text-slate-600 font-bold py-3 rounded-xl hover:bg-slate-200 transition-colors">Cancelar</button>
<button onclick="confirmConversion()" class="flex-1 bg-emerald-500 text-white font-black uppercase tracking-widest shadow-md py-3 rounded-xl hover:bg-emerald-600 transition-colors">Procesar</button>
</div>
</div>
</div>
<div id="toast" class="fixed bottom-8 right-8 bg-slate-900 text-white px-6 py-3 rounded-2xl shadow-2xl hidden z-[200] font-bold text-sm flex items-center gap-2 transition-all"></div> <div id="toast" class="fixed bottom-8 right-8 bg-slate-900 text-white px-6 py-3 rounded-2xl shadow-2xl hidden z-[200] font-bold text-sm flex items-center gap-2 transition-all"></div>
<script src="js/layout.js"></script> <script src="js/layout.js"></script>