From e6b97ba6e15c13fe63957e530e75aa5f610a5cec Mon Sep 17 00:00:00 2001 From: Joan Sanchez Date: Fri, 19 Jul 2019 08:13:52 +0200 Subject: [PATCH] show dms order number #1601 --- modules/client/front/dms/index/index.html | 10 ++++++++-- modules/client/front/dms/index/index.js | 3 ++- modules/ticket/front/dms/index/index.html | 10 ++++++++-- modules/ticket/front/dms/index/index.js | 1 + 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/modules/client/front/dms/index/index.html b/modules/client/front/dms/index/index.html index 26a36d086..c1d3444c2 100644 --- a/modules/client/front/dms/index/index.html +++ b/modules/client/front/dms/index/index.html @@ -14,7 +14,8 @@ Id Type - Reference + Order + Reference Description Original File @@ -31,7 +32,12 @@ {{::document.dms.dmsType.name}} - + + + {{::document.dms.hardCopyNumber}} + + + {{::document.dms.reference}} diff --git a/modules/client/front/dms/index/index.js b/modules/client/front/dms/index/index.js index 2a5da4072..ffaf1ee61 100644 --- a/modules/client/front/dms/index/index.js +++ b/modules/client/front/dms/index/index.js @@ -15,8 +15,9 @@ class Controller { scope: { fields: [ 'dmsTypeFk', - 'workerFk', 'reference', + 'hardCopyNumber', + 'workerFk', 'description', 'hasFile', 'file', diff --git a/modules/ticket/front/dms/index/index.html b/modules/ticket/front/dms/index/index.html index 222a14b04..36c091828 100644 --- a/modules/ticket/front/dms/index/index.html +++ b/modules/ticket/front/dms/index/index.html @@ -14,7 +14,8 @@ Id Type - Reference + Order + Reference Description Original File @@ -31,7 +32,12 @@ {{::document.dms.dmsType.name}} - + + + {{::document.dms.hardCopyNumber}} + + + {{::document.dms.reference}} diff --git a/modules/ticket/front/dms/index/index.js b/modules/ticket/front/dms/index/index.js index f2c65be26..d0ee3cc45 100644 --- a/modules/ticket/front/dms/index/index.js +++ b/modules/ticket/front/dms/index/index.js @@ -16,6 +16,7 @@ class Controller { fields: [ 'dmsTypeFk', 'workerFk', + 'hardCopyNumber', 'reference', 'description', 'hasFile',