добавил оквед на страницу организации

This commit is contained in:
Булат Хайруллин 2024-06-21 17:18:59 +03:00
parent 42a7b6e363
commit b716ce44fa
6 changed files with 625 additions and 41 deletions

View file

@ -5,7 +5,9 @@ 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.OrgOkved;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.records.InteractionLogRecord;
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.records.OrgOkvedRecord;
import org.jooq.TableField;
import org.jooq.UniqueKey;
@ -25,4 +27,5 @@ public class Keys {
// -------------------------------------------------------------------------
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);
public static final UniqueKey<OrgOkvedRecord> ORG_OKVED_PKEY = Internal.createUniqueKey(OrgOkved.ORG_OKVED, DSL.name("org_okved_pkey"), new TableField[] { OrgOkved.ORG_OKVED.ID }, true);
}

View file

@ -6,6 +6,7 @@ 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 ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.OrgOkved;
import java.util.Arrays;
import java.util.List;
@ -33,6 +34,11 @@ public class Public extends SchemaImpl {
*/
public final InteractionLog INTERACTION_LOG = InteractionLog.INTERACTION_LOG;
/**
* The table <code>public.org_okved</code>.
*/
public final OrgOkved ORG_OKVED = OrgOkved.ORG_OKVED;
/**
* No further instances allowed
*/
@ -49,7 +55,8 @@ public class Public extends SchemaImpl {
@Override
public final List<Table<?>> getTables() {
return Arrays.asList(
InteractionLog.INTERACTION_LOG
InteractionLog.INTERACTION_LOG,
OrgOkved.ORG_OKVED
);
}
}

View file

@ -5,6 +5,7 @@ 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.OrgOkved;
/**
@ -17,4 +18,9 @@ public class Tables {
* The table <code>public.interaction_log</code>.
*/
public static final InteractionLog INTERACTION_LOG = InteractionLog.INTERACTION_LOG;
/**
* The table <code>public.org_okved</code>.
*/
public static final OrgOkved ORG_OKVED = OrgOkved.ORG_OKVED;
}

View file

