diff --git a/src/css/app.scss b/src/css/app.scss
index bf501f011..3c8cc50b6 100644
--- a/src/css/app.scss
+++ b/src/css/app.scss
@@ -26,17 +26,11 @@ select:-webkit-autofill {
body.body--light {
.q-header .q-toolbar {
- background-color: white;
+ background-color: $white;
color: #555;
}
-
- .summary {
- .header {
- color: white;
- }
- }
--vn-text: #000000;
- --vn-gray: #dddddd;
+ --vn-gray: #f5f5f5;
--vn-label: #5f5f5f;
}
diff --git a/src/css/quasar.variables.scss b/src/css/quasar.variables.scss
index b2414d4ce..808bf3468 100644
--- a/src/css/quasar.variables.scss
+++ b/src/css/quasar.variables.scss
@@ -15,6 +15,7 @@
$primary: #ec8916;
$secondary: #26a69a;
$accent: #9c27b0;
+$white: #fff;
$positive: #21ba45;
$negative: #c10015;
@@ -46,5 +47,3 @@ $dark-shadow-color: #000;
$dark: #292929;
$layout-shadow-dark: 0 0 10px 2px rgba(0, 0, 0, 0.2), 0 0px 10px rgba(0, 0, 0, 0.24);
$spacing-md: 16px;
-
-$label-color: #ffffff99;
diff --git a/src/i18n/en/index.js b/src/i18n/en/index.js
index 075f9739b..4cafee136 100644
--- a/src/i18n/en/index.js
+++ b/src/i18n/en/index.js
@@ -347,11 +347,14 @@ export default {
list: {
ref: 'Reference',
issued: 'Issued',
+ shortIssued: 'Issued',
amount: 'Amount',
client: 'Client',
created: 'Created',
+ shortCreated: 'Created',
company: 'Company',
dued: 'Due date',
+ shortDued: 'Due date',
},
card: {
issued: 'Issued',
diff --git a/src/i18n/es/index.js b/src/i18n/es/index.js
index c235fa4e8..13e3fd626 100644
--- a/src/i18n/es/index.js
+++ b/src/i18n/es/index.js
@@ -347,11 +347,14 @@ export default {
list: {
ref: 'Referencia',
issued: 'Fecha emisión',
+ shortIssued: 'F. emisión',
amount: 'Importe',
client: 'Cliente',
created: 'Fecha creación',
+ shortCreated: 'F. creación',
company: 'Empresa',
dued: 'Fecha vencimineto',
+ shortDued: 'F. vencimiento',
},
card: {
issued: 'Fecha emisión',
diff --git a/src/pages/Claim/ClaimList.vue b/src/pages/Claim/ClaimList.vue
index f9afa7177..ee9550472 100644
--- a/src/pages/Claim/ClaimList.vue
+++ b/src/pages/Claim/ClaimList.vue
@@ -9,6 +9,8 @@ import ClaimSummaryDialog from './Card/ClaimSummaryDialog.vue';
import CustomerDescriptorProxy from 'pages/Customer/Card/CustomerDescriptorProxy.vue';
import VnSearchbar from 'components/ui/VnSearchbar.vue';
import ClaimFilter from './ClaimFilter.vue';
+import VnLv from 'src/components/ui/VnLv.vue';
+import CardList from 'src/components/ui/CardList.vue';
const stateStore = useStateStore();
const router = useRouter();
@@ -74,116 +76,62 @@ function viewSummary(id) {
auto-load
>
-
-
-
-
- {{ row.clientName }}
-
- #{{ row.id }}
-
-
-
-
- {{ t('claim.list.customer') }}
-
-
- {{ row.clientName }}
-
-
-
-
- {{ t('claim.list.assignedTo') }}
-
-
- {{ row.workerName }}
-
-
-
-
-
-
- {{ t('claim.list.created') }}
-
-
- {{ toDate(row.created) }}
-
-
-
-
- {{ t('claim.list.state') }}
-
-
-
- {{ row.stateDescription }}
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ {{ row.stateDescription }}
+
+
+
+
+
+
+
+ {{ t('components.smartCard.openCard') }}
+
+
+
+
+ {{ t('components.smartCard.openSummary') }}
+
+
+
+
+ {{ t('components.smartCard.viewDescription') }}
+
-
-
- {{ t('components.smartCard.openCard') }}
-
-
-
-
- {{ t('components.smartCard.openSummary') }}
-
-
-
-
- {{ t('components.smartCard.viewDescription') }}
-
-
-
-
-
-
-
+
+
+
+
diff --git a/src/pages/Customer/CustomerList.vue b/src/pages/Customer/CustomerList.vue
index acd5e3bdf..ff6cf7d04 100644
--- a/src/pages/Customer/CustomerList.vue
+++ b/src/pages/Customer/CustomerList.vue
@@ -7,6 +7,8 @@ import VnPaginate from 'src/components/ui/VnPaginate.vue';
import CustomerSummaryDialog from './Card/CustomerSummaryDialog.vue';
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
import CustomerFilter from './CustomerFilter.vue';
+import VnLv from 'src/components/ui/VnLv.vue';
+import CardList from 'src/components/ui/CardList.vue';
const stateStore = useStateStore();
const router = useRouter();
@@ -66,85 +68,40 @@ function viewSummary(id) {
auto-load
>