diff --git a/src/css/app.scss b/src/css/app.scss
index 057a4389a..770df8e01 100644
--- a/src/css/app.scss
+++ b/src/css/app.scss
@@ -141,6 +141,19 @@ select:-webkit-autofill {
background-color: var(--vn-section-color);
}
+.q-checkbox {
+ & .q-checkbox__label {
+ color: var(--vn-text-color);
+ }
+ & .q-checkbox__inner {
+ color: var(--vn-label-color);
+ }
+}
+
+.tr-header {
+ color: var(--vn-label-color);
+}
+
.q-chip,
.q-notification__message,
.q-notification__icon {
diff --git a/src/pages/InvoiceOut/Card/InvoiceOutSummary.vue b/src/pages/InvoiceOut/Card/InvoiceOutSummary.vue
index a6a28bdde..e98de6b30 100644
--- a/src/pages/InvoiceOut/Card/InvoiceOutSummary.vue
+++ b/src/pages/InvoiceOut/Card/InvoiceOutSummary.vue
@@ -138,7 +138,7 @@ const ticketsColumns = ref([
-
+
+
diff --git a/src/pages/InvoiceOut/InvoiceOutNegativeBases.vue b/src/pages/InvoiceOut/InvoiceOutNegativeBases.vue
index fb434124c..182de2c83 100644
--- a/src/pages/InvoiceOut/InvoiceOutNegativeBases.vue
+++ b/src/pages/InvoiceOut/InvoiceOutNegativeBases.vue
@@ -119,8 +119,8 @@ const columns = computed(() => [
},
{
label: t('invoiceOut.negativeBases.comercial'),
- field: 'workerSocialName',
- name: 'comercial',
+ field: 'workerName',
+ name: 'worker',
align: 'left',
},
]);
@@ -181,9 +181,11 @@ const downloadCSV = async () => {
-
+
- {{ row.comercialName }}
+ {{
+ row.workerName
+ }}
@@ -211,6 +213,9 @@ const downloadCSV = async () => {
border-radius: 4px;
padding: 6px;
}
+.no-uppercase {
+ text-transform: none;
+}