Exported xml file structure

List of data that the program can export:

The data is placed in the employee editing window.

 

Place in the program from where you can export data:

"Basic data" -> "[005] Employees", icon.

Import:
 

Date and time format: "Year-month-day hour:minute:second", date separator: "-" (hyphen), time separator: ":" (colon).
Not described value: string type.

 

<?xml version="1.0"?>

<root rowCount="4">

<!-- List of employees
IMPORT: "root" section required, "rowCount" value - IMPORT: internal identifier (value ignored) -->

 <pracownik>

<!-- Employee details section -->

  <id_k>111</id_k>

<!-- Employer identification number
IMPORT: internal identifier (value ignored) -->

  <imie>Jan</imie>

<!-- First name -->

  <nazwisko>Kowalski</nazwisko>

<!-- Last name -->

  <numer_karty>32354322343425PL</numer_karty>

<!-- Card no
Digital driver card number -->

  <firma>Moja firma</firma>

<!-- Company -->
The value represented in the database. Company name to which the employee was assigned.
IMPORT: No section/value or company not found in the database TachoScan - the program will assign an active company -->

  <status>aktywny</status>

<!-- Employee status
Dictionary value. Default values: "active", "inactive"
IMPORT: Value not imported - program will assign "active" -->

  <data_ur>1983-03-11</data_ur>

<!-- Birth date
IMPORT: type: date -->

  <miejsce_ur>Legnica</miejsce_ur>

<!-- Place of birth
Value in database.
IMPORT: No section / value or value not found in database - value will not be assigned. -->

  <nazwa_stanowiska>kierowca</nazwa_stanowiska>

<!-- Position
Dictionary value. Default values: "assistant", "Driver", "supervisor", "accountant", "warehouse attendant", "mechanic", "clerk", "salesman"
IMPORT: No section/value or value not found in the dictionary - value will not be assigned. -->

  <domyslny_sam>WJ6740C</domyslny_sam>

<!-- Default vehicle
Value in database.
IMPORT: No section / value or vehicle not found in database - value will not be assigned. -->

  <kraj>POL</kraj>

<!-- Card issuing member state
IMPORT: maximum 3 characters -->

  <zatrud_od>2017-01-01</zatrud_od>

<!-- Started to work on

IMPORT: type: date -->

  <nr_sluzbowy>Nrsl34352</nr_sluzbowy>

<!-- Official no. -->

  <samozatrud>1</samozatrud>

<!-- Option: self-employment / civil-law agreement (applies to infringement analysis only)
Acceptable values: "0" - Option unchecked, "1" - Option checked
IMPORT: No section/value or invalid value - the program will assign "0" -->

  <pin_mobile>2222</pin_mobile>

<!-- 4Trans Mobile PIN
IMPORT: type: integer 4 characters ->

  <zatrudnienia>

<!-- List: of "employments" -->

    <zatrudnienie>

<!-- Employment data section - employment editing window -->

     <data_od>01.01.2017</data_od>

<!-- Date from
IMPORT: type: date -->

     <data_do>19.04.2017</data_do>

<!-- Date to
IMPORT: type: date -->

    </zatrudnienie>

  </zatrudnienia>

  <adresy>

<!-- Address List -->

    <adres>

<!-- Address data section - "Address" tab -->

      <ulica>Rogata</ulica>

<!-- Street -->

      <nr_domu>34</nr_domu>

<!-- House no. -->

      <nr_m>234</nr_m>

<!-- Apartment no. -->

      <kod>43-300</kod>

<!-- Postcode
IMPORT: If Place and Postcode are not found in the dictionary - the program will insert new values into the dictionary -->

      <miasto>Bielsko-Biała</miasto>

<!-- Place -->

      <panstwo>Polska</panstwo>

<!-- IMPORT: Value not imported -->

      <czy_domyslny>1</czy_domyslny>

<!-- option: default address
Acceptable values: "0" - Option unchecked, "1" - Option checked
IMPORT: No section/value or invalid value - the program will assign "0" - only one address may be the default -->

    </adres>

  </adresy>

 </pracownik>

</root>