-
+
{{ dash ? dashIfEmpty(value) : value }}
diff --git a/src/css/app.scss b/src/css/app.scss
index 994ae7ff112..97097cebfca 100644
--- a/src/css/app.scss
+++ b/src/css/app.scss
@@ -339,3 +339,26 @@ input::-webkit-inner-spin-button {
.containerShrinked {
width: 80%;
}
+
+.vn-card-group {
+ display: flex;
+ flex-direction: column;
+}
+
+.vn-card-content {
+ display: flex;
+ flex-direction: column;
+ text-overflow: ellipsis;
+ > div {
+ max-height: 80px;
+ }
+}
+
+@media (min-width: 1010px) {
+ .vn-card-group {
+ flex-direction: row;
+ }
+ .vn-card-content {
+ flex: 1;
+ }
+}
diff --git a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue
index d358601d316..3515e3bce81 100644
--- a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue
+++ b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue
@@ -205,113 +205,106 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`;
-
-
-
-
-
-
-
-
- {{ entity.supplier?.name }}
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ toCurrency(entity.totals.totalDueDay) }}
-
-
-
-
+
+
+
+
+
+ {{ entity.supplier?.name }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ toCurrency(entity.totals.totalDueDay) }}
+
+
+
+
+
diff --git a/src/pages/Order/Card/OrderSummary.vue b/src/pages/Order/Card/OrderSummary.vue
index a4bdb288102..55c309cf582 100644
--- a/src/pages/Order/Card/OrderSummary.vue
+++ b/src/pages/Order/Card/OrderSummary.vue
@@ -96,67 +96,67 @@ async function handleConfirm() {
-
+
-
-
-
-
- {{ dashIfEmpty(entity?.address?.nickname) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ dashIfEmpty(entity?.address?.phone) }}
-
-
-
-
-
-
-
+
+
+
+
+
+
+ {{ dashIfEmpty(entity?.address?.nickname) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ dashIfEmpty(entity?.address?.phone) }}
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/Ticket/Card/TicketSummary.vue b/src/pages/Ticket/Card/TicketSummary.vue
index 5838efa8803..52454ccf1ae 100644
--- a/src/pages/Ticket/Card/TicketSummary.vue
+++ b/src/pages/Ticket/Card/TicketSummary.vue
@@ -137,118 +137,130 @@ onMounted(async () => {
-
+
-
-
-
- {{ entity.ticketState.state.name }}
-
-
-
-
-
-
+
+
+
+
+ {{ entity.ticketState.state.name }}
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
- {{ entity?.zone?.name }}
-
-
-
-
-
-
-
-
+
+
+ {{ entity?.zone?.name }}
+
+
+
+
+
+
- {{ entity.ticketCollections[0]?.collectionFk }}
-
-
-
-
-
-
- {{ entity.routeFk }}
-
-
-
-
-
-
-
- {{ dashIfEmpty(entity.refFk) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ t('ticket.summary.consigneePhone') }}
-
-
-
-
-
- {{ t('ticket.summary.consigneeMobile') }}
-
-
-
-
-
- {{ t('ticket.summary.clientPhone') }}
-
-
-
-
-
- {{ t('ticket.summary.clientMobile') }}
-
-
-
-
-
+
+
+ {{ entity.ticketCollections[0]?.collectionFk }}
+
+
+
+
+
+
+ {{ entity.routeFk }}
+
+
+
+
+
+
+
+ {{ dashIfEmpty(entity.refFk) }}
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ t('ticket.summary.consigneePhone') }}
+
+
+
+
+
+ {{ t('ticket.summary.consigneeMobile') }}
+
+
+
+
+
+ {{ t('ticket.summary.clientPhone') }}
+
+
+
+
+
+ {{ t('ticket.summary.clientMobile') }}
+
+
+
+
+
+
+