Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MIG.json + AHB.json =>MAUS.json #2

Open
2 tasks
hf-kklein opened this issue Nov 10, 2021 · 1 comment
Open
2 tasks

MIG.json + AHB.json =>MAUS.json #2

hf-kklein opened this issue Nov 10, 2021 · 1 comment

Comments

@hf-kklein
Copy link
Contributor

hf-kklein commented Nov 10, 2021

  • Transaktionsgrund im MIG + Transaktionsgrund im AHB ==> JsonPath für EdifactSeed
  • Mehrere mögliche Wert im AHB ==> Wertevorrat pro Datelement/pro Jsonpath + angehägnte Bedingungen

grafik

{
    "$['Nachricht'][0]['Dokument'][0]['Vorgang'][0]['Transaktionsgrund']": {
        "ahb_expression": "Muss[2061]",
        "dataelements": {
            "9015": {
                "mig_name": "Statuskategorie",
                "possible_values": {
                    "7": {
                        "meaning": "Transaktionsgrund",
                        "ahb_expression": "X"
                    }
                }
            }
            "9013": {
                "mig_name": "Statusanlass",
                "possible_values ": {
                    " E01 ": {
                        " meaning ": " Einzug / Auszug(Umzug)",
                        " ahb_expression ": "X"
                    },
                    "E02 ": {
                        " meaning ": " Einzug / Neuanlage ",
                        " ahb_expression ": "X",
                    },
                   ...E03, ZJ4...
                }
            }
        }
    }
}
@hf-aschloegl
Copy link
Contributor

Die festen Sachen (hier die 7/Statuskategorie) sind im Transformer/EDILibraryHost hardgecoded.
Die auszuwählenden (hier E01.../ Statusanlass) sind irgendwo im BOneyComb, da sie sonst auch nicht im Frontend angezeigt werden würden, d.h. sie sind ein Value eines BOneyComb/EdifactSeed Pfades.
Daher können wir die MAUS vereinfachen:

{
  "$['Nachricht'][0]['Dokument'][0]['Vorgang'][0]['Transaktionsgrund']": {
    "ahb_expression": "Muss[2061]",
    "possible_values ": {
      "E01 ": {
        " meaning ": " Einzug / Auszug(Umzug)",
        " ahb_expression ": "X"
      },
      "E02 ": {
        " meaning ": " Einzug / Neuanlage ",
        " ahb_expression ": "X"
      }
    }
  }
}

Die Magie der Maus wäre rauszufinden welches Datenelement zu welchem Pfad gehört.

Wenn man das Codenummer <-> Bedeutung woanders mappt, noch einfacher:

{
  "$['Nachricht'][0]['Dokument'][0]['Vorgang'][0]['Transaktionsgrund']": {
    "ahb_expression": "Muss[2061]",
    "possible_values ": {
      "E01 ": "X",
      "E02 ": "X"
    }
  }
}

hf-krechan added a commit that referenced this issue Dec 14, 2021
hf-krechan added a commit that referenced this issue Dec 14, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants