diff --git a/modules/client/front/summary/index.html b/modules/client/front/summary/index.html index 5d113139b4..c252cf1b3d 100644 --- a/modules/client/front/summary/index.html +++ b/modules/client/front/summary/index.html @@ -294,7 +294,7 @@ Id Nickname Agency - Route + Route Packages Date State @@ -326,6 +326,17 @@ {{::ticket.routeFk}} + + {{::ticket.agencyMode.name}} + + + + {{::ticket.routeFk}} + + {{::ticket.packages}} @@ -384,6 +395,9 @@ + + diff --git a/modules/client/front/summary/index.js b/modules/client/front/summary/index.js index 0f6c7e8347..b1f0faf130 100644 --- a/modules/client/front/summary/index.js +++ b/modules/client/front/summary/index.js @@ -22,7 +22,13 @@ class Controller extends Summary { scope: { fields: ['id'] } - } + }, + { + relation: 'agencyMode', + scope: { + fields: ['name'] + } + }, ] }; }