Merge remote-tracking branch 'origin/master' into feature/new-design-test

This commit is contained in:
m.epshtein 2024-06-21 07:48:41 +03:00
commit 2736f576fc
11 changed files with 2958 additions and 638 deletions

View file

@ -0,0 +1,56 @@
/*
* This file is generated by jOOQ.
*/
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.Public;
import java.util.Arrays;
import java.util.List;
import org.jooq.Constants;
import org.jooq.Schema;
import org.jooq.impl.CatalogImpl;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class DefaultCatalog extends CatalogImpl {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>DEFAULT_CATALOG</code>
*/
public static final DefaultCatalog DEFAULT_CATALOG = new DefaultCatalog();
/**
* The schema <code>public</code>.
*/
public final Public PUBLIC = Public.PUBLIC;
/**
* No further instances allowed
*/
private DefaultCatalog() {
super("");
}
@Override
public final List<Schema> getSchemas() {
return Arrays.asList(
Public.PUBLIC
);
}
/**
* A reference to the 3.19 minor release of the code generator. If this
* doesn't compile, it's because the runtime library uses an older minor
* release, namely: 3.19. You can turn off the generation of this reference
* by specifying /configuration/generator/generate/jooqVersionReference
*/
private static final String REQUIRE_RUNTIME_JOOQ_VERSION = Constants.VERSION_3_19;
}

View file

@ -0,0 +1,28 @@
/*
* This file is generated by jOOQ.
*/
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.InteractionLog;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.records.InteractionLogRecord;
import org.jooq.TableField;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.Internal;
/**
* A class modelling foreign key relationships and constraints of tables in
* public.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Keys {
// -------------------------------------------------------------------------
// UNIQUE and PRIMARY KEY definitions
// -------------------------------------------------------------------------
public static final UniqueKey<InteractionLogRecord> INTERACTION_LOG_PKEY = Internal.createUniqueKey(InteractionLog.INTERACTION_LOG, DSL.name("interaction_log_pkey"), new TableField[] { InteractionLog.INTERACTION_LOG.ID }, true);
}

View file

@ -0,0 +1,55 @@
/*
* This file is generated by jOOQ.
*/
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.DefaultCatalog;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.InteractionLog;
import java.util.Arrays;
import java.util.List;
import org.jooq.Catalog;
import org.jooq.Table;
import org.jooq.impl.SchemaImpl;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Public extends SchemaImpl {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>public</code>
*/
public static final Public PUBLIC = new Public();
/**
* The table <code>public.interaction_log</code>.
*/
public final InteractionLog INTERACTION_LOG = InteractionLog.INTERACTION_LOG;
/**
* No further instances allowed
*/
private Public() {
super("public", null);
}
@Override
public Catalog getCatalog() {
return DefaultCatalog.DEFAULT_CATALOG;
}
@Override
public final List<Table<?>> getTables() {
return Arrays.asList(
InteractionLog.INTERACTION_LOG
);
}
}

View file

@ -0,0 +1,20 @@
/*
* This file is generated by jOOQ.
*/
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.InteractionLog;
/**
* Convenience access to all tables in public.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Tables {
/**
* The table <code>public.interaction_log</code>.
*/
public static final InteractionLog INTERACTION_LOG = InteractionLog.INTERACTION_LOG;
}

View file

