Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
banking_orders
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
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
modules
banking_orders
Commits
3551ee70
Commit
3551ee70
authored
1 year ago
by
simon
Browse files
Options
Downloads
Plain Diff
Merge branch 'fix-d10-export-sct' into 'master'
fix: d10 export sct See merge request
!11
parents
3d25c333
f07349a2
Branches
master
Branches containing commit
Tags
v1.0.11
v1.0.12
1 merge request
!11
fix: d10 export sct
Pipeline
#7845
passed with warnings with stages
in 11 minutes and 36 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+27
-4
27 additions, 4 deletions
.gitlab-ci.yml
src/Plugin/BankOrderExportPlugin/SepaSct.php
+1
-0
1 addition, 0 deletions
src/Plugin/BankOrderExportPlugin/SepaSct.php
with
28 additions
and
4 deletions
.gitlab-ci.yml
+
27
−
4
View file @
3551ee70
################
# GitLabCI template for Drupal projects.
#
# This template is designed to give any Contrib maintainer everything they need to test, without requiring modification.
# It is also designed to keep up to date with Core Development automatically through the use of include files that can be centrally maintained.
# As long as you include the project, ref and three files below, any future updates added by the Drupal Association will be used in your
# pipelines automatically. However, you can modify this template if you have additional needs for your project.
# The full documentation is on https://project.pages.drupalcode.org/gitlab_templates/
################
# For information on alternative values for 'ref' see https://project.pages.drupalcode.org/gitlab_templates/info/templates-version/
# To test a Drupal 7 project, change the first include filename from .main.yml to .main-d7.yml
include
:
-
remote
:
'
https://git.drupalcode.org/project/gitlab_templates/-/raw/1.0.x/includes/include.drupalci.main.yml'
-
remote
:
'
https://git.drupalcode.org/project/gitlab_templates/-/raw/1.0.x/includes/include.drupalci.variables.yml'
# - remote: 'https://git.drupalcode.org/project/gitlab_templates/-/raw/1.0.x/includes/include.drupalci.workflows.yml'
-
remote
:
'
https://git.startx.be/infra/gitlabci-drupal/-/raw/main/includes/include.drupalci.workflows.yml'
-
project
:
'
forks/gitlab_templates'
ref
:
'
startx'
file
:
-
"
/includes/include.drupalci.main.yml"
-
"
/includes/include.drupalci.variables.yml"
-
"
/includes/include.drupalci.workflows.yml"
################
# Pipeline configuration variables are defined with default values and descriptions in the file
# https://git.drupalcode.org/project/gitlab_templates/-/blob/main/includes/include.drupalci.variables.yml
# Uncomment the lines below if you want to override any of the variables. The following is just an example.
################
# variables:
# _CURL_TEMPLATES_REF: 'startx'
# SKIP_ESLINT: '1'
# OPT_IN_TEST_NEXT_MAJOR: '1'
This diff is collapsed.
Click to expand it.
src/Plugin/BankOrderExportPlugin/SepaSct.php
+
1
−
0
View file @
3551ee70
...
...
@@ -90,6 +90,7 @@ class SepaSct extends PluginBase implements PluginFormInterface, BankOrderExport
if
(
!
isset
(
$context
[
'sandbox'
][
'lines'
]))
{
$line_ids
=
\Drupal
::
entityQuery
(
'bank_order_line'
)
->
accessCheck
(
FALSE
)
->
condition
(
'bank_order_id'
,
$bank_order_id
)
->
execute
();
$context
[
'sandbox'
][
'lines'
]
=
$line_ids
;
...
...
This diff is collapsed.
Click to expand it.
Preview
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