Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bdl_visualiseur_core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
prodige
bdl_visualiseur_core
Compare revisions
cdb223bada279b390d7a0392e0096becc7961c60 to 138ffa7f3a4fcc3a8e97fe5ac0eda11d1237648e
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
prodige/bdl_visualiseur_core
Select target project
No results found
138ffa7f3a4fcc3a8e97fe5ac0eda11d1237648e
Select Git revision
Swap
Target
prodige/bdl_visualiseur_core
Select target project
prodige/bdl_visualiseur_core
1 result
cdb223bada279b390d7a0392e0096becc7961c60
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
[FIX] PrintContoller : correction options header/footer
· ef733b72
ndurand
authored
2 years ago
ef733b72
[FIX] PrintContoller : correction options header/footer
· 138ffa7f
ndurand
authored
2 years ago
138ffa7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Controllers/PrintController.php
+2
-2
2 additions, 2 deletions
Controllers/PrintController.php
with
2 additions
and
2 deletions
Controllers/PrintController.php
View file @
138ffa7f
...
@@ -292,8 +292,8 @@ class PrintController extends ControllerBase
...
@@ -292,8 +292,8 @@ class PrintController extends ControllerBase
$pageNumber
=
$requestBody
[
'pageNumber'
];
$pageNumber
=
$requestBody
[
'pageNumber'
];
}
}
$header
=
$requestBody
[
'options'
][
'header'
]
?
$requestBody
[
'options'
][
'header'
]
:
''
;
$header
=
isset
(
$requestBody
[
'options'
])
&&
isset
(
$requestBody
[
'options'
][
'header'
]
)
?
$requestBody
[
'options'
][
'header'
]
:
''
;
$footer
=
$requestBody
[
'options'
][
'footer'
]
?
$requestBody
[
'options'
][
'footer'
]
:
''
;
$footer
=
isset
(
$requestBody
[
'options'
])
&&
isset
(
$requestBody
[
'options'
][
'footer'
]
)
?
$requestBody
[
'options'
][
'footer'
]
:
''
;
// Exécution du script node pour la génération du fichier pdf/img
// Exécution du script node pour la génération du fichier pdf/img
$strCommand
=
"node "
.
realpath
(
dirname
(
__FILE__
))
.
"/../Scripts/puppeteerPrinting.js "
.
$strCommand
=
"node "
.
realpath
(
dirname
(
__FILE__
))
.
"/../Scripts/puppeteerPrinting.js "
.
...
...
This diff is collapsed.
Click to expand it.