Правки
This commit is contained in:
parent
a059234b25
commit
26e653bb23
12 changed files with 606 additions and 316 deletions
|
|
@ -93,6 +93,12 @@ public class ConvertInfoLoadedRecords extends TableImpl<ConvertInfoLoadedRecords
|
|||
*/
|
||||
public final TableField<ConvertInfoLoadedRecordsRecord, Long> COUNT_ERROR = createField(DSL.name("count_error"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.convert_info_loaded_records.count_not_success</code>.
|
||||
*/
|
||||
public final TableField<ConvertInfoLoadedRecordsRecord, Long> COUNT_NOT_SUCCESS = createField(DSL.name("count_not_success"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
private ConvertInfoLoadedRecords(Name alias, Table<ConvertInfoLoadedRecordsRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -83,12 +83,6 @@ public class ConvertInfoRecordsFromEasu extends TableImpl<ConvertInfoRecordsFrom
|
|||
*/
|
||||
public final TableField<ConvertInfoRecordsFromEasuRecord, Date> INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.convert_info_records_from_easu.count_unique</code>.
|
||||
*/
|
||||
public final TableField<ConvertInfoRecordsFromEasuRecord, Long> COUNT_UNIQUE = createField(DSL.name("count_unique"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.convert_info_records_from_easu.count_flk_and_duplicate</code>.
|
||||
|
|
@ -96,9 +90,10 @@ public class ConvertInfoRecordsFromEasu extends TableImpl<ConvertInfoRecordsFrom
|
|||
public final TableField<ConvertInfoRecordsFromEasuRecord, Long> COUNT_FLK_AND_DUPLICATE = createField(DSL.name("count_flk_and_duplicate"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>metrics.convert_info_records_from_easu.count_all</code>.
|
||||
* The column
|
||||
* <code>metrics.convert_info_records_from_easu.count_completed_record</code>.
|
||||
*/
|
||||
public final TableField<ConvertInfoRecordsFromEasuRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
public final TableField<ConvertInfoRecordsFromEasuRecord, Long> COUNT_COMPLETED_RECORD = createField(DSL.name("count_completed_record"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
private ConvertInfoRecordsFromEasu(Name alias, Table<ConvertInfoRecordsFromEasuRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
|
|
|
|||
|
|
@ -73,6 +73,12 @@ public class ViewConvertInfoLoadedRecords extends TableImpl<ViewConvertInfoLoade
|
|||
*/
|
||||
public final TableField<ViewConvertInfoLoadedRecordsRecord, BigDecimal> PERCENT_SUCCESS = createField(DSL.name("percent_success"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.view_convert_info_loaded_records.percent_not_success</code>.
|
||||
*/
|
||||
public final TableField<ViewConvertInfoLoadedRecordsRecord, BigDecimal> PERCENT_NOT_SUCCESS = createField(DSL.name("percent_not_success"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
private ViewConvertInfoLoadedRecords(Name alias, Table<ViewConvertInfoLoadedRecordsRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
|
@ -80,9 +86,10 @@ public class ViewConvertInfoLoadedRecords extends TableImpl<ViewConvertInfoLoade
|
|||
private ViewConvertInfoLoadedRecords(Name alias, Table<ViewConvertInfoLoadedRecordsRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
|
||||
create view "view_convert_info_loaded_records" as SELECT convert_info_loaded_records.convert_info_loaded_records_id,
|
||||
(convert_info_loaded_records.count_success + convert_info_loaded_records.count_error) AS count_all,
|
||||
round((((convert_info_loaded_records.count_error)::numeric * (100)::numeric) / ((convert_info_loaded_records.count_success + convert_info_loaded_records.count_error))::numeric)) AS percent_error,
|
||||
round((((convert_info_loaded_records.count_success)::numeric * (100)::numeric) / ((convert_info_loaded_records.count_success + convert_info_loaded_records.count_error))::numeric)) AS percent_success
|
||||
((convert_info_loaded_records.count_success + convert_info_loaded_records.count_error) + convert_info_loaded_records.count_not_success) AS count_all,
|
||||
round((((convert_info_loaded_records.count_error)::numeric * (100)::numeric) / (((convert_info_loaded_records.count_success + convert_info_loaded_records.count_error) + convert_info_loaded_records.count_not_success))::numeric)) AS percent_error,
|
||||
round((((convert_info_loaded_records.count_success)::numeric * (100)::numeric) / (((convert_info_loaded_records.count_success + convert_info_loaded_records.count_error) + convert_info_loaded_records.count_not_success))::numeric)) AS percent_success,
|
||||
round((((convert_info_loaded_records.count_not_success)::numeric * (100)::numeric) / (((convert_info_loaded_records.count_success + convert_info_loaded_records.count_error) + convert_info_loaded_records.count_not_success))::numeric)) AS percent_not_success
|
||||
FROM metrics.convert_info_loaded_records;
|
||||
"""), where);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -57,9 +57,15 @@ public class ViewConvertInfoRecordsFromEasu extends TableImpl<ViewConvertInfoRec
|
|||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.view_convert_info_records_from_easu.percent_unique</code>.
|
||||
* <code>metrics.view_convert_info_records_from_easu.count_all</code>.
|
||||
*/
|
||||
public final TableField<ViewConvertInfoRecordsFromEasuRecord, BigDecimal> PERCENT_UNIQUE = createField(DSL.name("percent_unique"), SQLDataType.NUMERIC, this, "");
|
||||
public final TableField<ViewConvertInfoRecordsFromEasuRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.view_convert_info_records_from_easu.percent_completed_record</code>.
|
||||
*/
|
||||
public final TableField<ViewConvertInfoRecordsFromEasuRecord, BigDecimal> PERCENT_COMPLETED_RECORD = createField(DSL.name("percent_completed_record"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
|
|
@ -67,18 +73,6 @@ public class ViewConvertInfoRecordsFromEasu extends TableImpl<ViewConvertInfoRec
|
|||
*/
|
||||
public final TableField<ViewConvertInfoRecordsFromEasuRecord, BigDecimal> PERCENT_FLK_AND_DUPLICATE = createField(DSL.name("percent_flk_and_duplicate"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.view_convert_info_records_from_easu.count_without_unique</code>.
|
||||
*/
|
||||
public final TableField<ViewConvertInfoRecordsFromEasuRecord, Long> COUNT_WITHOUT_UNIQUE = createField(DSL.name("count_without_unique"), SQLDataType.BIGINT, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.view_convert_info_records_from_easu.count_without_flk_and_duplicate</code>.
|
||||
*/
|
||||
public final TableField<ViewConvertInfoRecordsFromEasuRecord, Long> COUNT_WITHOUT_FLK_AND_DUPLICATE = createField(DSL.name("count_without_flk_and_duplicate"), SQLDataType.BIGINT, this, "");
|
||||
|
||||
private ViewConvertInfoRecordsFromEasu(Name alias, Table<ViewConvertInfoRecordsFromEasuRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
|
@ -86,10 +80,9 @@ public class ViewConvertInfoRecordsFromEasu extends TableImpl<ViewConvertInfoRec
|
|||
private ViewConvertInfoRecordsFromEasu(Name alias, Table<ViewConvertInfoRecordsFromEasuRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
|
||||
create view "view_convert_info_records_from_easu" as SELECT convert_info_records_from_easu.convert_info_records_from_easu_id,
|
||||
round((((convert_info_records_from_easu.count_unique)::numeric * (100)::numeric) / (convert_info_records_from_easu.count_all)::numeric)) AS percent_unique,
|
||||
round((((convert_info_records_from_easu.count_flk_and_duplicate)::numeric * (100)::numeric) / (convert_info_records_from_easu.count_all)::numeric)) AS percent_flk_and_duplicate,
|
||||
(convert_info_records_from_easu.count_all - convert_info_records_from_easu.count_unique) AS count_without_unique,
|
||||
(convert_info_records_from_easu.count_all - convert_info_records_from_easu.count_flk_and_duplicate) AS count_without_flk_and_duplicate
|
||||
(convert_info_records_from_easu.count_completed_record + convert_info_records_from_easu.count_flk_and_duplicate) AS count_all,
|
||||
round((((convert_info_records_from_easu.count_completed_record)::numeric * (100)::numeric) / ((convert_info_records_from_easu.count_completed_record + convert_info_records_from_easu.count_flk_and_duplicate))::numeric)) AS percent_completed_record,
|
||||
round((((convert_info_records_from_easu.count_flk_and_duplicate)::numeric * (100)::numeric) / ((convert_info_records_from_easu.count_completed_record + convert_info_records_from_easu.count_flk_and_duplicate))::numeric)) AS percent_flk_and_duplicate
|
||||
FROM metrics.convert_info_records_from_easu;
|
||||
"""), where);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -111,6 +111,22 @@ public class ConvertInfoLoadedRecordsRecord extends UpdatableRecordImpl<ConvertI
|
|||
return (Long) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.convert_info_loaded_records.count_not_success</code>.
|
||||
*/
|
||||
public void setCountNotSuccess(Long value) {
|
||||
set(6, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.convert_info_loaded_records.count_not_success</code>.
|
||||
*/
|
||||
public Long getCountNotSuccess() {
|
||||
return (Long) get(6);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Primary key information
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -134,7 +150,7 @@ public class ConvertInfoLoadedRecordsRecord extends UpdatableRecordImpl<ConvertI
|
|||
/**
|
||||
* Create a detached, initialised ConvertInfoLoadedRecordsRecord
|
||||
*/
|
||||
public ConvertInfoLoadedRecordsRecord(Long convertInfoLoadedRecordsId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countSuccess, Long countError) {
|
||||
public ConvertInfoLoadedRecordsRecord(Long convertInfoLoadedRecordsId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countSuccess, Long countError, Long countNotSuccess) {
|
||||
super(ConvertInfoLoadedRecords.CONVERT_INFO_LOADED_RECORDS);
|
||||
|
||||
setConvertInfoLoadedRecordsId(convertInfoLoadedRecordsId);
|
||||
|
|
@ -143,6 +159,7 @@ public class ConvertInfoLoadedRecordsRecord extends UpdatableRecordImpl<ConvertI
|
|||
setInfoDate(infoDate);
|
||||
setCountSuccess(countSuccess);
|
||||
setCountError(countError);
|
||||
setCountNotSuccess(countNotSuccess);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -83,28 +83,12 @@ public class ConvertInfoRecordsFromEasuRecord extends UpdatableRecordImpl<Conver
|
|||
return (Date) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.convert_info_records_from_easu.count_unique</code>.
|
||||
*/
|
||||
public void setCountUnique(Long value) {
|
||||
set(4, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.convert_info_records_from_easu.count_unique</code>.
|
||||
*/
|
||||
public Long getCountUnique() {
|
||||
return (Long) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.convert_info_records_from_easu.count_flk_and_duplicate</code>.
|
||||
*/
|
||||
public void setCountFlkAndDuplicate(Long value) {
|
||||
set(5, value);
|
||||
set(4, value);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -112,23 +96,25 @@ public class ConvertInfoRecordsFromEasuRecord extends UpdatableRecordImpl<Conver
|
|||
* <code>metrics.convert_info_records_from_easu.count_flk_and_duplicate</code>.
|
||||
*/
|
||||
public Long getCountFlkAndDuplicate() {
|
||||
return (Long) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.convert_info_records_from_easu.count_completed_record</code>.
|
||||
*/
|
||||
public void setCountCompletedRecord(Long value) {
|
||||
set(5, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.convert_info_records_from_easu.count_completed_record</code>.
|
||||
*/
|
||||
public Long getCountCompletedRecord() {
|
||||
return (Long) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>metrics.convert_info_records_from_easu.count_all</code>.
|
||||
*/
|
||||
public void setCountAll(Long value) {
|
||||
set(6, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>metrics.convert_info_records_from_easu.count_all</code>.
|
||||
*/
|
||||
public Long getCountAll() {
|
||||
return (Long) get(6);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Primary key information
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -152,16 +138,15 @@ public class ConvertInfoRecordsFromEasuRecord extends UpdatableRecordImpl<Conver
|
|||
/**
|
||||
* Create a detached, initialised ConvertInfoRecordsFromEasuRecord
|
||||
*/
|
||||
public ConvertInfoRecordsFromEasuRecord(Long convertInfoRecordsFromEasuId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countUnique, Long countFlkAndDuplicate, Long countAll) {
|
||||
public ConvertInfoRecordsFromEasuRecord(Long convertInfoRecordsFromEasuId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countFlkAndDuplicate, Long countCompletedRecord) {
|
||||
super(ConvertInfoRecordsFromEasu.CONVERT_INFO_RECORDS_FROM_EASU);
|
||||
|
||||
setConvertInfoRecordsFromEasuId(convertInfoRecordsFromEasuId);
|
||||
setRecruitmentId(recruitmentId);
|
||||
setUpdateDate(updateDate);
|
||||
setInfoDate(infoDate);
|
||||
setCountUnique(countUnique);
|
||||
setCountFlkAndDuplicate(countFlkAndDuplicate);
|
||||
setCountAll(countAll);
|
||||
setCountCompletedRecord(countCompletedRecord);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -83,6 +83,22 @@ public class ViewConvertInfoLoadedRecordsRecord extends TableRecordImpl<ViewConv
|
|||
return (BigDecimal) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.view_convert_info_loaded_records.percent_not_success</code>.
|
||||
*/
|
||||
public void setPercentNotSuccess(BigDecimal value) {
|
||||
set(4, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.view_convert_info_loaded_records.percent_not_success</code>.
|
||||
*/
|
||||
public BigDecimal getPercentNotSuccess() {
|
||||
return (BigDecimal) get(4);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -97,13 +113,14 @@ public class ViewConvertInfoLoadedRecordsRecord extends TableRecordImpl<ViewConv
|
|||
/**
|
||||
* Create a detached, initialised ViewConvertInfoLoadedRecordsRecord
|
||||
*/
|
||||
public ViewConvertInfoLoadedRecordsRecord(Long convertInfoLoadedRecordsId, Long countAll, BigDecimal percentError, BigDecimal percentSuccess) {
|
||||
public ViewConvertInfoLoadedRecordsRecord(Long convertInfoLoadedRecordsId, Long countAll, BigDecimal percentError, BigDecimal percentSuccess, BigDecimal percentNotSuccess) {
|
||||
super(ViewConvertInfoLoadedRecords.VIEW_CONVERT_INFO_LOADED_RECORDS);
|
||||
|
||||
setConvertInfoLoadedRecordsId(convertInfoLoadedRecordsId);
|
||||
setCountAll(countAll);
|
||||
setPercentError(percentError);
|
||||
setPercentSuccess(percentSuccess);
|
||||
setPercentNotSuccess(percentNotSuccess);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -37,18 +37,34 @@ public class ViewConvertInfoRecordsFromEasuRecord extends TableRecordImpl<ViewCo
|
|||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.view_convert_info_records_from_easu.percent_unique</code>.
|
||||
* <code>metrics.view_convert_info_records_from_easu.count_all</code>.
|
||||
*/
|
||||
public void setPercentUnique(BigDecimal value) {
|
||||
public void setCountAll(Long value) {
|
||||
set(1, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.view_convert_info_records_from_easu.percent_unique</code>.
|
||||
* <code>metrics.view_convert_info_records_from_easu.count_all</code>.
|
||||
*/
|
||||
public BigDecimal getPercentUnique() {
|
||||
return (BigDecimal) get(1);
|
||||
public Long getCountAll() {
|
||||
return (Long) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.view_convert_info_records_from_easu.percent_completed_record</code>.
|
||||
*/
|
||||
public void setPercentCompletedRecord(BigDecimal value) {
|
||||
set(2, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.view_convert_info_records_from_easu.percent_completed_record</code>.
|
||||
*/
|
||||
public BigDecimal getPercentCompletedRecord() {
|
||||
return (BigDecimal) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -56,7 +72,7 @@ public class ViewConvertInfoRecordsFromEasuRecord extends TableRecordImpl<ViewCo
|
|||
* <code>metrics.view_convert_info_records_from_easu.percent_flk_and_duplicate</code>.
|
||||
*/
|
||||
public void setPercentFlkAndDuplicate(BigDecimal value) {
|
||||
set(2, value);
|
||||
set(3, value);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -64,39 +80,7 @@ public class ViewConvertInfoRecordsFromEasuRecord extends TableRecordImpl<ViewCo
|
|||
* <code>metrics.view_convert_info_records_from_easu.percent_flk_and_duplicate</code>.
|
||||
*/
|
||||
public BigDecimal getPercentFlkAndDuplicate() {
|
||||
return (BigDecimal) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.view_convert_info_records_from_easu.count_without_unique</code>.
|
||||
*/
|
||||
public void setCountWithoutUnique(Long value) {
|
||||
set(3, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.view_convert_info_records_from_easu.count_without_unique</code>.
|
||||
*/
|
||||
public Long getCountWithoutUnique() {
|
||||
return (Long) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.view_convert_info_records_from_easu.count_without_flk_and_duplicate</code>.
|
||||
*/
|
||||
public void setCountWithoutFlkAndDuplicate(Long value) {
|
||||
set(4, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.view_convert_info_records_from_easu.count_without_flk_and_duplicate</code>.
|
||||
*/
|
||||
public Long getCountWithoutFlkAndDuplicate() {
|
||||
return (Long) get(4);
|
||||
return (BigDecimal) get(3);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -113,14 +97,13 @@ public class ViewConvertInfoRecordsFromEasuRecord extends TableRecordImpl<ViewCo
|
|||
/**
|
||||
* Create a detached, initialised ViewConvertInfoRecordsFromEasuRecord
|
||||
*/
|
||||
public ViewConvertInfoRecordsFromEasuRecord(Long convertInfoRecordsFromEasuId, BigDecimal percentUnique, BigDecimal percentFlkAndDuplicate, Long countWithoutUnique, Long countWithoutFlkAndDuplicate) {
|
||||
public ViewConvertInfoRecordsFromEasuRecord(Long convertInfoRecordsFromEasuId, Long countAll, BigDecimal percentCompletedRecord, BigDecimal percentFlkAndDuplicate) {
|
||||
super(ViewConvertInfoRecordsFromEasu.VIEW_CONVERT_INFO_RECORDS_FROM_EASU);
|
||||
|
||||
setConvertInfoRecordsFromEasuId(convertInfoRecordsFromEasuId);
|
||||
setPercentUnique(percentUnique);
|
||||
setCountAll(countAll);
|
||||
setPercentCompletedRecord(percentCompletedRecord);
|
||||
setPercentFlkAndDuplicate(percentFlkAndDuplicate);
|
||||
setCountWithoutUnique(countWithoutUnique);
|
||||
setCountWithoutFlkAndDuplicate(countWithoutFlkAndDuplicate);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,44 @@
|
|||
<?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>edit</comment>
|
||||
<sql>
|
||||
DROP VIEW IF EXISTS metrics.view_convert_info_records_from_easu;
|
||||
|
||||
ALTER TABLE metrics.convert_info_records_from_easu DROP COLUMN IF EXISTS count_unique;
|
||||
ALTER TABLE metrics.convert_info_records_from_easu DROP COLUMN IF EXISTS count_all;
|
||||
|
||||
ALTER TABLE metrics.convert_info_records_from_easu ADD COLUMN IF NOT EXISTS count_completed_record int8 DEFAULT 0 NOT NULL;
|
||||
|
||||
CREATE OR REPLACE VIEW metrics.view_convert_info_records_from_easu
|
||||
AS SELECT convert_info_records_from_easu.convert_info_records_from_easu_id,
|
||||
convert_info_records_from_easu.count_completed_record + convert_info_records_from_easu.count_flk_and_duplicate AS count_all,
|
||||
round(convert_info_records_from_easu.count_completed_record::numeric * 100::numeric / (convert_info_records_from_easu.count_completed_record + convert_info_records_from_easu.count_flk_and_duplicate)::numeric) AS percent_completed_record,
|
||||
round(convert_info_records_from_easu.count_flk_and_duplicate::numeric * 100::numeric / (convert_info_records_from_easu.count_completed_record + convert_info_records_from_easu.count_flk_and_duplicate)::numeric) AS percent_flk_and_duplicate
|
||||
FROM metrics.convert_info_records_from_easu;
|
||||
</sql>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="0002" author="saliakhov">
|
||||
<comment>edit</comment>
|
||||
<sql>
|
||||
DROP VIEW IF EXISTS metrics.view_convert_info_loaded_records;
|
||||
|
||||
ALTER TABLE metrics.convert_info_loaded_records ADD COLUMN IF NOT EXISTS count_not_success int8 DEFAULT 0 NOT NULL;
|
||||
|
||||
CREATE OR REPLACE VIEW metrics.view_convert_info_loaded_records
|
||||
AS SELECT convert_info_loaded_records.convert_info_loaded_records_id,
|
||||
convert_info_loaded_records.count_success + convert_info_loaded_records.count_error + convert_info_loaded_records.count_not_success AS count_all,
|
||||
round(convert_info_loaded_records.count_error::numeric * 100::numeric / (convert_info_loaded_records.count_success + convert_info_loaded_records.count_error + convert_info_loaded_records.count_not_success)::numeric) AS percent_error,
|
||||
round(convert_info_loaded_records.count_success::numeric * 100::numeric / (convert_info_loaded_records.count_success + convert_info_loaded_records.count_error + convert_info_loaded_records.count_not_success)::numeric) AS percent_success,
|
||||
round(convert_info_loaded_records.count_not_success::numeric * 100::numeric / (convert_info_loaded_records.count_success + convert_info_loaded_records.count_error + convert_info_loaded_records.count_not_success)::numeric) AS percent_not_success
|
||||
FROM metrics.convert_info_loaded_records;
|
||||
</sql>
|
||||
</changeSet>
|
||||
</databaseChangeLog>
|
||||
|
|
@ -13,5 +13,6 @@
|
|||
<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"/>
|
||||
<include file="20241219-ERVU-db_changes.xml" relativeToChangelogFile="true"/>
|
||||
|
||||
</databaseChangeLog>
|
||||
|
|
@ -1500,7 +1500,6 @@
|
|||
<componentRootId>0b71ab2a-0c7f-4268-9b59-e8ef23bcea4e</componentRootId>
|
||||
<name>ГК Первый ряд показателей</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -1539,9 +1538,8 @@
|
|||
<children id="96dcba2b-4fa7-46b6-8f64-1cef7cd5b5d1">
|
||||
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
|
||||
<componentRootId>96dcba2b-4fa7-46b6-8f64-1cef7cd5b5d1</componentRootId>
|
||||
<name>ВК Загрузка сведений воинского учета</name>
|
||||
<name>ВК Загрузка сведений воинского учета (csv)</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -1602,9 +1600,8 @@
|
|||
<children id="1d1c94ee-1cbd-4db4-b26f-bb81c639c5ff">
|
||||
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
|
||||
<componentRootId>1d1c94ee-1cbd-4db4-b26f-bb81c639c5ff</componentRootId>
|
||||
<name>ГК Загрузка сведений воинского учета</name>
|
||||
<name>ГК Загрузка сведений воинского учета (csv)</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
|
||||
<scripts id="b6068710-0f31-48ec-8e03-c0c1480a40c0"/>
|
||||
|
|
@ -1614,7 +1611,7 @@
|
|||
<children id="53dfbda0-219d-4f42-968f-db2db0b12f0e">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>53dfbda0-219d-4f42-968f-db2db0b12f0e</componentRootId>
|
||||
<name>Загрузка сведений воинского учета</name>
|
||||
<name>Загрузка сведений воинского учета (csv)</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
|
|
@ -1633,7 +1630,7 @@
|
|||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>"Загрузка сведений воинского учета"</simple>
|
||||
<simple>"Загрузка сведений воинского учета (csv)"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -1826,7 +1823,6 @@
|
|||
<componentRootId>1468ba87-73ca-4f34-b226-7dc309bca4c7</componentRootId>
|
||||
<name>ВК График</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -1860,7 +1856,6 @@
|
|||
<expanded>false</expanded>
|
||||
</scripts>
|
||||
<scripts id="81176b3c-f698-4cb8-bf30-782067cba8ad">
|
||||
<expanded>false</expanded>
|
||||
<properties>
|
||||
<entry>
|
||||
<key>chartService</key>
|
||||
|
|
@ -1901,7 +1896,7 @@
|
|||
<entry>
|
||||
<key>aggregationColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_unique"}</simple>
|
||||
<simple>{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_completed_record"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -1919,7 +1914,7 @@
|
|||
<entry>
|
||||
<key>label</key>
|
||||
<value>
|
||||
<simple>"уникальных записей граждан"</simple>
|
||||
<simple>"успешно загруженные записи"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
|
|
@ -1931,7 +1926,7 @@
|
|||
<entry>
|
||||
<key>aggregationColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_records_from_easu","entity":"view_convert_info_records_from_easu","name":"count_without_unique"}</simple>
|
||||
<simple>{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_flk_and_duplicate"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -1943,13 +1938,13 @@
|
|||
<entry>
|
||||
<key>backgroundColor</key>
|
||||
<value>
|
||||
<simple>"#F3F3F3FF"</simple>
|
||||
<simple>"#9193B7FF"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>label</key>
|
||||
<value>
|
||||
<simple>" "</simple>
|
||||
<simple>" записи граждан с ошибками ФЛК и дубликатами"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
|
|
@ -1970,7 +1965,7 @@
|
|||
<entry>
|
||||
<key>cutout</key>
|
||||
<value>
|
||||
<simple>"70%"</simple>
|
||||
<simple>"80%"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -2006,125 +2001,7 @@
|
|||
</value>
|
||||
</item>
|
||||
<item id="9d3f712d-b137-4881-8815-29c66965edf9" removed="true"/>
|
||||
<item id="8f230e65-c749-4f31-bc11-11163f8bcea7" removed="false">
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>columnAggregationDataSet</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>aggregationData</key>
|
||||
<value>
|
||||
<item id="159bc7b8-2166-475d-a8e1-97adfc1a1ede" removed="false">
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>aggregationColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_flk_and_duplicate"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>aggregationFunction</key>
|
||||
<value>
|
||||
<simple>"SUM"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>backgroundColor</key>
|
||||
<value>
|
||||
<simple>"#DEB4B8FF"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>label</key>
|
||||
<value>
|
||||
<simple>"записей идентифицированы в ГИР ВУ"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</item>
|
||||
<item id="6e4b9b66-97c5-412c-8096-58484e34cf72" removed="false">
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>aggregationColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_records_from_easu","entity":"view_convert_info_records_from_easu","name":"count_without_flk_and_duplicate"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>aggregationFunction</key>
|
||||
<value>
|
||||
<simple>"SUM"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>backgroundColor</key>
|
||||
<value>
|
||||
<simple>"#F3F3F3FF"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>label</key>
|
||||
<value>
|
||||
<simple>" "</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</item>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>dataLabel</key>
|
||||
<value>
|
||||
<simple>"записей идентифицированы в ГИР ВУ"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>cutout</key>
|
||||
<value>
|
||||
<simple>"60%"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>datasetType</key>
|
||||
<value>
|
||||
<simple>"COLUMN_AGGREGATION"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>loadDao</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>graph</key>
|
||||
<value>
|
||||
<simple>{"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"convert_info_records_from_easu","schemaName":"metrics","x":381.0,"y":242.0,"alias":"convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"1":{"tableName":"recruitment","schemaName":"metrics","x":209.0,"y":242.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"2":{"tableName":"view_convert_info_records_from_easu","schemaName":"metrics","x":546.0,"y":243.0,"alias":"view_convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"convert_info_records_from_easu","schemaName":"metrics","x":381.0,"y":242.0,"alias":"convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"recruitment","schemaName":"metrics","x":209.0,"y":242.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"view_convert_info_records_from_easu","schemaName":"metrics","x":546.0,"y":243.0,"alias":"view_convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"convert_info_records_from_easu":{"tableName":"convert_info_records_from_easu","schemaName":"metrics","x":381.0,"y":242.0,"alias":"convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"recruitment":{"tableName":"recruitment","schemaName":"metrics","x":209.0,"y":242.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"view_convert_info_records_from_easu":{"tableName":"view_convert_info_records_from_easu","schemaName":"metrics","x":546.0,"y":243.0,"alias":"view_convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null,{"refOnEntityName":"convert_info_records_from_easu","refToEntityName":"recruitment","refToColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"id"}],"refOnColumns":[{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"recruitment_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}},null],[null,null,null],[{"refOnEntityName":"view_convert_info_records_from_easu","refToEntityName":"convert_info_records_from_easu","refToColumns":[{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"convert_info_records_from_easu_id"}],"refOnColumns":[{"schema":"metrics","table":"view_convert_info_records_from_easu","entity":"view_convert_info_records_from_easu","name":"convert_info_records_from_easu_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}},null,null]],"mainNodeIndex":0}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
<implRef type="JAVA">
|
||||
<className>DefaultLoadDao</className>
|
||||
<packageName>database.dao</packageName>
|
||||
</implRef>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>radius</key>
|
||||
<value>
|
||||
<simple>"70%"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</item>
|
||||
<item id="8f230e65-c749-4f31-bc11-11163f8bcea7" removed="true"/>
|
||||
<item id="ee493e5b-9aac-4b2e-85fe-69e6fb29a8d6" removed="true"/>
|
||||
<item id="1a145f9a-eba3-47a4-a7c7-1548ef06ec04" removed="true"/>
|
||||
<item id="ba9ca91e-3b93-43ac-8668-8d917738dde6" removed="true"/>
|
||||
|
|
@ -2406,7 +2283,7 @@
|
|||
<entry>
|
||||
<key>defaultValueColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_all"}</simple>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_records_from_easu","entity":"view_convert_info_records_from_easu","name":"count_all"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -2428,7 +2305,7 @@
|
|||
<entry>
|
||||
<key>valueByEventColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_all"}</simple>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_records_from_easu","entity":"view_convert_info_records_from_easu","name":"count_all"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
|
|
@ -2471,7 +2348,7 @@
|
|||
<children id="7d001fb3-3a74-4c72-9880-c61b79dbee6e">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>7d001fb3-3a74-4c72-9880-c61b79dbee6e</componentRootId>
|
||||
<name>записей о гражданах выгружено из ТБД МО, в т.ч.:</name>
|
||||
<name>записей о гражданах загружено из ТБД МО, в т.ч.:</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
|
|
@ -2479,7 +2356,7 @@
|
|||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>"записей о гражданах выгружено из ТБД МО, в т.ч.:"</simple>
|
||||
<simple>"записей о гражданах загружено из ТБД МО, в т.ч.:"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -2491,7 +2368,7 @@
|
|||
<entry>
|
||||
<key>tooltip</key>
|
||||
<value>
|
||||
<simple>"записей о гражданах выгружено из ТБД МО, в т.ч.:"</simple>
|
||||
<simple>"записей о гражданах загружено из ТБД МО, в т.ч.:"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
|
|
@ -2591,7 +2468,7 @@
|
|||
<children id="2f993951-8c36-4640-856a-5ab477000709">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>2f993951-8c36-4640-856a-5ab477000709</componentRootId>
|
||||
<name>95%</name>
|
||||
<name>1%</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
|
|
@ -2657,7 +2534,7 @@
|
|||
<entry>
|
||||
<key>defaultValueColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_records_from_easu","entity":"view_convert_info_records_from_easu","name":"percent_unique"}</simple>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_records_from_easu","entity":"view_convert_info_records_from_easu","name":"percent_completed_record"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -2679,7 +2556,7 @@
|
|||
<entry>
|
||||
<key>valueByEventColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_records_from_easu","entity":"view_convert_info_records_from_easu","name":"percent_unique"}</simple>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_records_from_easu","entity":"view_convert_info_records_from_easu","name":"percent_completed_record"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
|
|
@ -2691,7 +2568,7 @@
|
|||
<children id="5d79ceba-c6d8-4964-8dff-668831000c79">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>5d79ceba-c6d8-4964-8dff-668831000c79</componentRootId>
|
||||
<name>56%</name>
|
||||
<name>2%</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
|
|
@ -2701,7 +2578,7 @@
|
|||
<value>
|
||||
<item id="70c9006b-566d-4426-a1bd-f06bd5fe9d21" removed="false">
|
||||
<value>
|
||||
<simple>"legend-col-red"</simple>
|
||||
<simple>"legend-col-lila"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="c97b9ddc-8407-482e-8244-cfcc3c44edab" removed="true"/>
|
||||
|
|
@ -2801,7 +2678,7 @@
|
|||
<children id="0839c42a-386a-4910-a5b3-7a596615236e">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>0839c42a-386a-4910-a5b3-7a596615236e</componentRootId>
|
||||
<name>16 541</name>
|
||||
<name>1</name>
|
||||
<container>false</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
|
|
@ -2834,7 +2711,7 @@
|
|||
<entry>
|
||||
<key>defaultValueColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_unique"}</simple>
|
||||
<simple>{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_completed_record"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -2856,7 +2733,7 @@
|
|||
<entry>
|
||||
<key>valueByEventColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_unique"}</simple>
|
||||
<simple>{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_completed_record"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
|
|
@ -2868,7 +2745,7 @@
|
|||
<children id="bb464245-473d-464c-baf6-26c52e6786fe">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>bb464245-473d-464c-baf6-26c52e6786fe</componentRootId>
|
||||
<name>9 765</name>
|
||||
<name>2</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
|
|
@ -2959,7 +2836,7 @@
|
|||
<children id="652df54d-8ba7-4539-915a-2fcabb537b88">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>652df54d-8ba7-4539-915a-2fcabb537b88</componentRootId>
|
||||
<name>уникальных записей граждан</name>
|
||||
<name>успешно загруженные записи</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
|
|
@ -2967,7 +2844,7 @@
|
|||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>"уникальных записей граждан"</simple>
|
||||
<simple>"успешно загруженные записи"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -2979,7 +2856,7 @@
|
|||
<entry>
|
||||
<key>tooltip</key>
|
||||
<value>
|
||||
<simple>"уникальных записей граждан"</simple>
|
||||
<simple>"успешно загруженные записи"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
|
|
@ -2994,7 +2871,7 @@
|
|||
<children id="cd0bff7a-448b-4b5c-995e-1934c5268cc6">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>cd0bff7a-448b-4b5c-995e-1934c5268cc6</componentRootId>
|
||||
<name>записей граждан с ошибками ФЛК и дубликаты</name>
|
||||
<name>записи граждан с ошибками ФЛК и дубликатами</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
|
|
@ -3002,7 +2879,7 @@
|
|||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>"записей граждан с ошибками ФЛК и дубликаты"</simple>
|
||||
<simple>"записи граждан с ошибками ФЛК и дубликатами"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -3014,7 +2891,7 @@
|
|||
<entry>
|
||||
<key>tooltip</key>
|
||||
<value>
|
||||
<simple>"записей граждан с ошибками ФЛК и дубликаты"</simple>
|
||||
<simple>"записи граждан с ошибками ФЛК и дубликатами"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
|
|
@ -3345,7 +3222,7 @@
|
|||
<entry>
|
||||
<key>aggregationColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_loaded_records","entity":"convert_info_loaded_records","name":"count_error"}</simple>
|
||||
<simple>{"schema":"metrics","table":"convert_info_loaded_records","entity":"convert_info_loaded_records","name":"count_success"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -3363,7 +3240,7 @@
|
|||
<entry>
|
||||
<key>label</key>
|
||||
<value>
|
||||
<simple>"загружено с ошибками"</simple>
|
||||
<simple>"успешно загружено"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
|
|
@ -3375,7 +3252,7 @@
|
|||
<entry>
|
||||
<key>aggregationColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_loaded_records","entity":"convert_info_loaded_records","name":"count_success"}</simple>
|
||||
<simple>{"schema":"metrics","table":"convert_info_loaded_records","entity":"convert_info_loaded_records","name":"count_error"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -3393,7 +3270,37 @@
|
|||
<entry>
|
||||
<key>label</key>
|
||||
<value>
|
||||
<simple>"загружено без ошибок"</simple>
|
||||
<simple>"успешно загружено с некритичными ошибками"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</item>
|
||||
<item id="6b6e45cb-d014-40a4-b5c4-22dac61bb0d8" removed="false">
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>aggregationColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_loaded_records","entity":"convert_info_loaded_records","name":"count_not_success"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>aggregationFunction</key>
|
||||
<value>
|
||||
<simple>"SUM"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>backgroundColor</key>
|
||||
<value>
|
||||
<simple>"#E4AAACFF"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>label</key>
|
||||
<value>
|
||||
<simple>"не загружено"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
|
|
@ -3756,7 +3663,7 @@
|
|||
<children id="48086388-f8ca-4e02-b53a-16f9790de0aa">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>48086388-f8ca-4e02-b53a-16f9790de0aa</componentRootId>
|
||||
<name>записей ТБД МО, успешно обновленных данными ГИР ВУ, в т. ч.:</name>
|
||||
<name>записей о гражданах загружено из ГИР ВУ, в т.ч.:</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
|
|
@ -3764,7 +3671,7 @@
|
|||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>"записей ТБД МО, успешно обновленных данными ГИР ВУ, в т. ч.:"</simple>
|
||||
<simple>"записей о гражданах загружено из ГИР ВУ, в т.ч.:"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -3776,7 +3683,7 @@
|
|||
<entry>
|
||||
<key>tooltip</key>
|
||||
<value>
|
||||
<simple>"записей ТБД МО, успешно обновленных данными ГИР ВУ, в т. ч.:"</simple>
|
||||
<simple>"записей о гражданах загружено из ГИР ВУ, в т.ч.:"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
|
|
@ -3822,6 +3729,275 @@
|
|||
<scripts id="fe04d7fb-6c5b-46c4-b723-667732d81f4f"/>
|
||||
<scripts id="5c566210-2a60-4048-a2d1-84c7dd023248"/>
|
||||
<scripts id="3171b2e1-b4af-4335-95fa-1b2592604b84"/>
|
||||
<children id="77fe8ad4-f486-410c-817d-d845d510d4db">
|
||||
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
|
||||
<componentRootId>77fe8ad4-f486-410c-817d-d845d510d4db</componentRootId>
|
||||
<name>Вертикальный контейнер</name>
|
||||
<container>true</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
|
||||
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
|
||||
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380"/>
|
||||
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f"/>
|
||||
<scripts id="277e6fbc-9e2e-4080-bf20-5d8be18e6764"/>
|
||||
<children id="968c0233-58a5-47f2-92e3-1f6235e34887">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>968c0233-58a5-47f2-92e3-1f6235e34887</componentRootId>
|
||||
<name>1%</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>cssClasses</key>
|
||||
<value>
|
||||
<item id="6608a616-91aa-4696-8394-4a2c0ac077ec" removed="false">
|
||||
<value>
|
||||
<simple>"legend-col-blue"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="8601f823-4ed2-4475-9154-08c6d55f173a" removed="false">
|
||||
<value>
|
||||
<simple>"text-invert"</simple>
|
||||
</value>
|
||||
</item>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>textFormatter</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>unitsLabel</key>
|
||||
<value>
|
||||
<simple>"%"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>unitsText</key>
|
||||
<value>
|
||||
<simple>{"objectId":"968c0233-58a5-47f2-92e3-1f6235e34887","packageName":"component","className":"Text","type":"TS"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
<implRef type="TS">
|
||||
<className>UnitsLabelReplaceValueTextFormatter</className>
|
||||
<packageName>ervu_business_metrics.formatter</packageName>
|
||||
</implRef>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>defaultValueColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_loaded_records","entity":"view_convert_info_loaded_records","name":"percent_success"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>loadType</key>
|
||||
<value>
|
||||
<simple>"BY_COLUMN"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>loadType</key>
|
||||
<value>
|
||||
<simple>"BY_COLUMN"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>valueByEventColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_loaded_records","entity":"view_convert_info_loaded_records","name":"percent_success"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
</children>
|
||||
<children id="40957d4f-153a-4401-90b6-d49e17dac2bf">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>40957d4f-153a-4401-90b6-d49e17dac2bf</componentRootId>
|
||||
<name>2%</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>cssClasses</key>
|
||||
<value>
|
||||
<item id="f51dd8e2-530b-4fc3-bea6-c9f880134b20" removed="false">
|
||||
<value>
|
||||
<simple>"legend-col-lila"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="591147d7-a5bd-4a66-846b-4e4914ac3df7" removed="false">
|
||||
<value>
|
||||
<simple>"text-invert"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="c14584d1-271c-4934-8266-6bb6636205c5" removed="true"/>
|
||||
<item id="ef628853-0c30-4535-aab1-07d211c9c69a" removed="true"/>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>textFormatter</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>unitsLabel</key>
|
||||
<value>
|
||||
<simple>"%"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>unitsText</key>
|
||||
<value>
|
||||
<simple>{"objectId":"40957d4f-153a-4401-90b6-d49e17dac2bf","packageName":"component","className":"Text","type":"TS"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
<implRef type="TS">
|
||||
<className>UnitsLabelReplaceValueTextFormatter</className>
|
||||
<packageName>ervu_business_metrics.formatter</packageName>
|
||||
</implRef>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>defaultValueColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_loaded_records","entity":"view_convert_info_loaded_records","name":"percent_error"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>loadType</key>
|
||||
<value>
|
||||
<simple>"BY_COLUMN"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>loadType</key>
|
||||
<value>
|
||||
<simple>"BY_COLUMN"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>valueByEventColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_loaded_records","entity":"view_convert_info_loaded_records","name":"percent_error"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
</children>
|
||||
<children id="ee6c8044-833f-43b9-a43f-b5195d4cab24">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>ee6c8044-833f-43b9-a43f-b5195d4cab24</componentRootId>
|
||||
<name>3%</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>cssClasses</key>
|
||||
<value>
|
||||
<item id="568fcde7-d5b3-46f0-9434-ab8ba1ecedaa" removed="false">
|
||||
<value>
|
||||
<simple>"legend-col-red"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="67486a75-525f-42d6-b70c-fa3f65b3924f" removed="false">
|
||||
<value>
|
||||
<simple>"text-invert"</simple>
|
||||
</value>
|
||||
</item>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>textFormatter</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>unitsLabel</key>
|
||||
<value>
|
||||
<simple>"%"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>unitsText</key>
|
||||
<value>
|
||||
<simple>{"objectId":"ee6c8044-833f-43b9-a43f-b5195d4cab24","packageName":"component","className":"Text","type":"TS"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
<implRef type="TS">
|
||||
<className>UnitsLabelReplaceValueTextFormatter</className>
|
||||
<packageName>ervu_business_metrics.formatter</packageName>
|
||||
</implRef>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>defaultValueColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_loaded_records","entity":"view_convert_info_loaded_records","name":"percent_not_success"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>loadType</key>
|
||||
<value>
|
||||
<simple>"BY_COLUMN"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>loadType</key>
|
||||
<value>
|
||||
<simple>"BY_COLUMN"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>valueByEventColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"view_convert_info_loaded_records","entity":"view_convert_info_loaded_records","name":"percent_not_success"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
</children>
|
||||
</children>
|
||||
<children id="4e575bf7-a1e8-4d3e-bcda-21b3d2afb6d0">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>4e575bf7-a1e8-4d3e-bcda-21b3d2afb6d0</componentRootId>
|
||||
|
|
@ -3850,7 +4026,7 @@
|
|||
<children id="4e575bf7-a1e8-4d3e-bcda-21b3d2afb6d0">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>4e575bf7-a1e8-4d3e-bcda-21b3d2afb6d0</componentRootId>
|
||||
<name>3 000</name>
|
||||
<name>1</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
|
|
@ -3858,11 +4034,7 @@
|
|||
<entry>
|
||||
<key>cssClasses</key>
|
||||
<value>
|
||||
<item id="3ed263e1-7dc7-4254-b248-4053423d54ab" removed="false">
|
||||
<value>
|
||||
<simple>"legend-col-lila"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="3ed263e1-7dc7-4254-b248-4053423d54ab" removed="true"/>
|
||||
<item id="5cb46dd4-717f-4384-8321-7095cd8352e7" removed="true"/>
|
||||
</value>
|
||||
</entry>
|
||||
|
|
@ -3881,6 +4053,72 @@
|
|||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>defaultValueColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_loaded_records","entity":"convert_info_loaded_records","name":"count_success"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>loadType</key>
|
||||
<value>
|
||||
<simple>"BY_COLUMN"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>loadType</key>
|
||||
<value>
|
||||
<simple>"BY_COLUMN"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>valueByEventColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_loaded_records","entity":"convert_info_loaded_records","name":"count_success"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
</children>
|
||||
<children id="8b7e70fb-61c7-40d3-9ff0-9aafb2954d18">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>8b7e70fb-61c7-40d3-9ff0-9aafb2954d18</componentRootId>
|
||||
<name>2</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>cssClasses</key>
|
||||
<value>
|
||||
<item id="9a3f4d0b-c257-466e-a6ee-59662fa15368" removed="true"/>
|
||||
<item id="28ccc273-7423-4a8e-8234-263cc8b5ac56" removed="true"/>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>textFormatter</key>
|
||||
<value>
|
||||
<implRef/>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048">
|
||||
<properties>
|
||||
<entry>
|
||||
|
|
@ -3917,46 +4155,20 @@
|
|||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
</children>
|
||||
<children id="8b7e70fb-61c7-40d3-9ff0-9aafb2954d18">
|
||||
<children id="504a86f1-e914-4c38-a3a2-a0acba857ecf">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>8b7e70fb-61c7-40d3-9ff0-9aafb2954d18</componentRootId>
|
||||
<name>7 000</name>
|
||||
<componentRootId>504a86f1-e914-4c38-a3a2-a0acba857ecf</componentRootId>
|
||||
<name>3</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>cssClasses</key>
|
||||
<value>
|
||||
<item id="9a3f4d0b-c257-466e-a6ee-59662fa15368" removed="false">
|
||||
<value>
|
||||
<simple>"legend-col-blue"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="28ccc273-7423-4a8e-8234-263cc8b5ac56" removed="true"/>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>textFormatter</key>
|
||||
<value>
|
||||
<implRef/>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c"/>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>defaultValueColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_loaded_records","entity":"convert_info_loaded_records","name":"count_success"}</simple>
|
||||
<simple>{"schema":"metrics","table":"convert_info_loaded_records","entity":"convert_info_loaded_records","name":"count_not_success"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -3978,7 +4190,7 @@
|
|||
<entry>
|
||||
<key>valueByEventColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"convert_info_loaded_records","entity":"convert_info_loaded_records","name":"count_success"}</simple>
|
||||
<simple>{"schema":"metrics","table":"convert_info_loaded_records","entity":"convert_info_loaded_records","name":"count_not_success"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
|
|
@ -4016,7 +4228,7 @@
|
|||
<children id="10eed792-d922-4252-afb2-c37a3b29ea9b">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>10eed792-d922-4252-afb2-c37a3b29ea9b</componentRootId>
|
||||
<name>загружено с ошибками (не критичные)</name>
|
||||
<name>успешно загружено</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
|
|
@ -4024,7 +4236,7 @@
|
|||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>"загружено с ошибками (не критичные)"</simple>
|
||||
<simple>"успешно загружено"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -4036,7 +4248,7 @@
|
|||
<entry>
|
||||
<key>tooltip</key>
|
||||
<value>
|
||||
<simple>"загружено с ошибками (не критичные)"</simple>
|
||||
<simple>"успешно загружено"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
|
|
@ -4051,7 +4263,7 @@
|
|||
<children id="ba284cda-40c7-4d13-8984-0da363e499e9">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>ba284cda-40c7-4d13-8984-0da363e499e9</componentRootId>
|
||||
<name>загружено без ошибок</name>
|
||||
<name>успешно загружено с некритичными ошибками</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
|
|
@ -4059,7 +4271,7 @@
|
|||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>"загружено без ошибок"</simple>
|
||||
<simple>"успешно загружено с некритичными ошибками"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
|
|
@ -4071,7 +4283,36 @@
|
|||
<entry>
|
||||
<key>tooltip</key>
|
||||
<value>
|
||||
<simple>"загружено без ошибок"</simple>
|
||||
<simple>"успешно загружено с некритичными ошибками"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048"/>
|
||||
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127"/>
|
||||
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
</children>
|
||||
<children id="527aad78-bc84-4112-add4-6a1438a1b8f4">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>527aad78-bc84-4112-add4-6a1438a1b8f4</componentRootId>
|
||||
<name>Текст</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>"не загружено"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>tooltip</key>
|
||||
<value>
|
||||
<simple>"не загружено"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
|
|
@ -6684,6 +6925,7 @@
|
|||
<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>
|
||||
|
|
|
|||
|
|
@ -25480,7 +25480,6 @@
|
|||
<componentRootId>160f5fc4-2041-4779-9bad-e5b9bf61ad86</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"/>
|
||||
|
|
@ -25492,7 +25491,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>
|
||||
|
|
@ -25517,7 +25515,6 @@
|
|||
<componentRootId>a55d6b3f-4191-4aa3-be54-99bd86215c5c</componentRootId>
|
||||
<name>Первоначальная постановка на учет по данным ГИР ВУ</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -26924,6 +26921,7 @@
|
|||
<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>
|
||||
|
|
@ -28369,6 +28367,7 @@
|
|||
<componentRootId>78372736-3179-4b79-bd3a-8c1df6f2c9ba</componentRootId>
|
||||
<name>ГК Второй ряд</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -33122,6 +33121,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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue