Skip to content
Snippets Groups Projects
Commit 6b453ed2 authored by Benjamin Ulrich's avatar Benjamin Ulrich :speech_balloon: Committed by Johannes Goderbauer
Browse files

[Projekt: Entwicklung - Neon][TicketNr.: 1051804][Administration der Exportvorlagen]

Dependencys, views, translations, etc
parent 31da4abd
No related branches found
No related tags found
No related merge requests found
Showing
with 1091 additions and 93 deletions
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="b.ulrich" id="d1b03d92-482f-4655-a380-6d2f83da3873">
<createTable tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" type="CHAR(36)">
<constraints primaryKey="true" primaryKeyName="PK_DOCUMENTTEMPLATEPLACEOFUSEID"/>
</column>
<column name="DOCUMENTTEMPLATE_ID" type="VARCHAR(36)"/>
<column name="PLACEOFUSE" type="VARCHAR(36)"/>
</createTable>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="b.ulrich" id="d1b03d92-482f-4655-a380-6d2f83da3873">
<createTable tableName="EXPORTTEMPLATE">
<column name="EXPORTTEMPLATEID" type="CHAR(36)">
<constraints primaryKey="true" primaryKeyName="PK_EXPORTTEMPLATEID"/>
</column>
<column name="TITLE" type="VARCHAR(100)"/>
<column name="SEPARATOR" type="VARCHAR(36)"/>
<column name="ISOLANGUAGE" type="CHAR(3)"/>
<column name="DESCRIPTION" type="VARCHAR(1337)"/>
<column name="DATE_EDIT" type="TIMESTAMP(9)"/>
<column name="DATE_NEW" type="TIMESTAMP(9)"/>
<column name="USER_EDIT" type="VARCHAR(50)"/>
<column name="USER_NEW" type="VARCHAR(50)"/>
</createTable>
<createTable tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" type="CHAR(36)">
<constraints primaryKey="true" primaryKeyName="PK_EXPORTTEMPLATEFIELDID"/>
</column>
<column name="EXPORTTEMPLATE_ID" type="VARCHAR(36)"/>
<column name="FIELD" type="VARCHAR(36)"/>
<column name="SORTING" type="SMALLINT"/>
</createTable>
<createIndex indexName="idx_exprttmpfld_tmpltid" tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATE_ID"/>
</createIndex>
<createTable tableName="EXPORTTEMPLATEPLACEOFUSE">
<column name="EXPORTTEMPLATEPLACEOFUSEID" type="CHAR(36)">
<constraints primaryKey="true" primaryKeyName="PK_EXPORTTEMPLATEPLACEOFUSEID"/>
</column>
<column name="EXPORTTEMPLATE_ID" type="VARCHAR(36)"/>
<column name="PLACEOFUSE" type="VARCHAR(36)"/>
</createTable>
<createIndex indexName="idx_exprttmppou_tmpltid" tableName="EXPORTTEMPLATEPLACEOFUSE">
<column name="EXPORTTEMPLATE_ID"/>
</createIndex>
<createTable tableName="EXPORTTEMPLATESELECTION">
<column name="EXPORTTEMPLATESELECTIONID" type="CHAR(36)">
<constraints primaryKey="true" primaryKeyName="PK_EXPORTTEMPLATESELECTIONID"/>
</column>
<column name="EXPORTTEMPLATE_ID" type="VARCHAR(36)"/>
<column name="FILENAME" type="VARCHAR(33)"/>
</createTable>
<createIndex indexName="idx_exprttmpselection_tmpltid" tableName="EXPORTTEMPLATESELECTION">
<column name="EXPORTTEMPLATE_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<include file="ExportTemplate/create_ExportTemplateTables.xml" relativeToChangelogFile="true"/>
<include file="PermissionCalendar/changelog.xml" relativeToChangelogFile="true"/>
<include file="DocumentTemplate/create_DocumentTemplatePlaceOfUse.xml" relativeToChangelogFile="true"/>
</databaseChangeLog>
......@@ -46,4 +46,8 @@
<include file="generatedData/tasklink.xml" relativeToChangelogFile="true"/>
<include file="generatedData/ticket.xml" relativeToChangelogFile="true"/>
<include file="generatedData/duplicates/duplicatescanner.xml" relativeToChangelogFile="true"/>
<include file="generatedData/exporttemplate.xml" relativeToChangelogFile="true"/>
<include file="generatedData/exporttemplatefield.xml" relativeToChangelogFile="true"/>
<include file="generatedData/exporttemplateplaceofuse.xml" relativeToChangelogFile="true"/>
<include file="generatedData/documenttemplateplaceofuse.xml" relativeToChangelogFile="true"/>
</databaseChangeLog>
\ No newline at end of file
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="autogenerated" id="62ad16a9-7312-4dda-9e4b-460673b9af82">
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="b3af9285-63cc-4bc1-abf6-58091e18d10f"/>
<column name="DOCUMENTTEMPLATE_ID" value="034a68c9-81bb-46f9-b936-3b195a8d54fd"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="0003e431-4355-4de5-aae8-2e08cf0703c9"/>
<column name="DOCUMENTTEMPLATE_ID" value="034a68c9-81bb-46f9-b936-3b195a8d54fd"/>
<column name="PLACEOFUSE" value="Organisation"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="78227d81-7af4-4f6c-95f0-348b87e8862e"/>
<column name="DOCUMENTTEMPLATE_ID" value="12da39a8-6fc9-4220-b09d-179cd611a814"/>
<column name="PLACEOFUSE" value="Organisation"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="b4fafa76-73f2-43ee-8a88-12d30946f1bb"/>
<column name="DOCUMENTTEMPLATE_ID" value="12da39a8-6fc9-4220-b09d-179cd611a814"/>
<column name="PLACEOFUSE" value="Organisation"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="256dad02-7433-45b3-9584-ec335e0bdcab"/>
<column name="DOCUMENTTEMPLATE_ID" value="3acf26f9-4807-4661-8084-c0c21c593c81"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="98022888-3232-4688-a2f5-17efdf440e85"/>
<column name="DOCUMENTTEMPLATE_ID" value="1cabdde7-870e-4094-a0f7-a335ded3536a"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="97233a7f-d454-4cd3-8ead-49e3caa820a0"/>
<column name="DOCUMENTTEMPLATE_ID" value="1cabdde7-870e-4094-a0f7-a335ded3536a"/>
<column name="PLACEOFUSE" value="Organisation"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="0938ed90-7191-48b4-81b9-daf9244bbe71"/>
<column name="DOCUMENTTEMPLATE_ID" value="21a32662-687e-4592-b92e-1e0a93969e1f"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="0c546f3e-11bb-4fbf-b2f0-a06bf36f55fa"/>
<column name="DOCUMENTTEMPLATE_ID" value="21a32662-687e-4592-b92e-1e0a93969e1f"/>
<column name="PLACEOFUSE" value="Organisation"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="32259cb7-f9ec-407b-9f91-807049ab013f"/>
<column name="DOCUMENTTEMPLATE_ID" value="32169990-8d00-41f9-88c5-96e6f0cbbc9a"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="95985522-1197-4ba6-8e48-6f3eab25510a"/>
<column name="DOCUMENTTEMPLATE_ID" value="5e494f97-4d29-4cce-abf7-9eaa2577337f"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="464d1fa7-6a07-4ed0-8d4b-46e394cc4d56"/>
<column name="DOCUMENTTEMPLATE_ID" value="9106d24f-8afc-491d-8309-ea20377466ac"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="9a2f13e5-68d9-4db4-919e-f9ee89c79439"/>
<column name="DOCUMENTTEMPLATE_ID" value="9106d24f-8afc-491d-8309-ea20377466ac"/>
<column name="PLACEOFUSE" value="Organisation"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="1dcf4e02-79ad-463d-8956-a3886eba9546"/>
<column name="DOCUMENTTEMPLATE_ID" value="b935bc35-cb5e-4ccc-aef6-0cc745ca2691"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="f43bc91d-7fc1-4549-8a41-903c62673e43"/>
<column name="DOCUMENTTEMPLATE_ID" value="b935bc35-cb5e-4ccc-aef6-0cc745ca2691"/>
<column name="PLACEOFUSE" value="Organisation"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="ebbec7a2-a396-424a-aab5-1726254fc2e9"/>
<column name="DOCUMENTTEMPLATE_ID" value="e70b9ef1-f0a3-4cd2-b3cd-fa7b4229ee73"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="7fa4140f-7489-416e-83df-459f36628917"/>
<column name="DOCUMENTTEMPLATE_ID" value="e70b9ef1-f0a3-4cd2-b3cd-fa7b4229ee73"/>
<column name="PLACEOFUSE" value="Organisation"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="6329678a-70cf-4216-b529-99c90524fdb2"/>
<column name="DOCUMENTTEMPLATE_ID" value="151fcb6f-683b-4398-9fa0-afc202d688f0"/>
<column name="PLACEOFUSE" value="Organisation"/>
</insert>
<insert tableName="DOCUMENTTEMPLATEPLACEOFUSE">
<column name="DOCUMENTTEMPLATEPLACEOFUSEID" value="ca93ae0d-bd78-44a6-b781-e060da44e17e"/>
<column name="DOCUMENTTEMPLATE_ID" value="151fcb6f-683b-4398-9fa0-afc202d688f0"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
</changeSet>
</databaseChangeLog>
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="autogenerated" id="62ad16a9-7312-4dda-9e4b-460673b9af82">
<insert tableName="EXPORTTEMPLATE">
<column name="EXPORTTEMPLATEID" value="86b48d2c-3850-4778-9240-45cf79396a0a"/>
<column name="DATE_EDIT" valueDate="2020-03-02T10:43:23"/>
<column name="DATE_EDIT" valueDate="2020-03-02T10:43:24"/>
<column name="TITLE" value="Personen mit Anschriften"/>
<column name="SEPARATOR" value="SEMICOLON"/>
<column name="ISOLANGUAGE" value="deu"/>
<column name="DESCRIPTION" value="Name mit Anrede, Titel und vollständiger Addresse"/>
<column name="USER_EDIT" value="Admin"/>
<column name="USER_NEW" value="Admin"/>
</insert>
<insert tableName="EXPORTTEMPLATE">
<column name="EXPORTTEMPLATEID" value="f399dc64-11b8-4490-ad24-53c9c3fc6df3"/>
<column name="DATE_EDIT" valueDate="2020-03-02T10:43:23"/>
<column name="DATE_EDIT" valueDate="2020-03-02T10:43:24"/>
<column name="TITLE" value="Firmen mit Addressen"/>
<column name="SEPARATOR" value="COMMA"/>
<column name="ISOLANGUAGE" value="deu"/>
<column name="DESCRIPTION" value="Firmen und deren Addressen"/>
<column name="USER_EDIT" value="Admin"/>
<column name="USER_NEW" value="Admin"/>
</insert>
<insert tableName="EXPORTTEMPLATE">
<column name="EXPORTTEMPLATEID" value="3acf26f9-4807-4661-8084-c0c21c593c81"/>
<column name="DATE_EDIT" valueDate="2020-03-02T10:43:23"/>
<column name="DATE_EDIT" valueDate="2020-03-02T10:43:24"/>
<column name="TITLE" value="Personen und Kontaktmöglichkeiten"/>
<column name="SEPARATOR" value="TAB"/>
<column name="ISOLANGUAGE" value="deu"/>
<column name="DESCRIPTION" value="Anrede, Vor und Nachname sowie Email und Telefonnummer"/>
<column name="USER_EDIT" value="Admin"/>
<column name="USER_NEW" value="Admin"/>
</insert>
<insert tableName="EXPORTTEMPLATE">
<column name="EXPORTTEMPLATEID" value="84eb1373-3745-4455-a0a7-32cf62c8d4dc"/>
<column name="DATE_EDIT" valueDate="2020-03-02T10:43:23"/>
<column name="DATE_EDIT" valueDate="2020-03-02T10:43:24"/>
<column name="TITLE" value="Personen und Kontaktmöglichkeiten (Englisch)"/>
<column name="SEPARATOR" value="TAB"/>
<column name="ISOLANGUAGE" value="eng"/>
<column name="DESCRIPTION" value="Anrede, Vor und Nachname sowie Email und Telefonnummer"/>
<column name="USER_EDIT" value="Admin"/>
<column name="USER_NEW" value="Admin"/>
</insert>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="autogenerated" id="62ad16a9-7312-4dda-9e4b-460673b9af82">
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="acb36d07-089e-4a25-a0c2-694b06e74ae5"/>
<column name="EXPORTTEMPLATE_ID" value="86b48d2c-3850-4778-9240-45cf79396a0a"/>
<column name="FIELD" value="{@salutation@}"/>
<column name="SORTING" valueNumeric="1"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="e1b5c9c8-846a-4195-af5c-09e923c1c1c6"/>
<column name="EXPORTTEMPLATE_ID" value="86b48d2c-3850-4778-9240-45cf79396a0a"/>
<column name="FIELD" value="{@title@}"/>
<column name="SORTING" valueNumeric="2"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="34c65722-937f-4741-9c08-48a841e19527"/>
<column name="EXPORTTEMPLATE_ID" value="86b48d2c-3850-4778-9240-45cf79396a0a"/>
<column name="FIELD" value="{@firstname@}"/>
<column name="SORTING" valueNumeric="3"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="330bc05f-501e-4774-85bc-046347829dda"/>
<column name="EXPORTTEMPLATE_ID" value="86b48d2c-3850-4778-9240-45cf79396a0a"/>
<column name="FIELD" value="{@lastname@}"/>
<column name="SORTING" valueNumeric="4"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="224cf307-fe26-4a6b-aae8-61190a2bff19"/>
<column name="EXPORTTEMPLATE_ID" value="86b48d2c-3850-4778-9240-45cf79396a0a"/>
<column name="FIELD" value="{@country@}"/>
<column name="SORTING" valueNumeric="5"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="e9f1cd83-5652-4f5b-913b-40dea9eda1c8"/>
<column name="EXPORTTEMPLATE_ID" value="86b48d2c-3850-4778-9240-45cf79396a0a"/>
<column name="FIELD" value="{@region@}"/>
<column name="SORTING" valueNumeric="6"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="779f6222-d1e8-4ec3-953a-31cb27115b9a"/>
<column name="EXPORTTEMPLATE_ID" value="86b48d2c-3850-4778-9240-45cf79396a0a"/>
<column name="FIELD" value="{@zipCode@}"/>
<column name="SORTING" valueNumeric="7"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="bffb3d69-7774-438e-85b2-81fc0629462a"/>
<column name="EXPORTTEMPLATE_ID" value="86b48d2c-3850-4778-9240-45cf79396a0a"/>
<column name="FIELD" value="{@address@}"/>
<column name="SORTING" valueNumeric="8"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="82059884-4b8e-4031-b32a-2b9a03b7109a"/>
<column name="EXPORTTEMPLATE_ID" value="86b48d2c-3850-4778-9240-45cf79396a0a"/>
<column name="FIELD" value="{@region@}"/>
<column name="SORTING" valueNumeric="6"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="bfeb9284-6db4-4d15-a07b-9b3f21fe9c22"/>
<column name="EXPORTTEMPLATE_ID" value="f399dc64-11b8-4490-ad24-53c9c3fc6df3"/>
<column name="FIELD" value="{@country@}"/>
<column name="SORTING" valueNumeric="2"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="c245bf8e-1d99-4d85-834c-64613bad5042"/>
<column name="EXPORTTEMPLATE_ID" value="f399dc64-11b8-4490-ad24-53c9c3fc6df3"/>
<column name="FIELD" value="{@region@}"/>
<column name="SORTING" valueNumeric="3"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="c39bb945-ecd2-4836-9cee-002178ae9709"/>
<column name="EXPORTTEMPLATE_ID" value="f399dc64-11b8-4490-ad24-53c9c3fc6df3"/>
<column name="FIELD" value="{@zipCode@}"/>
<column name="SORTING" valueNumeric="4"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="5ebc3ae4-80dd-497e-a26e-f275769f81e4"/>
<column name="EXPORTTEMPLATE_ID" value="f399dc64-11b8-4490-ad24-53c9c3fc6df3"/>
<column name="FIELD" value="{@address@}"/>
<column name="SORTING" valueNumeric="5"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="e153ea76-5e68-497a-8a3e-9bb40ce734b3"/>
<column name="EXPORTTEMPLATE_ID" value="f399dc64-11b8-4490-ad24-53c9c3fc6df3"/>
<column name="FIELD" value="{@orgname@}"/>
<column name="SORTING" valueNumeric="1"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="e319ac75-3468-4167-8f0d-568a0dfaef7d"/>
<column name="EXPORTTEMPLATE_ID" value="3acf26f9-4807-4661-8084-c0c21c593c81"/>
<column name="FIELD" value="{@firstname@}"/>
<column name="SORTING" valueNumeric="2"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="0804cb9a-0cfb-43d6-bd37-2680e24604b0"/>
<column name="EXPORTTEMPLATE_ID" value="3acf26f9-4807-4661-8084-c0c21c593c81"/>
<column name="FIELD" value="{@lastname@}"/>
<column name="SORTING" valueNumeric="3"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="300aeca0-0de8-4225-99ce-bcbb850016aa"/>
<column name="EXPORTTEMPLATE_ID" value="3acf26f9-4807-4661-8084-c0c21c593c81"/>
<column name="FIELD" value="{@salutation@}"/>
<column name="SORTING" valueNumeric="1"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="334146d9-7950-4c59-9b07-d89eb57a0da2"/>
<column name="EXPORTTEMPLATE_ID" value="3acf26f9-4807-4661-8084-c0c21c593c81"/>
<column name="FIELD" value="{@phone@}"/>
<column name="SORTING" valueNumeric="4"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="8fd83e1e-e2ef-499c-9425-0da511fdb6fb"/>
<column name="EXPORTTEMPLATE_ID" value="3acf26f9-4807-4661-8084-c0c21c593c81"/>
<column name="FIELD" value="{@email@}"/>
<column name="SORTING" valueNumeric="5"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="10194e81-65d8-4a12-acd3-123d6a692fba"/>
<column name="EXPORTTEMPLATE_ID" value="84eb1373-3745-4455-a0a7-32cf62c8d4dc"/>
<column name="FIELD" value="{@firstname@}"/>
<column name="SORTING" valueNumeric="2"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="ba303e1b-40c9-4fef-bbdf-6d16ab0dbeb0"/>
<column name="EXPORTTEMPLATE_ID" value="84eb1373-3745-4455-a0a7-32cf62c8d4dc"/>
<column name="FIELD" value="{@lastname@}"/>
<column name="SORTING" valueNumeric="3"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="a9fae3fa-e2c1-4c34-a264-e74bc93e6ac9"/>
<column name="EXPORTTEMPLATE_ID" value="84eb1373-3745-4455-a0a7-32cf62c8d4dc"/>
<column name="FIELD" value="{@salutation@}"/>
<column name="SORTING" valueNumeric="1"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="cacce4e9-c9ad-4dd3-ac43-79684ef57008"/>
<column name="EXPORTTEMPLATE_ID" value="84eb1373-3745-4455-a0a7-32cf62c8d4dc"/>
<column name="FIELD" value="{@phone@}"/>
<column name="SORTING" valueNumeric="4"/>
</insert>
<insert tableName="EXPORTTEMPLATEFIELD">
<column name="EXPORTTEMPLATEFIELDID" value="d01169d3-aab0-4233-b5ec-02ede86995cf"/>
<column name="EXPORTTEMPLATE_ID" value="84eb1373-3745-4455-a0a7-32cf62c8d4dc"/>
<column name="FIELD" value="{@email@}"/>
<column name="SORTING" valueNumeric="5"/>
</insert>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="autogenerated" id="62ad16a9-7312-4dda-9e4b-460673b9af82">
<insert tableName="EXPORTTEMPLATEPLACEOFUSE">
<column name="EXPORTTEMPLATEPLACEOFUSEID" value="4f036ac7-b1bf-4667-9177-7c0d444b1819"/>
<column name="EXPORTTEMPLATE_ID" value="86b48d2c-3850-4778-9240-45cf79396a0a"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
<insert tableName="EXPORTTEMPLATEPLACEOFUSE">
<column name="EXPORTTEMPLATEPLACEOFUSEID" value="86865c59-aa8b-4511-bf3d-b069395c684d"/>
<column name="EXPORTTEMPLATE_ID" value="f399dc64-11b8-4490-ad24-53c9c3fc6df3"/>
<column name="PLACEOFUSE" value="Organisation"/>
</insert>
<insert tableName="EXPORTTEMPLATEPLACEOFUSE">
<column name="EXPORTTEMPLATEPLACEOFUSEID" value="408eba99-bcc3-4308-9b2c-1a4495e01a0f"/>
<column name="EXPORTTEMPLATE_ID" value="3acf26f9-4807-4661-8084-c0c21c593c81"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
<insert tableName="EXPORTTEMPLATEPLACEOFUSE">
<column name="EXPORTTEMPLATEPLACEOFUSEID" value="135975c6-6c7a-408b-93e3-f04239503ff0"/>
<column name="EXPORTTEMPLATE_ID" value="84eb1373-3745-4455-a0a7-32cf62c8d4dc"/>
<column name="PLACEOFUSE" value="Person"/>
</insert>
</changeSet>
</databaseChangeLog>
......@@ -25,4 +25,5 @@
<include relativeToChangelogFile="true" file="ab_keyword_entry/init_TaskType.xml"/>
<include relativeToChangelogFile="true" file="ab_keyword_entry/init_AttributeType.xml"/>
<include relativeToChangelogFile="true" file="ab_keyword_entry/init_SalesprojectProbability.xml"/>
<include relativeToChangelogFile="true" file="ab_keyword_entry/init_ExportTemplateSeparator.xml"/>
</databaseChangeLog>
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd">
<changeSet author="autogenerated" id="62ad16a9-7312-4dda-9e4b-460673b9af82">
<insert tableName="AB_KEYWORD_ENTRY">
<column name="AB_KEYWORD_ENTRYID" value="170a50ff-06b8-41f6-bd0e-40b62ea82d55"/>
<column name="KEYID" value="SEMICOLON"/>
<column name="TITLE" value="Semicolon"/>
<column name="CONTAINER" value="ExportTemplateSeparator"/>
<column name="SORTING" valueNumeric="0"/>
<column name="ISACTIVE" valueNumeric="1"/>
<column name="ISESSENTIAL" valueNumeric="1"/>
</insert>
<insert tableName="AB_KEYWORD_ENTRY">
<column name="AB_KEYWORD_ENTRYID" value="5f3cbf72-585d-4a80-88d0-b0df03f0f0e3"/>
<column name="KEYID" value="COMMA"/>
<column name="TITLE" value="Comma"/>
<column name="CONTAINER" value="ExportTemplateSeparator"/>
<column name="SORTING" valueNumeric="1"/>
<column name="ISACTIVE" valueNumeric="1"/>
<column name="ISESSENTIAL" valueNumeric="1"/>
</insert>
<insert tableName="AB_KEYWORD_ENTRY">
<column name="AB_KEYWORD_ENTRYID" value="210e6e52-2201-4499-a74d-69ecf2424a0e"/>
<column name="KEYID" value="TAB"/>
<column name="TITLE" value="Tab"/>
<column name="CONTAINER" value="ExportTemplateSeparator"/>
<column name="SORTING" valueNumeric="2"/>
<column name="ISACTIVE" valueNumeric="1"/>
<column name="ISESSENTIAL" valueNumeric="1"/>
</insert>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
This diff is collapsed.
......@@ -75,7 +75,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<title></title>
<description></description>
</entityFieldDb>
......@@ -213,7 +213,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<title></title>
<description></description>
</entityFieldDb>
......@@ -326,7 +326,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<title></title>
<description></description>
</entityFieldDb>
......@@ -464,7 +464,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<title></title>
<description></description>
</entityFieldDb>
......@@ -706,7 +706,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<title></title>
<description></description>
</entityFieldDb>
......@@ -857,7 +857,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<title></title>
<description></description>
</entityFieldDb>
......@@ -995,7 +995,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<title></title>
<description></description>
</entityFieldDb>
......@@ -1133,7 +1133,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<title></title>
<description></description>
</entityFieldDb>
......@@ -1246,7 +1246,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<title></title>
<description></description>
</entityFieldDb>
......@@ -1397,7 +1397,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<title></title>
<description></description>
</entityFieldDb>
......@@ -1534,7 +1534,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
......@@ -1806,7 +1806,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
......@@ -1868,7 +1868,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
......@@ -1930,7 +1930,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
......@@ -2006,7 +2006,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
......@@ -2068,7 +2068,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
......@@ -2186,7 +2186,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
......@@ -2248,7 +2248,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
......@@ -2616,7 +2616,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
......@@ -2720,7 +2720,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
......@@ -2838,7 +2838,7 @@
<scale v="0" />
<notNull v="true" />
<isUnique v="true" />
<index v="false" />
<index v="true" />
<documentation></documentation>
<title></title>
<description></description>
......
......@@ -284,6 +284,10 @@
<kind v="10077" />
<title></title>
</entityNode>
<entityNode>
<name>ExportTemplate</name>
<kind v="10077" />
</entityNode>
<entityNode>
<name>WorkflowDefinition</name>
<kind v="10077" />
......
......@@ -116,6 +116,7 @@
<entityParameter>
<name>InvertBlacklist_param</name>
<expose v="true" />
<documentation>%aditoprj%/entity/Context_entity/entityfields/invertblacklist_param/documentation.adoc</documentation>
<description>PARAMETER</description>
</entityParameter>
<entityProvider>
......@@ -159,6 +160,34 @@
</entityDependency>
</dependencies>
</entityProvider>
<entityProvider>
<name>ContextTemplatePlaceOfUse</name>
<dependencies>
<entityDependency>
<name>423a7a33-02f4-4975-94fd-fa0c21278e3b</name>
<entityName>DocumentTemplatePlaceOfUse_entity</entityName>
<fieldName>ContextDocumentTemplatePlaceOfUse</fieldName>
<isConsumer v="false" />
</entityDependency>
<entityDependency>
<name>26628738-c954-4bf5-8c1f-cbc008d73056</name>
<entityName>ExportTemplatePlaceOfUse_entity</entityName>
<fieldName>ContextExportTemplatePlaceOfUse</fieldName>
<isConsumer v="false" />
</entityDependency>
</dependencies>
<children>
<entityParameter>
<name>InvertBlacklist_param</name>
<valueProcess>%aditoprj%/entity/Context_entity/entityfields/contexttemplateplaceofuse/children/invertblacklist_param/valueProcess.js</valueProcess>
<expose v="true" />
</entityParameter>
<entityParameter>
<name>Blacklist_param</name>
<expose v="true" />
</entityParameter>
</children>
</entityProvider>
</entityFields>
<recordContainers>
<jDitoRecordContainer>
......
import("system.result");
result.object(["Person", "Organisation"]);
\ No newline at end of file
import("system.result");
result.object(["Person", "Organisation"]);
\ No newline at end of file
= InvertBlacklist_param
needs true or false.
If true = Blacklist is inverted (whitelist)
If false = normal Blacklist
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<entity xmlns="http://www.adito.de/2018/ao/Model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" VERSION="1.3.13" xsi:schemaLocation="http://www.adito.de/2018/ao/Model adito://models/xsd/entity/1.3.13">
<name>DocumentTemplatePlaceOfUse_entity</name>
<majorModelMode>DISTRIBUTED</majorModelMode>
<title>Documenttemplate Place Of Use</title>
<titlePlural>Documenttemplate Places Of Useage</titlePlural>
<recordContainer>db</recordContainer>
<entityFields>
<entityProvider>
<name>#PROVIDER</name>
</entityProvider>
<entityField>
<name>DOCUMENTTEMPLATEPLACEOFUSEID</name>
<title>DocumentPlaceOfUseId</title>
<valueProcess>%aditoprj%/entity/DocumentTemplatePlaceOfUse_entity/entityfields/documenttemplateplaceofuseid/valueProcess.js</valueProcess>
</entityField>
<entityField>
<name>DOCUMENTTEMPLATE_ID</name>
<title>Documenttemplate_Id</title>
<valueProcess>%aditoprj%/entity/DocumentTemplatePlaceOfUse_entity/entityfields/documenttemplate_id/valueProcess.js</valueProcess>
</entityField>
<entityField>
<name>PLACEOFUSE</name>
<title>Place Of Use</title>
<consumer>ContextDocumentTemplatePlaceOfUse</consumer>
<mandatory v="true" />
<displayValueProcess>%aditoprj%/entity/DocumentTemplatePlaceOfUse_entity/entityfields/placeofuse/displayValueProcess.js</displayValueProcess>
</entityField>
<entityConsumer>
<name>ContextDocumentTemplatePlaceOfUse</name>
<dependency>
<name>dependency</name>
<entityName>Context_entity</entityName>
<fieldName>ContextTemplatePlaceOfUse</fieldName>
</dependency>
<children>
<entityParameter>
<name>InvertBlacklist_param</name>
<valueProcess>%aditoprj%/entity/DocumentTemplatePlaceOfUse_entity/entityfields/contextdocumenttemplateplaceofuse/children/invertblacklist_param/valueProcess.js</valueProcess>
</entityParameter>
<entityParameter>
<name>Blacklist_param</name>
<valueProcess>%aditoprj%/entity/DocumentTemplatePlaceOfUse_entity/entityfields/contextdocumenttemplateplaceofuse/children/blacklist_param/valueProcess.js</valueProcess>
</entityParameter>
</children>
</entityConsumer>
<entityProvider>
<name>DocumentTemplatePlaceOfUse</name>
<dependencies>
<entityDependency>
<name>bc05b556-ecca-478c-9a92-b77e4d98d6f3</name>
<entityName>DocumentTemplate_entity</entityName>
<fieldName>DocumentTemplatePlaceOfUse</fieldName>
<isConsumer v="false" />
</entityDependency>
</dependencies>
<children>
<entityParameter>
<name>DocumentTemplatePlaceOfUse_param</name>
<valueProcess>%aditoprj%/entity/DocumentTemplatePlaceOfUse_entity/entityfields/documenttemplateplaceofuse/children/documenttemplateplaceofuse_param/valueProcess.js</valueProcess>
</entityParameter>
</children>
</entityProvider>
<entityParameter>
<name>DocumentTemplatePlaceOfUse_param</name>
<valueProcess>%aditoprj%/entity/DocumentTemplatePlaceOfUse_entity/entityfields/documenttemplateplaceofuse_param/valueProcess.js</valueProcess>
<expose v="true" />
</entityParameter>
</entityFields>
<recordContainers>
<dbRecordContainer>
<name>db</name>
<alias>Data_alias</alias>
<conditionProcess>%aditoprj%/entity/DocumentTemplatePlaceOfUse_entity/recordcontainers/db/conditionProcess.js</conditionProcess>
<linkInformation>
<linkInformation>
<name>df318337-f5d2-4046-989d-476f336b3fb4</name>
<tableName>DOCUMENTTEMPLATEPLACEOFUSE</tableName>
<primaryKey>DOCUMENTTEMPLATEPLACEOFUSEID</primaryKey>
<isUIDTable v="true" />
<readonly v="false" />
</linkInformation>
</linkInformation>
<recordFieldMappings>
<dbRecordFieldMapping>
<name>DOCUMENTTEMPLATE_ID.value</name>
<recordfield>DOCUMENTTEMPLATEPLACEOFUSE.DOCUMENTTEMPLATE_ID</recordfield>
</dbRecordFieldMapping>
<dbRecordFieldMapping>
<name>DOCUMENTTEMPLATEPLACEOFUSEID.value</name>
<recordfield>DOCUMENTTEMPLATEPLACEOFUSE.DOCUMENTTEMPLATEPLACEOFUSEID</recordfield>
</dbRecordFieldMapping>
<dbRecordFieldMapping>
<name>PLACEOFUSE.value</name>
<recordfield>DOCUMENTTEMPLATEPLACEOFUSE.PLACEOFUSE</recordfield>
</dbRecordFieldMapping>
</recordFieldMappings>
</dbRecordContainer>
</recordContainers>
</entity>
import("system.result");
result.object(["Person", "Organisation"]);
\ No newline at end of file
import("system.result");
result.string(true)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment