Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
program-service
Commits
2f62f49a
Commit
2f62f49a
authored
2 years ago
by
snehar-nd
Browse files
Options
Download
Patches
Plain Diff
FIx for instrucion data.
parent
bddc0e9d
release-5.1.0
release-4.8.0
release-4.9.0
release-5.1.0_RC1
release-4.9.0_RC1
release-4.8.0_RC3
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/service/print/getdocxdata.js
+43
-32
src/service/print/getdocxdata.js
src/service/print/printDocxV1.0/dataImporter.js
+2
-2
src/service/print/printDocxV1.0/dataImporter.js
with
45 additions
and
34 deletions
+45
-34
src/service/print/getdocxdata.js
+
43
−
32
View file @
2f62f49a
...
...
@@ -17,6 +17,7 @@ const {
ITableCellMarginOptions
,
convertInchesToTwip
,
}
=
docx
;
const
_
=
require
(
"
lodash
"
);
function
create
(
data
,
paperData
)
{
const
doc
=
new
Document
({
...
...
@@ -79,15 +80,8 @@ function create(data, paperData) {
}),
],
}),
new
Paragraph
({
alignment
:
AlignmentType
.
LEFT
,
children
:
[
new
TextRun
({
text
:
`Instructions:`
,
bold
:
true
,
}),
],
}),
instructionHead
(
paperData
.
instructions
),
instructions
(
paperData
.
instructions
),
new
Paragraph
({
alignment
:
AlignmentType
.
CENTER
,
...
...
@@ -293,28 +287,46 @@ function create(data, paperData) {
return
doc
;
}
function
instructionHead
(
data
)
{
const
arr
=
[];
if
(
!
_
.
isUndefined
(
data
))
{
arr
.
push
(
new
TextRun
({
text
:
`Instructions:`
,
bold
:
true
,
})
);
return
new
Paragraph
({
alignment
:
AlignmentType
.
LEFT
,
children
:
arr
,
});
}
}
function
instructions
(
data
)
{
const
arr
=
[];
if
(
data
!==
undefined
){
data
.
map
((
text
)
=>
{
arr
.
push
(
new
TextRun
({
text
:
`
${
text
}
`
,
break
:
1
,
bold
:
true
,
})
);
})
.
reduce
((
prev
,
curr
)
=>
prev
.
concat
(
curr
),
[]);
return
new
Paragraph
({
alignment
:
AlignmentType
.
LEFT
,
indent
:
{
left
:
720
,
},
children
:
arr
,
});
if
(
_
.
isUndefined
(
data
))
{
return
new
Paragraph
({
alignment
:
AlignmentType
.
LEFT
,
indent
:
{
left
:
720
,
},
children
:
arr
,
});
}
else
{
data
.
map
((
text
)
=>
{
arr
.
push
(
new
TextRun
({
text
:
`
${
text
}
`
,
break
:
1
,
bold
:
true
,
})
);
})
.
reduce
((
prev
,
curr
)
=>
prev
.
concat
(
curr
),
[]);
return
new
Paragraph
({
alignment
:
AlignmentType
.
LEFT
,
indent
:
{
...
...
@@ -323,8 +335,8 @@ function instructions(data) {
children
:
arr
,
});
}
}
function
displayMTFHeader
(
data
)
{
return
new
TableCell
({
borders
:
MTFborder
,
...
...
@@ -386,7 +398,7 @@ function MTFTabel(question) {
}
function
createFTB
(
data
,
count
)
{
if
(
data
===
undefined
)
{
if
(
_
.
isUndefined
(
data
))
{
return
new
Paragraph
({
alignment
:
AlignmentType
.
LEFT
,
children
:
[
...
...
@@ -422,7 +434,7 @@ function createFTB(data, count) {
function
createSAObject
(
data
,
count
)
{
const
arr
=
[];
if
(
data
===
undefined
)
{
if
(
_
.
isUndefined
(
data
))
{
return
createFTB
(
data
,
count
);
}
if
(
data
.
text
)
{
...
...
@@ -931,7 +943,6 @@ function formatview(data, count, questionCounter, marks) {
}
function
mtfTableData
(
data
)
{
const
cell
=
new
TableCell
({
children
:
[
MTFTabel
(
data
)],
});
...
...
This diff is collapsed.
Click to expand it.
src/service/print/printDocxV1.0/dataImporter.js
+
2
−
2
View file @
2f62f49a
const
{
async
}
=
require
(
"
rxjs/internal/scheduler/async
"
);
const
fetch
=
require
(
"
node-fetch
"
);
const
axios
=
require
(
"
axios
"
);
const
_
=
require
(
"
lodash
"
)
const
envVariables
=
require
(
"
../../../envVariables
"
);
const
{
result
}
=
require
(
"
lodash
"
);
...
...
@@ -97,7 +97,7 @@ const getQuestionSet = async (id) => {
return
{
sectionData
,
paperData
:
data
,
instructions
:
instructions
.
instructions
===
undefined
?
undefined
:
instructions
.
instructions
.
default
instructions
:
_
.
isUndefined
(
instructions
.
instructions
)
?
undefined
:
instructions
.
instructions
.
default
};
});
})
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets