корректировка бд и графиков

This commit is contained in:
Фоат Саляхов 2024-12-11 11:16:06 +03:00
parent a7b9a6855b
commit 1d62446151
18 changed files with 225 additions and 281 deletions

View file

@ -84,12 +84,6 @@ public class ChangeDataPersonalVisit extends TableImpl<ChangeDataPersonalVisitRe
*/
public final TableField<ChangeDataPersonalVisitRecord, Date> INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, "");
/**
* The column
* <code>actualization.change_data_personal_visit.count_edited</code>.
*/
public final TableField<ChangeDataPersonalVisitRecord, Long> COUNT_EDITED = createField(DSL.name("count_edited"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>actualization.change_data_personal_visit.count_for_sign</code>.

View file

@ -61,12 +61,6 @@ public class ViewChangeDataPersonalVisit extends TableImpl<ViewChangeDataPersona
*/
public final TableField<ViewChangeDataPersonalVisitRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>actualization.view_change_data_personal_visit.percent_edited</code>.
*/
public final TableField<ViewChangeDataPersonalVisitRecord, BigDecimal> PERCENT_EDITED = createField(DSL.name("percent_edited"), SQLDataType.NUMERIC, this, "");
/**
* The column
* <code>actualization.view_change_data_personal_visit.percent_for_sign</code>.
@ -93,16 +87,14 @@ public class ViewChangeDataPersonalVisit extends TableImpl<ViewChangeDataPersona
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "view_change_data_personal_visit" as SELECT t.change_data_personal_visit_id,
t.count_all,
round((((t.count_edited)::numeric * (100)::numeric) / (t.count_all)::numeric)) AS percent_edited,
round((((t.count_for_sign)::numeric * (100)::numeric) / (t.count_all)::numeric)) AS percent_for_sign,
round((((t.count_signed)::numeric * (100)::numeric) / (t.count_all)::numeric)) AS percent_signed,
round((((t.count_refused)::numeric * (100)::numeric) / (t.count_all)::numeric)) AS percent_refused
FROM ( SELECT (((change_data_personal_visit.count_edited + change_data_personal_visit.count_for_sign) + change_data_personal_visit.count_signed) + change_data_personal_visit.count_refused) AS count_all,
FROM ( SELECT ((change_data_personal_visit.count_for_sign + change_data_personal_visit.count_signed) + change_data_personal_visit.count_refused) AS count_all,
change_data_personal_visit.change_data_personal_visit_id,
change_data_personal_visit.recruitment_id,
change_data_personal_visit.update_date,
change_data_personal_visit.info_date,
change_data_personal_visit.count_edited,
change_data_personal_visit.count_for_sign,
change_data_personal_visit.count_signed,
change_data_personal_visit.count_refused

View file

@ -85,28 +85,12 @@ public class ChangeDataPersonalVisitRecord extends UpdatableRecordImpl<ChangeDat
return (Date) get(3);
}
/**
* Setter for
* <code>actualization.change_data_personal_visit.count_edited</code>.
*/
public void setCountEdited(Long value) {
set(4, value);
}
/**
* Getter for
* <code>actualization.change_data_personal_visit.count_edited</code>.
*/
public Long getCountEdited() {
return (Long) get(4);
}
/**
* Setter for
* <code>actualization.change_data_personal_visit.count_for_sign</code>.
*/
public void setCountForSign(Long value) {
set(5, value);
set(4, value);
}
/**
@ -114,7 +98,7 @@ public class ChangeDataPersonalVisitRecord extends UpdatableRecordImpl<ChangeDat
* <code>actualization.change_data_personal_visit.count_for_sign</code>.
*/
public Long getCountForSign() {
return (Long) get(5);
return (Long) get(4);
}
/**
@ -122,7 +106,7 @@ public class ChangeDataPersonalVisitRecord extends UpdatableRecordImpl<ChangeDat
* <code>actualization.change_data_personal_visit.count_signed</code>.
*/
public void setCountSigned(Long value) {
set(6, value);
set(5, value);
}
/**
@ -130,7 +114,7 @@ public class ChangeDataPersonalVisitRecord extends UpdatableRecordImpl<ChangeDat
* <code>actualization.change_data_personal_visit.count_signed</code>.
*/
public Long getCountSigned() {
return (Long) get(6);
return (Long) get(5);
}
/**
@ -138,7 +122,7 @@ public class ChangeDataPersonalVisitRecord extends UpdatableRecordImpl<ChangeDat
* <code>actualization.change_data_personal_visit.count_refused</code>.
*/
public void setCountRefused(Long value) {
set(7, value);
set(6, value);
}
/**
@ -146,7 +130,7 @@ public class ChangeDataPersonalVisitRecord extends UpdatableRecordImpl<ChangeDat
* <code>actualization.change_data_personal_visit.count_refused</code>.
*/
public Long getCountRefused() {
return (Long) get(7);
return (Long) get(6);
}
// -------------------------------------------------------------------------
@ -172,14 +156,13 @@ public class ChangeDataPersonalVisitRecord extends UpdatableRecordImpl<ChangeDat
/**
* Create a detached, initialised ChangeDataPersonalVisitRecord
*/
public ChangeDataPersonalVisitRecord(Long changeDataPersonalVisitId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countEdited, Long countForSign, Long countSigned, Long countRefused) {
public ChangeDataPersonalVisitRecord(Long changeDataPersonalVisitId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countForSign, Long countSigned, Long countRefused) {
super(ChangeDataPersonalVisit.CHANGE_DATA_PERSONAL_VISIT);
setChangeDataPersonalVisitId(changeDataPersonalVisitId);
setRecruitmentId(recruitmentId);
setUpdateDate(updateDate);
setInfoDate(infoDate);
setCountEdited(countEdited);
setCountForSign(countForSign);
setCountSigned(countSigned);
setCountRefused(countRefused);

View file

@ -51,28 +51,12 @@ public class ViewChangeDataPersonalVisitRecord extends TableRecordImpl<ViewChang
return (Long) get(1);
}
/**
* Setter for
* <code>actualization.view_change_data_personal_visit.percent_edited</code>.
*/
public void setPercentEdited(BigDecimal value) {
set(2, value);
}
/**
* Getter for
* <code>actualization.view_change_data_personal_visit.percent_edited</code>.
*/
public BigDecimal getPercentEdited() {
return (BigDecimal) get(2);
}
/**
* Setter for
* <code>actualization.view_change_data_personal_visit.percent_for_sign</code>.
*/
public void setPercentForSign(BigDecimal value) {
set(3, value);
set(2, value);
}
/**
@ -80,7 +64,7 @@ public class ViewChangeDataPersonalVisitRecord extends TableRecordImpl<ViewChang
* <code>actualization.view_change_data_personal_visit.percent_for_sign</code>.
*/
public BigDecimal getPercentForSign() {
return (BigDecimal) get(3);
return (BigDecimal) get(2);
}
/**
@ -88,7 +72,7 @@ public class ViewChangeDataPersonalVisitRecord extends TableRecordImpl<ViewChang
* <code>actualization.view_change_data_personal_visit.percent_signed</code>.
*/
public void setPercentSigned(BigDecimal value) {
set(4, value);
set(3, value);
}
/**
@ -96,7 +80,7 @@ public class ViewChangeDataPersonalVisitRecord extends TableRecordImpl<ViewChang
* <code>actualization.view_change_data_personal_visit.percent_signed</code>.
*/
public BigDecimal getPercentSigned() {
return (BigDecimal) get(4);
return (BigDecimal) get(3);
}
/**
@ -104,7 +88,7 @@ public class ViewChangeDataPersonalVisitRecord extends TableRecordImpl<ViewChang
* <code>actualization.view_change_data_personal_visit.percent_refused</code>.
*/
public void setPercentRefused(BigDecimal value) {
set(5, value);
set(4, value);
}
/**
@ -112,7 +96,7 @@ public class ViewChangeDataPersonalVisitRecord extends TableRecordImpl<ViewChang
* <code>actualization.view_change_data_personal_visit.percent_refused</code>.
*/
public BigDecimal getPercentRefused() {
return (BigDecimal) get(5);
return (BigDecimal) get(4);
}
// -------------------------------------------------------------------------
@ -129,12 +113,11 @@ public class ViewChangeDataPersonalVisitRecord extends TableRecordImpl<ViewChang
/**
* Create a detached, initialised ViewChangeDataPersonalVisitRecord
*/
public ViewChangeDataPersonalVisitRecord(Long changeDataPersonalVisitId, Long countAll, BigDecimal percentEdited, BigDecimal percentForSign, BigDecimal percentSigned, BigDecimal percentRefused) {
public ViewChangeDataPersonalVisitRecord(Long changeDataPersonalVisitId, Long countAll, BigDecimal percentForSign, BigDecimal percentSigned, BigDecimal percentRefused) {
super(ViewChangeDataPersonalVisit.VIEW_CHANGE_DATA_PERSONAL_VISIT);
setChangeDataPersonalVisitId(changeDataPersonalVisitId);
setCountAll(countAll);
setPercentEdited(percentEdited);
setPercentForSign(percentForSign);
setPercentSigned(percentSigned);
setPercentRefused(percentRefused);

View file

@ -100,12 +100,6 @@ public class RecordsInfoIdUkIdErn extends TableImpl<RecordsInfoIdUkIdErnRecord>
*/
public final TableField<RecordsInfoIdUkIdErnRecord, String> INFO_AGE = createField(DSL.name("info_age"), SQLDataType.VARCHAR.nullable(false), this, "Информациия о каком возрасте 17_YEARS, 18_YEARS");
/**
* The column
* <code>init_registration_info.records_info_id_uk_id_ern.count_all</code>.
*/
public final TableField<RecordsInfoIdUkIdErnRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>init_registration_info.records_info_id_uk_id_ern.records_with_id_uk</code>.
@ -118,12 +112,6 @@ public class RecordsInfoIdUkIdErn extends TableImpl<RecordsInfoIdUkIdErnRecord>
*/
public final TableField<RecordsInfoIdUkIdErnRecord, Long> RECORDS_WITHOUT_ID_UK = createField(DSL.name("records_without_id_uk"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>init_registration_info.records_info_id_uk_id_ern.records_with_id_ern</code>.
*/
public final TableField<RecordsInfoIdUkIdErnRecord, Long> RECORDS_WITH_ID_ERN = createField(DSL.name("records_with_id_ern"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
private RecordsInfoIdUkIdErn(Name alias, Table<RecordsInfoIdUkIdErnRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}

View file

@ -55,6 +55,12 @@ public class ViewRecordsInfoIdUkIdErn extends TableImpl<ViewRecordsInfoIdUkIdErn
*/
public final TableField<ViewRecordsInfoIdUkIdErnRecord, Long> RECORDS_INFO_ID_UK_ID_ERN_ID = createField(DSL.name("records_info_id_uk_id_ern_id"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>init_registration_info.view_records_info_id_uk_id_ern.count_all</code>.
*/
public final TableField<ViewRecordsInfoIdUkIdErnRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>init_registration_info.view_records_info_id_uk_id_ern.percent_with_id_uk</code>.
@ -67,12 +73,6 @@ public class ViewRecordsInfoIdUkIdErn extends TableImpl<ViewRecordsInfoIdUkIdErn
*/
public final TableField<ViewRecordsInfoIdUkIdErnRecord, BigDecimal> PERCENT_WITHOUT_ID_UK = createField(DSL.name("percent_without_id_uk"), SQLDataType.NUMERIC, this, "");
/**
* The column
* <code>init_registration_info.view_records_info_id_uk_id_ern.percent_with_id_ern</code>.
*/
public final TableField<ViewRecordsInfoIdUkIdErnRecord, BigDecimal> PERCENT_WITH_ID_ERN = createField(DSL.name("percent_with_id_ern"), SQLDataType.NUMERIC, this, "");
private ViewRecordsInfoIdUkIdErn(Name alias, Table<ViewRecordsInfoIdUkIdErnRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
@ -80,9 +80,9 @@ public class ViewRecordsInfoIdUkIdErn extends TableImpl<ViewRecordsInfoIdUkIdErn
private ViewRecordsInfoIdUkIdErn(Name alias, Table<ViewRecordsInfoIdUkIdErnRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "view_records_info_id_uk_id_ern" as SELECT records_info_id_uk_id_ern.records_info_id_uk_id_ern_id,
round((((records_info_id_uk_id_ern.records_with_id_uk)::numeric * (100)::numeric) / (records_info_id_uk_id_ern.count_all)::numeric)) AS percent_with_id_uk,
round((((records_info_id_uk_id_ern.records_without_id_uk)::numeric * (100)::numeric) / (records_info_id_uk_id_ern.count_all)::numeric)) AS percent_without_id_uk,
round((((records_info_id_uk_id_ern.records_with_id_ern)::numeric * (100)::numeric) / (records_info_id_uk_id_ern.count_all)::numeric)) AS percent_with_id_ern
(records_info_id_uk_id_ern.records_with_id_uk + records_info_id_uk_id_ern.records_without_id_uk) AS count_all,
round((((records_info_id_uk_id_ern.records_with_id_uk)::numeric * (100)::numeric) / ((records_info_id_uk_id_ern.records_with_id_uk + records_info_id_uk_id_ern.records_without_id_uk))::numeric)) AS percent_with_id_uk,
round((((records_info_id_uk_id_ern.records_without_id_uk)::numeric * (100)::numeric) / ((records_info_id_uk_id_ern.records_with_id_uk + records_info_id_uk_id_ern.records_without_id_uk))::numeric)) AS percent_without_id_uk
FROM init_registration_info.records_info_id_uk_id_ern;
"""), where);
}

View file

@ -121,28 +121,12 @@ public class RecordsInfoIdUkIdErnRecord extends UpdatableRecordImpl<RecordsInfoI
return (String) get(5);
}
/**
* Setter for
* <code>init_registration_info.records_info_id_uk_id_ern.count_all</code>.
*/
public void setCountAll(Long value) {
set(6, value);
}
/**
* Getter for
* <code>init_registration_info.records_info_id_uk_id_ern.count_all</code>.
*/
public Long getCountAll() {
return (Long) get(6);
}
/**
* Setter for
* <code>init_registration_info.records_info_id_uk_id_ern.records_with_id_uk</code>.
*/
public void setRecordsWithIdUk(Long value) {
set(7, value);
set(6, value);
}
/**
@ -150,7 +134,7 @@ public class RecordsInfoIdUkIdErnRecord extends UpdatableRecordImpl<RecordsInfoI
* <code>init_registration_info.records_info_id_uk_id_ern.records_with_id_uk</code>.
*/
public Long getRecordsWithIdUk() {
return (Long) get(7);
return (Long) get(6);
}
/**
@ -158,7 +142,7 @@ public class RecordsInfoIdUkIdErnRecord extends UpdatableRecordImpl<RecordsInfoI
* <code>init_registration_info.records_info_id_uk_id_ern.records_without_id_uk</code>.
*/
public void setRecordsWithoutIdUk(Long value) {
set(8, value);
set(7, value);
}
/**
@ -166,23 +150,7 @@ public class RecordsInfoIdUkIdErnRecord extends UpdatableRecordImpl<RecordsInfoI
* <code>init_registration_info.records_info_id_uk_id_ern.records_without_id_uk</code>.
*/
public Long getRecordsWithoutIdUk() {
return (Long) get(8);
}
/**
* Setter for
* <code>init_registration_info.records_info_id_uk_id_ern.records_with_id_ern</code>.
*/
public void setRecordsWithIdErn(Long value) {
set(9, value);
}
/**
* Getter for
* <code>init_registration_info.records_info_id_uk_id_ern.records_with_id_ern</code>.
*/
public Long getRecordsWithIdErn() {
return (Long) get(9);
return (Long) get(7);
}
// -------------------------------------------------------------------------
@ -208,7 +176,7 @@ public class RecordsInfoIdUkIdErnRecord extends UpdatableRecordImpl<RecordsInfoI
/**
* Create a detached, initialised RecordsInfoIdUkIdErnRecord
*/
public RecordsInfoIdUkIdErnRecord(Long recordsInfoIdUkIdErnId, String recruitmentId, Timestamp updateDate, Date infoDate, String infoSource, String infoAge, Long countAll, Long recordsWithIdUk, Long recordsWithoutIdUk, Long recordsWithIdErn) {
public RecordsInfoIdUkIdErnRecord(Long recordsInfoIdUkIdErnId, String recruitmentId, Timestamp updateDate, Date infoDate, String infoSource, String infoAge, Long recordsWithIdUk, Long recordsWithoutIdUk) {
super(RecordsInfoIdUkIdErn.RECORDS_INFO_ID_UK_ID_ERN);
setRecordsInfoIdUkIdErnId(recordsInfoIdUkIdErnId);
@ -217,10 +185,8 @@ public class RecordsInfoIdUkIdErnRecord extends UpdatableRecordImpl<RecordsInfoI
setInfoDate(infoDate);
setInfoSource(infoSource);
setInfoAge(infoAge);
setCountAll(countAll);
setRecordsWithIdUk(recordsWithIdUk);
setRecordsWithoutIdUk(recordsWithoutIdUk);
setRecordsWithIdErn(recordsWithIdErn);
resetChangedOnNotNull();
}
}

View file

@ -35,12 +35,28 @@ public class ViewRecordsInfoIdUkIdErnRecord extends TableRecordImpl<ViewRecordsI
return (Long) get(0);
}
/**
* Setter for
* <code>init_registration_info.view_records_info_id_uk_id_ern.count_all</code>.
*/
public void setCountAll(Long value) {
set(1, value);
}
/**
* Getter for
* <code>init_registration_info.view_records_info_id_uk_id_ern.count_all</code>.
*/
public Long getCountAll() {
return (Long) get(1);
}
/**
* Setter for
* <code>init_registration_info.view_records_info_id_uk_id_ern.percent_with_id_uk</code>.
*/
public void setPercentWithIdUk(BigDecimal value) {
set(1, value);
set(2, value);
}
/**
@ -48,7 +64,7 @@ public class ViewRecordsInfoIdUkIdErnRecord extends TableRecordImpl<ViewRecordsI
* <code>init_registration_info.view_records_info_id_uk_id_ern.percent_with_id_uk</code>.
*/
public BigDecimal getPercentWithIdUk() {
return (BigDecimal) get(1);
return (BigDecimal) get(2);
}
/**
@ -56,7 +72,7 @@ public class ViewRecordsInfoIdUkIdErnRecord extends TableRecordImpl<ViewRecordsI
* <code>init_registration_info.view_records_info_id_uk_id_ern.percent_without_id_uk</code>.
*/
public void setPercentWithoutIdUk(BigDecimal value) {
set(2, value);
set(3, value);
}
/**
@ -64,22 +80,6 @@ public class ViewRecordsInfoIdUkIdErnRecord extends TableRecordImpl<ViewRecordsI
* <code>init_registration_info.view_records_info_id_uk_id_ern.percent_without_id_uk</code>.
*/
public BigDecimal getPercentWithoutIdUk() {
return (BigDecimal) get(2);
}
/**
* Setter for
* <code>init_registration_info.view_records_info_id_uk_id_ern.percent_with_id_ern</code>.
*/
public void setPercentWithIdErn(BigDecimal value) {
set(3, value);
}
/**
* Getter for
* <code>init_registration_info.view_records_info_id_uk_id_ern.percent_with_id_ern</code>.
*/
public BigDecimal getPercentWithIdErn() {
return (BigDecimal) get(3);
}
@ -97,13 +97,13 @@ public class ViewRecordsInfoIdUkIdErnRecord extends TableRecordImpl<ViewRecordsI
/**
* Create a detached, initialised ViewRecordsInfoIdUkIdErnRecord
*/
public ViewRecordsInfoIdUkIdErnRecord(Long recordsInfoIdUkIdErnId, BigDecimal percentWithIdUk, BigDecimal percentWithoutIdUk, BigDecimal percentWithIdErn) {
public ViewRecordsInfoIdUkIdErnRecord(Long recordsInfoIdUkIdErnId, Long countAll, BigDecimal percentWithIdUk, BigDecimal percentWithoutIdUk) {
super(ViewRecordsInfoIdUkIdErn.VIEW_RECORDS_INFO_ID_UK_ID_ERN);
setRecordsInfoIdUkIdErnId(recordsInfoIdUkIdErnId);
setCountAll(countAll);
setPercentWithIdUk(percentWithIdUk);
setPercentWithoutIdUk(percentWithoutIdUk);
setPercentWithIdErn(percentWithIdErn);
resetChangedOnNotNull();
}
}

View file

@ -91,6 +91,11 @@ public class Fz_53Appeals extends TableImpl<Fz_53AppealsRecord> {
*/
public final TableField<Fz_53AppealsRecord, Long> COUNT_REFUSED = createField(DSL.name("count_refused"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "Отклоненных жалоб");
/**
* The column <code>metrics.fz_53_appeals.count_partially</code>.
*/
public final TableField<Fz_53AppealsRecord, Long> COUNT_PARTIALLY = createField(DSL.name("count_partially"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
private Fz_53Appeals(Name alias, Table<Fz_53AppealsRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}

View file

@ -89,7 +89,6 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.registration_change_addre
import ru.micord.webbpm.ervu.business_metrics.db_beans.registration_change_address.tables.PersonalInfoStat.PersonalInfoStatPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.registration_change_address.tables.RecordsAboutRegistratedCitizen.RecordsAboutRegistratedCitizenPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.registration_change_address.tables.SummonsesSign.SummonsesSignPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.AllSummonses.AllSummonsesPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.DownloadForPrint.DownloadForPrintPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.FormedSummonses.FormedSummonsesPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RecruitOfficeVisit.RecruitOfficeVisitPath;
@ -1117,19 +1116,6 @@ public class Recruitment extends TableImpl<RecruitmentRecord> {
return _summonsesSign;
}
private transient AllSummonsesPath _allSummonses;
/**
* Get the implicit to-many join path to the
* <code>summonses_list.all_summonses</code> table
*/
public AllSummonsesPath allSummonses() {
if (_allSummonses == null)
_allSummonses = new AllSummonsesPath(this, null, ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys.ALL_SUMMONSES__FK_CRIMINAL_ADMINISTRATIVE_LIABILITY_RECRUITMENT_ID.getInverseKey());
return _allSummonses;
}
private transient DownloadForPrintPath _downloadForPrint;
/**

View file

@ -104,13 +104,13 @@ public class ViewConvertInfoSentToLkEpgu extends TableImpl<ViewConvertInfoSentTo
private ViewConvertInfoSentToLkEpgu(Name alias, Table<ViewConvertInfoSentToLkEpguRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "view_convert_info_sent_to_lk_epgu" as SELECT convert_info_sent_to_lk_epgu.convert_info_sent_to_lk_epgu_id,
round((((convert_info_sent_to_lk_epgu.count_status_formed)::numeric * (100)::numeric) / ((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_status_formed,
round((((convert_info_sent_to_lk_epgu.count_status_not_formed)::numeric * (100)::numeric) / ((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_status_not_formed,
round((((convert_info_sent_to_lk_epgu.count_sended)::numeric * (100)::numeric) / ((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_sended,
round((((convert_info_sent_to_lk_epgu.count_delivered)::numeric * (100)::numeric) / ((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_delivered,
round((((convert_info_sent_to_lk_epgu.count_error)::numeric * (100)::numeric) / ((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_error,
round((((convert_info_sent_to_lk_epgu.count_viewed)::numeric * (100)::numeric) / ((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_viewed,
round((((convert_info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed
COALESCE(round((((convert_info_sent_to_lk_epgu.count_status_formed)::numeric * (100)::numeric) / NULLIF(((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_status_formed,
COALESCE(round((((convert_info_sent_to_lk_epgu.count_status_not_formed)::numeric * (100)::numeric) / NULLIF(((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_status_not_formed,
COALESCE(round((((convert_info_sent_to_lk_epgu.count_sended)::numeric * (100)::numeric) / NULLIF(((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_sended,
COALESCE(round((((convert_info_sent_to_lk_epgu.count_delivered)::numeric * (100)::numeric) / NULLIF(((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_delivered,
COALESCE(round((((convert_info_sent_to_lk_epgu.count_error)::numeric * (100)::numeric) / NULLIF(((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_error,
COALESCE(round((((convert_info_sent_to_lk_epgu.count_viewed)::numeric * (100)::numeric) / NULLIF(((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_viewed,
COALESCE(round((((convert_info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / NULLIF(((convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_not_viewed
FROM metrics.convert_info_sent_to_lk_epgu;
"""), where);
}

View file

@ -109,6 +109,20 @@ public class Fz_53AppealsRecord extends UpdatableRecordImpl<Fz_53AppealsRecord>
return (Long) get(5);
}
/**
* Setter for <code>metrics.fz_53_appeals.count_partially</code>.
*/
public void setCountPartially(Long value) {
set(6, value);
}
/**
* Getter for <code>metrics.fz_53_appeals.count_partially</code>.
*/
public Long getCountPartially() {
return (Long) get(6);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@ -132,7 +146,7 @@ public class Fz_53AppealsRecord extends UpdatableRecordImpl<Fz_53AppealsRecord>
/**
* Create a detached, initialised Fz_53AppealsRecord
*/
public Fz_53AppealsRecord(Long fz_53AppealsId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countAccepted, Long countRefused) {
public Fz_53AppealsRecord(Long fz_53AppealsId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countAccepted, Long countRefused, Long countPartially) {
super(Fz_53Appeals.FZ_53_APPEALS);
setFz_53AppealsId(fz_53AppealsId);
@ -141,6 +155,7 @@ public class Fz_53AppealsRecord extends UpdatableRecordImpl<Fz_53AppealsRecord>
setInfoDate(infoDate);
setCountAccepted(countAccepted);
setCountRefused(countRefused);
setCountPartially(countPartially);
resetChangedOnNotNull();
}
}

View file

@ -55,7 +55,6 @@ public class Keys {
// FOREIGN KEY definitions
// -------------------------------------------------------------------------
public static final ForeignKey<AllSummonsesRecord, RecruitmentRecord> ALL_SUMMONSES__FK_CRIMINAL_ADMINISTRATIVE_LIABILITY_RECRUITMENT_ID = Internal.createForeignKey(AllSummonses.ALL_SUMMONSES, DSL.name("fk_criminal_administrative_liability_recruitment_id"), new TableField[] { AllSummonses.ALL_SUMMONSES.RECRUITMENT_ID }, ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true);
public static final ForeignKey<DownloadForPrintRecord, RecruitmentRecord> DOWNLOAD_FOR_PRINT__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(DownloadForPrint.DOWNLOAD_FOR_PRINT, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { DownloadForPrint.DOWNLOAD_FOR_PRINT.RECRUITMENT_ID }, ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true);
public static final ForeignKey<DownloadForPrintRecord, SummonsesReasonRecord> DOWNLOAD_FOR_PRINT__FK_SUMMONSES_REASON_ID = Internal.createForeignKey(DownloadForPrint.DOWNLOAD_FOR_PRINT, DSL.name("fk_summonses_reason_id"), new TableField[] { DownloadForPrint.DOWNLOAD_FOR_PRINT.SUMMONSES_REASON_ID }, Keys.SUMMONSES_REASON_PKEY, new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
public static final ForeignKey<FormedSummonsesRecord, RecruitmentRecord> FORMED_SUMMONSES__FK_CRIMINAL_ADMINISTRATIVE_LIABILITY_RECRUITMENT_ID = Internal.createForeignKey(FormedSummonses.FORMED_SUMMONSES, DSL.name("fk_criminal_administrative_liability_recruitment_id"), new TableField[] { FormedSummonses.FORMED_SUMMONSES.RECRUITMENT_ID }, ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true);

View file

@ -6,20 +6,14 @@ package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -32,7 +26,6 @@ import org.jooq.impl.DSL;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.Recruitment.RecruitmentPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.AllSummonsesRecord;
@ -136,37 +129,6 @@ public class AllSummonses extends TableImpl<AllSummonsesRecord> {
this(DSL.name("all_summonses"), null);
}
public <O extends Record> AllSummonses(Table<O> path, ForeignKey<O, AllSummonsesRecord> childPath, InverseForeignKey<O, AllSummonsesRecord> parentPath) {
super(path, childPath, parentPath, ALL_SUMMONSES);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class AllSummonsesPath extends AllSummonses implements Path<AllSummonsesRecord> {
public <O extends Record> AllSummonsesPath(Table<O> path, ForeignKey<O, AllSummonsesRecord> childPath, InverseForeignKey<O, AllSummonsesRecord> parentPath) {
super(path, childPath, parentPath);
}
private AllSummonsesPath(Name alias, Table<AllSummonsesRecord> aliased) {
super(alias, aliased);
}
@Override
public AllSummonsesPath as(String alias) {
return new AllSummonsesPath(DSL.name(alias), this);
}
@Override
public AllSummonsesPath as(Name alias) {
return new AllSummonsesPath(alias, this);
}
@Override
public AllSummonsesPath as(Table<?> alias) {
return new AllSummonsesPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : SummonsesList.SUMMONSES_LIST;
@ -182,23 +144,6 @@ public class AllSummonses extends TableImpl<AllSummonsesRecord> {
return Keys.ALL_SUMMONSES_PKEY;
}
@Override
public List<ForeignKey<AllSummonsesRecord, ?>> getReferences() {
return Arrays.asList(Keys.ALL_SUMMONSES__FK_CRIMINAL_ADMINISTRATIVE_LIABILITY_RECRUITMENT_ID);
}
private transient RecruitmentPath _recruitment;
/**
* Get the implicit join path to the <code>metrics.recruitment</code> table.
*/
public RecruitmentPath recruitment() {
if (_recruitment == null)
_recruitment = new RecruitmentPath(this, Keys.ALL_SUMMONSES__FK_CRIMINAL_ADMINISTRATIVE_LIABILITY_RECRUITMENT_ID, null);
return _recruitment;
}
@Override
public AllSummonses as(String alias) {
return new AllSummonses(DSL.name(alias), this);

View file

@ -106,10 +106,10 @@ public class ImpositionTmpMeasures extends TableImpl<ImpositionTmpMeasuresRecord
/**
* The column
* <code>summonses_list.imposition_tmp_measures.count_enter</code>. введлена
* <code>summonses_list.imposition_tmp_measures.count_enter</code>. введена
* мера
*/
public final TableField<ImpositionTmpMeasuresRecord, Long> COUNT_ENTER = createField(DSL.name("count_enter"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "введлена мера");
public final TableField<ImpositionTmpMeasuresRecord, Long> COUNT_ENTER = createField(DSL.name("count_enter"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "введена мера");
private ImpositionTmpMeasures(Name alias, Table<ImpositionTmpMeasuresRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);

View file

@ -137,7 +137,7 @@ public class ImpositionTmpMeasuresRecord extends UpdatableRecordImpl<ImpositionT
/**
* Setter for
* <code>summonses_list.imposition_tmp_measures.count_enter</code>. введлена
* <code>summonses_list.imposition_tmp_measures.count_enter</code>. введена
* мера
*/
public void setCountEnter(Long value) {
@ -146,7 +146,7 @@ public class ImpositionTmpMeasuresRecord extends UpdatableRecordImpl<ImpositionT
/**
* Getter for
* <code>summonses_list.imposition_tmp_measures.count_enter</code>. введлена
* <code>summonses_list.imposition_tmp_measures.count_enter</code>. введена
* мера
*/
public Long getCountEnter() {

View file

@ -84,7 +84,7 @@
COMMENT ON COLUMN journal_log.summonses_list_data_exchange_error.info_source IS 'Тип: ENTER_SYSTEM - вход в систему, STATEMENT_REQUEST - запрос выписки';
</sql>
</changeSet>
</changeSet>
<changeSet id="0005" author="saliakhov">
<comment>edit change_data_personal_visit and view_change_data_personal_visit</comment>
@ -110,4 +110,20 @@
</sql>
</changeSet>
<changeSet id="0006" author="saliakhov">
<comment>Удаление колонок, добавление count-all</comment>
<sql>
DROP VIEW IF EXISTS init_registration_info.view_records_info_id_uk_id_ern;
ALTER TABLE init_registration_info.records_info_id_uk_id_ern DROP COLUMN IF EXISTS count_all;
ALTER TABLE init_registration_info.records_info_id_uk_id_ern DROP COLUMN IF EXISTS records_with_id_ern;
CREATE OR REPLACE VIEW init_registration_info.view_records_info_id_uk_id_ern
AS SELECT records_info_id_uk_id_ern.records_info_id_uk_id_ern_id,
records_info_id_uk_id_ern.records_with_id_uk + records_info_id_uk_id_ern.records_without_id_uk AS count_all,
round(records_info_id_uk_id_ern.records_with_id_uk::numeric * 100::numeric / (records_info_id_uk_id_ern.records_with_id_uk + records_info_id_uk_id_ern.records_without_id_uk)::numeric) AS percent_with_id_uk,
round(records_info_id_uk_id_ern.records_without_id_uk::numeric * 100::numeric / (records_info_id_uk_id_ern.records_with_id_uk + records_info_id_uk_id_ern.records_without_id_uk)::numeric) AS percent_without_id_uk
FROM init_registration_info.records_info_id_uk_id_ern;
</sql>
</changeSet>
</databaseChangeLog>

View file

@ -2496,7 +2496,6 @@
<componentRootId>b3543f98-8317-42b5-93bb-1737fbb2d3ee</componentRootId>
<name>ГК Первый ряд</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -2521,7 +2520,6 @@
<componentRootId>7bdaa111-435a-4989-865b-949de6e6f8c6</componentRootId>
<name>ВК Присвоение идентификатора</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -3189,7 +3187,6 @@
<componentRootId>4de8fb08-6167-4fb0-9a0a-bc8ac55270ab</componentRootId>
<name>Hbox</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -3237,7 +3234,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
<entry>
@ -3259,7 +3256,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
</properties>
@ -3273,7 +3270,6 @@
<componentRootId>4d9249ba-972f-4344-9d5f-73e50042414d</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -3311,6 +3307,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"записей, выгружено для присвоения ИД УК, из них:"</simple>
</value>
</entry>
</properties>
@ -3357,7 +3359,6 @@
<componentRootId>87ad59c0-5e82-4625-ad26-4c361c077675</componentRootId>
<name>Горизонтальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="b6068710-0f31-48ec-8e03-c0c1480a40c0"/>
@ -3376,7 +3377,6 @@
<componentRootId>c9d76b2f-804a-4661-a95f-22799838d44b</componentRootId>
<name>Vbox</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
@ -3777,6 +3777,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи без ИД УК"</simple>
</value>
</entry>
</properties>
@ -3806,6 +3812,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи, обогащенные ИД УК"</simple>
</value>
</entry>
</properties>
@ -3827,6 +3839,7 @@
<componentRootId>7cec6050-88a4-4250-a257-80317dbacabe</componentRootId>
<name>ВК Сформировано решений</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -5454,6 +5467,7 @@
<componentRootId>1d6eb28d-9c1f-4dc4-bf37-49eb7a2e4d37</componentRootId>
<name>ГК Второй ряд</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -10611,7 +10625,6 @@
<componentRootId>573b1036-01ae-4575-8ba1-142280e58adf</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -10646,7 +10659,6 @@
<componentRootId>b4897df8-3509-4ada-b5e1-01bdfc931d79</componentRootId>
<name>ВК Присвоение идентификатора</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -11322,7 +11334,6 @@
<componentRootId>b2824ec3-7f8d-4ad6-97e4-3a9ae6952c65</componentRootId>
<name>Hbox</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -11370,7 +11381,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
<entry>
@ -11392,7 +11403,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
</properties>
@ -11406,7 +11417,6 @@
<componentRootId>8ef62928-e2f7-40e6-9a8d-27ca9b2af991</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -11445,6 +11455,12 @@
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"записей, выгружено для присвоения ИД УК, из них:"</simple>
</value>
</entry>
</properties>
</scripts>
@ -11490,7 +11506,6 @@
<componentRootId>9fa54922-ee57-4219-9d13-08500288a94b</componentRootId>
<name>Горизонтальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="b6068710-0f31-48ec-8e03-c0c1480a40c0"/>
@ -11509,7 +11524,6 @@
<componentRootId>9144a6d7-7d09-4877-b87e-ad26e00c1ac8</componentRootId>
<name>Vbox</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
@ -11911,6 +11925,12 @@
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи без ИД УК"</simple>
</value>
</entry>
</properties>
</scripts>
@ -11940,6 +11960,12 @@
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи, обогащенные ИД УК"</simple>
</value>
</entry>
</properties>
</scripts>
@ -16434,7 +16460,6 @@
<componentRootId>636246fc-6c0e-42fd-9d33-436769de8d31</componentRootId>
<name>ГК Первый ряд</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -16459,7 +16484,6 @@
<componentRootId>849f39b9-1c72-4a67-b302-0b908d853118</componentRootId>
<name>ВК Присвоение идентификатора</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -17127,7 +17151,6 @@
<componentRootId>39301dbb-eb1a-463f-94a9-8d19f4819980</componentRootId>
<name>Hbox</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -17175,7 +17198,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
<entry>
@ -17197,7 +17220,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
</properties>
@ -17211,7 +17234,6 @@
<componentRootId>8f67e2bc-80bb-4a1d-89e4-1f989f9acc6e</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -17249,6 +17271,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"записей, выгружено для присвоения ИД УК, из них:"</simple>
</value>
</entry>
</properties>
@ -17295,7 +17323,6 @@
<componentRootId>b4ff8708-2887-4c44-8a44-3f34b478786f</componentRootId>
<name>Горизонтальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="b6068710-0f31-48ec-8e03-c0c1480a40c0"/>
@ -17314,7 +17341,6 @@
<componentRootId>96ffbad8-77ca-47ce-830e-2344d2721e21</componentRootId>
<name>Vbox</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
@ -17715,6 +17741,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи без ИД УК"</simple>
</value>
</entry>
</properties>
@ -17744,6 +17776,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи, обогащенные ИД УК"</simple>
</value>
</entry>
</properties>
@ -19399,6 +19437,7 @@
<componentRootId>02080713-6573-4e76-929f-dfa71a44d5ae</componentRootId>
<name>ГК Второй ряд</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -23358,7 +23397,6 @@
<componentRootId>21f993d1-071b-440c-9e26-245a6095025c</componentRootId>
<name>ГК Первый ряд</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -24869,7 +24907,6 @@
<componentRootId>92967285-75e0-49f4-baa0-646d7fc1e213</componentRootId>
<name>ВК Присвоение идентификатора</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -25538,7 +25575,6 @@
<componentRootId>7783c817-1bab-4f32-a209-77af05e51d46</componentRootId>
<name>Hbox</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -25586,7 +25622,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
<entry>
@ -25608,7 +25644,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
</properties>
@ -25622,7 +25658,6 @@
<componentRootId>3126e476-db0c-44b0-9797-75df35583052</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -25660,6 +25695,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"записей, выгружено для присвоения ИД УК, из них:"</simple>
</value>
</entry>
</properties>
@ -25706,7 +25747,6 @@
<componentRootId>4e0c78a2-4d81-46f0-9f15-640585a66f8a</componentRootId>
<name>Горизонтальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="b6068710-0f31-48ec-8e03-c0c1480a40c0"/>
@ -25725,7 +25765,6 @@
<componentRootId>1f3ae0ee-637d-4f69-a7d8-da9c9d7e0899</componentRootId>
<name>Vbox</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
@ -26126,6 +26165,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи без ИД УК"</simple>
</value>
</entry>
</properties>
@ -26155,6 +26200,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи, обогащенные ИД УК"</simple>
</value>
</entry>
</properties>
@ -30424,6 +30475,7 @@
<componentRootId>62e2055e-ccf0-4878-9420-5aa4c2cd0a0c</componentRootId>
<name>ВК ЕПГУ</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -30463,18 +30515,12 @@
<scripts id="fe04d7fb-6c5b-46c4-b723-667732d81f4f"/>
<scripts id="5c566210-2a60-4048-a2d1-84c7dd023248"/>
<scripts id="3171b2e1-b4af-4335-95fa-1b2592604b84"/>
<children id="ad17c027-d43a-4b98-b933-6ec874153704">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>ad17c027-d43a-4b98-b933-6ec874153704</componentRootId>
<name>ВК Заявления, поступившие через ЕПГУ</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="5f46bba7-70bf-4c22-9c83-48795cee0fed">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>5f46bba7-70bf-4c22-9c83-48795cee0fed</componentRootId>
<name>ВК Заявления, поступившие через ЕПГУ</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -33013,7 +33059,6 @@
<componentRootId>ccae0ea1-0ead-45ab-9aff-b2b818bb90e5</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -33041,7 +33086,6 @@
<componentRootId>28c714e7-76c5-43dd-874c-58ffb90d3308</componentRootId>
<name>ВК Присвоение идентификатора</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -33709,7 +33753,6 @@
<componentRootId>f3338b51-a955-49f3-adb4-37fe49676541</componentRootId>
<name>Hbox</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -33757,7 +33800,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
<entry>
@ -33779,7 +33822,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
</properties>
@ -33793,7 +33836,6 @@
<componentRootId>fcafb9ac-2517-41ff-b92a-0064bc4eec4d</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -33832,6 +33874,12 @@
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"записей, выгружено для присвоения ИД УК, из них:"</simple>
</value>
</entry>
</properties>
</scripts>
@ -33877,7 +33925,6 @@
<componentRootId>7c8846b3-585a-4f2c-abe8-4c682cbc0067</componentRootId>
<name>Горизонтальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="b6068710-0f31-48ec-8e03-c0c1480a40c0"/>
@ -34298,6 +34345,12 @@
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи без ИД УК"</simple>
</value>
</entry>
</properties>
</scripts>
@ -34327,6 +34380,12 @@
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи, обогащенные ИД УК"</simple>
</value>
</entry>
</properties>
</scripts>
@ -34347,6 +34406,7 @@
<componentRootId>2bee9790-503d-4db4-b962-09b0cfe2be8e</componentRootId>
<name>ВК Сформировано решений</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -38777,7 +38837,6 @@
<componentRootId>8e07960c-62ef-4ade-ae0f-1ccc1d836aea</componentRootId>
<name>ВК Личное посещение</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -38798,7 +38857,6 @@
<componentRootId>004855ee-8ac0-4a05-b0ac-826945ca2ee5</componentRootId>
<name>ГК Первый ряд</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -38823,7 +38881,6 @@
<componentRootId>b33faa93-108e-4b6f-a1a4-bc5135ff52cb</componentRootId>
<name>ВК Присвоение идентификатора</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -39491,7 +39548,6 @@
<componentRootId>12cf28d7-cf21-45c9-883b-d416c2b3783b</componentRootId>
<name>Hbox</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -39539,7 +39595,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
<entry>
@ -39561,7 +39617,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"init_registration_info","table":"records_info_id_uk_id_ern","entity":"records_info_id_uk_id_ern","name":"count_all"}</simple>
<simple>{"schema":"init_registration_info","table":"view_records_info_id_uk_id_ern","entity":"view_records_info_id_uk_id_ern","name":"count_all"}</simple>
</value>
</entry>
</properties>
@ -39575,7 +39631,6 @@
<componentRootId>98e636db-b862-44b6-95f3-b5e63ab4c4b6</componentRootId>
<name>Вертикальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -39613,6 +39668,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"записей, выгружено для присвоения ИД УК, из них:"</simple>
</value>
</entry>
</properties>
@ -39659,7 +39720,6 @@
<componentRootId>371dd989-3b2f-4f9d-a4b0-9173422eabf8</componentRootId>
<name>Горизонтальный контейнер</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
<scripts id="b6068710-0f31-48ec-8e03-c0c1480a40c0"/>
@ -40079,6 +40139,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи без ИД УК"</simple>
</value>
</entry>
</properties>
@ -40108,6 +40174,12 @@
<key>label</key>
<value>
<simple>null</simple>
</value>
</entry>
<entry>
<key>tooltip</key>
<value>
<simple>"Записи, обогащенные ИД УК"</simple>
</value>
</entry>
</properties>