Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cria tabela de referência para listagem de períodos ausentes no painel #33

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 77 additions & 8 deletions macros/utilidades/adicionar_datas_legiveis.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,88 @@ SPDX-License-Identifier: MIT
relacao,
coluna_periodo_data="periodo_data_inicio",
prefixo_colunas="",
cte_resultado="com_datas_legiveis"
cte_resultado="com_datas_legiveis",
tags=[]
) %}

{%- set mes -%}
EXTRACT ( MONTH FROM {{ coluna_periodo_data }} )
{%- endset -%}


{%- if tags is defined and 'caps_uso_externo' in tags %}

{{ coluna_periodo_data -}}_ultimas_competencias AS (
SELECT
DISTINCT ON (
unidade_geografica_id
)
unidade_geografica_id,
DISTINCT ON (t.unidade_geografica_id, t.unidade_geografica_id_sus, t.estabelecimento)
t.unidade_geografica_id,
t.unidade_geografica_id_sus,
t.estabelecimento,
{{ coluna_periodo_data }} AS ultima_competencia
FROM {{ relacao }}
FROM {{ relacao }} t
LEFT JOIN (
SELECT
unidade_geografica_id_sus, estabelecimento
FROM {{ ref("configuracoes_estabelecimentos_ausentes_por_periodos") }}

{%- if tags is defined and 'usuarios_ativos' in tags %}
WHERE tabela_referencia = 'caps_usuarios_ativos_perfil_condicao_semsubtotais'
{%- endif -%}

{%- if tags is defined and 'usuarios_novos' in tags %}
WHERE tabela_referencia = 'caps_usuarios_novos_perfil_condicao'
{%- endif -%}

{%- if tags is defined and 'atendimentos_individuais' in tags %}
WHERE tabela_referencia = 'caps_usuarios_atendimentos_individuais_perfil_cid'
{%- endif -%}

{%- if tags is defined and 'adesao_mensal' in tags %}
WHERE tabela_referencia = 'caps_adesao_usuarios_perfil_cid'
{%- endif -%}

{%- if tags is defined and 'adesao_acumulada' in tags %}
WHERE tabela_referencia = 'caps_adesao_evasao_coortes_resumo'
{%- endif -%}

{%- if tags is defined and 'procedimentos_por_usuario' in tags %}
WHERE tabela_referencia = 'caps_procedimentos_por_usuario_por_tempo_servico'
{%- endif -%}

{%- if tags is defined and 'procedimentos_por_hora' in tags %}
WHERE tabela_referencia = 'caps_procedimentos_por_hora_resumo'
{%- endif -%}

{%- if tags is defined and 'procedimentos_por_tipo' in tags %}
WHERE tabela_referencia = 'caps_procedimentos_por_tipo'
{%- endif -%}

AND periodo = 'Último período'
) AS tr
ON t.unidade_geografica_id_sus = tr.unidade_geografica_id_sus
AND t.estabelecimento = tr.estabelecimento
WHERE tr.unidade_geografica_id_sus IS NULL
ORDER BY
unidade_geografica_id,
unidade_geografica_id,
unidade_geografica_id_sus,
estabelecimento,
{{ coluna_periodo_data }} DESC
),

{%- else -%}
{{ coluna_periodo_data -}}_ultimas_competencias AS (
SELECT
DISTINCT ON (unidade_geografica_id)
unidade_geografica_id,
{{ coluna_periodo_data }} AS ultima_competencia
FROM {{ relacao }}
ORDER BY
unidade_geografica_id,
{{ coluna_periodo_data }} DESC
),
{%- endif %}


{{ cte_resultado }} AS (
SELECT
t.*,
Expand Down Expand Up @@ -70,7 +135,11 @@ EXTRACT ( MONTH FROM {{ coluna_periodo_data }} )
to_char({{ coluna_periodo_data }}, 'YY')::numeric + {{ mes }}/100
) AS {{ prefixo_colunas -}}periodo_ordem
FROM {{ relacao }} t
LEFT JOIN {{ coluna_periodo_data -}}_ultimas_competencias
LEFT JOIN {{ coluna_periodo_data -}}_ultimas_competencias uc
{% if tags is defined and ('usuarios_ativos' in tags or 'usuarios_novos' in tags or 'atendimentos_individuais' in tags or 'adesao_mensal' in tags or 'adesao_acumulada' in tags or 'procedimentos_por_usuario' in tags or 'procedimentos_por_hora' in tags or 'procedimentos_por_tipo' in tags) -%}
ON t.unidade_geografica_id = uc.unidade_geografica_id AND t.estabelecimento = uc.estabelecimento
{% else -%}
USING (unidade_geografica_id)
{%- endif -%}
)
{%- endmacro -%}
6 changes: 4 additions & 2 deletions macros/utilidades/preparar_uso_externo.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ SPDX-License-Identifier: MIT
"_nome",
"_descricao"
],
cte_resultado="final"
cte_resultado="final",
tags=[]
) %}
{%- set re = modules.re -%}
{%- set colunas = [] -%}
Expand Down Expand Up @@ -134,7 +135,8 @@ SPDX-License-Identifier: MIT
relacao=ctes|last,
coluna_periodo_data=coluna,
prefixo_colunas=coluna_prefixo,
cte_resultado=cte
cte_resultado=cte,
tags=tags
) }},
{%- set _ = colunas.append(coluna_prefixo + "periodo") -%}
{%- set _ = colunas.append(coluna_prefixo + "nome_mes") -%}
Expand Down
5 changes: 4 additions & 1 deletion models/caps/adesao/caps_adesao_evasao_coortes_resumo.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ SPDX-License-Identifier: MIT
#}

