Добавление вью
This commit is contained in:
parent
9ef2b167d2
commit
fbab51b7b5
20 changed files with 260 additions and 30 deletions
|
|
@ -97,6 +97,12 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
|
|||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_NOT_VIEWED = createField(DSL.name("percent_not_viewed"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>actualization.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
|
||||
|
||||
private ViewInfoSentToLkEpgu(Name alias, Table<ViewInfoSentToLkEpguRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
|
@ -110,7 +116,8 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
|
|||
round((((info_sent_to_lk_epgu.count_delivered)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_delivered,
|
||||
round((((info_sent_to_lk_epgu.count_error)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_error,
|
||||
round((((info_sent_to_lk_epgu.count_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_viewed,
|
||||
round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed
|
||||
round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed,
|
||||
(info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed) AS count_all
|
||||
FROM actualization.info_sent_to_lk_epgu;
|
||||
"""), where);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -147,6 +147,22 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
return (BigDecimal) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>actualization.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public void setCountAll(Long value) {
|
||||
set(8, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>actualization.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public Long getCountAll() {
|
||||
return (Long) get(8);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -161,7 +177,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
/**
|
||||
* Create a detached, initialised ViewInfoSentToLkEpguRecord
|
||||
*/
|
||||
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed) {
|
||||
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed, Long countAll) {
|
||||
super(ViewInfoSentToLkEpgu.VIEW_INFO_SENT_TO_LK_EPGU);
|
||||
|
||||
setInfoSentToLkEpguId(infoSentToLkEpguId);
|
||||
|
|
@ -172,6 +188,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
setPercentError(percentError);
|
||||
setPercentViewed(percentViewed);
|
||||
setPercentNotViewed(percentNotViewed);
|
||||
setCountAll(countAll);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -97,6 +97,12 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
|
|||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_NOT_VIEWED = createField(DSL.name("percent_not_viewed"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>deregistration.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
|
||||
|
||||
private ViewInfoSentToLkEpgu(Name alias, Table<ViewInfoSentToLkEpguRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
|
@ -110,7 +116,8 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
|
|||
round((((info_sent_to_lk_epgu.count_delivered)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_delivered,
|
||||
round((((info_sent_to_lk_epgu.count_error)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_error,
|
||||
round((((info_sent_to_lk_epgu.count_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_viewed,
|
||||
round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed
|
||||
round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed,
|
||||
(info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed) AS count_all
|
||||
FROM deregistration.info_sent_to_lk_epgu;
|
||||
"""), where);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -147,6 +147,22 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
return (BigDecimal) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>deregistration.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public void setCountAll(Long value) {
|
||||
set(8, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>deregistration.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public Long getCountAll() {
|
||||
return (Long) get(8);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -161,7 +177,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
/**
|
||||
* Create a detached, initialised ViewInfoSentToLkEpguRecord
|
||||
*/
|
||||
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed) {
|
||||
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed, Long countAll) {
|
||||
super(ViewInfoSentToLkEpgu.VIEW_INFO_SENT_TO_LK_EPGU);
|
||||
|
||||
setInfoSentToLkEpguId(infoSentToLkEpguId);
|
||||
|
|
@ -172,6 +188,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
setPercentError(percentError);
|
||||
setPercentViewed(percentViewed);
|
||||
setPercentNotViewed(percentNotViewed);
|
||||
setCountAll(countAll);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -97,6 +97,12 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
|
|||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_NOT_VIEWED = createField(DSL.name("percent_not_viewed"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
|
||||
|
||||
private ViewInfoSentToLkEpgu(Name alias, Table<ViewInfoSentToLkEpguRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
|
@ -110,7 +116,8 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
|
|||
round((((info_sent_to_lk_epgu.count_delivered)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_delivered,
|
||||
round((((info_sent_to_lk_epgu.count_error)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_error,
|
||||
round((((info_sent_to_lk_epgu.count_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_viewed,
|
||||
round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed
|
||||
round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed,
|
||||
(info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed) AS count_all
|
||||
FROM init_registration_info.info_sent_to_lk_epgu;
|
||||
"""), where);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -147,6 +147,22 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
return (BigDecimal) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public void setCountAll(Long value) {
|
||||
set(8, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public Long getCountAll() {
|
||||
return (Long) get(8);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -161,7 +177,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
/**
|
||||
* Create a detached, initialised ViewInfoSentToLkEpguRecord
|
||||
*/
|
||||
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed) {
|
||||
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed, Long countAll) {
|
||||
super(ViewInfoSentToLkEpgu.VIEW_INFO_SENT_TO_LK_EPGU);
|
||||
|
||||
setInfoSentToLkEpguId(infoSentToLkEpguId);
|
||||
|
|
@ -172,6 +188,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
setPercentError(percentError);
|
||||
setPercentViewed(percentViewed);
|
||||
setPercentNotViewed(percentNotViewed);
|
||||
setCountAll(countAll);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -97,6 +97,12 @@ public class ViewConvertInfoSentToLkEpgu extends TableImpl<ViewConvertInfoSentTo
|
|||
*/
|
||||
public final TableField<ViewConvertInfoSentToLkEpguRecord, BigDecimal> PERCENT_NOT_VIEWED = createField(DSL.name("percent_not_viewed"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.view_convert_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public final TableField<ViewConvertInfoSentToLkEpguRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
|
||||
|
||||
private ViewConvertInfoSentToLkEpgu(Name alias, Table<ViewConvertInfoSentToLkEpguRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
|
@ -110,7 +116,8 @@ public class ViewConvertInfoSentToLkEpgu extends TableImpl<ViewConvertInfoSentTo
|
|||
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
|
||||
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,
|
||||
(convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed) AS count_all
|
||||
FROM metrics.convert_info_sent_to_lk_epgu;
|
||||
"""), where);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -147,6 +147,22 @@ public class ViewConvertInfoSentToLkEpguRecord extends TableRecordImpl<ViewConve
|
|||
return (BigDecimal) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.view_convert_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public void setCountAll(Long value) {
|
||||
set(8, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.view_convert_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public Long getCountAll() {
|
||||
return (Long) get(8);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -161,7 +177,7 @@ public class ViewConvertInfoSentToLkEpguRecord extends TableRecordImpl<ViewConve
|
|||
/**
|
||||
* Create a detached, initialised ViewConvertInfoSentToLkEpguRecord
|
||||
*/
|
||||
public ViewConvertInfoSentToLkEpguRecord(Long convertInfoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed) {
|
||||
public ViewConvertInfoSentToLkEpguRecord(Long convertInfoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed, Long countAll) {
|
||||
super(ViewConvertInfoSentToLkEpgu.VIEW_CONVERT_INFO_SENT_TO_LK_EPGU);
|
||||
|
||||
setConvertInfoSentToLkEpguId(convertInfoSentToLkEpguId);
|
||||
|
|
@ -172,6 +188,7 @@ public class ViewConvertInfoSentToLkEpguRecord extends TableRecordImpl<ViewConve
|
|||
setPercentError(percentError);
|
||||
setPercentViewed(percentViewed);
|
||||
setPercentNotViewed(percentNotViewed);
|
||||
setCountAll(countAll);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -97,6 +97,12 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
|
|||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_NOT_VIEWED = createField(DSL.name("percent_not_viewed"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>registration_change_address.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
|
||||
|
||||
private ViewInfoSentToLkEpgu(Name alias, Table<ViewInfoSentToLkEpguRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
|
@ -110,7 +116,8 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
|
|||
round((((info_sent_to_lk_epgu.count_delivered)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_delivered,
|
||||
round((((info_sent_to_lk_epgu.count_error)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_error,
|
||||
round((((info_sent_to_lk_epgu.count_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_viewed,
|
||||
round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed
|
||||
round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed,
|
||||
(info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed) AS count_all
|
||||
FROM registration_change_address.info_sent_to_lk_epgu;
|
||||
"""), where);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -147,6 +147,22 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
return (BigDecimal) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>registration_change_address.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public void setCountAll(Long value) {
|
||||
set(8, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>registration_change_address.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public Long getCountAll() {
|
||||
return (Long) get(8);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -161,7 +177,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
/**
|
||||
* Create a detached, initialised ViewInfoSentToLkEpguRecord
|
||||
*/
|
||||
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed) {
|
||||
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed, Long countAll) {
|
||||
super(ViewInfoSentToLkEpgu.VIEW_INFO_SENT_TO_LK_EPGU);
|
||||
|
||||
setInfoSentToLkEpguId(infoSentToLkEpguId);
|
||||
|
|
@ -172,6 +188,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
setPercentError(percentError);
|
||||
setPercentViewed(percentViewed);
|
||||
setPercentNotViewed(percentNotViewed);
|
||||
setCountAll(countAll);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -97,6 +97,12 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
|
|||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_NOT_VIEWED = createField(DSL.name("percent_not_viewed"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>summonses_list.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
|
||||
|
||||
private ViewInfoSentToLkEpgu(Name alias, Table<ViewInfoSentToLkEpguRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
|
@ -110,7 +116,8 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
|
|||
round((((info_sent_to_lk_epgu.count_delivered)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_delivered,
|
||||
round((((info_sent_to_lk_epgu.count_error)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_error,
|
||||
round((((info_sent_to_lk_epgu.count_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_viewed,
|
||||
round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed
|
||||
round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed,
|
||||
(info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed) AS count_all
|
||||
FROM summonses_list.info_sent_to_lk_epgu;
|
||||
"""), where);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -147,6 +147,22 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
return (BigDecimal) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>summonses_list.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public void setCountAll(Long value) {
|
||||
set(8, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>summonses_list.view_info_sent_to_lk_epgu.count_all</code>.
|
||||
*/
|
||||
public Long getCountAll() {
|
||||
return (Long) get(8);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -161,7 +177,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
/**
|
||||
* Create a detached, initialised ViewInfoSentToLkEpguRecord
|
||||
*/
|
||||
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed) {
|
||||
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed, Long countAll) {
|
||||
super(ViewInfoSentToLkEpgu.VIEW_INFO_SENT_TO_LK_EPGU);
|
||||
|
||||
setInfoSentToLkEpguId(infoSentToLkEpguId);
|
||||
|
|
@ -172,6 +188,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
|
|||
setPercentError(percentError);
|
||||
setPercentViewed(percentViewed);
|
||||
setPercentNotViewed(percentNotViewed);
|
||||
setCountAll(countAll);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,90 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<databaseChangeLog
|
||||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog/1.9"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog/1.9
|
||||
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-1.9.xsd">
|
||||
|
||||
|
||||
<changeSet id="0001" author="saliakhov">
|
||||
<comment>create view</comment>
|
||||
<sql>
|
||||
CREATE OR REPLACE VIEW metrics.view_convert_info_sent_to_lk_epgu
|
||||
AS SELECT convert_info_sent_to_lk_epgu.convert_info_sent_to_lk_epgu_id,
|
||||
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,
|
||||
convert_info_sent_to_lk_epgu.count_status_formed + convert_info_sent_to_lk_epgu.count_status_not_formed AS count_all
|
||||
FROM metrics.convert_info_sent_to_lk_epgu;
|
||||
|
||||
|
||||
CREATE OR REPLACE VIEW init_registration_info.view_info_sent_to_lk_epgu
|
||||
AS SELECT info_sent_to_lk_epgu.info_sent_to_lk_epgu_id,
|
||||
round(info_sent_to_lk_epgu.count_status_formed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_status_formed,
|
||||
round(info_sent_to_lk_epgu.count_status_not_formed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_status_not_formed,
|
||||
round(info_sent_to_lk_epgu.count_sended::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_sended,
|
||||
round(info_sent_to_lk_epgu.count_delivered::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_delivered,
|
||||
round(info_sent_to_lk_epgu.count_error::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_error,
|
||||
round(info_sent_to_lk_epgu.count_viewed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_viewed,
|
||||
round(info_sent_to_lk_epgu.count_not_viewed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_not_viewed,
|
||||
info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed AS count_all
|
||||
FROM init_registration_info.info_sent_to_lk_epgu;
|
||||
|
||||
|
||||
CREATE OR REPLACE VIEW actualization.view_info_sent_to_lk_epgu
|
||||
AS SELECT info_sent_to_lk_epgu.info_sent_to_lk_epgu_id,
|
||||
round(info_sent_to_lk_epgu.count_status_formed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_status_formed,
|
||||
round(info_sent_to_lk_epgu.count_status_not_formed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_status_not_formed,
|
||||
round(info_sent_to_lk_epgu.count_sended::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_sended,
|
||||
round(info_sent_to_lk_epgu.count_delivered::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_delivered,
|
||||
round(info_sent_to_lk_epgu.count_error::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_error,
|
||||
round(info_sent_to_lk_epgu.count_viewed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_viewed,
|
||||
round(info_sent_to_lk_epgu.count_not_viewed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_not_viewed,
|
||||
info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed AS count_all
|
||||
FROM actualization.info_sent_to_lk_epgu;
|
||||
|
||||
|
||||
CREATE OR REPLACE VIEW summonses_list.view_info_sent_to_lk_epgu
|
||||
AS SELECT info_sent_to_lk_epgu.info_sent_to_lk_epgu_id,
|
||||
round(info_sent_to_lk_epgu.count_status_formed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_status_formed,
|
||||
round(info_sent_to_lk_epgu.count_status_not_formed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_status_not_formed,
|
||||
round(info_sent_to_lk_epgu.count_sended::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_sended,
|
||||
round(info_sent_to_lk_epgu.count_delivered::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_delivered,
|
||||
round(info_sent_to_lk_epgu.count_error::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_error,
|
||||
round(info_sent_to_lk_epgu.count_viewed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_viewed,
|
||||
round(info_sent_to_lk_epgu.count_not_viewed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_not_viewed,
|
||||
info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed AS count_all
|
||||
FROM summonses_list.info_sent_to_lk_epgu;
|
||||
|
||||
|
||||
CREATE OR REPLACE VIEW deregistration.view_info_sent_to_lk_epgu
|
||||
AS SELECT info_sent_to_lk_epgu.info_sent_to_lk_epgu_id,
|
||||
round(info_sent_to_lk_epgu.count_status_formed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_status_formed,
|
||||
round(info_sent_to_lk_epgu.count_status_not_formed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_status_not_formed,
|
||||
round(info_sent_to_lk_epgu.count_sended::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_sended,
|
||||
round(info_sent_to_lk_epgu.count_delivered::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_delivered,
|
||||
round(info_sent_to_lk_epgu.count_error::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_error,
|
||||
round(info_sent_to_lk_epgu.count_viewed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_viewed,
|
||||
round(info_sent_to_lk_epgu.count_not_viewed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_not_viewed,
|
||||
info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed AS count_all
|
||||
FROM deregistration.info_sent_to_lk_epgu;
|
||||
|
||||
|
||||
CREATE OR REPLACE VIEW registration_change_address.view_info_sent_to_lk_epgu
|
||||
AS SELECT info_sent_to_lk_epgu.info_sent_to_lk_epgu_id,
|
||||
round(info_sent_to_lk_epgu.count_status_formed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_status_formed,
|
||||
round(info_sent_to_lk_epgu.count_status_not_formed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_status_not_formed,
|
||||
round(info_sent_to_lk_epgu.count_sended::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_sended,
|
||||
round(info_sent_to_lk_epgu.count_delivered::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_delivered,
|
||||
round(info_sent_to_lk_epgu.count_error::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_error,
|
||||
round(info_sent_to_lk_epgu.count_viewed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_viewed,
|
||||
round(info_sent_to_lk_epgu.count_not_viewed::numeric * 100::numeric / (info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed)::numeric) AS percent_not_viewed,
|
||||
info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed AS count_all
|
||||
FROM registration_change_address.info_sent_to_lk_epgu;
|
||||
</sql>
|
||||
</changeSet>
|
||||
</databaseChangeLog>
|
||||
|
|
@ -12,5 +12,6 @@
|
|||
<include file="20241210-ERVU-edit_view_convert_info_sent_to_lk_epgu.xml" relativeToChangelogFile="true"/>
|
||||
<include file="20241211-ERVU-db_changes.xml" relativeToChangelogFile="true"/>
|
||||
<include file="20241212-ERVU-db_changes.xml" relativeToChangelogFile="true"/>
|
||||
<include file="20241216-ERVU-db_changes.xml" relativeToChangelogFile="true"/>
|
||||
|
||||
</databaseChangeLog>
|
||||
|
|
@ -4112,6 +4112,7 @@
|
|||
<componentRootId>3447ab1c-24c9-435a-9e23-1e0ab39404ab</componentRootId>
|
||||
<name>ГК второй ряд показателей</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -5286,6 +5287,7 @@
|
|||
<componentRootId>674c1487-8d74-433c-9cb4-a2f4695625dd</componentRootId>
|
||||
<name>ВК Результаты конвертации</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -6566,7 +6568,6 @@
|
|||
<componentRootId>ea4d0df5-9e4f-48b2-bf91-3a72d3a90640</componentRootId>
|
||||
<name>ГК третий ряд показателей</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -8110,7 +8111,6 @@
|
|||
<componentRootId>1f614744-11fb-4c69-82ad-ccabdd2edd11</componentRootId>
|
||||
<name>VboxValue</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
|
||||
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
|
||||
|
|
|
|||
|
|
@ -1491,7 +1491,6 @@
|
|||
<componentRootId>7b47ba81-1c81-4780-b0f6-7fe726e099a7</componentRootId>
|
||||
<name>Постановка в 17 лет</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="d1ce20ca-453b-4610-a2a5-bb6498db5cf5">
|
||||
<properties>
|
||||
|
|
@ -2471,7 +2470,6 @@
|
|||
<componentRootId>201e300c-2785-4181-ac47-a98d0e0de4ce</componentRootId>
|
||||
<name>ВК ГИР ВУ</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -2496,6 +2494,7 @@
|
|||
<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>
|
||||
|
|
@ -5622,7 +5621,6 @@
|
|||
<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>
|
||||
|
|
@ -23114,6 +23112,7 @@
|
|||
<componentRootId>8ce33491-362c-4be8-b964-2abec01f4e30</componentRootId>
|
||||
<name>Постановка в 18 лет и старше</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="d1ce20ca-453b-4610-a2a5-bb6498db5cf5">
|
||||
<properties>
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
<componentRootId>f954d616-8bc6-4e8b-ba8e-0fabf7a0a747</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"/>
|
||||
|
|
@ -2453,7 +2454,6 @@
|
|||
<componentRootId>40008c21-16ff-4414-992c-130de19bcc97</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"/>
|
||||
|
|
@ -4903,6 +4903,7 @@
|
|||
<componentRootId>6c20dc29-0fba-4eda-a956-69721c9545c8</componentRootId>
|
||||
<name>ВК Повестки, подписанные в текущем ВК</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -8341,6 +8342,7 @@
|
|||
<componentRootId>5474580e-080e-4895-9772-18cf6fdbf1ed</componentRootId>
|
||||
<name>ВК Временные меры, введенные в текущем ВК</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -9731,6 +9733,7 @@
|
|||
<componentRootId>7d1af108-5b97-4214-a340-52c2176d8593</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"/>
|
||||
|
|
@ -11620,13 +11623,6 @@
|
|||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
</children>
|
||||
<children id="71e13ec2-862c-4257-ab4e-80ad66cd8c9e">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>71e13ec2-862c-4257-ab4e-80ad66cd8c9e</componentRootId>
|
||||
<name>26 830</name>
|
||||
<container>false</container>
|
||||
<removed>true</removed>
|
||||
</children>
|
||||
<children id="a52acc5b-bec0-4edb-91eb-88efc01b0efc">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>a52acc5b-bec0-4edb-91eb-88efc01b0efc</componentRootId>
|
||||
|
|
|
|||
|
|
@ -8620,7 +8620,6 @@
|
|||
<componentRootId>0c521101-939d-495d-98a5-952f9ee80973</componentRootId>
|
||||
<name>ВК Решения о снятии временной меры</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -9968,7 +9967,6 @@
|
|||
<componentRootId>8ccf3815-9f26-4892-9c46-f78f72f8b019</componentRootId>
|
||||
<name>ГК Четвертый ряд</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -9993,6 +9991,7 @@
|
|||
<componentRootId>b39d68be-eb84-40a3-a1b9-7e6edca42044</componentRootId>
|
||||
<name>ВК Отправка уведомлений в ЛК гражданина на ЕПГУ</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
|
|||
|
|
@ -2999,7 +2999,6 @@
|
|||
<componentRootId>02aafe66-22b4-4921-a9d7-bb665dfdb4d0</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"/>
|
||||
|
|
@ -3011,6 +3010,7 @@
|
|||
<componentRootId>79b0d99f-6fcf-479f-93fc-86cf40091bdb</componentRootId>
|
||||
<name>ГК Первый ряд</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -5882,7 +5882,6 @@
|
|||
<componentRootId>6ead05c0-c6fd-4962-b8b6-330fc0001a64</componentRootId>
|
||||
<name>ВК Отправка уведомлений в ЛК гражданина на ЕПГУ</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -8141,6 +8140,7 @@
|
|||
<componentRootId>f76d2719-8f7b-4beb-92e6-76f67c0ed98b</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"/>
|
||||
|
|
|
|||
|
|
@ -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,6 +2409,7 @@
|
|||
<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>
|
||||
|
|
@ -5459,6 +5459,7 @@
|
|||
<componentRootId>a256c8f1-1935-4a49-8058-5513e08191c0</componentRootId>
|
||||
<name>ГК Второй ряд</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue