-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove filtro infração * remove prefixo sppo * remove prefixo sppo * inclui todos os tipo_veiculo * ajusta tabela licenciamento * cria modelo filtrando licenciamento do sppo * adiciona novas colunas de controle * ajusta nomes do modelo de staging * teste dev * cria tabela geral de infracao * add colunas de controle * alterações flow * altera nome dos modelos no schema * ajusta indentação * altera nomes dos sources * filtra infrações sem placa * ordena por timestamp captura * corrige nome dos modelos de staging * alterar ambiente para prd * adiciona novas colunas no schema * add changelog * adiciona coluna tecnologia em sppo_veiculo_dia * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * correções na documentação e na coluna tecnologia * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Apply suggestions from code review * Update queries/models/veiculo/sppo_licenciamento.sql * corrige sppo_veiculo_dia * corrige data de inicio da colunas de tecnologia em sppo_veiculo_dia * Update queries/models/veiculo/CHANGELOG.md --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: Victor Miguel Rocha <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Rodrigo Cunha <[email protected]>
- Loading branch information
1 parent
28e6f91
commit 1069dba
Showing
16 changed files
with
354 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
{{ | ||
config( | ||
materialized='incremental', | ||
partition_by={ | ||
"field":"data", | ||
"data_type": "date", | ||
"granularity":"day" | ||
}, | ||
unique_key=['data', 'id_auto_infracao'], | ||
incremental_strategy='insert_overwrite' | ||
) | ||
}} | ||
|
||
{%- if execute and is_incremental() %} | ||
{% set infracao_date = run_query("SELECT MIN(SAFE_CAST(data AS DATE)) FROM " ~ ref('infracao_staging') ~ " WHERE SAFE_CAST(data AS DATE) >= DATE_ADD(DATE('" ~ var("run_date") ~ "'), INTERVAL 7 DAY)").columns[0].values()[0] %} | ||
{% endif -%} | ||
|
||
WITH infracao AS ( | ||
SELECT | ||
* EXCEPT(data), | ||
SAFE_CAST(data AS DATE) AS data | ||
FROM | ||
{{ ref("infracao_staging") }} as t | ||
{% if is_incremental() %} | ||
WHERE | ||
DATE(data) = DATE("{{ infracao_date }}") | ||
{% endif %} | ||
), | ||
infracao_rn AS ( | ||
SELECT | ||
*, | ||
ROW_NUMBER() OVER (PARTITION BY data, id_auto_infracao ORDER BY timestamp_captura DESC) rn | ||
FROM | ||
infracao | ||
) | ||
SELECT | ||
* EXCEPT(rn), | ||
CURRENT_DATETIME("America/Sao_Paulo") AS datetime_ultima_atualizacao, | ||
"{{ var("version") }}" AS versao | ||
FROM | ||
infracao_rn | ||
WHERE | ||
rn = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
-- depends_on: {{ ref('aux_sppo_licenciamento_vistoria_atualizada') }} | ||
{{ | ||
config( | ||
materialized="incremental", | ||
partition_by={"field": "data", "data_type": "date", "granularity": "day"}, | ||
unique_key=["data", "id_veiculo"], | ||
incremental_strategy="insert_overwrite", | ||
) | ||
}} | ||
|
||
{% if execute and is_incremental() %} | ||
{% set licenciamento_date = run_query(get_license_date()).columns[0].values()[0] %} | ||
{% endif %} | ||
|
||
WITH stu AS ( | ||
SELECT | ||
* EXCEPT(data), | ||
DATE(data) AS data | ||
FROM | ||
{{ ref("licenciamento_stu_staging") }} AS t | ||
{% if is_incremental() %} | ||
WHERE | ||
DATE(data) = DATE("{{ licenciamento_date }}") | ||
{% endif %} | ||
), | ||
stu_rn AS ( | ||
SELECT | ||
* EXCEPT (timestamp_captura), | ||
EXTRACT(YEAR FROM data_ultima_vistoria) AS ano_ultima_vistoria, | ||
ROW_NUMBER() OVER (PARTITION BY data, id_veiculo) rn | ||
FROM | ||
stu | ||
), | ||
stu_ano_ultima_vistoria AS ( | ||
-- Temporariamente considerando os dados de vistoria enviados pela TR/SUBTT/CGLF | ||
SELECT | ||
s.* EXCEPT(ano_ultima_vistoria), | ||
CASE | ||
WHEN data >= "2024-03-01" AND c.ano_ultima_vistoria > s.ano_ultima_vistoria THEN c.ano_ultima_vistoria | ||
WHEN data >= "2024-03-01" THEN COALESCE(s.ano_ultima_vistoria, c.ano_ultima_vistoria) | ||
ELSE s.ano_ultima_vistoria | ||
END AS ano_ultima_vistoria_atualizado, | ||
FROM | ||
stu_rn AS s | ||
LEFT JOIN | ||
( | ||
SELECT | ||
id_veiculo, | ||
placa, | ||
ano_ultima_vistoria | ||
FROM | ||
{{ ref("aux_sppo_licenciamento_vistoria_atualizada") }} | ||
) AS c | ||
USING(id_veiculo, placa) | ||
) | ||
SELECT | ||
data, | ||
modo, | ||
id_veiculo, | ||
ano_fabricacao, | ||
carroceria, | ||
data_ultima_vistoria, | ||
id_carroceria, | ||
id_chassi, | ||
id_fabricante_chassi, | ||
id_interno_carroceria, | ||
id_planta, | ||
indicador_ar_condicionado, | ||
indicador_elevador, | ||
indicador_usb, | ||
indicador_wifi, | ||
nome_chassi, | ||
permissao, | ||
placa, | ||
CASE | ||
WHEN tipo_veiculo LIKE "%BASIC%" OR tipo_veiculo LIKE "%BS%" THEN "BASICO" | ||
WHEN tipo_veiculo LIKE "%MIDI%" THEN "MIDI" | ||
WHEN tipo_veiculo LIKE "%MINI%" THEN "MINI" | ||
WHEN tipo_veiculo LIKE "%PDRON%" OR tipo_veiculo LIKE "%PADRON%" THEN "PADRON" | ||
WHEN tipo_veiculo LIKE "%ARTICULADO%" THEN "ARTICULADO" | ||
ELSE NULL | ||
END AS tecnologia, | ||
quantidade_lotacao_pe, | ||
quantidade_lotacao_sentado, | ||
tipo_combustivel, | ||
tipo_veiculo, | ||
status, | ||
data_inicio_vinculo, | ||
ano_ultima_vistoria_atualizado, | ||
CURRENT_DATETIME("America/Sao_Paulo") AS datetime_ultima_atualizacao, | ||
"{{ var("version") }}" AS versao | ||
FROM | ||
stu_ano_ultima_vistoria | ||
WHERE | ||
rn = 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.