-- depends_on: {{ ref('_caps_adesao_evasao_coortes_resumo') }}
-- depends_on: {{ ref('configuracoes_estabelecimentos_ausentes_por_periodos') }}
{%- set tags = ['caps_uso_externo', 'adesao_acumulada'] %}

WITH
{{ preparar_uso_externo(
relacao="_caps_adesao_evasao_coortes_resumo",
cte_resultado="final"
cte_resultado="final",
tags=tags
) }}
SELECT * FROM final
5 changes: 4 additions & 1 deletion models/caps/adesao/caps_adesao_evasao_mensal.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ SPDX-License-Identifier: MIT
#}

-- depends_on: {{ ref('_caps_adesao_evasao_mensal') }}
-- depends_on: {{ ref('configuracoes_estabelecimentos_ausentes_por_periodos') }}
{%- set tags = ['caps_uso_externo', 'adesao'] %}

WITH
{{ preparar_uso_externo(
relacao="_caps_adesao_evasao_mensal",
cte_resultado="final"
cte_resultado="final",
tags=tags
) }}
SELECT * FROM final
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ SPDX-License-Identifier: MIT
#}

-- depends_on: {{ ref('_caps_adesao_usuarios_perfil_cid') }}
-- depends_on: {{ ref('configuracoes_estabelecimentos_ausentes_por_periodos') }}
{%- set tags = ['caps_uso_externo', 'adesao_mensal'] %}

WITH
{{ preparar_uso_externo(
relacao="_caps_adesao_usuarios_perfil_cid",
cte_resultado="final"
cte_resultado="final",
tags=tags
) }}
SELECT * FROM final
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ SPDX-License-Identifier: MIT
#}

-- depends_on: {{ ref('_caps_adesao_usuarios_perfil_genero_idade') }}
-- depends_on: {{ ref('configuracoes_estabelecimentos_ausentes_por_periodos') }}
{%- set tags = ['caps_uso_externo', 'adesao_mensal'] %}

WITH
{{ preparar_uso_externo(
relacao="_caps_adesao_usuarios_perfil_genero_idade",
cte_resultado="final"
cte_resultado="final",
tags=tags
) }}
SELECT * FROM final
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ SPDX-FileCopyrightText: 2022 ImpulsoGov <[email protected]>
SPDX-License-Identifier: MIT
#}

-- depends_on: {{ ref('configuracoes_estabelecimentos_ausentes_por_periodos') }}
{%- set tags = ['caps_uso_externo', 'atendimentos_individuais'] %}

WITH
{{ preparar_uso_externo(
relacao="_caps_atendimentos_individuais_por_caps",
cte_resultado="final"
cte_resultado="final",
tags=tags
) }}
SELECT * FROM final
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ SPDX-License-Identifier: MIT
#}

-- depends_on: {{ ref('_caps_usuarios_atendimentos_individuais_perfil_cid') }}
-- depends_on: {{ ref('configuracoes_estabelecimentos_ausentes_por_periodos') }}
{%- set tags = ['caps_uso_externo', 'atendimentos_individuais'] %}

WITH
{{ preparar_uso_externo(
relacao="_caps_usuarios_atendimentos_individuais_perfil_cid",
cte_resultado="final"
cte_resultado="final",
tags=tags
) }}
SELECT * FROM final
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ SPDX-License-Identifier: MIT
#}

-- depends_on: {{ ref('_caps_usuarios_atendimentos_individuais_perfil_genero_idade') }}
-- depends_on: {{ ref('configuracoes_estabelecimentos_ausentes_por_periodos') }}
{%- set tags = ['caps_uso_externo', 'atendimentos_individuais'] %}

WITH
{{ preparar_uso_externo(
relacao="_caps_usuarios_atendimentos_individuais_perfil_genero_idade",
cte_resultado="final"
cte_resultado="final",
tags=tags
) }}
SELECT * FROM final
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ SPDX-License-Identifier: MIT
#}

-- depends_on: {{ ref('_caps_usuarios_atendimentos_individuais_perfil_raca') }}
-- depends_on: {{ ref('configuracoes_estabelecimentos_ausentes_por_periodos') }}

{%- set tags = ['caps_uso_externo', 'atendimentos_individuais'] %}

WITH
{{ preparar_uso_externo(
relacao="_caps_usuarios_atendimentos_individuais_perfil_raca",
cte_resultado="final"
cte_resultado="final",
tags=tags
) }}
SELECT * FROM final
Loading