графики
This commit is contained in:
parent
e45051a7f3
commit
0ec0a232b9
4 changed files with 555 additions and 268 deletions
|
|
@ -79,12 +79,6 @@ public class ViewIncidentsChangeDataFromGirVu extends TableImpl<ViewIncidentsCha
|
|||
*/
|
||||
public final TableField<ViewIncidentsChangeDataFromGirVuRecord, BigDecimal> PERCENT_SEND_TO_GIR_VU = createField(DSL.name("percent_send_to_gir_vu"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.view_incidents_change_data_from_gir_vu.percent_accepted</code>.
|
||||
*/
|
||||
public final TableField<ViewIncidentsChangeDataFromGirVuRecord, BigDecimal> PERCENT_ACCEPTED = createField(DSL.name("percent_accepted"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
private ViewIncidentsChangeDataFromGirVu(Name alias, Table<ViewIncidentsChangeDataFromGirVuRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
|
@ -92,11 +86,10 @@ public class ViewIncidentsChangeDataFromGirVu extends TableImpl<ViewIncidentsCha
|
|||
private ViewIncidentsChangeDataFromGirVu(Name alias, Table<ViewIncidentsChangeDataFromGirVuRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
|
||||
create view "view_incidents_change_data_from_gir_vu" as SELECT incidents_change_data_from_gir_vu.incidents_change_data_from_gir_vu_id,
|
||||
(((incidents_change_data_from_gir_vu.count_epgu_citizen_appeal + incidents_change_data_from_gir_vu.count_manual) + incidents_change_data_from_gir_vu.count_send_to_gir_vu) + incidents_change_data_from_gir_vu.count_accepted) AS count_all,
|
||||
round((((incidents_change_data_from_gir_vu.count_epgu_citizen_appeal)::numeric * (100)::numeric) / ((((incidents_change_data_from_gir_vu.count_epgu_citizen_appeal + incidents_change_data_from_gir_vu.count_manual) + incidents_change_data_from_gir_vu.count_send_to_gir_vu) + incidents_change_data_from_gir_vu.count_accepted))::numeric)) AS percent_epgu_citizen_appeal,
|
||||
round((((incidents_change_data_from_gir_vu.count_manual)::numeric * (100)::numeric) / ((((incidents_change_data_from_gir_vu.count_epgu_citizen_appeal + incidents_change_data_from_gir_vu.count_manual) + incidents_change_data_from_gir_vu.count_send_to_gir_vu) + incidents_change_data_from_gir_vu.count_accepted))::numeric)) AS percent_manual,
|
||||
round((((incidents_change_data_from_gir_vu.count_send_to_gir_vu)::numeric * (100)::numeric) / ((((incidents_change_data_from_gir_vu.count_epgu_citizen_appeal + incidents_change_data_from_gir_vu.count_manual) + incidents_change_data_from_gir_vu.count_send_to_gir_vu) + incidents_change_data_from_gir_vu.count_accepted))::numeric)) AS percent_send_to_gir_vu,
|
||||
round((((incidents_change_data_from_gir_vu.count_accepted)::numeric * (100)::numeric) / ((((incidents_change_data_from_gir_vu.count_epgu_citizen_appeal + incidents_change_data_from_gir_vu.count_manual) + incidents_change_data_from_gir_vu.count_send_to_gir_vu) + incidents_change_data_from_gir_vu.count_accepted))::numeric)) AS percent_accepted
|
||||
((incidents_change_data_from_gir_vu.count_epgu_citizen_appeal + incidents_change_data_from_gir_vu.count_manual) + incidents_change_data_from_gir_vu.count_send_to_gir_vu) AS count_all,
|
||||
round((((incidents_change_data_from_gir_vu.count_epgu_citizen_appeal)::numeric * (100)::numeric) / (((incidents_change_data_from_gir_vu.count_epgu_citizen_appeal + incidents_change_data_from_gir_vu.count_manual) + incidents_change_data_from_gir_vu.count_send_to_gir_vu))::numeric)) AS percent_epgu_citizen_appeal,
|
||||
round((((incidents_change_data_from_gir_vu.count_manual)::numeric * (100)::numeric) / (((incidents_change_data_from_gir_vu.count_epgu_citizen_appeal + incidents_change_data_from_gir_vu.count_manual) + incidents_change_data_from_gir_vu.count_send_to_gir_vu))::numeric)) AS percent_manual,
|
||||
round((((incidents_change_data_from_gir_vu.count_send_to_gir_vu)::numeric * (100)::numeric) / (((incidents_change_data_from_gir_vu.count_epgu_citizen_appeal + incidents_change_data_from_gir_vu.count_manual) + incidents_change_data_from_gir_vu.count_send_to_gir_vu))::numeric)) AS percent_send_to_gir_vu
|
||||
FROM metrics.incidents_change_data_from_gir_vu;
|
||||
"""), where);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -99,22 +99,6 @@ public class ViewIncidentsChangeDataFromGirVuRecord extends TableRecordImpl<View
|
|||
return (BigDecimal) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.view_incidents_change_data_from_gir_vu.percent_accepted</code>.
|
||||
*/
|
||||
public void setPercentAccepted(BigDecimal value) {
|
||||
set(5, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.view_incidents_change_data_from_gir_vu.percent_accepted</code>.
|
||||
*/
|
||||
public BigDecimal getPercentAccepted() {
|
||||
return (BigDecimal) get(5);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -129,7 +113,7 @@ public class ViewIncidentsChangeDataFromGirVuRecord extends TableRecordImpl<View
|
|||
/**
|
||||
* Create a detached, initialised ViewIncidentsChangeDataFromGirVuRecord
|
||||
*/
|
||||
public ViewIncidentsChangeDataFromGirVuRecord(Long incidentsChangeDataFromGirVuId, Long countAll, BigDecimal percentEpguCitizenAppeal, BigDecimal percentManual, BigDecimal percentSendToGirVu, BigDecimal percentAccepted) {
|
||||
public ViewIncidentsChangeDataFromGirVuRecord(Long incidentsChangeDataFromGirVuId, Long countAll, BigDecimal percentEpguCitizenAppeal, BigDecimal percentManual, BigDecimal percentSendToGirVu) {
|
||||
super(ViewIncidentsChangeDataFromGirVu.VIEW_INCIDENTS_CHANGE_DATA_FROM_GIR_VU);
|
||||
|
||||
setIncidentsChangeDataFromGirVuId(incidentsChangeDataFromGirVuId);
|
||||
|
|
@ -137,7 +121,6 @@ public class ViewIncidentsChangeDataFromGirVuRecord extends TableRecordImpl<View
|
|||
setPercentEpguCitizenAppeal(percentEpguCitizenAppeal);
|
||||
setPercentManual(percentManual);
|
||||
setPercentSendToGirVu(percentSendToGirVu);
|
||||
setPercentAccepted(percentAccepted);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1492,7 +1492,6 @@
|
|||
<componentRootId>450ccffd-2fbb-4df7-9643-e981d1c69428</componentRootId>
|
||||
<name>ВК Изменений сведений из ГИР ВУ</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -1535,7 +1534,7 @@
|
|||
<entry>
|
||||
<key>graph</key>
|
||||
<value>
|
||||
<simple>{"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":223.0,"y":85.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"1":{"tableName":"view_incidents_change_data_from_gir_vu","schemaName":"metrics","x":463.0,"y":103.0,"alias":"view_incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"2":{"tableName":"recruitment","schemaName":"metrics","x":57.0,"y":174.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":223.0,"y":85.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"view_incidents_change_data_from_gir_vu","schemaName":"metrics","x":463.0,"y":103.0,"alias":"view_incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"recruitment","schemaName":"metrics","x":57.0,"y":174.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"recruitment":{"tableName":"recruitment","schemaName":"metrics","x":57.0,"y":174.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"incidents_change_data_from_gir_vu":{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":223.0,"y":85.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"view_incidents_change_data_from_gir_vu":{"tableName":"view_incidents_change_data_from_gir_vu","schemaName":"metrics","x":463.0,"y":103.0,"alias":"view_incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null,null,{"refOnEntityName":"incidents_change_data_from_gir_vu","refToEntityName":"recruitment","refToColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"id"}],"refOnColumns":[{"schema":"metrics","table":"incidents_change_data_from_gir_vu","entity":"incidents_change_data_from_gir_vu","name":"recruitment_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}}],[{"refOnEntityName":"view_incidents_change_data_from_gir_vu","refToEntityName":"incidents_change_data_from_gir_vu","refToColumns":[{"schema":"metrics","table":"incidents_change_data_from_gir_vu","entity":"incidents_change_data_from_gir_vu","name":"incidents_change_data_from_gir_vu_id"}],"refOnColumns":[{"schema":"metrics","table":"view_incidents_change_data_from_gir_vu","entity":"view_incidents_change_data_from_gir_vu","name":"incidents_change_data_from_gir_vu_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}},null,null],[null,null,null]],"mainNodeIndex":0}</simple>
|
||||
<simple>{"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":251.0,"y":54.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"1":{"tableName":"view_incidents_change_data_from_gir_vu","schemaName":"metrics","x":431.0,"y":142.0,"alias":"view_incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"2":{"tableName":"recruitment","schemaName":"metrics","x":62.0,"y":143.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":251.0,"y":54.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"view_incidents_change_data_from_gir_vu","schemaName":"metrics","x":431.0,"y":142.0,"alias":"view_incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"recruitment","schemaName":"metrics","x":62.0,"y":143.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"recruitment":{"tableName":"recruitment","schemaName":"metrics","x":62.0,"y":143.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"incidents_change_data_from_gir_vu":{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":251.0,"y":54.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"view_incidents_change_data_from_gir_vu":{"tableName":"view_incidents_change_data_from_gir_vu","schemaName":"metrics","x":431.0,"y":142.0,"alias":"view_incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null,null,{"refOnEntityName":"incidents_change_data_from_gir_vu","refToEntityName":"recruitment","refToColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"id"}],"refOnColumns":[{"schema":"metrics","table":"incidents_change_data_from_gir_vu","entity":"incidents_change_data_from_gir_vu","name":"recruitment_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}}],[{"refOnEntityName":"view_incidents_change_data_from_gir_vu","refToEntityName":"incidents_change_data_from_gir_vu","refToColumns":[{"schema":"metrics","table":"incidents_change_data_from_gir_vu","entity":"incidents_change_data_from_gir_vu","name":"incidents_change_data_from_gir_vu_id"}],"refOnColumns":[{"schema":"metrics","table":"view_incidents_change_data_from_gir_vu","entity":"view_incidents_change_data_from_gir_vu","name":"incidents_change_data_from_gir_vu_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}},null,null],[null,null,null]],"mainNodeIndex":0}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
|
|
@ -1880,36 +1879,7 @@
|
|||
</complex>
|
||||
</value>
|
||||
</item>
|
||||
<item id="b38aaeb5-04f1-4d85-bbe0-0ee9474249a5" removed="false">
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>aggregationColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"incidents_change_data_from_gir_vu","entity":"incidents_change_data_from_gir_vu","name":"count_accepted"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>aggregationFunction</key>
|
||||
<value>
|
||||
<simple>"SUM"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>backgroundColor</key>
|
||||
<value>
|
||||
<simple>"#DECA9AFF"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>label</key>
|
||||
<value>
|
||||
<simple>"принято на рассмотрение"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</item>
|
||||
<item id="b38aaeb5-04f1-4d85-bbe0-0ee9474249a5" removed="true"/>
|
||||
<item id="258b449b-763f-46c4-8e33-ad90a31aba03" removed="true"/>
|
||||
<item id="b8c4fb5a-51cb-4831-9a5e-633be2963b4c" removed="true"/>
|
||||
<item id="830d5af5-2181-43ea-8d9e-52772ba4992d" removed="true"/>
|
||||
|
|
@ -2281,6 +2251,12 @@
|
|||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>tooltip</key>
|
||||
<value>
|
||||
<simple>"зарегистрировано, в т.ч.:"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
|
|
@ -2317,7 +2293,6 @@
|
|||
<componentRootId>1f52384f-f834-428d-8f0f-b8effdb16b0c</componentRootId>
|
||||
<name>Vbox%</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -2612,91 +2587,7 @@
|
|||
<componentRootId>7a3e9492-9fb5-4e1c-ba50-1eafd8f8b50a</componentRootId>
|
||||
<name>4%</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>cssClasses</key>
|
||||
<value>
|
||||
<item id="4af56302-f1a2-42a9-b66b-1a1023d50f9c" removed="false">
|
||||
<value>
|
||||
<simple>"text-invert"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="485b66e9-90de-4039-86a5-1dbf6081c218" removed="false">
|
||||
<value>
|
||||
<simple>"legend-col-yellow"</simple>
|
||||
</value>
|
||||
</item>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>textFormatter</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>unitsLabel</key>
|
||||
<value>
|
||||
<simple>"%"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>unitsText</key>
|
||||
<value>
|
||||
<simple>{"objectId":"7a3e9492-9fb5-4e1c-ba50-1eafd8f8b50a","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_incidents_change_data_from_gir_vu","entity":"view_incidents_change_data_from_gir_vu","name":"percent_accepted"}</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_incidents_change_data_from_gir_vu","entity":"view_incidents_change_data_from_gir_vu","name":"percent_accepted"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
<removed>true</removed>
|
||||
</children>
|
||||
</children>
|
||||
<children id="17caa280-14c3-40a5-8be4-0df07d63a18c">
|
||||
|
|
@ -2704,7 +2595,6 @@
|
|||
<componentRootId>17caa280-14c3-40a5-8be4-0df07d63a18c</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"/>
|
||||
|
|
@ -2875,53 +2765,7 @@
|
|||
<componentRootId>3d71b1d8-5199-4ad2-97e1-373b0be0abbd</componentRootId>
|
||||
<name>4</name>
|
||||
<container>false</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>defaultValueColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"incidents_change_data_from_gir_vu","entity":"incidents_change_data_from_gir_vu","name":"count_accepted"}</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":"incidents_change_data_from_gir_vu","entity":"incidents_change_data_from_gir_vu","name":"count_accepted"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
<removed>true</removed>
|
||||
</children>
|
||||
</children>
|
||||
<children id="81001d3d-48ef-4703-a591-96ed10efcb66">
|
||||
|
|
@ -3030,6 +2874,12 @@
|
|||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>tooltip</key>
|
||||
<value>
|
||||
<simple>"в результате обращений граждан из ЕПГУ"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
|
|
@ -3059,6 +2909,12 @@
|
|||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>tooltip</key>
|
||||
<value>
|
||||
<simple>"созданных вручную"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
|
|
@ -3088,6 +2944,12 @@
|
|||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>tooltip</key>
|
||||
<value>
|
||||
<simple>"отправлено из ГИР ВУ"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
|
|
@ -3102,29 +2964,7 @@
|
|||
<componentRootId>dde7a00a-65ea-4517-a587-a628f0a253ec</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>label</key>
|
||||
<value>
|
||||
<simple>null</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>
|
||||
<removed>true</removed>
|
||||
</children>
|
||||
</children>
|
||||
</children>
|
||||
|
|
@ -3150,19 +2990,48 @@
|
|||
<componentRootId>c2dd08bc-ca05-45d8-9249-669b2c84d9e8</componentRootId>
|
||||
<name>ВК</name>
|
||||
<container>true</container>
|
||||
<removed>true</removed>
|
||||
</children>
|
||||
<children id="8c048d37-2167-4bfd-86b1-1e5ac6f71e2a">
|
||||
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
|
||||
<componentRootId>8c048d37-2167-4bfd-86b1-1e5ac6f71e2a</componentRootId>
|
||||
<name>ВК уникальных записей граждан</name>
|
||||
<container>true</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>cssClasses</key>
|
||||
<value>
|
||||
<item id="ccb0c43f-2fda-4f23-8aa8-996709d69599" removed="true"/>
|
||||
<item id="c3960f38-b0dd-4375-b1de-7af7bb6f636d" removed="false">
|
||||
<value>
|
||||
<simple>"block-colored"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="325c02c0-c996-481b-97af-9a461960f69b" removed="false">
|
||||
<value>
|
||||
<simple>"colored-blue"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="86ae9308-5ba5-4591-96cc-0d20aa3f105d" removed="false">
|
||||
<value>
|
||||
<simple>"block-section"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="8e252fe7-604c-42aa-9957-dac8a896bead" removed="true"/>
|
||||
<item id="3e762ce5-2ed4-4b06-b6d5-91ebdb3c7bca" removed="true"/>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>style</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>height</key>
|
||||
<value>
|
||||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>width</key>
|
||||
<value>
|
||||
|
|
@ -3174,38 +3043,237 @@
|
|||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
|
||||
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380"/>
|
||||
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f"/>
|
||||
<scripts id="277e6fbc-9e2e-4080-bf20-5d8be18e6764"/>
|
||||
<children id="92e6ddb7-5072-4005-88cf-0bdea95221df">
|
||||
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e">
|
||||
<enabled>true</enabled>
|
||||
<properties>
|
||||
<entry>
|
||||
<key>service</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>loadDao</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>graph</key>
|
||||
<value>
|
||||
<simple>{"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":399.0,"y":169.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"1":{"tableName":"recruitment","schemaName":"metrics","x":82.0,"y":300.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":399.0,"y":169.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"recruitment","schemaName":"metrics","x":82.0,"y":300.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"recruitment":{"tableName":"recruitment","schemaName":"metrics","x":82.0,"y":300.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"incidents_change_data_from_gir_vu":{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":399.0,"y":169.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null,{"refOnEntityName":"incidents_change_data_from_gir_vu","refToEntityName":"recruitment","refToColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"id"}],"refOnColumns":[{"schema":"metrics","table":"incidents_change_data_from_gir_vu","entity":"incidents_change_data_from_gir_vu","name":"recruitment_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>
|
||||
</complex>
|
||||
<implRef type="JAVA">
|
||||
<className>ProjectDefaultValueLoaderServiceImpl</className>
|
||||
<packageName>service.loading</packageName>
|
||||
</implRef>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380">
|
||||
<enabled>true</enabled>
|
||||
</scripts>
|
||||
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f">
|
||||
<enabled>true</enabled>
|
||||
<properties>
|
||||
<entry>
|
||||
<key>eventRefs</key>
|
||||
<value>
|
||||
<item id="e26ff5bb-0e14-4ce6-823f-f9200d63edb5" removed="false">
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>behavior</key>
|
||||
<value>
|
||||
<simple>{"objectId":"e9b76036-779f-4615-bc32-a9722171f654","packageName":"component.field","className":"ComboBox","type":"TS"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>propertyName</key>
|
||||
<value>
|
||||
<simple>"valueChangeEvent"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</item>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>loadParams</key>
|
||||
<value>
|
||||
<item id="24e20586-2707-4d96-94aa-67e43d97c4b2" removed="false">
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>objectValue</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>argument</key>
|
||||
<value>
|
||||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>behavior</key>
|
||||
<value>
|
||||
<simple>{"objectId":"e9b76036-779f-4615-bc32-a9722171f654","packageName":"component.field","className":"ComboBox","type":"TS"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>method</key>
|
||||
<value>
|
||||
<simple>"getBusinessId"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</item>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="277e6fbc-9e2e-4080-bf20-5d8be18e6764">
|
||||
<enabled>true</enabled>
|
||||
<properties>
|
||||
<entry>
|
||||
<key>containerValueLoaderService</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>loadDao</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>graph</key>
|
||||
<value>
|
||||
<simple>{"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"recruitment","schemaName":"metrics","x":141.0,"y":119.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"1":{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":385.0,"y":94.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"recruitment","schemaName":"metrics","x":141.0,"y":119.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":385.0,"y":94.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"recruitment":{"tableName":"recruitment","schemaName":"metrics","x":141.0,"y":119.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"incidents_change_data_from_gir_vu":{"tableName":"incidents_change_data_from_gir_vu","schemaName":"metrics","x":385.0,"y":94.0,"alias":"incidents_change_data_from_gir_vu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null,null],[{"refOnEntityName":"incidents_change_data_from_gir_vu","refToEntityName":"recruitment","refToColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"id"}],"refOnColumns":[{"schema":"metrics","table":"incidents_change_data_from_gir_vu","entity":"incidents_change_data_from_gir_vu","name":"recruitment_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}},null]],"mainNodeIndex":1}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
<implRef type="JAVA">
|
||||
<className>DefaultLoadDao</className>
|
||||
<packageName>database.dao</packageName>
|
||||
</implRef>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>replacePkColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
<implRef type="JAVA">
|
||||
<className>ContainerByPkValueLoaderServiceImpl</className>
|
||||
<packageName>service.loading</packageName>
|
||||
</implRef>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<children id="f07b9a7c-9a41-45f6-9c6a-22e419e3bc85">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>92e6ddb7-5072-4005-88cf-0bdea95221df</componentRootId>
|
||||
<name>Повестки, подписанные в первом ВК</name>
|
||||
<componentRootId>f07b9a7c-9a41-45f6-9c6a-22e419e3bc85</componentRootId>
|
||||
<name>1</name>
|
||||
<container>false</container>
|
||||
<removed>true</removed>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>cssClasses</key>
|
||||
<value>
|
||||
<item id="01458631-7ada-43c5-84fe-ede4e37a2e2f" removed="false">
|
||||
<value>
|
||||
<simple>"title"</simple>
|
||||
</value>
|
||||
</item>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>defaultValueColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"incidents_change_data_from_gir_vu","entity":"incidents_change_data_from_gir_vu","name":"count_accepted"}</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":"incidents_change_data_from_gir_vu","entity":"incidents_change_data_from_gir_vu","name":"count_accepted"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
</children>
|
||||
<children id="505d3716-f496-403e-90b4-f1b4c0e5de5a">
|
||||
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
|
||||
<componentRootId>505d3716-f496-403e-90b4-f1b4c0e5de5a</componentRootId>
|
||||
<name>Hbox</name>
|
||||
<container>true</container>
|
||||
<removed>true</removed>
|
||||
<children id="d56e29db-790c-44bd-b06d-5740c10d2c0f">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>d56e29db-790c-44bd-b06d-5740c10d2c0f</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>
|
||||
</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="50806596-076b-4c40-8e0f-49d3c90c3d05">
|
||||
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
|
||||
<componentRootId>50806596-076b-4c40-8e0f-49d3c90c3d05</componentRootId>
|
||||
<name>ГК График и показатели</name>
|
||||
<container>true</container>
|
||||
<removed>true</removed>
|
||||
</children>
|
||||
</children>
|
||||
<children id="e68a69fe-74fb-4b09-b290-82e08fcb5c5d">
|
||||
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
|
||||
<componentRootId>e68a69fe-74fb-4b09-b290-82e08fcb5c5d</componentRootId>
|
||||
<name>ВК Принятые решения на основании данных из ГИР ВУ</name>
|
||||
<container>true</container>
|
||||
<removed>true</removed>
|
||||
</children>
|
||||
</children>
|
||||
<children id="8522fcd7-8bd4-4750-97c2-a793048a220a">
|
||||
|
|
@ -3232,13 +3300,6 @@
|
|||
<scripts id="fe04d7fb-6c5b-46c4-b723-667732d81f4f"/>
|
||||
<scripts id="5c566210-2a60-4048-a2d1-84c7dd023248"/>
|
||||
<scripts id="3171b2e1-b4af-4335-95fa-1b2592604b84"/>
|
||||
<children id="c2dd08bc-ca05-45d8-9249-669b2c84d9e8">
|
||||
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
|
||||
<componentRootId>c2dd08bc-ca05-45d8-9249-669b2c84d9e8</componentRootId>
|
||||
<name>ВК</name>
|
||||
<container>true</container>
|
||||
<removed>true</removed>
|
||||
</children>
|
||||
<children id="e68a69fe-74fb-4b09-b290-82e08fcb5c5d">
|
||||
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
|
||||
<componentRootId>e68a69fe-74fb-4b09-b290-82e08fcb5c5d</componentRootId>
|
||||
|
|
|
|||
|
|
@ -17876,6 +17876,7 @@
|
|||
<componentRootId>d1e77a82-e4a9-4172-b2b3-c7d72e055d25</componentRootId>
|
||||
<name>ГК Сформированные решения</name>
|
||||
<container>true</container>
|
||||
<expanded>false</expanded>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
|
|
@ -19386,19 +19387,48 @@
|
|||
<componentRootId>c293bada-0ecd-47c2-a7fc-4bfb429f989f</componentRootId>
|
||||
<name>ВК</name>
|
||||
<container>true</container>
|
||||
<removed>true</removed>
|
||||
</children>
|
||||
<children id="16a68225-fd7e-4be3-ad8d-2c4cbe1bff8e">
|
||||
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
|
||||
<componentRootId>16a68225-fd7e-4be3-ad8d-2c4cbe1bff8e</componentRootId>
|
||||
<name>ВК уникальных записей граждан</name>
|
||||
<container>true</container>
|
||||
<childrenReordered>false</childrenReordered>
|
||||
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>cssClasses</key>
|
||||
<value>
|
||||
<item id="ccb0c43f-2fda-4f23-8aa8-996709d69599" removed="true"/>
|
||||
<item id="c3960f38-b0dd-4375-b1de-7af7bb6f636d" removed="false">
|
||||
<value>
|
||||
<simple>"block-colored"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="325c02c0-c996-481b-97af-9a461960f69b" removed="false">
|
||||
<value>
|
||||
<simple>"colored-blue"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="86ae9308-5ba5-4591-96cc-0d20aa3f105d" removed="false">
|
||||
<value>
|
||||
<simple>"block-section"</simple>
|
||||
</value>
|
||||
</item>
|
||||
<item id="8e252fe7-604c-42aa-9957-dac8a896bead" removed="true"/>
|
||||
<item id="3e762ce5-2ed4-4b06-b6d5-91ebdb3c7bca" removed="true"/>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>style</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>height</key>
|
||||
<value>
|
||||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>width</key>
|
||||
<value>
|
||||
|
|
@ -19410,23 +19440,243 @@
|
|||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e"/>
|
||||
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380"/>
|
||||
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f"/>
|
||||
<scripts id="277e6fbc-9e2e-4080-bf20-5d8be18e6764"/>
|
||||
<children id="1b563413-ed23-456d-86c7-fee712763112">
|
||||
<scripts id="72befe90-1915-483f-b88c-d1ec5d4bdc8e">
|
||||
<enabled>true</enabled>
|
||||
<properties>
|
||||
<entry>
|
||||
<key>service</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>loadDao</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>graph</key>
|
||||
<value>
|
||||
<simple>{"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"recruitment","schemaName":"metrics","x":170.0,"y":175.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"1":{"tableName":"change_data_personal_visit","schemaName":"registration_change_address","x":468.0,"y":165.0,"alias":"change_data_personal_visit","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"recruitment","schemaName":"metrics","x":170.0,"y":175.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"change_data_personal_visit","schemaName":"registration_change_address","x":468.0,"y":165.0,"alias":"change_data_personal_visit","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"recruitment":{"tableName":"recruitment","schemaName":"metrics","x":170.0,"y":175.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"},"operation":"EQUAL","typeCode":"CONST","values":["\"00\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"change_data_personal_visit":{"tableName":"change_data_personal_visit","schemaName":"registration_change_address","x":468.0,"y":165.0,"alias":"change_data_personal_visit","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null,null],[{"refOnEntityName":"change_data_personal_visit","refToEntityName":"recruitment","refToColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"id"}],"refOnColumns":[{"schema":"registration_change_address","table":"change_data_personal_visit","entity":"change_data_personal_visit","name":"recruitment_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}},null]],"mainNodeIndex":1}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
<implRef type="JAVA">
|
||||
<className>DefaultLoadDao</className>
|
||||
<packageName>database.dao</packageName>
|
||||
</implRef>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
<implRef type="JAVA">
|
||||
<className>ProjectDefaultValueLoaderServiceImpl</className>
|
||||
<packageName>service.loading</packageName>
|
||||
</implRef>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="87f3fefa-b77b-4137-aab6-b2bcd83ce380">
|
||||
<enabled>true</enabled>
|
||||
</scripts>
|
||||
<scripts id="ef21ca22-3f81-4484-ba6f-58d670c12d4f">
|
||||
<enabled>true</enabled>
|
||||
<properties>
|
||||
<entry>
|
||||
<key>eventRefs</key>
|
||||
<value>
|
||||
<item id="e26ff5bb-0e14-4ce6-823f-f9200d63edb5" removed="false">
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>behavior</key>
|
||||
<value>
|
||||
<simple>{"objectId":"b0f6cc79-6478-485e-9aa7-843bb08dd85b","packageName":"component.field","className":"ComboBox","type":"TS"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>propertyName</key>
|
||||
<value>
|
||||
<simple>"valueChangeEvent"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</item>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>loadParams</key>
|
||||
<value>
|
||||
<item id="24e20586-2707-4d96-94aa-67e43d97c4b2" removed="false">
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>objectValue</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>argument</key>
|
||||
<value>
|
||||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>behavior</key>
|
||||
<value>
|
||||
<simple>{"objectId":"b0f6cc79-6478-485e-9aa7-843bb08dd85b","packageName":"component.field","className":"ComboBox","type":"TS"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>method</key>
|
||||
<value>
|
||||
<simple>"getBusinessId"</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
</value>
|
||||
</item>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="277e6fbc-9e2e-4080-bf20-5d8be18e6764">
|
||||
<enabled>true</enabled>
|
||||
<properties>
|
||||
<entry>
|
||||
<key>containerValueLoaderService</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>loadDao</key>
|
||||
<value>
|
||||
<complex>
|
||||
<entry>
|
||||
<key>graph</key>
|
||||
<value>
|
||||
<simple>{"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"recruitment","schemaName":"metrics","x":141.0,"y":119.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"1":{"tableName":"change_data_personal_visit","schemaName":"registration_change_address","x":422.0,"y":120.0,"alias":"change_data_personal_visit","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"recruitment","schemaName":"metrics","x":141.0,"y":119.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"change_data_personal_visit","schemaName":"registration_change_address","x":422.0,"y":120.0,"alias":"change_data_personal_visit","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"recruitment":{"tableName":"recruitment","schemaName":"metrics","x":141.0,"y":119.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"change_data_personal_visit":{"tableName":"change_data_personal_visit","schemaName":"registration_change_address","x":422.0,"y":120.0,"alias":"change_data_personal_visit","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null,null],[{"refOnEntityName":"change_data_personal_visit","refToEntityName":"recruitment","refToColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"id"}],"refOnColumns":[{"schema":"registration_change_address","table":"change_data_personal_visit","entity":"change_data_personal_visit","name":"recruitment_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}},null]],"mainNodeIndex":1}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
<implRef type="JAVA">
|
||||
<className>DefaultLoadDao</className>
|
||||
<packageName>database.dao</packageName>
|
||||
</implRef>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>replacePkColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"idm_id"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</complex>
|
||||
<implRef type="JAVA">
|
||||
<className>ContainerByPkValueLoaderServiceImpl</className>
|
||||
<packageName>service.loading</packageName>
|
||||
</implRef>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<children id="1693bcf8-7ce1-4c88-9f47-1c7fbbe68ef9">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>1b563413-ed23-456d-86c7-fee712763112</componentRootId>
|
||||
<name>Сведения из ГИР ВУ</name>
|
||||
<componentRootId>1693bcf8-7ce1-4c88-9f47-1c7fbbe68ef9</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="01458631-7ada-43c5-84fe-ede4e37a2e2f" removed="false">
|
||||
<value>
|
||||
<simple>"title"</simple>
|
||||
</value>
|
||||
</item>
|
||||
</value>
|
||||
</entry>
|
||||
<entry>
|
||||
<key>initialValue</key>
|
||||
<value>
|
||||
<simple>null</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048">
|
||||
<properties>
|
||||
<entry>
|
||||
<key>defaultValueColumn</key>
|
||||
<value>
|
||||
<simple>{"schema":"registration_change_address","table":"change_data_personal_visit","entity":"change_data_personal_visit","name":"count_signed"}</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":"registration_change_address","table":"change_data_personal_visit","entity":"change_data_personal_visit","name":"count_signed"}</simple>
|
||||
</value>
|
||||
</entry>
|
||||
</properties>
|
||||
</scripts>
|
||||
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
</children>
|
||||
<children id="7040fea2-844e-4595-9537-46ea33473c5d">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>7040fea2-844e-4595-9537-46ea33473c5d</componentRootId>
|
||||
<name>уникальных записей граждан,</name>
|
||||
<container>false</container>
|
||||
<removed>true</removed>
|
||||
</children>
|
||||
<children id="b18bbb41-340a-4c02-88fd-717fed108a7d">
|
||||
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
|
||||
<componentRootId>b18bbb41-340a-4c02-88fd-717fed108a7d</componentRootId>
|
||||
<name>Hbox</name>
|
||||
<container>true</container>
|
||||
<removed>true</removed>
|
||||
<children id="b18d2cb2-d924-41a3-be91-233b038987a1">
|
||||
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||
<componentRootId>b18d2cb2-d924-41a3-be91-233b038987a1</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>
|
||||
</scripts>
|
||||
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048"/>
|
||||
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127"/>
|
||||
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||
<enabled>false</enabled>
|
||||
</scripts>
|
||||
</children>
|
||||
</children>
|
||||
</children>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue