oddb2xml 3.0.21 → 3.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CLAUDE.md +1 -1
- data/Gemfile.lock +1 -1
- data/History.txt +3 -0
- data/data/wala_arzneimittel.csv +397 -0
- data/lib/oddb2xml/downloader.rb +10 -0
- data/lib/oddb2xml/version.rb +1 -1
- data/lib/oddb2xml/weleda_sl.rb +46 -3
- data/spec/data/wala_arzneimittel.csv +397 -0
- data/spec/spec_helper.rb +1 -0
- data/spec/weleda_sl_spec.rb +41 -1
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b116a974b4b6f80e5dba15a710f53fe2c4b0b44bcd094216eb0f46678d703beb
|
|
4
|
+
data.tar.gz: e994a68fedddc58377421d5883322578ce5b6b119deaae1ba793acb4be190a9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: baf0927ae2293672d4e1db0e61ace759fc8fe11cb05e936a556eafd3740d4355d9b6cf5b5e049aa9205125760d6d363bcecaa1cb98c93d4646981502b087f6b4
|
|
7
|
+
data.tar.gz: 03217fb23800e5745aef09b836860e4f6f021b641e2ff7076d382f5eb4235f2ce618360966d0a59fdaad53647b7bd8b558cd131b15ed320ee2706ac9a98a2c97
|
data/CLAUDE.md
CHANGED
|
@@ -53,7 +53,7 @@ The system follows a **download → extract → build → compress** pipeline:
|
|
|
53
53
|
|
|
54
54
|
9. **Chapter-70 hack** (`lib/oddb2xml/chapter_70_hack.rb`) — Legacy scraper for the SL "Komplementärarzneimittel" products (homeopathic/anthroposophic/phytotherapeutic), called only from `Builder#build_artikelstamm`. **Deprecated / non-FHIR only (3.0.11 onwards):** the source page `varia_De.htm` was rebuilt as a JavaScript SPA with no static data table, so the scraper now returns nothing there. These products + limitations now come through the FHIR feed (SL classification `20. KOMPLEMENTÄRARZNEIMITTEL`, 221 products on the live DE feed with real GTINs and limitation texts), so `build_artikelstamm` **skips the scraper entirely when `@options[:fhir]`** (the default for `--artikelstamm` since 3.0.9). In `--no-fhir` mode the scraper degrades gracefully (skips non-row/`<script>` nodes and empty tables, warns, returns `[]`) instead of raising `NoMethodError`. See GitHub issue #118.
|
|
55
55
|
|
|
56
|
-
10. **Weleda / Kapitel-70 SL recovery** (`lib/oddb2xml/weleda_sl.rb`, 3.0.21 onwards) — Recovers the SL flag and public price for chapter-70 complementary medicines that are **missing from the FHIR feed** (the partial-replacement gap left by the dead chapter_70_hack, issue #118/#121). Many are magistral Weleda preparations with a `7611916…` trade GTIN that arrive only via ZurRose — with no SL flag and a blanked Publikumspreis (issue #117). `WeledaSL.load` joins two CSVs (downloaded at runtime from `github.com/zdavatz/oddb2xml_files` via `WeledaDownloader` / `BagSlGroupPricesDownloader`, bundled fallback copies under `data/`): `weleda_arzneimittel.csv` (GTIN → `abgabekategorie` SL flag + `csl` = **Pharma-Gruppen-Code**) and `bag_sl_group_prices.csv` (Pharma-Gruppen-Code → public price). The price table is extracted **offline** from the BAG SL definition PDF *"Homoeopathica, Anthroposophica, Allergene"* via `tools/generate_bag_sl_group_prices.rb` (uses system `pdftotext`; **no runtime PDF gem** — `pdf-reader`'s `afm` dep now needs Ruby ≥ 3.2, which would break the gem's Ruby floor). The join is **GTIN → csl → price**, honouring an `N x <code>` package multiplier (price = N × group price). Produces `gtin => {sl:, price:, csl:, abgabe:}` (SL rows only; ~515 priced on the live feed). `Builder#build_artikelstamm` consumes it (CLI sets `builder.weleda_sl` only for `--artikelstamm`): for any GTIN **absent from the FHIR NDJSON** it emits `<SL_ENTRY>true</SL_ENTRY>` and `<PPUB>` from the BAG group price, mirroring the old chapter-70 behaviour (`PHARMATYPE "P"`). **The FHIR/ZurRose price always wins** — the group price only fills a gap; a zeroed ZurRose `"0.00"` pub price is treated as absent so the gap-fill can apply. Match is **by GTIN only** (no pharmacode); the Swissmedic dispensing category is untouched (still from `Swissmedic_Packungen.xlsx`). The Artikelstamm output gets `<SL_ENTRY>` + `<PPUB>`; for the `-e`/`--extended` and `-b`/`--firstbase` product feeds the BAG public price is also added to `oddb_article.xml` as an `<ARTPRI><PTYP>BAGPUB</PTYP>` entry (the raw, often-blanked `ZURROSEPUB` is preserved alongside it) — `build_article`, gated by the CLI loading `weleda_sl` when `extended || firstbase || artikelstamm`. See GitHub issue #121.
|
|
56
|
+
10. **Weleda / Kapitel-70 SL recovery** (`lib/oddb2xml/weleda_sl.rb`, 3.0.21 onwards) — Recovers the SL flag and public price for chapter-70 complementary medicines that are **missing from the FHIR feed** (the partial-replacement gap left by the dead chapter_70_hack, issue #118/#121). Many are magistral Weleda preparations with a `7611916…` trade GTIN that arrive only via ZurRose — with no SL flag and a blanked Publikumspreis (issue #117). `WeledaSL.load` joins two CSVs (downloaded at runtime from `github.com/zdavatz/oddb2xml_files` via `WeledaDownloader` / `BagSlGroupPricesDownloader`, bundled fallback copies under `data/`): `weleda_arzneimittel.csv` (GTIN → `abgabekategorie` SL flag + `csl` = **Pharma-Gruppen-Code**) and `bag_sl_group_prices.csv` (Pharma-Gruppen-Code → public price). The price table is extracted **offline** from the BAG SL definition PDF *"Homoeopathica, Anthroposophica, Allergene"* via `tools/generate_bag_sl_group_prices.rb` (uses system `pdftotext`; **no runtime PDF gem** — `pdf-reader`'s `afm` dep now needs Ruby ≥ 3.2, which would break the gem's Ruby floor). The join is **GTIN → csl → price**, honouring an `N x <code>` package multiplier (price = N × group price). Produces `gtin => {sl:, price:, csl:, abgabe:}` (SL rows only; ~515 priced on the live feed). **WALA products (3.0.22 onwards):** a third runtime CSV `wala_arzneimittel.csv` (GTIN prefix `7640187…`, `WalaDownloader`, bundled fallback) is merged into the same map via `WeledaSL.build_wala_map`. Its layout differs: `;`-separated with a BOM, no `/ SL` column (a row is SL when it carries a `CSL-Code` = Kapitel-70.01 group code), and the public **package** price is given inline in the `CSL 70.01.` column — **already multiplied for the pack size** (the multiplier appears only in the galenic-form text, e.g. `Solutio ad inj. 10 x 1 ml`), so it is taken **verbatim** rather than re-joined against `bag_sl_group_prices.csv` (which holds the per-unit price and would yield 1/10 of the package price for ~120 multi-unit packs). 320 WALA SL products on the live file; Weleda wins on the (unlikely) GTIN collision. `Builder#build_artikelstamm` consumes it (CLI sets `builder.weleda_sl` only for `--artikelstamm`): for any GTIN **absent from the FHIR NDJSON** it emits `<SL_ENTRY>true</SL_ENTRY>` and `<PPUB>` from the BAG group price, mirroring the old chapter-70 behaviour (`PHARMATYPE "P"`). **The FHIR/ZurRose price always wins** — the group price only fills a gap; a zeroed ZurRose `"0.00"` pub price is treated as absent so the gap-fill can apply. Match is **by GTIN only** (no pharmacode); the Swissmedic dispensing category is untouched (still from `Swissmedic_Packungen.xlsx`). The Artikelstamm output gets `<SL_ENTRY>` + `<PPUB>`; for the `-e`/`--extended` and `-b`/`--firstbase` product feeds the BAG public price is also added to `oddb_article.xml` as an `<ARTPRI><PTYP>BAGPUB</PTYP>` entry (the raw, often-blanked `ZURROSEPUB` is preserved alongside it) — `build_article`, gated by the CLI loading `weleda_sl` when `extended || firstbase || artikelstamm`. See GitHub issue #121.
|
|
57
57
|
|
|
58
58
|
### Key data identifiers
|
|
59
59
|
- **GTIN/EAN13**: Primary article identifier (13-digit barcode)
|
data/Gemfile.lock
CHANGED
data/History.txt
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
=== 3.0.22 / 11.06.2026
|
|
2
|
+
* New (Artikelstamm / -e / -b): extend the 3.0.21 "Kapitel 70" SL recovery to WALA products (GTIN prefix 7640187…), in addition to Weleda. A third runtime CSV in github.com/zdavatz/oddb2xml_files, wala_arzneimittel.csv (bundled fallback under data/), is mapped exactly like the Weleda file: for any GTIN absent from the FHIR NDJSON, oddb2xml fills <SL_ENTRY>true</SL_ENTRY> and the BAG SL public price (<PPUB> in Artikelstamm, the standard <ARTPRI><PTYP>PPUB</PTYP> entry in oddb_article.xml for -e/-b). The WALA layout differs from Weleda: it is ";"-separated with a BOM, has no "/ SL" column (a row is SL when it carries a CSL-Code = Kapitel-70.01 group code), and the public package price is given inline in the "CSL 70.01." column -- already multiplied for the pack size (the multiplier appears only in the galenic-form text, e.g. "Solutio ad inj. 10 x 1 ml"), so it is taken verbatim instead of being re-joined against bag_sl_group_prices.csv (which would yield the 1/10 per-unit price). The FHIR/ZurRose price still always wins; this only fills a gap. Live file: 320 WALA SL products with prices.
|
|
3
|
+
|
|
1
4
|
=== 3.0.21 / 10.06.2026
|
|
2
5
|
* New (Artikelstamm): recover the SL flag and the public price for "Kapitel 70" complementary medicines (Homöopathika / Anthroposophika / Phytotherapeutika) that are missing from the BAG FHIR feed (issue #121). These products -- many of them magistral Weleda preparations with a 7611916… trade GTIN -- arrive only via ZurRose, where they currently have no SL flag (the legacy chapter-70 varia-page scraper is dead, issue #118) and a blanked public price (ZurRose zeroed the Publikumspreis column, issue #117). Two small CSVs in github.com/zdavatz/oddb2xml_files (downloaded at runtime, so they can be refreshed without a gem release, with a bundled copy under data/ as offline fallback) close the gap: weleda_arzneimittel.csv maps GTIN -> Abgabekategorie (the "… / SL" flag) and csl (= Pharma-Gruppen-Code), and bag_sl_group_prices.csv maps the Pharma-Gruppen-Code -> public price (CHF incl. MWST), extracted from the authoritative BAG SL definition PDF "Homoeopathica, Anthroposophica, Allergene" (regenerate with tools/generate_bag_sl_group_prices.rb). build_artikelstamm now joins GTIN -> csl -> price (honouring an "N x <code>" package multiplier) and, for any GTIN absent from the FHIR NDJSON, emits <SL_ENTRY>true</SL_ENTRY> and <PPUB> from the BAG group price, mirroring the old chapter-70 behaviour (PHARMATYPE "P"). The FHIR/ZurRose price always wins; the BAG group price only fills a gap. The Swissmedic dispensing category is unchanged (still from Swissmedic_Packungen.xlsx). No new runtime gem dependency -- the PDF is converted to CSV offline via pdftotext (pdf-reader was rejected because its afm dependency now needs Ruby >= 3.2). The Artikelstamm output gets <SL_ENTRY> + <PPUB>; for the -e/--extended and -b/--firstbase product feeds the BAG public price is also added to oddb_article.xml as an <ARTPRI><PTYP>BAGPUB</PTYP> entry (the raw, often blanked, ZURROSEPUB is preserved alongside it). Live feed: ~515 SL products gain a public price.
|
|
3
6
|
* Bugfix: in the Artikelstamm non-pharma branch a zeroed ZurRose public price ("0.00") is no longer emitted as <PPUB>0.00</PPUB> (it is now treated as absent, consistent with the sibling ZurRose-detail path), which also lets the BAG group price fill the gap.
|
|
@@ -0,0 +1,397 @@
|
|
|
1
|
+
EAN-Code;Pharmacode;Bezeichnung ;Galenische Form | PGR;KAT ;CSL-Code*;CSL 70.01.
|
|
2
|
+
7680687430012;1098334;Aconit comp. Schmerzöl;Öl zur Anwendung auf der Haut 50 ml;D;;
|
|
3
|
+
7640187361278;4228473;Aconitum comp.;Globuli velati 20 g;D;2070358;18.35
|
|
4
|
+
7640187360974;4227315;Aconitum comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
5
|
+
7640187360011;4926556;Aconitum/Camphora comp.;Oleum 100 ml;D;2070513;24.8
|
|
6
|
+
7640187360028;4926579;Aconitum/Camphora comp.;Otoguttae 10 ml;D;2070536;10.4
|
|
7
|
+
7640187362428;6723604;Aconitum/China comp.;Suppositoria 10 x 1 g;D;2070559;23
|
|
8
|
+
7640187361315;4228705;Adonis comp.;Globuli velati 20 g;D;2070306;16.55
|
|
9
|
+
7640187361322;4926585;"Adonis/Scilla comp.
|
|
10
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
11
|
+
7640187362954;6621677;"Adonis/Scilla comp.
|
|
12
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
13
|
+
7640187363807;1114141;Aesculus/Cera comp.;Creme/Crème 100 g;D;2070499;32.8
|
|
14
|
+
7640187363005;5999706;"Aesculus/Quercus comp.
|
|
15
|
+
";Suppositoria 10 x 2 g;D;2070559;23
|
|
16
|
+
7640187360769;4228846;Agropyron comp.;Globuli velati 20 g;D;2070306;16.55
|
|
17
|
+
7640187362435;4228823;Agropyron comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
18
|
+
7640187360103;5614793;"Allium cepa/Mercurialis comp.
|
|
19
|
+
";Unguentum 30 g;D;2070482;20.25
|
|
20
|
+
7640187360714;4910785;Allium cepa/Tendo comp.;Globuli velati 20 g;D;2070358;18.35
|
|
21
|
+
7640187362701;5412049;Allium cepa/Tendo comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
22
|
+
7640187362459;4228852;Ammi visnaga comp.;Suppositoria 10 x 2 g;B;2070559;23
|
|
23
|
+
7640187362961;4228875;Amnion Gl D30;Solutio ad inj. 10 x 1 ml;B;2070677;44.5
|
|
24
|
+
7640187360868;4228912;Anagallis comp.;Globuli velati 20 g;D;2070306;16.55
|
|
25
|
+
7640187362978;4228881;Anagallis comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
26
|
+
7640187360110;5659287;"Antimonit/Rosae aetheroleum comp.
|
|
27
|
+
";Gelatum 30 g;D;2070482;20.25
|
|
28
|
+
7640187360097;5659264;"Antimonit/Rosae aetheroleum comp.
|
|
29
|
+
";Solutio 50 ml;D;2070453;14.5
|
|
30
|
+
7640187361339;6013943;"Apis D3/Levisticum D2
|
|
31
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
32
|
+
7640187362985;5412055;Apis D4/Levisticum D3;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
33
|
+
7640187361346;5570423;"Apis D4/Levisticum D3
|
|
34
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
35
|
+
7640187361254;4228958;Apis regina comp.;Globuli velati 20 g;B;2070358;18.35
|
|
36
|
+
7640187360998;4228941;Apis regina comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
37
|
+
7640187360547;4926591;Apis regina/Aurum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
38
|
+
7640187362992;5548263;"Apis regina/Aurum comp.
|
|
39
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
40
|
+
7640187360660;4228987;Apis/Arnica;Globuli velati 20 g;B;2070306;16.55
|
|
41
|
+
7640187363012;4228970;Apis/Arnica;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
42
|
+
7640187361377;4229024;Apis/Belladonna;Globuli velati 20 g;D;2070306;16.55
|
|
43
|
+
7640187363029;4229018;Apis/Belladonna;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
44
|
+
7640187360691;4910791;Apis/Belladonna/Mercurius;Globuli velati 20 g;D;2070358;18.35
|
|
45
|
+
7640187362473;6543693;"Apis/Belladonna/Mercurius
|
|
46
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
47
|
+
7640187361384;6013966;"Apis/Berberis comp.
|
|
48
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
49
|
+
7640187363036;4926668;"Apis/Berberis comp.
|
|
50
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
51
|
+
7640187361391;1966650;Apis/Bryonia;Globuli velati 20 g;D;2070306;16.55
|
|
52
|
+
7640187362213;4926651;Apis/Larynx comp.;Globuli velati 20 g;D;2070358;18.35
|
|
53
|
+
7640187362602;6544333;Aquilinum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
54
|
+
7640187360790;4229219;Archangelica comp.;Globuli velati 20 g;D;2070358;18.35
|
|
55
|
+
7640187362596;4229403;Argentum nitricum comp.;Globuli velati 20 g;D;2070358;18.35
|
|
56
|
+
7640187362688;5094081;Argentum/Echinacea;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
57
|
+
7640187361414;4926616;"Argentum/Echinacea
|
|
58
|
+
";Globuli velati 20 g;D;2070358;18.35
|
|
59
|
+
7640187362060;4247915;Argentum/Ovaria;Globuli velati 20 g;B;2070306;16.55
|
|
60
|
+
7640187361162;7630247;Argentum/Pancreas;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
61
|
+
7640187361421;4229449;Argentum/Quarz;Globuli velati 20 g;D;2070358;18.35
|
|
62
|
+
7640187361001;4229426;Argentum/Quarz;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
63
|
+
7640187361438;4229461;Argentum/Saccharum sacchari;Globuli velati 20 g;D;2070306;16.55
|
|
64
|
+
7640187362480;4229455;Argentum/Saccharum sacchari;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
65
|
+
7640187363494;7107095;Argentum/Urtica comp.;Gelatum 30 g;D;2070482;20.25
|
|
66
|
+
7640187363746;1033474;Arnica comp.;Creme 30 g;D;2070482;20.25
|
|
67
|
+
7640187360127;6343793;Arnica e floribus W 5%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
68
|
+
7640187361445;4230636;Arnica, planta tota D19/Aurum D29;Globuli velati 20 g;D;2070358;18.35
|
|
69
|
+
7640187361018;7097534;Arnica, planta tota D19/Aurum D29;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
70
|
+
7640187363739;4229538;Arnica, Planta tota D6;Globuli velati 20 g;D;2069651;14.2
|
|
71
|
+
7640187362619;6013937;"Arnica/Cactus comp.
|
|
72
|
+
";Globuli velati 20 g;D;2070358;18.35
|
|
73
|
+
7640187363685;6343801;"Arnica/Cactus comp.
|
|
74
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
75
|
+
7640187363708;6958253;Arnica/Epiphysis/Plumbum mellitum comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
76
|
+
7640187363715;6547484;Arnica/Hypophysis/Plumbum mellitum comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
77
|
+
7640187363357;4926639;"Arnica/Lappa comp.
|
|
78
|
+
";Oleum 100 ml;D;2070513;24.8
|
|
79
|
+
7640187361469;4230866;Arnica/Plumbum mellitum;Globuli velati 20 g;D;2070358;18.35
|
|
80
|
+
7640187361025;4230814;Arnica/Plumbum mellitum;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
81
|
+
7680429770123;972163;Arnika Kompressen;Kompressen 5 x 1 Stück;D;;
|
|
82
|
+
7640187361292;4230926;Aurum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
83
|
+
7640187362640;5744573;"Aurum/Epiphysis comp.
|
|
84
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
85
|
+
7640187361476;4910816;Aurum/Hyoscyamus comp.;Globuli velati 20 g;D;2070306;16.55
|
|
86
|
+
7640187363050;5419689;"Aurum/Hyoscyamus comp.
|
|
87
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
88
|
+
7640187362190;4926645;"Aurum/Hypophysis comp.
|
|
89
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
90
|
+
7640187361483;5309653;Aurum/Plumbum mellitum comp.;Globuli velati 20 g;B;2070358;18.35
|
|
91
|
+
7640187361490;4231251;Aurum/Prunus;Globuli velati 20 g;D;2070306;16.55
|
|
92
|
+
7640187362107;4231245;Aurum/Prunus;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
93
|
+
7640187361506;4231423;Aurum/Valeriana comp.;Globuli velati 20 g;D;2070306;16.55
|
|
94
|
+
7640187360509;4231446;Avena comp.;Globuli velati 20 g;D;2070358;18.35
|
|
95
|
+
7640187360967;5792431;"Avena/Passiflora comp.
|
|
96
|
+
";Suppositoria 10 x 1 g;D;2070559;23
|
|
97
|
+
7640187360134;5792425;"Avena/Passiflora comp.
|
|
98
|
+
";Suppositoria 10 x 2 g;D;2070559;23
|
|
99
|
+
7640187360912;5573350;"Bambusa D3
|
|
100
|
+
";Globuli velati 20 g;D;2069651;14.2
|
|
101
|
+
7640187360943;5975456;Bambusa D6;Globuli velati 20 g;D;2069651;14.2
|
|
102
|
+
7640187361513;4231498;Barium/Pancreas comp.;Globuli velati 20 g;B;2070306;16.55
|
|
103
|
+
7640187360141;7275355;Belladonna comp.;Suppositoria 10 x 2 g;D;2070559;23
|
|
104
|
+
7640187361520;2636044;Belladonna/Chamomilla;Globuli velati 20 g;D;2070306;16.55
|
|
105
|
+
7640187362114;4231587;Belladonna/Chamomilla;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
106
|
+
7640187363074;7686779;Berberis/Chelidonium comp.;Capsulae 90 Stück;D;3794118;46.45
|
|
107
|
+
7640187360646;4231624;Berberis/Hypericum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
108
|
+
7640187361537;4231630;Berberis/Nicotiana comp.;Globuli velati 20 g;D;2070306;16.55
|
|
109
|
+
7640187361308;4231653;Berberis/Prostata comp.;Globuli velati 20 g;B;2070306;16.55
|
|
110
|
+
7640187361544;2133024;Berberis/Quarz;Globuli velati 20 g;D;2070358;18.35
|
|
111
|
+
7640187362138;4231682;Berberis/Quarz;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
112
|
+
7640187361551;4231713;Berberis/Sepia comp.;Globuli velati 20 g;B;2070306;16.55
|
|
113
|
+
7640187361568;4232718;Berberis/Urtica urens;Globuli velati 20 g;D;2070306;16.55
|
|
114
|
+
7640187360905;4232730;Berberis/Uterus comp.;Globuli velati 20 g;B;2070306;16.55
|
|
115
|
+
7640187362657;1966710;Betula/Arnica comp.;Globuli velati 20 g;D;2070358;18.35
|
|
116
|
+
7640187362145;4232871;Betula/Arnica comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
117
|
+
7640187363098;2101001;Betula/Juniperus;Extractum saccharatum 180 ml;D;;
|
|
118
|
+
7640187361575;4232894;Betula/Mandragora comp.;Globuli velati 20 g;B;2070306;16.55
|
|
119
|
+
7640187363111;4232888;Betula/Mandragora comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
120
|
+
7680334220249;396274;Bitter Elixier;Sirup 180 ml;D;;
|
|
121
|
+
7640187361582;6272484;Bleiglanz/Secale comp.;Globuli velati 20 g;B;2070306;16.55
|
|
122
|
+
7640187363128;4248820;Bleiglanz/Secale comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
123
|
+
7640187363135;7147597;Bolus alba comp.;Pulvis ad us. int. 35 g;D;2070312;18.45
|
|
124
|
+
7640187361353;4232919;Borago comp.;Globuli velati 20 g;D;2070306;16.55
|
|
125
|
+
7640187362725;4232902;Borago comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
126
|
+
7640187363142;4233103;Borago ex herba;Tinctura ad us. ext. 100 ml;D;2070128;16.5
|
|
127
|
+
7640187361599;6053279;"Borago/Renes comp.
|
|
128
|
+
";Globuli velati 20 g;B;2070306;16.55
|
|
129
|
+
7640187360530;2133030;Bronchi/Plantago comp.;Globuli velati 20 g;D;2070358;18.35
|
|
130
|
+
7640187361049;4233132;Bronchi/Plantago comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
131
|
+
7640187361605;4233273;Bryonia comp.;Globuli velati 20 g;D;2070306;16.55
|
|
132
|
+
7640187362572;4233178;Bryonia/Pulsatilla comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
133
|
+
7640187361407;5930181;"Bryonia/Pulsatilla comp.
|
|
134
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
135
|
+
7640187361261;4233327;Bryonia/Stannum;Globuli velati 20 g;D;2070306;16.55
|
|
136
|
+
7640187362152;4233296;Bryonia/Stannum;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
137
|
+
7640187363159;4250509;Bryonia/Viscum comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
138
|
+
7640187361452;4233362;Bryophyllum comp.;Globuli velati 20 g;B;2070306;16.55
|
|
139
|
+
7640187362664;6053322;Calcium carbonicum cum Quercu D6;Globuli velati 20 g;D;2070306;16.55
|
|
140
|
+
7640187363166;6381061;Calcium carbonicum cum Quercu D6;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
141
|
+
7640187363661;6824877;Calcium carbonicum cum Quercu D6;Solutio ad inj. 5 x 10 ml;B;2070625;55.75
|
|
142
|
+
7640187363197;6354986;Calcium carbonicum/Mesenchym comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
143
|
+
7640187360158;5659270;"Calendula officinalis
|
|
144
|
+
";Tinctura ad us. ext. 100 ml;D;2070128;16.5
|
|
145
|
+
7640187360165;6455405;Calendula Presssaft/Echinacea;Creme 10 g;D;;
|
|
146
|
+
7640187360189;5893497;Calendula Presssaft/Echinacea;Creme 100 g;D;2070499;32.8
|
|
147
|
+
7640187360172;5999712;Calendula Presssaft/Echinacea;Creme 30 g;D;2070482;20.25
|
|
148
|
+
7640187360196;2441398;Calendula/Tropaeolum comp.;Tinctura ad us. ext. 100 ml;B;2070476;20.6
|
|
149
|
+
7640187362121;1966756;Cantharis comp.;Globuli velati 20 g;D;2070306;16.55
|
|
150
|
+
7640187362176;4233563;Cantharis comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
151
|
+
7640187361636;4233847;Carduus marianus/Oxalis;Globuli velati 20 g;D;2070306;16.55
|
|
152
|
+
7640187363203;4233818;Carduus marianus/Oxalis;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
153
|
+
7640187361629;4233758;Carduus marianus/Viscum Mali comp.;Globuli velati 20 g;B;2070306;16.55
|
|
154
|
+
7640187363210;4233787;Carduus marianus/Viscum Mali comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
155
|
+
7640187363760;1009353;Cartilago comp.;Creme 100 g;D;2070499;32.8
|
|
156
|
+
7640187363753;1009352;Cartilago comp.;Creme 30 g;D;2070482;20.25
|
|
157
|
+
7640187360813;4233882;Cartilago comp.;Globuli velati 20 g;B;2070358;18.35
|
|
158
|
+
7640187363227;2034173;Cartilago comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
159
|
+
7640187362183;4234568;Cartilago/Echinacea comp.;Globuli velati 20 g;D;2070358;18.35
|
|
160
|
+
7640187360837;4234634;Cartilago/Mandragora comp.;Globuli velati 20 g;B;2070306;16.55
|
|
161
|
+
7640187363258;4234574;Cartilago/Mandragora comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
162
|
+
7640187360219;4234657;Cartilago/Mandragora comp.;Unguentum 100 g;B;2070499;32.8
|
|
163
|
+
7640187360202;4234663;Cartilago/Mandragora comp.;Unguentum 30 g;B;2070482;20.25
|
|
164
|
+
7640187360950;6118004;Carum carvi comp.;Suppositoria 10 x 1 g;D;2070559;23
|
|
165
|
+
7640187360226;4234700;Carum carvi comp.;Suppositoria 10 x 2 g;D;2070559;23
|
|
166
|
+
7640187361643;4234798;Cerebellum comp.;Globuli velati 20 g;B;2070306;16.55
|
|
167
|
+
7640187362770;4234752;Cerebellum comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
168
|
+
7640187360233;4234982;Chamomilla e floribus W 10%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
169
|
+
7640187361650;4235013;Chamomilla/Nicotiana;Globuli velati 20 g;D;2070306;16.55
|
|
170
|
+
7640187361667;6824908;Chelidonium/Colocynthis;Globuli velati 20 g;D;2070306;16.55
|
|
171
|
+
7640187361780;5350207;Chelidonium/Terebinthina laricina comp.;Collyria 30 x 0,5 ml;D;;
|
|
172
|
+
7640187361773;5574668;"Chelidonium/Terebinthina laricina comp.
|
|
173
|
+
";Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
174
|
+
7640187361681;4236030;Cichorium/Pancreas comp.;Globuli velati 20 g;B;2070306;16.55
|
|
175
|
+
7640187363265;4236001;Cichorium/Pancreas comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
176
|
+
7640187360240;6531135;Citri aetheroleum 10%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
177
|
+
7640187363272;5896811;Citrus/Cydonia;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
178
|
+
7640187361698;4236099;Conjunctiva comp.;Globuli velati 20 g;D;2070358;18.35
|
|
179
|
+
7640187360851;7097528;Convallaria/Primula comp.;Globuli velati 20 g;B;2070306;16.55
|
|
180
|
+
7640187362817;5882878;"Cor/Crataegus comp.
|
|
181
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
182
|
+
7640187363289;5866744;"Cor/Crataegus comp.
|
|
183
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
184
|
+
7640187362312;4236113;Cornea/Levisticum comp.;Collyria 30 x 0,5 ml;D;;
|
|
185
|
+
7640187362305;4236142;Cornea/Levisticum comp.;Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
186
|
+
7640187361360;6339113;Corpus vitreum/Hornerz (Arg. chlo. nat.) comp.;Collyria 30 x 0,5 ml;D;;
|
|
187
|
+
7640187363296;7059031;Corpus vitreum/Hornerz comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
188
|
+
7640187362824;6053316;"Corpus vitreum/Hornerz comp.
|
|
189
|
+
";Globuli velati 20 g;D;2070358;18.35
|
|
190
|
+
7640187361704;6053285;Crataegus/Viscum;Globuli velati 20 g;D;2070306;16.55
|
|
191
|
+
7640187363302;5835092;Crataegus/Viscum;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
192
|
+
7640187361056;4236231;Cuprum aceticum comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
193
|
+
7640187360264;2389806;Cuprum oxydulatum rubrum 0.4%;Unguentum 100 g;D;2070157;26.4
|
|
194
|
+
7640187360257;2389781;Cuprum oxydulatum rubrum 0.4%;Unguentum 30 g;D;2070140;16.25
|
|
195
|
+
7640187360271;4236254;Cuprum/Nicotiana;Unguentum 30 g;D;2070482;20.25
|
|
196
|
+
7640187363319;4236260;Disci comp. cum Aesculo;Solutio ad inj. 10 x 1 ml;B;2070602;59
|
|
197
|
+
7640187362848;4236314;Disci comp. cum Argento;Globuli velati 20 g;D;2070358;18.35
|
|
198
|
+
7640187363326;2034167;Disci comp. cum Argento;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
199
|
+
7640187361711;4237555;Disci comp. cum Auro;Globuli velati 20 g;B;2070358;18.35
|
|
200
|
+
7640187363500;4236320;Disci comp. cum Auro;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
201
|
+
7640187362855;4237561;Disci comp. cum Nicotiana;Globuli velati 20 g;D;2070358;18.35
|
|
202
|
+
7640187362862;4237578;Disci comp. cum Pulsatilla;Globuli velati 20 g;D;2070306;16.55
|
|
203
|
+
7640187360493;1966791;Disci comp. cum Stanno;Globuli velati 20 g;B;2070358;18.35
|
|
204
|
+
7640187362930;7803060;Disci comp. cum Stanno;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
205
|
+
7640187362879;4237644;Disci comp. cum Stibio;Globuli velati 20 g;D;2070358;18.35
|
|
206
|
+
7640187363517;4237615;Disci comp. cum Stibio;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
207
|
+
7640187362091;7394002;Disci/Rhus toxicodendron comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
208
|
+
7640187363678;7679957;Disci/Rhus toxicodendron comp.;Solutio ad inj. 5 x 10 ml;B;2070625;55.75
|
|
209
|
+
7640187363395;4238170;Disci/Viscum comp. cum Argento;Suppositoria 10 x 2 g;B;2070559;23
|
|
210
|
+
7640187363784;1099042;Disci/Viscum comp. cum Stanno;Creme 100 g;D;2070499;32.8
|
|
211
|
+
7640187362886;4238187;Disci/Viscum comp. cum Stanno;Globuli velati 20 g;D;2070358;18.35
|
|
212
|
+
7680484730018;7752134;Echinacea Mund- und Rachenspray;Spray 50 ml;D;;
|
|
213
|
+
7640187361728;4238566;Echinacea pallida e planta tota D3;Globuli velati 20 g;D;2069651;14.2
|
|
214
|
+
7640187360578;4238721;Echinacea/Mercurius comp.;Suppositoria 10 x 1 g;D;2070559;23
|
|
215
|
+
7640187362381;2441406;Echinacea/Quarz comp.;Collyria 30 x 0,5 ml;D;;
|
|
216
|
+
7640187362374;2441412;Echinacea/Quarz comp.;Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
217
|
+
7640187362053;6642900;Echinacea/Viscum;Globuli velati 20 g;D;2070306;16.55
|
|
218
|
+
7640187360295;1456050;Echinacea/Viscum comp.;Gelatum 30 g;B;2070482;20.25
|
|
219
|
+
7640187362893;6284174;"Epiphysis comp.
|
|
220
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
221
|
+
7640187361735;4238833;Epiphysis/Plumbum;Globuli velati 20 g;D;2070358;18.35
|
|
222
|
+
7640187362909;6053291;"Equisetum arvense/Formica
|
|
223
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
224
|
+
7640187363524;6188074;"Equisetum arvense/Formica
|
|
225
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
226
|
+
7640187360301;4238939;Equisetum ex herba W 5%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
227
|
+
7640187361742;6228460;"Equisetum/Pancreas
|
|
228
|
+
";Globuli velati 20 g;B;2070306;16.55
|
|
229
|
+
7640187361759;4927550;Equisetum/Renes comp.;Globuli velati 20 g;B;2070401;27.25
|
|
230
|
+
7640187361766;4239146;Equisetum/Stannum;Globuli velati 20 g;D;2070358;18.35
|
|
231
|
+
7640187361070;4239092;Equisetum/Stannum;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
232
|
+
7640187360875;4239399;Equisetum/Viscum;Globuli velati 20 g;B;2070306;16.55
|
|
233
|
+
7640187360318;6622613;Eucalypti aetheroleum 10%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
234
|
+
7680550430064;2495402;Euphrasia Einzeldosis-Augentropfen;Augentropfen 15 x 0,5 ml;D;;
|
|
235
|
+
7640187362404;6222641;"Euphrasia/Rosae aetheroleum
|
|
236
|
+
";Collyria 30 x 0,5 ml;D;;
|
|
237
|
+
7640187362398;1344776;"Euphrasia/Rosae aetheroleum
|
|
238
|
+
";Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
239
|
+
7640187360806;5835086;"Ferrum rosatum/Graphites
|
|
240
|
+
";Globuli velati 20 g;D;2070358;18.35
|
|
241
|
+
7640187361087;5950870;"Ferrum sidereum/Pancreas
|
|
242
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
243
|
+
7640187361612;4239672;Ferrum silicicum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
244
|
+
7640187361797;4239726;Ferrum/Sulfur comp.;Globuli velati 20 g;D;2070358;18.35
|
|
245
|
+
7640187360639;4927567;Ferrum/Thyreoidea;Globuli velati 20 g;B;2070306;16.55
|
|
246
|
+
7640187361094;4927573;"Ferrum/Thyreoidea
|
|
247
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
248
|
+
7640187362671;4239732;Formica/Oxalis;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
249
|
+
7640187361803;4242674;Galenit/Retina comp.;Globuli velati 20 g;D;2070358;18.35
|
|
250
|
+
7640187360776;1966816;Gelsemium comp.;Globuli velati 20 g;D;2070358;18.35
|
|
251
|
+
7640187363333;4242680;Gelsemium comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
252
|
+
7640187360325;6065213;"Gentiana/Zingiber comp.
|
|
253
|
+
";Extractum aquosum 100 ml;D;;
|
|
254
|
+
7640187361100;5967008;"Glandula suprarenalis/Mercurius
|
|
255
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
256
|
+
7640187360899;4242823;Glandulae suprarenales comp.;Globuli velati 20 g;B;2070306;16.55
|
|
257
|
+
7640187361117;4242800;Glandulae suprarenales comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
258
|
+
7640187362800;6221268;Gnaphalium comp.;Globuli velati 20 g;D;2070358;18.35
|
|
259
|
+
7640187362763;4242869;Gnaphalium comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
260
|
+
7640187363531;4242875;Hepar sulfuris comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
261
|
+
7640187361124;6824883;Hepar/Stannum metalicum A;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
262
|
+
7640187362589;4243751;Hirudo comp.;Globuli velati 20 g;D;2070358;18.35
|
|
263
|
+
7640187362541;4242964;Hirudo comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
264
|
+
7640187363548;6670977;Hypophysis comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
265
|
+
7640187362916;6144444;"Hypophysis comp.
|
|
266
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
267
|
+
7640187361810;4243811;Hypophysis/Stannum;Globuli velati 20 g;B;2070358;18.35
|
|
268
|
+
7640187360936;4243886;Ignatia comp.;Globuli velati 20 g;D;2070358;18.35
|
|
269
|
+
7640187360844;1966822;Lachesis comp.;Globuli velati 20 g;D;2070358;18.35
|
|
270
|
+
7640187362756;4243900;Lachesis comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
271
|
+
7640187362206;4243917;Larynx comp.;Globuli velati 20 g;D;2070306;16.55
|
|
272
|
+
7640187360363;5573344;"Lavandula, Oleum aethereum 10%
|
|
273
|
+
";Oleum aeth. 100 ml;D;2070192;19.9
|
|
274
|
+
7640187362329;6039894;"Lens cristallina/Viscum comp. cum Stanno
|
|
275
|
+
";Collyria 30 x 0,5 ml;D;;
|
|
276
|
+
7640187360745;4244029;Levico comp.;Globuli velati 20 g;D;2070306;16.55
|
|
277
|
+
7640187363487;4243998;Levico comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
278
|
+
7640187361827;4244153;Levisticum e radice D3;Globuli velati 20 g;D;2069651;14.2
|
|
279
|
+
7640187360080;4244271;Levisticum e radice W 5%;Otoguttae 10 ml;D;2070200;8.25
|
|
280
|
+
7640187360882;4244035;Lien comp.;Globuli velati 20 g;B;2070358;18.35
|
|
281
|
+
7640187363043;4244070;Lycopodium comp.;Globuli velati 20 g;D;2070306;16.55
|
|
282
|
+
7640187362220;4244064;Lycopodium comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
283
|
+
7680673670019;7805016;Magen-Darm Globuli velati;Globuli velati 20 g;D;;
|
|
284
|
+
7640187361834;4244101;Magnesit/Mamma comp.;Globuli velati 20 g;B;2070306;16.55
|
|
285
|
+
7640187362237;4244087;Magnesit/Mamma comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
286
|
+
7640187360516;4244130;Magnesium phosphoricum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
287
|
+
7640187363555;4244118;Magnesium phosphoricum comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
288
|
+
7640187360677;4244147;Magnesium sulfuricum/Ovaria comp.;Globuli velati 20 g;B;2070306;16.55
|
|
289
|
+
7640187363180;5682487;"Majorana/Thuja comp.
|
|
290
|
+
";Vaginalgel 100 g;D;2070499;32.8
|
|
291
|
+
7640187363173;5682493;"Majorana/Thuja comp.
|
|
292
|
+
";Vaginalgel 30 g;D;2070482;20.25
|
|
293
|
+
7640187362084;4244176;Malva comp.;Oleum 100 ml;D;2070513;24.8
|
|
294
|
+
7640187362077;921875;Malva comp.;Oleum 50 ml;D;2070507;13.9
|
|
295
|
+
7640187360479;5602318;Melissa comp.;Oleum ad us. ext. 50 ml;D;2070507;13.9
|
|
296
|
+
7640187360622;4244213;Melissa/Sepia comp.;Globuli velati 20 g;D;2070358;18.35
|
|
297
|
+
7640187362343;6500442;Mercurialis/Rosae aetheroleum;Collyria 30 x 0,5 ml;D;;
|
|
298
|
+
7640187362336;6500459;Mercurialis/Rosae aetheroleum;Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
299
|
+
7640187361131;4927633;Meteoreisen/Phosphor/Quarz ;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
300
|
+
7640187360707;4927627;Meteoreisen/Phosphor/Quarz ;Globuli velati 20 g;D;2070358;18.35
|
|
301
|
+
7640187360653;4244354;Myristica sebifera comp.;Globuli velati 20 g;D;2070358;18.35
|
|
302
|
+
7640187362695;4244331;Myristica sebifera comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
303
|
+
7680415840175;915030;Nasenbalsam;Nasencreme 10 g;D;;
|
|
304
|
+
7680465600194;884861;Nasenbalsam mild;Nasencreme 10 g;D;;
|
|
305
|
+
7640187362367;1396833;Nervus opticus comp.;Collyria 30 x 0,5 ml;D;;
|
|
306
|
+
7640187362350;1346195;Nervus opticus comp.;Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
307
|
+
7640187363791;1047665;Nervus opticus Gl D30;Solutio ad inj. 10 x 1 ml;B;2070677;44.5
|
|
308
|
+
7640187361841;4247826;Nicotiana comp.;Globuli velati 20 g;D;2070358;18.35
|
|
309
|
+
7640187363579;4247312;Nicotiana comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
310
|
+
7640187361858;6868337;Nicotiana/Nux vomica comp.;Globuli velati 20 g;B;2070358;18.35
|
|
311
|
+
7640187362244;4927656;Nicotiana/Nux vomica comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
312
|
+
7640187363586;6205105;"Nicotiana/Strophanthus comp.
|
|
313
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
314
|
+
7640187361865;4927662;Onopordum/Primula comp.;Globuli velati 20 g;D;2070306;16.55
|
|
315
|
+
7640187361872;4247878;Organum quadruplex;Globuli velati 20 g;B;2070306;16.55
|
|
316
|
+
7640187361155;4247861;Organum quadruplex;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
317
|
+
7640187360561;4247890;Ovaria comp.;Globuli velati 20 g;B;2070306;16.55
|
|
318
|
+
7640187362251;4247884;Ovaria comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
319
|
+
7640187360370;4247921;Oxalis e planta tota W 10%;Oleum pro baln. 100 ml;B;2070192;19.9
|
|
320
|
+
7640187361933;4248671;Oxalis/Quarz comp.;Globuli velati 20 g;D;2070358;18.35
|
|
321
|
+
7640187361896;6622607;Pancreas/Platinum chloratum comp.;Globuli velati 20 g;B;2070306;16.55
|
|
322
|
+
7680603560915;6640309;Pancreas/Platinum chloratum comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
323
|
+
7640187361919;4248180;Passiflora comp.;Globuli velati 20 g;D;2070306;16.55
|
|
324
|
+
7640187361179;4248234;Periodontium/Silicea comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
325
|
+
7640187361889;4248286;Petasites comp.;Globuli velati 20 g;D;2070306;16.55
|
|
326
|
+
7640187362718;4248257;Petasites comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
327
|
+
7680415870240;1374145;Plantago Bronchialbalsam;Creme 100 g;D;;
|
|
328
|
+
7680415870165;892694;Plantago Bronchialbalsam;Creme 30 g;D;;
|
|
329
|
+
7640187363432;5857366;Primula comp.;Oleum ad us. ext. 100 ml;D;2070513;24.8
|
|
330
|
+
7640187360394;4248642;Prunus spinosa e floribus W 5%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
331
|
+
7640187361926;2636050;Prunus spinosa ferm cum Ferro D3;Globuli velati 20 g;D;2069651;14.2
|
|
332
|
+
7640187362534;4248470;Prunus spinosa ferm cum Ferro D6;Solutio ad inj. 10 x 1 ml;B;2070631;25
|
|
333
|
+
7640187360400;4927685;Prunus/Rosmarinus comp.;Gelatum 30 g;B;2070482;20.25
|
|
334
|
+
7640187360554;4248501;Pulmo/Mercurius;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
335
|
+
7640187361186;5663573;"Pulmo/Tartarus stibiatus B
|
|
336
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
337
|
+
7640187361193;4248576;Pulmo/Vivianit comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
338
|
+
7680394600173;1569340;Pulmonium Hustensaft;Sirup 90 ml;D;;
|
|
339
|
+
7640187363616;4248665;Pulpa dentis Gl D30;Solutio ad inj. 10 x 1 ml;B;2070677;44.5
|
|
340
|
+
7640187361964;4248889;Quarz/Secale;Globuli velati 20 g;D;2070358;18.35
|
|
341
|
+
7640187362275;4927691;"Quarz/Secale
|
|
342
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
343
|
+
7640187363845;1099045;Quercus comp.;Creme/Crème 30 g;D;2070482;20.25
|
|
344
|
+
7640187360684;4248837;Renes/Cuprum;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
345
|
+
7640187361209;2385671;Retina comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
346
|
+
7640187361216;4248895;Retina et Chorioidea Gl D10;Solutio ad inj. 10 x 1 ml;B;2070654;29.5
|
|
347
|
+
7640187361940;4910822;Retina/Secale comp.;Globuli velati 20 g;B;2070306;16.55
|
|
348
|
+
7640187362282;4927716;Retina/Secale comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
349
|
+
7640187361957;4248984;Rhus toxicodendron comp.;Globuli velati 20 g;D;2070306;16.55
|
|
350
|
+
7640187363630;4248903;Rhus toxicodendron comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
351
|
+
7640187363852;1157116;Rhus toxicodendron TM;Creme 30 g;D;2070140;16.25
|
|
352
|
+
7640187363401;6678654;Rhus/Salix comp.;Globuli velati 20 g;D;2070306;16.55
|
|
353
|
+
7640187360738;4249989;Robinia comp.;Globuli velati 20 g;D;2070306;16.55
|
|
354
|
+
7640187360417;5905929;"Rosa e floribus comp.
|
|
355
|
+
";Oleum pro balneo 100 ml;D;2070513;24.8
|
|
356
|
+
7640187363838;1099044;Rosae aetheroleum/Silicea colloidalis comp.;Creme 100 g;D;2070499;32.8
|
|
357
|
+
7640187363821;1099043;Rosae aetheroleum/Silicea colloidalis comp.;Creme 30 g;D;2070482;20.25
|
|
358
|
+
7640187360424;5573309;"Rosmarini aetheroleum 10%
|
|
359
|
+
";Oleum aetheroleum 100 ml;D;2070192;19.9
|
|
360
|
+
7640187360929;4248719;Sambucus comp.;Globuli velati 20 g;D;2070306;16.55
|
|
361
|
+
7640187360783;4248731;Sarothamnus comp.;Globuli velati 20 g;D;2070358;18.35
|
|
362
|
+
7640187363647;4248725;Sarothamnus comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
363
|
+
7640187362497;4248949;Senecio comp.;Globuli velati 20 g;B;2070306;16.55
|
|
364
|
+
7640187363470;4248955;Silicea colloidalis comp.;Gelatum 30 g;D;2070482;20.25
|
|
365
|
+
7640187360585;1966874;Silicea comp.;Globuli velati 20 g;D;2070358;18.35
|
|
366
|
+
7640187361223;4248978;Silicea comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
367
|
+
7640187361971;4249972;Skorodit comp.;Globuli velati 20 g;B;2070306;16.55
|
|
368
|
+
7640187363814;1120119;Solum uliginosum comp.;Creme 30 g;D;2070482;20.25
|
|
369
|
+
7640187360721;1966880;Solum uliginosum comp.;Globuli velati 20 g;D;2070358;18.35
|
|
370
|
+
7640187360059;833556;Solum uliginosum comp.;Oleum 100 ml;D;2070513;24.8
|
|
371
|
+
7640187360042;2972977;Solum uliginosum comp.;Oleum 50 ml;D;2070507;13.9
|
|
372
|
+
7640187360066;4250107;Solum uliginosum comp.;Oleum 500 ml;D;;
|
|
373
|
+
7640187362732;4249995;Solum uliginosum comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
374
|
+
7640187362794;4250024;Solum uliginosum comp.;Solutio ad inj. 20 x 10 ml;B;2070625;223
|
|
375
|
+
7640187362787;4250047;Solum uliginosum comp.;Solutio ad inj. 5 x 10 ml;B;2070625;55.75
|
|
376
|
+
7640187363777;1114142;Solum uliginosum comp.;Solutio pro balneo/Badezusatz 500 ml;D;;
|
|
377
|
+
7640187361988;4250165;Spongia comp.;Globuli velati 20 g;D;2070306;16.55
|
|
378
|
+
7640187361247;2636096;Spongia/Aurum/Pulsatilla comp.;Globuli velati 20 g;D;2070306;16.55
|
|
379
|
+
7640187363654;5695159;"Stannum/Symphytum comp.
|
|
380
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
381
|
+
7640187360615;4250277;Strophanthus comp.;Globuli velati 20 g;D;2070306;16.55
|
|
382
|
+
7640187362299;4250260;Strophanthus comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
383
|
+
7640187361995;4250314;Symphytum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
384
|
+
7640187362008;4250366;Testes comp.;Globuli velati 20 g;B;2070306;16.55
|
|
385
|
+
7640187360462;6482827;Thymi aetheroleum 5%;Oleum pro balneo 100 ml;B;2070192;19.9
|
|
386
|
+
7640187361230;4250372;Thymus/Mercurius;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
387
|
+
7640187360820;4250389;Thyreoidea comp.;Globuli velati 20 g;B;2070358;18.35
|
|
388
|
+
7640187362015;4250432;Tormentilla comp.;Globuli velati 20 g;D;2070306;16.55
|
|
389
|
+
7640187363623;4250449;Tormentilla comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
390
|
+
7640187362022;4250455;Triticum comp.;Globuli velati 20 g;B;2070306;16.55
|
|
391
|
+
7640187362442;6991724;Tropaeolum comp.;Capsulae 100 Stück;D;3794118;46.45
|
|
392
|
+
7640187360608;4252046;Urtica comp.;Globuli velati 20 g;D;2070306;16.55
|
|
393
|
+
7640187362039;4250478;Valeriana comp.;Globuli velati 20 g;D;2070358;18.35
|
|
394
|
+
7640187363418;4250490;Veratrum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
395
|
+
7640187363425;5994407;"Vespa crabro comp.
|
|
396
|
+
";Gelatum 30 g;D;2070482;20.25
|
|
397
|
+
7640187362046;1966905;Viscum comp.;Globuli velati 20 g;D;2070306;16.55
|
data/lib/oddb2xml/downloader.rb
CHANGED
|
@@ -177,6 +177,16 @@ module Oddb2xml
|
|
|
177
177
|
end
|
|
178
178
|
end
|
|
179
179
|
|
|
180
|
+
# WALA "Kapitel 70" article list (GTIN, Abgabekategorie, Pharma-Gruppen-Code
|
|
181
|
+
# and the inline BAG SL 70.01 package price). See Oddb2xml::WeledaSL.
|
|
182
|
+
class WalaDownloader < Downloader
|
|
183
|
+
include DownloadMethod
|
|
184
|
+
def download
|
|
185
|
+
@url ||= "https://raw.githubusercontent.com/zdavatz/oddb2xml_files/master/wala_arzneimittel.csv"
|
|
186
|
+
download_as("wala_arzneimittel.csv", "w+")
|
|
187
|
+
end
|
|
188
|
+
end
|
|
189
|
+
|
|
180
190
|
# BAG SL Pharma-Gruppen-Code -> public price table, extracted from the BAG SL
|
|
181
191
|
# definition PDF "Homoeopathica, Anthroposophica, Allergene". See WeledaSL.
|
|
182
192
|
class BagSlGroupPricesDownloader < Downloader
|
data/lib/oddb2xml/version.rb
CHANGED
data/lib/oddb2xml/weleda_sl.rb
CHANGED
|
@@ -23,9 +23,19 @@ module Oddb2xml
|
|
|
23
23
|
# incl. MWST). Extracted from the BAG SL
|
|
24
24
|
# definition PDF "Homoeopathica, Anthroposophica,
|
|
25
25
|
# Allergene.pdf" — the authoritative price source.
|
|
26
|
+
# * wala_arzneimittel.csv The same gap for WALA products (GTIN prefix
|
|
27
|
+
# 7640187…). Different layout (";"-separated,
|
|
28
|
+
# BOM): a row is SL when it carries a CSL-Code
|
|
29
|
+
# (Kapitel-70.01 group code) and the public
|
|
30
|
+
# package price is given *inline* in the
|
|
31
|
+
# "CSL 70.01." column — already multiplied for
|
|
32
|
+
# the pack size (the multiplier lives only in the
|
|
33
|
+
# galenic-form text, e.g. "Solutio ad inj.
|
|
34
|
+
# 10 x 1 ml"), so it is used verbatim rather than
|
|
35
|
+
# re-joined against bag_sl_group_prices.csv.
|
|
26
36
|
#
|
|
27
|
-
#
|
|
28
|
-
# form "N x <code>" (e.g. "8x2070631"), meaning the package holds N units
|
|
37
|
+
# Weleda join: GTIN -> csl -> price. The csl may carry a package multiplier in
|
|
38
|
+
# the form "N x <code>" (e.g. "8x2070631"), meaning the package holds N units
|
|
29
39
|
# priced at <code> each, so the public price is N * price[<code>].
|
|
30
40
|
#
|
|
31
41
|
# The FHIR feed always wins: this enrichment is only applied to GTINs that
|
|
@@ -42,7 +52,12 @@ module Oddb2xml
|
|
|
42
52
|
def load(options = {})
|
|
43
53
|
prices = parse_prices(source(BagSlGroupPricesDownloader, options, "bag_sl_group_prices.csv"))
|
|
44
54
|
map = build_map(source(WeledaDownloader, options, "weleda_arzneimittel.csv"), prices)
|
|
45
|
-
|
|
55
|
+
weleda_size = map.size
|
|
56
|
+
build_wala_map(source(WalaDownloader, options, "wala_arzneimittel.csv")).each do |gtin, entry|
|
|
57
|
+
map[gtin] ||= entry # Weleda wins on the (unlikely) GTIN collision
|
|
58
|
+
end
|
|
59
|
+
Oddb2xml.log "WeledaSL: #{map.size} SL products with prices loaded " \
|
|
60
|
+
"(Weleda #{weleda_size}, WALA #{map.size - weleda_size})"
|
|
46
61
|
map
|
|
47
62
|
rescue => error
|
|
48
63
|
Oddb2xml.log "WeledaSL: disabled (#{error.class}: #{error.message})"
|
|
@@ -99,6 +114,34 @@ module Oddb2xml
|
|
|
99
114
|
map
|
|
100
115
|
end
|
|
101
116
|
|
|
117
|
+
# WALA layout: ";"-separated, BOM, header columns carry trailing spaces.
|
|
118
|
+
# A row is an SL product when it has a CSL-Code (Kapitel-70.01 group code);
|
|
119
|
+
# the public package price is taken verbatim from the inline "CSL 70.01."
|
|
120
|
+
# column (already multiplied for the pack size). Keyed by 13-digit GTIN.
|
|
121
|
+
def build_wala_map(csv_string)
|
|
122
|
+
map = {}
|
|
123
|
+
return map if csv_string.nil? || csv_string.strip.empty?
|
|
124
|
+
content = csv_string.sub("", "")
|
|
125
|
+
table = CSV.parse(content, headers: true, col_sep: ";")
|
|
126
|
+
col = {}
|
|
127
|
+
table.headers.compact.each { |h| col[h.to_s.strip] = h }
|
|
128
|
+
table.each do |row|
|
|
129
|
+
csl = row[col["CSL-Code*"]].to_s.strip
|
|
130
|
+
next if csl.empty? # no group code => not an SL product
|
|
131
|
+
gtin = row[col["EAN-Code"]].to_s.strip.rjust(13, "0")
|
|
132
|
+
next unless gtin =~ /\A\d{13}\z/
|
|
133
|
+
raw_price = row[col["CSL 70.01."]].to_s.strip
|
|
134
|
+
next if raw_price.empty?
|
|
135
|
+
map[gtin] = {
|
|
136
|
+
sl: true,
|
|
137
|
+
price: sprintf("%.2f", raw_price.tr(",", ".").to_f),
|
|
138
|
+
csl: csl,
|
|
139
|
+
abgabe: row[col["KAT"]].to_s.strip
|
|
140
|
+
}
|
|
141
|
+
end
|
|
142
|
+
map
|
|
143
|
+
end
|
|
144
|
+
|
|
102
145
|
# csl is either "<code>" or "<N> x <code>" (the package multiplier). Returns
|
|
103
146
|
# the public price as a "NN.NN" String, or nil when it cannot be resolved.
|
|
104
147
|
def resolve_price(csl, prices)
|
|
@@ -0,0 +1,397 @@
|
|
|
1
|
+
EAN-Code;Pharmacode;Bezeichnung ;Galenische Form | PGR;KAT ;CSL-Code*;CSL 70.01.
|
|
2
|
+
7680687430012;1098334;Aconit comp. Schmerzöl;Öl zur Anwendung auf der Haut 50 ml;D;;
|
|
3
|
+
7640187361278;4228473;Aconitum comp.;Globuli velati 20 g;D;2070358;18.35
|
|
4
|
+
7640187360974;4227315;Aconitum comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
5
|
+
7640187360011;4926556;Aconitum/Camphora comp.;Oleum 100 ml;D;2070513;24.8
|
|
6
|
+
7640187360028;4926579;Aconitum/Camphora comp.;Otoguttae 10 ml;D;2070536;10.4
|
|
7
|
+
7640187362428;6723604;Aconitum/China comp.;Suppositoria 10 x 1 g;D;2070559;23
|
|
8
|
+
7640187361315;4228705;Adonis comp.;Globuli velati 20 g;D;2070306;16.55
|
|
9
|
+
7640187361322;4926585;"Adonis/Scilla comp.
|
|
10
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
11
|
+
7640187362954;6621677;"Adonis/Scilla comp.
|
|
12
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
13
|
+
7640187363807;1114141;Aesculus/Cera comp.;Creme/Crème 100 g;D;2070499;32.8
|
|
14
|
+
7640187363005;5999706;"Aesculus/Quercus comp.
|
|
15
|
+
";Suppositoria 10 x 2 g;D;2070559;23
|
|
16
|
+
7640187360769;4228846;Agropyron comp.;Globuli velati 20 g;D;2070306;16.55
|
|
17
|
+
7640187362435;4228823;Agropyron comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
18
|
+
7640187360103;5614793;"Allium cepa/Mercurialis comp.
|
|
19
|
+
";Unguentum 30 g;D;2070482;20.25
|
|
20
|
+
7640187360714;4910785;Allium cepa/Tendo comp.;Globuli velati 20 g;D;2070358;18.35
|
|
21
|
+
7640187362701;5412049;Allium cepa/Tendo comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
22
|
+
7640187362459;4228852;Ammi visnaga comp.;Suppositoria 10 x 2 g;B;2070559;23
|
|
23
|
+
7640187362961;4228875;Amnion Gl D30;Solutio ad inj. 10 x 1 ml;B;2070677;44.5
|
|
24
|
+
7640187360868;4228912;Anagallis comp.;Globuli velati 20 g;D;2070306;16.55
|
|
25
|
+
7640187362978;4228881;Anagallis comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
26
|
+
7640187360110;5659287;"Antimonit/Rosae aetheroleum comp.
|
|
27
|
+
";Gelatum 30 g;D;2070482;20.25
|
|
28
|
+
7640187360097;5659264;"Antimonit/Rosae aetheroleum comp.
|
|
29
|
+
";Solutio 50 ml;D;2070453;14.5
|
|
30
|
+
7640187361339;6013943;"Apis D3/Levisticum D2
|
|
31
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
32
|
+
7640187362985;5412055;Apis D4/Levisticum D3;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
33
|
+
7640187361346;5570423;"Apis D4/Levisticum D3
|
|
34
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
35
|
+
7640187361254;4228958;Apis regina comp.;Globuli velati 20 g;B;2070358;18.35
|
|
36
|
+
7640187360998;4228941;Apis regina comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
37
|
+
7640187360547;4926591;Apis regina/Aurum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
38
|
+
7640187362992;5548263;"Apis regina/Aurum comp.
|
|
39
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
40
|
+
7640187360660;4228987;Apis/Arnica;Globuli velati 20 g;B;2070306;16.55
|
|
41
|
+
7640187363012;4228970;Apis/Arnica;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
42
|
+
7640187361377;4229024;Apis/Belladonna;Globuli velati 20 g;D;2070306;16.55
|
|
43
|
+
7640187363029;4229018;Apis/Belladonna;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
44
|
+
7640187360691;4910791;Apis/Belladonna/Mercurius;Globuli velati 20 g;D;2070358;18.35
|
|
45
|
+
7640187362473;6543693;"Apis/Belladonna/Mercurius
|
|
46
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
47
|
+
7640187361384;6013966;"Apis/Berberis comp.
|
|
48
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
49
|
+
7640187363036;4926668;"Apis/Berberis comp.
|
|
50
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
51
|
+
7640187361391;1966650;Apis/Bryonia;Globuli velati 20 g;D;2070306;16.55
|
|
52
|
+
7640187362213;4926651;Apis/Larynx comp.;Globuli velati 20 g;D;2070358;18.35
|
|
53
|
+
7640187362602;6544333;Aquilinum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
54
|
+
7640187360790;4229219;Archangelica comp.;Globuli velati 20 g;D;2070358;18.35
|
|
55
|
+
7640187362596;4229403;Argentum nitricum comp.;Globuli velati 20 g;D;2070358;18.35
|
|
56
|
+
7640187362688;5094081;Argentum/Echinacea;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
57
|
+
7640187361414;4926616;"Argentum/Echinacea
|
|
58
|
+
";Globuli velati 20 g;D;2070358;18.35
|
|
59
|
+
7640187362060;4247915;Argentum/Ovaria;Globuli velati 20 g;B;2070306;16.55
|
|
60
|
+
7640187361162;7630247;Argentum/Pancreas;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
61
|
+
7640187361421;4229449;Argentum/Quarz;Globuli velati 20 g;D;2070358;18.35
|
|
62
|
+
7640187361001;4229426;Argentum/Quarz;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
63
|
+
7640187361438;4229461;Argentum/Saccharum sacchari;Globuli velati 20 g;D;2070306;16.55
|
|
64
|
+
7640187362480;4229455;Argentum/Saccharum sacchari;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
65
|
+
7640187363494;7107095;Argentum/Urtica comp.;Gelatum 30 g;D;2070482;20.25
|
|
66
|
+
7640187363746;1033474;Arnica comp.;Creme 30 g;D;2070482;20.25
|
|
67
|
+
7640187360127;6343793;Arnica e floribus W 5%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
68
|
+
7640187361445;4230636;Arnica, planta tota D19/Aurum D29;Globuli velati 20 g;D;2070358;18.35
|
|
69
|
+
7640187361018;7097534;Arnica, planta tota D19/Aurum D29;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
70
|
+
7640187363739;4229538;Arnica, Planta tota D6;Globuli velati 20 g;D;2069651;14.2
|
|
71
|
+
7640187362619;6013937;"Arnica/Cactus comp.
|
|
72
|
+
";Globuli velati 20 g;D;2070358;18.35
|
|
73
|
+
7640187363685;6343801;"Arnica/Cactus comp.
|
|
74
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
75
|
+
7640187363708;6958253;Arnica/Epiphysis/Plumbum mellitum comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
76
|
+
7640187363715;6547484;Arnica/Hypophysis/Plumbum mellitum comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
77
|
+
7640187363357;4926639;"Arnica/Lappa comp.
|
|
78
|
+
";Oleum 100 ml;D;2070513;24.8
|
|
79
|
+
7640187361469;4230866;Arnica/Plumbum mellitum;Globuli velati 20 g;D;2070358;18.35
|
|
80
|
+
7640187361025;4230814;Arnica/Plumbum mellitum;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
81
|
+
7680429770123;972163;Arnika Kompressen;Kompressen 5 x 1 Stück;D;;
|
|
82
|
+
7640187361292;4230926;Aurum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
83
|
+
7640187362640;5744573;"Aurum/Epiphysis comp.
|
|
84
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
85
|
+
7640187361476;4910816;Aurum/Hyoscyamus comp.;Globuli velati 20 g;D;2070306;16.55
|
|
86
|
+
7640187363050;5419689;"Aurum/Hyoscyamus comp.
|
|
87
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
88
|
+
7640187362190;4926645;"Aurum/Hypophysis comp.
|
|
89
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
90
|
+
7640187361483;5309653;Aurum/Plumbum mellitum comp.;Globuli velati 20 g;B;2070358;18.35
|
|
91
|
+
7640187361490;4231251;Aurum/Prunus;Globuli velati 20 g;D;2070306;16.55
|
|
92
|
+
7640187362107;4231245;Aurum/Prunus;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
93
|
+
7640187361506;4231423;Aurum/Valeriana comp.;Globuli velati 20 g;D;2070306;16.55
|
|
94
|
+
7640187360509;4231446;Avena comp.;Globuli velati 20 g;D;2070358;18.35
|
|
95
|
+
7640187360967;5792431;"Avena/Passiflora comp.
|
|
96
|
+
";Suppositoria 10 x 1 g;D;2070559;23
|
|
97
|
+
7640187360134;5792425;"Avena/Passiflora comp.
|
|
98
|
+
";Suppositoria 10 x 2 g;D;2070559;23
|
|
99
|
+
7640187360912;5573350;"Bambusa D3
|
|
100
|
+
";Globuli velati 20 g;D;2069651;14.2
|
|
101
|
+
7640187360943;5975456;Bambusa D6;Globuli velati 20 g;D;2069651;14.2
|
|
102
|
+
7640187361513;4231498;Barium/Pancreas comp.;Globuli velati 20 g;B;2070306;16.55
|
|
103
|
+
7640187360141;7275355;Belladonna comp.;Suppositoria 10 x 2 g;D;2070559;23
|
|
104
|
+
7640187361520;2636044;Belladonna/Chamomilla;Globuli velati 20 g;D;2070306;16.55
|
|
105
|
+
7640187362114;4231587;Belladonna/Chamomilla;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
106
|
+
7640187363074;7686779;Berberis/Chelidonium comp.;Capsulae 90 Stück;D;3794118;46.45
|
|
107
|
+
7640187360646;4231624;Berberis/Hypericum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
108
|
+
7640187361537;4231630;Berberis/Nicotiana comp.;Globuli velati 20 g;D;2070306;16.55
|
|
109
|
+
7640187361308;4231653;Berberis/Prostata comp.;Globuli velati 20 g;B;2070306;16.55
|
|
110
|
+
7640187361544;2133024;Berberis/Quarz;Globuli velati 20 g;D;2070358;18.35
|
|
111
|
+
7640187362138;4231682;Berberis/Quarz;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
112
|
+
7640187361551;4231713;Berberis/Sepia comp.;Globuli velati 20 g;B;2070306;16.55
|
|
113
|
+
7640187361568;4232718;Berberis/Urtica urens;Globuli velati 20 g;D;2070306;16.55
|
|
114
|
+
7640187360905;4232730;Berberis/Uterus comp.;Globuli velati 20 g;B;2070306;16.55
|
|
115
|
+
7640187362657;1966710;Betula/Arnica comp.;Globuli velati 20 g;D;2070358;18.35
|
|
116
|
+
7640187362145;4232871;Betula/Arnica comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
117
|
+
7640187363098;2101001;Betula/Juniperus;Extractum saccharatum 180 ml;D;;
|
|
118
|
+
7640187361575;4232894;Betula/Mandragora comp.;Globuli velati 20 g;B;2070306;16.55
|
|
119
|
+
7640187363111;4232888;Betula/Mandragora comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
120
|
+
7680334220249;396274;Bitter Elixier;Sirup 180 ml;D;;
|
|
121
|
+
7640187361582;6272484;Bleiglanz/Secale comp.;Globuli velati 20 g;B;2070306;16.55
|
|
122
|
+
7640187363128;4248820;Bleiglanz/Secale comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
123
|
+
7640187363135;7147597;Bolus alba comp.;Pulvis ad us. int. 35 g;D;2070312;18.45
|
|
124
|
+
7640187361353;4232919;Borago comp.;Globuli velati 20 g;D;2070306;16.55
|
|
125
|
+
7640187362725;4232902;Borago comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
126
|
+
7640187363142;4233103;Borago ex herba;Tinctura ad us. ext. 100 ml;D;2070128;16.5
|
|
127
|
+
7640187361599;6053279;"Borago/Renes comp.
|
|
128
|
+
";Globuli velati 20 g;B;2070306;16.55
|
|
129
|
+
7640187360530;2133030;Bronchi/Plantago comp.;Globuli velati 20 g;D;2070358;18.35
|
|
130
|
+
7640187361049;4233132;Bronchi/Plantago comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
131
|
+
7640187361605;4233273;Bryonia comp.;Globuli velati 20 g;D;2070306;16.55
|
|
132
|
+
7640187362572;4233178;Bryonia/Pulsatilla comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
133
|
+
7640187361407;5930181;"Bryonia/Pulsatilla comp.
|
|
134
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
135
|
+
7640187361261;4233327;Bryonia/Stannum;Globuli velati 20 g;D;2070306;16.55
|
|
136
|
+
7640187362152;4233296;Bryonia/Stannum;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
137
|
+
7640187363159;4250509;Bryonia/Viscum comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
138
|
+
7640187361452;4233362;Bryophyllum comp.;Globuli velati 20 g;B;2070306;16.55
|
|
139
|
+
7640187362664;6053322;Calcium carbonicum cum Quercu D6;Globuli velati 20 g;D;2070306;16.55
|
|
140
|
+
7640187363166;6381061;Calcium carbonicum cum Quercu D6;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
141
|
+
7640187363661;6824877;Calcium carbonicum cum Quercu D6;Solutio ad inj. 5 x 10 ml;B;2070625;55.75
|
|
142
|
+
7640187363197;6354986;Calcium carbonicum/Mesenchym comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
143
|
+
7640187360158;5659270;"Calendula officinalis
|
|
144
|
+
";Tinctura ad us. ext. 100 ml;D;2070128;16.5
|
|
145
|
+
7640187360165;6455405;Calendula Presssaft/Echinacea;Creme 10 g;D;;
|
|
146
|
+
7640187360189;5893497;Calendula Presssaft/Echinacea;Creme 100 g;D;2070499;32.8
|
|
147
|
+
7640187360172;5999712;Calendula Presssaft/Echinacea;Creme 30 g;D;2070482;20.25
|
|
148
|
+
7640187360196;2441398;Calendula/Tropaeolum comp.;Tinctura ad us. ext. 100 ml;B;2070476;20.6
|
|
149
|
+
7640187362121;1966756;Cantharis comp.;Globuli velati 20 g;D;2070306;16.55
|
|
150
|
+
7640187362176;4233563;Cantharis comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
151
|
+
7640187361636;4233847;Carduus marianus/Oxalis;Globuli velati 20 g;D;2070306;16.55
|
|
152
|
+
7640187363203;4233818;Carduus marianus/Oxalis;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
153
|
+
7640187361629;4233758;Carduus marianus/Viscum Mali comp.;Globuli velati 20 g;B;2070306;16.55
|
|
154
|
+
7640187363210;4233787;Carduus marianus/Viscum Mali comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
155
|
+
7640187363760;1009353;Cartilago comp.;Creme 100 g;D;2070499;32.8
|
|
156
|
+
7640187363753;1009352;Cartilago comp.;Creme 30 g;D;2070482;20.25
|
|
157
|
+
7640187360813;4233882;Cartilago comp.;Globuli velati 20 g;B;2070358;18.35
|
|
158
|
+
7640187363227;2034173;Cartilago comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
159
|
+
7640187362183;4234568;Cartilago/Echinacea comp.;Globuli velati 20 g;D;2070358;18.35
|
|
160
|
+
7640187360837;4234634;Cartilago/Mandragora comp.;Globuli velati 20 g;B;2070306;16.55
|
|
161
|
+
7640187363258;4234574;Cartilago/Mandragora comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
162
|
+
7640187360219;4234657;Cartilago/Mandragora comp.;Unguentum 100 g;B;2070499;32.8
|
|
163
|
+
7640187360202;4234663;Cartilago/Mandragora comp.;Unguentum 30 g;B;2070482;20.25
|
|
164
|
+
7640187360950;6118004;Carum carvi comp.;Suppositoria 10 x 1 g;D;2070559;23
|
|
165
|
+
7640187360226;4234700;Carum carvi comp.;Suppositoria 10 x 2 g;D;2070559;23
|
|
166
|
+
7640187361643;4234798;Cerebellum comp.;Globuli velati 20 g;B;2070306;16.55
|
|
167
|
+
7640187362770;4234752;Cerebellum comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
168
|
+
7640187360233;4234982;Chamomilla e floribus W 10%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
169
|
+
7640187361650;4235013;Chamomilla/Nicotiana;Globuli velati 20 g;D;2070306;16.55
|
|
170
|
+
7640187361667;6824908;Chelidonium/Colocynthis;Globuli velati 20 g;D;2070306;16.55
|
|
171
|
+
7640187361780;5350207;Chelidonium/Terebinthina laricina comp.;Collyria 30 x 0,5 ml;D;;
|
|
172
|
+
7640187361773;5574668;"Chelidonium/Terebinthina laricina comp.
|
|
173
|
+
";Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
174
|
+
7640187361681;4236030;Cichorium/Pancreas comp.;Globuli velati 20 g;B;2070306;16.55
|
|
175
|
+
7640187363265;4236001;Cichorium/Pancreas comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
176
|
+
7640187360240;6531135;Citri aetheroleum 10%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
177
|
+
7640187363272;5896811;Citrus/Cydonia;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
178
|
+
7640187361698;4236099;Conjunctiva comp.;Globuli velati 20 g;D;2070358;18.35
|
|
179
|
+
7640187360851;7097528;Convallaria/Primula comp.;Globuli velati 20 g;B;2070306;16.55
|
|
180
|
+
7640187362817;5882878;"Cor/Crataegus comp.
|
|
181
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
182
|
+
7640187363289;5866744;"Cor/Crataegus comp.
|
|
183
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
184
|
+
7640187362312;4236113;Cornea/Levisticum comp.;Collyria 30 x 0,5 ml;D;;
|
|
185
|
+
7640187362305;4236142;Cornea/Levisticum comp.;Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
186
|
+
7640187361360;6339113;Corpus vitreum/Hornerz (Arg. chlo. nat.) comp.;Collyria 30 x 0,5 ml;D;;
|
|
187
|
+
7640187363296;7059031;Corpus vitreum/Hornerz comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
188
|
+
7640187362824;6053316;"Corpus vitreum/Hornerz comp.
|
|
189
|
+
";Globuli velati 20 g;D;2070358;18.35
|
|
190
|
+
7640187361704;6053285;Crataegus/Viscum;Globuli velati 20 g;D;2070306;16.55
|
|
191
|
+
7640187363302;5835092;Crataegus/Viscum;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
192
|
+
7640187361056;4236231;Cuprum aceticum comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
193
|
+
7640187360264;2389806;Cuprum oxydulatum rubrum 0.4%;Unguentum 100 g;D;2070157;26.4
|
|
194
|
+
7640187360257;2389781;Cuprum oxydulatum rubrum 0.4%;Unguentum 30 g;D;2070140;16.25
|
|
195
|
+
7640187360271;4236254;Cuprum/Nicotiana;Unguentum 30 g;D;2070482;20.25
|
|
196
|
+
7640187363319;4236260;Disci comp. cum Aesculo;Solutio ad inj. 10 x 1 ml;B;2070602;59
|
|
197
|
+
7640187362848;4236314;Disci comp. cum Argento;Globuli velati 20 g;D;2070358;18.35
|
|
198
|
+
7640187363326;2034167;Disci comp. cum Argento;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
199
|
+
7640187361711;4237555;Disci comp. cum Auro;Globuli velati 20 g;B;2070358;18.35
|
|
200
|
+
7640187363500;4236320;Disci comp. cum Auro;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
201
|
+
7640187362855;4237561;Disci comp. cum Nicotiana;Globuli velati 20 g;D;2070358;18.35
|
|
202
|
+
7640187362862;4237578;Disci comp. cum Pulsatilla;Globuli velati 20 g;D;2070306;16.55
|
|
203
|
+
7640187360493;1966791;Disci comp. cum Stanno;Globuli velati 20 g;B;2070358;18.35
|
|
204
|
+
7640187362930;7803060;Disci comp. cum Stanno;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
205
|
+
7640187362879;4237644;Disci comp. cum Stibio;Globuli velati 20 g;D;2070358;18.35
|
|
206
|
+
7640187363517;4237615;Disci comp. cum Stibio;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
207
|
+
7640187362091;7394002;Disci/Rhus toxicodendron comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
208
|
+
7640187363678;7679957;Disci/Rhus toxicodendron comp.;Solutio ad inj. 5 x 10 ml;B;2070625;55.75
|
|
209
|
+
7640187363395;4238170;Disci/Viscum comp. cum Argento;Suppositoria 10 x 2 g;B;2070559;23
|
|
210
|
+
7640187363784;1099042;Disci/Viscum comp. cum Stanno;Creme 100 g;D;2070499;32.8
|
|
211
|
+
7640187362886;4238187;Disci/Viscum comp. cum Stanno;Globuli velati 20 g;D;2070358;18.35
|
|
212
|
+
7680484730018;7752134;Echinacea Mund- und Rachenspray;Spray 50 ml;D;;
|
|
213
|
+
7640187361728;4238566;Echinacea pallida e planta tota D3;Globuli velati 20 g;D;2069651;14.2
|
|
214
|
+
7640187360578;4238721;Echinacea/Mercurius comp.;Suppositoria 10 x 1 g;D;2070559;23
|
|
215
|
+
7640187362381;2441406;Echinacea/Quarz comp.;Collyria 30 x 0,5 ml;D;;
|
|
216
|
+
7640187362374;2441412;Echinacea/Quarz comp.;Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
217
|
+
7640187362053;6642900;Echinacea/Viscum;Globuli velati 20 g;D;2070306;16.55
|
|
218
|
+
7640187360295;1456050;Echinacea/Viscum comp.;Gelatum 30 g;B;2070482;20.25
|
|
219
|
+
7640187362893;6284174;"Epiphysis comp.
|
|
220
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
221
|
+
7640187361735;4238833;Epiphysis/Plumbum;Globuli velati 20 g;D;2070358;18.35
|
|
222
|
+
7640187362909;6053291;"Equisetum arvense/Formica
|
|
223
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
224
|
+
7640187363524;6188074;"Equisetum arvense/Formica
|
|
225
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
226
|
+
7640187360301;4238939;Equisetum ex herba W 5%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
227
|
+
7640187361742;6228460;"Equisetum/Pancreas
|
|
228
|
+
";Globuli velati 20 g;B;2070306;16.55
|
|
229
|
+
7640187361759;4927550;Equisetum/Renes comp.;Globuli velati 20 g;B;2070401;27.25
|
|
230
|
+
7640187361766;4239146;Equisetum/Stannum;Globuli velati 20 g;D;2070358;18.35
|
|
231
|
+
7640187361070;4239092;Equisetum/Stannum;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
232
|
+
7640187360875;4239399;Equisetum/Viscum;Globuli velati 20 g;B;2070306;16.55
|
|
233
|
+
7640187360318;6622613;Eucalypti aetheroleum 10%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
234
|
+
7680550430064;2495402;Euphrasia Einzeldosis-Augentropfen;Augentropfen 15 x 0,5 ml;D;;
|
|
235
|
+
7640187362404;6222641;"Euphrasia/Rosae aetheroleum
|
|
236
|
+
";Collyria 30 x 0,5 ml;D;;
|
|
237
|
+
7640187362398;1344776;"Euphrasia/Rosae aetheroleum
|
|
238
|
+
";Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
239
|
+
7640187360806;5835086;"Ferrum rosatum/Graphites
|
|
240
|
+
";Globuli velati 20 g;D;2070358;18.35
|
|
241
|
+
7640187361087;5950870;"Ferrum sidereum/Pancreas
|
|
242
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
243
|
+
7640187361612;4239672;Ferrum silicicum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
244
|
+
7640187361797;4239726;Ferrum/Sulfur comp.;Globuli velati 20 g;D;2070358;18.35
|
|
245
|
+
7640187360639;4927567;Ferrum/Thyreoidea;Globuli velati 20 g;B;2070306;16.55
|
|
246
|
+
7640187361094;4927573;"Ferrum/Thyreoidea
|
|
247
|
+
";Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
248
|
+
7640187362671;4239732;Formica/Oxalis;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
249
|
+
7640187361803;4242674;Galenit/Retina comp.;Globuli velati 20 g;D;2070358;18.35
|
|
250
|
+
7640187360776;1966816;Gelsemium comp.;Globuli velati 20 g;D;2070358;18.35
|
|
251
|
+
7640187363333;4242680;Gelsemium comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
252
|
+
7640187360325;6065213;"Gentiana/Zingiber comp.
|
|
253
|
+
";Extractum aquosum 100 ml;D;;
|
|
254
|
+
7640187361100;5967008;"Glandula suprarenalis/Mercurius
|
|
255
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
256
|
+
7640187360899;4242823;Glandulae suprarenales comp.;Globuli velati 20 g;B;2070306;16.55
|
|
257
|
+
7640187361117;4242800;Glandulae suprarenales comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
258
|
+
7640187362800;6221268;Gnaphalium comp.;Globuli velati 20 g;D;2070358;18.35
|
|
259
|
+
7640187362763;4242869;Gnaphalium comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
260
|
+
7640187363531;4242875;Hepar sulfuris comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
261
|
+
7640187361124;6824883;Hepar/Stannum metalicum A;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
262
|
+
7640187362589;4243751;Hirudo comp.;Globuli velati 20 g;D;2070358;18.35
|
|
263
|
+
7640187362541;4242964;Hirudo comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
264
|
+
7640187363548;6670977;Hypophysis comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
265
|
+
7640187362916;6144444;"Hypophysis comp.
|
|
266
|
+
";Globuli velati 20 g;D;2070306;16.55
|
|
267
|
+
7640187361810;4243811;Hypophysis/Stannum;Globuli velati 20 g;B;2070358;18.35
|
|
268
|
+
7640187360936;4243886;Ignatia comp.;Globuli velati 20 g;D;2070358;18.35
|
|
269
|
+
7640187360844;1966822;Lachesis comp.;Globuli velati 20 g;D;2070358;18.35
|
|
270
|
+
7640187362756;4243900;Lachesis comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
271
|
+
7640187362206;4243917;Larynx comp.;Globuli velati 20 g;D;2070306;16.55
|
|
272
|
+
7640187360363;5573344;"Lavandula, Oleum aethereum 10%
|
|
273
|
+
";Oleum aeth. 100 ml;D;2070192;19.9
|
|
274
|
+
7640187362329;6039894;"Lens cristallina/Viscum comp. cum Stanno
|
|
275
|
+
";Collyria 30 x 0,5 ml;D;;
|
|
276
|
+
7640187360745;4244029;Levico comp.;Globuli velati 20 g;D;2070306;16.55
|
|
277
|
+
7640187363487;4243998;Levico comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
278
|
+
7640187361827;4244153;Levisticum e radice D3;Globuli velati 20 g;D;2069651;14.2
|
|
279
|
+
7640187360080;4244271;Levisticum e radice W 5%;Otoguttae 10 ml;D;2070200;8.25
|
|
280
|
+
7640187360882;4244035;Lien comp.;Globuli velati 20 g;B;2070358;18.35
|
|
281
|
+
7640187363043;4244070;Lycopodium comp.;Globuli velati 20 g;D;2070306;16.55
|
|
282
|
+
7640187362220;4244064;Lycopodium comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
283
|
+
7680673670019;7805016;Magen-Darm Globuli velati;Globuli velati 20 g;D;;
|
|
284
|
+
7640187361834;4244101;Magnesit/Mamma comp.;Globuli velati 20 g;B;2070306;16.55
|
|
285
|
+
7640187362237;4244087;Magnesit/Mamma comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
286
|
+
7640187360516;4244130;Magnesium phosphoricum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
287
|
+
7640187363555;4244118;Magnesium phosphoricum comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
288
|
+
7640187360677;4244147;Magnesium sulfuricum/Ovaria comp.;Globuli velati 20 g;B;2070306;16.55
|
|
289
|
+
7640187363180;5682487;"Majorana/Thuja comp.
|
|
290
|
+
";Vaginalgel 100 g;D;2070499;32.8
|
|
291
|
+
7640187363173;5682493;"Majorana/Thuja comp.
|
|
292
|
+
";Vaginalgel 30 g;D;2070482;20.25
|
|
293
|
+
7640187362084;4244176;Malva comp.;Oleum 100 ml;D;2070513;24.8
|
|
294
|
+
7640187362077;921875;Malva comp.;Oleum 50 ml;D;2070507;13.9
|
|
295
|
+
7640187360479;5602318;Melissa comp.;Oleum ad us. ext. 50 ml;D;2070507;13.9
|
|
296
|
+
7640187360622;4244213;Melissa/Sepia comp.;Globuli velati 20 g;D;2070358;18.35
|
|
297
|
+
7640187362343;6500442;Mercurialis/Rosae aetheroleum;Collyria 30 x 0,5 ml;D;;
|
|
298
|
+
7640187362336;6500459;Mercurialis/Rosae aetheroleum;Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
299
|
+
7640187361131;4927633;Meteoreisen/Phosphor/Quarz ;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
300
|
+
7640187360707;4927627;Meteoreisen/Phosphor/Quarz ;Globuli velati 20 g;D;2070358;18.35
|
|
301
|
+
7640187360653;4244354;Myristica sebifera comp.;Globuli velati 20 g;D;2070358;18.35
|
|
302
|
+
7640187362695;4244331;Myristica sebifera comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
303
|
+
7680415840175;915030;Nasenbalsam;Nasencreme 10 g;D;;
|
|
304
|
+
7680465600194;884861;Nasenbalsam mild;Nasencreme 10 g;D;;
|
|
305
|
+
7640187362367;1396833;Nervus opticus comp.;Collyria 30 x 0,5 ml;D;;
|
|
306
|
+
7640187362350;1346195;Nervus opticus comp.;Collyria 5 x 0,5 ml;D;2070542;13.9
|
|
307
|
+
7640187363791;1047665;Nervus opticus Gl D30;Solutio ad inj. 10 x 1 ml;B;2070677;44.5
|
|
308
|
+
7640187361841;4247826;Nicotiana comp.;Globuli velati 20 g;D;2070358;18.35
|
|
309
|
+
7640187363579;4247312;Nicotiana comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
310
|
+
7640187361858;6868337;Nicotiana/Nux vomica comp.;Globuli velati 20 g;B;2070358;18.35
|
|
311
|
+
7640187362244;4927656;Nicotiana/Nux vomica comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
312
|
+
7640187363586;6205105;"Nicotiana/Strophanthus comp.
|
|
313
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
314
|
+
7640187361865;4927662;Onopordum/Primula comp.;Globuli velati 20 g;D;2070306;16.55
|
|
315
|
+
7640187361872;4247878;Organum quadruplex;Globuli velati 20 g;B;2070306;16.55
|
|
316
|
+
7640187361155;4247861;Organum quadruplex;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
317
|
+
7640187360561;4247890;Ovaria comp.;Globuli velati 20 g;B;2070306;16.55
|
|
318
|
+
7640187362251;4247884;Ovaria comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
319
|
+
7640187360370;4247921;Oxalis e planta tota W 10%;Oleum pro baln. 100 ml;B;2070192;19.9
|
|
320
|
+
7640187361933;4248671;Oxalis/Quarz comp.;Globuli velati 20 g;D;2070358;18.35
|
|
321
|
+
7640187361896;6622607;Pancreas/Platinum chloratum comp.;Globuli velati 20 g;B;2070306;16.55
|
|
322
|
+
7680603560915;6640309;Pancreas/Platinum chloratum comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
323
|
+
7640187361919;4248180;Passiflora comp.;Globuli velati 20 g;D;2070306;16.55
|
|
324
|
+
7640187361179;4248234;Periodontium/Silicea comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
325
|
+
7640187361889;4248286;Petasites comp.;Globuli velati 20 g;D;2070306;16.55
|
|
326
|
+
7640187362718;4248257;Petasites comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
327
|
+
7680415870240;1374145;Plantago Bronchialbalsam;Creme 100 g;D;;
|
|
328
|
+
7680415870165;892694;Plantago Bronchialbalsam;Creme 30 g;D;;
|
|
329
|
+
7640187363432;5857366;Primula comp.;Oleum ad us. ext. 100 ml;D;2070513;24.8
|
|
330
|
+
7640187360394;4248642;Prunus spinosa e floribus W 5%;Oleum pro balneo 100 ml;D;2070192;19.9
|
|
331
|
+
7640187361926;2636050;Prunus spinosa ferm cum Ferro D3;Globuli velati 20 g;D;2069651;14.2
|
|
332
|
+
7640187362534;4248470;Prunus spinosa ferm cum Ferro D6;Solutio ad inj. 10 x 1 ml;B;2070631;25
|
|
333
|
+
7640187360400;4927685;Prunus/Rosmarinus comp.;Gelatum 30 g;B;2070482;20.25
|
|
334
|
+
7640187360554;4248501;Pulmo/Mercurius;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
335
|
+
7640187361186;5663573;"Pulmo/Tartarus stibiatus B
|
|
336
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
337
|
+
7640187361193;4248576;Pulmo/Vivianit comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
338
|
+
7680394600173;1569340;Pulmonium Hustensaft;Sirup 90 ml;D;;
|
|
339
|
+
7640187363616;4248665;Pulpa dentis Gl D30;Solutio ad inj. 10 x 1 ml;B;2070677;44.5
|
|
340
|
+
7640187361964;4248889;Quarz/Secale;Globuli velati 20 g;D;2070358;18.35
|
|
341
|
+
7640187362275;4927691;"Quarz/Secale
|
|
342
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
343
|
+
7640187363845;1099045;Quercus comp.;Creme/Crème 30 g;D;2070482;20.25
|
|
344
|
+
7640187360684;4248837;Renes/Cuprum;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
345
|
+
7640187361209;2385671;Retina comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
346
|
+
7640187361216;4248895;Retina et Chorioidea Gl D10;Solutio ad inj. 10 x 1 ml;B;2070654;29.5
|
|
347
|
+
7640187361940;4910822;Retina/Secale comp.;Globuli velati 20 g;B;2070306;16.55
|
|
348
|
+
7640187362282;4927716;Retina/Secale comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
349
|
+
7640187361957;4248984;Rhus toxicodendron comp.;Globuli velati 20 g;D;2070306;16.55
|
|
350
|
+
7640187363630;4248903;Rhus toxicodendron comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
351
|
+
7640187363852;1157116;Rhus toxicodendron TM;Creme 30 g;D;2070140;16.25
|
|
352
|
+
7640187363401;6678654;Rhus/Salix comp.;Globuli velati 20 g;D;2070306;16.55
|
|
353
|
+
7640187360738;4249989;Robinia comp.;Globuli velati 20 g;D;2070306;16.55
|
|
354
|
+
7640187360417;5905929;"Rosa e floribus comp.
|
|
355
|
+
";Oleum pro balneo 100 ml;D;2070513;24.8
|
|
356
|
+
7640187363838;1099044;Rosae aetheroleum/Silicea colloidalis comp.;Creme 100 g;D;2070499;32.8
|
|
357
|
+
7640187363821;1099043;Rosae aetheroleum/Silicea colloidalis comp.;Creme 30 g;D;2070482;20.25
|
|
358
|
+
7640187360424;5573309;"Rosmarini aetheroleum 10%
|
|
359
|
+
";Oleum aetheroleum 100 ml;D;2070192;19.9
|
|
360
|
+
7640187360929;4248719;Sambucus comp.;Globuli velati 20 g;D;2070306;16.55
|
|
361
|
+
7640187360783;4248731;Sarothamnus comp.;Globuli velati 20 g;D;2070358;18.35
|
|
362
|
+
7640187363647;4248725;Sarothamnus comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
363
|
+
7640187362497;4248949;Senecio comp.;Globuli velati 20 g;B;2070306;16.55
|
|
364
|
+
7640187363470;4248955;Silicea colloidalis comp.;Gelatum 30 g;D;2070482;20.25
|
|
365
|
+
7640187360585;1966874;Silicea comp.;Globuli velati 20 g;D;2070358;18.35
|
|
366
|
+
7640187361223;4248978;Silicea comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
367
|
+
7640187361971;4249972;Skorodit comp.;Globuli velati 20 g;B;2070306;16.55
|
|
368
|
+
7640187363814;1120119;Solum uliginosum comp.;Creme 30 g;D;2070482;20.25
|
|
369
|
+
7640187360721;1966880;Solum uliginosum comp.;Globuli velati 20 g;D;2070358;18.35
|
|
370
|
+
7640187360059;833556;Solum uliginosum comp.;Oleum 100 ml;D;2070513;24.8
|
|
371
|
+
7640187360042;2972977;Solum uliginosum comp.;Oleum 50 ml;D;2070507;13.9
|
|
372
|
+
7640187360066;4250107;Solum uliginosum comp.;Oleum 500 ml;D;;
|
|
373
|
+
7640187362732;4249995;Solum uliginosum comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
374
|
+
7640187362794;4250024;Solum uliginosum comp.;Solutio ad inj. 20 x 10 ml;B;2070625;223
|
|
375
|
+
7640187362787;4250047;Solum uliginosum comp.;Solutio ad inj. 5 x 10 ml;B;2070625;55.75
|
|
376
|
+
7640187363777;1114142;Solum uliginosum comp.;Solutio pro balneo/Badezusatz 500 ml;D;;
|
|
377
|
+
7640187361988;4250165;Spongia comp.;Globuli velati 20 g;D;2070306;16.55
|
|
378
|
+
7640187361247;2636096;Spongia/Aurum/Pulsatilla comp.;Globuli velati 20 g;D;2070306;16.55
|
|
379
|
+
7640187363654;5695159;"Stannum/Symphytum comp.
|
|
380
|
+
";Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
381
|
+
7640187360615;4250277;Strophanthus comp.;Globuli velati 20 g;D;2070306;16.55
|
|
382
|
+
7640187362299;4250260;Strophanthus comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
383
|
+
7640187361995;4250314;Symphytum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
384
|
+
7640187362008;4250366;Testes comp.;Globuli velati 20 g;B;2070306;16.55
|
|
385
|
+
7640187360462;6482827;Thymi aetheroleum 5%;Oleum pro balneo 100 ml;B;2070192;19.9
|
|
386
|
+
7640187361230;4250372;Thymus/Mercurius;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
387
|
+
7640187360820;4250389;Thyreoidea comp.;Globuli velati 20 g;B;2070358;18.35
|
|
388
|
+
7640187362015;4250432;Tormentilla comp.;Globuli velati 20 g;D;2070306;16.55
|
|
389
|
+
7640187363623;4250449;Tormentilla comp.;Solutio ad inj. 10 x 1 ml;B;2070565;30.5
|
|
390
|
+
7640187362022;4250455;Triticum comp.;Globuli velati 20 g;B;2070306;16.55
|
|
391
|
+
7640187362442;6991724;Tropaeolum comp.;Capsulae 100 Stück;D;3794118;46.45
|
|
392
|
+
7640187360608;4252046;Urtica comp.;Globuli velati 20 g;D;2070306;16.55
|
|
393
|
+
7640187362039;4250478;Valeriana comp.;Globuli velati 20 g;D;2070358;18.35
|
|
394
|
+
7640187363418;4250490;Veratrum comp.;Globuli velati 20 g;D;2070306;16.55
|
|
395
|
+
7640187363425;5994407;"Vespa crabro comp.
|
|
396
|
+
";Gelatum 30 g;D;2070482;20.25
|
|
397
|
+
7640187362046;1966905;Viscum comp.;Globuli velati 20 g;D;2070306;16.55
|
data/spec/spec_helper.rb
CHANGED
|
@@ -258,6 +258,7 @@ def mock_downloads
|
|
|
258
258
|
"https://raw.githubusercontent.com/zdavatz/cpp2sqlite/master/input/atc_codes_multi_lingual.txt" => "atc.csv",
|
|
259
259
|
"https://raw.githubusercontent.com/zdavatz/oddb2xml_files/master/LPPV.txt" => "oddb2xml_files_lppv.txt",
|
|
260
260
|
"https://raw.githubusercontent.com/zdavatz/oddb2xml_files/master/weleda_arzneimittel.csv" => "weleda_arzneimittel.csv",
|
|
261
|
+
"https://raw.githubusercontent.com/zdavatz/oddb2xml_files/master/wala_arzneimittel.csv" => "wala_arzneimittel.csv",
|
|
261
262
|
"https://raw.githubusercontent.com/zdavatz/oddb2xml_files/master/bag_sl_group_prices.csv" => "bag_sl_group_prices.csv",
|
|
262
263
|
"http://www.xn--spezialittenliste-yqb.ch/File.axd?file=XMLPublications.zip" => "XMLPublications.zip",
|
|
263
264
|
"https://www.spezialitaetenliste.ch/File.axd?file=XMLPublications.zip" => "XMLPublications.zip",
|
data/spec/weleda_sl_spec.rb
CHANGED
|
@@ -24,6 +24,44 @@ RSpec.describe Oddb2xml::WeledaSL do
|
|
|
24
24
|
CSV
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
+
# ";"-separated, leading BOM, header columns carry trailing spaces — exactly
|
|
28
|
+
# the live wala_arzneimittel.csv layout.
|
|
29
|
+
let(:wala_csv) {
|
|
30
|
+
"" + <<~CSV
|
|
31
|
+
EAN-Code;Pharmacode;Bezeichnung ;Galenische Form | PGR;KAT ;CSL-Code*;CSL 70.01.
|
|
32
|
+
7680687430012;1098334;Aconit comp. Schmerzöl;Öl 50 ml;D;;
|
|
33
|
+
7640187361278;4228473;Aconitum comp.;Globuli velati 20 g;D;2070358;18.35
|
|
34
|
+
7640187360974;4227315;Aconitum comp.;Solutio ad inj. 10 x 1 ml;B;2070588;39
|
|
35
|
+
7640187360011;4926556;Aconitum/Camphora comp.;Oleum 100 ml;D;2070513;24.8
|
|
36
|
+
CSV
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
describe ".build_wala_map" do
|
|
40
|
+
subject(:map) { described_class.build_wala_map(wala_csv) }
|
|
41
|
+
|
|
42
|
+
it "includes only rows carrying a CSL-Code, keyed by 13-digit GTIN" do
|
|
43
|
+
expect(map.keys).to contain_exactly(
|
|
44
|
+
"7640187361278", "7640187360974", "7640187360011"
|
|
45
|
+
)
|
|
46
|
+
expect(map).not_to have_key("7680687430012") # no CSL-Code => not SL
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
it "takes the inline package price verbatim (multiplier already applied)" do
|
|
50
|
+
expect(map["7640187361278"][:price]).to eq "18.35"
|
|
51
|
+
expect(map["7640187360974"][:price]).to eq "39.00" # 10 x 1 ml pack
|
|
52
|
+
expect(map["7640187360011"][:price]).to eq "24.80"
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
it "carries the Abgabekategorie and the group code" do
|
|
56
|
+
expect(map["7640187360974"]).to include(sl: true, csl: "2070588", abgabe: "B")
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
it "returns {} for blank input" do
|
|
60
|
+
expect(described_class.build_wala_map("")).to eq({})
|
|
61
|
+
expect(described_class.build_wala_map(nil)).to eq({})
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
27
65
|
describe ".parse_prices" do
|
|
28
66
|
it "maps group code to price" do
|
|
29
67
|
prices = described_class.parse_prices(prices_csv)
|
|
@@ -85,10 +123,12 @@ RSpec.describe Oddb2xml::WeledaSL do
|
|
|
85
123
|
describe ".load with bundled fallback" do
|
|
86
124
|
it "loads the bundled data files when the download yields nothing" do
|
|
87
125
|
flexmock(Oddb2xml::WeledaDownloader).new_instances.should_receive(:download).and_return(nil)
|
|
126
|
+
flexmock(Oddb2xml::WalaDownloader).new_instances.should_receive(:download).and_return(nil)
|
|
88
127
|
flexmock(Oddb2xml::BagSlGroupPricesDownloader).new_instances.should_receive(:download).and_return(nil)
|
|
89
128
|
map = described_class.load({})
|
|
90
129
|
expect(map.size).to be > 400
|
|
91
|
-
expect(map["7611916162404"]).to include(sl: true, price: "26.95")
|
|
130
|
+
expect(map["7611916162404"]).to include(sl: true, price: "26.95") # Weleda
|
|
131
|
+
expect(map["7640187360974"]).to include(sl: true, price: "39.00") # WALA
|
|
92
132
|
end
|
|
93
133
|
end
|
|
94
134
|
end
|
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: 3.0.
|
|
4
|
+
version: 3.0.22
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yasuhiro Asaka, Zeno R.R. Davatz, Niklaus Giger
|
|
@@ -467,6 +467,7 @@ files:
|
|
|
467
467
|
- data/gal_groups.yaml
|
|
468
468
|
- data/gtin2ignore.yaml
|
|
469
469
|
- data/product_overrides.yaml
|
|
470
|
+
- data/wala_arzneimittel.csv
|
|
470
471
|
- data/weleda_arzneimittel.csv
|
|
471
472
|
- dokumentation_calc.textile
|
|
472
473
|
- flake.lock
|
|
@@ -556,6 +557,7 @@ files:
|
|
|
556
557
|
- spec/data/varia_De_spa.htm
|
|
557
558
|
- spec/data/vcr/transfer.dat
|
|
558
559
|
- spec/data/vcr/transfer.zip
|
|
560
|
+
- spec/data/wala_arzneimittel.csv
|
|
559
561
|
- spec/data/weleda_arzneimittel.csv
|
|
560
562
|
- spec/data/wsdl_nonpharma.xml
|
|
561
563
|
- spec/data/wsdl_pharma.xml
|
|
@@ -659,6 +661,7 @@ test_files:
|
|
|
659
661
|
- spec/data/varia_De_spa.htm
|
|
660
662
|
- spec/data/vcr/transfer.dat
|
|
661
663
|
- spec/data/vcr/transfer.zip
|
|
664
|
+
- spec/data/wala_arzneimittel.csv
|
|
662
665
|
- spec/data/weleda_arzneimittel.csv
|
|
663
666
|
- spec/data/wsdl_nonpharma.xml
|
|
664
667
|
- spec/data/wsdl_pharma.xml
|