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

Fix maximal errors #13

Merged
merged 10 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 27 additions & 31 deletions src/model/shared/behoerde.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,11 @@ use tsify::Tsify;

use crate::model::codes::{
CodeAgsType, CodeBehoerdenkennungType, CodeBezirkType, CodeBundeslandType, CodeKreisType,
CodeLaenderkennzeichenType, CodePraefixType, CodeRegionalschluesselType, CodeStaatType,
CodeLaenderkennzeichenType, CodePraefixType, CodeRegionalschluesselType,
};

use super::{
anschrift::AnschriftType,
kommunikation::KommunikationType,
misc::IdentifikationType,
organisation::{NameOrganisationType, OrganisationseinheitType},
xoev::XWasserXoevCode,
anschrift::AnschriftType, kommunikation::KommunikationType, misc::IdentifikationType, organisation::{NameOrganisationType, OrganisationseinheitType}, staat::StaatType, xoev::XWasserXoevCode
};

/// Klasse für den Transport von Informationen zu einer Zuständigen Behörde [Ergänzende
Expand Down Expand Up @@ -117,30 +113,30 @@ pub struct BehoerdeType {
pub zusatz: Option<String>,
#[xml(ns = b"xwas", name = b"behoerdenkennung", ty = "child")]
pub behoerdenkennung: Option<BehoerdenkennungType>,
// #[xml(ns = b"xwas", name = b"kommunikation", ty = "child")]
// #[serde(default)]
// pub kommunikation: Vec<KommunikationType>,
// #[xml(ns = b"xwas", name = b"behoerdenidentifikation", ty = "child")]
// pub behoerdenidentifikation: Option<IdentifikationType>,
// #[xml(ns = b"xwas", name = b"behoerdenname", ty = "child")]
// #[serde(default)]
// pub behoerdenname: Vec<NameOrganisationType>,
// #[xml(ns = b"xwas", name = b"nachgeordneteBehoerde", ty = "child")]
// #[serde(default)]
// pub nachgeordnete_behoerde: Vec<BehoerdeType>,
// #[xml(
// ns = b"xwas",
// name = b"verwaltungspolitischeZustaendigkeit",
// ty = "child"
// )]
// #[serde(default)]
// pub verwaltungspolitische_zustaendigkeit: Vec<VerwaltungspolitischeKodierungType>,
// #[xml(ns = b"xwas", name = b"anschrift", ty = "child")]
// #[serde(default)]
// pub anschrift: Vec<AnschriftType>,
// #[xml(ns = b"xwas", name = b"organisationsstruktur", ty = "child")]
// #[serde(default)]
// pub organisationsstruktur: Vec<OrganisationseinheitType>,
#[xml(ns = b"xwas", name = b"kommunikation", ty = "child")]
#[serde(default)]
pub kommunikation: Vec<KommunikationType>,
#[xml(ns = b"xwas", name = b"behoerdenidentifikation", ty = "child")]
pub behoerdenidentifikation: Option<IdentifikationType>,
#[xml(ns = b"xwas", name = b"behoerdenname", ty = "child")]
#[serde(default)]
pub behoerdenname: Vec<NameOrganisationType>,
#[xml(ns = b"xwas", name = b"nachgeordneteBehoerde", ty = "child")]
#[serde(default)]
pub nachgeordnete_behoerde: Vec<BehoerdeType>,
#[xml(
ns = b"xwas",
name = b"verwaltungspolitischeZustaendigkeit",
ty = "child"
)]
#[serde(default)]
pub verwaltungspolitische_zustaendigkeit: Vec<VerwaltungspolitischeKodierungType>,
#[xml(ns = b"xwas", name = b"anschrift", ty = "child")]
#[serde(default)]
pub anschrift: Vec<AnschriftType>,
#[xml(ns = b"xwas", name = b"organisationsstruktur", ty = "child")]
#[serde(default)]
pub organisationsstruktur: Vec<OrganisationseinheitType>,
}

/// Die Komponente "VerwaltungspolitischeKodierung" beinhaltet Information, die eine
Expand All @@ -163,5 +159,5 @@ pub struct VerwaltungspolitischeKodierungType {
#[xml(ns = b"xwas", name = b"regionalschluessel", ty = "child")]
pub regionalschluessel: Option<CodeRegionalschluesselType>,
#[xml(ns = b"xwas", name = b"nation", ty = "child")]
pub nation: Option<CodeStaatType>,
pub nation: Option<StaatType>,
}
4 changes: 4 additions & 0 deletions src/model/shared/misc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ use super::zeitraum::ZeitraumType;
/// Identifikation von Objekten in einem fachlichen Kontext erlauben.
#[derive(Clone, Default, Debug, XmlSerialize, XmlDeserialize, Serialize, Deserialize)]
#[cfg_attr(feature = "wasm", derive(Tsify))]
#[xml(tns(
b"xwas",
b"https://gitlab.opencode.de/akdb/xoev/xwasser/-/raw/main/V0_5_0"
))]
pub struct IdentifikationType {
#[xml(ns = b"xwas", name = b"id", ty = "child")]
pub id: Option<String>,
Expand Down
36 changes: 23 additions & 13 deletions src/model/shared/person.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,7 @@ use crate::model::codes::{
};

use super::{
anschrift::AnschriftType,
kommunikation::KommunikationType,
misc::IdentifikationType,
sprache::SpracheType,
staat::{StaatType, StaatsangehoerigkeitType},
zeitraum::ZeitraumType, // AnschriftType, AuskunftssperreType, DoktorgradType, GeburtType, NameNatuerlichePersonType, VertreterBevollmaechtigterType
anschrift::AnschriftType, behoerde::BehoerdeType, kommunikation::KommunikationType, misc::IdentifikationType, sprache::SpracheType, staat::{StaatType, StaatsangehoerigkeitType}, zeitraum::ZeitraumType // AnschriftType, AuskunftssperreType, DoktorgradType, GeburtType, NameNatuerlichePersonType, VertreterBevollmaechtigterType
};

/// Der AllgemeineName dient der Darstellung von Vor- und Nachnamen und fasst deren
Expand Down Expand Up @@ -189,9 +184,8 @@ pub struct FamilienstandType {
pub grund: Option<CodeFamilienstandBeendigungsgrundType>,
#[xml(ns = b"xwas", name = b"gueltigkeit", ty = "child")]
pub gueltigkeit: Option<ZeitraumType>,
// TODO: check BehoerdeType
// #[xml(ns = b"xwas", name = b"behoerde", ty = "child")]
// pub behoerde: Option<BehoerdeType>,
#[xml(ns = b"xwas", name = b"behoerde", ty = "child")]
pub behoerde: Option<BehoerdeType>,
}

/// Ein Ausweis ist eine öffentliche oder private Urkunde, die die Identität des Inhabers
Expand All @@ -210,8 +204,8 @@ pub struct AusweisdokumentType {
#[xml(ns = b"xwas", name = b"ausweisID", ty = "child")]
pub ausweis_id: Option<IdentifikationType>,
// TODO: check BehoerdeType
// #[xml(ns = b"xwas", name = b"ausstellendeBehoerde", ty = "child")]
// pub ausstellende_behoerde: Option<BehoerdeType>,
#[xml(ns = b"xwas", name = b"ausstellendeBehoerde", ty = "child")]
pub ausstellende_behoerde: Option<BehoerdeType>,
#[xml(ns = b"xwas", name = b"ausstellenderStaat", ty = "child")]
pub ausstellender_staat: Option<StaatType>,
}
Expand Down Expand Up @@ -262,6 +256,20 @@ pub struct JuristischePersonType {
pub id: String,
}

/// Die Komponente "Geschlecht" dient der Repräsentation des biologischen Geschlechts.
#[derive(Clone, Default, Debug, XmlSerialize, XmlDeserialize, Serialize, Deserialize)]
#[cfg_attr(feature = "wasm", derive(Tsify))]
#[xml(tns(
b"xwas",
b"https://gitlab.opencode.de/akdb/xoev/xwasser/-/raw/main/V0_5_0"
))]
pub struct GeschlechtType {
#[xml(ns = b"xwas", name = b"geschlecht", ty = "child")]
pub geschlecht: CodeGeschlechtType,
#[xml(ns = b"xwas", name = b"gueltigkeit", ty = "child")]
pub gueltigkeit: Option<ZeitraumType>
}

/// Eine natürliche Person ist der Mensch in seiner Rolle als Rechtssubjekt, d. h. als
/// Träger von Rechten und Pflichten. Mit der Vollendung seiner Geburt wird ein Mensch
/// rechtsfähig und damit zu einer natürlichen Person (§ 1 BGB). Der Mensch verliert
Expand All @@ -283,15 +291,15 @@ pub struct NatuerlichePersonType {
#[xml(ns = b"xwas", name = b"geburt", ty = "child")]
pub geburt: Option<GeburtType>,
#[xml(ns = b"xwas", name = b"doktorgrad", ty = "child")]
pub doktorgrad: Option<DoktorgradType>,
pub doktorgrad: Option<String>,
#[xml(ns = b"xwas", name = b"staatsangehoerigkeit", ty = "child")]
pub staatsangehoerigkeit: Vec<StaatsangehoerigkeitType>,
#[xml(ns = b"xwas", name = b"ausweisdokument", ty = "child")]
pub ausweisdokument: Vec<AusweisdokumentType>,
#[xml(ns = b"xwas", name = b"anschrift", ty = "child")]
pub anschrift: Vec<AnschriftType>,
#[xml(ns = b"xwas", name = b"geschlecht", ty = "child")]
pub geschlecht: Vec<CodeGeschlechtType>,
pub geschlecht: Vec<GeschlechtType>,
#[xml(ns = b"xwas", name = b"identifikationsnummer", ty = "child")]
pub identifikationsnummer: Vec<IdentifikationType>,
#[xml(ns = b"xwas", name = b"kommunikation", ty = "child")]
Expand All @@ -302,6 +310,8 @@ pub struct NatuerlichePersonType {
pub fremdsprache: Vec<SpracheType>,
#[xml(ns = b"xwas", name = b"vertreterBevollmaechtigter", ty = "child")]
pub vertreter_bevollmaechtigter: Vec<VertreterBevollmaechtigterType>,
#[xml(name = b"id", ty = "attr")]
pub id: Option<String>,
}

// TODO: implement Box<T>, Arc<T>, Rc<T> for raxb
Expand Down
8 changes: 4 additions & 4 deletions src/model/shared/unterssuchungsstelle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,14 +162,14 @@ pub struct BeauftragteUntersuchungsstelleType {
pub akkreditierungsnummer: Option<String>,
#[xml(
ns = b"xwas",
name = b"kommentarBeauftragteUntersuchungsstelle",
name = b"kommentarZugelasseneUntersuchungsstelle",
ty = "child"
)]
pub kommentar_beauftragte_untersuchungsstelle: Option<String>,
pub kommentar_zugelassene_untersuchungsstelle: Option<String>,
#[xml(
ns = b"xwas",
name = b"kommentarZugelasseneUntersuchungsstelle",
name = b"kommentarBeauftragteUntersuchungsstelle",
ty = "child"
)]
pub kommentar_zugelassene_untersuchungsstelle: Option<String>,
pub kommentar_beauftragte_untersuchungsstelle: Option<String>,
}
Loading
Loading