Merge branch 'master' of
ssh://git@git.imixs.com/git/office-alexander-logistics
This commit is contained in:
parent
ab05e123a2
commit
1d447da7e6
40 changed files with 102186 additions and 28 deletions
BIN
models/invoice-de-0.2.0/attribute_ruler/patterns
Normal file
BIN
models/invoice-de-0.2.0/attribute_ruler/patterns
Normal file
Binary file not shown.
266
models/invoice-de-0.2.0/config.cfg
Normal file
266
models/invoice-de-0.2.0/config.cfg
Normal file
|
|
@ -0,0 +1,266 @@
|
||||||
|
[paths]
|
||||||
|
train = null
|
||||||
|
dev = null
|
||||||
|
vectors = null
|
||||||
|
init_tok2vec = null
|
||||||
|
|
||||||
|
[system]
|
||||||
|
gpu_allocator = null
|
||||||
|
seed = 0
|
||||||
|
|
||||||
|
[nlp]
|
||||||
|
lang = "en"
|
||||||
|
pipeline = ["tok2vec","tagger","parser","senter","attribute_ruler","lemmatizer","ner"]
|
||||||
|
disabled = ["tagger","parser","senter"]
|
||||||
|
before_creation = null
|
||||||
|
after_creation = null
|
||||||
|
after_pipeline_creation = null
|
||||||
|
batch_size = 256
|
||||||
|
tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
|
||||||
|
|
||||||
|
[components]
|
||||||
|
|
||||||
|
[components.attribute_ruler]
|
||||||
|
factory = "attribute_ruler"
|
||||||
|
scorer = {"@scorers":"spacy.attribute_ruler_scorer.v1"}
|
||||||
|
validate = false
|
||||||
|
|
||||||
|
[components.lemmatizer]
|
||||||
|
factory = "lemmatizer"
|
||||||
|
mode = "rule"
|
||||||
|
model = null
|
||||||
|
overwrite = false
|
||||||
|
scorer = {"@scorers":"spacy.lemmatizer_scorer.v1"}
|
||||||
|
|
||||||
|
[components.ner]
|
||||||
|
factory = "ner"
|
||||||
|
incorrect_spans_key = null
|
||||||
|
moves = null
|
||||||
|
scorer = {"@scorers":"spacy.ner_scorer.v1"}
|
||||||
|
update_with_oracle_cut_size = 100
|
||||||
|
|
||||||
|
[components.ner.model]
|
||||||
|
@architectures = "spacy.TransitionBasedParser.v2"
|
||||||
|
state_type = "ner"
|
||||||
|
extra_state_tokens = false
|
||||||
|
hidden_width = 64
|
||||||
|
maxout_pieces = 2
|
||||||
|
use_upper = true
|
||||||
|
nO = null
|
||||||
|
|
||||||
|
[components.ner.model.tok2vec]
|
||||||
|
@architectures = "spacy.Tok2Vec.v2"
|
||||||
|
|
||||||
|
[components.ner.model.tok2vec.embed]
|
||||||
|
@architectures = "spacy.MultiHashEmbed.v2"
|
||||||
|
width = 96
|
||||||
|
attrs = ["NORM","PREFIX","SUFFIX","SHAPE","SPACY"]
|
||||||
|
rows = [5000,1000,2500,2500,50]
|
||||||
|
include_static_vectors = false
|
||||||
|
|
||||||
|
[components.ner.model.tok2vec.encode]
|
||||||
|
@architectures = "spacy.MaxoutWindowEncoder.v2"
|
||||||
|
width = 96
|
||||||
|
depth = 4
|
||||||
|
window_size = 1
|
||||||
|
maxout_pieces = 3
|
||||||
|
|
||||||
|
[components.parser]
|
||||||
|
factory = "parser"
|
||||||
|
learn_tokens = false
|
||||||
|
min_action_freq = 30
|
||||||
|
moves = null
|
||||||
|
scorer = {"@scorers":"spacy.parser_scorer.v1"}
|
||||||
|
update_with_oracle_cut_size = 100
|
||||||
|
|
||||||
|
[components.parser.model]
|
||||||
|
@architectures = "spacy.TransitionBasedParser.v2"
|
||||||
|
state_type = "parser"
|
||||||
|
extra_state_tokens = false
|
||||||
|
hidden_width = 64
|
||||||
|
maxout_pieces = 2
|
||||||
|
use_upper = true
|
||||||
|
nO = null
|
||||||
|
|
||||||
|
[components.parser.model.tok2vec]
|
||||||
|
@architectures = "spacy.Tok2VecListener.v1"
|
||||||
|
width = ${components.tok2vec.model.encode:width}
|
||||||
|
upstream = "tok2vec"
|
||||||
|
|
||||||
|
[components.senter]
|
||||||
|
factory = "senter"
|
||||||
|
overwrite = false
|
||||||
|
scorer = {"@scorers":"spacy.senter_scorer.v1"}
|
||||||
|
|
||||||
|
[components.senter.model]
|
||||||
|
@architectures = "spacy.Tagger.v2"
|
||||||
|
nO = null
|
||||||
|
normalize = false
|
||||||
|
|
||||||
|
[components.senter.model.tok2vec]
|
||||||
|
@architectures = "spacy.Tok2Vec.v2"
|
||||||
|
|
||||||
|
[components.senter.model.tok2vec.embed]
|
||||||
|
@architectures = "spacy.MultiHashEmbed.v2"
|
||||||
|
width = 16
|
||||||
|
attrs = ["NORM","PREFIX","SUFFIX","SHAPE","SPACY"]
|
||||||
|
rows = [1000,500,500,500,50]
|
||||||
|
include_static_vectors = false
|
||||||
|
|
||||||
|
[components.senter.model.tok2vec.encode]
|
||||||
|
@architectures = "spacy.MaxoutWindowEncoder.v2"
|
||||||
|
width = 16
|
||||||
|
depth = 2
|
||||||
|
window_size = 1
|
||||||
|
maxout_pieces = 2
|
||||||
|
|
||||||
|
[components.tagger]
|
||||||
|
factory = "tagger"
|
||||||
|
neg_prefix = "!"
|
||||||
|
overwrite = false
|
||||||
|
scorer = {"@scorers":"spacy.tagger_scorer.v1"}
|
||||||
|
|
||||||
|
[components.tagger.model]
|
||||||
|
@architectures = "spacy.Tagger.v2"
|
||||||
|
nO = null
|
||||||
|
normalize = false
|
||||||
|
|
||||||
|
[components.tagger.model.tok2vec]
|
||||||
|
@architectures = "spacy.Tok2VecListener.v1"
|
||||||
|
width = ${components.tok2vec.model.encode:width}
|
||||||
|
upstream = "tok2vec"
|
||||||
|
|
||||||
|
[components.tok2vec]
|
||||||
|
factory = "tok2vec"
|
||||||
|
|
||||||
|
[components.tok2vec.model]
|
||||||
|
@architectures = "spacy.Tok2Vec.v2"
|
||||||
|
|
||||||
|
[components.tok2vec.model.embed]
|
||||||
|
@architectures = "spacy.MultiHashEmbed.v2"
|
||||||
|
width = ${components.tok2vec.model.encode:width}
|
||||||
|
attrs = ["NORM","PREFIX","SUFFIX","SHAPE","SPACY"]
|
||||||
|
rows = [5000,1000,2500,2500,50]
|
||||||
|
include_static_vectors = false
|
||||||
|
|
||||||
|
[components.tok2vec.model.encode]
|
||||||
|
@architectures = "spacy.MaxoutWindowEncoder.v2"
|
||||||
|
width = 96
|
||||||
|
depth = 4
|
||||||
|
window_size = 1
|
||||||
|
maxout_pieces = 3
|
||||||
|
|
||||||
|
[corpora]
|
||||||
|
|
||||||
|
[corpora.dev]
|
||||||
|
@readers = "spacy.Corpus.v1"
|
||||||
|
path = ${paths.dev}
|
||||||
|
gold_preproc = false
|
||||||
|
max_length = 0
|
||||||
|
limit = 0
|
||||||
|
augmenter = null
|
||||||
|
|
||||||
|
[corpora.train]
|
||||||
|
@readers = "spacy.Corpus.v1"
|
||||||
|
path = ${paths.train}
|
||||||
|
gold_preproc = false
|
||||||
|
max_length = 0
|
||||||
|
limit = 0
|
||||||
|
augmenter = null
|
||||||
|
|
||||||
|
[training]
|
||||||
|
train_corpus = "corpora.train"
|
||||||
|
dev_corpus = "corpora.dev"
|
||||||
|
seed = ${system:seed}
|
||||||
|
gpu_allocator = ${system:gpu_allocator}
|
||||||
|
dropout = 0.1
|
||||||
|
accumulate_gradient = 1
|
||||||
|
patience = 5000
|
||||||
|
max_epochs = 0
|
||||||
|
max_steps = 100000
|
||||||
|
eval_frequency = 1000
|
||||||
|
frozen_components = []
|
||||||
|
before_to_disk = null
|
||||||
|
annotating_components = []
|
||||||
|
|
||||||
|
[training.batcher]
|
||||||
|
@batchers = "spacy.batch_by_words.v1"
|
||||||
|
discard_oversize = false
|
||||||
|
tolerance = 0.2
|
||||||
|
get_length = null
|
||||||
|
|
||||||
|
[training.batcher.size]
|
||||||
|
@schedules = "compounding.v1"
|
||||||
|
start = 100
|
||||||
|
stop = 1000
|
||||||
|
compound = 1.001
|
||||||
|
t = 0.0
|
||||||
|
|
||||||
|
[training.logger]
|
||||||
|
@loggers = "spacy.ConsoleLogger.v1"
|
||||||
|
progress_bar = false
|
||||||
|
|
||||||
|
[training.optimizer]
|
||||||
|
@optimizers = "Adam.v1"
|
||||||
|
beta1 = 0.9
|
||||||
|
beta2 = 0.999
|
||||||
|
L2_is_weight_decay = true
|
||||||
|
L2 = 0.01
|
||||||
|
grad_clip = 1.0
|
||||||
|
use_averages = true
|
||||||
|
eps = 0.00000001
|
||||||
|
learn_rate = 0.001
|
||||||
|
|
||||||
|
[training.score_weights]
|
||||||
|
tag_acc = 0.16
|
||||||
|
dep_uas = 0.0
|
||||||
|
dep_las = 0.16
|
||||||
|
dep_las_per_type = null
|
||||||
|
sents_p = null
|
||||||
|
sents_r = null
|
||||||
|
sents_f = 0.02
|
||||||
|
lemma_acc = 0.5
|
||||||
|
ents_f = 0.16
|
||||||
|
ents_p = 0.0
|
||||||
|
ents_r = 0.0
|
||||||
|
ents_per_type = null
|
||||||
|
speed = 0.0
|
||||||
|
|
||||||
|
[pretraining]
|
||||||
|
|
||||||
|
[initialize]
|
||||||
|
vocab_data = null
|
||||||
|
vectors = ${paths.vectors}
|
||||||
|
init_tok2vec = ${paths.init_tok2vec}
|
||||||
|
before_init = null
|
||||||
|
after_init = null
|
||||||
|
|
||||||
|
[initialize.components]
|
||||||
|
|
||||||
|
[initialize.components.ner]
|
||||||
|
|
||||||
|
[initialize.components.ner.labels]
|
||||||
|
@readers = "spacy.read_labels.v1"
|
||||||
|
path = "corpus/labels/ner.json"
|
||||||
|
require = false
|
||||||
|
|
||||||
|
[initialize.components.parser]
|
||||||
|
|
||||||
|
[initialize.components.parser.labels]
|
||||||
|
@readers = "spacy.read_labels.v1"
|
||||||
|
path = "corpus/labels/parser.json"
|
||||||
|
require = false
|
||||||
|
|
||||||
|
[initialize.components.tagger]
|
||||||
|
|
||||||
|
[initialize.components.tagger.labels]
|
||||||
|
@readers = "spacy.read_labels.v1"
|
||||||
|
path = "corpus/labels/tagger.json"
|
||||||
|
require = false
|
||||||
|
|
||||||
|
[initialize.lookups]
|
||||||
|
@misc = "spacy.LookupsDataLoader.v1"
|
||||||
|
lang = ${nlp.lang}
|
||||||
|
tables = ["lexeme_norm"]
|
||||||
|
|
||||||
|
[initialize.tokenizer]
|
||||||
1
models/invoice-de-0.2.0/lemmatizer/lookups/lookups.bin
Normal file
1
models/invoice-de-0.2.0/lemmatizer/lookups/lookups.bin
Normal file
File diff suppressed because one or more lines are too long
528
models/invoice-de-0.2.0/meta.json
Normal file
528
models/invoice-de-0.2.0/meta.json
Normal file
|
|
@ -0,0 +1,528 @@
|
||||||
|
{
|
||||||
|
"lang":"en",
|
||||||
|
"name":"core_web_sm",
|
||||||
|
"version":"3.4.0",
|
||||||
|
"description":"English pipeline optimized for CPU. Components: tok2vec, tagger, parser, senter, ner, attribute_ruler, lemmatizer.",
|
||||||
|
"author":"Explosion",
|
||||||
|
"email":"contact@explosion.ai",
|
||||||
|
"url":"https://explosion.ai",
|
||||||
|
"license":"MIT",
|
||||||
|
"spacy_version":">=3.4.0,<3.5.0",
|
||||||
|
"spacy_git_version":"dd038b536",
|
||||||
|
"vectors":{
|
||||||
|
"width":0,
|
||||||
|
"vectors":0,
|
||||||
|
"keys":0,
|
||||||
|
"name":null,
|
||||||
|
"mode":"default"
|
||||||
|
},
|
||||||
|
"labels":{
|
||||||
|
"tok2vec":[
|
||||||
|
|
||||||
|
],
|
||||||
|
"tagger":[
|
||||||
|
"$",
|
||||||
|
"''",
|
||||||
|
",",
|
||||||
|
"-LRB-",
|
||||||
|
"-RRB-",
|
||||||
|
".",
|
||||||
|
":",
|
||||||
|
"ADD",
|
||||||
|
"AFX",
|
||||||
|
"CC",
|
||||||
|
"CD",
|
||||||
|
"DT",
|
||||||
|
"EX",
|
||||||
|
"FW",
|
||||||
|
"HYPH",
|
||||||
|
"IN",
|
||||||
|
"JJ",
|
||||||
|
"JJR",
|
||||||
|
"JJS",
|
||||||
|
"LS",
|
||||||
|
"MD",
|
||||||
|
"NFP",
|
||||||
|
"NN",
|
||||||
|
"NNP",
|
||||||
|
"NNPS",
|
||||||
|
"NNS",
|
||||||
|
"PDT",
|
||||||
|
"POS",
|
||||||
|
"PRP",
|
||||||
|
"PRP$",
|
||||||
|
"RB",
|
||||||
|
"RBR",
|
||||||
|
"RBS",
|
||||||
|
"RP",
|
||||||
|
"SYM",
|
||||||
|
"TO",
|
||||||
|
"UH",
|
||||||
|
"VB",
|
||||||
|
"VBD",
|
||||||
|
"VBG",
|
||||||
|
"VBN",
|
||||||
|
"VBP",
|
||||||
|
"VBZ",
|
||||||
|
"WDT",
|
||||||
|
"WP",
|
||||||
|
"WP$",
|
||||||
|
"WRB",
|
||||||
|
"XX",
|
||||||
|
"_SP",
|
||||||
|
"``"
|
||||||
|
],
|
||||||
|
"parser":[
|
||||||
|
"ROOT",
|
||||||
|
"acl",
|
||||||
|
"acomp",
|
||||||
|
"advcl",
|
||||||
|
"advmod",
|
||||||
|
"agent",
|
||||||
|
"amod",
|
||||||
|
"appos",
|
||||||
|
"attr",
|
||||||
|
"aux",
|
||||||
|
"auxpass",
|
||||||
|
"case",
|
||||||
|
"cc",
|
||||||
|
"ccomp",
|
||||||
|
"compound",
|
||||||
|
"conj",
|
||||||
|
"csubj",
|
||||||
|
"csubjpass",
|
||||||
|
"dative",
|
||||||
|
"dep",
|
||||||
|
"det",
|
||||||
|
"dobj",
|
||||||
|
"expl",
|
||||||
|
"intj",
|
||||||
|
"mark",
|
||||||
|
"meta",
|
||||||
|
"neg",
|
||||||
|
"nmod",
|
||||||
|
"npadvmod",
|
||||||
|
"nsubj",
|
||||||
|
"nsubjpass",
|
||||||
|
"nummod",
|
||||||
|
"oprd",
|
||||||
|
"parataxis",
|
||||||
|
"pcomp",
|
||||||
|
"pobj",
|
||||||
|
"poss",
|
||||||
|
"preconj",
|
||||||
|
"predet",
|
||||||
|
"prep",
|
||||||
|
"prt",
|
||||||
|
"punct",
|
||||||
|
"quantmod",
|
||||||
|
"relcl",
|
||||||
|
"xcomp"
|
||||||
|
],
|
||||||
|
"attribute_ruler":[
|
||||||
|
|
||||||
|
],
|
||||||
|
"lemmatizer":[
|
||||||
|
|
||||||
|
],
|
||||||
|
"ner":[
|
||||||
|
"CARDINAL",
|
||||||
|
"DATE",
|
||||||
|
"EVENT",
|
||||||
|
"FAC",
|
||||||
|
"GPE",
|
||||||
|
"LANGUAGE",
|
||||||
|
"LAW",
|
||||||
|
"LOC",
|
||||||
|
"MONEY",
|
||||||
|
"NORP",
|
||||||
|
"ORDINAL",
|
||||||
|
"ORG",
|
||||||
|
"PERCENT",
|
||||||
|
"PERSON",
|
||||||
|
"PRODUCT",
|
||||||
|
"QUANTITY",
|
||||||
|
"TIME",
|
||||||
|
"WORK_OF_ART",
|
||||||
|
"cdtr.bic",
|
||||||
|
"cdtr.iban",
|
||||||
|
"cdtr.name",
|
||||||
|
"invoice.date",
|
||||||
|
"invoice.number",
|
||||||
|
"invoice.total"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"pipeline":[
|
||||||
|
"tok2vec",
|
||||||
|
"attribute_ruler",
|
||||||
|
"lemmatizer",
|
||||||
|
"ner"
|
||||||
|
],
|
||||||
|
"components":[
|
||||||
|
"tok2vec",
|
||||||
|
"tagger",
|
||||||
|
"parser",
|
||||||
|
"senter",
|
||||||
|
"attribute_ruler",
|
||||||
|
"lemmatizer",
|
||||||
|
"ner"
|
||||||
|
],
|
||||||
|
"disabled":[
|
||||||
|
"tagger",
|
||||||
|
"parser",
|
||||||
|
"senter"
|
||||||
|
],
|
||||||
|
"performance":{
|
||||||
|
"token_acc":0.9993092439,
|
||||||
|
"token_p":0.9956819193,
|
||||||
|
"token_r":0.9957659295,
|
||||||
|
"token_f":0.9957239226,
|
||||||
|
"tag_acc":0.9726250474,
|
||||||
|
"sents_p":0.9191788296,
|
||||||
|
"sents_r":0.8890428129,
|
||||||
|
"sents_f":0.9038596962,
|
||||||
|
"dep_uas":0.9165718428,
|
||||||
|
"dep_las":0.8978441095,
|
||||||
|
"dep_las_per_type":{
|
||||||
|
"prep":{
|
||||||
|
"p":0.8546376267,
|
||||||
|
"r":0.8635553026,
|
||||||
|
"f":0.8590733226
|
||||||
|
},
|
||||||
|
"det":{
|
||||||
|
"p":0.9768701389,
|
||||||
|
"r":0.9781048683,
|
||||||
|
"f":0.9774871137
|
||||||
|
},
|
||||||
|
"pobj":{
|
||||||
|
"p":0.9605592002,
|
||||||
|
"r":0.9659532692,
|
||||||
|
"f":0.9632486833
|
||||||
|
},
|
||||||
|
"nsubj":{
|
||||||
|
"p":0.9545715675,
|
||||||
|
"r":0.9463745893,
|
||||||
|
"f":0.9504554055
|
||||||
|
},
|
||||||
|
"aux":{
|
||||||
|
"p":0.9798401421,
|
||||||
|
"r":0.9821953174,
|
||||||
|
"f":0.9810163162
|
||||||
|
},
|
||||||
|
"advmod":{
|
||||||
|
"p":0.8545653823,
|
||||||
|
"r":0.8527679623,
|
||||||
|
"f":0.8536657262
|
||||||
|
},
|
||||||
|
"relcl":{
|
||||||
|
"p":0.7656695157,
|
||||||
|
"r":0.7801161103,
|
||||||
|
"f":0.7728253055
|
||||||
|
},
|
||||||
|
"root":{
|
||||||
|
"p":0.91776518,
|
||||||
|
"r":0.8864041164,
|
||||||
|
"f":0.9018120805
|
||||||
|
},
|
||||||
|
"xcomp":{
|
||||||
|
"p":0.882290562,
|
||||||
|
"r":0.895908112,
|
||||||
|
"f":0.889047195
|
||||||
|
},
|
||||||
|
"amod":{
|
||||||
|
"p":0.9154102213,
|
||||||
|
"r":0.908649174,
|
||||||
|
"f":0.9120171674
|
||||||
|
},
|
||||||
|
"compound":{
|
||||||
|
"p":0.9121588361,
|
||||||
|
"r":0.9287703275,
|
||||||
|
"f":0.9203896355
|
||||||
|
},
|
||||||
|
"poss":{
|
||||||
|
"p":0.9735258724,
|
||||||
|
"r":0.9770531401,
|
||||||
|
"f":0.9752863171
|
||||||
|
},
|
||||||
|
"ccomp":{
|
||||||
|
"p":0.7657557167,
|
||||||
|
"r":0.8389002037,
|
||||||
|
"f":0.8006609
|
||||||
|
},
|
||||||
|
"attr":{
|
||||||
|
"p":0.9032126881,
|
||||||
|
"r":0.9339781329,
|
||||||
|
"f":0.9183378127
|
||||||
|
},
|
||||||
|
"case":{
|
||||||
|
"p":0.9773063641,
|
||||||
|
"r":0.9914914915,
|
||||||
|
"f":0.9843478261
|
||||||
|
},
|
||||||
|
"mark":{
|
||||||
|
"p":0.9002893975,
|
||||||
|
"r":0.9067302597,
|
||||||
|
"f":0.9034983498
|
||||||
|
},
|
||||||
|
"intj":{
|
||||||
|
"p":0.6514555468,
|
||||||
|
"r":0.6065934066,
|
||||||
|
"f":0.6282245827
|
||||||
|
},
|
||||||
|
"advcl":{
|
||||||
|
"p":0.6653050804,
|
||||||
|
"r":0.6562578696,
|
||||||
|
"f":0.6607505071
|
||||||
|
},
|
||||||
|
"cc":{
|
||||||
|
"p":0.8285611165,
|
||||||
|
"r":0.8237052984,
|
||||||
|
"f":0.8261260721
|
||||||
|
},
|
||||||
|
"neg":{
|
||||||
|
"p":0.9452191235,
|
||||||
|
"r":0.9523331661,
|
||||||
|
"f":0.9487628093
|
||||||
|
},
|
||||||
|
"conj":{
|
||||||
|
"p":0.7577601192,
|
||||||
|
"r":0.7682527694,
|
||||||
|
"f":0.7629703713
|
||||||
|
},
|
||||||
|
"nsubjpass":{
|
||||||
|
"p":0.9216589862,
|
||||||
|
"r":0.9230769231,
|
||||||
|
"f":0.9223674097
|
||||||
|
},
|
||||||
|
"auxpass":{
|
||||||
|
"p":0.946875,
|
||||||
|
"r":0.9662870159,
|
||||||
|
"f":0.9564825254
|
||||||
|
},
|
||||||
|
"dobj":{
|
||||||
|
"p":0.919205298,
|
||||||
|
"r":0.940154594,
|
||||||
|
"f":0.9295619288
|
||||||
|
},
|
||||||
|
"nummod":{
|
||||||
|
"p":0.9373886485,
|
||||||
|
"r":0.9300505051,
|
||||||
|
"f":0.9337051591
|
||||||
|
},
|
||||||
|
"npadvmod":{
|
||||||
|
"p":0.7748549323,
|
||||||
|
"r":0.7115452931,
|
||||||
|
"f":0.7418518519
|
||||||
|
},
|
||||||
|
"prt":{
|
||||||
|
"p":0.8097199341,
|
||||||
|
"r":0.8808243728,
|
||||||
|
"f":0.843776824
|
||||||
|
},
|
||||||
|
"pcomp":{
|
||||||
|
"p":0.8756183746,
|
||||||
|
"r":0.8676470588,
|
||||||
|
"f":0.8716144917
|
||||||
|
},
|
||||||
|
"expl":{
|
||||||
|
"p":0.9809322034,
|
||||||
|
"r":0.9914346895,
|
||||||
|
"f":0.9861554846
|
||||||
|
},
|
||||||
|
"acl":{
|
||||||
|
"p":0.7327887981,
|
||||||
|
"r":0.6852154937,
|
||||||
|
"f":0.7082041162
|
||||||
|
},
|
||||||
|
"agent":{
|
||||||
|
"p":0.8959044369,
|
||||||
|
"r":0.9408602151,
|
||||||
|
"f":0.9178321678
|
||||||
|
},
|
||||||
|
"dative":{
|
||||||
|
"p":0.7846153846,
|
||||||
|
"r":0.7018348624,
|
||||||
|
"f":0.7409200969
|
||||||
|
},
|
||||||
|
"acomp":{
|
||||||
|
"p":0.9127423823,
|
||||||
|
"r":0.8965986395,
|
||||||
|
"f":0.90459849
|
||||||
|
},
|
||||||
|
"dep":{
|
||||||
|
"p":0.3786764706,
|
||||||
|
"r":0.1672077922,
|
||||||
|
"f":0.231981982
|
||||||
|
},
|
||||||
|
"csubj":{
|
||||||
|
"p":0.7393939394,
|
||||||
|
"r":0.7218934911,
|
||||||
|
"f":0.7305389222
|
||||||
|
},
|
||||||
|
"quantmod":{
|
||||||
|
"p":0.8694493783,
|
||||||
|
"r":0.7952883834,
|
||||||
|
"f":0.8307170132
|
||||||
|
},
|
||||||
|
"nmod":{
|
||||||
|
"p":0.7147169811,
|
||||||
|
"r":0.577087142,
|
||||||
|
"f":0.6385704653
|
||||||
|
},
|
||||||
|
"appos":{
|
||||||
|
"p":0.7100509495,
|
||||||
|
"r":0.6650759219,
|
||||||
|
"f":0.686827957
|
||||||
|
},
|
||||||
|
"predet":{
|
||||||
|
"p":0.8636363636,
|
||||||
|
"r":0.8969957082,
|
||||||
|
"f":0.88
|
||||||
|
},
|
||||||
|
"preconj":{
|
||||||
|
"p":0.5769230769,
|
||||||
|
"r":0.6976744186,
|
||||||
|
"f":0.6315789474
|
||||||
|
},
|
||||||
|
"oprd":{
|
||||||
|
"p":0.8160535117,
|
||||||
|
"r":0.728358209,
|
||||||
|
"f":0.7697160883
|
||||||
|
},
|
||||||
|
"parataxis":{
|
||||||
|
"p":0.5835694051,
|
||||||
|
"r":0.4468546638,
|
||||||
|
"f":0.5061425061
|
||||||
|
},
|
||||||
|
"meta":{
|
||||||
|
"p":0.8666666667,
|
||||||
|
"r":0.5,
|
||||||
|
"f":0.6341463415
|
||||||
|
},
|
||||||
|
"csubjpass":{
|
||||||
|
"p":0.5,
|
||||||
|
"r":0.6666666667,
|
||||||
|
"f":0.5714285714
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ents_p":0.8565043157,
|
||||||
|
"ents_r":0.8348858173,
|
||||||
|
"ents_f":0.8455569081,
|
||||||
|
"ents_per_type":{
|
||||||
|
"DATE":{
|
||||||
|
"p":0.8804768041,
|
||||||
|
"r":0.8676190476,
|
||||||
|
"f":0.8740006396
|
||||||
|
},
|
||||||
|
"GPE":{
|
||||||
|
"p":0.9239884393,
|
||||||
|
"r":0.8917712692,
|
||||||
|
"f":0.9075940383
|
||||||
|
},
|
||||||
|
"ORDINAL":{
|
||||||
|
"p":0.7910447761,
|
||||||
|
"r":0.8229813665,
|
||||||
|
"f":0.8066971081
|
||||||
|
},
|
||||||
|
"ORG":{
|
||||||
|
"p":0.8107606679,
|
||||||
|
"r":0.8109756098,
|
||||||
|
"f":0.8108681246
|
||||||
|
},
|
||||||
|
"FAC":{
|
||||||
|
"p":0.3902439024,
|
||||||
|
"r":0.3692307692,
|
||||||
|
"f":0.3794466403
|
||||||
|
},
|
||||||
|
"CARDINAL":{
|
||||||
|
"p":0.8266978923,
|
||||||
|
"r":0.8394768133,
|
||||||
|
"f":0.8330383481
|
||||||
|
},
|
||||||
|
"PERSON":{
|
||||||
|
"p":0.8648820905,
|
||||||
|
"r":0.885770235,
|
||||||
|
"f":0.8752015479
|
||||||
|
},
|
||||||
|
"NORP":{
|
||||||
|
"p":0.9130787977,
|
||||||
|
"r":0.8992,
|
||||||
|
"f":0.9060862555
|
||||||
|
},
|
||||||
|
"TIME":{
|
||||||
|
"p":0.7492163009,
|
||||||
|
"r":0.6988304094,
|
||||||
|
"f":0.7231467474
|
||||||
|
},
|
||||||
|
"LOC":{
|
||||||
|
"p":0.7158273381,
|
||||||
|
"r":0.6337579618,
|
||||||
|
"f":0.6722972973
|
||||||
|
},
|
||||||
|
"QUANTITY":{
|
||||||
|
"p":0.7971014493,
|
||||||
|
"r":0.6043956044,
|
||||||
|
"f":0.6875
|
||||||
|
},
|
||||||
|
"EVENT":{
|
||||||
|
"p":0.6373626374,
|
||||||
|
"r":0.3333333333,
|
||||||
|
"f":0.4377358491
|
||||||
|
},
|
||||||
|
"WORK_OF_ART":{
|
||||||
|
"p":0.5230769231,
|
||||||
|
"r":0.3505154639,
|
||||||
|
"f":0.4197530864
|
||||||
|
},
|
||||||
|
"LAW":{
|
||||||
|
"p":0.6304347826,
|
||||||
|
"r":0.453125,
|
||||||
|
"f":0.5272727273
|
||||||
|
},
|
||||||
|
"MONEY":{
|
||||||
|
"p":0.9179548157,
|
||||||
|
"r":0.9114521842,
|
||||||
|
"f":0.9146919431
|
||||||
|
},
|
||||||
|
"PERCENT":{
|
||||||
|
"p":0.9171974522,
|
||||||
|
"r":0.8820826953,
|
||||||
|
"f":0.8992974239
|
||||||
|
},
|
||||||
|
"PRODUCT":{
|
||||||
|
"p":0.5,
|
||||||
|
"r":0.2274881517,
|
||||||
|
"f":0.3127035831
|
||||||
|
},
|
||||||
|
"LANGUAGE":{
|
||||||
|
"p":0.8,
|
||||||
|
"r":0.625,
|
||||||
|
"f":0.701754386
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"speed":9012.0225085527
|
||||||
|
},
|
||||||
|
"sources":[
|
||||||
|
{
|
||||||
|
"name":"OntoNotes 5",
|
||||||
|
"url":"https://catalog.ldc.upenn.edu/LDC2013T19",
|
||||||
|
"license":"commercial (licensed by Explosion)",
|
||||||
|
"author":"Ralph Weischedel, Martha Palmer, Mitchell Marcus, Eduard Hovy, Sameer Pradhan, Lance Ramshaw, Nianwen Xue, Ann Taylor, Jeff Kaufman, Michelle Franchini, Mohammed El-Bachouti, Robert Belvin, Ann Houston"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"ClearNLP Constituent-to-Dependency Conversion",
|
||||||
|
"url":"https://github.com/clir/clearnlp-guidelines/blob/master/md/components/dependency_conversion.md",
|
||||||
|
"license":"Citation provided for reference, no code packaged with model",
|
||||||
|
"author":"Emory University"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name":"WordNet 3.0",
|
||||||
|
"url":"https://wordnet.princeton.edu/",
|
||||||
|
"author":"Princeton University",
|
||||||
|
"license":"WordNet 3.0 License"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"requirements":[
|
||||||
|
|
||||||
|
]
|
||||||
|
}
|
||||||
13
models/invoice-de-0.2.0/ner/cfg
Normal file
13
models/invoice-de-0.2.0/ner/cfg
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"moves":null,
|
||||||
|
"update_with_oracle_cut_size":100,
|
||||||
|
"multitasks":[
|
||||||
|
|
||||||
|
],
|
||||||
|
"min_action_freq":1,
|
||||||
|
"learn_tokens":false,
|
||||||
|
"beam_width":1,
|
||||||
|
"beam_density":0.0,
|
||||||
|
"beam_update_prob":0.0,
|
||||||
|
"incorrect_spans_key":null
|
||||||
|
}
|
||||||
BIN
models/invoice-de-0.2.0/ner/model
Normal file
BIN
models/invoice-de-0.2.0/ner/model
Normal file
Binary file not shown.
1
models/invoice-de-0.2.0/ner/moves
Normal file
1
models/invoice-de-0.2.0/ner/moves
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
‚¥movesÚ¤{"0":{},"1":{"ORG":56516,"DATE":40493,"PERSON":36534,"GPE":26745,"MONEY":15158,"CARDINAL":14109,"NORP":9641,"PERCENT":9199,"WORK_OF_ART":4488,"LOC":4055,"TIME":3678,"QUANTITY":3123,"FAC":3046,"EVENT":3021,"ORDINAL":2142,"PRODUCT":1787,"LAW":1624,"LANGUAGE":355,"invoice.total":-1,"invoice.number":-2,"invoice.date":-3,"cdtr.name":-4,"cdtr.iban":-5,"cdtr.bic":-6},"2":{"ORG":56516,"DATE":40493,"PERSON":36534,"GPE":26745,"MONEY":15158,"CARDINAL":14109,"NORP":9641,"PERCENT":9199,"WORK_OF_ART":4488,"LOC":4055,"TIME":3678,"QUANTITY":3123,"FAC":3046,"EVENT":3021,"ORDINAL":2142,"PRODUCT":1787,"LAW":1624,"LANGUAGE":355,"invoice.total":-1,"invoice.number":-2,"invoice.date":-3,"cdtr.name":-4,"cdtr.iban":-5,"cdtr.bic":-6},"3":{"ORG":56516,"DATE":40493,"PERSON":36534,"GPE":26745,"MONEY":15158,"CARDINAL":14109,"NORP":9641,"PERCENT":9199,"WORK_OF_ART":4488,"LOC":4055,"TIME":3678,"QUANTITY":3123,"FAC":3046,"EVENT":3021,"ORDINAL":2142,"PRODUCT":1787,"LAW":1624,"LANGUAGE":355,"invoice.total":-1,"invoice.number":-2,"invoice.date":-3,"cdtr.name":-4,"cdtr.iban":-5,"cdtr.bic":-6},"4":{"ORG":56516,"DATE":40493,"PERSON":36534,"GPE":26745,"MONEY":15158,"CARDINAL":14109,"NORP":9641,"PERCENT":9199,"WORK_OF_ART":4488,"LOC":4055,"TIME":3678,"QUANTITY":3123,"FAC":3046,"EVENT":3021,"ORDINAL":2142,"PRODUCT":1787,"LAW":1624,"LANGUAGE":355,"":1,"invoice.total":-1,"invoice.number":-2,"invoice.date":-3,"cdtr.name":-4,"cdtr.iban":-5,"cdtr.bic":-6},"5":{"":1}}£cfg<66>§neg_keyÀ
|
||||||
13
models/invoice-de-0.2.0/parser/cfg
Normal file
13
models/invoice-de-0.2.0/parser/cfg
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"moves":null,
|
||||||
|
"update_with_oracle_cut_size":100,
|
||||||
|
"multitasks":[
|
||||||
|
|
||||||
|
],
|
||||||
|
"min_action_freq":30,
|
||||||
|
"learn_tokens":false,
|
||||||
|
"beam_width":1,
|
||||||
|
"beam_density":0.0,
|
||||||
|
"beam_update_prob":0.0,
|
||||||
|
"incorrect_spans_key":null
|
||||||
|
}
|
||||||
BIN
models/invoice-de-0.2.0/parser/model
Normal file
BIN
models/invoice-de-0.2.0/parser/model
Normal file
Binary file not shown.
1
models/invoice-de-0.2.0/parser/moves
Normal file
1
models/invoice-de-0.2.0/parser/moves
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
‚¥movesÚ{"0":{"":994332},"1":{"":999432},"2":{"det":172595,"nsubj":165748,"compound":116623,"amod":105184,"aux":86667,"punct":65478,"advmod":62763,"poss":36443,"mark":27941,"nummod":22598,"auxpass":15594,"prep":14001,"nsubjpass":13856,"neg":12357,"cc":10739,"nmod":9562,"advcl":9062,"npadvmod":8168,"quantmod":7101,"intj":6464,"ccomp":5896,"dobj":3427,"expl":3360,"dep":2871,"predet":1944,"parataxis":1837,"csubj":1428,"preconj":621,"pobj||prep":616,"attr":578,"meta":376,"advmod||conj":368,"dobj||xcomp":352,"acomp":284,"nsubj||ccomp":224,"dative":206,"advmod||xcomp":149,"dobj||ccomp":70,"csubjpass":64,"dobj||conj":62,"prep||conj":51,"acl":48,"prep||nsubj":41,"prep||dobj":36,"xcomp":34,"advmod||ccomp":32,"oprd":31},"3":{"punct":183790,"pobj":182191,"prep":174008,"dobj":89615,"conj":59687,"cc":51930,"ccomp":30385,"advmod":22861,"xcomp":21021,"relcl":20969,"advcl":19828,"attr":17741,"acomp":16922,"appos":15265,"case":13388,"acl":12085,"pcomp":10324,"dep":10116,"npadvmod":9796,"prt":8179,"agent":3903,"dative":3866,"nsubj":3470,"neg":2906,"amod":2839,"intj":2819,"nummod":2732,"oprd":2301,"parataxis":1261,"quantmod":319,"nmod":294,"acl||dobj":200,"prep||dobj":190,"prep||nsubj":162,"acl||nsubj":159,"appos||nsubj":145,"relcl||dobj":134,"relcl||nsubj":111,"aux":103,"expl":96,"meta":92,"appos||dobj":86,"preconj":71,"csubj":65,"prep||nsubjpass":55,"prep||advmod":54,"prep||acomp":53,"det":51,"nsubjpass":45,"relcl||pobj":42,"acl||nsubjpass":42,"mark":40,"auxpass":39,"prep||pobj":36,"relcl||nsubjpass":32,"appos||nsubjpass":31},"4":{"ROOT":111664}}£cfg<66>§neg_keyÀ
|
||||||
3
models/invoice-de-0.2.0/senter/cfg
Normal file
3
models/invoice-de-0.2.0/senter/cfg
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"overwrite":false
|
||||||
|
}
|
||||||
BIN
models/invoice-de-0.2.0/senter/model
Normal file
BIN
models/invoice-de-0.2.0/senter/model
Normal file
Binary file not shown.
56
models/invoice-de-0.2.0/tagger/cfg
Normal file
56
models/invoice-de-0.2.0/tagger/cfg
Normal file
|
|
@ -0,0 +1,56 @@
|
||||||
|
{
|
||||||
|
"labels":[
|
||||||
|
"$",
|
||||||
|
"''",
|
||||||
|
",",
|
||||||
|
"-LRB-",
|
||||||
|
"-RRB-",
|
||||||
|
".",
|
||||||
|
":",
|
||||||
|
"ADD",
|
||||||
|
"AFX",
|
||||||
|
"CC",
|
||||||
|
"CD",
|
||||||
|
"DT",
|
||||||
|
"EX",
|
||||||
|
"FW",
|
||||||
|
"HYPH",
|
||||||
|
"IN",
|
||||||
|
"JJ",
|
||||||
|
"JJR",
|
||||||
|
"JJS",
|
||||||
|
"LS",
|
||||||
|
"MD",
|
||||||
|
"NFP",
|
||||||
|
"NN",
|
||||||
|
"NNP",
|
||||||
|
"NNPS",
|
||||||
|
"NNS",
|
||||||
|
"PDT",
|
||||||
|
"POS",
|
||||||
|
"PRP",
|
||||||
|
"PRP$",
|
||||||
|
"RB",
|
||||||
|
"RBR",
|
||||||
|
"RBS",
|
||||||
|
"RP",
|
||||||
|
"SYM",
|
||||||
|
"TO",
|
||||||
|
"UH",
|
||||||
|
"VB",
|
||||||
|
"VBD",
|
||||||
|
"VBG",
|
||||||
|
"VBN",
|
||||||
|
"VBP",
|
||||||
|
"VBZ",
|
||||||
|
"WDT",
|
||||||
|
"WP",
|
||||||
|
"WP$",
|
||||||
|
"WRB",
|
||||||
|
"XX",
|
||||||
|
"_SP",
|
||||||
|
"``"
|
||||||
|
],
|
||||||
|
"neg_prefix":"!",
|
||||||
|
"overwrite":false
|
||||||
|
}
|
||||||
BIN
models/invoice-de-0.2.0/tagger/model
Normal file
BIN
models/invoice-de-0.2.0/tagger/model
Normal file
Binary file not shown.
3
models/invoice-de-0.2.0/tok2vec/cfg
Normal file
3
models/invoice-de-0.2.0/tok2vec/cfg
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
BIN
models/invoice-de-0.2.0/tok2vec/model
Normal file
BIN
models/invoice-de-0.2.0/tok2vec/model
Normal file
Binary file not shown.
3
models/invoice-de-0.2.0/tokenizer
Normal file
3
models/invoice-de-0.2.0/tokenizer
Normal file
File diff suppressed because one or more lines are too long
1
models/invoice-de-0.2.0/vocab/key2row
Normal file
1
models/invoice-de-0.2.0/vocab/key2row
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<EFBFBD>
|
||||||
BIN
models/invoice-de-0.2.0/vocab/lookups.bin
Normal file
BIN
models/invoice-de-0.2.0/vocab/lookups.bin
Normal file
Binary file not shown.
98667
models/invoice-de-0.2.0/vocab/strings.json
Normal file
98667
models/invoice-de-0.2.0/vocab/strings.json
Normal file
File diff suppressed because it is too large
Load diff
BIN
models/invoice-de-0.2.0/vocab/vectors
Normal file
BIN
models/invoice-de-0.2.0/vocab/vectors
Normal file
Binary file not shown.
3
models/invoice-de-0.2.0/vocab/vectors.cfg
Normal file
3
models/invoice-de-0.2.0/vocab/vectors.cfg
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"mode":"default"
|
||||||
|
}
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
<!-- ML spaCy Server -->
|
<!-- ML spaCy Server -->
|
||||||
<item name="ml.training.endpoint"><value xsi:type="xs:string">http://imixs-ml-spacy:8000/</value></item>
|
<item name="ml.training.endpoint"><value xsi:type="xs:string">http://imixs-ml-spacy:8000/</value></item>
|
||||||
<item name="ml.training.model"><value xsi:type="xs:string">invoice-de-0.1.0</value></item>
|
<item name="ml.training.model"><value xsi:type="xs:string">invoice-de-0.2.0</value></item>
|
||||||
<item name="ml.training.filepattern"><value xsi:type="xs:string">.pdf|.PDF</value></item>
|
<item name="ml.training.filepattern"><value xsi:type="xs:string">.pdf|.PDF</value></item>
|
||||||
<!-- LOW | GOOD -->
|
<!-- LOW | GOOD -->
|
||||||
<item name="ml.training.quality"><value xsi:type="xs:string">LOW</value></item>
|
<item name="ml.training.quality"><value xsi:type="xs:string">LOW</value></item>
|
||||||
|
|
|
||||||
|
|
@ -239,6 +239,12 @@
|
||||||
<artifactId>imixs-adapters-sepa</artifactId>
|
<artifactId>imixs-adapters-sepa</artifactId>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<!-- DATEV Adapter -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.imixs.workflow</groupId>
|
||||||
|
<artifactId>imixs-adapters-datev</artifactId>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
<!-- QR Code -->
|
<!-- QR Code -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.imixs.workflow</groupId>
|
<groupId>org.imixs.workflow</groupId>
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@ public class CargosoftController implements Serializable {
|
||||||
|
|
||||||
private ItemCollection kreditor = null; // used for zahlungsziel (kreidtor.xhtml)
|
private ItemCollection kreditor = null; // used for zahlungsziel (kreidtor.xhtml)
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method searches a text phrase within the list of cargosoft kreditor
|
* This method searches a text phrase within the list of cargosoft kreditor
|
||||||
* objects (type=cargosoftkreditor).
|
* objects (type=cargosoftkreditor).
|
||||||
|
|
@ -146,6 +147,69 @@ public class CargosoftController implements Serializable {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method searches a text phrase within the list of cargosoft Debitor
|
||||||
|
* objects (type=cargosoftkreditor).
|
||||||
|
* <p>
|
||||||
|
* JSF Integration:
|
||||||
|
*
|
||||||
|
* {@code
|
||||||
|
*
|
||||||
|
* <h:commandScript name="imixsOfficeWorkflow.mlSearch" action=
|
||||||
|
* "#{cargosoftController.search()}" rendered="#{cargosoftController!=null}"
|
||||||
|
* render= "cargosoft-results" /> }
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* JavaScript Example:
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* {@code
|
||||||
|
* imixsOfficeWorkflow.cargosoftSearch({ item: '_invoicenumber' })
|
||||||
|
* }
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @param searchmode - if 'multi', display multiple IBANs in seperate lines
|
||||||
|
*/
|
||||||
|
public void searchDebitor() {
|
||||||
|
|
||||||
|
searchResult = new ArrayList<KreditorSearchEntry>();
|
||||||
|
// get the param from faces context....
|
||||||
|
FacesContext fc = FacesContext.getCurrentInstance();
|
||||||
|
String phrase = fc.getExternalContext().getRequestParameterMap().get("phrase");
|
||||||
|
if (phrase == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.fine("search prase '" + phrase + "'");
|
||||||
|
|
||||||
|
// String input =workflowController.getWorkitem().getItemValueString(itemName);
|
||||||
|
if (phrase == null || phrase.length() < 2) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// die cargosoft Kreditornummer beginnt seltsamerweise mit einem K
|
||||||
|
// und die Debitoren mit einem D.....
|
||||||
|
String query = "(type:" + TYPE_CARGOSOFTKREDITOR + ") AND (name:D*) AND ((name:D" + phrase
|
||||||
|
+ "*) OR (" + phrase.toLowerCase() + "*) )";
|
||||||
|
|
||||||
|
try {
|
||||||
|
List<ItemCollection> result = documentService.find(query, 20, 0, "$modified", true);
|
||||||
|
logger.info("found " + result.size() + " debitors...");
|
||||||
|
if (result != null) {
|
||||||
|
for (ItemCollection dbtr : result) {
|
||||||
|
|
||||||
|
// Aenderugn 22. Jun wir geben das K/D direkt witer
|
||||||
|
String dbtrNo = dbtr.getItemValueString("_VENDOR_NUM");
|
||||||
|
String display = dbtrNo + " - " + dbtr.getItemValueString("_VENDOR_Name");
|
||||||
|
searchResult.add(new KreditorSearchEntry(dbtrNo, display, buildJsonData(dbtr)));
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (QueryException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Hilfsmethode die eine JSON Struktur mit einer IBAN/BIC kombinatuion erzeugt.
|
* Hilfsmethode die eine JSON Struktur mit einer IBAN/BIC kombinatuion erzeugt.
|
||||||
* Diese JSON Struktur wird von der Rechnungserfassungs Maske benötigt
|
* Diese JSON Struktur wird von der Rechnungserfassungs Maske benötigt
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,254 @@
|
||||||
|
package com.alexanderlogistics.datev;
|
||||||
|
|
||||||
|
import java.io.BufferedReader;
|
||||||
|
import java.io.ByteArrayInputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStreamReader;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import javax.inject.Inject;
|
||||||
|
|
||||||
|
import org.imixs.workflow.FileData;
|
||||||
|
import org.imixs.workflow.ItemCollection;
|
||||||
|
import org.imixs.workflow.SignalAdapter;
|
||||||
|
import org.imixs.workflow.datev.imports.DatevImportAdapter;
|
||||||
|
import org.imixs.workflow.engine.WorkflowService;
|
||||||
|
import org.imixs.workflow.exceptions.AccessDeniedException;
|
||||||
|
import org.imixs.workflow.exceptions.AdapterException;
|
||||||
|
import org.imixs.workflow.exceptions.ModelException;
|
||||||
|
import org.imixs.workflow.exceptions.PluginException;
|
||||||
|
import org.imixs.workflow.exceptions.ProcessingErrorException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Der DatevCargosoftImportAdapter liest eine von Cargosoft bereitgestellte
|
||||||
|
* DATEV Datei ein und erzeugt Ausgangsrechnungs Workitems. Die Cargosoft DATEV
|
||||||
|
* Datei enthlät auch Eingangsrechnugen, welche von diesem Adapter ignoriert
|
||||||
|
* werden.
|
||||||
|
* <p>
|
||||||
|
* In der Spalte Belegart-4 steht das Fäligkeitsdatum.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @version 1.0
|
||||||
|
* @author rsoika
|
||||||
|
*/
|
||||||
|
public class DatevCargosoftImportAdapter implements SignalAdapter {
|
||||||
|
|
||||||
|
private static Logger logger = Logger.getLogger(DatevCargosoftImportAdapter.class.getName());
|
||||||
|
|
||||||
|
|
||||||
|
public static final String ENCODING = "ISO-8859-1";
|
||||||
|
public static final String CHILD_ITEM_PROPERTY = "_ChildItems";
|
||||||
|
@Inject
|
||||||
|
WorkflowService workflowService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method finds or create the Datev Export and adds a reference
|
||||||
|
* ($workitemref) to the current invoice.
|
||||||
|
*
|
||||||
|
* @throws PluginException
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public ItemCollection execute(ItemCollection workitem, ItemCollection event)
|
||||||
|
throws AdapterException, PluginException {
|
||||||
|
|
||||||
|
logger.info("...parse datev file import...");
|
||||||
|
try {
|
||||||
|
readData(workitem);
|
||||||
|
} catch (ModelException e) {
|
||||||
|
throw new AdapterException(
|
||||||
|
PluginException.class.getSimpleName(),DatevImportAdapter.DATEV_IMPORT_ERROR,"Failed to import datev data!",e);
|
||||||
|
|
||||||
|
}
|
||||||
|
return workitem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Liest die datenzeilen ab Zeile 3 aus und bildet worktiems gruppiert nach
|
||||||
|
* belegnummer
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Belegfeld-1 ist hier ein eindeutiger Schlüssel für die Erzeugung von
|
||||||
|
* Splitbuchungen
|
||||||
|
*
|
||||||
|
* @param document
|
||||||
|
* @throws PluginException
|
||||||
|
* @throws ModelException
|
||||||
|
* @throws ProcessingErrorException
|
||||||
|
* @throws AccessDeniedException
|
||||||
|
*/
|
||||||
|
private void readData(ItemCollection workitem)
|
||||||
|
throws PluginException, AccessDeniedException, ProcessingErrorException, ModelException {
|
||||||
|
String dataLine;
|
||||||
|
ItemCollection invoiceWorkitem = null;
|
||||||
|
List<ItemCollection> splitBuchungen = new ArrayList<ItemCollection>();
|
||||||
|
|
||||||
|
FileData fileData = workitem.getFileData().get(0);
|
||||||
|
ByteArrayInputStream imputStream = new ByteArrayInputStream(fileData.getContent());
|
||||||
|
|
||||||
|
try {
|
||||||
|
BufferedReader in = new BufferedReader(new InputStreamReader(imputStream, ENCODING));
|
||||||
|
|
||||||
|
// skip header
|
||||||
|
in.readLine();
|
||||||
|
in.readLine();
|
||||||
|
|
||||||
|
// read content....
|
||||||
|
int line = 0;
|
||||||
|
int blockSize = 0;
|
||||||
|
while ((dataLine = in.readLine()) != null) {
|
||||||
|
line++;
|
||||||
|
if (blockSize >= 100) {
|
||||||
|
blockSize = 0;
|
||||||
|
logger.info(line + " entries read....");
|
||||||
|
}
|
||||||
|
|
||||||
|
// alle werte parsen
|
||||||
|
String[] header1List = dataLine.split(";(?=([^\"]*\"[^\"]*\")*[^\"]*$)", 99);
|
||||||
|
if (header1List.length < 6) {
|
||||||
|
throw new PluginException(DatevCargosoftImportAdapter.class.getName(),DatevImportAdapter.DATEV_IMPORT_ERROR,
|
||||||
|
"Invalid data in line " + line);
|
||||||
|
}
|
||||||
|
|
||||||
|
String belegNummer = DatevImportAdapter.csvVal(header1List[10]);
|
||||||
|
String gegenKonto = DatevImportAdapter.csvVal(header1List[7]);
|
||||||
|
String text = DatevImportAdapter.csvVal(header1List[13]);
|
||||||
|
|
||||||
|
// Skip Eingangsrechnungen
|
||||||
|
if (!gegenKonto.startsWith("1")) {
|
||||||
|
// skip
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
logger.info("...read dbtr: " + gegenKonto + " beleg-nr: "+belegNummer);
|
||||||
|
|
||||||
|
// Erzeuge einen Buchungssatz
|
||||||
|
ItemCollection dataItemCol = new ItemCollection();
|
||||||
|
dataItemCol.setItemValue("datev.text", text);
|
||||||
|
dataItemCol.setItemValue("datev.umsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[0])));
|
||||||
|
dataItemCol.setItemValue("datev.shzeichen", DatevImportAdapter.csvVal(header1List[1]));
|
||||||
|
dataItemCol.setItemValue("datev.wkz", DatevImportAdapter.csvVal(header1List[2]));
|
||||||
|
dataItemCol.setItemValue("datev.kurs", parseBetrag(DatevImportAdapter.csvVal(header1List[3])));
|
||||||
|
dataItemCol.setItemValue("datev.basisumsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[4])));
|
||||||
|
dataItemCol.setItemValue("datev.konto", DatevImportAdapter.csvVal(header1List[6]));
|
||||||
|
|
||||||
|
// Haben wir schon eine Invoice Workitem angelegt?
|
||||||
|
if (invoiceWorkitem == null) {
|
||||||
|
logger.info("...create new workitem....");
|
||||||
|
// erzeuge ein neues
|
||||||
|
invoiceWorkitem =createEmptyInvoice(belegNummer,text,gegenKonto);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ist es noch die selbe Belegnummer?
|
||||||
|
if (belegNummer.equals(invoiceWorkitem.getItemValueString("invoice.number"))) {
|
||||||
|
// adde die Splitbuchung
|
||||||
|
splitBuchungen.add(dataItemCol);
|
||||||
|
logger.info("...add splitbuchung....");
|
||||||
|
} else {
|
||||||
|
logger.info("...close workitem....");
|
||||||
|
|
||||||
|
// nein - also invoice schließen
|
||||||
|
closeInvoiceWorkitem(invoiceWorkitem, splitBuchungen);
|
||||||
|
|
||||||
|
// neue Splitbuchungstabelle anlegen
|
||||||
|
splitBuchungen = new ArrayList<ItemCollection>();
|
||||||
|
// invoice zurücksetzten
|
||||||
|
// erzeuge ein neues
|
||||||
|
invoiceWorkitem =createEmptyInvoice(belegNummer,text,gegenKonto);
|
||||||
|
splitBuchungen.add(dataItemCol);
|
||||||
|
}
|
||||||
|
|
||||||
|
}// wile end
|
||||||
|
closeInvoiceWorkitem(invoiceWorkitem,splitBuchungen);
|
||||||
|
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new PluginException(DatevCargosoftImportAdapter.class.getName(), DatevImportAdapter.DATEV_IMPORT_ERROR,
|
||||||
|
"Unable to read file", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private ItemCollection createEmptyInvoice(String belegNummer, String text, String gegenKonto) {
|
||||||
|
ItemCollection invoiceWorkitem = new ItemCollection();
|
||||||
|
invoiceWorkitem.setItemValue("invoice.number", belegNummer);
|
||||||
|
invoiceWorkitem.setItemValue("invoice.text", text);
|
||||||
|
invoiceWorkitem.setItemValue("dbtr.number", gegenKonto);
|
||||||
|
return invoiceWorkitem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* . entfernen
|
||||||
|
* , mit punkt ersetzten
|
||||||
|
*
|
||||||
|
* @param value
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public Double parseBetrag(String value) {
|
||||||
|
|
||||||
|
value=value.replace(".","");
|
||||||
|
value=value.replace(",",".");
|
||||||
|
|
||||||
|
return new Double(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Hilfsmethod schließt das Invoice Workitem ab
|
||||||
|
*
|
||||||
|
* @throws ModelException
|
||||||
|
* @throws PluginException
|
||||||
|
* @throws ProcessingErrorException
|
||||||
|
* @throws AccessDeniedException
|
||||||
|
*/
|
||||||
|
private void closeInvoiceWorkitem(ItemCollection invoiceWorkitem, List<ItemCollection> splitBuchungen)
|
||||||
|
throws AccessDeniedException, ProcessingErrorException, PluginException, ModelException {
|
||||||
|
if (invoiceWorkitem == null) {
|
||||||
|
return; // no op
|
||||||
|
}
|
||||||
|
|
||||||
|
// berechne Total:
|
||||||
|
double total=0;
|
||||||
|
for (ItemCollection zeile: splitBuchungen) {
|
||||||
|
if ("S".equals(zeile.getItemValueString("datev.shzeichen")) ) {
|
||||||
|
total=total+zeile.getItemValueDouble("datev.umsatz");
|
||||||
|
} else {
|
||||||
|
total=total-zeile.getItemValueDouble("datev.umsatz");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
invoiceWorkitem.setItemValue("invoice.total", total);
|
||||||
|
// implode die Splitbuchungen
|
||||||
|
implodeChildList(invoiceWorkitem, splitBuchungen);
|
||||||
|
// Processe die Invoice
|
||||||
|
invoiceWorkitem.model("rechnungsausgang-de-1.0").task(5001).event(980);
|
||||||
|
workflowService.processWorkItem(invoiceWorkitem);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert the List of ItemCollections back into a List of Map elements
|
||||||
|
*
|
||||||
|
* @param workitem
|
||||||
|
*/
|
||||||
|
@SuppressWarnings({ "rawtypes" })
|
||||||
|
private void implodeChildList(ItemCollection workitem, List<ItemCollection> childItems) {
|
||||||
|
List<Map> mapOrderItems = new ArrayList<Map>();
|
||||||
|
// convert the child ItemCollection elements into a List of Map
|
||||||
|
if (childItems != null) {
|
||||||
|
logger.fine("Convert child items into Map...");
|
||||||
|
// iterate over all order items..
|
||||||
|
for (ItemCollection orderItem : childItems) {
|
||||||
|
mapOrderItems.add(orderItem.getAllItems());
|
||||||
|
}
|
||||||
|
workitem.replaceItemValue(CHILD_ITEM_PROPERTY, mapOrderItems);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li><h:link outcome="/pages/admin/document_import">Dokument Import</h:link></li>
|
<li><h:link outcome="/pages/admin/document_import">Dokument Import</h:link></li>
|
||||||
<li><h:link outcome="/pages/admin/sepa_config">SEPA</h:link></li>
|
<li><h:link outcome="/pages/admin/sepa_config">SEPA</h:link></li>
|
||||||
|
<li><h:link outcome="/pages/admin/datev_config">DATEV</h:link></li>
|
||||||
<li><h:link outcome="/pages/admin/analyse_invoicing">Analyse Rechnungseingang</h:link></li>
|
<li><h:link outcome="/pages/admin/analyse_invoicing">Analyse Rechnungseingang</h:link></li>
|
||||||
<li><h:link outcome="/pages/admin/kreditor">Kreditoren Zahlungsziele</h:link></li>
|
<li><h:link outcome="/pages/admin/kreditor">Kreditoren Zahlungsziele</h:link></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,263 @@
|
||||||
|
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:f="http://java.sun.com/jsf/core"
|
||||||
|
xmlns:h="http://java.sun.com/jsf/html"
|
||||||
|
xmlns:ui="http://java.sun.com/jsf/facelets"
|
||||||
|
xmlns:i="http://java.sun.com/jsf/composite/imixs"
|
||||||
|
xmlns:c="http://java.sun.com/jsp/jstl/core"
|
||||||
|
xmlns:marty="http://java.sun.com/jsf/composite/marty"
|
||||||
|
template="/layout/template.xhtml">
|
||||||
|
|
||||||
|
<ui:define name="content">
|
||||||
|
<f:view>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
/*<![CDATA[*/
|
||||||
|
|
||||||
|
function updateStatustPanel(data) {
|
||||||
|
//initUserInput($('#userselector_id'));
|
||||||
|
if (data.status === 'success') {
|
||||||
|
// select with wildcard operator
|
||||||
|
$('[id$=status_panel]').imixsLayout();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*]]>*/
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<h:form id="import_form_id">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="imixs-form">
|
||||||
|
<div class="imixs-header">
|
||||||
|
<h1>DATEV</h1>
|
||||||
|
|
||||||
|
<!-- ########## Error ########## -->
|
||||||
|
<ui:include src="/pages/error_message.xhtml" />
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="imixs-body">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="imixs-tabs">
|
||||||
|
<ul>
|
||||||
|
<li><a href="#tab-1">Import</a></li>
|
||||||
|
<li><a href="#tab-2">Stammdaten</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
<div id="tab-1">
|
||||||
|
|
||||||
|
<!-- **** Export Buchunsstapel ***** -->
|
||||||
|
<div class="imixs-form-section">
|
||||||
|
<div class="ui-state-highlight ui-corner-all"
|
||||||
|
style="margin-bottom: 10px; padding: .5em;">
|
||||||
|
<h3>Import DATEV Buchungsstapel</h3>
|
||||||
|
<p>Definieren Sie hier den Inport eines Buchunsstapel. Der
|
||||||
|
Import erfolgt im DATEV Standardformat (CSV Datei)</p>
|
||||||
|
<p>Das Workflow Modell gibt an mit welchem Worklfow die
|
||||||
|
Datensätze importiert werden sollen</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="imixs-form-section-2">
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
Workflow Model Version <span class="imixs-required">*</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<h:inputText required="true"
|
||||||
|
value="#{datevController.configuration.item['_model_version']}">
|
||||||
|
</h:inputText>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>
|
||||||
|
Initial Task <span class="imixs-required">*</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<h:inputText required="true"
|
||||||
|
value="#{datevController.configuration.item['_initial_task']}">
|
||||||
|
</h:inputText>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="imixs-form-section">
|
||||||
|
<p>
|
||||||
|
<span class="typcn typcn-lightbulb"></span> The initial task
|
||||||
|
must define a report containing the query and style sheet
|
||||||
|
information. Invoices will be automatically grouped by the
|
||||||
|
optional attribute "_datev_client_id". The datev workflow may
|
||||||
|
optional include a "invoice_update" item definition.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- FTP -->
|
||||||
|
<div class="imixs-form-section-2">
|
||||||
|
<dl>
|
||||||
|
<dt>FTP Server / Port</dt>
|
||||||
|
<dd>
|
||||||
|
<h:inputText required="false" style="width:85%;"
|
||||||
|
value="#{datevController.configuration.item['_datev_ftp_host']}">
|
||||||
|
</h:inputText>
|
||||||
|
|
||||||
|
:
|
||||||
|
<h:inputText required="false" style="width:10%;"
|
||||||
|
value="#{datevController.configuration.item['_datev_ftp_port']}">
|
||||||
|
</h:inputText>
|
||||||
|
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<dl>
|
||||||
|
<dt>FTP UserID / Passwort</dt>
|
||||||
|
<dd>
|
||||||
|
<h:inputText required="false" style="width:47%;"
|
||||||
|
value="#{datevController.configuration.item['_datev_ftp_userid']}">
|
||||||
|
</h:inputText>
|
||||||
|
|
||||||
|
/
|
||||||
|
<h:inputSecret required="false" style="width:47%;"
|
||||||
|
redisplay="true"
|
||||||
|
value="#{datevController.configuration.item['_datev_ftp_password']}">
|
||||||
|
</h:inputSecret>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- FTP Verzeichnisse -->
|
||||||
|
<div class="imixs-form-section-2">
|
||||||
|
<dl>
|
||||||
|
<dt>FTP Verzeichnis Buchungsstapel</dt>
|
||||||
|
<dd>
|
||||||
|
<h:inputText required="false"
|
||||||
|
value="#{datevController.configuration.item['_datev_ftp_path_buchungsstapel']}">
|
||||||
|
</h:inputText>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<dl>
|
||||||
|
<dt>FTP Verzeichnis Belege</dt>
|
||||||
|
<dd>
|
||||||
|
<h:inputText required="false"
|
||||||
|
value="#{datevController.configuration.item['_datev_ftp_path_belege']}">
|
||||||
|
</h:inputText>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<p>
|
||||||
|
<span class="typcn typcn-lightbulb"></span> Die Verzeichnisse
|
||||||
|
werden mit der DATEV Mandanten ID ergänzt und müssen vor dem
|
||||||
|
Export angelegt worden sein!
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<h2>Scheduler</h2>
|
||||||
|
<!-- include timer control -->
|
||||||
|
<ui:include src="sub_scheduler_control.xhtml">
|
||||||
|
<ui:param name="schedulerController"
|
||||||
|
value="#{datevController}" />
|
||||||
|
</ui:include>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="tab-2">
|
||||||
|
<!-- **** DATEV import ***** -->
|
||||||
|
<div class="imixs-form-section">
|
||||||
|
<div class="ui-state-highlight ui-corner-all"
|
||||||
|
style="margin-bottom: 10px; padding: .5em;">
|
||||||
|
<h3>Import DATEV Stammdaten</h3>
|
||||||
|
<ul>
|
||||||
|
<li>Fügen Sie hier die zu importierende DATEV Datei an.</li>
|
||||||
|
<li>Die Datei muss im CSV Format vorliegen.</li>
|
||||||
|
|
||||||
|
<li>Die Datei muss zwei Header Zeilen enthalten:
|
||||||
|
<ol>
|
||||||
|
<li>Zeile: Datenart - z.B. "Kontobeschriftungen"</li>
|
||||||
|
<li>Zeile: Feldbezeichnungen - z.B. "Konto,
|
||||||
|
Kontobezeichnung"</li>
|
||||||
|
</ol>
|
||||||
|
</li>
|
||||||
|
<li>Fügen Sie immer nur eine Datei für den Import an!</li>
|
||||||
|
<li>Der Import kann einige Minuten in Anspruch nehmen.</li>
|
||||||
|
<li>Brechen Sie den Vorgang nicht ab und warten Sie bis
|
||||||
|
der Import vollständig abgeschlossen ist.</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>Importdatei wählen:</dt>
|
||||||
|
<dd>
|
||||||
|
<i:imixsFileUpload id="file_upload_id"
|
||||||
|
workitem="#{kriegerImportController.importData}"
|
||||||
|
context_url="#{facesContext.externalContext.requestContextPath}/rest-service/workflow/workitem/#{workflowController.workitem.item['$uniqueid']}"
|
||||||
|
hideatachments="true" />
|
||||||
|
<h:panelGroup layout="block"
|
||||||
|
styleClass="ui-state-highlight ui-corner-all"
|
||||||
|
style="margin-bottom: 10px; padding: .5em;"
|
||||||
|
rendered="#{! empty kriegerImportController.importData.item['log']}">
|
||||||
|
<pre>#{kriegerImportController.importData.item['log']}</pre>
|
||||||
|
|
||||||
|
</h:panelGroup>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
<h:commandButton
|
||||||
|
actionListener="#{kriegerImportController.startImport}"
|
||||||
|
value="Start Import">
|
||||||
|
</h:commandButton>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="imixs-footer">
|
||||||
|
<h:outputLabel value="#{message.modified}: " />
|
||||||
|
<h:outputText
|
||||||
|
value="#{datevController.configuration.item['$modified']}">
|
||||||
|
<f:convertDateTime timeZone="#{message.timeZone}" type="both"
|
||||||
|
pattern="#{message.dateTimePattern}" />
|
||||||
|
</h:outputText>
|
||||||
|
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<h:commandButton
|
||||||
|
actionListener="#{datevController.saveConfiguration()}"
|
||||||
|
value="#{message.save}">
|
||||||
|
</h:commandButton>
|
||||||
|
|
||||||
|
<h:commandButton value="#{message.close}" action="notes" />
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</h:form>
|
||||||
|
</f:view>
|
||||||
|
</ui:define>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ui:composition>
|
||||||
|
|
@ -0,0 +1,27 @@
|
||||||
|
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:ui="http://java.sun.com/jsf/facelets"
|
||||||
|
xmlns:f="http://java.sun.com/jsf/core"
|
||||||
|
xmlns:c="http://java.sun.com/jsp/jstl/core"
|
||||||
|
xmlns:h="http://java.sun.com/jsf/html"
|
||||||
|
xmlns:i="http://java.sun.com/jsf/composite/imixs"
|
||||||
|
xmlns:marty="http://java.sun.com/jsf/composite/marty">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="imixs-form-section">
|
||||||
|
<h1>Log</h1>
|
||||||
|
<div class="ui-state-highlight ui-corner-all imixs-instruction">
|
||||||
|
<pre>
|
||||||
|
<ui:repeat var="logentry"
|
||||||
|
value="#{workitem.itemList['_scheduler_logmessage']}">
|
||||||
|
<h:outputText escape="false" value="#{logentry}" /><br />
|
||||||
|
</ui:repeat>
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ui:composition>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,95 @@
|
||||||
|
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:f="http://xmlns.jcp.org/jsf/core"
|
||||||
|
xmlns:h="http://xmlns.jcp.org/jsf/html"
|
||||||
|
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
|
||||||
|
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
|
||||||
|
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"
|
||||||
|
xmlns:marty="http://xmlns.jcp.org/jsf/composite/marty"
|
||||||
|
xmlns:i="http://xmlns.jcp.org/jsf/composite/imixs">
|
||||||
|
|
||||||
|
<!-- Cargosoft Search integration
|
||||||
|
|
||||||
|
This subform is loaded by the form_basic.xhtml page.
|
||||||
|
|
||||||
|
The subform provides a jsf commandScript which calls the cargosoftController.searchCreditor method in the backend.
|
||||||
|
|
||||||
|
The script below inits a autocompletion feature for the input field.
|
||||||
|
See imixs-office.autocompletion.js
|
||||||
|
|
||||||
|
See also:
|
||||||
|
https://stackoverflow.com/questions/16588327/how-to-invoke-a-jsf-managed-bean-on-a-html-dom-event-using-native-javascript
|
||||||
|
https://dzone.com/articles/execute-a-jsf-ajax-request-by-just-a-function-call
|
||||||
|
https://www.w3schools.com/howto/howto_js_autocomplete.asp
|
||||||
|
-->
|
||||||
|
<h:commandScript name="cargosoftSearch" action="#{cargosoftController.searchDebitor()}"
|
||||||
|
render="autocomplete-resultlist-cargosoft" onevent="autocompleteShowResult" />
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
/*<![CDATA[*/
|
||||||
|
|
||||||
|
// init ml input fields...
|
||||||
|
$(document).ready(function() {
|
||||||
|
|
||||||
|
// add autocomplete feature to dbtr.number...
|
||||||
|
var creditorField= $("input[data-item='dbtr.number']");
|
||||||
|
$(creditorField).each(function() {
|
||||||
|
$(this).addClass("imixs-ml");
|
||||||
|
autocompleteInitInput(this,cargosoftSearch,'autocomplete-resultlist-cargosoft',selectDbtrCallback);
|
||||||
|
});
|
||||||
|
// add cargsoft label if available
|
||||||
|
var cdtrName="#{workflowController.workitem.item['dbtr.name.cargosoft']}";
|
||||||
|
var inputElement=$("input[data-item='dbtr.number']");
|
||||||
|
//inputElement.after( "<span id='cdtr-name-id' class='small'>" + cdtrName + "</p>" );
|
||||||
|
});
|
||||||
|
|
||||||
|
// Hier bekommen wir die JSON Struktur mit allen daten.
|
||||||
|
// diese Daten werden auf die einzelnen Felder verteilt.
|
||||||
|
function selectDbtrCallback(selection) {
|
||||||
|
|
||||||
|
const dbtrData = JSON.parse(selection);
|
||||||
|
|
||||||
|
// fill data into the fields....
|
||||||
|
var inputElement=$("input[data-item='dbtr.number']");
|
||||||
|
inputElement.val(dbtrData.no);
|
||||||
|
// remove old dbtr.name
|
||||||
|
$('#dbtr-name-id').remove();
|
||||||
|
// append span with dbtr.name....
|
||||||
|
inputElement.after( "<span id='dbtr-name-id' class='small'>" + dbtrData.name + "</p>" );
|
||||||
|
|
||||||
|
var inputElementZahlungsziel=$("input[data-item='dbtr.creditperiod']");
|
||||||
|
var inputElementZahlungszielDbtr=$("input[id$='dbtr_creditperiod']");
|
||||||
|
var inputElementInvoiceDate=$("input[id$='date_invoice']");
|
||||||
|
var inputElementIban=$("input[data-item='dbtr.iban']");
|
||||||
|
var inputElementBic=$("input[data-item='dbtr.bic']");
|
||||||
|
if (inputElementZahlungszielDbtr && dbtrData.creditperiod!='') {
|
||||||
|
inputElementZahlungszielDbtr.val(dbtrData.creditperiod);
|
||||||
|
}
|
||||||
|
// nur wenn ein Rechnugnsdatum eingegeben wurde
|
||||||
|
if (inputElementInvoiceDate && inputElementInvoiceDate.val()!='' && inputElementZahlungsziel && dbtrData.creditperiod!='') {
|
||||||
|
inputElementZahlungsziel.val(dbtrData.creditperiod);
|
||||||
|
inputElementZahlungsziel.change();
|
||||||
|
//$('.alexander-logistic-date').focus().select();
|
||||||
|
$("input[data-item='invoice.number']").focus().select();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/*]]>*/
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- Hier speichern das von Kreditor vorgeschlagene zahlungsziel -->
|
||||||
|
<h:inputHidden id="dbtr_creditperiod" value="#{workflowController.workitem.item['dbtr.creditperiod']}" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ui:composition>
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -13,7 +13,9 @@
|
||||||
<ui:param name="workitem" value="#{workflowController.workitem}" />
|
<ui:param name="workitem" value="#{workflowController.workitem}" />
|
||||||
<ui:param name="searchmode" value="multi" /> <!-- display multiple ibans in separate lines -->
|
<ui:param name="searchmode" value="multi" /> <!-- display multiple ibans in separate lines -->
|
||||||
</ui:include>
|
</ui:include>
|
||||||
|
<ui:include src="/pages/workitems/forms/alexander/cargsoft-debitor-search.xhtml">
|
||||||
|
<ui:param name="workitem" value="#{workflowController.workitem}" />
|
||||||
|
</ui:include>
|
||||||
|
|
||||||
|
|
||||||
<!-- the following code computes the txtworkflow abstract from the current modelversion and processid -->
|
<!-- the following code computes the txtworkflow abstract from the current modelversion and processid -->
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,92 @@
|
||||||
|
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
|
||||||
|
xmlns:f="http://xmlns.jcp.org/jsf/core"
|
||||||
|
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
|
||||||
|
xmlns:h="http://xmlns.jcp.org/jsf/html">
|
||||||
|
|
||||||
|
|
||||||
|
<h:panelGroup layout="block" styleClass="imixs-form-section"
|
||||||
|
id="oderlist" binding="#{orderlistContainer}">
|
||||||
|
|
||||||
|
<f:ajax render="oderlist" onevent="updateOrderItems">
|
||||||
|
<table class="imixsdatatable imixs-orderitems">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
dataItemCol.setItemValue("datev.umsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[0])));
|
||||||
|
dataItemCol.setItemValue("datev.shzeichen", DatevImportAdapter.csvVal(header1List[1]));
|
||||||
|
dataItemCol.setItemValue("datev.wkz", DatevImportAdapter.csvVal(header1List[2]));
|
||||||
|
dataItemCol.setItemValue("datev.kurs", parseBetrag(DatevImportAdapter.csvVal(header1List[3])));
|
||||||
|
dataItemCol.setItemValue("datev.basisumsatz", parseBetrag(DatevImportAdapter.csvVal(header1List[4])));
|
||||||
|
dataItemCol.setItemValue("datev.konto", DatevImportAdapter.csvVal(header1List[6]));
|
||||||
|
-->
|
||||||
|
<tr>
|
||||||
|
<th style="">#</th>
|
||||||
|
<th style="">Position<span class="imixs-required">
|
||||||
|
*</span></th>
|
||||||
|
<th style="width: 100px;">Umsatz</th>
|
||||||
|
<th style="width: 40px;">S/H</th>
|
||||||
|
<th style="width: 40px;">Währung</th>
|
||||||
|
<th style="width: 150px; text-align: right;">Kurs</th>
|
||||||
|
<th style="width: 150px; text-align: right;">Basisumsatz</th>
|
||||||
|
<th style="width: 150px; text-align: right;">Gegenkonto</th>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<ui:repeat var="orderitem" value="#{childItemController.childItems}">
|
||||||
|
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<!-- pos -->
|
||||||
|
<td><h:outputText value="#{orderitem.item['numpos']}" /></td>
|
||||||
|
|
||||||
|
<td><h:outputText value="#{orderitem.item['datev.text']}" /></td>
|
||||||
|
|
||||||
|
<!-- Name -->
|
||||||
|
<td><h:outputText value="#{orderitem.item['datev.umsatz']}" /></td>
|
||||||
|
|
||||||
|
<td><h:outputText value="#{orderitem.item['datev.shzeichen']}" /></td>
|
||||||
|
|
||||||
|
<td><h:outputText value="#{orderitem.item['datev.wkz']}" /></td>
|
||||||
|
|
||||||
|
<td><h:outputText value="#{orderitem.item['datev.kurs']}" /></td>
|
||||||
|
|
||||||
|
<td style="text-align: right;"><h:outputText
|
||||||
|
value="#{orderitem.item['datev.basisumsatz']}" /></td>
|
||||||
|
|
||||||
|
<td style="text-align: right;"><h:outputText
|
||||||
|
value="#{orderitem.item['datev.konto']}" /></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</ui:repeat>
|
||||||
|
|
||||||
|
<!-- summary -->
|
||||||
|
<tr>
|
||||||
|
<td />
|
||||||
|
|
||||||
|
|
||||||
|
<td style="text-align: right;">Summe:</td>
|
||||||
|
|
||||||
|
<td class="orderlist_summary" style="text-align: right;"><h:outputText
|
||||||
|
value="#{workitem.item['invoice.total']}">
|
||||||
|
</h:outputText></td>
|
||||||
|
<td />
|
||||||
|
<td /><td /><td /><td />
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</f:ajax>
|
||||||
|
</h:panelGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
/*<![CDATA[*/
|
||||||
|
|
||||||
|
/*]]>*/
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ui:composition>
|
||||||
|
|
@ -0,0 +1,321 @@
|
||||||
|
"EXTF";"510";21;"Buchungsstapel";7;"20220721060421653";"";"CS";"cargoservice";"";"";"";"20220101";"4";"20220601";"20220630";"202206ALL";"CS";"";"";0;"EUR";"";"";"";"";"";"";"";"";""
|
||||||
|
Umsatz (ohne Soll-/Haben-Kennzeichen);Soll-Haben-Kennzeichen;WKZ Umsatz;Kurs;Basisumsatz;WKZ Basisumsatz;Konto;Gegenkonto;BU-Schlüssel;Belegdatum;Belegfeld 1;Belegfeld 2;Skonto;Buchungstext;Postensperre;Diverse Adressnummer;Geschäftspartnerbank;Sachverhalt;Zinssperre;Beleglink;Beleginfo-Art 1;Beleginfo-Inhalt 1;Beleginfo-Art 2;Beleginfo-Inhalt 2;Beleginfo-Art 3;Beleginfo-Inhalt 3;Beleginfo-Art 4;Beleginfo-Inhalt 4;Beleginfo-Art 5;Beleginfo-Inhalt 5;Beleginfo-Art 6;Beleginfo-Inhalt 6;Beleginfo-Art 7;Beleginfo-Inhalt 7;Beleginfo-Art 8;Beleginfo-Inhalt 8;KOST1-Kostenstelle;KOST2-Kostenstelle;KOST-Menge;EU-Mitgliedstaatu. USt-IdNr.;EU-Steuersatz;Abw. Versteuerungsart;Sachverhalt L+L;Funktionsergänzung L+L;BU 49 Hauptfunktionstyp;BU 49 Hauptfunktionsnummer;BU 49 Funktionsergänzung;Zusatzinformation-Art 1;Zusatzinformation-Inhalt 1;Zusatzinformation-Art 2;Zusatzinformation-Inhalt 2;Zusatzinformation-Art 3;Zusatzinformation-Inhalt 3;Zusatzinformation-Art 4;Zusatzinformation-Inhalt 4;Zusatzinformation-Art 5;Zusatzinformation-Inhalt 5;Zusatzinformation-Art 6;Zusatzinformation-Inhalt 6;Zusatzinformation-Art 7;Zusatzinformation-Inhalt 7;Zusatzinformation-Art 8;Zusatzinformation-Inhalt 8;Zusatzinformation-Art 9;Zusatzinformation-Inhalt 9;Zusatzinformation-Art 10;Zusatzinformation-Inhalt 10;Zusatzinformation-Art 11;Zusatzinformation-Inhalt 11;Zusatzinformation-Art 12;Zusatzinformation-Inhalt 12;Zusatzinformation-Art 13;Zusatzinformation-Inhalt 13;Zusatzinformation-Art 14;Zusatzinformation-Inhalt 14;Zusatzinformation-Art 15;Zusatzinformation-Inhalt 15;Zusatzinformation-Art 16;Zusatzinformation-Inhalt 16;Zusatzinformation-Art 17;Zusatzinformation-Inhalt 17;Zusatzinformation-Art 18;Zusatzinformation-Inhalt 18;Zusatzinformation-Art 19;Zusatzinformation-Inhalt 19;Zusatzinformation-Art 20;Zusatzinformation-Inhalt 20;Stück;Gewicht;Zahlweise;Forderungsart;Veranlagungsjahr;Zugeordnete Fälligkeit;Skontotyp;Auftragsnummer;Buchungstyp;USt-Schlüssel (Anzahlungen);EU-Mitgliedstaat (Anzahlungen);Sachverhalt L+L (Anzahlungen);EU-Steuersatz (Anzahlungen);Erlöskonto (Anzahlungen);Herkunft-Kz;Leerfeld;KOST-Datum;SEPAMandatsreferenz;Skontosperre;Gesellschaftername;Beteiligtennummer;Identifikationsnummer;Zeichnernummer;Postensperre bis;Bezeichnung SoBil-Sachverhalt;Kennzeichen SoBil-Buchung;Festschreibung;Leistungsdatum;Datum Zuord. Steuerperiode
|
||||||
|
1359,96;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177348";"";"";"G LA-HOL-2204-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1399,27;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177350";"";"";"G LA-HOL-2206-018";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3732,36;"S";"EUR";0,000000;0,00;"";"8011";"13342";"";"2007";"177369";"";"";"G IM-GCA-2206-006";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE250152875";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
910,33;"S";"EUR";0,000000;0,00;"";"8011";"13342";"";"2007";"177377";"";"";"G IM-GCA-2206-009";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE250152875";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
353,77;"S";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"177416";"";"";"G LA-ZEL-2206-078";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
376,44;"S";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"177417";"";"";"G IM-ZEL-2206-288";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
47,60;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"0106";"202202537";"";"";"LG LA-ZEL-2204-068";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
47,60;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"0106";"202202538";"";"";"LG LA-ZEL-2204-069";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
47,60;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"0106";"202202539";"";"";"LG LA-ZEL-2204-070";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
650,00;"S";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"LR IM-GCA-2206-102";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
700,00;"S";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"LR IM-GCA-2206-140";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
228,00;"S";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"LR IM-GCA-2206-168";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
471,24;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"3006";"202202387";"";"";"LR LA-ZEL-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
763,77;"S";"EUR";0,000000;0,00;"";"3231";"70153";"";"1106";"5225479709";"";"";"LR IM-GCA-2205-189";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
720,00;"S";"EUR";0,000000;0,00;"";"3231";"70280";"";"0106";"5132044926";"";"";"LR IM-GCA-2204-135";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1094,80;"S";"EUR";0,000000;0,00;"";"3407";"71401";"";"0106";"554343";"";"";"LR IM-ZEL-2110-275";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
75,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"0106";"DEIM3326913";"";"";"LR LA-ZEL-2205-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
75,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"0806";"DEIM3359248";"";"";"LR LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
75,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"0806";"DEIM3359246";"";"";"LR LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
600,00;"S";"EUR";0,000000;0,00;"";"3211";"70191";"";"1406";"22133409";"";"";"LR LA-ZEL-2206-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
762,00;"S";"EUR";0,000000;0,00;"";"3211";"70191";"";"1506";"22134422";"";"";"LR LA-ZEL-2206-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
100,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"1606";"DEIM3371383";"";"";"LR LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
120,48;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381079";"";"";"LR LA-ZEL-2205-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1000,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381133";"";"";"LR LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
892,50;"S";"EUR";0,000000;0,00;"";"3407";"71401";"";"2206";"554827";"";"";"LR IM-ZEL-2206-153";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1606,50;"S";"EUR";0,000000;0,00;"";"3407";"71401";"";"2206";"554836";"";"";"LR IM-ZEL-2205-250";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
28,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381968";"";"";"LR IM-PAP-2206-014";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
6022,00;"S";"EUR";0,000000;0,00;"";"3211";"71692";"";"2206";"DEIM3381957";"";"";"LR IM-PAP-2205-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
100,72;"S";"EUR";0,000000;0,00;"";"3407";"71207";"";"2906";"22117007";"";"";"LR LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3000,00;"S";"EUR";0,000000;0,00;"";"3217";"74048";"";"3006";"CP.2022-956";"";"";"LR LA-ZEL-2204-120";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0656752950";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
672,77;"S";"EUR";0,000000;0,00;"";"3217";"74048";"";"3006";"CP.2022-956";"";"";"LR LA-ZEL-2204-122";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0656752950";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
500,00;"S";"EUR";0,000000;0,00;"";"3217";"74048";"";"3006";"CP.2022-956";"";"";"LR LA-ZEL-2204-119";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0656752950";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
2748,90;"S";"EUR";0,000000;0,00;"";"3407";"77459";"";"0407";"4000191";"";"";"LR LA-HOL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1350,00;"S";"EUR";0,000000;0,00;"";"3217";"74965";"";"2206";"776/06/FV/ULT/2022";"";"";"LR IM-PAP-2206-326";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1300,00;"S";"EUR";0,000000;0,00;"";"3217";"74965";"";"1706";"579/06/FV/ULT/2022";"";"";"LR IM-PAP-2206-154";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
930,00;"S";"EUR";0,000000;0,00;"";"3217";"75937";"";"0407";"FV019/07/2022/WAW";"";"";"LR IM-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL5272862830";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
151,08;"S";"EUR";0,000000;0,00;"";"3407";"71207";"";"0407";"22117590";"";"";"LR LA-ZEL-2206-063";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2106";"001040/221";"";"";"LR IM-ZEL-2206-257";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1406";"001041/221";"";"";"LR IM-ZEL-2206-079";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2406";"001042/221";"";"";"LR IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2206";"001043/221";"";"";"LR IM-ZEL-2206-259";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1506";"001044/221";"";"";"LR IM-ZEL-2206-169";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1306";"001045/221";"";"";"LR IM-ZEL-2206-076";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"1606";"001047/221";"";"";"LR IM-ZEL-2206-164";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"S";"EUR";0,000000;0,00;"";"3217";"72752";"";"2106";"001046/221";"";"";"LR IM-ZEL-2206-258";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
950,00;"S";"EUR";0,000000;0,00;"";"3217";"73845";"";"0407";"2022-07/9";"";"";"LR IM-ZEL-2206-311";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9281841410";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3230,00;"S";"EUR";0,000000;0,00;"";"3217";"70153";"";"0106";"5225334733";"";"";"LR IM-PAP-2203-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
766,02;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"2506";"5225511552";"";"";"LR LA-PAP-2205-017";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1252,00;"S";"EUR";0,000000;0,00;"";"3217";"70153";"";"2406";"5225510101";"";"";"LR IM-PAP-2204-141";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1100,00;"S";"EUR";0,000000;0,00;"";"3217";"77505";"";"2406";"2022/06/69";"";"";"LR IM-ZEL-2206-280";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"7811892042";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
32,00;"S";"EUR";0,000000;0,00;"";"3217";"74954";"";"0507";"145340";"";"";"LR IM-ZEL-2204-174";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL005408179B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
870,00;"S";"EUR";0,000000;0,00;"";"3217";"77401";"";"0106";"F/FS/0984/04/2022";"";"";"LR IM-ZEL-2204-177";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9291794907";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
48,00;"S";"EUR";0,000000;0,00;"";"3217";"71692";"";"2406";"DEIM3385952+";"";"";"LR LA-ZEL-2206-085";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
69450,15;"S";"EUR";0,000000;0,00;"";"3406";"70897";"";"0807";"22015392";"";"";"LR EX-SAL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE812119489";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
117,81;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1107";"202202547";"";"";"LR LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
353,43;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1107";"202202548";"";"";"LR LA-ZEL-2206-091";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
942,48;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1207";"202202596";"";"";"LR LA-ZEL-2206-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
300,00;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"2106";"5225501034";"";"";"LR LA-PAP-2206-028";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
75,00;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"2106";"5225501041";"";"";"LR LA-PAP-2206-028";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
161,46;"S";"EUR";0,000000;0,00;"";"3211";"70153";"";"1806";"5225495304";"";"";"LR LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
5200,00;"S";"EUR";0,000000;0,00;"";"3210";"70153";"";"1407";"5225561489";"";"";"LR EX-SAL-2206-105";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1531,53;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202652";"";"";"LR LA-ZEL-2206-047";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1413,72;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202654";"";"";"LR LA-ZEL-2206-053";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
471,24;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202677";"";"";"LR LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
117,81;"S";"EUR";0,000000;0,00;"";"3407";"72584";"";"1807";"202202681";"";"";"LR LA-ZEL-2207-025";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
195,48;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177344";"";"";"R LA-ZEL-2205-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
4966,20;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177345";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
405,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177346";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
75,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177347";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1574,60;"H";"EUR";0,000000;0,00;"";"8011";"11773";"";"2007";"177349";"";"";"R IM-GCA-2206-156";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
101,15;"H";"EUR";0,000000;0,00;"";"8407";"11773";"";"2007";"177349";"";"";"R IM-GCA-2206-156";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
2759,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177351";"";"";"R LA-ZEL-2205-052";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
90,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177352";"";"";"R LA-ZEL-2205-052";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
2207,20;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177353";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
180,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177354";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
123,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177355";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
4609,20;"H";"EUR";0,000000;0,00;"";"8011";"11773";"";"2007";"177356";"";"";"R IM-GCA-2206-157";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
303,45;"H";"EUR";0,000000;0,00;"";"8407";"11773";"";"2007";"177356";"";"";"R IM-GCA-2206-157";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
4414,40;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177357";"";"";"R LA-ZEL-2205-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
90,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177358";"";"";"R LA-ZEL-2205-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3340,20;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177359";"";"";"R LA-ZEL-2206-043";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
180,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177360";"";"";"R LA-ZEL-2206-043";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1730,25;"H";"EUR";0,000000;0,00;"";"8011";"11773";"";"2007";"177362";"";"";"R IM-GCA-2206-158";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
53,55;"H";"EUR";0,000000;0,00;"";"8407";"11773";"";"2007";"177362";"";"";"R IM-GCA-2206-158";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE174441100";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
6124,41;"H";"EUR";0,000000;0,00;"";"8011";"15907";"";"2007";"177363";"";"";"R IM-GCA-2206-005";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE324028205";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
95,00;"H";"EUR";0,000000;0,00;"";"8336";"17369";"";"2007";"177364";"";"";"R IM-ZEL-2206-347";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ25411411";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
95,00;"H";"EUR";0,000000;0,00;"";"8336";"17369";"";"2007";"177365";"";"";"R IM-ZEL-2206-255";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ25411411";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
67508,72;"H";"EUR";0,000000;0,00;"";"8010";"12799";"";"2007";"177366";"";"";"R EX-SAL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
5016,00;"H";"USD";1,030000;4869,90;"EUR";"8010";"13374";"";"2007";"177367";"";"";"R EX-SAL-2206-134";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
2868,00;"H";"EUR";0,000000;0,00;"";"8011";"12030";"";"2007";"177368";"";"";"R IM-GCA-2206-216";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1432,78;"H";"EUR";0,000000;0,00;"";"8010";"13374";"";"2007";"177370";"";"";"R EX-SAL-2206-134";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
10032,00;"H";"USD";1,030000;9739,81;"EUR";"8010";"13374";"";"2007";"177371";"";"";"R EX-SAL-2206-125";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
2716,99;"H";"EUR";0,000000;0,00;"";"8010";"13374";"";"2007";"177372";"";"";"R EX-SAL-2206-125";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
5016,00;"H";"USD";1,030000;4869,90;"EUR";"8010";"13374";"";"2007";"177373";"";"";"R EX-SAL-2206-133";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1553,00;"H";"EUR";0,000000;0,00;"";"8011";"12030";"";"2007";"177374";"";"";"R IM-GCA-2206-208";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1329,24;"H";"EUR";0,000000;0,00;"";"8010";"13374";"";"2007";"177375";"";"";"R EX-SAL-2206-133";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"GB208221306";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
855,00;"H";"EUR";0,000000;0,00;"";"8336";"17369";"";"2007";"177376";"";"";"R IM-ZEL-2206-372";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ25411411";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
65,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177378";"";"";"R IM-ZEL-2206-189";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
243,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177379";"";"";"R IM-ZEL-2206-184";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
86,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177380";"";"";"R IM-ZEL-2206-202";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
143,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177381";"";"";"R IM-ZEL-2206-197";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
143,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177382";"";"";"R IM-ZEL-2206-198";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
110,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177383";"";"";"R IM-ZEL-2206-195";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
240,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177384";"";"";"R IM-ZEL-2205-254";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
345,50;"H";"EUR";0,000000;0,00;"";"8011";"17513";"";"2007";"177385";"";"";"R IM-GCA-2206-230";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"LV40103114438";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1161,96;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177386";"";"";"R IM-ZEL-2206-278";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
100,00;"H";"EUR";0,000000;0,00;"";"8011";"12584";"";"2007";"177387";"";"";"R LA-ZEL-2205-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1161,96;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177388";"";"";"R IM-ZEL-2206-317";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1161,96;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177389";"";"";"R IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
5574,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177390";"";"";"R LA-ZEL-2206-018";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
9720,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177391";"";"";"R LA-ZEL-2205-091";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
551,80;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177392";"";"";"R LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
65,00;"H";"EUR";0,000000;0,00;"";"8011";"14873";"";"2007";"177393";"";"";"R IM-GCA-2206-152";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1000,00;"H";"EUR";0,000000;0,00;"";"8011";"12584";"";"2007";"177394";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
40,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177395";"";"";"R LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
670,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177396";"";"";"R LA-ZEL-2205-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
556,70;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177397";"";"";"R LA-ZEL-2206-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
90,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177398";"";"";"R LA-ZEL-2206-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
331,86;"H";"EUR";0,000000;0,00;"";"8407";"10073";"";"2007";"177399";"";"";"R LA-ZEL-2201-053";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE811778973";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
305,44;"H";"EUR";0,000000;0,00;"";"8407";"10073";"";"2007";"177400";"";"";"R LA-ZEL-2203-013";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE811778973";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
13214,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177403";"";"";"R LA-ZEL-2206-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
5039,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177404";"";"";"R LA-ZEL-2206-058";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1393,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177405";"";"";"R LA-ZEL-2206-050";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
977,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177406";"";"";"R LA-ZEL-2206-051";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
6236,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177407";"";"";"R LA-ZEL-2206-085";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1858,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177408";"";"";"R LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
4693,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177409";"";"";"R LA-ZEL-2206-049";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
2787,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177410";"";"";"R LA-ZEL-2206-088";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
161,46;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"177413";"";"";"R LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
4180,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177418";"";"";"R LA-ZEL-2206-059";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
7563,39;"H";"EUR";0,000000;0,00;"";"3850";"16979";"";"2007";"177419";"";"";"R LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
22333,88;"H";"EUR";0,000000;0,00;"";"3851";"16979";"";"2007";"177419";"";"";"R LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1345,38;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177419";"";"";"R LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
2787,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177420";"";"";"R LA-ZEL-2206-086";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
240,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177421";"";"";"R LA-ZEL-2205-058";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1800,00;"H";"USD";1,053430;1708,70;"EUR";"8010";"14169";"";"2007";"177424";"";"";"R EX-SAL-2205-161";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE815760766";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
7762,98;"H";"EUR";0,000000;0,00;"";"3850";"16979";"";"2007";"177426";"";"";"R LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
22959,17;"H";"EUR";0,000000;0,00;"";"3851";"16979";"";"2007";"177426";"";"";"R LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1382,50;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177426";"";"";"R LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3264,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177427";"";"";"R LA-ZEL-2205-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
150,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177428";"";"";"R LA-ZEL-2206-004";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
7330,09;"H";"EUR";0,000000;0,00;"";"3850";"16979";"";"2007";"177429";"";"";"R LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
21656,32;"H";"EUR";0,000000;0,00;"";"3851";"16979";"";"2007";"177429";"";"";"R LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1304,39;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"177429";"";"";"R LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3431,86;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177430";"";"";"R LA-ZEL-2206-014";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
886,31;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177431";"";"";"R LA-ZEL-2206-038";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
2295,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177432";"";"";"R LA-ZEL-2206-039";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
48,00;"H";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"177433";"";"";"R LA-ZEL-2206-078";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
38,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177434";"";"";"R LA-ZEL-2205-068";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
900,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177436";"";"";"R LA-ZEL-2205-089";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1875,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177437";"";"";"R LA-ZEL-2205-090";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3693,97;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177442";"";"";"R LA-ZEL-2204-120";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1130,92;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177443";"";"";"R LA-ZEL-2204-122";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
845,88;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177445";"";"";"R LA-ZEL-2204-119";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
484,68;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177446";"";"";"R LA-ZEL-2204-121";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
729,00;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177447";"";"";"R LA-ZEL-2204-117";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3370,00;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177448";"";"";"R LA-ZEL-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
464,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177449";"";"";"R LA-ZEL-2206-082";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
4212,50;"H";"EUR";0,000000;0,00;"";"8011";"10211";"";"2007";"177450";"";"";"R LA-ZEL-2206-070";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
407,76;"H";"EUR";0,000000;0,00;"";"8011";"11731";"";"2007";"177451";"";"";"R LA-ZEL-2204-118";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
23857,60;"H";"EUR";0,000000;0,00;"";"8010";"17403";"";"2007";"177452";"";"";"R EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE120310716";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
300,00;"H";"EUR";0,000000;0,00;"";"8010";"17403";"";"2007";"177453";"";"";"R EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE120310716";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1362,00;"H";"EUR";0,000000;0,00;"";"8011";"10319";"";"2007";"177454";"";"";"R LA-ZEL-2206-035";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE812785308";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
6098,00;"H";"EUR";0,000000;0,00;"";"8011";"12030";"";"2007";"177455";"";"";"R IM-GCA-2206-166";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1950,00;"S";"EUR";0,000000;0,00;"";"3206";"71992";"";"2007";"118847";"";"";"R1 IM-GCA-2206-216";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ40763811";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
65,00;"S";"EUR";0,000000;0,00;"";"3207";"70783";"";"2007";"118848";"";"";"R1 EX-SAL-2206-133";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1000,00;"S";"EUR";0,000000;0,00;"";"3206";"76626";"";"2007";"118849";"";"";"R1 IM-ZEL-2206-278";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ28858646";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
950,00;"S";"EUR";0,000000;0,00;"";"3206";"74808";"";"2007";"118850";"";"";"R1 IM-ZEL-2206-317";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ7903253105";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
852,00;"S";"EUR";0,000000;0,00;"";"3206";"72752";"";"2007";"118851";"";"";"R1 IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
70,00;"S";"EUR";0,000000;0,00;"";"8001";"12030";"";"2007";"118852";"";"";"R1 IM-GCA-2206-010";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
70,00;"S";"EUR";0,000000;0,00;"";"8001";"12030";"";"2007";"118853";"";"";"R1 DTHC";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
825,00;"S";"EUR";0,000000;0,00;"";"3206";"74170";"";"2007";"118855";"";"";"R1 NL ai";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
99,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118856";"";"";"R1 LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
84,64;"S";"EUR";0,000000;0,00;"";"3211";"71207";"";"2007";"118857";"";"";"R1 LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
99,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118859";"";"";"R1 LA-ZEL-2206-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
792,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118869";"";"";"R1 LA-ZEL-2206-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
396,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118870";"";"";"R1 LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1345,38;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118875";"";"";"R1 LA-HOL-2205-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
575,00;"S";"EUR";0,000000;0,00;"";"3211";"71207";"";"2007";"118882";"";"";"R1 LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
675,00;"S";"EUR";0,000000;0,00;"";"3211";"72584";"";"2007";"118883";"";"";"R1 LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1382,58;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118884";"";"";"R1 LA-HOL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1304,39;"S";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118885";"";"";"R1 LA-HOL-2205-022";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
55815,86;"S";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118894";"";"";"R1 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
22898,78;"S";"EUR";0,000000;0,00;"";"3207";"76268";"";"2007";"118895";"";"";"R1 Verzollung + Zoll/Eust";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"811588998";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
32917,08;"S";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118896";"";"";"R1 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
446,40;"S";"EUR";0,000000;0,00;"";"3207";"76342";"";"2007";"118897";"";"";"R1 NL + DZ / 2 Ctr";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
32693,88;"S";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118898";"";"";"R1 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
302,00;"H";"EUR";0,000000;0,00;"";"3206";"70176";"";"2007";"113277";"";"";"R2 IM-GCA-2206-006";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE306837954";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
112,00;"H";"EUR";0,000000;0,00;"";"3206";"70176";"";"2007";"114116";"";"";"R2 IM-GCA-2206-009";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE306837954";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
85,00;"H";"EUR";0,000000;0,00;"";"3206";"70783";"";"2007";"114941";"";"";"R2 IM-GCA-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
460,00;"H";"EUR";0,000000;0,00;"";"3206";"71992";"";"2007";"116411";"";"";"R2 IM-GCA-2206-166";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ40763811";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
43,31;"H";"EUR";0,000000;0,00;"";"8001";"15979";"";"2007";"116593";"";"";"R2 IM-GCA-2206-095";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE124323806";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
14,46;"H";"EUR";0,000000;0,00;"";"8001";"16011";"";"2007";"116594";"";"";"R2 IM-GCA-2206-095";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE315607319";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
5,72;"H";"EUR";0,000000;0,00;"";"8001";"16011";"";"2007";"117160";"";"";"R2 IM-GCA-2206-142";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE315607319";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
185,85;"H";"EUR";0,000000;0,00;"";"8001";"16011";"";"2007";"117279";"";"";"R2 IM-GCA-2206-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE315607319";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
107,22;"H";"EUR";0,000000;0,00;"";"8001";"16093";"";"2007";"117280";"";"";"R2 IM-GCA-2206-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE198939997";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
376,44;"H";"EUR";0,000000;0,00;"";"3206";"70447";"";"2007";"117824";"";"";"R2 IM-ZEL-2206-288";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
72,00;"H";"EUR";0,000000;0,00;"";"3206";"70289";"";"2007";"117857";"";"";"R2 IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
791,85;"H";"EUR";0,000000;0,00;"";"3206";"74170";"";"2007";"117938";"";"";"R2 IM-GCA-2206-204";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
90,00;"H";"EUR";0,000000;0,00;"";"3206";"70783";"";"2007";"118265";"";"";"R2 IM-GCA-2206-064";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
75,00;"H";"EUR";0,000000;0,00;"";"3206";"70280";"";"2007";"118608";"";"";"R2 IM-GCA-2206-030";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
223,20;"H";"EUR";0,000000;0,00;"";"3207";"76342";"";"2007";"118646";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
31658,26;"H";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118686";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
70,00;"H";"EUR";0,000000;0,00;"";"8001";"12030";"";"2007";"118853";"";"";"R2 IM-GCA-2206-101";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
55815,86;"H";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118894";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
32917,08;"H";"EUR";0,000000;0,00;"";"3207";"75485";"";"2007";"118896";"";"";"R2 EX-RAL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1000,00;"H";"USD";1,098500;910,33;"EUR";"8001";"13342";"";"2007";"114118";"";"";"R3 IM-GCA-2206-009";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE250152875";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3230,00;"H";"EUR";0,000000;0,00;"";"3206";"70153";"";"0106";"114210";"";"";"R3 IM-PAP-2203-241";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1108,00;"H";"EUR";0,000000;0,00;"";"3206";"70153";"";"2406";"114933";"";"";"R3 IM-PAP-2204-141";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
32,00;"H";"EUR";0,000000;0,00;"";"3206";"74954";"";"0507";"115545";"";"";"R3 IM-ZEL-2204-174";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL005408179B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
850,00;"H";"EUR";0,000000;0,00;"";"3206";"71399";"";"0106";"116794";"";"";"R3 IM-GCA-2205-182";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE147839881";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1225,00;"H";"EUR";0,000000;0,00;"";"3206";"71399";"";"0206";"116794";"";"";"R3 IM-GCA-2205-182";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE147839881";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1350,00;"H";"EUR";0,000000;0,00;"";"3206";"71401";"";"2206";"117181";"";"";"R3 IM-ZEL-2205-250";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE222895328";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
930,00;"H";"EUR";0,000000;0,00;"";"3206";"75937";"";"0407";"117259";"";"";"R3 IM-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL5272862830";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"1306";"117264";"";"";"R3 IM-ZEL-2206-076";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
950,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"1506";"117308";"";"";"R3 IM-ZEL-2206-169";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"1606";"117313";"";"";"R3 IM-ZEL-2206-164";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
353,77;"H";"EUR";0,000000;0,00;"";"8011";"10447";"";"2007";"117754";"";"";"R3 LA-ZEL-2206-078";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE813448742";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
190,00;"H";"EUR";0,000000;0,00;"";"3207";"74800";"";"3006";"117947";"";"";"R3 EX-LUF-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE811228786";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
950,00;"H";"EUR";0,000000;0,00;"";"3206";"73845";"";"0407";"117991";"";"";"R3 IM-ZEL-2206-311";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9281841410";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2206";"118003";"";"";"R3 IM-ZEL-2206-259";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2106";"118004";"";"";"R3 IM-ZEL-2206-258";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
905,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2106";"118005";"";"";"R3 IM-ZEL-2206-257";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
58361,47;"H";"EUR";0,000000;0,00;"";"3207";"70897";"";"0807";"118024";"";"";"R3 EX-SAL-2206-031";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE812119489";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
205,00;"H";"EUR";0,000000;0,00;"";"3207";"74800";"";"3006";"118030";"";"";"R3 EX-LUF-2206-085";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE811228786";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1359,96;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118128";"";"";"R3 LA-HOL-2204-057";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1399,27;"H";"EUR";0,000000;0,00;"";"8011";"16979";"";"2007";"118142";"";"";"R3 LA-HOL-2206-018";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE148491332";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1300,00;"H";"EUR";0,000000;0,00;"";"3206";"74965";"";"1706";"118364";"";"";"R3 IM-PAP-2206-154";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1350,00;"H";"EUR";0,000000;0,00;"";"3206";"74965";"";"2206";"118382";"";"";"R3 IM-PAP-2206-326";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL1132938815";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
25,00;"H";"EUR";0,000000;0,00;"";"3207";"76918";"";"3006";"118544";"";"";"R3 EX-LUF-2206-060";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"35";"";"";"DE303537001";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
100,00;"H";"EUR";0,000000;0,00;"";"3206";"77401";"";"0106";"118691";"";"";"R3 IM-ZEL-2204-177";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"PL9291794907";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
852,00;"H";"EUR";0,000000;0,00;"";"3206";"72752";"";"2406";"118851";"";"";"R3 IM-ZEL-2206-286";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"CZ24812561";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
84,64;"H";"EUR";0,000000;0,00;"";"3211";"71207";"";"2906";"118857";"";"";"R3 LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
75,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"115283";"";"";"R4 IM-GCA-2206-100";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
85,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"116297";"";"";"R4 IM-GCA-2206-203";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
92,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117123";"";"";"R4 IM-GCA-2206-237";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
75,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117806";"";"";"R4 IM-GCA-2206-248";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
64,50;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117856";"";"";"R4 IM-GCA-2206-131";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
86,50;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"117939";"";"";"R4 IM-GCA-2206-204";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
65,00;"S";"EUR";0,000000;0,00;"";"3206";"70783";"";"3006";"118020";"";"";"R4 IM-GCA-2206-238";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
100,00;"H";"EUR";0,000000;0,00;"";"3211";"71692";"";"2007";"118854";"";"";"R5 LA-ZEL-2206-005";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114406665";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
90,00;"S";"EUR";0,000000;0,00;"";"8001";"10211";"";"2007";"117161";"";"";"R6 IM-ZEL-2205-254";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1800,00;"S";"USD";1,053430;1708,70;"EUR";"8002";"14169";"";"2007";"117229";"";"";"R6 EX-SAL-2205-161";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"30";"";"";"DE815760766";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
430,00;"S";"EUR";0,000000;0,00;"";"3206";"71530";"";"2306";"118717";"";"";"R7 IM-GCA-2206-266";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE276842677";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
253,47;"H";"EUR";0,000000;0,00;"";"3407";"76955";"";"1706";"80049";"";"";"SE IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE237921382";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
753,72;"H";"EUR";0,000000;0,00;"";"3407";"76955";"";"1706";"80048";"";"";"SE IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE237921382";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
71,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-237";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
42,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-238";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
71,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-203";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
86,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-204";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
64,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-252";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
69,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-157";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
64,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-156";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
69,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-100";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
66,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-129";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
64,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-131";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
66,50;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-130";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
69,00;"H";"EUR";0,000000;0,00;"";"3211";"70783";"";"3006";"2022125173";"";"";"SE IM-GCA-2206-248";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"BE0404527216";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1578,00;"H";"EUR";0,000000;0,00;"";"3211";"74170";"";"1306";"2204972";"";"";"SE IM-GCA-2206-140";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"NL004054106B01";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
471,24;"H";"EUR";0,000000;0,00;"";"3407";"72584";"";"3006";"202202387";"";"";"SE LA-ZEL-2206-084";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE247425537";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
302,16;"H";"EUR";0,000000;0,00;"";"3407";"71207";"";"0807";"22118069";"";"";"SE LA-ZEL-2206-087";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
805,77;"H";"EUR";0,000000;0,00;"";"3407";"71207";"";"1307";"22118354";"";"";"SE LA-ZEL-2207-032";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE114703519";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
763,77;"H";"EUR";0,000000;0,00;"";"3231";"70153";"";"1106";"5225479709";"";"";"SE IM-GCA-2206-189";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"DE256518614";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-020";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-104";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-105";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-147";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-149";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-180";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-181";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
7189,82;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-175";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3594,91;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-232";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3594,91;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-233";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1958,25;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-234";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1958,25;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-237";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3913,32;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-238";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1128,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-183";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1128,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-182";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
952,54;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-058";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
119,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-017";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
851,45;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-075";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
23,80;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-056";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
187,46;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-051";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
102,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2201-017";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
105,06;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-034";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
802,58;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-006";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
697,85;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-055";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
17,51;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2204-060";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
35,02;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2204-061";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
389,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-020";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
386,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-021";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
2975,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-044";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1996,50;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-074";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
339,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-094";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
2550,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-095";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
401,25;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-029";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1488,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-041";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3370,95;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-243";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-299";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
854,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK IM-ZEL-2206-300";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
6310,76;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-015";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
518,63;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-028";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
707,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-053";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
394,07;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-043";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
867,24;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2202-065";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
4909,55;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-068";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1713,85;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-045";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3790,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-008";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
6700,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-077";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
1537,75;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-007";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
158,12;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-003";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
301,12;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2203-047";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
9553,96;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
6200,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-070";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
6400,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-069";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
3100,00;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2205-073";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
2363,74;"H";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"175806";"";"";"SK LA-ZEL-2206-019";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
161,46;"S";"EUR";0,000000;0,00;"";"8011";"14218";"";"2007";"177415";"";"";"SR LA-ZEL-2206-001";0;"";"";"";0;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"40";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"SO";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";0;"01062022";""
|
||||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
EXTF;510;21;Buchungsstapel;7;2.02207210604217E+016;;CS;cargoservice;;;;20220101;4;20220601;20220630;202206ALL;CS;;;0;EUR;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
Umsatz (ohne Soll-/Haben-Kennzeichen);Soll-Haben-Kennzeichen;WKZ Umsatz;Kurs;Basisumsatz;WKZ Basisumsatz;Konto;Gegenkonto;BU-Schl<68>ssel;Belegdatum;Belegfeld 1;Belegfeld 2;Skonto;Buchungstext;Postensperre;Diverse Adressnummer;Gesch<63>ftspartnerbank;Sachverhalt;Zinssperre;Beleglink;Beleginfo-Art 1;Beleginfo-Inhalt 1;Beleginfo-Art 2;Beleginfo-Inhalt 2;Beleginfo-Art 3;Beleginfo-Inhalt 3;Beleginfo-Art 4;Beleginfo-Inhalt 4;Beleginfo-Art 5;Beleginfo-Inhalt 5;Beleginfo-Art 6;Beleginfo-Inhalt 6;Beleginfo-Art 7;Beleginfo-Inhalt 7;Beleginfo-Art 8;Beleginfo-Inhalt 8;KOST1-Kostenstelle;KOST2-Kostenstelle;KOST-Menge;EU-Mitgliedstaatu. USt-IdNr.;EU-Steuersatz;Abw. Versteuerungsart;Sachverhalt L+L;Funktionserg<72>nzung L+L;BU 49 Hauptfunktionstyp;BU 49 Hauptfunktionsnummer;BU 49 Funktionserg<72>nzung;Zusatzinformation-Art 1;Zusatzinformation-Inhalt 1;Zusatzinformation-Art 2;Zusatzinformation-Inhalt 2;Zusatzinformation-Art 3;Zusatzinformation-Inhalt 3;Zusatzinformation-Art 4;Zusatzinformation-Inhalt 4;Zusatzinformation-Art 5;Zusatzinformation-Inhalt 5;Zusatzinformation-Art 6;Zusatzinformation-Inhalt 6;Zusatzinformation-Art 7;Zusatzinformation-Inhalt 7;Zusatzinformation-Art 8;Zusatzinformation-Inhalt 8;Zusatzinformation-Art 9;Zusatzinformation-Inhalt 9;Zusatzinformation-Art 10;Zusatzinformation-Inhalt 10;Zusatzinformation-Art 11;Zusatzinformation-Inhalt 11;Zusatzinformation-Art 12;Zusatzinformation-Inhalt 12;Zusatzinformation-Art 13;Zusatzinformation-Inhalt 13;Zusatzinformation-Art 14;Zusatzinformation-Inhalt 14;Zusatzinformation-Art 15;Zusatzinformation-Inhalt 15;Zusatzinformation-Art 16;Zusatzinformation-Inhalt 16;Zusatzinformation-Art 17;Zusatzinformation-Inhalt 17;Zusatzinformation-Art 18;Zusatzinformation-Inhalt 18;Zusatzinformation-Art 19;Zusatzinformation-Inhalt 19;Zusatzinformation-Art 20;Zusatzinformation-Inhalt 20;St<53>ck;Gewicht;Zahlweise;Forderungsart;Veranlagungsjahr;Zugeordnete F<>lligkeit;Skontotyp;Auftragsnummer;Buchungstyp;USt-Schl<68>ssel (Anzahlungen);EU-Mitgliedstaat (Anzahlungen);Sachverhalt L+L (Anzahlungen);EU-Steuersatz (Anzahlungen);Erl<72>skonto (Anzahlungen);Herkunft-Kz;Leerfeld;KOST-Datum;SEPAMandatsreferenz;Skontosperre;Gesellschaftername;Beteiligtennummer;Identifikationsnummer;Zeichnernummer;Postensperre bis;Bezeichnung SoBil-Sachverhalt;Kennzeichen SoBil-Buchung;Festschreibung;Leistungsdatum;Datum Zuord. Steuerperiode
|
||||||
|
1359,96;S;EUR;0,000000;0,00;;8011;16979;;2007;177348;;;G LA-HOL-2204-057;0;;;;0;;;;;;;;;;;;;;;;;;40;;;DE148491332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
1399,27;S;EUR;0,000000;0,00;;8011;16979;;2007;177350;;;G LA-HOL-2206-018;0;;;;0;;;;;;;;;;;;;;;;;;40;;;DE148491332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
69,00;H;EUR;0,000000;0,00;;3211;70783;;3006;2022125173;;;SE IM-GCA-2206-100;0;;;;0;;;;;;;;;;;;;;;;;;40;;;BE0404527216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
66,50;H;EUR;0,000000;0,00;;3211;70783;;3006;2022125173;;;SE IM-GCA-2206-129;0;;;;0;;;;;;;;;;;;;;;;;;40;;;BE0404527216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
64,00;H;EUR;0,000000;0,00;;3211;70783;;3006;2022125173;;;SE IM-GCA-2206-131;0;;;;0;;;;;;;;;;;;;;;;;;40;;;BE0404527216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
66,50;H;EUR;0,000000;0,00;;3211;70783;;3006;2022125173;;;SE IM-GCA-2206-130;0;;;;0;;;;;;;;;;;;;;;;;;40;;;BE0404527216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
69,00;H;EUR;0,000000;0,00;;3211;70783;;3006;2022125173;;;SE IM-GCA-2206-248;0;;;;0;;;;;;;;;;;;;;;;;;40;;;BE0404527216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
1578,00;H;EUR;0,000000;0,00;;3211;74170;;1306;2204972;;;SE IM-GCA-2206-140;0;;;;0;;;;;;;;;;;;;;;;;;40;;;NL004054106B01;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
471,24;H;EUR;0,000000;0,00;;3407;72584;;3006;202202387;;;SE LA-ZEL-2206-084;0;;;;0;;;;;;;;;;;;;;;;;;40;;;DE247425537;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
302,16;H;EUR;0,000000;0,00;;3407;71207;;807;22118069;;;SE LA-ZEL-2206-087;0;;;;0;;;;;;;;;;;;;;;;;;40;;;DE114703519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
805,77;H;EUR;0,000000;0,00;;3407;71207;;1307;22118354;;;SE LA-ZEL-2207-032;0;;;;0;;;;;;;;;;;;;;;;;;40;;;DE114703519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
763,77;H;EUR;0,000000;0,00;;3231;70153;;1106;5225479709;;;SE IM-GCA-2206-189;0;;;;0;;;;;;;;;;;;;;;;;;40;;;DE256518614;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
854,63;H;EUR;0,000000;0,00;;8011;14218;;2007;175806;;;SK IM-ZEL-2206-020;0;;;;0;;;;;;;;;;;;;;;;;;40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
854,63;H;EUR;0,000000;0,00;;8011;14218;;2007;175806;;;SK IM-ZEL-2206-021;0;;;;0;;;;;;;;;;;;;;;;;;40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
854,63;H;EUR;0,000000;0,00;;8011;14218;;2007;175806;;;SK IM-ZEL-2206-104;0;;;;0;;;;;;;;;;;;;;;;;;40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
854,63;H;EUR;0,000000;0,00;;8011;14218;;2007;175806;;;SK IM-ZEL-2206-105;0;;;;0;;;;;;;;;;;;;;;;;;40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
161,46;S;EUR;0,000000;0,00;;8011;14218;;2007;177415;;;SR LA-ZEL-2206-001;0;;;;0;;;;;;;;;;;;;;;;;;40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SO;;;;;;;;;;;;;;;;;;0;1062022;
|
||||||
|
Binary file not shown.
7
pom.xml
7
pom.xml
|
|
@ -173,6 +173,13 @@
|
||||||
<version>${org.imixs.adapters.version}</version>
|
<version>${org.imixs.adapters.version}</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<!-- DATEV Adapter -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.imixs.workflow</groupId>
|
||||||
|
<artifactId>imixs-adapters-datev</artifactId>
|
||||||
|
<version>${org.imixs.adapters.version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
<!-- QR Code -->
|
<!-- QR Code -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.imixs.workflow</groupId>
|
<groupId>org.imixs.workflow</groupId>
|
||||||
|
|
|
||||||
795
workflow/datev-import-1.0.0.bpmn
Normal file
795
workflow/datev-import-1.0.0.bpmn
Normal file
|
|
@ -0,0 +1,795 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- origin at X=0.0 Y=0.0 -->
|
||||||
|
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:imixs="http://www.imixs.org/bpmn2" xmlns:tl="http://www.w3.org/2001/XMLSchema" id="Definitions_1" exporter="org.eclipse.bpmn2.modeler.core" exporterVersion="1.5.3.Final-v20210519-2007-B1" name="Definitions 1" targetNamespace="http://www.imixs.org/bpmn2">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowmodelversion" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[datev-import-de-1.0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtfieldmapping" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Prozess-Verantwortliche| namprocessmanager]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Prozess-Assistenz | namprocessassist]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Buchhaltung | namprocessteam]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttimefieldmapping" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Wiedervorlage | datDate]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Start | datFrom]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Ende | datTo]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtplugins" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.ResultPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.RulePlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.profile.ProfilePlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.plugins.SequenceNumberPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.team.TeamPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.profile.DeputyPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.OwnerPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.HistoryPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.LogPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.ApplicationPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.plugins.CommentPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.profile.MailPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.IntervalPlugin]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:signal id="Signal_1" name="org.imixs.workflow.datev.imports.DatevImportAdapter"/>
|
||||||
|
<bpmn2:signal id="Signal_2" name="org.imixs.workflow.datev.imports.DatevImportAdapterBuchungsstapel"/>
|
||||||
|
<bpmn2:signal id="Signal_3" name="com.alexanderlogistics.datev.DatevImportAdapterBuchungsstapel"/>
|
||||||
|
<bpmn2:signal id="Signal_4" name="com.alexanderlogistics.datev.DatevCargosoftImportAdapter"/>
|
||||||
|
<bpmn2:message id="Message_6" name="SEPA-Body">
|
||||||
|
<bpmn2:documentation id="Documentation_15"><![CDATA[Der folgende SEPA Lauf wurde für die Verarbeitung fertiggestellt:
|
||||||
|
|
||||||
|
<propertyvalue>application.url</propertyvalue>index.jsf?workitem=<itemvalue>$uniqueid</itemvalue>
|
||||||
|
<attachments></attachments>
|
||||||
|
]]></bpmn2:documentation>
|
||||||
|
</bpmn2:message>
|
||||||
|
<bpmn2:message id="Message_8" name="ERROR-Body">
|
||||||
|
<bpmn2:documentation id="Documentation_8"><![CDATA[Der folgende SEPA Lauf konnte nicht korrekt erstellt werden. Bitte prüfen Sie den Vorgang:
|
||||||
|
|
||||||
|
<propertyvalue>application.url</propertyvalue>index.jsf?workitem=<itemvalue>$uniqueid</itemvalue>
|
||||||
|
<attachments></attachments>
|
||||||
|
]]></bpmn2:documentation>
|
||||||
|
</bpmn2:message>
|
||||||
|
<bpmn2:collaboration id="Collaboration_1" name="DATEV">
|
||||||
|
<bpmn2:participant id="Participant_1" name="DATEV-Import" processRef="Process_1"/>
|
||||||
|
<bpmn2:participant id="Participant_2" name="SEPA-Export Pool" processRef="eingangsrechnung-de"/>
|
||||||
|
</bpmn2:collaboration>
|
||||||
|
<bpmn2:process id="eingangsrechnung-de" name="SEPA-Export" isExecutable="false"/>
|
||||||
|
<bpmn2:process id="Process_1" name="DATEV-Import" definitionalCollaborationRef="Collaboration_1" isExecutable="false">
|
||||||
|
<bpmn2:laneSet id="LaneSet_1" name="Lane Set 1">
|
||||||
|
<bpmn2:lane id="Lane_1" name="Buchhaltung">
|
||||||
|
<bpmn2:flowNodeRef>StartEvent_1</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>Task_1</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_2</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_6</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>EndEvent_3</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_18</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>Task_2</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>ExclusiveGateway_1</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>Task_7</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>Task_6</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_5</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>ExclusiveGateway_2</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>ExclusiveGateway_3</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_7</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_3</bpmn2:flowNodeRef>
|
||||||
|
</bpmn2:lane>
|
||||||
|
</bpmn2:laneSet>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_5" imixs:activityid="30" name="Fehlerhaft">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="keylogtimeformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyarchive" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaccessmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyscheduledactivity" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfmailbody" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyversion" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[namprocessmanager]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="numnextactivityid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyfollowup" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keylogdateformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="numnextid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[5000]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtnextprocesstree" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtactivityresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<item name="action">home</item>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfresultlog" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[DATEV Import fehlerhaft.]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>false</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtbusinessrule" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[var result={};
|
||||||
|
var refField="txtcomment";
|
||||||
|
result.isValid=true;
|
||||||
|
|
||||||
|
if ( ( workitem.get(refField) == null || ''==workitem.get(refField)[0]) ) {
|
||||||
|
result.isValid=false;
|
||||||
|
result.errorMessage='Bitte geben Sie einen Kommentar ein.';
|
||||||
|
}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_2"><![CDATA[SEPA von <username>$editor</username>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_13</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_15</bpmn2:outgoing>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_15" sourceRef="IntermediateCatchEvent_5" targetRef="ExclusiveGateway_1"/>
|
||||||
|
<bpmn2:startEvent id="StartEvent_1" name="Start">
|
||||||
|
<bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>
|
||||||
|
</bpmn2:startEvent>
|
||||||
|
<bpmn2:task id="Task_2" imixs:processid="1600" name="Abgeschlossen">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowsummary" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[DATEV-Import <itemvalue format="EEEE, d. MMMM yyyy" locale="de_DE">$created</itemvalue>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>true</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddreadfields" type="xs:string"/>
|
||||||
|
<imixs:item name="txtimageurl" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[typcn-download-outline||typcn-tick,imixs-success]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[form_basic]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttype" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[workitemarchive]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtworkflowabstract" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddreadaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_4"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>
|
||||||
|
</bpmn2:task>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_10" sourceRef="Task_2" targetRef="EndEvent_3"/>
|
||||||
|
<bpmn2:endEvent id="EndEvent_3" name="End">
|
||||||
|
<bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>
|
||||||
|
<bpmn2:incoming>SequenceFlow_17</bpmn2:incoming>
|
||||||
|
</bpmn2:endEvent>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_2" imixs:activityid="20" name="Importieren">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="rtfresultlog" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[DATEV Import gestartet.]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtactivityresult" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Es liegt ein neuer SEPA Export vor]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfmailbody" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[<bpmn2:message>SEPA-Body</bpmn2:message>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keymailreceiverfields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[namprocessteam]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtbusinessrule" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[var result={};
|
||||||
|
if (workitem['$file.count'][0]!=1) {
|
||||||
|
result.isValid=false;
|
||||||
|
result.errorMessage='Bitte fügen Sie genau eine DATEV Datei an!';
|
||||||
|
}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_18"><![CDATA[Daten Import starten]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>
|
||||||
|
<bpmn2:dataOutput id="DataOutput_2" name="Signal_1_Output"/>
|
||||||
|
<bpmn2:dataOutputAssociation id="DataOutputAssociation_2">
|
||||||
|
<bpmn2:sourceRef>DataOutput_2</bpmn2:sourceRef>
|
||||||
|
</bpmn2:dataOutputAssociation>
|
||||||
|
<bpmn2:outputSet id="OutputSet_1" name="Output Set 1">
|
||||||
|
<bpmn2:dataOutputRefs>DataOutput_2</bpmn2:dataOutputRefs>
|
||||||
|
</bpmn2:outputSet>
|
||||||
|
<bpmn2:signalEventDefinition id="SignalEventDefinition_1" signalRef="Signal_1"/>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:task id="Task_1" imixs:processid="1000" name="Import">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowsummary" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[DATEV-Import <itemvalue format="EEEE, d. MMMM yyyy" locale="de_DE">$created</itemvalue>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[form_basic]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtimageurl" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[typcn-download-outline||||]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttype" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[workitem]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>true</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[namprocessteam]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddreadfields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="txtworkflowabstract" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddreadaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddwriteaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_3"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
|
||||||
|
</bpmn2:task>
|
||||||
|
<bpmn2:task id="Task_6" imixs:processid="1500" name="Fehler">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowsummary" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[DATEV-Import <itemvalue format="EEEE, d. MMMM yyyy" locale="de_DE">$created</itemvalue>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>true</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddreadfields" type="xs:string"/>
|
||||||
|
<imixs:item name="txtimageurl" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[typcn-download-outline||typcn-times,imixs-error]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[form_basic]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttype" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[workitemarchive]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtworkflowabstract" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddreadaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_33"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_16</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_17</bpmn2:outgoing>
|
||||||
|
</bpmn2:task>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_17" sourceRef="Task_6" targetRef="EndEvent_3"/>
|
||||||
|
<bpmn2:exclusiveGateway id="ExclusiveGateway_1" gatewayDirection="Converging">
|
||||||
|
<bpmn2:incoming>SequenceFlow_15</bpmn2:incoming>
|
||||||
|
<bpmn2:incoming>SequenceFlow_23</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_16</bpmn2:outgoing>
|
||||||
|
</bpmn2:exclusiveGateway>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_16" sourceRef="ExclusiveGateway_1" targetRef="Task_6"/>
|
||||||
|
<bpmn2:task id="Task_7" imixs:processid="1100" name="in Verarbeitung">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowsummary" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[DATEV-Import <itemvalue format="EEEE, d. MMMM yyyy" locale="de_DE">$created</itemvalue>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>true</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[namprocessteam]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[namprocessmanager]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddreadfields" type="xs:string"/>
|
||||||
|
<imixs:item name="txtimageurl" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[typcn-download-outline||typcn-time,imixs-warning]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[form_basic]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttype" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[workitem]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtworkflowabstract" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddreadaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddwriteaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_32"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_12</bpmn2:incoming>
|
||||||
|
<bpmn2:incoming>SequenceFlow_22</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_28</bpmn2:outgoing>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_13</bpmn2:outgoing>
|
||||||
|
</bpmn2:task>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_28" sourceRef="Task_7" targetRef="IntermediateCatchEvent_18"/>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_13" sourceRef="Task_7" targetRef="IntermediateCatchEvent_5"/>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_18" imixs:activityid="20" name="Erledigt">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="keylogtimeformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyarchive" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaccessmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyscheduledactivity" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfmailbody" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyversion" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[namprocessmanager]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="numnextactivityid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyfollowup" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keylogdateformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="numnextid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[5000]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtnextprocesstree" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtactivityresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<item name="action">home</item>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfresultlog" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[DATEV Import abgeschlossen.]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>false</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_53"><![CDATA[Vorgang abschließen und archivieren]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_28</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_2" sourceRef="IntermediateCatchEvent_18" targetRef="Task_2"/>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_6" imixs:activityid="10" name="Speichern">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="keylogtimeformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyarchive" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaccessmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyscheduledactivity" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfmailbody" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyversion" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="numnextactivityid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyfollowup" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keylogdateformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="numnextid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[5000]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtnextprocesstree" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtactivityresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<item name="comment" ignore="true"/>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtname" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Speichern]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfresultlog" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>false</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_10"><![CDATA[Zwischenspeichern]]></bpmn2:documentation>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_12</bpmn2:outgoing>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_12" sourceRef="IntermediateCatchEvent_6" targetRef="Task_7"/>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_6" sourceRef="StartEvent_1" targetRef="Task_1"/>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_8" sourceRef="Task_1" targetRef="IntermediateCatchEvent_2"/>
|
||||||
|
<bpmn2:exclusiveGateway id="ExclusiveGateway_2" gatewayDirection="Diverging" default="SequenceFlow_23">
|
||||||
|
<bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_18</bpmn2:outgoing>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_19</bpmn2:outgoing>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_23</bpmn2:outgoing>
|
||||||
|
</bpmn2:exclusiveGateway>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_14" sourceRef="IntermediateCatchEvent_2" targetRef="ExclusiveGateway_2"/>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_3" imixs:activityid="30" name="Cargosoft Buchungsstapel">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="rtfresultlog" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[Import Buchungstapel]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtactivityresult" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Es liegt ein neuer SEPA Export vor]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfmailbody" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[<bpmn2:message>SEPA-Body</bpmn2:message>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keymailreceiverfields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[namprocessteam]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtbusinessrule" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_25"><![CDATA[Daten Import starten]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_18</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_20</bpmn2:outgoing>
|
||||||
|
<bpmn2:dataOutput id="DataOutput_6" name="Signal_6_Output"/>
|
||||||
|
<bpmn2:dataOutputAssociation id="DataOutputAssociation_6">
|
||||||
|
<bpmn2:sourceRef>DataOutput_6</bpmn2:sourceRef>
|
||||||
|
</bpmn2:dataOutputAssociation>
|
||||||
|
<bpmn2:outputSet id="OutputSet_2" name="Output Set 1">
|
||||||
|
<bpmn2:dataOutputRefs>DataOutput_6</bpmn2:dataOutputRefs>
|
||||||
|
</bpmn2:outputSet>
|
||||||
|
<bpmn2:signalEventDefinition id="SignalEventDefinition_6" signalRef="Signal_4"/>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_7" imixs:activityid="40" name="Kontenbeschriftungen">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="rtfresultlog" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[Import Kontenbeschriftungen]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtactivityresult" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Es liegt ein neuer SEPA Export vor]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfmailbody" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[<bpmn2:message>SEPA-Body</bpmn2:message>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keymailreceiverfields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[namprocessteam]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtbusinessrule" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_27"><![CDATA[Daten Import starten]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_19</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_21</bpmn2:outgoing>
|
||||||
|
<bpmn2:outputSet id="OutputSet_3" name="Output Set 1"/>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_18" sourceRef="ExclusiveGateway_2" targetRef="IntermediateCatchEvent_3">
|
||||||
|
<bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" id="FormalExpression_2">workitem['datev.formatname'][0]=="Buchungsstapel"</bpmn2:conditionExpression>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_19" sourceRef="ExclusiveGateway_2" targetRef="IntermediateCatchEvent_7">
|
||||||
|
<bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" id="FormalExpression_1">workitem['datev.formatname'][0]=="Kontenbeschriftungen"</bpmn2:conditionExpression>
|
||||||
|
</bpmn2:sequenceFlow>
|
||||||
|
<bpmn2:exclusiveGateway id="ExclusiveGateway_3" gatewayDirection="Converging">
|
||||||
|
<bpmn2:incoming>SequenceFlow_20</bpmn2:incoming>
|
||||||
|
<bpmn2:incoming>SequenceFlow_21</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_22</bpmn2:outgoing>
|
||||||
|
</bpmn2:exclusiveGateway>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_20" sourceRef="IntermediateCatchEvent_3" targetRef="ExclusiveGateway_3"/>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_21" sourceRef="IntermediateCatchEvent_7" targetRef="ExclusiveGateway_3"/>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_22" sourceRef="ExclusiveGateway_3" targetRef="Task_7"/>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_23" sourceRef="ExclusiveGateway_2" targetRef="ExclusiveGateway_1"/>
|
||||||
|
<bpmn2:textAnnotation id="TextAnnotation_2">
|
||||||
|
<bpmn2:text>The DATEV Import holds a DATEV Import file and triggeres a import process depending on the document type.</bpmn2:text>
|
||||||
|
</bpmn2:textAnnotation>
|
||||||
|
<bpmn2:association id="Association_3" sourceRef="TextAnnotation_2" targetRef="StartEvent_1"/>
|
||||||
|
</bpmn2:process>
|
||||||
|
<bpmndi:BPMNDiagram id="BPMNDiagram_1" name="Default Process Diagram">
|
||||||
|
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1">
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Participant_1" bpmnElement="Participant_1" isHorizontal="true">
|
||||||
|
<dc:Bounds height="361.0" width="1531.0" x="100.0" y="150.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_29" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="76.0" width="14.0" x="106.0" y="292.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Lane_1" bpmnElement="Lane_1" isHorizontal="true">
|
||||||
|
<dc:Bounds height="361.0" width="1501.0" x="130.0" y="150.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_37" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="69.0" width="14.0" x="136.0" y="296.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_1" bpmnElement="StartEvent_1">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="297.0" y="325.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_1" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="25.0" x="302.0" y="361.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Task_1" bpmnElement="Task_1">
|
||||||
|
<dc:Bounds height="50.0" width="110.0" x="390.0" y="318.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_4" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="34.0" x="428.0" y="336.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_2" bpmnElement="IntermediateCatchEvent_2">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="570.0" y="325.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_9" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="62.0" x="557.0" y="361.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Task_6" bpmnElement="Task_6">
|
||||||
|
<dc:Bounds height="50.0" width="110.0" x="1400.0" y="396.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_31" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="35.0" x="1437.0" y="414.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Task_7" bpmnElement="Task_7">
|
||||||
|
<dc:Bounds height="50.0" width="110.0" x="1010.0" y="318.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_33" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="83.0" x="1023.0" y="336.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_EndEvent_2" bpmnElement="EndEvent_3">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="1540.0" y="318.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_85" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="22.0" x="1547.0" y="354.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_18" bpmnElement="IntermediateCatchEvent_18">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="1320.0" y="237.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_23" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="42.0" x="1317.0" y="273.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Message_3" bpmnElement="Message_6">
|
||||||
|
<dc:Bounds height="20.0" width="30.0" x="108.0" y="75.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_46">
|
||||||
|
<dc:Bounds height="14.0" width="63.0" x="92.0" y="95.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Message_6" bpmnElement="Message_8">
|
||||||
|
<dc:Bounds height="20.0" width="30.0" x="220.0" y="76.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_24">
|
||||||
|
<dc:Bounds height="14.0" width="76.0" x="197.0" y="96.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Task_2" bpmnElement="Task_2">
|
||||||
|
<dc:Bounds height="50.0" width="110.0" x="1390.0" y="230.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_5" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="84.0" x="1403.0" y="248.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_5" bpmnElement="IntermediateCatchEvent_5">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="1320.0" y="325.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_6" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="55.0" x="1311.0" y="361.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_ExclusiveGateway_1" bpmnElement="ExclusiveGateway_1" isMarkerVisible="true">
|
||||||
|
<dc:Bounds height="50.0" width="50.0" x="1313.0" y="396.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_34" labelStyle="BPMNLabelStyle_1"/>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_TextAnnotation_2" bpmnElement="TextAnnotation_2">
|
||||||
|
<dc:Bounds height="71.0" width="238.0" x="180.0" y="170.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_57">
|
||||||
|
<dc:Bounds height="65.0" width="226.0" x="186.0" y="170.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_6" bpmnElement="IntermediateCatchEvent_6">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="1047.0" y="396.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_10" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="56.0" x="1037.0" y="432.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_ExclusiveGateway_2" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">
|
||||||
|
<dc:Bounds height="50.0" width="50.0" x="660.0" y="318.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_21" labelStyle="BPMNLabelStyle_1"/>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_3" bpmnElement="IntermediateCatchEvent_3">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="780.0" y="325.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_38" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="42.0" width="88.0" x="754.0" y="361.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_7" bpmnElement="IntermediateCatchEvent_7">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="780.0" y="237.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_39" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="28.0" width="120.0" x="738.0" y="273.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_ExclusiveGateway_3" bpmnElement="ExclusiveGateway_3" isMarkerVisible="true">
|
||||||
|
<dc:Bounds height="50.0" width="50.0" x="900.0" y="318.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_42" labelStyle="BPMNLabelStyle_1"/>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_28" bpmnElement="SequenceFlow_28" sourceElement="BPMNShape_Task_7" targetElement="BPMNShape_IntermediateCatchEvent_18">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1065.0" y="318.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1065.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1320.0" y="255.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_71"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="BPMNShape_IntermediateCatchEvent_18" targetElement="BPMNShape_Task_2">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1356.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1373.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1390.0" y="255.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_25"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="SequenceFlow_10" sourceElement="BPMNShape_Task_2" targetElement="BPMNShape_EndEvent_2">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1500.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1558.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1558.0" y="318.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_26"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_13" sourceElement="BPMNShape_Task_7" targetElement="BPMNShape_IntermediateCatchEvent_5">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1120.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1220.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1320.0" y="343.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_27"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_15" bpmnElement="SequenceFlow_15" sourceElement="BPMNShape_IntermediateCatchEvent_5" targetElement="BPMNShape_ExclusiveGateway_1">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1338.0" y="361.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1338.0" y="378.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1338.0" y="396.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_28"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_16" bpmnElement="SequenceFlow_16" sourceElement="BPMNShape_ExclusiveGateway_1" targetElement="BPMNShape_Task_6">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1363.0" y="421.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1381.0" y="421.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1400.0" y="421.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_35"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_17" bpmnElement="SequenceFlow_17" sourceElement="BPMNShape_Task_6" targetElement="BPMNShape_EndEvent_2">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1510.0" y="421.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1558.0" y="421.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1558.0" y="354.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_36"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_Association_3" bpmnElement="Association_3" sourceElement="BPMNShape_TextAnnotation_2" targetElement="BPMNShape_1">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="299.0" y="241.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="299.0" y="283.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="315.0" y="283.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="315.0" y="325.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_30"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_12" bpmnElement="SequenceFlow_12" sourceElement="BPMNShape_IntermediateCatchEvent_6" targetElement="BPMNShape_Task_7">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1065.0" y="396.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1065.0" y="382.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1065.0" y="368.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_32"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_6" sourceElement="BPMNShape_1" targetElement="BPMNShape_Task_1">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="333.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="361.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="390.0" y="343.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_14"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="BPMNShape_Task_1" targetElement="BPMNShape_IntermediateCatchEvent_2">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="500.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="535.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="570.0" y="343.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_20"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_14" sourceElement="BPMNShape_IntermediateCatchEvent_2" targetElement="BPMNShape_ExclusiveGateway_2">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="606.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="633.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="660.0" y="343.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_22"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="SequenceFlow_18" sourceElement="BPMNShape_ExclusiveGateway_2" targetElement="BPMNShape_IntermediateCatchEvent_3">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="710.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="745.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="780.0" y="343.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_40"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_19" bpmnElement="SequenceFlow_19" sourceElement="BPMNShape_ExclusiveGateway_2" targetElement="BPMNShape_IntermediateCatchEvent_7">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="685.0" y="318.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="685.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="780.0" y="255.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_41"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_20" bpmnElement="SequenceFlow_20" sourceElement="BPMNShape_IntermediateCatchEvent_3" targetElement="BPMNShape_ExclusiveGateway_3">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="816.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="858.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="900.0" y="343.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_43"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_21" bpmnElement="SequenceFlow_21" sourceElement="BPMNShape_IntermediateCatchEvent_7" targetElement="BPMNShape_ExclusiveGateway_3">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="816.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="925.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="925.0" y="318.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_44"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_22" bpmnElement="SequenceFlow_22" sourceElement="BPMNShape_ExclusiveGateway_3" targetElement="BPMNShape_Task_7">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="950.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="980.0" y="343.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1010.0" y="343.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_45"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_23" bpmnElement="SequenceFlow_23" sourceElement="BPMNShape_ExclusiveGateway_2" targetElement="BPMNShape_ExclusiveGateway_1">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="685.0" y="368.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="685.0" y="471.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1338.0" y="471.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1338.0" y="446.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_47"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
</bpmndi:BPMNPlane>
|
||||||
|
<bpmndi:BPMNLabelStyle id="BPMNLabelStyle_1">
|
||||||
|
<dc:Font name="arial" size="9.0"/>
|
||||||
|
</bpmndi:BPMNLabelStyle>
|
||||||
|
</bpmndi:BPMNDiagram>
|
||||||
|
</bpmn2:definitions>
|
||||||
|
|
@ -383,7 +383,7 @@ Betrag: <itemvalue>_amount</itemvalue> (Brutto € <itemvalue>_amount_brutto</it
|
||||||
<imixs:value><![CDATA[]]></imixs:value>
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
</imixs:item>
|
</imixs:item>
|
||||||
<imixs:item name="txtactivityresult" type="xs:string">
|
<imixs:item name="txtactivityresult" type="xs:string">
|
||||||
<imixs:value><![CDATA[<ml-config name="model">invoice-de-0.1.0</ml-config>
|
<imixs:value><![CDATA[<ml-config name="model">invoice-de-0.2.0</ml-config>
|
||||||
<ml-config name="options">min_losses=0.001</ml-config>
|
<ml-config name="options">min_losses=0.001</ml-config>
|
||||||
<ml-config name="filename.pattern">((PDF|pdf)$)</ml-config>
|
<ml-config name="filename.pattern">((PDF|pdf)$)</ml-config>
|
||||||
<ml-config name="entity">
|
<ml-config name="entity">
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!-- origin at X=0.0 Y=0.0 -->
|
<!-- origin at X=0.0 Y=0.0 -->
|
||||||
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:ext="http://org.eclipse.bpmn2/ext" xmlns:imixs="http://www.imixs.org/bpmn2" xmlns:xs="http://www.w3.org/2001/XMLSchema" id="Definitions_1" exporter="org.eclipse.bpmn2.modeler.core" exporterVersion="1.5.2.SNAPSHOT-v20200602-1600-B1" targetNamespace="http://www.imixs.org/bpmn2">
|
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:ext="http://org.eclipse.bpmn2/ext" xmlns:imixs="http://www.imixs.org/bpmn2" xmlns:xs="http://www.w3.org/2001/XMLSchema" id="Definitions_1" exporter="org.eclipse.bpmn2.modeler.core" exporterVersion="1.5.3.Final-v20210519-2007-B1" targetNamespace="http://www.imixs.org/bpmn2">
|
||||||
<bpmn2:extensionElements>
|
<bpmn2:extensionElements>
|
||||||
<imixs:item name="txtworkflowmodelversion" type="xs:string">
|
<imixs:item name="txtworkflowmodelversion" type="xs:string">
|
||||||
<imixs:value><![CDATA[rechnungsausgang-de-1.0]]></imixs:value>
|
<imixs:value><![CDATA[rechnungsausgang-de-1.0]]></imixs:value>
|
||||||
|
|
@ -297,7 +297,7 @@ Bei Fragen wenden Sie sich bitte an info@imixs.com
|
||||||
<imixs:value><![CDATA[typcn-download]]></imixs:value>
|
<imixs:value><![CDATA[typcn-download]]></imixs:value>
|
||||||
</imixs:item>
|
</imixs:item>
|
||||||
<imixs:item name="txtworkflowsummary" type="xs:string">
|
<imixs:item name="txtworkflowsummary" type="xs:string">
|
||||||
<imixs:value><![CDATA[<itemvalue>cdtr.name</itemvalue> <itemvalue>invoice.number</itemvalue> (<itemvalue>invoice.currency</itemvalue> <itemvalue>invoice.total</itemvalue>) <itemvalue>space.name</itemvalue>]]></imixs:value>
|
<imixs:value><![CDATA[<itemvalue>dbtr.number</itemvalue> <itemvalue>invoice.number</itemvalue> (<itemvalue>invoice.currency</itemvalue> <itemvalue>invoice.total</itemvalue>) ]]></imixs:value>
|
||||||
</imixs:item>
|
</imixs:item>
|
||||||
<imixs:item name="keyupdateacl" type="xs:boolean">
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
<imixs:value>true</imixs:value>
|
<imixs:value>true</imixs:value>
|
||||||
|
|
@ -328,28 +328,23 @@ Bei Fragen wenden Sie sich bitte an info@imixs.com
|
||||||
<bpmn2:documentation id="Documentation_8"><![CDATA[<?xml version="1.0"?>
|
<bpmn2:documentation id="Documentation_8"><![CDATA[<?xml version="1.0"?>
|
||||||
<imixs-form>
|
<imixs-form>
|
||||||
<imixs-form-section columns="2" label="Rechnungsdaten">
|
<imixs-form-section columns="2" label="Rechnungsdaten">
|
||||||
<item name="cdtr.name" type="text" label="Kreditor:"/>
|
<item name="invoice.text" type="text" label="Text:" readonly="true"/>
|
||||||
<item name="cdtr.number" type="text" required="true" label="Kreditorennummer:" />
|
<item name="dbtr.name" type="text" label="Debitor:" readonly="true"/>
|
||||||
|
<item name="dbtr.number" type="text" required="true" label="Debitor-Nummer:" readonly="true"/>
|
||||||
</imixs-form-section>
|
</imixs-form-section>
|
||||||
<imixs-form-section columns="3">
|
<imixs-form-section columns="3">
|
||||||
<item name="invoice.number" type="text" label="Rechnungsnummer:" />
|
<item name="invoice.number" type="text" label="Rechnungsnummer:" readonly="true" />
|
||||||
<item name="invoice.date" type="custom" path="alexander/datumseingabe" label="Rechnungsdatum:" />
|
<item name="invoice.date" type="date" label="Rechnungsdatum:" readonly="true" />
|
||||||
<item name="invoice.duedate" type="custom" path="alexander/datumseingabe_tage" required="true" label="Fälligkeitsdatum:" />
|
<item name="invoice.duedate" type="date" label="Fälligkeit:" readonly="true"/>
|
||||||
|
<item name="invoice.duedate2" type="custom" path="alexander/datumseingabe_tage" required="true" label="Wiedervorlage:" />
|
||||||
</imixs-form-section>
|
</imixs-form-section>
|
||||||
|
|
||||||
<imixs-form-section columns="3">
|
|
||||||
<item name="invoice.total" type="currency" required="true" label="Rechnungsbetrag:" />
|
|
||||||
<item name="invoice.currency" type="selectOneMenu" required="true" options="EUR;CHF;SEK;RUB;NOK;GBP;USD;CAD" label="Währung:" />
|
|
||||||
</imixs-form-section>
|
|
||||||
<imixs-form-section columns="2">
|
|
||||||
|
|
||||||
<item name="cdtr.iban" type="text" label="IBAN:" />
|
|
||||||
<item name="cdtr.bic" type="text" label="BIC:" />
|
|
||||||
</imixs-form-section>
|
|
||||||
|
|
||||||
<imixs-form-section columns="2">
|
<imixs-form-section columns="2">
|
||||||
<item name="" type="custom" path="alexander/spaceref" label="Bereich:" />
|
<item name="" type="custom" path="alexander/spaceref" label="Bereich:" />
|
||||||
</imixs-form-section>
|
</imixs-form-section>
|
||||||
|
|
||||||
|
<imixs-form-section path="alexander/sub_datevbuchung_read" />
|
||||||
</imixs-form>]]></bpmn2:documentation>
|
</imixs-form>]]></bpmn2:documentation>
|
||||||
<bpmn2:dataState id="DataState_1"/>
|
<bpmn2:dataState id="DataState_1"/>
|
||||||
</bpmn2:dataObject>
|
</bpmn2:dataObject>
|
||||||
|
|
@ -1808,49 +1803,49 @@ Betrag: <itemvalue>invoice.total</itemvalue> <itemvalue>invoice.currency</itemva
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape id="BPMNShape_ExclusiveGateway_2" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">
|
<bpmndi:BPMNShape id="BPMNShape_ExclusiveGateway_2" bpmnElement="ExclusiveGateway_2" isMarkerVisible="true">
|
||||||
<dc:Bounds height="50.0" width="50.0" x="860.0" y="284.0"/>
|
<dc:Bounds height="50.0" width="50.0" x="860.0" y="284.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_23"/>
|
<bpmndi:BPMNLabel id="BPMNLabel_23" labelStyle="BPMNLabelStyle_1"/>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape id="BPMNShape_ExclusiveGateway_3" bpmnElement="ExclusiveGateway_3" isMarkerVisible="true">
|
<bpmndi:BPMNShape id="BPMNShape_ExclusiveGateway_3" bpmnElement="ExclusiveGateway_3" isMarkerVisible="true">
|
||||||
<dc:Bounds height="50.0" width="50.0" x="470.0" y="552.0"/>
|
<dc:Bounds height="50.0" width="50.0" x="470.0" y="552.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_43"/>
|
<bpmndi:BPMNLabel id="BPMNLabel_43" labelStyle="BPMNLabelStyle_1"/>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_14" bpmnElement="IntermediateCatchEvent_14">
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_14" bpmnElement="IntermediateCatchEvent_14">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="440.0" y="723.0"/>
|
<dc:Bounds height="36.0" width="36.0" x="440.0" y="723.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_48">
|
<bpmndi:BPMNLabel id="BPMNLabel_48" labelStyle="BPMNLabelStyle_1">
|
||||||
<dc:Bounds height="14.0" width="45.0" x="436.0" y="759.0"/>
|
<dc:Bounds height="14.0" width="45.0" x="436.0" y="759.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_19" bpmnElement="IntermediateCatchEvent_15">
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_19" bpmnElement="IntermediateCatchEvent_15">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="705.0" y="722.0"/>
|
<dc:Bounds height="36.0" width="36.0" x="705.0" y="722.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_51">
|
<bpmndi:BPMNLabel id="BPMNLabel_51" labelStyle="BPMNLabelStyle_1">
|
||||||
<dc:Bounds height="14.0" width="45.0" x="701.0" y="758.0"/>
|
<dc:Bounds height="14.0" width="45.0" x="701.0" y="758.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_21" bpmnElement="IntermediateCatchEvent_17">
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_21" bpmnElement="IntermediateCatchEvent_17">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="520.0" y="55.0"/>
|
<dc:Bounds height="36.0" width="36.0" x="520.0" y="55.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_55">
|
<bpmndi:BPMNLabel id="BPMNLabel_55" labelStyle="BPMNLabelStyle_1">
|
||||||
<dc:Bounds height="14.0" width="63.0" x="507.0" y="91.0"/>
|
<dc:Bounds height="14.0" width="63.0" x="507.0" y="91.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape id="BPMNShape_ExclusiveGateway_4" bpmnElement="ExclusiveGateway_4" isMarkerVisible="true">
|
<bpmndi:BPMNShape id="BPMNShape_ExclusiveGateway_4" bpmnElement="ExclusiveGateway_4" isMarkerVisible="true">
|
||||||
<dc:Bounds height="50.0" width="50.0" x="513.0" y="128.0"/>
|
<dc:Bounds height="50.0" width="50.0" x="513.0" y="128.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_56"/>
|
<bpmndi:BPMNLabel id="BPMNLabel_56" labelStyle="BPMNLabelStyle_1"/>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_23" bpmnElement="IntermediateCatchEvent_18">
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_23" bpmnElement="IntermediateCatchEvent_18">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="430.0" y="55.0"/>
|
<dc:Bounds height="36.0" width="36.0" x="430.0" y="55.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_80">
|
<bpmndi:BPMNLabel id="BPMNLabel_80" labelStyle="BPMNLabelStyle_1">
|
||||||
<dc:Bounds height="28.0" width="83.0" x="407.0" y="91.0"/>
|
<dc:Bounds height="28.0" width="83.0" x="407.0" y="91.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape id="BPMNShape_IntermediateThrowEvent_1" bpmnElement="IntermediateThrowEvent_1">
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateThrowEvent_1" bpmnElement="IntermediateThrowEvent_1">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="278.0" y="800.0"/>
|
<dc:Bounds height="36.0" width="36.0" x="278.0" y="800.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_87">
|
<bpmndi:BPMNLabel id="BPMNLabel_87" labelStyle="BPMNLabelStyle_1">
|
||||||
<dc:Bounds height="28.0" width="83.0" x="255.0" y="836.0"/>
|
<dc:Bounds height="28.0" width="83.0" x="255.0" y="836.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
<bpmndi:BPMNShape id="BPMNShape_IntermediateThrowEvent_2" bpmnElement="IntermediateThrowEvent_2">
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateThrowEvent_2" bpmnElement="IntermediateThrowEvent_2">
|
||||||
<dc:Bounds height="36.0" width="36.0" x="360.0" y="800.0"/>
|
<dc:Bounds height="36.0" width="36.0" x="360.0" y="800.0"/>
|
||||||
<bpmndi:BPMNLabel id="BPMNLabel_97">
|
<bpmndi:BPMNLabel id="BPMNLabel_97" labelStyle="BPMNLabelStyle_1">
|
||||||
<dc:Bounds height="14.0" width="51.0" x="353.0" y="836.0"/>
|
<dc:Bounds height="14.0" width="51.0" x="353.0" y="836.0"/>
|
||||||
</bpmndi:BPMNLabel>
|
</bpmndi:BPMNLabel>
|
||||||
</bpmndi:BPMNShape>
|
</bpmndi:BPMNShape>
|
||||||
|
|
|
||||||
658
workflow/zahlungseingang-de-1.0.0.bpmn
Normal file
658
workflow/zahlungseingang-de-1.0.0.bpmn
Normal file
|
|
@ -0,0 +1,658 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- origin at X=0.0 Y=0.0 -->
|
||||||
|
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:imixs="http://www.imixs.org/bpmn2" xmlns:tl="http://www.w3.org/2001/XMLSchema" id="Definitions_1" exporter="org.eclipse.bpmn2.modeler.core" exporterVersion="1.5.3.Final-v20210519-2007-B1" name="Definitions 1" targetNamespace="http://www.imixs.org/bpmn2">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowmodelversion" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[zahlungseingang-de-1.0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtfieldmapping" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Prozess-Verantwortliche| namprocessmanager]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Prozess-Assistenz | namprocessassist]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Buchhaltung | namprocessteam]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttimefieldmapping" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Wiedervorlage | datDate]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Start | datFrom]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[Ende | datTo]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtplugins" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.ResultPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.RulePlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.profile.ProfilePlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.plugins.SequenceNumberPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.team.TeamPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.profile.DeputyPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.OwnerPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.HistoryPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.LogPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.workflow.engine.plugins.ApplicationPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.plugins.CommentPlugin]]></imixs:value>
|
||||||
|
<imixs:value><![CDATA[org.imixs.marty.profile.MailPlugin]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:signal id="Signal_1" name="com.alexanderlogistics.ZahlungsavisExportAdapter"/>
|
||||||
|
<bpmn2:message id="Message_6" name="SEPA-Body">
|
||||||
|
<bpmn2:documentation id="Documentation_15"><![CDATA[Der folgende SEPA Lauf wurde für die Verarbeitung fertiggestellt:
|
||||||
|
|
||||||
|
<propertyvalue>application.url</propertyvalue>index.jsf?workitem=<itemvalue>$uniqueid</itemvalue>
|
||||||
|
<attachments></attachments>
|
||||||
|
]]></bpmn2:documentation>
|
||||||
|
</bpmn2:message>
|
||||||
|
<bpmn2:message id="Message_8" name="ERROR-Body">
|
||||||
|
<bpmn2:documentation id="Documentation_8"><![CDATA[Der folgende SEPA Lauf konnte nicht korrekt erstellt werden. Bitte prüfen Sie den Vorgang:
|
||||||
|
|
||||||
|
<propertyvalue>application.url</propertyvalue>index.jsf?workitem=<itemvalue>$uniqueid</itemvalue>
|
||||||
|
<attachments></attachments>
|
||||||
|
]]></bpmn2:documentation>
|
||||||
|
</bpmn2:message>
|
||||||
|
<bpmn2:collaboration id="Collaboration_1" name="Zahlungseingang">
|
||||||
|
<bpmn2:participant id="Participant_1" name="Zahlungsavis" processRef="Process_1"/>
|
||||||
|
<bpmn2:participant id="Participant_2" name="SEPA-Export Pool" processRef="eingangsrechnung-de"/>
|
||||||
|
</bpmn2:collaboration>
|
||||||
|
<bpmn2:process id="eingangsrechnung-de" name="SEPA-Export" isExecutable="false"/>
|
||||||
|
<bpmn2:process id="Process_1" name="Zahlungseingang" definitionalCollaborationRef="Collaboration_1" isExecutable="false">
|
||||||
|
<bpmn2:laneSet id="LaneSet_1" name="Lane Set 1">
|
||||||
|
<bpmn2:lane id="Lane_1" name="Buchhaltung">
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_18</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_5</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>Task_6</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>Task_2</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_6</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>EndEvent_3</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>StartEvent_1</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>Task_1</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>IntermediateCatchEvent_3</bpmn2:flowNodeRef>
|
||||||
|
<bpmn2:flowNodeRef>EventBasedGateway_1</bpmn2:flowNodeRef>
|
||||||
|
</bpmn2:lane>
|
||||||
|
</bpmn2:laneSet>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_5" imixs:activityid="30" name="Stornieren">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="keylogtimeformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyarchive" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaccessmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyscheduledactivity" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfmailbody" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyversion" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[namprocessmanager]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="numnextactivityid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyfollowup" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keylogdateformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="numnextid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[5000]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtnextprocesstree" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtactivityresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<item name="action">home</item>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfresultlog" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Sepa Zahlungslauf fehlerhaft - abgeschlossen von <username>$editor</username>.]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>false</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtbusinessrule" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[var result={};
|
||||||
|
var refField="txtcomment";
|
||||||
|
result.isValid=true;
|
||||||
|
|
||||||
|
if ( ( workitem.get(refField) == null || ''==workitem.get(refField)[0]) ) {
|
||||||
|
result.isValid=false;
|
||||||
|
result.errorMessage='Bitte geben Sie einen Kommentar ein.';
|
||||||
|
}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_2"><![CDATA[SEPA von <username>$editor</username>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_13</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_18</bpmn2:outgoing>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:startEvent id="StartEvent_1" name="Start">
|
||||||
|
<bpmn2:outgoing>SequenceFlow_4</bpmn2:outgoing>
|
||||||
|
</bpmn2:startEvent>
|
||||||
|
<bpmn2:task id="Task_2" imixs:processid="1900" name="Gebucht">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowsummary" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<itemvalue>cdtr.name.cargosoft</itemvalue> <itemvalue format="EEEE, d. MMMM yyyy" locale="de_DE">$modified</itemvalue> (<itemvalue>cdtr.number</itemvalue>)]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>true</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddreadfields" type="xs:string"/>
|
||||||
|
<imixs:item name="txtimageurl" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[typcn-cloud-storage||||typcn-tick,imixs-success]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttype" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[workitemarchive]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtworkflowabstract" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddreadaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_4"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_2</bpmn2:incoming>
|
||||||
|
<bpmn2:incoming>SequenceFlow_6</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_10</bpmn2:outgoing>
|
||||||
|
</bpmn2:task>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_10" sourceRef="Task_2" targetRef="EndEvent_3"/>
|
||||||
|
<bpmn2:eventBasedGateway id="EventBasedGateway_1" gatewayDirection="Diverging">
|
||||||
|
<bpmn2:incoming>SequenceFlow_1</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_13</bpmn2:outgoing>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_8</bpmn2:outgoing>
|
||||||
|
</bpmn2:eventBasedGateway>
|
||||||
|
<bpmn2:endEvent id="EndEvent_3" name="End">
|
||||||
|
<bpmn2:incoming>SequenceFlow_10</bpmn2:incoming>
|
||||||
|
<bpmn2:incoming>SequenceFlow_17</bpmn2:incoming>
|
||||||
|
</bpmn2:endEvent>
|
||||||
|
<bpmn2:task id="Task_1" imixs:processid="1000" name="Erfassung">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowsummary" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<itemvalue>cdtr.name.cargosoft</itemvalue> <itemvalue format="EEEE, d. MMMM yyyy" locale="de_DE">$modified</itemvalue> (<itemvalue>cdtr.number</itemvalue>)]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[alexander/form_basic#zahlungsavis]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtimageurl" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[typcn-database||||typcn-arrow-forward]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttype" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[workitem]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>true</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[namprocessteam]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddreadfields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="txtworkflowabstract" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddreadaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddwriteaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_3"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_14</bpmn2:incoming>
|
||||||
|
<bpmn2:incoming>SequenceFlow_4</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_1</bpmn2:outgoing>
|
||||||
|
</bpmn2:task>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_1" sourceRef="Task_1" targetRef="EventBasedGateway_1"/>
|
||||||
|
<bpmn2:task id="Task_6" imixs:processid="1800" name="Storniert">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="txtworkflowsummary" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<itemvalue>cdtr.name.cargosoft</itemvalue> <itemvalue format="EEEE, d. MMMM yyyy" locale="de_DE">$modified</itemvalue> (<itemvalue>cdtr.number</itemvalue>)]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>true</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="keyaddreadfields" type="xs:string"/>
|
||||||
|
<imixs:item name="txtimageurl" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[typcn-cloud-storage||||typcn-tick,imixs-error]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txteditorid" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txttype" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[workitemarchive]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtworkflowabstract" type="CDATA">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="namaddreadaccess" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[{process:?:member}]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_33"><![CDATA[<textblock><itemvalue>$workflowgroup</itemvalue> - <itemvalue>$workflowstatus</itemvalue></textblock>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_18</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_17</bpmn2:outgoing>
|
||||||
|
</bpmn2:task>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_17" sourceRef="Task_6" targetRef="EndEvent_3"/>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_13" sourceRef="EventBasedGateway_1" targetRef="IntermediateCatchEvent_5"/>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_18" imixs:activityid="20" name="Abschließen">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="keylogtimeformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyarchive" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaccessmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyscheduledactivity" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfmailbody" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyversion" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[namprocessmanager]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="numnextactivityid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyfollowup" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keylogdateformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="numnextid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[5000]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtnextprocesstree" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtactivityresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<zahlungsavis name="textblock">Zahlugnsavis Template</zahlungsavis>
|
||||||
|
<zahlungsavis name="template">zahlungsavis_template.xlsx</zahlungsavis>
|
||||||
|
<zahlungsavis name="target-name">zahlungsavis_<itemvalue>numsequencenumber</itemvalue>.xlsx</zahlungsavis>
|
||||||
|
|
||||||
|
<poi-update name="findreplace">
|
||||||
|
<find>E2</find>
|
||||||
|
<replace>Person in Charge: <username>$editor</username></replace>
|
||||||
|
<type>text</type>
|
||||||
|
</poi-update>
|
||||||
|
<poi-update name="findreplace">
|
||||||
|
<find>E5</find>
|
||||||
|
<replace><username item="txtemail">$editor</username></replace>
|
||||||
|
<type>text</type>
|
||||||
|
</poi-update>
|
||||||
|
<poi-update name="findreplace">
|
||||||
|
<find>C10</find>
|
||||||
|
<replace><itemvalue>numsequencenumber</itemvalue></replace>
|
||||||
|
<type>text</type>
|
||||||
|
</poi-update>
|
||||||
|
<poi-update name="findreplace">
|
||||||
|
<find>A12</find>
|
||||||
|
<replace><itemvalue>cdtr.number</itemvalue></replace>
|
||||||
|
<type>text</type>
|
||||||
|
</poi-update>
|
||||||
|
<poi-update name="findreplace">
|
||||||
|
<find>B12</find>
|
||||||
|
<replace><itemvalue>cdtr.name.cargosoft</itemvalue></replace>
|
||||||
|
<type>text</type>
|
||||||
|
</poi-update>
|
||||||
|
<poi-update name="findreplace">
|
||||||
|
<find>F10</find>
|
||||||
|
<replace><itemvalue format="dd.MM.yyyy">$modified</itemvalue></replace>
|
||||||
|
<type>date</type>
|
||||||
|
</poi-update>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfresultlog" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Sepa Zahlungslauf OK - abgeschlossen von <username>$editor</username>.]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>false</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_53"><![CDATA[Vorgang abschließen und archivieren]]></bpmn2:documentation>
|
||||||
|
<bpmn2:incoming>SequenceFlow_8</bpmn2:incoming>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_2</bpmn2:outgoing>
|
||||||
|
<bpmn2:outputSet id="OutputSet_1" name="Output Set 1"/>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_2" sourceRef="IntermediateCatchEvent_18" targetRef="Task_2"/>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_6" imixs:activityid="10" name="Speichern">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="keylogtimeformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyarchive" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaccessmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyscheduledactivity" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfmailbody" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyversion" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="numnextactivityid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyfollowup" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keylogdateformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="numnextid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[5000]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtnextprocesstree" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtactivityresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<item name="comment" ignore="true"/>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtname" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Speichern]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfresultlog" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>false</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_10"><![CDATA[Zwischenspeichern]]></bpmn2:documentation>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_6</bpmn2:outgoing>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_6" sourceRef="IntermediateCatchEvent_6" targetRef="Task_2"/>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_8" sourceRef="EventBasedGateway_1" targetRef="IntermediateCatchEvent_18"/>
|
||||||
|
<bpmn2:intermediateCatchEvent id="IntermediateCatchEvent_3" imixs:activityid="10" name="Speichern">
|
||||||
|
<bpmn2:extensionElements>
|
||||||
|
<imixs:item name="keylogtimeformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyarchive" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtmailsubject" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaccessmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyscheduledactivity" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfmailbody" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyversion" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyaddwritefields" type="xs:string"/>
|
||||||
|
<imixs:item name="numnextactivityid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyfollowup" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keypublicresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[1]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keylogdateformat" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[2]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipfields" type="xs:string"/>
|
||||||
|
<imixs:item name="numnextid" type="xs:int">
|
||||||
|
<imixs:value><![CDATA[5000]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtnextprocesstree" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtactivityresult" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[<item name="comment" ignore="true"/>]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="txtname" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[Speichern]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyownershipmode" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[0]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="rtfresultlog" type="xs:string">
|
||||||
|
<imixs:value><![CDATA[]]></imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
<imixs:item name="keyupdateacl" type="xs:boolean">
|
||||||
|
<imixs:value>false</imixs:value>
|
||||||
|
</imixs:item>
|
||||||
|
</bpmn2:extensionElements>
|
||||||
|
<bpmn2:documentation id="Documentation_12"><![CDATA[Zwischenspeichern]]></bpmn2:documentation>
|
||||||
|
<bpmn2:outgoing>SequenceFlow_14</bpmn2:outgoing>
|
||||||
|
</bpmn2:intermediateCatchEvent>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_14" sourceRef="IntermediateCatchEvent_3" targetRef="Task_1"/>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_18" sourceRef="IntermediateCatchEvent_5" targetRef="Task_6"/>
|
||||||
|
<bpmn2:sequenceFlow id="SequenceFlow_4" sourceRef="StartEvent_1" targetRef="Task_1"/>
|
||||||
|
<bpmn2:dataObject id="DataObject_1" name="Form">
|
||||||
|
<bpmn2:documentation id="Documentation_17"><![CDATA[<?xml version="1.0"?>
|
||||||
|
<imixs-form>
|
||||||
|
<imixs-form-section columns="2" label="Zahlungsdaten">
|
||||||
|
<item name="name" type="text" required="true" label="Text:" />
|
||||||
|
<item name="dbtr.number" type="text" required="true" label="Debitor:" />
|
||||||
|
<item name="payment.total" type="currency" required="true" label="Zahlbetrag:" />
|
||||||
|
<item name="payment.currency" type="selectOneMenu" required="true" options="EUR;CHF;SEK;RUB;NOK;GBP;USD;CAD" label="Währung:" />
|
||||||
|
</imixs-form-section>
|
||||||
|
|
||||||
|
</imixs-form>]]></bpmn2:documentation>
|
||||||
|
<bpmn2:dataState id="DataState_1"/>
|
||||||
|
</bpmn2:dataObject>
|
||||||
|
<bpmn2:association id="Association_2" sourceRef="DataObject_1" targetRef="Task_1"/>
|
||||||
|
</bpmn2:process>
|
||||||
|
<bpmndi:BPMNDiagram id="BPMNDiagram_1" name="Default Process Diagram">
|
||||||
|
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_1">
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Participant_1" bpmnElement="Participant_1" isHorizontal="true">
|
||||||
|
<dc:Bounds height="361.0" width="1181.0" x="100.0" y="150.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_29" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="73.0" width="14.0" x="106.0" y="294.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Lane_1" bpmnElement="Lane_1" isHorizontal="true">
|
||||||
|
<dc:Bounds height="361.0" width="1151.0" x="130.0" y="150.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_37" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="69.0" width="14.0" x="136.0" y="296.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_1" bpmnElement="StartEvent_1">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="180.0" y="301.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_1" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="25.0" x="185.0" y="337.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Task_1" bpmnElement="Task_1">
|
||||||
|
<dc:Bounds height="50.0" width="110.0" x="290.0" y="294.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_4" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="55.0" x="317.0" y="312.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_EventBasedGateway_1" bpmnElement="EventBasedGateway_1" isMarkerVisible="true">
|
||||||
|
<dc:Bounds height="50.0" width="50.0" x="540.0" y="294.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_8" labelStyle="BPMNLabelStyle_1"/>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Task_6" bpmnElement="Task_6">
|
||||||
|
<dc:Bounds height="50.0" width="110.0" x="902.0" y="385.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_31" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="46.0" x="934.0" y="403.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_EndEvent_2" bpmnElement="EndEvent_3">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="1189.0" y="318.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_85" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="22.0" x="1196.0" y="354.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_18" bpmnElement="IntermediateCatchEvent_18">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="760.0" y="237.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_23" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="68.0" x="744.0" y="273.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Message_3" bpmnElement="Message_6">
|
||||||
|
<dc:Bounds height="20.0" width="30.0" x="108.0" y="75.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_46">
|
||||||
|
<dc:Bounds height="14.0" width="63.0" x="92.0" y="95.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Message_6" bpmnElement="Message_8">
|
||||||
|
<dc:Bounds height="20.0" width="30.0" x="220.0" y="76.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_24">
|
||||||
|
<dc:Bounds height="14.0" width="76.0" x="197.0" y="96.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_Task_2" bpmnElement="Task_2">
|
||||||
|
<dc:Bounds height="50.0" width="110.0" x="902.0" y="230.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_5" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="46.0" x="934.0" y="248.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_5" bpmnElement="IntermediateCatchEvent_5">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="760.0" y="392.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_6" labelStyle="BPMNLabelStyle_1">
|
||||||
|
<dc:Bounds height="14.0" width="57.0" x="750.0" y="428.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_6" bpmnElement="IntermediateCatchEvent_6">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="939.0" y="162.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_10">
|
||||||
|
<dc:Bounds height="14.0" width="56.0" x="929.0" y="198.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_IntermediateCatchEvent_3" bpmnElement="IntermediateCatchEvent_3">
|
||||||
|
<dc:Bounds height="36.0" width="36.0" x="327.0" y="392.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_21">
|
||||||
|
<dc:Bounds height="14.0" width="56.0" x="317.0" y="428.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNShape id="BPMNShape_DataObject_1" bpmnElement="DataObject_1">
|
||||||
|
<dc:Bounds height="50.0" width="36.0" x="290.0" y="188.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_13">
|
||||||
|
<dc:Bounds height="14.0" width="28.0" x="294.0" y="238.0"/>
|
||||||
|
</bpmndi:BPMNLabel>
|
||||||
|
</bpmndi:BPMNShape>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_1" bpmnElement="SequenceFlow_1" sourceElement="BPMNShape_Task_1" targetElement="BPMNShape_EventBasedGateway_1">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="400.0" y="319.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="470.0" y="319.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="540.0" y="319.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_3"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_2" bpmnElement="SequenceFlow_2" sourceElement="BPMNShape_IntermediateCatchEvent_18" targetElement="BPMNShape_Task_2">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="796.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="849.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="902.0" y="255.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_25"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_10" bpmnElement="SequenceFlow_10" sourceElement="BPMNShape_Task_2" targetElement="BPMNShape_EndEvent_2">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1012.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1207.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1207.0" y="318.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_26"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_13" bpmnElement="SequenceFlow_13" sourceElement="BPMNShape_EventBasedGateway_1" targetElement="BPMNShape_IntermediateCatchEvent_5">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="565.0" y="344.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="565.0" y="410.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="760.0" y="410.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_27"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_17" bpmnElement="SequenceFlow_17" sourceElement="BPMNShape_Task_6" targetElement="BPMNShape_EndEvent_2">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1012.0" y="410.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1207.0" y="410.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="1207.0" y="354.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_36"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_6" bpmnElement="SequenceFlow_6" sourceElement="BPMNShape_IntermediateCatchEvent_6" targetElement="BPMNShape_Task_2">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="957.0" y="198.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="957.0" y="214.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="957.0" y="230.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_14"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_8" bpmnElement="SequenceFlow_8" sourceElement="BPMNShape_EventBasedGateway_1" targetElement="BPMNShape_IntermediateCatchEvent_18">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="565.0" y="294.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="565.0" y="255.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="760.0" y="255.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_20"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_14" bpmnElement="SequenceFlow_14" sourceElement="BPMNShape_IntermediateCatchEvent_3" targetElement="BPMNShape_Task_1">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="345.0" y="392.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="345.0" y="368.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="345.0" y="344.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_22"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_18" bpmnElement="SequenceFlow_18" sourceElement="BPMNShape_IntermediateCatchEvent_5" targetElement="BPMNShape_Task_6">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="796.0" y="410.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="849.0" y="410.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="902.0" y="410.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_38"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_SequenceFlow_4" bpmnElement="SequenceFlow_4" sourceElement="BPMNShape_1" targetElement="BPMNShape_Task_1">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="216.0" y="319.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="253.0" y="319.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="290.0" y="319.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_11"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
<bpmndi:BPMNEdge id="BPMNEdge_Association_2" bpmnElement="Association_2" sourceElement="BPMNShape_DataObject_1" targetElement="BPMNShape_Task_1">
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="326.0" y="213.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="345.0" y="213.0"/>
|
||||||
|
<di:waypoint xsi:type="dc:Point" x="345.0" y="294.0"/>
|
||||||
|
<bpmndi:BPMNLabel id="BPMNLabel_17"/>
|
||||||
|
</bpmndi:BPMNEdge>
|
||||||
|
</bpmndi:BPMNPlane>
|
||||||
|
<bpmndi:BPMNLabelStyle id="BPMNLabelStyle_1">
|
||||||
|
<dc:Font name="arial" size="9.0"/>
|
||||||
|
</bpmndi:BPMNLabelStyle>
|
||||||
|
</bpmndi:BPMNDiagram>
|
||||||
|
</bpmn2:definitions>
|
||||||
Loading…
Reference in a new issue