{"id":21263,"date":"2026-05-20T19:49:58","date_gmt":"2026-05-20T17:49:58","guid":{"rendered":"https:\/\/www.drugshortage.ch\/?page_id=21263"},"modified":"2026-05-20T19:50:02","modified_gmt":"2026-05-20T17:50:02","slug":"firmenuebersicht-2","status":"publish","type":"page","link":"https:\/\/www.drugshortage.ch\/index.php\/firmenuebersicht-2\/","title":{"rendered":"Firmen\u00fcbersicht"},"content":{"rendered":"\n\n<style>\n  #bf-outer { width:100%; box-sizing:border-box; font-family:'Segoe UI',Arial,sans-serif; font-size:13px; color:#2d3748; }\n  .container,.container-fluid,.entry-content,.post-content,.page-content,\n  .site-content,.content-area,#content,#primary,main,article {\n    max-width:100% !important; overflow:visible !important;\n  }\n\n  \/* Ladeanimation *\/\n  #bf-loading { display:flex; align-items:center; gap:12px; padding:30px 20px; color:#718096; font-size:15px; }\n  .bf-spinner { width:24px; height:24px; border:3px solid #e2e8f0; border-top-color:#e53e3e; border-radius:50%; animation:bfspin .8s linear infinite; flex-shrink:0; }\n  @keyframes bfspin { to { transform:rotate(360deg); } }\n\n  \/* Titel-Box *\/\n  .bf-title-box { background:#fff; border:1px solid #e2e8f0; border-radius:10px; padding:20px 24px; margin-bottom:20px; box-shadow:0 1px 4px rgba(0,0,0,.06); }\n  .bf-title { font-size:17px; font-weight:700; color:#2d3748; line-height:1.4; margin-bottom:6px; }\n  .bf-anzahl { font-size:12px; color:#718096; margin-top:6px; }\n\n  \/* Suche *\/\n  #bf-suche { width:100%; padding:10px 14px; margin-bottom:12px; border:1px solid #e2e8f0; border-radius:8px; font-size:13px; box-sizing:border-box; outline:none; transition:border-color .2s; }\n  #bf-suche:focus { border-color:#e53e3e; box-shadow:0 0 0 3px rgba(229,62,62,.1); }\n\n  \/* Tabelle *\/\n  .bf-table-wrap { overflow-x:auto; width:100%; border-radius:8px; box-shadow:0 1px 4px rgba(0,0,0,.07); margin-bottom:16px; }\n  .bf-table { width:100%; border-collapse:collapse; background:#fff; }\n  .bf-table thead tr { background:#2d3748; }\n  .bf-table th { padding:9px 12px; text-align:left; font-size:13px; font-weight:600; color:#fff; white-space:nowrap; cursor:pointer; user-select:none; }\n  .bf-table th:hover { background:#4a5568; }\n  .bf-table td { padding:7px 12px; border-bottom:1px solid #edf2f7; font-size:13px; vertical-align:middle; }\n  .bf-table tbody tr:last-child td { border-bottom:none; }\n  .bf-table tbody tr:hover td { background:#f7fafc !important; }\n\n  \/* Hinweis-Box *\/\n  .bf-hinweis { background:#ebf8ff; border:1px solid #bee3f8; border-radius:8px; padding:12px 16px; font-size:13px; color:#2c5282; line-height:1.6; }\n\n  \/* Footer *\/\n  .bf-footer { font-size:11px; color:#a0aec0; margin-top:10px; text-align:right; }\n<\/style>\n\n<div id=\"bf-outer\">\n  <div id=\"bf-loading\"><div class=\"bf-spinner\"><\/div> Daten werden geladen\u2026<\/div>\n  <div id=\"bf-inhalt\" style=\"display:none;\">\n\n    <div class=\"bf-title-box\">\n      <div class=\"bf-title\">\u00dcbersicht \u00fcber die Firmen, die ihre Meldungen selber pflegen oder ihre Kunden regelm\u00e4ssig selber informieren<\/div>\n      <div class=\"bf-anzahl\" id=\"bf-anzahl\">\u2013 Firmen<\/div>\n    <\/div>\n\n    <input type=\"text\" id=\"bf-suche\" placeholder=\"&#x1f50d;  Suche nach Firma oder Art der Meldung\u2026\" \/>\n    <div class=\"bf-table-wrap\">\n      <table class=\"bf-table\" style=\"min-width:500px;\">\n        <thead><tr>\n          <th onclick=\"bfSortiere('firma')\">Firma &#x2195;<\/th>\n          <th onclick=\"bfSortiere('bewertung')\">Art der Meldungen &#x2195;<\/th>\n        <\/tr><\/thead>\n        <tbody id=\"bf-tbody\"><\/tbody>\n      <\/table>\n    <\/div>\n\n    <div class=\"bf-hinweis\">\n      Meldungen von allen anderen Firmen sind Meldungen aus dem Netzwerk (Spit\u00e4ler, \u00f6ffentliche Apotheken, Arztpraxen, Grossisten)\n      oder von Grossistenlisten. Die Meldungen aus Grossistenlisten werden w\u00f6chentlich \u00fcberpr\u00fcft und aktualisiert.\n    <\/div>\n\n    <div class=\"bf-footer\">drugshortage.ch<\/div>\n  <\/div>\n<\/div>\n\n<script>\nconst BF_BASE = \"https:\/\/www.drugshortage.ch\";\nconst BF_API  = BF_BASE + \"\/api_bewertete_firmen.php\";\n\nlet bfAlleDaten = [];\nlet bfSortiereNach = \"bewertung\";\nlet bfAufsteigend = true;\n\nasync function ladeDaten() {\n  try {\n    const res = await fetch(BF_API);\n    const d = await res.json();\n\n    if (d.fehler) {\n      document.getElementById(\"bf-loading\").innerHTML =\n        \"<div style='color:#c53030;padding:20px;background:#fff5f5;border-radius:8px;width:100%;'>\" +\n        \"<strong>&#x26a0;&#xfe0f; Fehler:<\/strong> \" + d.fehler + \"<\/div>\";\n      return;\n    }\n\n    bfAlleDaten = d.firmen || [];\n    document.getElementById(\"bf-anzahl\").textContent = bfAlleDaten.length + \" Firmen\";\n    bfZeigeTabelle(bfAlleDaten);\n\n    document.getElementById(\"bf-loading\").style.display = \"none\";\n    document.getElementById(\"bf-inhalt\").style.display  = \"block\";\n\n  } catch(err) {\n    document.getElementById(\"bf-loading\").innerHTML =\n      \"<div style='color:#c53030;padding:20px;'>&#x274c; Fehler beim Laden: \" + err + \"<\/div>\";\n  }\n}\n\nfunction bfZeigeTabelle(daten) {\n  const tbody = document.getElementById(\"bf-tbody\");\n  tbody.innerHTML = \"\";\n  if (!daten.length) {\n    tbody.innerHTML = \"<tr><td colspan='2' style='padding:16px;color:#718096;text-align:center;font-style:italic;'>Keine Eintr\u00e4ge gefunden.<\/td><\/tr>\";\n    return;\n  }\n  daten.forEach(function(e) {\n    const tr = document.createElement(\"tr\");\n    tr.innerHTML =\n      \"<td style='font-weight:500;'>\" + (e.firma     || \"\u2013\") + \"<\/td>\" +\n      \"<td style='color:#4a5568;'>\"   + (e.bewertung || \"\u2013\") + \"<\/td>\";\n    tbody.appendChild(tr);\n  });\n}\n\nfunction bfSortiere(feld) {\n  bfAufsteigend = (bfSortiereNach === feld) ? !bfAufsteigend : true;\n  bfSortiereNach = feld;\n  const q = document.getElementById(\"bf-suche\").value.toLowerCase();\n  const liste = bfFiltern(q).sort(function(a, b) {\n    const va = (a[feld] || \"\").toLowerCase();\n    const vb = (b[feld] || \"\").toLowerCase();\n    return bfAufsteigend ? va.localeCompare(vb) : vb.localeCompare(va);\n  });\n  bfZeigeTabelle(liste);\n}\n\nfunction bfFiltern(q) {\n  if (!q) return bfAlleDaten.slice();\n  return bfAlleDaten.filter(function(e) {\n    return (e.firma     || \"\").toLowerCase().includes(q) ||\n           (e.bewertung || \"\").toLowerCase().includes(q);\n  });\n}\n\ndocument.addEventListener(\"DOMContentLoaded\", function() {\n  document.getElementById(\"bf-suche\").addEventListener(\"input\", function() {\n    bfZeigeTabelle(bfFiltern(this.value.toLowerCase()));\n  });\n  ladeDaten();\n});\n<\/script>\n\n","protected":false},"excerpt":{"rendered":"<p>Daten werden geladen\u2026 \u00dcbersicht \u00fcber die Firmen, die ihre Meldungen selber pflegen oder ihre Kunden regelm\u00e4ssig selber informieren \u2013 Firmen Firma &#x2195; Art der Meldungen &#x2195; Meldungen von allen anderen Firmen sind Meldungen aus dem Netzwerk (Spit\u00e4ler, \u00f6ffentliche Apotheken, Arztpraxen, Grossisten) oder von Grossistenlisten. Die Meldungen aus Grossistenlisten werden w\u00f6chentlich \u00fcberpr\u00fcft und aktualisiert. drugshortage.ch&hellip; <a class=\"read-more\" href=\"https:\/\/www.drugshortage.ch\/index.php\/firmenuebersicht-2\/\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-fullwidth.php","meta":{"footnotes":""},"class_list":["post-21263","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.drugshortage.ch\/index.php\/wp-json\/wp\/v2\/pages\/21263","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.drugshortage.ch\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.drugshortage.ch\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.drugshortage.ch\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.drugshortage.ch\/index.php\/wp-json\/wp\/v2\/comments?post=21263"}],"version-history":[{"count":1,"href":"https:\/\/www.drugshortage.ch\/index.php\/wp-json\/wp\/v2\/pages\/21263\/revisions"}],"predecessor-version":[{"id":21264,"href":"https:\/\/www.drugshortage.ch\/index.php\/wp-json\/wp\/v2\/pages\/21263\/revisions\/21264"}],"wp:attachment":[{"href":"https:\/\/www.drugshortage.ch\/index.php\/wp-json\/wp\/v2\/media?parent=21263"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}