@@ -341,7 +352,7 @@
class="link">
{{::ticket.refFk}}
-
{{::ticket.ticketState.state.name}}
@@ -355,8 +366,8 @@
-
-
@@ -397,4 +408,4 @@
ticket="$ctrl.selectedTicket"
model="model">
-
\ No newline at end of file
+
diff --git a/modules/client/front/summary/locale/es.yml b/modules/client/front/summary/locale/es.yml
index b6233d4b36..ca6e96fefc 100644
--- a/modules/client/front/summary/locale/es.yml
+++ b/modules/client/front/summary/locale/es.yml
@@ -20,3 +20,6 @@ Invoices minus payments: Facturas menos recibos
Deviated invoices minus payments: Facturas fuera de plazo menos recibos
Go to the client: Ir al cliente
Latest tickets: Últimos tickets
+Rating: Clasificación
+Value from 1 to 20. The higher the better value: Valor del 1 al 20. Cuanto más alto mejor valoración
+Go to grafana: Ir a grafana
diff --git a/modules/client/front/summary/style.scss b/modules/client/front/summary/style.scss
index 79708b3616..77fc020ef7 100644
--- a/modules/client/front/summary/style.scss
+++ b/modules/client/front/summary/style.scss
@@ -2,8 +2,13 @@
vn-client-summary .summary {
max-width: $width-lg;
-
+
.alert span {
color: $color-alert !important
}
-}
\ No newline at end of file
+
+ vn-horizontal h4 .grafana:after {
+ content: 'contact_support';
+ font-size: 17px;
+ }
+}
diff --git a/modules/entry/front/latest-buys/index.html b/modules/entry/front/latest-buys/index.html
index 727b192208..a2cf62da26 100644
--- a/modules/entry/front/latest-buys/index.html
+++ b/modules/entry/front/latest-buys/index.html
@@ -192,19 +192,19 @@
{{::buy.entryFk}}
- {{::buy.buyingValue | currency: 'EUR':2}} |
- {{::buy.freightValue | currency: 'EUR':2}} |
- {{::buy.comissionValue | currency: 'EUR':2}} |
- {{::buy.packageValue | currency: 'EUR':2}} |
+ {{::buy.buyingValue | currency: 'EUR':3}} |
+ {{::buy.freightValue | currency: 'EUR':3}} |
+ {{::buy.comissionValue | currency: 'EUR':3}} |
+ {{::buy.packageValue | currency: 'EUR':3}} |
|
- {{::buy.price2 | currency: 'EUR':2}} |
- {{::buy.price3 | currency: 'EUR':2}} |
- {{::buy.minPrice | currency: 'EUR':2}} |
+ {{::buy.price2 | currency: 'EUR':3}} |
+ {{::buy.price3 | currency: 'EUR':3}} |
+ {{::buy.minPrice | currency: 'EUR':3}} |
{{::buy.ektFk | dashIfEmpty}} |
{{::buy.weight}} |
{{::buy.packageFk}} |
diff --git a/modules/invoiceIn/back/methods/invoice-in/negativeBases.js b/modules/invoiceIn/back/methods/invoice-in/negativeBases.js
index 4d5975fab7..4c9a8984bf 100644
--- a/modules/invoiceIn/back/methods/invoice-in/negativeBases.js
+++ b/modules/invoiceIn/back/methods/invoice-in/negativeBases.js
@@ -98,6 +98,7 @@ module.exports = Self => {
stmt.merge(conn.makeWhere(args.filter.where));
stmt.merge(conn.makeOrderBy(args.filter.order));
+ stmt.merge(conn.makeLimit(args.filter));
const negativeBasesIndex = stmts.push(stmt) - 1;
diff --git a/modules/invoiceIn/front/negative-bases/index.html b/modules/invoiceIn/front/negative-bases/index.html
index 368f44461c..5da8e7aad0 100644
--- a/modules/invoiceIn/front/negative-bases/index.html
+++ b/modules/invoiceIn/front/negative-bases/index.html
@@ -2,7 +2,8 @@
vn-id="model"
url="InvoiceIns/negativeBases"
auto-load="true"
- params="$ctrl.params">
+ params="$ctrl.params"
+ limit="20">