Правки. обновление бд

This commit is contained in:
Фоат Саляхов 2024-12-03 13:08:55 +03:00
parent 50920c1404
commit cea93f76a4
10 changed files with 385 additions and 223 deletions

View file

@ -86,7 +86,7 @@ public class Actualization extends SchemaImpl {
public final InfoSentToLkEpgu INFO_SENT_TO_LK_EPGU = InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU;
/**
* Актуализация. Записей обновленных на овновании заявлений граждан
* Актуализация. Записей граждан отредактировано
*/
public final RecordsAboutCitizen RECORDS_ABOUT_CITIZEN = RecordsAboutCitizen.RECORDS_ABOUT_CITIZEN;

View file

@ -70,7 +70,7 @@ public class Tables {
public static final InfoSentToLkEpgu INFO_SENT_TO_LK_EPGU = InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU;
/**
* Актуализация. Записей обновленных на овновании заявлений граждан
* Актуализация. Записей граждан отредактировано
*/
public static final RecordsAboutCitizen RECORDS_ABOUT_CITIZEN = RecordsAboutCitizen.RECORDS_ABOUT_CITIZEN;

View file

@ -139,6 +139,13 @@ public class ApplicationsReceivedFromEpgu extends TableImpl<ApplicationsReceived
*/
public final TableField<ApplicationsReceivedFromEpguRecord, Long> COUNT_PROVIDED = createField(DSL.name("count_provided"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "Услуга по заявлению оказана");
/**
* The column
* <code>actualization.applications_received_from_epgu.count_received_department</code>.
* получено Ведомством
*/
public final TableField<ApplicationsReceivedFromEpguRecord, Long> COUNT_RECEIVED_DEPARTMENT = createField(DSL.name("count_received_department"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "получено Ведомством");
private ApplicationsReceivedFromEpgu(Name alias, Table<ApplicationsReceivedFromEpguRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}

View file

@ -39,7 +39,7 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.Recruitmen
/**
* Актуализация. Записей обновленных на овновании заявлений граждан
* Актуализация. Записей граждан отредактировано
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class RecordsAboutCitizen extends TableImpl<RecordsAboutCitizenRecord> {
@ -84,16 +84,16 @@ public class RecordsAboutCitizen extends TableImpl<RecordsAboutCitizenRecord> {
/**
* The column
* <code>actualization.records_about_citizen.count_records_updated</code>.
* <code>actualization.records_about_citizen.count_records_edit</code>.
*/
public final TableField<RecordsAboutCitizenRecord, Long> COUNT_RECORDS_UPDATED = createField(DSL.name("count_records_updated"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
public final TableField<RecordsAboutCitizenRecord, Long> COUNT_RECORDS_EDIT = createField(DSL.name("count_records_edit"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
private RecordsAboutCitizen(Name alias, Table<RecordsAboutCitizenRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private RecordsAboutCitizen(Name alias, Table<RecordsAboutCitizenRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment("Актуализация. Записей обновленных на овновании заявлений граждан"), TableOptions.table(), where);
super(alias, null, aliased, parameters, DSL.comment("Актуализация. Записей граждан отредактировано"), TableOptions.table(), where);
}
/**

View file

@ -97,6 +97,12 @@ public class ViewApplicationsReceivedFromEpgu extends TableImpl<ViewApplications
*/
public final TableField<ViewApplicationsReceivedFromEpguRecord, BigDecimal> PERCENT_PROVIDED = createField(DSL.name("percent_provided"), SQLDataType.NUMERIC, this, "");
/**
* The column
* <code>actualization.view_applications_received_from_epgu.percent_received_department</code>.
*/
public final TableField<ViewApplicationsReceivedFromEpguRecord, BigDecimal> PERCENT_RECEIVED_DEPARTMENT = createField(DSL.name("percent_received_department"), SQLDataType.NUMERIC, this, "");
private ViewApplicationsReceivedFromEpgu(Name alias, Table<ViewApplicationsReceivedFromEpguRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
@ -110,7 +116,8 @@ public class ViewApplicationsReceivedFromEpgu extends TableImpl<ViewApplications
round((((applications_received_from_epgu.count_registered)::numeric * (100)::numeric) / (applications_received_from_epgu.count_all)::numeric)) AS percent_registered,
round((((applications_received_from_epgu.count_registration_refusal)::numeric * (100)::numeric) / (applications_received_from_epgu.count_all)::numeric)) AS percent_registration_refusal,
round((((applications_received_from_epgu.count_refusal_provide_service)::numeric * (100)::numeric) / (applications_received_from_epgu.count_all)::numeric)) AS percent_refusal_provide_service,
round((((applications_received_from_epgu.count_provided)::numeric * (100)::numeric) / (applications_received_from_epgu.count_all)::numeric)) AS percent_provided
round((((applications_received_from_epgu.count_provided)::numeric * (100)::numeric) / (applications_received_from_epgu.count_all)::numeric)) AS percent_provided,
round((((applications_received_from_epgu.count_received_department)::numeric * (100)::numeric) / (applications_received_from_epgu.count_all)::numeric)) AS percent_received_department
FROM actualization.applications_received_from_epgu;
"""), where);
}

View file

@ -227,6 +227,24 @@ public class ApplicationsReceivedFromEpguRecord extends UpdatableRecordImpl<Appl
return (Long) get(11);
}
/**
* Setter for
* <code>actualization.applications_received_from_epgu.count_received_department</code>.
* получено Ведомством
*/
public void setCountReceivedDepartment(Long value) {
set(12, value);
}
/**
* Getter for
* <code>actualization.applications_received_from_epgu.count_received_department</code>.
* получено Ведомством
*/
public Long getCountReceivedDepartment() {
return (Long) get(12);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@ -250,7 +268,7 @@ public class ApplicationsReceivedFromEpguRecord extends UpdatableRecordImpl<Appl
/**
* Create a detached, initialised ApplicationsReceivedFromEpguRecord
*/
public ApplicationsReceivedFromEpguRecord(Long applicationsReceivedFromEpguId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countAll, Long countExecutorAppointed, Long countExecutorNotAppointedExpired, Long countExecutorNotAppointedOnTime, Long countRegistered, Long countRegistrationRefusal, Long countRefusalProvideService, Long countProvided) {
public ApplicationsReceivedFromEpguRecord(Long applicationsReceivedFromEpguId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countAll, Long countExecutorAppointed, Long countExecutorNotAppointedExpired, Long countExecutorNotAppointedOnTime, Long countRegistered, Long countRegistrationRefusal, Long countRefusalProvideService, Long countProvided, Long countReceivedDepartment) {
super(ApplicationsReceivedFromEpgu.APPLICATIONS_RECEIVED_FROM_EPGU);
setApplicationsReceivedFromEpguId(applicationsReceivedFromEpguId);
@ -265,6 +283,7 @@ public class ApplicationsReceivedFromEpguRecord extends UpdatableRecordImpl<Appl
setCountRegistrationRefusal(countRegistrationRefusal);
setCountRefusalProvideService(countRefusalProvideService);
setCountProvided(countProvided);
setCountReceivedDepartment(countReceivedDepartment);
resetChangedOnNotNull();
}
}

View file

@ -14,7 +14,7 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.actualization.tables.Reco
/**
* Актуализация. Записей обновленных на овновании заявлений граждан
* Актуализация. Записей граждан отредактировано
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class RecordsAboutCitizenRecord extends UpdatableRecordImpl<RecordsAboutCitizenRecord> {
@ -83,17 +83,17 @@ public class RecordsAboutCitizenRecord extends UpdatableRecordImpl<RecordsAboutC
/**
* Setter for
* <code>actualization.records_about_citizen.count_records_updated</code>.
* <code>actualization.records_about_citizen.count_records_edit</code>.
*/
public void setCountRecordsUpdated(Long value) {
public void setCountRecordsEdit(Long value) {
set(4, value);
}
/**
* Getter for
* <code>actualization.records_about_citizen.count_records_updated</code>.
* <code>actualization.records_about_citizen.count_records_edit</code>.
*/
public Long getCountRecordsUpdated() {
public Long getCountRecordsEdit() {
return (Long) get(4);
}
@ -120,14 +120,14 @@ public class RecordsAboutCitizenRecord extends UpdatableRecordImpl<RecordsAboutC
/**
* Create a detached, initialised RecordsAboutCitizenRecord
*/
public RecordsAboutCitizenRecord(Long recordsAboutCitizenId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countRecordsUpdated) {
public RecordsAboutCitizenRecord(Long recordsAboutCitizenId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countRecordsEdit) {
super(RecordsAboutCitizen.RECORDS_ABOUT_CITIZEN);
setRecordsAboutCitizenId(recordsAboutCitizenId);
setRecruitmentId(recruitmentId);
setUpdateDate(updateDate);
setInfoDate(infoDate);
setCountRecordsUpdated(countRecordsUpdated);
setCountRecordsEdit(countRecordsEdit);
resetChangedOnNotNull();
}
}

View file

@ -147,6 +147,22 @@ public class ViewApplicationsReceivedFromEpguRecord extends TableRecordImpl<View
return (BigDecimal) get(7);
}
/**
* Setter for
* <code>actualization.view_applications_received_from_epgu.percent_received_department</code>.
*/
public void setPercentReceivedDepartment(BigDecimal value) {
set(8, value);
}
/**
* Getter for
* <code>actualization.view_applications_received_from_epgu.percent_received_department</code>.
*/
public BigDecimal getPercentReceivedDepartment() {
return (BigDecimal) get(8);
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
@ -161,7 +177,7 @@ public class ViewApplicationsReceivedFromEpguRecord extends TableRecordImpl<View
/**
* Create a detached, initialised ViewApplicationsReceivedFromEpguRecord
*/
public ViewApplicationsReceivedFromEpguRecord(Long applicationsReceivedFromEpguId, BigDecimal percentExecutorAppointed, BigDecimal percentExecutorNotAppointedExpired, BigDecimal percentExecutorNotAppointedOnTime, BigDecimal percentRegistered, BigDecimal percentRegistrationRefusal, BigDecimal percentRefusalProvideService, BigDecimal percentProvided) {
public ViewApplicationsReceivedFromEpguRecord(Long applicationsReceivedFromEpguId, BigDecimal percentExecutorAppointed, BigDecimal percentExecutorNotAppointedExpired, BigDecimal percentExecutorNotAppointedOnTime, BigDecimal percentRegistered, BigDecimal percentRegistrationRefusal, BigDecimal percentRefusalProvideService, BigDecimal percentProvided, BigDecimal percentReceivedDepartment) {
super(ViewApplicationsReceivedFromEpgu.VIEW_APPLICATIONS_RECEIVED_FROM_EPGU);
setApplicationsReceivedFromEpguId(applicationsReceivedFromEpguId);
@ -172,6 +188,7 @@ public class ViewApplicationsReceivedFromEpguRecord extends TableRecordImpl<View
setPercentRegistrationRefusal(percentRegistrationRefusal);
setPercentRefusalProvideService(percentRefusalProvideService);
setPercentProvided(percentProvided);
setPercentReceivedDepartment(percentReceivedDepartment);
resetChangedOnNotNull();
}
}

View file

@ -6,7 +6,7 @@
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-1.9.xsd">
<changeSet id="0001" author="saliakhov">
<changeSet id="0001" author="saliakhov">
<comment>Добавление колонки в таблицу и представление</comment>
<sql>
ALTER TABLE actualization.applications_received_from_epgu ADD COLUMN IF NOT EXISTS count_received_department BIGINT NOT NULL DEFAULT 0;
@ -27,8 +27,15 @@
FROM actualization.applications_received_from_epgu;
</sql>
</changeSet>
<changeSet id="0002" author="saliakhov">
<comment>edit view_criminal_administrative_liability</comment>
<sql>
ALTER TABLE actualization.records_about_citizen ALTER COLUMN count_records_edit SET NOT NULL;
COMMENT ON TABLE actualization.records_about_citizen IS 'Актуализация. Записей граждан отредактировано';
</sql>
</changeSet>
</databaseChangeLog>

View file

@ -2398,7 +2398,6 @@
<componentRootId>73edb92d-c817-499a-b50e-e04d4bde5f7b</componentRootId>
<name>ВК ГИР ВУ</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
@ -2410,7 +2409,6 @@
<componentRootId>9bc6be2e-cff9-48ca-8aab-280a3f290a23</componentRootId>
<name>ГК Первый ряд</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -2642,13 +2640,6 @@
<enabled>false</enabled>
</scripts>
</children>
<children id="232dec8a-c2f3-430a-ac46-bc0803e57d1b">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>232dec8a-c2f3-430a-ac46-bc0803e57d1b</componentRootId>
<name>ГК записей с изменениями сведений, в т.ч. по следующим причинам:</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="c3cbad6b-966f-41de-b01c-561ab80324fc">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>c3cbad6b-966f-41de-b01c-561ab80324fc</componentRootId>
@ -3375,13 +3366,6 @@
</scripts>
</children>
</children>
<children id="b9204c93-e589-44c8-9275-3d1871ee1b76">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>b9204c93-e589-44c8-9275-3d1871ee1b76</componentRootId>
<name>записей с изменениями сведений, в т.ч. по следующим причинам:</name>
<container>false</container>
<removed>true</removed>
</children>
</children>
<children id="25125fbe-f4ff-4747-ad7a-686afff4c8eb">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
@ -5112,6 +5096,7 @@
<componentRootId>5593e46a-2e37-465f-884f-ca0e3138c6a5</componentRootId>
<name>ГК Отправка уведомлений в ЛК гражданина на ЕПГУ</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -5893,27 +5878,6 @@
</properties>
</scripts>
</children>
</children>
<children id="4a919a12-de06-4cad-9bb6-4bad256fb276">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>4a919a12-de06-4cad-9bb6-4bad256fb276</componentRootId>
<name>Vbox%</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="9dc18566-4e6a-401d-9e04-fc5fd5493b4a">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>9dc18566-4e6a-401d-9e04-fc5fd5493b4a</componentRootId>
<name>VboxValue</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="6bf2df76-48ce-4754-89ee-b6519e37f501">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>6bf2df76-48ce-4754-89ee-b6519e37f501</componentRootId>
<name>ВК Показатели</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="47396a2a-08e4-4748-8356-f4e282064493">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
@ -7274,6 +7238,7 @@
<componentRootId>d17e6df1-babb-4dbb-9b29-0400277e0776</componentRootId>
<name>ГК Первый ряд</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -7505,13 +7470,6 @@
<enabled>false</enabled>
</scripts>
</children>
<children id="3abb8889-766b-45e1-89e0-2407d1192ffb">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>3abb8889-766b-45e1-89e0-2407d1192ffb</componentRootId>
<name>ГК заявлений поступило из ЕПГУ, в т.ч. по следующим причинам:</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="a9ab71a9-1c51-4c87-92c8-67b024fe3348">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>a9ab71a9-1c51-4c87-92c8-67b024fe3348</componentRootId>
@ -9367,13 +9325,6 @@
</children>
</children>
</children>
</children>
<children id="dca8de28-eb35-40ac-9d38-46e38a95f007">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>dca8de28-eb35-40ac-9d38-46e38a95f007</componentRootId>
<name>ГК Заявления, поступившие из ЕПГУ</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="e4e36b61-1122-4cc2-8966-335844cf7566">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
@ -11582,13 +11533,6 @@
<scripts id="fe04d7fb-6c5b-46c4-b723-667732d81f4f"/>
<scripts id="5c566210-2a60-4048-a2d1-84c7dd023248"/>
<scripts id="3171b2e1-b4af-4335-95fa-1b2592604b84"/>
<children id="8e66d0e3-f74e-4126-b3cb-a0440304468f">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>8e66d0e3-f74e-4126-b3cb-a0440304468f</componentRootId>
<name>ВК</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="d8261db8-efca-4fbe-b841-d9305b4fa54a">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>d8261db8-efca-4fbe-b841-d9305b4fa54a</componentRootId>
@ -12376,27 +12320,6 @@
</properties>
</scripts>
</children>
</children>
<children id="67b04a52-0d17-4a9f-8c73-edd8efcf7912">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>67b04a52-0d17-4a9f-8c73-edd8efcf7912</componentRootId>
<name>Vbox%</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="cbbad05d-4b70-4d41-aab7-64ea6dcbe4d2">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>cbbad05d-4b70-4d41-aab7-64ea6dcbe4d2</componentRootId>
<name>VboxValue</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="6d5639ef-5395-44f3-8a8c-4aa077c3435a">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>6d5639ef-5395-44f3-8a8c-4aa077c3435a</componentRootId>
<name>ВК Показатели</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="db38e77d-b9d1-474c-bb13-850e25b69e33">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
@ -13950,13 +13873,6 @@
<enabled>false</enabled>
</scripts>
</children>
<children id="8d210b45-f8a4-443d-b3e1-34990a746016">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>8d210b45-f8a4-443d-b3e1-34990a746016</componentRootId>
<name>Hbox</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="2a329c6b-a8c8-44fc-a430-18680d86adeb">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>2a329c6b-a8c8-44fc-a430-18680d86adeb</componentRootId>
@ -14302,27 +14218,6 @@
</properties>
</scripts>
</children>
</children>
<children id="0bad1580-47a4-46d4-9556-048273647754">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>0bad1580-47a4-46d4-9556-048273647754</componentRootId>
<name>Vbox%</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="d54307ed-0d81-4ff4-b226-75b7feaa3807">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>d54307ed-0d81-4ff4-b226-75b7feaa3807</componentRootId>
<name>VboxValue</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="d27b8269-0fa3-4090-ad6f-0363e230f3d8">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>d27b8269-0fa3-4090-ad6f-0363e230f3d8</componentRootId>
<name>ВК Показатели</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="63555de1-b489-4349-9577-d58035d46a11">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
@ -15166,6 +15061,7 @@
<componentRootId>683da71b-655f-45c5-b5fe-da914b814cc2</componentRootId>
<name>ВК Личное посещение ВК</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
@ -15872,27 +15768,6 @@
</properties>
</scripts>
</children>
</children>
<children id="3395dff6-27a2-4713-81fc-c29711be0163">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>3395dff6-27a2-4713-81fc-c29711be0163</componentRootId>
<name>Vbox%</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="a01a6944-f056-4f61-91aa-62c95b7d2bdc">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>a01a6944-f056-4f61-91aa-62c95b7d2bdc</componentRootId>
<name>VboxValue</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="c7e834b0-821b-4773-aa43-87b97146727e">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>c7e834b0-821b-4773-aa43-87b97146727e</componentRootId>
<name>ВК Показатели</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="f9716b7b-4e12-49cd-ab8e-49e4e27c2ebd">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
@ -16721,11 +16596,315 @@
<removed>true</removed>
</children>
</children>
<children id="08c9fc47-4f2e-428e-adf8-eb30f0d8b91d">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>08c9fc47-4f2e-428e-adf8-eb30f0d8b91d</componentRootId>
<name>ВК записей обновлено на основании заявлений граждан</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="c3960f38-b0dd-4375-b1de-7af7bb6f636d" removed="false">
<value>
<simple>"block-colored"</simple>
</value>
</item>
<item id="325c02c0-c996-481b-97af-9a461960f69b" removed="false">
<value>
<simple>"colored-green"</simple>
</value>
</item>
<item id="86ae9308-5ba5-4591-96cc-0d20aa3f105d" removed="false">
<value>
<simple>"block-section"</simple>
</value>
</item>
<item id="3e762ce5-2ed4-4b06-b6d5-91ebdb3c7bca" removed="true"/>
</value>
</entry>
<entry>
<key>style</key>
<value>
<complex>
<entry>
<key>width</key>
<value>
<simple>"50%"</simple>
</value>
</entry>
</complex>
</value>
</entry>
</properties>
</scripts>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e">
<enabled>true</enabled>
<properties>
<entry>
<key>service</key>
<value>
<complex>
<entry>
<key>loadDao</key>
<value>
<complex>
<entry>
<key>graph</key>
<value>
<simple>{"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"recruitment","schemaName":"metrics","x":170.0,"y":175.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"1":{"tableName":"records_about_citizen","schemaName":"actualization","x":376.0,"y":145.0,"alias":"records_about_citizen","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"recruitment","schemaName":"metrics","x":170.0,"y":175.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"records_about_citizen","schemaName":"actualization","x":376.0,"y":145.0,"alias":"records_about_citizen","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"recruitment":{"tableName":"recruitment","schemaName":"metrics","x":170.0,"y":175.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"records_about_citizen":{"tableName":"records_about_citizen","schemaName":"actualization","x":376.0,"y":145.0,"alias":"records_about_citizen","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null,null],[{"refOnEntityName":"records_about_citizen","refToEntityName":"recruitment","refToColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"id"}],"refOnColumns":[{"schema":"actualization","table":"records_about_citizen","entity":"records_about_citizen","name":"recruitment_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}},null]],"mainNodeIndex":1}</simple>
</value>
</entry>
</complex>
<implRef type="JAVA">
<className>DefaultLoadDao</className>
<packageName>database.dao</packageName>
</implRef>
</value>
</entry>
</complex>
<implRef type="JAVA">
<className>ProjectDefaultValueLoaderServiceImpl</className>
<packageName>service.loading</packageName>
</implRef>
</value>
</entry>
</properties>
</scripts>
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380">
<enabled>true</enabled>
</scripts>
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f">
<enabled>true</enabled>
<properties>
<entry>
<key>eventRefs</key>
<value>
<item id="e26ff5bb-0e14-4ce6-823f-f9200d63edb5" removed="false">
<value>
<complex>
<entry>
<key>behavior</key>
<value>
<simple>{"objectId":"70bf50c3-2a4c-4069-a5d2-fdd66b81e5e1","packageName":"component.field","className":"ComboBox","type":"TS"}</simple>
</value>
</entry>
<entry>
<key>propertyName</key>
<value>
<simple>"valueChangeEvent"</simple>
</value>
</entry>
</complex>
</value>
</item>
</value>
</entry>
<entry>
<key>loadParams</key>
<value>
<item id="24e20586-2707-4d96-94aa-67e43d97c4b2" removed="false">
<value>
<complex>
<entry>
<key>objectValue</key>
<value>
<complex>
<entry>
<key>argument</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>behavior</key>
<value>
<simple>{"objectId":"70bf50c3-2a4c-4069-a5d2-fdd66b81e5e1","packageName":"component.field","className":"ComboBox","type":"TS"}</simple>
</value>
</entry>
<entry>
<key>method</key>
<value>
<simple>"getBusinessId"</simple>
</value>
</entry>
</complex>
</value>
</entry>
</complex>
</value>
</item>
</value>
</entry>
</properties>
</scripts>
<scripts id="277e6fbc-9e2e-4080-bf20-5d8be18e6764">
<enabled>true</enabled>
<properties>
<entry>
<key>containerValueLoaderService</key>
<value>
<complex>
<entry>
<key>loadDao</key>
<value>
<complex>
<entry>
<key>graph</key>
<value>
<simple>{"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"recruitment","schemaName":"metrics","x":142.0,"y":119.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"1":{"tableName":"records_about_citizen","schemaName":"actualization","x":402.0,"y":109.0,"alias":"records_about_citizen","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"recruitment","schemaName":"metrics","x":142.0,"y":119.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"records_about_citizen","schemaName":"actualization","x":402.0,"y":109.0,"alias":"records_about_citizen","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"recruitment":{"tableName":"recruitment","schemaName":"metrics","x":142.0,"y":119.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"records_about_citizen":{"tableName":"records_about_citizen","schemaName":"actualization","x":402.0,"y":109.0,"alias":"records_about_citizen","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null,null],[{"refOnEntityName":"records_about_citizen","refToEntityName":"recruitment","refToColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"id"}],"refOnColumns":[{"schema":"actualization","table":"records_about_citizen","entity":"records_about_citizen","name":"recruitment_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}},null]],"mainNodeIndex":1}</simple>
</value>
</entry>
</complex>
<implRef type="JAVA">
<className>DefaultLoadDao</className>
<packageName>database.dao</packageName>
</implRef>
</value>
</entry>
<entry>
<key>replacePkColumn</key>
<value>
<simple>{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"}</simple>
</value>
</entry>
</complex>
<implRef type="JAVA">
<className>ContainerByPkValueLoaderServiceImpl</className>
<packageName>service.loading</packageName>
</implRef>
</value>
</entry>
</properties>
</scripts>
<children id="982d7a50-d22c-457f-b0e3-e3106a8b34b8">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>982d7a50-d22c-457f-b0e3-e3106a8b34b8</componentRootId>
<name>1 250</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="01458631-7ada-43c5-84fe-ede4e37a2e2f" removed="false">
<value>
<simple>"title"</simple>
</value>
</item>
</value>
</entry>
<entry>
<key>initialValue</key>
<value>
<simple>null</simple>
</value>
</entry>
</properties>
</scripts>
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048">
<properties>
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"actualization","table":"records_about_citizen","entity":"records_about_citizen","name":"count_records_updated"}</simple>
</value>
</entry>
<entry>
<key>loadType</key>
<value>
<simple>"BY_COLUMN"</simple>
</value>
</entry>
</properties>
</scripts>
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127">
<properties>
<entry>
<key>loadType</key>
<value>
<simple>"BY_COLUMN"</simple>
</value>
</entry>
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"actualization","table":"records_about_citizen","entity":"records_about_citizen","name":"count_records_updated"}</simple>
</value>
</entry>
</properties>
</scripts>
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
<enabled>false</enabled>
</scripts>
</children>
<children id="9fb04031-8d6c-4c8d-b19c-94ff597a296f">
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
<componentRootId>9fb04031-8d6c-4c8d-b19c-94ff597a296f</componentRootId>
<name>записей обновлено на основании заявлений граждан</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
<properties>
<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>
<children id="226678e0-9e95-4304-9471-b16269103b90">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>226678e0-9e95-4304-9471-b16269103b90</componentRootId>
<name>ГК Отправка уведомлений в ЛК гражданина на ЕПГУ</name>
<container>true</container>
<removed>true</removed>
</children>
</children>
<children id="45cf2023-1dee-46de-8a23-5160ff54a4d8">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>45cf2023-1dee-46de-8a23-5160ff54a4d8</componentRootId>
<name>ГК Второй ряд</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="45d30760-9a2f-420d-8892-506e7bf4cbe5" removed="false">
<value>
<simple>"group-section"</simple>
</value>
</item>
</value>
</entry>
</properties>
</scripts>
<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="226678e0-9e95-4304-9471-b16269103b90">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>226678e0-9e95-4304-9471-b16269103b90</componentRootId>
<name>ГК Отправка уведомлений в ЛК гражданина на ЕПГУ</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -17508,27 +17687,6 @@
</properties>
</scripts>
</children>
</children>
<children id="3d2faf40-83bc-4080-be8f-a6f1d1d2decd">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>3d2faf40-83bc-4080-be8f-a6f1d1d2decd</componentRootId>
<name>Vbox%</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="60287bea-f169-451d-9348-951220823e2b">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>60287bea-f169-451d-9348-951220823e2b</componentRootId>
<name>VboxValue</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="3d3611ce-770a-4fed-8c58-a6b94ae40c88">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>3d3611ce-770a-4fed-8c58-a6b94ae40c88</componentRootId>
<name>ВК Показатели</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="a569d7de-b621-4541-84c4-cc543681bd72">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
@ -18862,37 +19020,12 @@
<removed>true</removed>
</children>
</children>
</children>
<children id="45cf2023-1dee-46de-8a23-5160ff54a4d8">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>45cf2023-1dee-46de-8a23-5160ff54a4d8</componentRootId>
<name>ГК Второй ряд</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>cssClasses</key>
<value>
<item id="45d30760-9a2f-420d-8892-506e7bf4cbe5" removed="false">
<value>
<simple>"group-section"</simple>
</value>
</item>
</value>
</entry>
</properties>
</scripts>
<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="97ca883e-50c3-4bf3-ab0d-ec52ee80b139">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>97ca883e-50c3-4bf3-ab0d-ec52ee80b139</componentRootId>
<name>ВК Инциденты</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -19101,13 +19234,6 @@
<enabled>false</enabled>
</scripts>
</children>
<children id="36507fba-3345-4f92-af2a-59e268052bb0">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>36507fba-3345-4f92-af2a-59e268052bb0</componentRootId>
<name>Hbox</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="12691ab9-6ade-474d-943e-a283c148d81c">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
<componentRootId>12691ab9-6ade-474d-943e-a283c148d81c</componentRootId>
@ -20131,28 +20257,7 @@
<componentRootId>e6eb2c3e-dc13-4c9d-8c09-6fe3dd17b5f1</componentRootId>
<name>ВК</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
<entry>
<key>style</key>
<value>
<complex>
<entry>
<key>width</key>
<value>
<simple>"50%"</simple>
</value>
</entry>
</complex>
</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"/>
<scripts id="277e6fbc-9e2e-4080-bf20-5d8be18e6764"/>
<removed>true</removed>
</children>
</children>
</children>