@ -0,0 +1,260 @@
/*
* This file is generated by jOOQ.
*/
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.Keys;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.Public;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.records.InteractionLogRecord;
import java.sql.Timestamp;
import java.util.Collection;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Identity;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
import org.jooq.Stringly;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.TableOptions;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class InteractionLog extends TableImpl<InteractionLogRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>public.interaction_log</code>
*/
public static final InteractionLog INTERACTION_LOG = new InteractionLog();
/**
* The class holding records for this type
*/
@Override
public Class<InteractionLogRecord> getRecordType() {
return InteractionLogRecord.class;
}
/**
* The column <code>public.interaction_log.id</code>.
*/
public final TableField<InteractionLogRecord, Long> ID = createField(DSL.name("id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
/**
* The column <code>public.interaction_log.sent_date</code>.
*/
public final TableField<InteractionLogRecord, Timestamp> SENT_DATE = createField(DSL.name("sent_date"), SQLDataType.TIMESTAMP(0), this, "");
/**
* The column <code>public.interaction_log.file_name</code>.
*/
public final TableField<InteractionLogRecord, String> FILE_NAME = createField(DSL.name("file_name"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.interaction_log.form</code>.
*/
public final TableField<InteractionLogRecord, String> FORM = createField(DSL.name("form"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.interaction_log.sender</code>.
*/
public final TableField<InteractionLogRecord, String> SENDER = createField(DSL.name("sender"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.interaction_log.status</code>.
*/
public final TableField<InteractionLogRecord, String> STATUS = createField(DSL.name("status"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.interaction_log.records_sent</code>.
*/
public final TableField<InteractionLogRecord, Integer> RECORDS_SENT = createField(DSL.name("records_sent"), SQLDataType.INTEGER, this, "");
/**
* The column <code>public.interaction_log.records_accepted</code>.
*/
public final TableField<InteractionLogRecord, Integer> RECORDS_ACCEPTED = createField(DSL.name("records_accepted"), SQLDataType.INTEGER, this, "");
private InteractionLog(Name alias, Table<InteractionLogRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private InteractionLog(Name alias, Table<InteractionLogRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>public.interaction_log</code> table reference
*/
public InteractionLog(String alias) {
this(DSL.name(alias), INTERACTION_LOG);
}
/**
* Create an aliased <code>public.interaction_log</code> table reference
*/
public InteractionLog(Name alias) {
this(alias, INTERACTION_LOG);
}
/**
* Create a <code>public.interaction_log</code> table reference
*/
public InteractionLog() {
this(DSL.name("interaction_log"), null);
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
}
@Override
public Identity<InteractionLogRecord, Long> getIdentity() {
return (Identity<InteractionLogRecord, Long>) super.getIdentity();
}
@Override
public UniqueKey<InteractionLogRecord> getPrimaryKey() {
return Keys.INTERACTION_LOG_PKEY;
}
@Override
public InteractionLog as(String alias) {
return new InteractionLog(DSL.name(alias), this);
}
@Override
public InteractionLog as(Name alias) {
return new InteractionLog(alias, this);
}
@Override
public InteractionLog as(Table<?> alias) {
return new InteractionLog(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public InteractionLog rename(String name) {
return new InteractionLog(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public InteractionLog rename(Name name) {
return new InteractionLog(name, null);
}
/**
* Rename this table
*/
@Override
public InteractionLog rename(Table<?> name) {
return new InteractionLog(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog where(Condition condition) {
return new InteractionLog(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InteractionLog where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InteractionLog where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InteractionLog where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InteractionLog where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -0,0 +1,171 @@
/*
* This file is generated by jOOQ.
*/
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.records;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.InteractionLog;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class InteractionLogRecord extends UpdatableRecordImpl<InteractionLogRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>public.interaction_log.id</code>.
*/
public void setId(Long value) {
set(0, value);
}
/**
* Getter for <code>public.interaction_log.id</code>.
*/
public Long getId() {
return (Long) get(0);
}
/**
* Setter for <code>public.interaction_log.sent_date</code>.
*/
public void setSentDate(Timestamp value) {
set(1, value);
}
/**
* Getter for <code>public.interaction_log.sent_date</code>.
*/
public Timestamp getSentDate() {
return (Timestamp) get(1);
}
/**
* Setter for <code>public.interaction_log.file_name</code>.
*/
public void setFileName(String value) {
set(2, value);
}
/**
* Getter for <code>public.interaction_log.file_name</code>.
*/
public String getFileName() {
return (String) get(2);
}
/**
* Setter for <code>public.interaction_log.form</code>.
*/
public void setForm(String value) {
set(3, value);
}
/**
* Getter for <code>public.interaction_log.form</code>.
*/
public String getForm() {
return (String) get(3);
}
/**
* Setter for <code>public.interaction_log.sender</code>.
*/
public void setSender(String value) {
set(4, value);
}
/**
* Getter for <code>public.interaction_log.sender</code>.
*/
public String getSender() {
return (String) get(4);
}
/**
* Setter for <code>public.interaction_log.status</code>.
*/
public void setStatus(String value) {
set(5, value);
}
/**
* Getter for <code>public.interaction_log.status</code>.
*/
public String getStatus() {
return (String) get(5);
}
/**
* Setter for <code>public.interaction_log.records_sent</code>.
*/
public void setRecordsSent(Integer value) {
set(6, value);
}
/**
* Getter for <code>public.interaction_log.records_sent</code>.
*/
public Integer getRecordsSent() {
return (Integer) get(6);
}
/**
* Setter for <code>public.interaction_log.records_accepted</code>.
*/
public void setRecordsAccepted(Integer value) {
set(7, value);
}
/**
* Getter for <code>public.interaction_log.records_accepted</code>.
*/
public Integer getRecordsAccepted() {
return (Integer) get(7);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<Long> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached InteractionLogRecord
*/
public InteractionLogRecord() {
super(InteractionLog.INTERACTION_LOG);
}
/**
* Create a detached, initialised InteractionLogRecord
*/
public InteractionLogRecord(Long id, Timestamp sentDate, String fileName, String form, String sender, String status, Integer recordsSent, Integer recordsAccepted) {
super(InteractionLog.INTERACTION_LOG);
setId(id);
setSentDate(sentDate);
setFileName(fileName);
setForm(form);
setSender(sender);
setStatus(status);
setRecordsSent(recordsSent);
setRecordsAccepted(recordsAccepted);
resetChangedOnNotNull();
}
}

View file

@ -60,7 +60,17 @@ const appRoutes: Routes = [
component: TaskListComponent,
}
]
},
{
path: 'mydata',
loadChildren: 'generated-sources/page-mydata.module#PagemydataModule',
},
{
path: 'filesentlog',
loadChildren: 'generated-sources/page-filesentlog.module#PagefilesentlogModule',
}
];
@NgModule({

View file

@ -0,0 +1,654 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xmlPage>
<id>filesentlog</id>
<versions>
<studioVersion>3.172.3</studioVersion>
<packageVersions>
<entry>
<key>ru.cg.webbpm.packages.base.resources</key>
<value>3.172.4</value>
</entry>
</packageVersions>
</versions>
<rootObjects id="e1edd211-4015-48a5-967d-622c40f614ae">
<prototypeId>fd7e47b9-dce1-4d14-9f3a-580c79f59579</prototypeId>
<componentRootId>e1edd211-4015-48a5-967d-622c40f614ae</componentRootId>
<name>Кнопка - назад </name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>caption</key>
<value>
<simple>"Назад"</simple>
</value>
</entry>
<entry>
<key>cssClasses</key>
<value>
<item id="0db8b05f-0f51-454e-b525-84620c1e08b0" removed="false">
<value>
<simple>"link-back"</simple>
</value>
</item>
</value>
</entry>
</properties>
</scripts>
</rootObjects>
<rootObjects id="ea34ec37-36bf-4216-b3e5-7b103ab00614">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>ea34ec37-36bf-4216-b3e5-7b103ab00614</componentRootId>
<name>Текст</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="d7cc0086-eea2-4c67-90e4-d6a16b1f90c4" removed="false">
<value>
<simple>"title"</simple>
</value>
</item>
</value>
</entry>
<entry>
<key>initialValue</key>
<value>
<simple>"Журнал взаимодействий с Реестром ВУ"</simple>
</value>
</entry>
</properties>
</scripts>
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048"/>
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127"/>
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
<enabled>false</enabled>
</scripts>
</rootObjects>
<rootObjects id="886cf610-682c-4b8b-94e7-56b6f47fd5a3">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>886cf610-682c-4b8b-94e7-56b6f47fd5a3</componentRootId>
<name>Горизонтальный контейнер</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="b6068710-0f31-48ec-8e03-c0c1480a40c0"/>
<scripts id="fe04d7fb-6c5b-46c4-b723-667732d81f4f"/>
<scripts id="5c566210-2a60-4048-a2d1-84c7dd023248"/>
<scripts id="3171b2e1-b4af-4335-95fa-1b2592604b84"/>
<children id="a107c5a0-5bc2-482f-b225-a20aaa4ab00c">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>a107c5a0-5bc2-482f-b225-a20aaa4ab00c</componentRootId>
<name>Текст</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
<properties>
<entry>
<key>initialValue</key>
<value>
<simple>"Найдено 5 файлов"</simple>
</value>
</entry>
</properties>
</scripts>
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048"/>
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127"/>
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
<enabled>false</enabled>
</scripts>
</children>
<children id="9721959c-be2f-4ec1-8c8e-8fdcd930b794">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>9721959c-be2f-4ec1-8c8e-8fdcd930b794</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="26242dda-11df-42f0-be93-9fe67ccc016e">
<prototypeId>fd7e47b9-dce1-4d14-9f3a-580c79f59579</prototypeId>
<componentRootId>26242dda-11df-42f0-be93-9fe67ccc016e</componentRootId>
<name>Кнопка</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>caption</key>
<value>
<simple>"Сбросить фильтры"</simple>
</value>
</entry>
</properties>
</scripts>
</children>
</rootObjects>
<rootObjects id="7d63e0d5-c23d-4c32-8311-25b40e713c79">
<prototypeId>16071adb-3bdf-4c33-b29b-886876016415</prototypeId>
<componentRootId>7d63e0d5-c23d-4c32-8311-25b40e713c79</componentRootId>
<name>Таблица</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="07201df9-ff33-4c71-9aae-a2cfdd028234">
<properties>
<entry>
<key>autoStretchColumns</key>
<value>
<simple>true</simple>
</value>
</entry>
</properties>
</scripts>
<scripts id="1996166f-7922-4f28-a571-9646d956ef37">
<properties>
<entry>
<key>gridService</key>
<value>
<complex>
<entry>
<key>loadDao</key>
<value>
<complex>
<entry>
<key>graph</key>
<value>
<simple>{"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"interaction_log","schemaName":"public","x":519.0,"y":269.0,"alias":"interaction_log","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"interaction_log","schemaName":"public","x":519.0,"y":269.0,"alias":"interaction_log","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"interaction_log":{"tableName":"interaction_log","schemaName":"public","x":519.0,"y":269.0,"alias":"interaction_log","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null]],"mainNodeIndex":0}</simple>
</value>
</entry>
</complex>
</value>
</entry>
</complex>
</value>
</entry>
</properties>
</scripts>
<scripts id="be8fe0e1-4909-4224-8664-be55168595c6"/>
<children id="e4763783-817a-4573-99b4-8921636e06fa">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>e4763783-817a-4573-99b4-8921636e06fa</componentRootId>
<name>Дата и время направления</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
<properties>
<entry>
<key>displayName</key>
<value>
<simple>"Дата и время направления"</simple>
</value>
</entry>
<entry>
<key>displayPopup</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>displayType</key>
<value>
<simple>"ONE_COLUMN"</simple>
</value>
</entry>
<entry>
<key>field</key>
<value>
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"sent_date"}</simple>
</value>
</entry>
<entry>
<key>filter</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>sortable</key>
<value>
<simple>true</simple>
</value>
</entry>
</properties>
</scripts>
</children>
<children id="814aab37-ef69-435f-8e12-1ffe37f4a69f">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>814aab37-ef69-435f-8e12-1ffe37f4a69f</componentRootId>
<name>Название файла</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
<properties>
<entry>
<key>displayName</key>
<value>
<simple>"Название файла"</simple>
</value>
</entry>
<entry>
<key>displayPopup</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>displayType</key>
<value>
<simple>"ONE_COLUMN"</simple>
</value>
</entry>
<entry>
<key>field</key>
<value>
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"file_name"}</simple>
</value>
</entry>
<entry>
<key>filter</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>sortable</key>
<value>
<simple>true</simple>
</value>
</entry>
</properties>
</scripts>
</children>
<children id="4e56e660-7f83-449c-be6b-bf525aba1142">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>4e56e660-7f83-449c-be6b-bf525aba1142</componentRootId>
<name>Форма</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
<properties>
<entry>
<key>displayName</key>
<value>
<simple>"Форма"</simple>
</value>
</entry>
<entry>
<key>displayPopup</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>displayType</key>
<value>
<simple>"ONE_COLUMN"</simple>
</value>
</entry>
<entry>
<key>field</key>
<value>
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"form"}</simple>
</value>
</entry>
<entry>
<key>filter</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>sortable</key>
<value>
<simple>true</simple>
</value>
</entry>
</properties>
</scripts>
</children>
<children id="b1bc7945-9748-4b15-8385-c9f1da337fac">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>b1bc7945-9748-4b15-8385-c9f1da337fac</componentRootId>
<name>Отправитель</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
<properties>
<entry>
<key>displayName</key>
<value>
<simple>"Отправитель"</simple>
</value>
</entry>
<entry>
<key>displayPopup</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>displayType</key>
<value>
<simple>"ONE_COLUMN"</simple>
</value>
</entry>
<entry>
<key>field</key>
<value>
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"sender"}</simple>
</value>
</entry>
<entry>
<key>filter</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>sortable</key>
<value>
<simple>true</simple>
</value>
</entry>
</properties>
</scripts>
</children>
<children id="321f142f-e9e0-436c-a41d-9fb7b06578f0">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>321f142f-e9e0-436c-a41d-9fb7b06578f0</componentRootId>
<name>Статус</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
<properties>
<entry>
<key>displayName</key>
<value>
<simple>"Статус"</simple>
</value>
</entry>
<entry>
<key>displayPopup</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>displayType</key>
<value>
<simple>"ONE_COLUMN"</simple>
</value>
</entry>
<entry>
<key>field</key>
<value>
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"status"}</simple>
</value>
</entry>
<entry>
<key>filter</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>sortable</key>
<value>
<simple>true</simple>
</value>
</entry>
</properties>
</scripts>
</children>
<children id="d8b5a9b1-fd07-41e6-b2d0-572d5f06de9a">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>d8b5a9b1-fd07-41e6-b2d0-572d5f06de9a</componentRootId>
<name>Записей отправлено</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
<properties>
<entry>
<key>displayName</key>
<value>
<simple>"Записей отправлено"</simple>
</value>
</entry>
<entry>
<key>displayPopup</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>displayType</key>
<value>
<simple>"ONE_COLUMN"</simple>
</value>
</entry>
<entry>
<key>field</key>
<value>
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"records_sent"}</simple>
</value>
</entry>
<entry>
<key>filter</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>sortable</key>
<value>
<simple>true</simple>
</value>
</entry>
</properties>
</scripts>
</children>
<children id="5b6704c5-1e75-41a5-b61e-0facb663d032">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>5b6704c5-1e75-41a5-b61e-0facb663d032</componentRootId>
<name>Записей принято</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
<properties>
<entry>
<key>displayName</key>
<value>
<simple>"Записей принято"</simple>
</value>
</entry>
<entry>
<key>displayPopup</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>displayType</key>
<value>
<simple>"ONE_COLUMN"</simple>
</value>
</entry>
<entry>
<key>field</key>
<value>
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"records_accepted"}</simple>
</value>
</entry>
<entry>
<key>filter</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>sortable</key>
<value>
<simple>true</simple>
</value>
</entry>
</properties>
</scripts>
</children>
</rootObjects>
<rootObjects id="f5798a57-676a-4a95-9437-265717a8d644">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>f5798a57-676a-4a95-9437-265717a8d644</componentRootId>
<name>Группа полей</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="46f20297-81d1-4786-bb17-2a78ca6fda6f">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="44ee1f16-1045-4cd9-9314-1efbc447d7db" removed="false">
<value>
<simple>"group"</simple>
</value>
</item>
</value>
</entry>
<entry>
<key>heading</key>
<value>
<simple>null</simple>
</value>
</entry>
</properties>
</scripts>
<scripts id="7fe2f82f-5028-401e-941f-e92df36538a6"/>
<scripts id="73f52c22-5182-4860-8ee6-b9ba164ed460"/>
<scripts id="2129eba5-aac3-41d1-ba50-0a2f4b5f0a32"/>
<scripts id="865a51e1-80f5-4064-a7d2-2b251b33bdec"/>
<children id="358d1918-2e9b-4123-a8b5-8189a1789291">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>358d1918-2e9b-4123-a8b5-8189a1789291</componentRootId>
<name>Горизонтальный контейнер</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="097a2141-13d0-4b15-ac5f-5c310b3753f7">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>097a2141-13d0-4b15-ac5f-5c310b3753f7</componentRootId>
<name>Текст</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="e82af49b-78b1-4c4e-9c9f-7f6afb76a1a2" removed="true"/>
<item id="633b0a83-ad8e-4b77-8de6-e168bc259852" removed="true"/>
<item id="b714e743-c151-44d6-9bb0-73128652ef6a" removed="true"/>
<item id="1d9468cf-d5b9-4a44-a93b-66d0ab93bf67" removed="true"/>
<item id="c663a654-405f-4e92-8d8d-015bc9d3f68a" removed="true"/>
<item id="9eaf8023-8bf9-4bf2-8cd9-d1a3394837dd" removed="true"/>
</value>
</entry>
<entry>
<key>initialValue</key>
<value>
<simple>"Запросите выписку, чтобы посмотреть журнал взаимодействий за весь период"</simple>
</value>
</entry>
</properties>
</scripts>
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048"/>
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127"/>
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
<enabled>false</enabled>
</scripts>
</children>
<children id="2528ea8a-3e3f-4968-a973-8e9ac1ca4326">
<prototypeId>fd7e47b9-dce1-4d14-9f3a-580c79f59579</prototypeId>
<componentRootId>2528ea8a-3e3f-4968-a973-8e9ac1ca4326</componentRootId>
<name>Кнопка</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>caption</key>
<value>
<simple>"Запросить выписку"</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>null</simple>
</value>
</entry>
</properties>
</scripts>
</children>
<children id="f4d7dfb7-67e6-41bd-bef6-ae9751ce2088">
<prototypeId>3057d447-6d17-48a8-b096-b14ea88d17e8</prototypeId>
<componentRootId>f4d7dfb7-67e6-41bd-bef6-ae9751ce2088</componentRootId>
<name>Изображение</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="484748b4-a03d-4254-a7f3-fec2402e7866">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>484748b4-a03d-4254-a7f3-fec2402e7866</componentRootId>
<name>Горизонтальный контейнер</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="87481ea6-30aa-4002-81d0-421e066298ff">
<prototypeId>e32ae1f5-5b14-45f1-abb6-f52c34b3b570</prototypeId>
<componentRootId>87481ea6-30aa-4002-81d0-421e066298ff</componentRootId>
<name>Гиперссылка</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="069eddbe-f59a-4d8e-8152-66de3e3aca71">
<prototypeId>e32ae1f5-5b14-45f1-abb6-f52c34b3b570</prototypeId>
<componentRootId>069eddbe-f59a-4d8e-8152-66de3e3aca71</componentRootId>
<name>Гиперссылка</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="e3a0dfae-0e39-4a61-9453-163facf74b69">
<prototypeId>fd7e47b9-dce1-4d14-9f3a-580c79f59579</prototypeId>
<componentRootId>e3a0dfae-0e39-4a61-9453-163facf74b69</componentRootId>
<name>Кнопка</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="88961b2a-f42b-4e09-9a06-022a2b9757f2">
<prototypeId>86f297f1-ab3d-40e0-ac2f-89cc944b7f0a</prototypeId>
<componentRootId>88961b2a-f42b-4e09-9a06-022a2b9757f2</componentRootId>
<name>Диалог - выбор файла и отправка</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="7e79df8e-f480-4387-922c-5ddfd92986ed">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>7e79df8e-f480-4387-922c-5ddfd92986ed</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<removed>true</removed>
</children>
</rootObjects>
</xmlPage>

View file

@ -518,31 +518,26 @@
</properties>
</scripts>
</children>
<children id="fff8a7b8-aed9-4b09-9dc9-3d9a0729085b">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>fff8a7b8-aed9-4b09-9dc9-3d9a0729085b</componentRootId>
<name>Группа полей</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="46f20297-81d1-4786-bb17-2a78ca6fda6f"/>
<scripts id="7fe2f82f-5028-401e-941f-e92df36538a6"/>
<scripts id="73f52c22-5182-4860-8ee6-b9ba164ed460"/>
<scripts id="2129eba5-aac3-41d1-ba50-0a2f4b5f0a32"/>
<scripts id="865a51e1-80f5-4064-a7d2-2b251b33bdec"/>
<children id="8f981158-fc84-4cf8-a71b-2e95b3dcaf2f">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>8f981158-fc84-4cf8-a71b-2e95b3dcaf2f</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="4c19cd54-0efb-47c2-987f-ed6dc1b532f3">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>4c19cd54-0efb-47c2-987f-ed6dc1b532f3</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="e00994e6-86df-4be9-8601-35d61f9847bd" removed="false">
<value>
<simple>"warning-group"</simple>
</value>
</item>
</value>
</entry>
</properties>
</scripts>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380"/>
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f"/>
@ -604,13 +599,6 @@
</entry>
</properties>
</scripts>
</children>
<children id="529140ee-17b6-44e9-8f2d-a097b4bc044d">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>529140ee-17b6-44e9-8f2d-a097b4bc044d</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="8002dbe0-8daa-409d-a7dc-4b35bc754592">
<prototypeId>5ebd2885-0972-4e51-8376-1fa66aed9a90</prototypeId>
@ -619,15 +607,14 @@
<container>false</container>
<removed>true</removed>
</children>
<children id="4333be98-584a-4d30-9427-4d4f7a8b7f7e">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>4333be98-584a-4d30-9427-4d4f7a8b7f7e</componentRootId>
<name>Текст</name>
<container>false</container>
</children>
<children id="fff8a7b8-aed9-4b09-9dc9-3d9a0729085b">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>fff8a7b8-aed9-4b09-9dc9-3d9a0729085b</componentRootId>
<name>Группа полей</name>
<container>true</container>
<removed>true</removed>
</children>
</children>
</children>
<children id="529140ee-17b6-44e9-8f2d-a097b4bc044d">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>529140ee-17b6-44e9-8f2d-a097b4bc044d</componentRootId>
@ -641,7 +628,7 @@
<value>
<item id="e82af49b-78b1-4c4e-9c9f-7f6afb76a1a2" removed="false">
<value>
<simple>"title"</simple>
<simple>"subtitle"</simple>
</value>
</item>
<item id="633b0a83-ad8e-4b77-8de6-e168bc259852" removed="true"/>
@ -674,6 +661,12 @@
<childrenReordered>false</childrenReordered>
<scripts id="f0bb8d46-5440-4e3e-9f55-dc050d49e271">
<properties>
<entry>
<key>canDelete</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>extensionFilter</key>
<value>
@ -754,26 +747,11 @@
<simple>"align-center"</simple>
</value>
</item>
<item id="3de6c0f8-dce8-47a2-af67-bf6c345f2579" removed="true"/>
</value>
</entry>
</properties>
</scripts>
</children>
<children id="6a3a457f-b19e-46ba-9713-9c35bb6fd737">
<prototypeId>98594cec-0a9b-4cef-af09-e1b71cb2ad9e</prototypeId>
<componentRootId>6a3a457f-b19e-46ba-9713-9c35bb6fd737</componentRootId>
<name>Обработка событий</name>
<container>false</container>
<removed>true</removed>
</children>
</children>
<children id="28a5cb96-80d8-47e3-9d19-99b1837c8834">
<prototypeId>86f297f1-ab3d-40e0-ac2f-89cc944b7f0a</prototypeId>
<componentRootId>28a5cb96-80d8-47e3-9d19-99b1837c8834</componentRootId>
<name>Диалог - прогресс бар</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="9d4b5b19-9eea-4f27-8864-6d22e6c7f54f">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
@ -1068,6 +1046,7 @@
<componentRootId>7f4bcb24-19f1-4147-ba0b-337d76bf57a8</componentRootId>
<name>Диалог - выбор файла и отправка</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
<properties>
@ -1159,31 +1138,26 @@
</properties>
</scripts>
</children>
<children id="53b2e045-3a33-474e-af8c-d546f778368b">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>53b2e045-3a33-474e-af8c-d546f778368b</componentRootId>
<name>Группа полей</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="46f20297-81d1-4786-bb17-2a78ca6fda6f"/>
<scripts id="7fe2f82f-5028-401e-941f-e92df36538a6"/>
<scripts id="73f52c22-5182-4860-8ee6-b9ba164ed460"/>
<scripts id="2129eba5-aac3-41d1-ba50-0a2f4b5f0a32"/>
<scripts id="865a51e1-80f5-4064-a7d2-2b251b33bdec"/>
<children id="933a8598-cf5b-4819-9e96-085ec8215754">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>933a8598-cf5b-4819-9e96-085ec8215754</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="c9d91e3d-7147-48b0-89c1-0974b1cb689c">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>c9d91e3d-7147-48b0-89c1-0974b1cb689c</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="be8d9a75-0ac3-464e-80b1-673dea096557" removed="false">
<value>
<simple>"warning-group"</simple>
</value>
</item>
</value>
</entry>
</properties>
</scripts>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380"/>
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f"/>
@ -1245,20 +1219,6 @@
</entry>
</properties>
</scripts>
</children>
<children id="25f676a1-4729-40e3-9cbf-9bc33ba735d0">
<prototypeId>e32ae1f5-5b14-45f1-abb6-f52c34b3b570</prototypeId>
<componentRootId>25f676a1-4729-40e3-9cbf-9bc33ba735d0</componentRootId>
<name>Гиперссылка</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="7929c36c-f014-4d44-9f9e-87a0f840e273">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>7929c36c-f014-4d44-9f9e-87a0f840e273</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="f0782f42-2c73-4152-97ef-586636140765">
<prototypeId>5ebd2885-0972-4e51-8376-1fa66aed9a90</prototypeId>
@ -1267,15 +1227,14 @@
<container>false</container>
<removed>true</removed>
</children>
<children id="8d1da3da-38f6-4c5a-b8e8-fb7c8a9833fa">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>8d1da3da-38f6-4c5a-b8e8-fb7c8a9833fa</componentRootId>
<name>Текст</name>
<container>false</container>
</children>
<children id="53b2e045-3a33-474e-af8c-d546f778368b">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>53b2e045-3a33-474e-af8c-d546f778368b</componentRootId>
<name>Группа полей</name>
<container>true</container>
<removed>true</removed>
</children>
</children>
</children>
<children id="7929c36c-f014-4d44-9f9e-87a0f840e273">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>7929c36c-f014-4d44-9f9e-87a0f840e273</componentRootId>
@ -1289,7 +1248,7 @@
<value>
<item id="e82af49b-78b1-4c4e-9c9f-7f6afb76a1a2" removed="false">
<value>
<simple>"title"</simple>
<simple>"subtitle"</simple>
</value>
</item>
<item id="633b0a83-ad8e-4b77-8de6-e168bc259852" removed="true"/>
@ -1322,6 +1281,12 @@
<childrenReordered>false</childrenReordered>
<scripts id="f0bb8d46-5440-4e3e-9f55-dc050d49e271">
<properties>
<entry>
<key>canDelete</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>extensionFilter</key>
<value>
@ -1402,20 +1367,12 @@
<simple>"align-center"</simple>
</value>
</item>
<item id="3de6c0f8-dce8-47a2-af67-bf6c345f2579" removed="true"/>
</value>
</entry>
</properties>
</scripts>
</children>
</children>
<children id="65d9a930-ebb9-450e-8f5a-3d98f5cf8b24">
<prototypeId>86f297f1-ab3d-40e0-ac2f-89cc944b7f0a</prototypeId>
<componentRootId>65d9a930-ebb9-450e-8f5a-3d98f5cf8b24</componentRootId>
<name>Диалог - прогресс бар</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="b50c6499-5c81-4fc3-b9ce-02cc1124e673">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>b50c6499-5c81-4fc3-b9ce-02cc1124e673</componentRootId>
@ -1460,6 +1417,7 @@
<componentRootId>97a31c6b-8c8d-471d-9e0d-85cb18cf758b</componentRootId>
<name>Горизонтальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -1709,6 +1667,7 @@
<componentRootId>864a367f-22cc-4fad-b83c-be3e3c83d936</componentRootId>
<name>Диалог - выбор файла и отправка</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
<properties>
@ -1800,31 +1759,26 @@
</properties>
</scripts>
</children>
<children id="403c1eab-4fe1-45cc-9ad3-801bd4e29c86">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>403c1eab-4fe1-45cc-9ad3-801bd4e29c86</componentRootId>
<name>Группа полей</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="46f20297-81d1-4786-bb17-2a78ca6fda6f"/>
<scripts id="7fe2f82f-5028-401e-941f-e92df36538a6"/>
<scripts id="73f52c22-5182-4860-8ee6-b9ba164ed460"/>
<scripts id="2129eba5-aac3-41d1-ba50-0a2f4b5f0a32"/>
<scripts id="865a51e1-80f5-4064-a7d2-2b251b33bdec"/>
<children id="7b400b51-38e5-41cb-b736-833b4cf231ef">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>7b400b51-38e5-41cb-b736-833b4cf231ef</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="982de5db-454f-4ee8-9bee-06af9390610a">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>982de5db-454f-4ee8-9bee-06af9390610a</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="036c61d8-384d-4c7a-a68f-ccd43e7d519c" removed="false">
<value>
<simple>"warning-group"</simple>
</value>
</item>
</value>
</entry>
</properties>
</scripts>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380"/>
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f"/>
@ -1886,20 +1840,6 @@
</entry>
</properties>
</scripts>
</children>
<children id="2bfdfed6-1b4a-4d5d-99b3-03b7ff1a46f4">
<prototypeId>e32ae1f5-5b14-45f1-abb6-f52c34b3b570</prototypeId>
<componentRootId>2bfdfed6-1b4a-4d5d-99b3-03b7ff1a46f4</componentRootId>
<name>Гиперссылка</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="6c1ee33f-bd86-402a-8166-183ba59423b0">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>6c1ee33f-bd86-402a-8166-183ba59423b0</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="e17cb148-d9eb-4239-91f8-050e6304685b">
<prototypeId>5ebd2885-0972-4e51-8376-1fa66aed9a90</prototypeId>
@ -1908,15 +1848,14 @@
<container>false</container>
<removed>true</removed>
</children>
<children id="cac6cd70-3c7a-4b74-b962-bf06950983fe">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>cac6cd70-3c7a-4b74-b962-bf06950983fe</componentRootId>
<name>Текст</name>
<container>false</container>
</children>
<children id="403c1eab-4fe1-45cc-9ad3-801bd4e29c86">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>403c1eab-4fe1-45cc-9ad3-801bd4e29c86</componentRootId>
<name>Группа полей</name>
<container>true</container>
<removed>true</removed>
</children>
</children>
</children>
<children id="6c1ee33f-bd86-402a-8166-183ba59423b0">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>6c1ee33f-bd86-402a-8166-183ba59423b0</componentRootId>
@ -1930,7 +1869,7 @@
<value>
<item id="e82af49b-78b1-4c4e-9c9f-7f6afb76a1a2" removed="false">
<value>
<simple>"title"</simple>
<simple>"subtitle"</simple>
</value>
</item>
<item id="633b0a83-ad8e-4b77-8de6-e168bc259852" removed="true"/>
@ -1963,6 +1902,12 @@
<childrenReordered>false</childrenReordered>
<scripts id="f0bb8d46-5440-4e3e-9f55-dc050d49e271">
<properties>
<entry>
<key>canDelete</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>extensionFilter</key>
<value>
@ -2043,20 +1988,12 @@
<simple>"align-center"</simple>
</value>
</item>
<item id="3de6c0f8-dce8-47a2-af67-bf6c345f2579" removed="true"/>
</value>
</entry>
</properties>
</scripts>
</children>
</children>
<children id="3d414ff1-bd1c-4857-87b4-2861310f17db">
<prototypeId>86f297f1-ab3d-40e0-ac2f-89cc944b7f0a</prototypeId>
<componentRootId>3d414ff1-bd1c-4857-87b4-2861310f17db</componentRootId>
<name>Диалог - прогресс бар</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="2e3f9c58-94e0-4d99-8d26-844be0fb25d2">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>2e3f9c58-94e0-4d99-8d26-844be0fb25d2</componentRootId>
@ -2350,6 +2287,7 @@
<componentRootId>76382b55-12fa-49af-af18-b0b050aab603</componentRootId>
<name>Диалог - выбор файла и отправка</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
<properties>
@ -2441,31 +2379,26 @@
</properties>
</scripts>
</children>
<children id="16401b0e-7207-4924-b4ab-2c4627a99740">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>16401b0e-7207-4924-b4ab-2c4627a99740</componentRootId>
<name>Группа полей</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="46f20297-81d1-4786-bb17-2a78ca6fda6f"/>
<scripts id="7fe2f82f-5028-401e-941f-e92df36538a6"/>
<scripts id="73f52c22-5182-4860-8ee6-b9ba164ed460"/>
<scripts id="2129eba5-aac3-41d1-ba50-0a2f4b5f0a32"/>
<scripts id="865a51e1-80f5-4064-a7d2-2b251b33bdec"/>
<children id="6adef6ea-0115-4a9d-b407-d3daa7bc219e">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>6adef6ea-0115-4a9d-b407-d3daa7bc219e</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="1ab1687d-6c9c-4866-8003-74868d22d055">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>1ab1687d-6c9c-4866-8003-74868d22d055</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="b3f9b548-9629-427b-950f-62fdbb7df4c0" removed="false">
<value>
<simple>"warning-group"</simple>
</value>
</item>
</value>
</entry>
</properties>
</scripts>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380"/>
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f"/>
@ -2527,20 +2460,6 @@
</entry>
</properties>
</scripts>
</children>
<children id="95b78382-a2aa-4c1d-af0d-ef44cad29e1e">
<prototypeId>e32ae1f5-5b14-45f1-abb6-f52c34b3b570</prototypeId>
<componentRootId>95b78382-a2aa-4c1d-af0d-ef44cad29e1e</componentRootId>
<name>Гиперссылка</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="4fef9111-7a22-4b67-9e3e-7f11d4dc2069">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>4fef9111-7a22-4b67-9e3e-7f11d4dc2069</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="5e3bd804-e300-4c1e-9acb-9fe69ff03e92">
<prototypeId>5ebd2885-0972-4e51-8376-1fa66aed9a90</prototypeId>
@ -2549,15 +2468,14 @@
<container>false</container>
<removed>true</removed>
</children>
<children id="3bb6b636-2363-435c-9304-e140dfb83a31">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>3bb6b636-2363-435c-9304-e140dfb83a31</componentRootId>
<name>Текст</name>
<container>false</container>
</children>
<children id="16401b0e-7207-4924-b4ab-2c4627a99740">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>16401b0e-7207-4924-b4ab-2c4627a99740</componentRootId>
<name>Группа полей</name>
<container>true</container>
<removed>true</removed>
</children>
</children>
</children>
<children id="4fef9111-7a22-4b67-9e3e-7f11d4dc2069">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>4fef9111-7a22-4b67-9e3e-7f11d4dc2069</componentRootId>
@ -2571,7 +2489,7 @@
<value>
<item id="e82af49b-78b1-4c4e-9c9f-7f6afb76a1a2" removed="false">
<value>
<simple>"title"</simple>
<simple>"subtitle"</simple>
</value>
</item>
<item id="633b0a83-ad8e-4b77-8de6-e168bc259852" removed="true"/>
@ -2604,6 +2522,12 @@
<childrenReordered>false</childrenReordered>
<scripts id="f0bb8d46-5440-4e3e-9f55-dc050d49e271">
<properties>
<entry>
<key>canDelete</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>extensionFilter</key>
<value>
@ -2684,20 +2608,12 @@
<simple>"align-center"</simple>
</value>
</item>
<item id="3de6c0f8-dce8-47a2-af67-bf6c345f2579" removed="true"/>
</value>
</entry>
</properties>
</scripts>
</children>
</children>
<children id="b88ab998-918a-4657-8475-0bee96c7de8c">
<prototypeId>86f297f1-ab3d-40e0-ac2f-89cc944b7f0a</prototypeId>
<componentRootId>b88ab998-918a-4657-8475-0bee96c7de8c</componentRootId>
<name>Диалог - прогресс бар</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="bcf9633c-28d5-487b-99e8-74c6b655630a">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>bcf9633c-28d5-487b-99e8-74c6b655630a</componentRootId>
@ -2991,6 +2907,7 @@
<componentRootId>c0f874ee-80d6-4e67-9b34-422d0af48531</componentRootId>
<name>Диалог - выбор файла и отправка</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
<properties>
@ -3082,31 +2999,26 @@
</properties>
</scripts>
</children>
<children id="3ec19580-e928-4b84-919b-08a91d681644">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>3ec19580-e928-4b84-919b-08a91d681644</componentRootId>
<name>Группа полей</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="46f20297-81d1-4786-bb17-2a78ca6fda6f"/>
<scripts id="7fe2f82f-5028-401e-941f-e92df36538a6"/>
<scripts id="73f52c22-5182-4860-8ee6-b9ba164ed460"/>
<scripts id="2129eba5-aac3-41d1-ba50-0a2f4b5f0a32"/>
<scripts id="865a51e1-80f5-4064-a7d2-2b251b33bdec"/>
<children id="af632a70-1ff2-423d-967a-0c0412aeb5e9">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>af632a70-1ff2-423d-967a-0c0412aeb5e9</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="6a41e417-06a2-427a-b004-2ac91b00d968">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>6a41e417-06a2-427a-b004-2ac91b00d968</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="a408d6c0-01d1-4262-ac73-9aa579d8952a" removed="false">
<value>
<simple>"warning-group"</simple>
</value>
</item>
</value>
</entry>
</properties>
</scripts>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380"/>
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f"/>
@ -3168,20 +3080,6 @@
</entry>
</properties>
</scripts>
</children>
<children id="3c2635b6-2f44-480d-93fa-a2c206a621ca">
<prototypeId>e32ae1f5-5b14-45f1-abb6-f52c34b3b570</prototypeId>
<componentRootId>3c2635b6-2f44-480d-93fa-a2c206a621ca</componentRootId>
<name>Гиперссылка</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="3e22851c-8b4b-4658-8f55-0c27006cd5dd">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>3e22851c-8b4b-4658-8f55-0c27006cd5dd</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="88cfc24d-db30-442d-9076-2b69e31e9e2c">
<prototypeId>5ebd2885-0972-4e51-8376-1fa66aed9a90</prototypeId>
@ -3190,15 +3088,14 @@
<container>false</container>
<removed>true</removed>
</children>
<children id="e714501d-f4fd-4fa4-97ff-bfa1718450bf">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>e714501d-f4fd-4fa4-97ff-bfa1718450bf</componentRootId>
<name>Текст</name>
<container>false</container>
</children>
<children id="3ec19580-e928-4b84-919b-08a91d681644">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>3ec19580-e928-4b84-919b-08a91d681644</componentRootId>
<name>Группа полей</name>
<container>true</container>
<removed>true</removed>
</children>
</children>
</children>
<children id="3e22851c-8b4b-4658-8f55-0c27006cd5dd">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>3e22851c-8b4b-4658-8f55-0c27006cd5dd</componentRootId>
@ -3212,7 +3109,7 @@
<value>
<item id="e82af49b-78b1-4c4e-9c9f-7f6afb76a1a2" removed="false">
<value>
<simple>"title"</simple>
<simple>"subtitle"</simple>
</value>
</item>
<item id="633b0a83-ad8e-4b77-8de6-e168bc259852" removed="true"/>
@ -3245,6 +3142,12 @@
<childrenReordered>false</childrenReordered>
<scripts id="f0bb8d46-5440-4e3e-9f55-dc050d49e271">
<properties>
<entry>
<key>canDelete</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>extensionFilter</key>
<value>
@ -3325,20 +3228,12 @@
<simple>"align-center"</simple>
</value>
</item>
<item id="3de6c0f8-dce8-47a2-af67-bf6c345f2579" removed="true"/>
</value>
</entry>
</properties>
</scripts>
</children>
</children>
<children id="d262a0af-c604-48dc-83ea-25d9e63bafc9">
<prototypeId>86f297f1-ab3d-40e0-ac2f-89cc944b7f0a</prototypeId>
<componentRootId>d262a0af-c604-48dc-83ea-25d9e63bafc9</componentRootId>
<name>Диалог - прогресс бар</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="021a73a9-d5e4-4a4c-85ad-667c8c6a8ebd">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>021a73a9-d5e4-4a4c-85ad-667c8c6a8ebd</componentRootId>
@ -4092,34 +3987,6 @@
</properties>
</scripts>
</children>
<children id="9a695d06-0944-40fb-8788-e5d4628c9a21">
<prototypeId>98594cec-0a9b-4cef-af09-e1b71cb2ad9e</prototypeId>
<componentRootId>9a695d06-0944-40fb-8788-e5d4628c9a21</componentRootId>
<name>Обработка событий - 2</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="bec09a2c-8731-4464-8d6b-f02c109d6eec">
<prototypeId>98594cec-0a9b-4cef-af09-e1b71cb2ad9e</prototypeId>
<componentRootId>bec09a2c-8731-4464-8d6b-f02c109d6eec</componentRootId>
<name>Обработка событий - 3</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="f374766e-4dfe-4cee-a14e-7ef55bb2f620">
<prototypeId>98594cec-0a9b-4cef-af09-e1b71cb2ad9e</prototypeId>
<componentRootId>f374766e-4dfe-4cee-a14e-7ef55bb2f620</componentRootId>
<name>Обработка событий - 4</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="c93a9d3d-c6fc-4738-9f0e-8ce2708207cc">
<prototypeId>98594cec-0a9b-4cef-af09-e1b71cb2ad9e</prototypeId>
<componentRootId>c93a9d3d-c6fc-4738-9f0e-8ce2708207cc</componentRootId>
<name>Обработка событий - 5</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="77d97954-e655-4a30-921b-56fd03dd8c05">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>77d97954-e655-4a30-921b-56fd03dd8c05</componentRootId>
@ -4155,6 +4022,16 @@
<key>caption</key>
<value>
<simple>"Закрыть"</simple>
</value>
</entry>
<entry>
<key>cssClasses</key>
<value>
<item id="93a2c1ff-cb5f-4cf6-9628-c60b8ff59707" removed="false">
<value>
<simple>"align-center"</simple>
</value>
</item>
</value>
</entry>
</properties>
@ -4236,27 +4113,6 @@
</properties>
</scripts>
</children>
<children id="6250cc2b-d7ac-4d0f-9338-6646da10e0d4">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>6250cc2b-d7ac-4d0f-9338-6646da10e0d4</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="68597b02-bc01-40e3-a9cd-f30ee624c4a2">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>68597b02-bc01-40e3-a9cd-f30ee624c4a2</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="5dd841a5-072f-466c-8515-646eee422d96">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>5dd841a5-072f-466c-8515-646eee422d96</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
</children>
</children>
<children id="c5ee230f-51bd-4749-aed6-e5bbd464cca5">
@ -4351,13 +4207,6 @@
<container>false</container>
<removed>true</removed>
</children>
<children id="2af36d0a-429b-4b9e-988f-3a0b0d714b4c">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>2af36d0a-429b-4b9e-988f-3a0b0d714b4c</componentRootId>
<name>Текст</name>
<container>false</container>
<removed>true</removed>
</children>
</children>
</children>
</rootObjects>

View file

@ -3,13 +3,13 @@
<dbBeanPackage>ervu_lkrp_ul.ervu_lkrp_ul.db_beans</dbBeanPackage>
<dbName>ervu-lkrp-ul</dbName>
<driverClassName>org.postgresql.Driver</driverClassName>
<host>10.10.31.121</host>
<host>10.10.31.119</host>
<manually>false</manually>
<password>ervu-lkrp-ul</password>
<port>5432</port>
<schemas>public</schemas>
<sqlDialect>POSTGRES</sqlDialect>
<url>jdbc:postgresql://10.10.31.121:5432/ervu-lkrp-ul</url>
<url>jdbc:postgresql://10.10.31.119:5432/ervu-lkrp-ul</url>
<urlPrefix>jdbc:postgresql:</urlPrefix>
<user>ervu-lkrp-ul</user>
</datasource>