oddb2xml 2.1.3 → 2.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 12904cf51c69c49aecda97c93bdb269532b7d7ea
4
- data.tar.gz: dccb51dcc69f94ba4ccff505abd35c2a47fc37d3
3
+ metadata.gz: efe088433407017fa298a6e78834bbe34d4490f4
4
+ data.tar.gz: f4d2f7b5324fd72230a1b849c972955f71e5c16b
5
5
  SHA512:
6
- metadata.gz: 4b955af367c78f85b7ec1599f603d5120c0ecfa601ef1adb0183fab34096934f8225b3751c439056dbf33b6ea4c77ffd31a4f04ab019fc25b4f0b8ce21d27694
7
- data.tar.gz: aa8139d20ac1c3fccb7d7c3b0374afcea22f2a6f9229006d26e4ce95af48a1d2ae5289916774dcf1a0495246c3405352742f47453f332044529509b2bc2a9212
6
+ metadata.gz: 4f7fd0a26a4ee072b4e1ff34dde9ba121278786b111e1f827252df903578eff88bc4e049fb59146b53b7477ce0831eb9d1bf14e629105014131326c6b9c9760b
7
+ data.tar.gz: 2133aea32f7d76524f25807749366cf8cfdac260b1c01845ebecb8503ab47eff892355cdcaf65aded3805aa8bcf3293f7c087f695457bbf98a23f31f73c5496c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- oddb2xml (2.1.3)
4
+ oddb2xml (2.1.4)
5
5
  archive-tar-minitar (~> 0.5.2)
6
6
  mechanize (~> 2.5.1)
7
7
  nokogiri (~> 1.5.10)
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 2.1.4 / 02.06.2015
2
+
3
+ * Consider changes in ATC-codes by EPha
4
+
1
5
  === 2.1.3 / 02.06.2015
2
6
 
3
7
  * Fix Caverjet by eliminatins semantically wrong leading "Solvens:"
@@ -292,7 +292,7 @@ module Oddb2xml
292
292
  :prodno => prodno ? prodno : '',
293
293
  :ith_swissmedic => row[ith] ? row[ith].value.to_s : '',
294
294
  :swissmedic_category => row[cat].value.to_s,
295
- :atc_code => row[atc] ? row[atc].value.to_s : '',
295
+ :atc_code => row[atc] ? Oddb2xml.add_epha_changes_for_ATC(row[i_5].value.to_s, row[atc].value.to_s) : '',
296
296
  :list_code => row[list_code] ? row[list_code].value.to_s : '',
297
297
  :package_size => row[siz] ? row[siz].value.to_s : '',
298
298
  :einheit_swissmedic => row[eht] ? row[eht].value.to_s : '',
data/lib/oddb2xml/util.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require 'open-uri'
1
2
  module Oddb2xml
2
3
  def Oddb2xml.calc_checksum(str)
3
4
  str = str.strip
@@ -15,6 +16,21 @@ module Oddb2xml
15
16
  Downloads = "#{Dir.pwd}/downloads"
16
17
  end
17
18
  @options = {}
19
+ @atc_csv_origin = 'https://raw.githubusercontent.com/epha/robot/master/data/manual/swissmedic/atc.csv'
20
+ @atc_csv_content = {}
21
+
22
+ def Oddb2xml.add_epha_changes_for_ATC(iksnr, atc_code)
23
+ if @atc_csv_content.size == 0
24
+ open(@atc_csv_origin).readlines.each{
25
+ |line|
26
+ items = line.split(',')
27
+ @atc_csv_content[[items[0], items[1]]] = items[2]
28
+ }
29
+
30
+ end
31
+ new_value = @atc_csv_content[[iksnr.to_s, atc_code]]
32
+ new_value ? new_value : atc_code
33
+ end
18
34
 
19
35
  def Oddb2xml.log(msg)
20
36
  return unless @options[:log]
@@ -1,3 +1,3 @@
1
1
  module Oddb2xml
2
- VERSION = "2.1.3"
2
+ VERSION = "2.1.4"
3
3
  end
data/spec/builder_spec.rb CHANGED
@@ -44,6 +44,7 @@ describe Oddb2xml::Builder do
44
44
  NrExtendedArticles = 78
45
45
  NrPharmaAndNonPharmaArticles = 60
46
46
  NrPharmaArticles = 5
47
+ NrPackages = 18
47
48
  include ServerMockHelper
48
49
  before(:each) do
49
50
  @savedDir = Dir.pwd
@@ -54,7 +55,6 @@ describe Oddb2xml::Builder do
54
55
  after(:each) do
55
56
  Dir.chdir @savedDir if @savedDir and File.directory?(@savedDir)
56
57
  end
57
-
58
58
  context 'XSD-generation: ' do
59
59
  let(:cli) do
60
60
  opts = {}
@@ -116,7 +116,6 @@ describe Oddb2xml::Builder do
116
116
  article_xml.should match(/<PRICE>164.55</)
117
117
  article_xml.should match(/<PTYP>PPUB</)
118
118
  article_xml.should match(/<PRICE>205.3</)
119
-
120
119
  article_xml.should match(/Levetiracetam DESITIN/i) #
121
120
  article_xml.should match(/7680536620137/) # Pharmacode
122
121
  article_xml.should match(/<PRICE>13.49</)
@@ -130,11 +129,14 @@ describe Oddb2xml::Builder do
130
129
  product_xml.match(/<DSCRF>Levetiracetam DESITIN cpr pell 250 mg/).should_not == nil
131
130
  product_xml.match(/<SubstanceSwissmedic>levetiracetamum</)
132
131
  product_xml.match(/<CompositionSwissmedic>levetiracetamum 250 mg, excipiens pro compressi obducti pro charta.</).should_not == nil
133
-
134
132
  article_xml.scan(/<ART DT=/).size.should eq(NrPharmaArticles)
135
133
  article_xml.should match(/<PHAR>5819012</)
136
134
  article_xml.should match(/<DSCRD>LEVETIRACETAM DESITIN Filmtabl 250 mg/)
137
135
  article_xml.should match(/<COMPNO>7601001320451</)
136
+
137
+ doc = REXML::Document.new File.new(product_filename)
138
+ XPath.match( doc, "//PRD[GTIN='7680620690084']/ATC").first.text.should == 'N03AX14'
139
+ XPath.match( doc, "//PRD[GTIN='7680161050583']/ATC").first.text.should == 'C05BA01' # modified by atc.csv!
138
140
  end
