Files
ap_pos/styles.css
Marco Gallegos 43eca8269e feat: Implement unified products table with anticipos management
- Added unified table for services, courses, and anticipos in Products tab
- Implemented table sorting by folio, date, appointment, and description
- Added filtering by product type and real-time search functionality
- Created action buttons with icons for edit, cancel/reactivate, and delete
- Added special handling for anticipos with appointment date/time fields
- Fixed JavaScript conflicts and function naming issues
- Integrated with existing product management system
- Added responsive design with category badges and status indicators

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-02 15:07:32 -06:00

1286 lines
22 KiB
CSS

/* --- Estilos Minimalistas y Elegantes --- */
/* Paleta de colores:
- Fondo: #f8f9fa (gris muy claro)
- Texto principal: #212529 (casi negro)
- Bordes/Divisores: #dee2e6 (gris claro)
- Primario: #007bff (azul)
- Secundario: #6c757d (gris medio)
*/
/* Estilos generales y tipografías */
body {
font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
margin: 0;
background-color: #f8f9fa;
color: #212529;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container {
max-width: 800px;
margin: 30px auto;
padding: 25px 30px;
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
h1, h2, h3 {
font-family: 'Montserrat', sans-serif;
font-weight: 600;
color: #212529;
}
h2 {
font-size: 22px;
border-bottom: 1px solid #dee2e6;
padding-bottom: 12px;
margin-top: 0;
margin-bottom: 25px;
}
h3 {
font-size: 18px;
}
/* --- Controles de filtrado y búsqueda --- */
.filter-controls {
margin-bottom: 20px;
padding: 15px;
background: #f8f9fa;
border-radius: 6px;
border: 1px solid #dee2e6;
}
.filter-row {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 15px;
align-items: end;
}
@media (max-width: 768px) {
.filter-row {
grid-template-columns: 1fr;
}
}
/* --- Estilos para tabla unificada --- */
.sort-icon {
font-size: 12px;
margin-left: 5px;
color: #6c757d;
}
th[onclick] {
cursor: pointer;
user-select: none;
}
th[onclick]:hover {
background-color: #f8f9fa;
}
.action-buttons {
display: flex;
gap: 5px;
justify-content: center;
}
.btn-icon {
background: none;
border: none;
padding: 5px;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.2s;
font-size: 16px;
}
.btn-icon:hover {
background-color: #f8f9fa;
}
.btn-icon.btn-edit {
color: #007bff;
}
.btn-icon.btn-cancel {
color: #ffc107;
}
.btn-icon.btn-delete {
color: #dc3545;
}
.btn-icon.btn-edit:hover {
background-color: #e7f3ff;
}
.btn-icon.btn-cancel:hover {
background-color: #fff3cd;
}
.btn-icon.btn-delete:hover {
background-color: #f8d7da;
}
/* --- Campos adicionales para anticipos --- */
#anticipo-fields {
margin-top: 15px;
padding: 15px;
background: #f8f9fa;
border-radius: 6px;
border: 1px solid #dee2e6;
}
/* --- Estados de productos --- */
.product-status {
padding: 3px 8px;
border-radius: 12px;
font-size: 12px;
font-weight: 500;
text-align: center;
}
.status-active {
background-color: #d4edda;
color: #155724;
}
.status-cancelled {
background-color: #f8d7da;
color: #721c24;
}
.category-badge {
padding: 3px 8px;
border-radius: 12px;
font-size: 11px;
font-weight: 500;
text-transform: uppercase;
}
.category-service {
background-color: #cce5ff;
color: #0066cc;
}
.category-course {
background-color: #d1ecf1;
color: #0c5460;
}
.category-anticipo {
background-color: #fff3cd;
color: #856404;
}
.section {
margin-bottom: 40px;
}
/* Formularios */
.form-grid {
display: grid;
grid-template-columns: 160px 1fr;
gap: 18px;
align-items: center;
}
/* Campos de fecha y hora mejorados */
.date-time-container {
display: flex;
align-items: center;
gap: 8px;
}
.date-field {
width: 50px !important;
text-align: center;
padding: 8px 4px !important;
font-size: 14px;
}
.date-field-year {
width: 70px !important;
text-align: center;
padding: 8px 4px !important;
font-size: 14px;
}
.date-separator {
font-weight: bold;
color: #6c757d;
font-size: 16px;
}
.time-select {
min-width: 160px;
font-size: 14px;
}
/* Nuevos estilos modernos para el POS */
.form-modern {
display: flex;
flex-direction: column;
gap: 25px;
max-width: 800px;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}
.form-group label {
font-weight: 600;
color: #495057;
font-size: 14px;
text-align: left;
margin: 0;
}
.form-section {
background: #f8f9fa;
padding: 20px;
border-radius: 8px;
border: 1px solid #dee2e6;
}
.form-section h3 {
margin: 0 0 15px 0;
color: #343a40;
font-size: 16px;
font-weight: 600;
}
.products-container {
display: flex;
flex-direction: column;
gap: 15px;
}
.product-selector {
display: grid;
grid-template-columns: 150px 1fr 80px 100px;
gap: 12px;
align-items: end;
}
.product-select {
min-width: 200px;
}
.quantity-input {
width: 70px !important;
text-align: center;
padding: 8px 4px !important;
}
.btn-add {
background-color: #28a745;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: background-color 0.2s;
}
.btn-add:hover {
background-color: #218838;
}
.selected-products {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 10px;
}
.product-item {
display: grid;
grid-template-columns: 1fr 80px 100px 40px;
gap: 12px;
align-items: center;
background: white;
padding: 12px;
border-radius: 6px;
border: 1px solid #dee2e6;
}
.product-item-name {
font-weight: 500;
color: #343a40;
}
.product-item-quantity {
text-align: center;
color: #6c757d;
font-size: 14px;
}
.product-item-price {
text-align: right;
font-weight: 600;
color: #28a745;
}
.btn-remove {
background-color: #dc3545;
color: white;
border: none;
border-radius: 4px;
width: 32px;
height: 32px;
cursor: pointer;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
}
.btn-remove:hover {
background-color: #c82333;
}
.totals-section {
background: #343a40;
color: white;
padding: 20px;
border-radius: 8px;
margin: 10px 0;
}
.totals-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.totals-row:last-child {
border-bottom: none;
}
.total-final {
font-size: 18px;
font-weight: 600;
border-top: 2px solid rgba(255, 255, 255, 0.3);
margin-top: 10px;
padding-top: 15px;
}
/* Estilos para sección de descuentos colapsable */
.discount-section {
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 8px;
padding: 20px;
transition: all 0.3s ease;
}
.discount-header {
padding: 0 0 15px 0;
background: transparent;
color: #343a40;
cursor: pointer;
display: flex;
align-items: center;
gap: 12px;
transition: color 0.2s ease;
border-bottom: 1px solid #dee2e6;
margin-bottom: 15px;
}
.discount-header:hover {
color: #007bff;
}
.discount-checkbox {
width: 18px;
height: 18px;
cursor: pointer;
accent-color: #007bff;
}
.discount-label {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
font-weight: 600;
font-size: 16px;
margin: 0;
flex-grow: 1;
color: inherit;
}
.discount-icon {
font-size: 20px;
opacity: 0.8;
}
.discount-container {
background: transparent;
padding: 0;
border: none;
border-radius: 0;
animation: slideDown 0.3s ease;
}
@keyframes slideDown {
from {
opacity: 0;
max-height: 0;
}
to {
opacity: 1;
max-height: 300px;
}
}
.discount-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
padding: 0;
border-bottom: 1px solid #dee2e6;
padding-bottom: 15px;
margin-bottom: 15px;
}
.full-width-discount {
grid-column: 1 / -1;
}
.input-with-symbol {
position: relative;
display: flex;
align-items: center;
}
.input-with-symbol input {
flex: 1;
padding-right: 35px;
}
.input-symbol {
position: absolute;
right: 12px;
color: #6c757d;
font-weight: 600;
font-size: 14px;
pointer-events: none;
}
.discount-preview {
background: #e8f5e8;
padding: 12px 15px;
border-radius: 6px;
border: 1px solid #d4edda;
}
.discount-preview-item {
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
}
.discount-preview-item span:first-child {
color: #495057;
}
.discount-amount {
color: #28a745;
font-size: 16px;
font-weight: 700;
}
/* Oncological patient section styling */
#oncologico-fields.active h3 {
color: #ea76cb;
transition: color 0.3s ease;
}
/* Warrior option styling */
option[value="warrior"] {
background-color: #ff6b6b;
color: white;
font-weight: bold;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.discount-grid {
grid-template-columns: 1fr;
gap: 15px;
}
.discount-header {
padding: 12px 15px;
}
.discount-label {
font-size: 14px;
}
}
.full-width {
grid-column: 1 / -1;
}
.form-actions-modern {
display: flex;
gap: 15px;
justify-content: flex-end;
padding-top: 20px;
border-top: 1px solid #dee2e6;
}
.btn-primary-large {
background-color: #007bff;
color: white;
border: none;
padding: 15px 30px;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
font-weight: 600;
transition: background-color 0.2s;
}
.btn-primary-large:hover {
background-color: #0056b3;
}
.btn-secondary-large {
background-color: #6c757d;
color: white;
border: none;
padding: 15px 30px;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
font-weight: 600;
transition: background-color 0.2s;
}
.btn-secondary-large:hover {
background-color: #5a6268;
}
label {
font-weight: 600;
text-align: right;
color: #495057;
font-size: 14px;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="tel"],
select,
textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid #ced4da;
border-radius: 5px;
box-sizing: border-box;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
}
input:focus, select:focus, textarea:focus {
border-color: #80bdff;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
input:disabled {
background-color: #e9ecef;
cursor: not-allowed;
}
button {
background-color: #343a40;
color: white;
padding: 10px 18px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
margin-right: 10px;
transition: background-color 0.2s;
}
button:hover {
background-color: #212529;
}
.btn-secondary, button[type="reset"], button#btnTestTicket, #btnExport {
background-color: #6c757d;
}
.btn-secondary:hover, button[type="reset"]:hover, button#btnTestTicket:hover, #btnExport:hover {
background-color: #5a6268;
}
.btn-danger {
background-color: #dc3545;
}
.btn-danger:hover {
background-color: #c82333;
}
.btn-icon {
padding: 8px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
}
.btn-icon .material-icons-outlined {
font-size: 20px;
}
.form-actions {
grid-column-start: 2;
margin-top: 20px;
display: flex;
justify-content: flex-end;
}
.form-actions button {
margin-right: 0;
margin-left: 10px;
}
/* Tabla */
.table-wrapper {
overflow-x: auto;
border: 1px solid #dee2e6;
border-radius: 5px;
}
.action-btn {
background: none;
border: none;
color: #007bff;
cursor: pointer;
padding: 5px;
font-size: 13px;
text-decoration: none;
}
.action-btn:hover {
text-decoration: underline;
}
button.action-btn {
color: #dc3545;
}
/* Estilos del Ticket */
.ticket {
width: 58mm;
max-width: 58mm;
background: #fff;
color: #000;
padding: 10px;
box-sizing: border-box;
font: 12px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
border: 1px solid #ccc; /* Visible en pantalla, no en impresión */
}
.t-logo {
display: block;
margin: 0 auto 8px auto;
max-width: 75%;
height: auto;
}
.t-center { text-align: center; }
.t-bold { font-weight: bold; }
.t-business-name { font-size: 14px; margin-bottom: 4px; }
.t-tagline { font-size: 11px; margin-bottom: 8px; font-style: italic; }
.t-spacer { height: 4px; }
.t-small { font-size: 10px; line-height: 1.3; }
.t-service-title { margin-bottom: 6px; font-size: 12px; }
.t-service-detail { margin-bottom: 3px; }
.t-divider { border-top: 1px dashed #000; margin: 8px 0; }
.t-row { display: flex; justify-content: space-between; margin-bottom: 2px; }
.t-footer { margin-top: 10px; }
.t-qr-section {
margin-top: 12px;
padding-top: 8px;
border-top: 1px dashed #000;
text-align: center;
}
.t-qr-section .t-small {
margin-bottom: 4px;
}
#qr-canvas {
margin: 8px auto 4px auto;
display: block;
}
/***** MODO IMPRESIÓN *****/
@media print {
* {
visibility: hidden;
}
body {
background: #fff !important;
color: #000 !important;
margin: 0 !important;
}
.no-print, .container, .main-footer-credits, .main-header, .main-footer,
.tabs, .tab-content, header, footer, nav, aside {
display: none !important;
visibility: hidden !important;
}
#printArea, #printArea * {
visibility: visible !important;
display: block !important;
}
@page {
size: 58mm auto;
margin: 0.5cm 0.2cm;
}
/* Configuración adicional para impresión PDF */
@media print {
body {
width: 58mm !important;
max-width: 58mm !important;
}
}
.ticket {
border: none;
width: 100%;
max-width: 100%;
padding: 0;
}
.t-logo {
display: block !important;
margin: 0 auto 8px auto;
max-width: 75%;
height: auto;
-webkit-print-color-adjust: exact;
color-adjust: exact;
}
}
/* --- Estilos de Pestañas --- */
.main-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
border-bottom: 1px solid #dee2e6;
}
.header-logo {
max-width: 20%;
height: auto;
padding-right: 50px;
}
.tabs {
display: flex;
flex-grow: 1;
}
.tab-link {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
cursor: pointer;
background: none;
border: none;
font-family: 'Montserrat', sans-serif;
font-weight: 500;
font-size: 16px;
color: #6c757d;
border-bottom: 2px solid transparent;
margin-bottom: -1px;
transition: color 0.2s, border-color 0.2s;
}
.tab-link:hover {
color: #343a40;
}
.tab-link.active {
color: #343a40;
border-bottom-color: #343a40;
}
.tab-link.active span:not(.material-icons-outlined) {
display: inline-block;
}
.tab-link:not(.active) span:not(.material-icons-outlined) {
display: none;
}
.tab-link:not(.active) {
color: rgba(108, 117, 125, 0.5);
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
/* Table Styles */
table {
width: 100%;
border-collapse: collapse;
margin: 0;
}
table th, table td {
border-bottom: 1px solid #dee2e6;
padding: 12px 15px;
text-align: left;
white-space: nowrap;
}
table th {
background-color: #000;
color: #fff;
font-family: 'Montserrat', sans-serif;
font-weight: 500;
border-bottom-width: 2px;
}
table tbody tr:nth-child(even) {
background-color: #f8f9fa;
}
table tbody tr:hover {
background-color: #e9ecef;
}
.section-divider {
border: 0;
border-top: 1px solid #dee2e6;
margin: 40px 0;
}
/* Dashboard Styles */
.dashboard-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin-bottom: 2rem;
}
.stat-card {
background-color: #fff;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
text-align: center;
}
.stat-card h3 {
margin: 0 0 0.5rem 0;
font-size: 1rem;
color: #555;
font-weight: 500;
}
.stat-card p {
margin: 0;
font-size: 2rem;
font-weight: 600;
color: #343a40;
}
.dashboard-chart {
background-color: #fff;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
position: relative;
height: 300px;
}
.dashboard-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1rem;
margin-bottom: 2rem;
}
.appointments-list {
display: flex;
flex-direction: column;
gap: 10px;
}
.appointment-item {
background-color: #fff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
display: flex;
justify-content: space-between;
align-items: center;
}
.appointment-item a {
text-decoration: none;
color: #343a40;
font-weight: 600;
}
.appointment-item a:hover {
color: #0056b3;
}
.appointment-item .date {
color: #6c757d;
font-size: 14px;
}
/* --- Estilos específicos de Clientes --- */
.form-grid-single {
display: grid;
grid-template-columns: 1fr;
gap: 12px;
}
.form-grid-single label {
text-align: left;
margin-bottom: -5px; /* Acercar la etiqueta al campo */
}
.form-grid-single input[type="tel"] {
max-width: 250px;
}
.form-grid-single .checkbox-container {
margin-top: 10px;
}
.form-grid-single .checkbox-container label {
font-weight: 400; /* Peso normal para checkboxes */
}
.form-actions-single {
margin-top: 20px;
display: flex;
justify-content: flex-end;
}
.checkbox-container {
display: flex;
align-items: center;
}
.checkbox-container input[type="checkbox"] {
width: auto;
margin-right: 8px;
}
.hidden {
display: none !important;
}
#m-subtipo-container {
/* Esto asegura que el contenedor del subtipo se alinee correctamente en el grid */
grid-column: 1 / -1;
display: grid;
grid-template-columns: 160px 1fr;
gap: 18px;
align-items: center;
}
.client-history-row td {
padding: 0 !important;
background-color: #f8f9fa;
}
.client-history-content {
padding: 15px;
}
.client-history-content h4 {
margin-top: 0;
font-family: 'Montserrat', sans-serif;
}
.client-history-content table {
width: 100%;
border-collapse: collapse;
}
.client-history-content th, .client-history-content td {
padding: 8px;
border-bottom: 1px solid #dee2e6;
font-size: 14px;
}
.client-history-content th {
text-align: left;
font-weight: 600;
}
/* --- Estilos de Configuración --- */
.data-location-info {
background-color: #e9ecef;
padding: 15px;
border-radius: 5px;
font-size: 14px;
line-height: 1.5;
}
.data-location-info strong {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}
.info-icon {
font-size: 18px;
color: #6c757d;
cursor: pointer;
vertical-align: middle;
margin-left: 8px;
}
.info-icon:hover {
color: #343a40;
}
.sub-section {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #e9ecef;
}
.sub-section h3 {
margin-top: 0;
}
/* --- Estilos del Pie de Página --- */
.main-footer-credits {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #dee2e6;
color: #6c757d;
font-size: 12px;
}
.main-footer-credits p {
margin: 0 0 5px 0;
}
/* --- Estilos para Sub-Pestañas --- */
.sub-tabs {
display: flex;
border-bottom: 1px solid #dee2e6;
margin-bottom: 25px;
}
.sub-tab-link {
padding: 10px 20px;
cursor: pointer;
background: none;
border: none;
font-family: 'Montserrat', sans-serif;
font-weight: 500;
font-size: 16px;
color: #6c757d;
border-bottom: 2px solid transparent;
margin-bottom: -1px;
transition: color 0.2s, border-color 0.2s;
}
.sub-tab-link:hover {
color: #343a40;
}
.sub-tab-link.active {
color: #343a40;
border-bottom-color: #343a40;
}
.sub-tab-content {
display: none;
}
.sub-tab-content.active {
display: block;
}
.client-history-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.client-history-header h4 {
margin: 0;
}
#btn-export-history {
background-color: #17a2b8;
}
#btn-export-history:hover {
background-color: #138496;
}
/* --- Nuevos estilos para consulta de clientes --- */
.consult-grid {
display: grid;
grid-template-columns: 300px 1fr;
gap: 30px;
}
.client-list-container h2, .client-record-container h2 {
font-size: 20px;
}
.client-list-container .table-wrapper {
max-height: 400px;
overflow-y: auto;
}
#tblClients tbody tr {
cursor: pointer;
}
#tblClients tbody tr:hover {
background-color: #f1f3f5;
}
#tblClients tbody tr.selected {
background-color: #e9ecef;
}
.client-record-container {
border-left: 1px solid #dee2e6;
padding-left: 30px;
}
#client-record-placeholder {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
color: #6c757d;
text-align: center;
}
#client-details p {
margin: 0 0 10px 0;
}
#client-details strong {
display: inline-block;
width: 100px;
}
.main-footer {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #dee2e6;
color: #6c757d;
font-size: 12px;
}
.footer-logos {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin-bottom: 10px;
}
.footer-logos img {
height: 40px; /* Reducido para mejor proporción */
width: auto; /* Añadido para mantener la proporción */
max-height: 40px; /* Añadido para evitar distorsión */
}
.footer-info p {
margin: 5px 0;
}
/* Estilos para sección de anticipos */
.anticipos-section {
background: #f8f9fa;
border-radius: 8px;
padding: 15px;
margin: 15px 0;
}
.anticipos-section h4 {
margin: 0 0 15px 0;
color: #28a745;
font-size: 16px;
}
.anticipos-container {
display: flex;
flex-direction: column;
gap: 10px;
}
.anticipo-item {
background: white;
border: 1px solid #e9ecef;
border-radius: 6px;
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.anticipo-info {
flex: 1;
}
.anticipo-monto {
font-weight: bold;
color: #28a745;
}
.anticipo-fecha {
font-size: 12px;
color: #6c757d;
}
.anticipo-actions {
display: flex;
gap: 8px;
}
.btn-aplicar-anticipo {
background: #28a745;
color: white;
border: none;
padding: 5px 10px;
border-radius: 4px;
font-size: 12px;
cursor: pointer;
}
.btn-aplicar-anticipo:hover {
background: #218838;
}