182 lines
5.2 KiB
XML
182 lines
5.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<pipeline>
|
|
<info>
|
|
<name>prosecution</name>
|
|
<name_sync_with_filename>Y</name_sync_with_filename>
|
|
<description/>
|
|
<extended_description/>
|
|
<pipeline_version/>
|
|
<pipeline_type>Normal</pipeline_type>
|
|
<parameters>
|
|
</parameters>
|
|
<capture_transform_performance>N</capture_transform_performance>
|
|
<transform_performance_capturing_delay>1000</transform_performance_capturing_delay>
|
|
<transform_performance_capturing_size_limit>100</transform_performance_capturing_size_limit>
|
|
<created_user>-</created_user>
|
|
<created_date>2024/08/15 14:02:51.713</created_date>
|
|
<modified_user>-</modified_user>
|
|
<modified_date>2024/08/15 14:02:51.713</modified_date>
|
|
</info>
|
|
<notepads>
|
|
</notepads>
|
|
<order>
|
|
<hop>
|
|
<from>Table input</from>
|
|
<to>Table output</to>
|
|
<enabled>N</enabled>
|
|
</hop>
|
|
<hop>
|
|
<from>Table input</from>
|
|
<to>Insert / update</to>
|
|
<enabled>Y</enabled>
|
|
</hop>
|
|
</order>
|
|
<transform>
|
|
<name>Insert / update</name>
|
|
<type>InsertUpdate</type>
|
|
<description/>
|
|
<distribute>Y</distribute>
|
|
<custom_distribution/>
|
|
<copies>1</copies>
|
|
<partitioning>
|
|
<method>none</method>
|
|
<schema_name/>
|
|
</partitioning>
|
|
<commit>10000</commit>
|
|
<connection>ervu-dashboard</connection>
|
|
<lookup>
|
|
<key>
|
|
<condition>=</condition>
|
|
<field>recruit_id</field>
|
|
<name>recruit_id</name>
|
|
</key>
|
|
<key>
|
|
<condition>=</condition>
|
|
<field>create_date</field>
|
|
<name>create_date</name>
|
|
</key>
|
|
<schema>ervu_dashboard</schema>
|
|
<table>prosecution</table>
|
|
<value>
|
|
<name>recruit_id</name>
|
|
<rename>recruit_id</rename>
|
|
<update>N</update>
|
|
</value>
|
|
<value>
|
|
<name>authority_name</name>
|
|
<rename>authority_name</rename>
|
|
<update>Y</update>
|
|
</value>
|
|
<value>
|
|
<name>close_date</name>
|
|
<rename>close_date</rename>
|
|
<update>Y</update>
|
|
</value>
|
|
<value>
|
|
<name>create_date</name>
|
|
<rename>create_date</rename>
|
|
<update>Y</update>
|
|
</value>
|
|
<value>
|
|
<name>kind</name>
|
|
<rename>kind</rename>
|
|
<update>Y</update>
|
|
</value>
|
|
<value>
|
|
<name>law_point</name>
|
|
<rename>law_point</rename>
|
|
<update>Y</update>
|
|
</value>
|
|
<value>
|
|
<name>termination_basis</name>
|
|
<rename>termination_basis</rename>
|
|
<update>Y</update>
|
|
</value>
|
|
</lookup>
|
|
<update_bypassed>N</update_bypassed>
|
|
<attributes/>
|
|
<GUI>
|
|
<xloc>784</xloc>
|
|
<yloc>304</yloc>
|
|
</GUI>
|
|
</transform>
|
|
<transform>
|
|
<name>Table input</name>
|
|
<type>TableInput</type>
|
|
<description/>
|
|
<distribute>Y</distribute>
|
|
<custom_distribution/>
|
|
<copies>1</copies>
|
|
<partitioning>
|
|
<method>none</method>
|
|
<schema_name/>
|
|
</partitioning>
|
|
<connection>ervu_person_registry</connection>
|
|
<execute_each_row>N</execute_each_row>
|
|
<limit>0</limit>
|
|
<sql>WITH ugol AS (
|
|
SELECT
|
|
jsonb_array_elements(ri.info->'svedFL'->'svedUgolovPresl'->'faktyUgolovPresl') AS u,
|
|
ri.recruit_id
|
|
FROM public.recruits_info ri
|
|
join public.recruits r ON r.id = ri.recruit_id AND r.system_update_date >= '${UP_D}'
|
|
WHERE jsonb_typeof(ri.info->'svedFL'->'svedUgolovPresl'->'faktyUgolovPresl') = 'array'
|
|
--AND r.system_update_date >= '${UP_D}'
|
|
)
|
|
SELECT
|
|
r.id AS recruit_id,
|
|
u->'sledSud'->>'naimSud' AS kind,
|
|
TO_DATE(u->'sledSud'->>'dataVozbUD', 'YYYY-MM-DD') AS create_date,
|
|
TO_DATE(u->'sledSud'->'svedSnyat'->>'dataSnyatSud', 'YYYY-MM-DD') AS close_date,
|
|
u->'sledSud'->>'naimOrgan' AS authority_name,
|
|
STRING_AGG(TRIM(BOTH ' "' FROM law.f), ', ') AS law_point,
|
|
u->'sledSud'->'svedSnyat'->>'osnSnyatSud' AS termination_basis
|
|
FROM public.recruits r
|
|
JOIN ugol ON r.id = ugol.recruit_id
|
|
LEFT JOIN LATERAL jsonb_array_elements_text(u->'sledSud'->'statiUK') AS law(f) ON true
|
|
GROUP BY r.id, kind, create_date, close_date, authority_name, termination_basis</sql>
|
|
<variables_active>Y</variables_active>
|
|
<attributes/>
|
|
<GUI>
|
|
<xloc>528</xloc>
|
|
<yloc>304</yloc>
|
|
</GUI>
|
|
</transform>
|
|
<transform>
|
|
<name>Table output</name>
|
|
<type>TableOutput</type>
|
|
<description/>
|
|
<distribute>Y</distribute>
|
|
<custom_distribution/>
|
|
<copies>1</copies>
|
|
<partitioning>
|
|
<method>none</method>
|
|
<schema_name/>
|
|
</partitioning>
|
|
<commit>1000</commit>
|
|
<connection>ervu-dashboard</connection>
|
|
<fields>
|
|
</fields>
|
|
<ignore_errors>N</ignore_errors>
|
|
<only_when_have_rows>N</only_when_have_rows>
|
|
<partitioning_daily>N</partitioning_daily>
|
|
<partitioning_enabled>N</partitioning_enabled>
|
|
<partitioning_monthly>Y</partitioning_monthly>
|
|
<return_keys>N</return_keys>
|
|
<schema>ervu_dashboard</schema>
|
|
<specify_fields>N</specify_fields>
|
|
<table>prosecution</table>
|
|
<tablename_in_field>N</tablename_in_field>
|
|
<tablename_in_table>Y</tablename_in_table>
|
|
<truncate>N</truncate>
|
|
<use_batch>Y</use_batch>
|
|
<attributes/>
|
|
<GUI>
|
|
<xloc>752</xloc>
|
|
<yloc>144</yloc>
|
|
</GUI>
|
|
</transform>
|
|
<transform_error_handling>
|
|
</transform_error_handling>
|
|
<attributes/>
|
|
</pipeline>
|