139
141
  end
140
142
  end
@@ -382,7 +384,7 @@ describe Oddb2xml::Builder do
382
384
  res = buildr_capture(:stdout){ cli.run }
383
385
  doc = REXML::Document.new File.new(File.join(Oddb2xml::WorkDir, 'oddb_substance.xml'))
384
386
  names = XPath.match( doc, "//NAML" )
385
- names.size.should == 10
387
+ names.size.should == 11
386
388
  names.find_all{|x| x.text.match('Lamivudinum') }.size.should == 1
387
389
  end
388
390
 
@@ -413,8 +415,8 @@ describe Oddb2xml::Builder do
413
415
  product_xml.should_not match(/ZYVOXID/i)
414
416
  end
415
417
  doc = REXML::Document.new File.new(product_filename)
416
- XPath.match( doc, "//PRD" ).find_all{|x| true}.size.should == 17
417
- XPath.match( doc, "//GTIN" ).find_all{|x| true}.size.should == 17
418
+ XPath.match( doc, "//PRD" ).find_all{|x| true}.size.should == NrPackages
419
+ XPath.match( doc, "//GTIN" ).find_all{|x| true}.size.should == NrPackages
418
420
  XPath.match( doc, "//PRODNO" ).find_all{|x| true}.size.should == 1
419
421
  end
420
422
 
data/spec/calc_spec.rb CHANGED
@@ -14,7 +14,6 @@ include Oddb2xml
14
14
  describe Oddb2xml::Calc do
15
15
  RunAllTests = true
16
16
 
17
-
18
17
  after(:each) do
19
18
  FileUtils.rm(Dir.glob(File.join(Oddb2xml::WorkDir, '*.*')))
20
19
  FileUtils.rm(Dir.glob(File.join(Oddb2xml::WorkDir, 'downloads', '*')))
@@ -22,6 +21,7 @@ describe Oddb2xml::Calc do
22
21
  before(:each) do
23
22
  FileUtils.rm(Dir.glob(File.join(Oddb2xml::WorkDir, '*.xml')))
24
23
  FileUtils.rm(Dir.glob(File.join(Oddb2xml::WorkDir, '*.csv')))
24
+ setup_epha_atc_csv_mock
25
25
  end
26
26
 
27
27
  Line_1 = 'I) Glucoselösung: glucosum anhydricum 150 g ut glucosum monohydricum, natrii dihydrogenophosphas dihydricus 2.34 g, zinci acetas dihydricus 6.58 mg, aqua ad iniectabilia q.s. ad solutionem pro 500 ml.'
@@ -142,6 +142,14 @@ Corresp. 5300 kJ.",
142
142
  )
143
143
 
144
144
  if RunAllTests
145
+ context "adapt ATC for epha 16105 C05BA" do
146
+ specify { expect(Oddb2xml.add_epha_changes_for_ATC(16105, 'C05BA')).to eq 'C05BA01' }
147
+ end
148
+
149
+ context "adapt ATC for epha 161 C05BA" do
150
+ specify { expect(Oddb2xml.add_epha_changes_for_ATC(161, 'C05BA')).to eq 'C05BA' }
151
+ end
152
+
145
153
  context 'handle E substances correctly' do
146
154
  e_200_examples =
147
155
  {
@@ -373,6 +381,7 @@ if RunAllTests
373
381
  XPath.match( doc, "//ARTICLE[GTIN='7680556740075']/NAME").first.text.should eq "Caverject DC 20, Injektionspräparat"
374
382
  XPath.match( doc, "//ARTICLE[GTIN='7680556740075']/COMPOSITIONS/COMPOSITION/SUBSTANCES/SUBSTANCE").size.should eq 5
375
383
  XPath.match( doc, "//ARTICLE[GTIN='7680556740075']/COMPOSITIONS/COMPOSITION/EXCIPIENS/SUBSTANCE_NAME").first.text.should eq "aqua ad iniectabilia q.s. ad solutionem"
384
+
376
385
  end
377
386
  end
378
387
 
Binary file
data/spec/data/atc.csv ADDED
@@ -0,0 +1 @@
1
+ 16105,C05BA,C05BA01,"Hirudoid, Creme"
Binary file
@@ -62,6 +62,10 @@ describe Oddb2xml::MigelExtractor do
62
62
  end
63
63
 
64
64
  describe Oddb2xml::SwissmedicInfoExtractor do
65
+ before(:each) do
66
+ setup_epha_atc_csv_mock
67
+ end
68
+
65
69
  context 'when transfer.dat is empty' do
66
70
  subject { Oddb2xml::SwissmedicInfoExtractor.new("") }
67
71
  it { expect(subject.to_hash).to be_empty }
@@ -70,7 +74,7 @@ describe Oddb2xml::SwissmedicInfoExtractor do
70
74
  it {
71
75
  filename = File.join(Oddb2xml::SpecData, 'swissmedic_package.xlsx')
72
76
  @packs = Oddb2xml::SwissmedicExtractor.new(filename, :package).to_hash
73
- expect(@packs.size).to eq(16)
77
+ expect(@packs.size).to eq(17)
74
78
  serocytol = nil
75
79
  @packs.each{|pack|
76
80
  serocytol = pack[1] if pack[0].to_s == '00274001'
data/spec/spec_helper.rb CHANGED
@@ -63,6 +63,14 @@ module ServerMockHelper
63
63
  setup_migel_server_mock
64
64
  setup_medregbm_server_mock
65
65
  setup_zurrose_server_mock
66
+ setup_epha_atc_csv_mock
67
+ end
68
+
69
+ def setup_epha_atc_csv_mock
70
+ body = File.read(File.join(Oddb2xml::SpecData, 'atc.csv'))
71
+ stub_request(:get, "https://raw.githubusercontent.com/epha/robot/master/data/manual/swissmedic/atc.csv").
72
+ with(:headers => {'Accept'=>'*/*', 'User-Agent'=>'Ruby'}).
73
+ to_return(:status => 200, :body => body, :headers => {})
66
74
  end
67
75
  def setup_bag_xml_server_mock
68
76
  # zip
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oddb2xml
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3
4
+ version: 2.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yasuhiro Asaka, Zeno R.R. Davatz
@@ -253,9 +253,9 @@ files:
253
253
  - spec/data/ItCodes.xml
254
254
  - spec/data/PR121001.txt
255
255
  - spec/data/PR121002.txt
256
- - spec/data/Preparation.xml
257
256
  - spec/data/Preparations.xml
258
257
  - spec/data/XMLPublications.zip
258
+ - spec/data/atc.csv
259
259
  - spec/data/column_c.txt
260
260
  - spec/data/compositions.txt
261
261
  - spec/data/compressor/oddb2xml_files_bm_update.txt
@@ -337,9 +337,9 @@ test_files:
337
337
  - spec/data/ItCodes.xml
338
338
  - spec/data/PR121001.txt
339
339
  - spec/data/PR121002.txt
340
- - spec/data/Preparation.xml
341
340
  - spec/data/Preparations.xml
342
341
  - spec/data/XMLPublications.zip
342
+ - spec/data/atc.csv
343
343
  - spec/data/column_c.txt
344
344
  - spec/data/compositions.txt
345
345
  - spec/data/compressor/oddb2xml_files_bm_update.txt
@@ -1,642 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8" standalone="yes"?>
2
- <Preparations ReleaseDate="01.12.2013">
3
- <Preparation ProductCommercial="394">
4
- <NameDe>Ancopir</NameDe>
5
- <NameFr>Ancopir</NameFr>
6
- <NameIt>Ancopir</NameIt>
7
- <DescriptionDe>Inj Lös </DescriptionDe>
8
- <DescriptionFr>sol inj </DescriptionFr>
9
- <DescriptionIt>sol inj </DescriptionIt>
10
- <AtcCode>A11DB</AtcCode>
11
- <SwissmedicNo5>28486</SwissmedicNo5>
12
- <FlagItLimitation>Y</FlagItLimitation>
13
- <OrgGenCode />
14
- <FlagSB20>N</FlagSB20>
15
- <CommentDe />
16
- <CommentFr />
17
- <CommentIt />
18
- <VatInEXF>N</VatInEXF>
19
- <Packs>
20
- <Pack ProductKey="394" Pharmacode="177804" PackId="570">
21
- <DescriptionDe>5 Amp 2 ml</DescriptionDe>
22
- <DescriptionFr>5 amp 2 ml</DescriptionFr>
23
- <DescriptionIt>5 amp 2 ml</DescriptionIt>
24
- <SwissmedicCategory>B</SwissmedicCategory>
25
- <SwissmedicNo8>28486014</SwissmedicNo8>
26
- <FlagNarcosis>N</FlagNarcosis>
27
- <FlagModal>Y</FlagModal>
28
- <BagDossierNo>12101</BagDossierNo>
29
- <GTIN>7680284860144</GTIN>
30
- <Limitations />
31
- <PointLimitations>
32
- <PointLimitation>
33
- <Points>20</Points>
34
- <Packs>0</Packs>
35
- <ValidFromDate>01.01.1955</ValidFromDate>
36
- <ValidThruDate>31.12.9999</ValidThruDate>
37
- </PointLimitation>
38
- </PointLimitations>
39
- <Prices>
40
- <PublicPrice>
41
- <Price>8.55</Price>
42
- <ValidFromDate>01.03.2010</ValidFromDate>
43
- <DivisionDescription />
44
- <PriceTypeCode>PPUB</PriceTypeCode>
45
- <PriceTypeDescriptionDe>Publikumspreis</PriceTypeDescriptionDe>
46
- <PriceTypeDescriptionFr>Prix public</PriceTypeDescriptionFr>
47
- <PriceTypeDescriptionIt>Prix public</PriceTypeDescriptionIt>
48
- <PriceChangeTypeCode>EXTRAORDMUT</PriceChangeTypeCode>
49
- <PriceChangeTypeDescriptionDe>Ausserordentliche Preismutation</PriceChangeTypeDescriptionDe>
50
- <PriceChangeTypeDescriptionFr>Ausserordentliche Preismutation</PriceChangeTypeDescriptionFr>
51
- <PriceChangeTypeDescriptionIt>Ausserordentliche Preismutation</PriceChangeTypeDescriptionIt>
52
- </PublicPrice>
53
- <ExFactoryPrice>
54
- <Price>3.89</Price>
55
- <ValidFromDate>01.07.2001</ValidFromDate>
56
- <DivisionDescription />
57
- <PriceTypeCode>PEXF</PriceTypeCode>
58
- <PriceTypeDescriptionDe>Ex-Factory Preis</PriceTypeDescriptionDe>
59
- <PriceTypeDescriptionFr>Prix ex-factory</PriceTypeDescriptionFr>
60
- <PriceTypeDescriptionIt>Prix ex-factory</PriceTypeDescriptionIt>
61
- <PriceChangeTypeCode>NORMAL</PriceChangeTypeCode>
62
- <PriceChangeTypeDescriptionDe>Normale Preismutation</PriceChangeTypeDescriptionDe>
63
- <PriceChangeTypeDescriptionFr>Mutation de prix normale</PriceChangeTypeDescriptionFr>
64
- <PriceChangeTypeDescriptionIt>Mutation de prix normale</PriceChangeTypeDescriptionIt>
65
- </ExFactoryPrice>
66
- </Prices>
67
- <Partners>
68
- <Partner>
69
- <PartnerType>V</PartnerType>
70
- <Description>Dr. Grossmann AG Pharmaca</Description>
71
- <Street>Hardstrasse 25</Street>
72
- <ZipCode>4127</ZipCode>
73
- <Place>Birsfelden</Place>
74
- <Phone>+41613775000</Phone>
75
- </Partner>
76
- </Partners>
77
- <Status>
78
- <IntegrationDate>15.03.1975</IntegrationDate>
79
- <ValidFromDate>15.03.1975</ValidFromDate>
80
- <ValidThruDate>31.12.9999</ValidThruDate>
81
- <StatusTypeCodeSl>0</StatusTypeCodeSl>
82
- <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
83
- <FlagApd>N</FlagApd>
84
- </Status>
85
- </Pack>
86
- </Packs>
87
- <Substances>
88
- <Substance>
89
- <DescriptionLa>Cyanocobalaminum (Vitamin B12)</DescriptionLa>
90
- <Quantity>1</Quantity>
91
- <QuantityUnit>mg</QuantityUnit>
92
- </Substance>
93
- <Substance>
94
- <DescriptionLa>Pyridoxini hydrochloridum</DescriptionLa>
95
- <Quantity>50</Quantity>
96
- <QuantityUnit>mg</QuantityUnit>
97
- </Substance>
98
- <Substance>
99
- <DescriptionLa>Thiamini hydrochloridum</DescriptionLa>
100
- <Quantity>200</Quantity>
101
- <QuantityUnit>mg</QuantityUnit>
102
- </Substance>
103
- <Substance>
104
- <DescriptionLa>Lidocaini hydrochloridum</DescriptionLa>
105
- <Quantity>10</Quantity>
106
- <QuantityUnit>mg</QuantityUnit>
107
- </Substance>
108
- </Substances>
109
- <Limitations />
110
- <ItCodes>
111
- <ItCode Code="07.">
112
- <DescriptionDe>STOFFWECHSEL</DescriptionDe>
113
- <DescriptionFr>METABOLISME</DescriptionFr>
114
- <DescriptionIt>METABOLISMO</DescriptionIt>
115
- <Limitations />
116
- </ItCode>
117
- <ItCode Code="07.02.">
118
- <DescriptionDe>Mineralia et Vitamina</DescriptionDe>
119
- <DescriptionFr>Mineralia et Vitamina</DescriptionFr>
120
- <DescriptionIt>Minerali e vitamine</DescriptionIt>
121
- <Limitations />
122
- </ItCode>
123
- <ItCode Code="07.02.40.">
124
- <DescriptionDe>Kombinierte Vitamine</DescriptionDe>
125
- <DescriptionFr>Vitamines composées</DescriptionFr>
126
- <DescriptionIt>Vitamine combinate</DescriptionIt>
127
- <Limitations>
128
- <Limitation>
129
- <LimitationCode>070240</LimitationCode>
130
- <LimitationType>PKT</LimitationType>
131
- <LimitationNiveau>IP</LimitationNiveau>
132
- <LimitationValue>40</LimitationValue>
133
- <DescriptionDe>Gesamthaft zugelassen: &lt;b&gt;40&lt;/b&gt; Punkte</DescriptionDe>
134
- <DescriptionFr>Prescription limitée au maximum à: &lt;b&gt;40&lt;/b&gt; points</DescriptionFr>
135
- <DescriptionIt>Ammessi in totale: &lt;b&gt;40&lt;/b&gt; punti</DescriptionIt>
136
- <ValidFromDate>01.01.2000</ValidFromDate>
137
- <ValidThruDate>31.12.9999</ValidThruDate>
138
- </Limitation>
139
- </Limitations>
140
- </ItCode>
141
- </ItCodes>
142
- <Status>
143
- <IntegrationDate>15.03.1975</IntegrationDate>
144
- <ValidFromDate>15.03.1975</ValidFromDate>
145
- <ValidThruDate>31.12.9999</ValidThruDate>
146
- <StatusTypeCodeSl>0</StatusTypeCodeSl>
147
- <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
148
- <FlagApd>N</FlagApd>
149
- </Status>
150
- </Preparation>
151
- <Preparation ProductCommercial="19736">
152
- <NameDe>Althéra</NameDe>
153
- <NameFr>Althéra</NameFr>
154
- <NameIt>Althéra</NameIt>
155
- <DescriptionDe>Plv </DescriptionDe>
156
- <DescriptionFr>pdr </DescriptionFr>
157
- <DescriptionIt>pdr </DescriptionIt>
158
- <AtcCode>V06DF</AtcCode>
159
- <FlagItLimitation>Y</FlagItLimitation>
160
- <OrgGenCode />
161
- <FlagSB20>N</FlagSB20>
162
- <CommentDe />
163
- <CommentFr />
164
- <CommentIt />
165
- <VatInEXF>N</VatInEXF>
166
- <Packs>
167
- <Pack ProductKey="19736" Pharmacode="3817150" PackId="23217">
168
- <DescriptionDe>450 g</DescriptionDe>
169
- <DescriptionFr>450 g</DescriptionFr>
170
- <DescriptionIt>450 g</DescriptionIt>
171
- <SwissmedicCategory />
172
- <FlagNarcosis>N</FlagNarcosis>
173
- <FlagModal>Y</FlagModal>
174
- <BagDossierNo>18943</BagDossierNo>
175
- <GTIN />
176
- <Limitations />
177
- <PointLimitations />
178
- <Prices>
179
- <ExFactoryPrice>
180
- <Price>16.3</Price>
181
- <ValidFromDate>01.08.2011</ValidFromDate>
182
- <DivisionDescription />
183
- <PriceTypeCode>PEXF</PriceTypeCode>
184
- <PriceTypeDescriptionDe>Ex-Factory Preis</PriceTypeDescriptionDe>
185
- <PriceTypeDescriptionFr>Prix ex-factory</PriceTypeDescriptionFr>
186
- <PriceTypeDescriptionIt>Prix ex-factory</PriceTypeDescriptionIt>
187
- <PriceChangeTypeCode>NORMAL</PriceChangeTypeCode>
188
- <PriceChangeTypeDescriptionDe>Normale Preismutation</PriceChangeTypeDescriptionDe>
189
- <PriceChangeTypeDescriptionFr>Mutation de prix normale</PriceChangeTypeDescriptionFr>
190
- <PriceChangeTypeDescriptionIt>Mutation de prix normale</PriceChangeTypeDescriptionIt>
191
- </ExFactoryPrice>
192
- <PublicPrice>
193
- <Price>30.05</Price>
194
- <ValidFromDate>01.08.2011</ValidFromDate>
195
- <DivisionDescription />
196
- <PriceTypeCode>PPUB</PriceTypeCode>
197
- <PriceTypeDescriptionDe>Publikumspreis</PriceTypeDescriptionDe>
198
- <PriceTypeDescriptionFr>Prix public</PriceTypeDescriptionFr>
199
- <PriceTypeDescriptionIt>Prix public</PriceTypeDescriptionIt>
200
- <PriceChangeTypeCode>NORMAL</PriceChangeTypeCode>
201
- <PriceChangeTypeDescriptionDe>Normale Preismutation</PriceChangeTypeDescriptionDe>
202
- <PriceChangeTypeDescriptionFr>Mutation de prix normale</PriceChangeTypeDescriptionFr>
203
- <PriceChangeTypeDescriptionIt>Mutation de prix normale</PriceChangeTypeDescriptionIt>
204
- </PublicPrice>
205
- </Prices>
206
- <Partners>
207
- <Partner>
208
- <PartnerType>V</PartnerType>
209
- <Description>Nestlé Suisse SA Health Care Nutrition</Description>
210
- <Street>Entre-Deux-Villes</Street>
211
- <ZipCode>1800</ZipCode>
212
- <Place>Vevey</Place>
213
- <Phone>0800 860 095</Phone>
214
- </Partner>
215
- </Partners>
216
- <Status>
217
- <IntegrationDate>01.01.2009</IntegrationDate>
218
- <ValidFromDate>01.01.2009</ValidFromDate>
219
- <ValidThruDate>31.12.9999</ValidThruDate>
220
- <StatusTypeCodeSl>2</StatusTypeCodeSl>
221
- <StatusTypeDescriptionSl>Neuaufnahme</StatusTypeDescriptionSl>
222
- <FlagApd>N</FlagApd>
223
- </Status>
224
- </Pack>
225
- </Packs>
226
- <Substances>
227
- <Substance>
228
- <DescriptionLa>Proteinum animale hydrolysatum</DescriptionLa>
229
- <Quantity />
230
- <QuantityUnit />
231
- </Substance>
232
- <Substance>
233
- <DescriptionLa>LC-PUFA</DescriptionLa>
234
- <Quantity />
235
- <QuantityUnit />
236
- </Substance>
237
- <Substance>
238
- <DescriptionLa>Lactosum</DescriptionLa>
239
- <Quantity />
240
- <QuantityUnit />
241
- </Substance>
242
- </Substances>
243
- <Limitations>
244
- <Limitation>
245
- <LimitationCode>ALFARÉ</LimitationCode>
246
- <LimitationType>DIA</LimitationType>
247
- <LimitationNiveau>P</LimitationNiveau>
248
- <DescriptionDe>Kostenübernahme für 6 Monate bei Säuglingen mit Kuhmilchproteinintoleranz. In begründeten Fällen und nach vorgängiger Kostengutsprache durch den Vertrauensarzt des Krankenversicherers Verlängerung für 3 bis maximal 6 Monate.</DescriptionDe>
249
- <DescriptionFr>Prise en charge des coûts pour une durée de 6 mois chez les nourrissons souffrant d'une intolérance aux protéines de lait de vache. Prolongation de 3 jusqu'à 6 mois maximum dans des cas motivés et après approbation préalable par le médecin-conseil de l'assureur.</DescriptionFr>
250
- <DescriptionIt>Copertura dei costi durante 6 mesi per i lattanti affetti da intolleranza alle proteine del latte di mucca. In casi motivati, e previa garanzia dei costi precedentemente rilasciata dal medico di fiducia dell'assicuratore malattie, possibile proroga di 3 fino a un massimo di 6 mesi.</DescriptionIt>
251
- <ValidFromDate>01.01.2009</ValidFromDate>
252
- <ValidThruDate>31.12.9999</ValidThruDate>
253
- </Limitation>
254
- </Limitations>
255
- <ItCodes>
256
- <ItCode Code="07.">
257
- <DescriptionDe>STOFFWECHSEL</DescriptionDe>
258
- <DescriptionFr>METABOLISME</DescriptionFr>
259
- <DescriptionIt>METABOLISMO</DescriptionIt>
260
- <Limitations />
261
- </ItCode>
262
- <ItCode Code="07.01.">
263
- <DescriptionDe>Diaetetica</DescriptionDe>
264
- <DescriptionFr>Produits diététiques</DescriptionFr>
265
- <DescriptionIt>Agenti nutrizionali</DescriptionIt>
266
- <Limitations />
267
- </ItCode>
268
- <ItCode Code="07.01.10.">
269
- <DescriptionDe>Ernährungsstörungen im Säuglingsalter</DescriptionDe>
270
- <DescriptionFr>Dyspepsies du nourrissons</DescriptionFr>
271
- <DescriptionIt>Disturbi dell'alimentazione nel lattante</DescriptionIt>
272
- <Limitations>
273
- <Limitation>
274
- <LimitationCode>070110</LimitationCode>
275
- <LimitationType>DIA</LimitationType>
276
- <LimitationNiveau>IP</LimitationNiveau>
277
- <DescriptionDe>Die aufgeführten Präparate dürfen nur für Säuglinge bis zu 12 Monaten verordnet werden.</DescriptionDe>
278
- <DescriptionFr>Les préparations mentionnées ne doivent être prescrites que pour des nourrissons jusqu'à 12 mois.</DescriptionFr>
279
- <DescriptionIt>I preparati elencati possono essere prescritti unicamente per i lattanti di età minore ai 12 mesi.</DescriptionIt>
280
- <ValidFromDate>01.01.2000</ValidFromDate>
281
- <ValidThruDate>31.12.9999</ValidThruDate>
282
- </Limitation>
283
- </Limitations>
284
- </ItCode>
285
- </ItCodes>
286
- <Status>
287
- <IntegrationDate>01.01.2009</IntegrationDate>
288
- <ValidFromDate>01.01.2009</ValidFromDate>
289
- <ValidThruDate>31.12.9999</ValidThruDate>
290
- <StatusTypeCodeSl>2</StatusTypeCodeSl>
291
- <StatusTypeDescriptionSl>Neuaufnahme</StatusTypeDescriptionSl>
292
- <FlagApd>N</FlagApd>
293
- </Status>
294
- </Preparation>
295
- <Preparation ProductCommercial="8620">
296
- <NameDe>3TC</NameDe>
297
- <NameFr>3TC</NameFr>
298
- <NameIt>3TC</NameIt>
299
- <DescriptionDe>Filmtabl 150 mg </DescriptionDe>
300
- <DescriptionFr>cpr pell 150 mg </DescriptionFr>
301
- <DescriptionIt>cpr pell 150 mg </DescriptionIt>
302
- <AtcCode>J05AF05</AtcCode>
303
- <SwissmedicNo5>53662</SwissmedicNo5>
304
- <FlagItLimitation>Y</FlagItLimitation>
305
- <OrgGenCode>O</OrgGenCode>
306
- <FlagSB20>N</FlagSB20>
307
- <CommentDe />
308
- <CommentFr />
309
- <CommentIt />
310
- <VatInEXF>N</VatInEXF>
311
- <Packs>
312
- <Pack ProductKey="8620" Pharmacode="1699947" PackId="12442">
313
- <DescriptionDe>60 Stk</DescriptionDe>
314
- <DescriptionFr>60 pce</DescriptionFr>
315
- <DescriptionIt>60 pce</DescriptionIt>
316
- <SwissmedicCategory>A</SwissmedicCategory>
317
- <SwissmedicNo8>53662013</SwissmedicNo8>
318
- <FlagNarcosis>N</FlagNarcosis>
319
- <FlagModal>Y</FlagModal>
320
- <BagDossierNo>16577</BagDossierNo>
321
- <GTIN>7680536620137</GTIN>
322
- <Limitations />
323
- <PointLimitations />
324
- <Prices>
325
- <ExFactoryPrice>
326
- <Price>164.55</Price>
327
- <ValidFromDate>01.10.2011</ValidFromDate>
328
- <DivisionDescription />
329
- <PriceTypeCode>PEXF</PriceTypeCode>
330
- <PriceTypeDescriptionDe>Ex-Factory Preis</PriceTypeDescriptionDe>
331
- <PriceTypeDescriptionFr>Prix ex-factory</PriceTypeDescriptionFr>
332
- <PriceTypeDescriptionIt>Prix ex-factory</PriceTypeDescriptionIt>
333
- <PriceChangeTypeCode>FREIWILLIGEPS</PriceChangeTypeCode>
334
- <PriceChangeTypeDescriptionDe>Freiwillige Preissenkung</PriceChangeTypeDescriptionDe>
335
- <PriceChangeTypeDescriptionFr>Baissement de prix volontairement</PriceChangeTypeDescriptionFr>
336
- <PriceChangeTypeDescriptionIt>Baissement de prix volontairement</PriceChangeTypeDescriptionIt>
337
- </ExFactoryPrice>
338
- <PublicPrice>
339
- <Price>205.3</Price>
340
- <ValidFromDate>01.10.2011</ValidFromDate>
341
- <DivisionDescription />
342
- <PriceTypeCode>PPUB</PriceTypeCode>
343
- <PriceTypeDescriptionDe>Publikumspreis</PriceTypeDescriptionDe>
344
- <PriceTypeDescriptionFr>Prix public</PriceTypeDescriptionFr>
345
- <PriceTypeDescriptionIt>Prix public</PriceTypeDescriptionIt>
346
- <PriceChangeTypeCode>FREIWILLIGEPS</PriceChangeTypeCode>
347
- <PriceChangeTypeDescriptionDe>Freiwillige Preissenkung</PriceChangeTypeDescriptionDe>
348
- <PriceChangeTypeDescriptionFr>Baissement de prix volontairement</PriceChangeTypeDescriptionFr>
349
- <PriceChangeTypeDescriptionIt>Baissement de prix volontairement</PriceChangeTypeDescriptionIt>
350
- </PublicPrice>
351
- </Prices>
352
- <Partners>
353
- <Partner>
354
- <PartnerType>V</PartnerType>
355
- <Description>ViiV Healthcare GmbH</Description>
356
- <Street>Talstrasse 3-5</Street>
357
- <ZipCode>3053</ZipCode>
358
- <Place>Münchenbuchsee</Place>
359
- <Phone>+41315607670</Phone>
360
- </Partner>
361
- </Partners>
362
- <Status>
363
- <IntegrationDate>15.03.1996</IntegrationDate>
364
- <ValidFromDate>15.03.1996</ValidFromDate>
365
- <ValidThruDate>31.12.9999</ValidThruDate>
366
- <StatusTypeCodeSl>0</StatusTypeCodeSl>
367
- <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
368
- <FlagApd>N</FlagApd>
369
- </Status>
370
- </Pack>
371
- </Packs>
372
- <Substances>
373
- <Substance>
374
- <DescriptionLa>Lamivudinum</DescriptionLa>
375
- <Quantity>150</Quantity>
376
- <QuantityUnit>mg</QuantityUnit>
377
- </Substance>
378
- </Substances>
379
- <Limitations />
380
- <ItCodes>
381
- <ItCode Code="08.">
382
- <DescriptionDe>INFEKTIONSKRANKHEITEN</DescriptionDe>
383
- <DescriptionFr>MALADIES INFECTIEUSES</DescriptionFr>
384
- <DescriptionIt>MALADIES INFECTIEUSES</DescriptionIt>
385
- <Limitations />
386
- </ItCode>
387
- <ItCode Code="08.03.">
388
- <DescriptionDe>Mittel gegen Viren</DescriptionDe>
389
- <DescriptionFr>Préparations antivirales</DescriptionFr>
390
- <DescriptionIt>Préparations antivirales</DescriptionIt>
391
- <Limitations />
392
- </ItCode>
393
- </ItCodes>
394
- <Status>
395
- <IntegrationDate>15.03.1996</IntegrationDate>
396
- <ValidFromDate>15.03.1996</ValidFromDate>
397
- <ValidThruDate>31.12.9999</ValidThruDate>
398
- <StatusTypeCodeSl>0</StatusTypeCodeSl>
399
- <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
400
- <FlagApd>N</FlagApd>
401
- </Status>
402
- </Preparation>
403
-  <Preparation ProductCommercial="26257">
404
- <NameDe>Levetiracetam DESITIN</NameDe>
405
- <NameFr>Levetiracetam DESITIN</NameFr>
406
- <NameIt>Levetiracetam DESITIN</NameIt>
407
- <DescriptionDe>Filmtabl 250 mg </DescriptionDe>
408
- <DescriptionFr>cpr pell 250 mg </DescriptionFr>
409
- <DescriptionIt>cpr pell 250 mg </DescriptionIt>
410
- <AtcCode>N03AX14</AtcCode>
411
- <SwissmedicNo5>62069</SwissmedicNo5>
412
- <FlagItLimitation>Y</FlagItLimitation>
413
- <OrgGenCode />
414
- <FlagSB20>N</FlagSB20>
415
- <CommentDe />
416
- <CommentFr />
417
- <CommentIt />
418
- <VatInEXF>N</VatInEXF>
419
- <Packs>
420
- <Pack ProductKey="26257" PackId="32894">
421
- <DescriptionDe>30 Stk</DescriptionDe>
422
- <DescriptionFr>30 pce</DescriptionFr>
423
- <DescriptionIt>30 pce</DescriptionIt>
424
- <SwissmedicCategory>B</SwissmedicCategory>
425
- <SwissmedicNo8>62069008</SwissmedicNo8>
426
- <FlagNarcosis>N</FlagNarcosis>
427
- <FlagModal>Y</FlagModal>
428
- <BagDossierNo>19417</BagDossierNo>
429
- <GTIN>7680620690084</GTIN>
430
- <Limitations />
431
- <PointLimitations />
432
- <Prices>
433
- <ExFactoryPrice>
434
- <Price>13.49</Price>
435
- <ValidFromDate>01.09.2013</ValidFromDate>
436
- <DivisionDescription />
437
- <PriceTypeCode>PEXF</PriceTypeCode>
438
- <PriceTypeDescriptionDe>Ex-Factory Preis</PriceTypeDescriptionDe>
439
- <PriceTypeDescriptionFr>Prix ex-factory</PriceTypeDescriptionFr>
440
- <PriceTypeDescriptionIt>Prix ex-factory</PriceTypeDescriptionIt>
441
- <PriceChangeTypeCode>FREIWILLIGEPS</PriceChangeTypeCode>
442
- <PriceChangeTypeDescriptionDe>Freiwillige Preissenkung</PriceChangeTypeDescriptionDe>
443
- <PriceChangeTypeDescriptionFr>Baissement de prix volontairement</PriceChangeTypeDescriptionFr>
444
- <PriceChangeTypeDescriptionIt>Baissement de prix volontairement</PriceChangeTypeDescriptionIt>
445
- </ExFactoryPrice>
446
- <PublicPrice>
447
- <Price>27.8</Price>
448
- <ValidFromDate>01.09.2013</ValidFromDate>
449
- <DivisionDescription />
450
- <PriceTypeCode>PPUB</PriceTypeCode>
451
- <PriceTypeDescriptionDe>Publikumspreis</PriceTypeDescriptionDe>
452
- <PriceTypeDescriptionFr>Prix public</PriceTypeDescriptionFr>
453
- <PriceTypeDescriptionIt>Prix public</PriceTypeDescriptionIt>
454
- <PriceChangeTypeCode>FREIWILLIGEPS</PriceChangeTypeCode>
455
- <PriceChangeTypeDescriptionDe>Freiwillige Preissenkung</PriceChangeTypeDescriptionDe>
456
- <PriceChangeTypeDescriptionFr>Baissement de prix volontairement</PriceChangeTypeDescriptionFr>
457
- <PriceChangeTypeDescriptionIt>Baissement de prix volontairement</PriceChangeTypeDescriptionIt>
458
- </PublicPrice>
459
- </Prices>
460
- <Partners>
461
- <Partner>
462
- <PartnerType>V</PartnerType>
463
- <Description>Desitin Pharma GmbH</Description>
464
- <Street>Hammerstrasse 47</Street>
465
- <ZipCode>4410</ZipCode>
466
- <Place>Liestal</Place>
467
- <Phone>+41619266010</Phone>
468
- </Partner>
469
- </Partners>
470
- <Status>
471
- <IntegrationDate>01.05.2011</IntegrationDate>
472
- <ValidFromDate>01.05.2011</ValidFromDate>
473
- <ValidThruDate>31.12.9999</ValidThruDate>
474
- <StatusTypeCodeSl>0</StatusTypeCodeSl>
475
- <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
476
- <FlagApd>N</FlagApd>
477
- </Status>
478
- </Pack>
479
- </Packs>
480
- <Substances>
481
- <Substance>
482
- <DescriptionLa>Levetiracetamum</DescriptionLa>
483
- <Quantity>250</Quantity>
484
- <QuantityUnit>mg</QuantityUnit>
485
- </Substance>
486
- </Substances>
487
- <Limitations />
488
- <ItCodes>
489
- <ItCode Code="01.">
490
- <DescriptionDe>NERVENSYSTEM</DescriptionDe>
491
- <DescriptionFr>SYSTEME NERVEUX</DescriptionFr>
492
- <DescriptionIt>SYSTEME NERVEUX</DescriptionIt>
493
- <Limitations />
494
- </ItCode>
495
- <ItCode Code="01.07.">
496
- <DescriptionDe>Antiepileptica</DescriptionDe>
497
- <DescriptionFr>Antiepileptica</DescriptionFr>
498
- <DescriptionIt>Antiepileptica</DescriptionIt>
499
- <Limitations />
500
- </ItCode>
501
- <ItCode Code="01.07.10.">
502
- <DescriptionDe>Einfache Antiepileptica</DescriptionDe>
503
- <DescriptionFr>Antiépileptiques simples</DescriptionFr>
504
- <DescriptionIt>Antiépileptiques simples</DescriptionIt>
505
- <Limitations />
506
- </ItCode>
507
- </ItCodes>
508
- <Status>
509
- <IntegrationDate>01.05.2011</IntegrationDate>
510
- <ValidFromDate>01.05.2011</ValidFromDate>
511
- <ValidThruDate>31.12.9999</ValidThruDate>
512
- <StatusTypeCodeSl>0</StatusTypeCodeSl>
513
- <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
514
- <FlagApd>N</FlagApd>
515
- </Status>
516
- </Preparation>
517
- <Preparation ProductCommercial="1208">
518
- <NameDe>Carbaderm</NameDe>
519
- <NameFr>Carbaderm</NameFr>
520
- <NameIt>Carbaderm</NameIt>
521
- <DescriptionDe>Creme </DescriptionDe>
522
- <DescriptionFr>crème </DescriptionFr>
523
- <DescriptionIt>crème </DescriptionIt>
524
- <AtcCode>D02AE01</AtcCode>
525
- <SwissmedicNo5>40333</SwissmedicNo5>
526
- <FlagItLimitation>Y</FlagItLimitation>
527
- <OrgGenCode />
528
- <FlagSB20>N</FlagSB20>
529
- <CommentDe />
530
- <CommentFr />
531
- <CommentIt />
532
- <VatInEXF>N</VatInEXF>
533
- <Packs>
534
- <Pack ProductKey="1208" Pharmacode="3603779" PackId="16527">
535
- <DescriptionDe>Tb 300 ml</DescriptionDe>
536
- <DescriptionFr>tb 300 ml</DescriptionFr>
537
- <DescriptionIt>tb 300 ml</DescriptionIt>
538
- <SwissmedicCategory>D</SwissmedicCategory>
539
- <SwissmedicNo8>40333045</SwissmedicNo8>
540
- <FlagNarcosis>N</FlagNarcosis>
541
- <FlagModal>Y</FlagModal>
542
- <BagDossierNo>15482</BagDossierNo>
543
- <GTIN>7680403330459</GTIN>
544
- <Limitations>
545
- <Limitation>
546
- <LimitationCode>60 PUNKTE</LimitationCode>
547
- <LimitationType>PKT</LimitationType>
548
- <LimitationNiveau>P</LimitationNiveau>
549
- <DescriptionDe>Gesamthaft zugelassen: 60 Punkte.</DescriptionDe>
550
- <DescriptionFr>Prescription limitée au maximum à: 60 points.</DescriptionFr>
551
- <DescriptionIt>Ammessi in totale: 60 punti.</DescriptionIt>
552
- <ValidFromDate>01.09.2007</ValidFromDate>
553
- <ValidThruDate>31.12.9999</ValidThruDate>
554
- </Limitation>
555
- </Limitations>
556
- <PointLimitations>
557
- <PointLimitation>
558
- <Points>50</Points>
559
- <ValidFromDate>01.01.1955</ValidFromDate>
560
- <ValidThruDate>31.12.9999</ValidThruDate>
561
- </PointLimitation>
562
- </PointLimitations>
563
- <Prices>
564
- <ExFactoryPrice>
565
- <Price>14.61</Price>
566
- <ValidFromDate>01.11.2013</ValidFromDate>
567
- <DivisionDescription />
568
- <PriceTypeCode>PEXF</PriceTypeCode>
569
- <PriceTypeDescriptionDe>Ex-Factory Preis</PriceTypeDescriptionDe>
570
- <PriceTypeDescriptionFr>Prix ex-factory</PriceTypeDescriptionFr>
571
- <PriceTypeDescriptionIt>Prix ex-factory</PriceTypeDescriptionIt>
572
- <PriceChangeTypeCode>AUSLANDPV</PriceChangeTypeCode>
573
- <PriceChangeTypeDescriptionDe>Auslandspreisvergleich</PriceChangeTypeDescriptionDe>
574
- <PriceChangeTypeDescriptionFr>Comparaison des prix avec l'étranger</PriceChangeTypeDescriptionFr>
575
- <PriceChangeTypeDescriptionIt>Comparaison des prix avec l'étranger</PriceChangeTypeDescriptionIt>
576
- </ExFactoryPrice>
577
- <PublicPrice>
578
- <Price>26.95</Price>
579
- <ValidFromDate>01.11.2013</ValidFromDate>
580
- <DivisionDescription />
581
- <PriceTypeCode>PPUB</PriceTypeCode>
582
- <PriceTypeDescriptionDe>Publikumspreis</PriceTypeDescriptionDe>
583
- <PriceTypeDescriptionFr>Prix public</PriceTypeDescriptionFr>
584
- <PriceTypeDescriptionIt>Prix public</PriceTypeDescriptionIt>
585
- <PriceChangeTypeCode>AUSLANDPV</PriceChangeTypeCode>
586
- <PriceChangeTypeDescriptionDe>Auslandspreisvergleich</PriceChangeTypeDescriptionDe>
587
- <PriceChangeTypeDescriptionFr>Comparaison des prix avec l'étranger</PriceChangeTypeDescriptionFr>
588
- <PriceChangeTypeDescriptionIt>Comparaison des prix avec l'étranger</PriceChangeTypeDescriptionIt>
589
- </PublicPrice>
590
- </Prices>
591
- <Partners>
592
- <Partner>
593
- <PartnerType>V</PartnerType>
594
- <Description>Gebro Pharma AG</Description>
595
- <Street>Gestadeckplatz 2</Street>
596
- <ZipCode>4410</ZipCode>
597
- <Place>Liestal</Place>
598
- <Phone>+41619268833</Phone>
599
- </Partner>
600
- </Partners>
601
- <Status>
602
- <IntegrationDate>15.03.1989</IntegrationDate>
603
- <ValidFromDate>15.03.1989</ValidFromDate>
604
- <ValidThruDate>31.12.9999</ValidThruDate>
605
- <StatusTypeCodeSl>0</StatusTypeCodeSl>
606
- <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
607
- <FlagApd>N</FlagApd>
608
- </Status>
609
- </Pack>
610
- </Packs>
611
- <Substances>
612
- <Substance>
613
- <DescriptionLa>Ureum</DescriptionLa>
614
- <Quantity>100</Quantity>
615
- <QuantityUnit>mg</QuantityUnit>
616
- </Substance>
617
- </Substances>
618
- <Limitations />
619
- <ItCodes>
620
- <ItCode Code="10.">
621
- <DescriptionDe>DERMATOLOGICA</DescriptionDe>
622
- <DescriptionFr>DERMATOLOGICA</DescriptionFr>
623
- <DescriptionIt>DERMATOLOGICI </DescriptionIt>
624
- <Limitations />
625
- </ItCode>
626
- <ItCode Code="10.07.">
627
- <DescriptionDe>Keratolytica</DescriptionDe>
628
- <DescriptionFr>Keratolytica</DescriptionFr>
629
- <DescriptionIt>Cheratolitici</DescriptionIt>
630
- <Limitations />
631
- </ItCode>
632
- </ItCodes>
633
- <Status>
634
- <IntegrationDate>15.03.1989</IntegrationDate>
635
- <ValidFromDate>15.03.1989</ValidFromDate>
636
- <ValidThruDate>31.12.9999</ValidThruDate>
637
- <StatusTypeCodeSl>0</StatusTypeCodeSl>
638
- <StatusTypeDescriptionSl>Initialzustand</StatusTypeDescriptionSl>
639
- <FlagApd>N</FlagApd>
640
- </Status>
641
- </Preparation>
642
- </Preparations>