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

Contador de dias uteis junto ao de dias corridos #67

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ ad.txt
__pycache__
bot.log*
*.pyc
*.lock
*.lock
.idea
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adiciona um \n aqui, pls.

44 changes: 28 additions & 16 deletions check_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
from misc import check_type
import apicorreios as correios
import apitrackingmore as trackingmore
from numpy import busday_count
rougeth marked this conversation as resolved.
Show resolved Hide resolved
import holidays


def check_update(code, max_retries=3):
# print('check_update')
Expand Down Expand Up @@ -41,14 +44,23 @@ def check_update(code, max_retries=3):
ano1 = int(evento['data'].split('/')[2])
data1 = date(ano1, mes1, dia1)
delta = data1 - data0
dias_uteis = busday_count(data0, data1)
todos_feriados = holidays.BR()
# feriados TODO: adicionar feriados estaduais
feriados_entre_datas = todos_feriados[data0:data1]
feriados_uteis = 0
for f in feriados_entre_datas:
rougeth marked this conversation as resolved.
Show resolved Hide resolved
feriados_uteis += 1 if f.weekday() < 5 else 0
dias_uteis -= feriados_uteis
except Exception:
delta = 0
dias_uteis = 0
pass
data = evento['data'] + ' ' + evento['hora']
data = f'{evento["data"]} {evento["hora"]}'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

O Rastreiobot hoje roda no Python 3.4, f-strings não vai funcionar :/

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Infelizmente não sabia que estava rodando na 3.4, mas este é um ajuste simples de se fazer

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

O Rastreiobot hoje roda no Python 3.4, f-strings não vai funcionar :/

3.5.2
(não sei se isso ajuda ou não..)

if delta.days == 1:
data = data + ' (' + str(delta.days) + ' dia)'
data += f' ({delta.days} dia - {dias_uteis} útil)'
elif delta.days > 1:
data = data + ' (' + str(delta.days) + ' dias)'
data += f' ({delta.days} dias - {dias_uteis} úteis)'
try:
local = evento['unidade']['local']
except Exception:
Expand All @@ -57,10 +69,10 @@ def check_update(code, max_retries=3):
if 'endereço indicado' in evento['descricao']:
try:
situacao = (
situacao + '\n</b>' +
evento['unidade']['endereco']['numero'] + ' ' +
evento['unidade']['endereco']['logradouro'] + '\n' +
evento['unidade']['endereco']['bairro'] + '<b>'
situacao + '\n</b>' +
evento['unidade']['endereco']['numero'] + ' ' +
evento['unidade']['endereco']['logradouro'] + '\n' +
evento['unidade']['endereco']['bairro'] + '<b>'
)
except Exception:
pass
Expand All @@ -73,8 +85,8 @@ def check_update(code, max_retries=3):
mensagem = mensagem + '\nLocal: ' + local.strip().title()
if situacao:
mensagem = (
mensagem + '\nSituação: <b>' +
situacao.strip() + '</b>'
mensagem + '\nSituação: <b>' +
situacao.strip() + '</b>'
)
if 'objeto entregue ao' in situacao.lower():
mensagem = mensagem + ' ' + str(u'\U0001F381')
Expand All @@ -96,20 +108,20 @@ def check_update(code, max_retries=3):
mensagem = mensagem + ' ' + str(u'\U0001F4B8')
elif 'aduaneira finalizada' in situacao.lower():
mensagem = (mensagem + '\n<i>Acesse o ambiente </i>' +
'<a href="https://apps.correios.com.br/cas/login?service=https%3A%2F%2Fapps.correios.com.br%2Fportalimportador%2Fpages%2FpesquisarRemessaImportador%2FpesquisarRemessaImportador.jsf">Minhas Importações</a>')
'<a href="https://apps.correios.com.br/cas/login?service=https%3A%2F%2Fapps.correios.com.br%2Fportalimportador%2Fpages%2FpesquisarRemessaImportador%2FpesquisarRemessaImportador.jsf">Minhas Importações</a>')
elif 'aguardando pagamento' in situacao.lower():
mensagem = (mensagem + ' ' + str(u'\U0001F52B') +
'\n<i>Links para efetuar pagamentos aos Correios:</i>' +
'\n<a href="https://www2.correios.com.br/sistemas/rastreamento/">Rastreamento</a>' +
'\n<a href="https://apps.correios.com.br/portalimportador/">Portal Importador</a>')
mensagem = (mensagem + ' ' + str(u'\U0001F52B') +
'\n<i>Links para efetuar pagamentos aos Correios:</i>' +
'\n<a href="https://www2.correios.com.br/sistemas/rastreamento/">Rastreamento</a>' +
'\n<a href="https://apps.correios.com.br/portalimportador/">Portal Importador</a>')
elif 'liberado sem' in situacao.lower():
mensagem = mensagem + ' ' + str(u'\U0001F389')
if observacao:
mensagem = mensagem + '\nObservação: ' + observacao.strip().title()
if 'liberado sem' in observacao.lower():
mensagem = mensagem + ' ' + str(u'\U0001F389')
elif 'pagamento' in observacao.lower():
mensagem = (mensagem +
'\nhttps://www2.correios.com.br/sistemas/rastreamento/')
mensagem = (mensagem +
'\nhttps://www2.correios.com.br/sistemas/rastreamento/')
stats.append(mensagem)
return stats
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ pyTelegramBotAPI==3.*
pytest==5.*
requests==2.*
sentry-sdk==0.*
holidays==0.*