Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Maarch
MaarchCourrier
Commits
5fdd9783
Commit
5fdd9783
authored
Dec 07, 2021
by
Hamza HRAMCHI
Browse files
FIX #18927 TIME 0:10 set signed response id after submit
parent
7340a234
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/frontend/plugins/mail-editor/mail-editor.component.ts
View file @
5fdd9783
...
@@ -957,15 +957,15 @@ export class MailEditorComponent implements OnInit, OnDestroy {
...
@@ -957,15 +957,15 @@ export class MailEditorComponent implements OnInit, OnDestroy {
if
(
!
this
.
functions
.
empty
(
this
.
emailAttach
[
element
]))
{
if
(
!
this
.
functions
.
empty
(
this
.
emailAttach
[
element
]))
{
if
(
element
===
'
document
'
)
{
if
(
element
===
'
document
'
)
{
objAttach
=
{
objAttach
=
{
id
:
this
.
signedAttachId
!==
null
?
this
.
signedAttachId
:
this
.
emailAttach
[
element
].
id
,
id
:
this
.
emailAttach
[
element
].
id
,
isLinked
:
this
.
emailAttach
[
element
].
isLinked
,
isLinked
:
this
.
emailAttach
[
element
].
isLinked
,
original
:
this
.
emailAttach
[
element
].
original
original
:
this
.
emailAttach
[
element
].
original
};
};
}
else
if
(
element
===
'
notes
'
)
{
}
else
if
(
element
===
'
notes
'
)
{
objAttach
[
element
]
=
this
.
emailAttach
[
element
].
map
((
item
:
any
)
=>
item
.
id
);
objAttach
[
element
]
=
this
.
emailAttach
[
element
].
map
((
item
:
any
)
=>
item
.
id
);
}
else
{
}
else
{
objAttach
[
element
]
=
this
.
emailAttach
[
element
].
map
((
item
:
any
)
=>
({
objAttach
[
element
]
=
this
.
emailAttach
[
element
].
map
((
item
:
any
)
=>
({
id
:
item
.
id
,
id
:
element
===
'
attachments
'
&&
this
.
signedAttachId
!==
null
?
this
.
signedAttachId
:
item
.
id
,
original
:
item
.
original
original
:
item
.
original
}));
}));
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment