added vat-id, duns and hrb

master
Benjamin Völkl 2024-03-05 21:14:08 +01:00
parent 7cd9a54e88
commit daa7a129a3
3 changed files with 38 additions and 3 deletions

View File

@ -7,5 +7,5 @@
"name": "Areya Webservices",
"link": "https://www.areya.de/"
},
"lumino-version": {"min": "3.6", "max": "3.7"}
"lumino-version": {"min": "3.6", "max": "3.8"}
}

View File

@ -14,7 +14,6 @@
<br>
<br>
<br>
<br>


<b>{{$_legal_name}}</b>
@ -35,8 +34,20 @@

<br>
<br>
USt-IdNr: {{$_vat_id}}
<br>
HRB: {{$_hrb}}

@if($_hrb)
<br>
D-U-N-S® Nummer: {{$_duns}}
@endif
<br>
<br>
<br>
<br>
<br>


<h2 class="h5">EU-Streitschlichtung</h2>
Gemäß Verordnung über Online-Streitbeilegung in Verbraucherangelegenheiten (ODR-Verordnung) möchten wir Sie über die Online-Streitbeilegungsplattform (OS-Plattform) informieren.

View File

@ -49,6 +49,30 @@
"placeholder": "Max Mustermann",
"type": "string",
"required": true
},
{
"id": "vat_id",
"name": "USt-IdNr.",
"value": "DE123456789",
"placeholder": "DE123456789",
"type": "string",
"required": false
},
{
"id": "hrb",
"name": "Handelsregister & Nummer",
"value": "Amtsgericht Musterstadt HRB Nr: 1234",
"placeholder": "Amtsgericht Musterstadt HRB Nr: 12345",
"type": "string",
"required": false
},
{
"id": "duns",
"name": "UPIK® - Unique Partner Identification Key",
"value": "1234567890",
"placeholder": "1234567890",
"type": "string",
"required": false
}
]
},