From 984e8fd7942c44b284af3f14ae634366f8e80605 Mon Sep 17 00:00:00 2001 From: Carlos Jimenez Ruiz Date: Tue, 23 Jun 2020 14:53:41 +0200 Subject: [PATCH 1/2] added total price of services --- modules/ticket/front/summary/index.html | 6 ++++-- modules/ticket/front/summary/style.scss | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/ticket/front/summary/index.html b/modules/ticket/front/summary/index.html index 901e089db..6486241c7 100644 --- a/modules/ticket/front/summary/index.html +++ b/modules/ticket/front/summary/index.html @@ -172,6 +172,7 @@ Description Price Tax class + Amount @@ -180,8 +181,9 @@ {{::service.id}} {{::service.quantity}} {{::service.description}} - {{::service.price}} - {{::service.taxClass.description}} + {{::service.price | currency: 'EUR':2}} + {{::service.taxClass.description}} + {{::service.quantity * service.price | currency: 'EUR':2}} diff --git a/modules/ticket/front/summary/style.scss b/modules/ticket/front/summary/style.scss index d92121194..9a2159c56 100644 --- a/modules/ticket/front/summary/style.scss +++ b/modules/ticket/front/summary/style.scss @@ -53,7 +53,7 @@ vn-ticket-summary .summary { .vn-table > vn-thead .tax-class, .vn-table > vn-tbody .tax-class { - min-width: 176px; + min-width: 90px; width: 1px; } From 9d88b9359a22d6968dc850adec939dc9e3898eb5 Mon Sep 17 00:00:00 2001 From: Carlos Jimenez Ruiz Date: Tue, 23 Jun 2020 16:07:07 +0200 Subject: [PATCH 2/2] removed unused column --- modules/ticket/front/summary/index.html | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/ticket/front/summary/index.html b/modules/ticket/front/summary/index.html index 6486241c7..78b941fb1 100644 --- a/modules/ticket/front/summary/index.html +++ b/modules/ticket/front/summary/index.html @@ -166,8 +166,6 @@ - - Id Quantity Description Price @@ -177,8 +175,6 @@ - - {{::service.id}} {{::service.quantity}} {{::service.description}} {{::service.price | currency: 'EUR':2}}