@ -0,0 +1,244 @@
/*
* 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.OrgOkvedRecord;
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 OrgOkved extends TableImpl<OrgOkvedRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>public.org_okved</code>
*/
public static final OrgOkved ORG_OKVED = new OrgOkved();
/**
* The class holding records for this type
*/
@Override
public Class<OrgOkvedRecord> getRecordType() {
return OrgOkvedRecord.class;
}
/**
* The column <code>public.org_okved.id</code>.
*/
public final TableField<OrgOkvedRecord, Long> ID = createField(DSL.name("id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
/**
* The column <code>public.org_okved.code</code>.
*/
public final TableField<OrgOkvedRecord, String> CODE = createField(DSL.name("code"), SQLDataType.VARCHAR(7), this, "");
/**
* The column <code>public.org_okved.okved</code>.
*/
public final TableField<OrgOkvedRecord, String> OKVED = createField(DSL.name("okved"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.org_okved.organization</code>.
*/
public final TableField<OrgOkvedRecord, String> ORGANIZATION = createField(DSL.name("organization"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.org_okved.main_okved</code>.
*/
public final TableField<OrgOkvedRecord, Boolean> MAIN_OKVED = createField(DSL.name("main_okved"), SQLDataType.BOOLEAN, this, "");
private OrgOkved(Name alias, Table<OrgOkvedRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private OrgOkved(Name alias, Table<OrgOkvedRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>public.org_okved</code> table reference
*/
public OrgOkved(String alias) {
this(DSL.name(alias), ORG_OKVED);
}
/**
* Create an aliased <code>public.org_okved</code> table reference
*/
public OrgOkved(Name alias) {
this(alias, ORG_OKVED);
}
/**
* Create a <code>public.org_okved</code> table reference
*/
public OrgOkved() {
this(DSL.name("org_okved"), null);
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
}
@Override
public Identity<OrgOkvedRecord, Long> getIdentity() {
return (Identity<OrgOkvedRecord, Long>) super.getIdentity();
}
@Override
public UniqueKey<OrgOkvedRecord> getPrimaryKey() {
return Keys.ORG_OKVED_PKEY;
}
@Override
public OrgOkved as(String alias) {
return new OrgOkved(DSL.name(alias), this);
}
@Override
public OrgOkved as(Name alias) {
return new OrgOkved(alias, this);
}
@Override
public OrgOkved as(Table<?> alias) {
return new OrgOkved(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public OrgOkved rename(String name) {
return new OrgOkved(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public OrgOkved rename(Name name) {
return new OrgOkved(name, null);
}
/**
* Rename this table
*/
@Override
public OrgOkved rename(Table<?> name) {
return new OrgOkved(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgOkved where(Condition condition) {
return new OrgOkved(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgOkved where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgOkved where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgOkved where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OrgOkved where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OrgOkved where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OrgOkved where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OrgOkved where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgOkved whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgOkved whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -0,0 +1,124 @@
/*
* 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.OrgOkved;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class OrgOkvedRecord extends UpdatableRecordImpl<OrgOkvedRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>public.org_okved.id</code>.
*/
public void setId(Long value) {
set(0, value);
}
/**
* Getter for <code>public.org_okved.id</code>.
*/
public Long getId() {
return (Long) get(0);
}
/**
* Setter for <code>public.org_okved.code</code>.
*/
public void setCode(String value) {
set(1, value);
}
/**
* Getter for <code>public.org_okved.code</code>.
*/
public String getCode() {
return (String) get(1);
}
/**
* Setter for <code>public.org_okved.okved</code>.
*/
public void setOkved(String value) {
set(2, value);
}
/**
* Getter for <code>public.org_okved.okved</code>.
*/
public String getOkved() {
return (String) get(2);
}
/**
* Setter for <code>public.org_okved.organization</code>.
*/
public void setOrganization(String value) {
set(3, value);
}
/**
* Getter for <code>public.org_okved.organization</code>.
*/
public String getOrganization() {
return (String) get(3);
}
/**
* Setter for <code>public.org_okved.main_okved</code>.
*/
public void setMainOkved(Boolean value) {
set(4, value);
}
/**
* Getter for <code>public.org_okved.main_okved</code>.
*/
public Boolean getMainOkved() {
return (Boolean) get(4);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<Long> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached OrgOkvedRecord
*/
public OrgOkvedRecord() {
super(OrgOkved.ORG_OKVED);
}
/**
* Create a detached, initialised OrgOkvedRecord
*/
public OrgOkvedRecord(Long id, String code, String okved, String organization, Boolean mainOkved) {
super(OrgOkved.ORG_OKVED);
setId(id);
setCode(code);
setOkved(okved);
setOrganization(organization);
setMainOkved(mainOkved);
resetChangedOnNotNull();
}
}

View file

@ -117,7 +117,6 @@
<componentRootId>3ed7cd92-3c7a-4d6f-a22c-1f3c4031bb61</componentRootId>
<name>VB - левый</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -174,13 +173,6 @@
<scripts id="73f52c22-5182-4860-8ee6-b9ba164ed460"/>
<scripts id="2129eba5-aac3-41d1-ba50-0a2f4b5f0a32"/>
<scripts id="865a51e1-80f5-4064-a7d2-2b251b33bdec"/>
<children id="9712b7a5-eb4c-4cab-a8dc-2c34e9b0d3f7">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>9712b7a5-eb4c-4cab-a8dc-2c34e9b0d3f7</componentRootId>
<name>VB</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="ab77b5e7-503a-4bb9-ad3e-a6bec053a0b0">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>ab77b5e7-503a-4bb9-ad3e-a6bec053a0b0</componentRootId>
@ -411,13 +403,6 @@
<scripts id="73f52c22-5182-4860-8ee6-b9ba164ed460"/>
<scripts id="2129eba5-aac3-41d1-ba50-0a2f4b5f0a32"/>
<scripts id="865a51e1-80f5-4064-a7d2-2b251b33bdec"/>
<children id="e9bffe2a-93ee-4512-89f8-d6da27038c97">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>e9bffe2a-93ee-4512-89f8-d6da27038c97</componentRootId>
<name>VB</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="9b24887e-d260-47f5-a2f9-47050ec1f9ed">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>9b24887e-d260-47f5-a2f9-47050ec1f9ed</componentRootId>
@ -833,13 +818,6 @@
<enabled>false</enabled>
</scripts>
</children>
<children id="218a14f3-e21c-4494-ad83-ac7a6357a80f">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>218a14f3-e21c-4494-ad83-ac7a6357a80f</componentRootId>
<name>Данные организации</name>
<container>false</container>
<removed>true</removed>
</children>
</children>
<children id="e39dc856-5145-4dbb-aeae-234541638145">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
@ -1085,12 +1063,248 @@
<enabled>false</enabled>
</scripts>
</children>
<children id="f9c85b8c-2500-4b1d-bbcf-092092f17267">
<children id="2cd4fdd3-7a68-4f2e-b2c9-468ca83ed63a">
<prototypeId>16071adb-3bdf-4c33-b29b-886876016415</prototypeId>
<componentRootId>2cd4fdd3-7a68-4f2e-b2c9-468ca83ed63a</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>
<entry>
<key>cssClasses</key>
<value>
<item id="a3216735-fb23-4653-a3f7-226a28b9a127" removed="false">
<value>
<simple>"okved-list"</simple>
</value>
</item>
</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":"org_okved","schemaName":"public","x":387.20000000000005,"y":282.4,"alias":"org_okved","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"public","table":"org_okved","entity":"org_okved","name":"main_okved"},"operation":"EQUAL","typeCode":"CONST","values":["true"]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"org_okved","schemaName":"public","x":387.20000000000005,"y":282.4,"alias":"org_okved","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"public","table":"org_okved","entity":"org_okved","name":"main_okved"},"operation":"EQUAL","typeCode":"CONST","values":["true"]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"org_okved":{"tableName":"org_okved","schemaName":"public","x":387.20000000000005,"y":282.4,"alias":"org_okved","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"public","table":"org_okved","entity":"org_okved","name":"main_okved"},"operation":"EQUAL","typeCode":"CONST","values":["true"]}],"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="a198d8e0-5886-4b86-a32e-cccbbf86f268">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>a198d8e0-5886-4b86-a32e-cccbbf86f268</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>displayColumns</key>
<value>
<item id="1fcc8084-6f93-42fd-80f4-61defe451897" removed="false">
<value>
<complex>
<entry>
<key>entityColumn</key>
<value>
<simple>{"schema":"public","table":"org_okved","entity":"org_okved","name":"code"}</simple>
</value>
</entry>
<entry>
<key>postfix</key>
<value>
<simple>" "</simple>
</value>
</entry>
</complex>
</value>
</item>
<item id="4b348c07-e14d-46cc-8c1d-0e079ebebc4c" removed="false">
<value>
<complex>
<entry>
<key>entityColumn</key>
<value>
<simple>{"schema":"public","table":"org_okved","entity":"org_okved","name":"okved"}</simple>
</value>
</entry>
</complex>
</value>
</item>
</value>
</entry>
<entry>
<key>displayType</key>
<value>
<simple>"MULTI_COLUMN"</simple>
</value>
</entry>
</properties>
</scripts>
</children>
</children>
<children id="19126951-2acd-4b6c-b576-2fbc82e288c3">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>f9c85b8c-2500-4b1d-bbcf-092092f17267</componentRootId>
<name>Почтовый адрес</name>
<componentRootId>19126951-2acd-4b6c-b576-2fbc82e288c3</componentRootId>
<name>Дополнительные виды деятельности</name>
<container>false</container>
<removed>true</removed>
<childrenReordered>false</childrenReordered>
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="ddf92f21-aac9-4378-b2e7-3884fa0b1164" removed="false">
<value>
<simple>"font-bold"</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>
</children>
<children id="efdeabec-a4db-4a71-b923-13af7581eff1">
<prototypeId>16071adb-3bdf-4c33-b29b-886876016415</prototypeId>
<componentRootId>efdeabec-a4db-4a71-b923-13af7581eff1</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>
<entry>
<key>cssClasses</key>
<value>
<item id="1e6df59d-6e5d-4c81-9f99-9f83b889757b" removed="false">
<value>
<simple>"okved-list"</simple>
</value>
</item>
</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":"org_okved","schemaName":"public","x":387.20000000000005,"y":282.4,"alias":"org_okved","conditionGroup":{"operator":"OR","conditions":[{"column":{"schema":"public","table":"org_okved","entity":"org_okved","name":"main_okved"},"operation":"EQUAL","typeCode":"CONST","values":["false"]},{"column":{"schema":"public","table":"org_okved","entity":"org_okved","name":"main_okved"},"operation":"IS_NULL","typeCode":"CONST","values":[null]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"org_okved","schemaName":"public","x":387.20000000000005,"y":282.4,"alias":"org_okved","conditionGroup":{"operator":"OR","conditions":[{"column":{"schema":"public","table":"org_okved","entity":"org_okved","name":"main_okved"},"operation":"EQUAL","typeCode":"CONST","values":["false"]},{"column":{"schema":"public","table":"org_okved","entity":"org_okved","name":"main_okved"},"operation":"IS_NULL","typeCode":"CONST","values":[null]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"org_okved":{"tableName":"org_okved","schemaName":"public","x":387.20000000000005,"y":282.4,"alias":"org_okved","conditionGroup":{"operator":"OR","conditions":[{"column":{"schema":"public","table":"org_okved","entity":"org_okved","name":"main_okved"},"operation":"EQUAL","typeCode":"CONST","values":["false"]},{"column":{"schema":"public","table":"org_okved","entity":"org_okved","name":"main_okved"},"operation":"IS_NULL","typeCode":"CONST","values":[null]}],"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="efc6f03c-2dda-4f18-9486-184b2437d76d">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>efc6f03c-2dda-4f18-9486-184b2437d76d</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>displayColumns</key>
<value>
<item id="1fcc8084-6f93-42fd-80f4-61defe451897" removed="false">
<value>
<complex>
<entry>
<key>entityColumn</key>
<value>
<simple>{"schema":"public","table":"org_okved","entity":"org_okved","name":"code"}</simple>
</value>
</entry>
<entry>
<key>postfix</key>
<value>
<simple>" "</simple>
</value>
</entry>
</complex>
</value>
</item>
<item id="4b348c07-e14d-46cc-8c1d-0e079ebebc4c" removed="false">
<value>
<complex>
<entry>
<key>entityColumn</key>
<value>
<simple>{"schema":"public","table":"org_okved","entity":"org_okved","name":"okved"}</simple>
</value>
</entry>
</complex>
</value>
</item>
</value>
</entry>
<entry>
<key>displayType</key>
<value>
<simple>"MULTI_COLUMN"</simple>
</value>
</entry>
</properties>
</scripts>
</children>
</children>
<children id="1331071a-d356-4bbb-85b9-b207e0fb4901">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
@ -1099,13 +1313,6 @@
<container>true</container>
<removed>true</removed>
</children>
<children id="07ce2296-3c91-4887-aa46-fd79cad082c8">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>07ce2296-3c91-4887-aa46-fd79cad082c8</componentRootId>
<name>Почтовый адрес</name>
<container>false</container>
<removed>true</removed>
</children>
</children>
</children>
</children>
@ -1141,13 +1348,6 @@
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380"/>
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f"/>
<scripts id="277e6fbc-9e2e-4080-bf20-5d8be18e6764"/>
<children id="e173df16-9759-4708-b9da-041722b87810">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>e173df16-9759-4708-b9da-041722b87810</componentRootId>
<name>FS - (количество дней до явки в военкомат)</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="51cdc197-5c6b-411a-95b3-2833045a7c96">
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
<componentRootId>51cdc197-5c6b-411a-95b3-2833045a7c96</componentRootId>