Compare commits
1 Commits
teste
...
cb47d1c294
| Author | SHA256 | Date | |
|---|---|---|---|
| cb47d1c294 |
89
.env.example
@@ -4,35 +4,10 @@
|
||||
# ============================================================
|
||||
|
||||
# Ambiente Rails
|
||||
# ⚠️ NO SERVIDOR DE PRODUÇÃO use `production` (modo development expõe páginas de
|
||||
# erro com código-fonte/stack, o rack-mini-profiler e desliga otimizações).
|
||||
# Use `development` só na sua máquina local.
|
||||
RAILS_ENV=production
|
||||
|
||||
# Fuso horário do sistema operacional dentro dos containers.
|
||||
# Já é o padrão no Dockerfile — só mexa se a operação mudar de estado.
|
||||
# ⚠️ Isto define o FUSO, não a HORA. Se a data/hora do servidor está errada
|
||||
# (atrasa, ou volta errada depois de reboot/deploy), o problema é o relógio
|
||||
# do HOST: rode uma vez `sudo bash deploy/ntp-seguro.sh`.
|
||||
TZ=America/Sao_Paulo
|
||||
|
||||
# ── Porta publicada no host ───────────────────────────────
|
||||
# A porta DENTRO do container é sempre 3000; esta é a do servidor.
|
||||
# Neste branch (teste) o padrão do docker-compose.yml JÁ É 3001, porque a 3000
|
||||
# está ocupada por outro stack no mesmo NAS. Esta linha só é necessária para
|
||||
# usar uma porta diferente da padrão.
|
||||
# ⚠️ Tem que casar com o destino do proxy reverso (DSM / Cloudflare).
|
||||
PORTA_APP=3001
|
||||
RAILS_ENV=development
|
||||
|
||||
# ── Banco de dados (seu PostgreSQL já existente) ─────────────
|
||||
# ⚠️ SÓ O `DATABASE_URL` É LIDO. Este projeto não tem config/database.yml — o
|
||||
# Rails monta a conexão a partir desta URL, e nenhum código lê DB_HOST,
|
||||
# DB_NAME, DB_USER ou DB_PASSWORD (elas ficam abaixo como documentação dos
|
||||
# valores que compõem a URL). Se editar só as DB_*, nada muda.
|
||||
# ⚠️ Senha com caractere especial precisa ser escapada na URL:
|
||||
# @ → %40 # → %23 / → %2F : → %3A
|
||||
# Deixar o valor de exemplo aqui derruba o boot com
|
||||
# "URI::InvalidURIError: ... SEU_IP".
|
||||
# Aponte DB_HOST para o IP ou hostname do seu servidor PostgreSQL
|
||||
DATABASE_URL=postgresql://postgres:senha_segura@SEU_IP:5432/logistica_db
|
||||
DB_HOST=SEU_IP # ex: 192.168.1.100 ou db.gade.com.br
|
||||
DB_PORT=5432
|
||||
@@ -40,14 +15,6 @@ DB_NAME=logistica_db # nome do banco NOVO que o sistema vai criar
|
||||
DB_USER=postgres
|
||||
DB_PASSWORD=senha_segura
|
||||
|
||||
# ── SimpliRoute — API de escrita (edição de lançamentos pelo ADM) ─────
|
||||
# A base de rastreio (DB_EXISTING_TABLE) é só LEITURA e sincroniza a partir
|
||||
# do SimpliRoute. Para CORRIGIR um lançamento (status/motivo/comentário) o
|
||||
# sistema grava direto na API do SimpliRoute usando este token.
|
||||
# Pegue em: SimpliRoute → Configurações → API. NUNCA versione o token real.
|
||||
SIMPLIROUTE_TOKEN=
|
||||
SIMPLIROUTE_BASE_URL=https://api.simpliroute.com
|
||||
|
||||
# ── Tabela existente (apenas leitura — NÃO modificar) ────────
|
||||
DB_EXISTING_TABLE=db_reem_simplerout_2026
|
||||
DB_EXISTING_SCHEMA=public
|
||||
@@ -62,20 +29,6 @@ DB_EXISTING_ACCOUNT_ID=all
|
||||
# Gere com: docker-compose exec app bundle exec rails secret
|
||||
SECRET_KEY_BASE=gere_com_rails_secret_e_cole_aqui
|
||||
|
||||
# Força HTTPS: redireciona HTTP→HTTPS e marca cookies como "Secure".
|
||||
# Deixe "true" no servidor (atrás do Cloudflare). Em desenvolvimento local
|
||||
# deixe vazio/false para não forçar https em localhost.
|
||||
FORCE_SSL=true
|
||||
|
||||
# ══════════════════════════════════════════════════════════════
|
||||
# NOTIFICAÇÕES (WhatsApp e e-mail)
|
||||
#
|
||||
# ⚠️ Estas variáveis são apenas FALLBACK. A configuração preferencial fica no
|
||||
# BANCO e é editada pelo ADM em Configurações → Notificações e E-mail
|
||||
# (/admin/configuracao_notificacao), valendo sem reiniciar o container.
|
||||
# Enquanto a tela não for preenchida e ativada, valem os valores abaixo.
|
||||
# ══════════════════════════════════════════════════════════════
|
||||
|
||||
# ── Twilio — WhatsApp (opcional, Fase 8) ─────────────────────
|
||||
TWILIO_ACCOUNT_SID=
|
||||
TWILIO_AUTH_TOKEN=
|
||||
@@ -88,42 +41,6 @@ SMTP_USERNAME=
|
||||
SMTP_PASSWORD=
|
||||
SMTP_DOMAIN=gade.com.br
|
||||
|
||||
# ── Criptografia dos segredos gravados pela tela (opcional) ──
|
||||
# A senha do SMTP e o token do Twilio salvos no banco são cifrados com uma
|
||||
# chave derivada do SECRET_KEY_BASE. Se você trocar o SECRET_KEY_BASE, esses
|
||||
# dois valores viram ilegíveis (o sistema volta a usar o .env e a tela avisa
|
||||
# para redigitar). Defina NOTIFICACAO_SECRET com uma string longa e FIXA para
|
||||
# desacoplar os segredos da rotação do SECRET_KEY_BASE.
|
||||
# ⚠️ Se mudar depois de já ter salvo, os valores gravados também se perdem.
|
||||
NOTIFICACAO_SECRET=
|
||||
|
||||
# ── App ───────────────────────────────────────────────────────
|
||||
# ⚠️ SÓ O HOST, sem "https://". O código monta os links como
|
||||
# "https://#{APP_HOST}/motorista" (consolidacao_mailer.rb,
|
||||
# notificacao_service.rb, gatilhos.rb): com o esquema aqui sai
|
||||
# "https://https://..." e todo link de e-mail e de WhatsApp quebra.
|
||||
# O docker-compose.yml já traz o host do ambiente como padrão — esta linha só
|
||||
# é necessária para apontar para outro endereço.
|
||||
APP_HOST=teste.reemtransportes.com.br
|
||||
APP_HOST=localhost:3000
|
||||
APP_NAME=Reem Logística
|
||||
|
||||
# Hosts extras aceitos além do APP_HOST, separados por vírgula (só vale com
|
||||
# RAILS_ENV=production, onde o Rails checa o cabeçalho Host).
|
||||
# Use quando o sistema também for acessado por IP:porta na rede interna —
|
||||
# sem isso o Rails responde "Blocked hosts: <ip>:<porta>".
|
||||
HOSTS_PERMITIDOS=100.75.222.23
|
||||
|
||||
# ── WhatsApp (ponte própria — sessão pareada por QR code) ──────────────────
|
||||
# Token compartilhado entre o Rails e o container `whatsapp`. Qualquer string
|
||||
# longa e aleatória: `openssl rand -hex 32`. Sem ele a ponte recusa TUDO.
|
||||
WHATSAPP_TOKEN=troque_por_uma_string_aleatoria_longa
|
||||
# URL da ponte dentro da rede do compose (não mexa, a menos que troque o nome
|
||||
# do serviço no docker-compose.yml).
|
||||
# (o nome antigo `BAILEYS_URL` ainda é aceito, para .env já em produção)
|
||||
WHATSAPP_URL=http://whatsapp:3001
|
||||
|
||||
# ── Erros na tela ────────────────────────────────────────────────────────
|
||||
# Mostra a página de debug do Rails (parâmetros, SESSÃO, cookies, IP, trace).
|
||||
# Deixe SEMPRE vazia/false em qualquer servidor: esse painel vai para a tela de
|
||||
# quem provocou o erro. Ligue só na sua máquina, quando estiver depurando.
|
||||
ERROS_DETALHADOS=false
|
||||
|
||||
71
.gitignore
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
# ============================
|
||||
# CREDENCIAIS — NUNCA versionar
|
||||
# ============================
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
config/application.yml
|
||||
config/database.yml
|
||||
docker-compose.override.yml
|
||||
*.pem
|
||||
*.key
|
||||
*.p12
|
||||
config/master.key
|
||||
config/credentials/*.key
|
||||
|
||||
# ============================
|
||||
# Ferramentas de IA — não versionar
|
||||
# ============================
|
||||
.claude/
|
||||
CLAUDE.md
|
||||
.cursor/
|
||||
.cursorrules
|
||||
.aider*
|
||||
.github/copilot-instructions.md
|
||||
|
||||
# Rails
|
||||
/log/*
|
||||
/tmp/*
|
||||
!/log/.keep
|
||||
!/tmp/.keep
|
||||
/storage/*
|
||||
!/storage/.keep
|
||||
/public/assets
|
||||
/public/packs
|
||||
/public/packs-test
|
||||
/.bundle
|
||||
/vendor/bundle
|
||||
|
||||
# Node / NPM
|
||||
/node_modules
|
||||
/yarn-error.log
|
||||
yarn-debug.log*
|
||||
.yarn-integrity
|
||||
package-lock.json
|
||||
|
||||
# Sprockets / Assets
|
||||
/public/assets
|
||||
|
||||
# Docker
|
||||
.env.docker
|
||||
|
||||
# IDEs
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Byebug
|
||||
.byebug_history
|
||||
|
||||
# RSpec
|
||||
/spec/reports
|
||||
/spec/examples.txt
|
||||
/coverage
|
||||
|
||||
# Misc
|
||||
*.orig
|
||||
*.bak
|
||||
31
Dockerfile
@@ -1,22 +1,6 @@
|
||||
FROM ruby:3.2.2-slim
|
||||
|
||||
# Fuso horário do container.
|
||||
#
|
||||
# POR QUE ISSO IMPORTA (caso real): a imagem sobe em UTC. O Rails até mostra a
|
||||
# hora certa (`config.time_zone = "America/Sao_Paulo"`), mas TUDO que é do
|
||||
# sistema operacional continuava 3h adiantado — timestamp de log, `date` nos
|
||||
# scripts de bin/ e, o pior, o CRON: `every "*/30 8-18"` no config/schedule.rb
|
||||
# rodava das 05h às 15h de Brasília, não das 08h às 18h.
|
||||
#
|
||||
# O cron do Debian lê `/etc/localtime`, não a variável TZ — por isso o symlink
|
||||
# além do ENV. Os dois juntos cobrem processo Ruby e daemon de cron.
|
||||
ENV TZ=America/Sao_Paulo
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# Dependências do sistema
|
||||
# tzdata: explícito de propósito. O zoneinfo já vem na imagem hoje, mas se um
|
||||
# rebuild futuro pegar uma base enxuta o symlink acima quebra em silêncio e a
|
||||
# hora volta a ficar errada — que é exatamente o bug que estamos fechando.
|
||||
RUN apt-get update -qq && apt-get install -y \
|
||||
build-essential \
|
||||
libpq-dev \
|
||||
@@ -25,10 +9,6 @@ RUN apt-get update -qq && apt-get install -y \
|
||||
curl \
|
||||
git \
|
||||
libvips \
|
||||
cron \
|
||||
tzdata \
|
||||
&& ln -snf "/usr/share/zoneinfo/$TZ" /etc/localtime \
|
||||
&& echo "$TZ" > /etc/timezone \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Diretório da app
|
||||
@@ -41,14 +21,9 @@ RUN bundle install --jobs 4 --retry 3
|
||||
# Copia o restante do código
|
||||
COPY . .
|
||||
|
||||
# Assets NÃO são pré-compilados aqui, e a linha comentada foi removida para
|
||||
# ninguém "descomentar para resolver": o compose monta o projeto por cima
|
||||
# (`volumes: - ".:/app"`), então o public/assets gerado na imagem some no boot.
|
||||
# Quem pré-compila é bin/docker-boot, com o código que está de fato rodando.
|
||||
# Pré-compila assets (em produção)
|
||||
# RUN bundle exec rails assets:precompile
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
# O boot real (migrations, cron, servidor) mora em bin/docker-boot — ver os
|
||||
# comentários lá. CMD aqui é só o fallback de quem roda a imagem sem o compose.
|
||||
# (via `bash` — ver o motivo no docker-compose.yml)
|
||||
CMD ["bash", "bin/docker-boot"]
|
||||
CMD ["bundle", "exec", "rails", "server", "-b", "0.0.0.0"]
|
||||
|
||||
@@ -0,0 +1,276 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR" class="dark">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="csrf-param" content="authenticity_token">
|
||||
<meta name="csrf-token" content="G-9RRM76mXTElY86HJ18dlR93xoYQyO4uD1MzgEGhSZLg9p1i8wFt73pl0AHSNGSxXOBT0R5D0q_c_iovOAGZQ">
|
||||
<title>Reem Logística</title>
|
||||
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<script>
|
||||
tailwind.config = {
|
||||
darkMode: 'class',
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
brand: {
|
||||
preto: '#0a0a0a',
|
||||
'preto-card': '#1a1a1a',
|
||||
laranja: '#f97316',
|
||||
'laranja-escuro': '#ea580c',
|
||||
branco: '#ffffff',
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
||||
|
||||
<style>
|
||||
body { font-family: 'Inter', sans-serif; }
|
||||
/* Scrollbar tema escuro */
|
||||
::-webkit-scrollbar { width: 6px; }
|
||||
::-webkit-scrollbar-track { background: #0a0a0a; }
|
||||
::-webkit-scrollbar-thumb { background: #f97316; border-radius: 3px; }
|
||||
/* Loading spinner laranja */
|
||||
.spinner {
|
||||
border: 3px solid #1a1a1a;
|
||||
border-top-color: #f97316;
|
||||
border-radius: 50%;
|
||||
animation: spin 0.8s linear infinite;
|
||||
}
|
||||
@keyframes spin { to { transform: rotate(360deg); } }
|
||||
</style>
|
||||
|
||||
<script type="importmap" data-turbo-track="reload">{
|
||||
"imports": {
|
||||
"application": "/assets/application-09caced1.js",
|
||||
"@hotwired/turbo-rails": "/assets/turbo.min-86bf8853.js",
|
||||
"@hotwired/stimulus": "/assets/stimulus.min-7ea3d58b.js",
|
||||
"@hotwired/stimulus-loading": "/assets/stimulus-loading-25917588.js",
|
||||
"controllers/application": "/assets/controllers/application-75a69c37.js",
|
||||
"controllers": "/assets/controllers/index-dfefe98d.js",
|
||||
"controllers/validacao_controller": "/assets/controllers/validacao_controller-3ce614b7.js"
|
||||
}
|
||||
}</script>
|
||||
<link rel="modulepreload" href="/assets/application-09caced1.js">
|
||||
<link rel="modulepreload" href="/assets/turbo.min-86bf8853.js">
|
||||
<link rel="modulepreload" href="/assets/stimulus.min-7ea3d58b.js">
|
||||
<link rel="modulepreload" href="/assets/stimulus-loading-25917588.js">
|
||||
<link rel="modulepreload" href="/assets/controllers/application-75a69c37.js">
|
||||
<link rel="modulepreload" href="/assets/controllers/index-dfefe98d.js">
|
||||
<link rel="modulepreload" href="/assets/controllers/validacao_controller-3ce614b7.js">
|
||||
<script type="module">import "application"</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body class="bg-[#0a0a0a] text-white min-h-screen">
|
||||
|
||||
|
||||
<div id="sidebar-overlay"
|
||||
class="fixed inset-0 bg-black/70 z-30 hidden md:hidden"
|
||||
onclick="toggleSidebar()"></div>
|
||||
|
||||
<aside id="sidebar"
|
||||
class="fixed top-0 left-0 h-full w-64 bg-[#111111] border-r border-[#2a2a2a] z-40
|
||||
transform -translate-x-full md:translate-x-0 transition-transform duration-300">
|
||||
|
||||
<div class="flex items-center gap-3 px-6 py-5 border-b border-[#2a2a2a]">
|
||||
<div class="w-9 h-9 bg-orange-500 rounded-lg flex items-center justify-center font-black text-black text-lg">G</div>
|
||||
<div>
|
||||
<p class="font-bold text-white text-sm leading-tight">Reem Transporte</p>
|
||||
<p class="text-orange-500 text-xs">Logística</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="px-6 py-4 border-b border-[#2a2a2a]">
|
||||
<p class="text-xs text-gray-500 mb-1">Logado como</p>
|
||||
<p class="text-white font-semibold text-sm truncate">Administrador Gade</p>
|
||||
<span class="inline-block mt-1 px-2 py-0.5 text-xs rounded-full
|
||||
bg-orange-500 text-black">
|
||||
Administrador
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<nav class="px-3 py-4 space-y-1 flex-1 overflow-y-auto">
|
||||
|
||||
<a class="flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-all min-h-[44px] text-gray-400 hover:bg-[#1a1a1a] hover:text-white" href="/dashboard">📊 Dashboard</a>
|
||||
<a class="flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-all min-h-[44px] text-gray-400 hover:bg-[#1a1a1a] hover:text-white" href="/consolidacoes">📦 Consolidações</a>
|
||||
|
||||
|
||||
<div class="pt-4 mt-4 border-t border-[#2a2a2a]">
|
||||
<p class="px-3 text-xs text-gray-600 uppercase tracking-wider mb-2">Administração</p>
|
||||
<a class="flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-all min-h-[44px] text-gray-400 hover:bg-[#1a1a1a] hover:text-white" href="/admin/usuarios">👥 Usuários</a>
|
||||
<a class="flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-all min-h-[44px] text-gray-400 hover:bg-[#1a1a1a] hover:text-white" href="/admin/configuracoes">⚙️ Configurações</a>
|
||||
<a class="flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-all min-h-[44px] text-gray-400 hover:bg-[#1a1a1a] hover:text-white" href="/admin/auditoria_logs">🔍 Auditoria</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="px-6 py-4 border-t border-[#2a2a2a]">
|
||||
<a data-turbo-method="delete" data-turbo-confirm="Deseja sair?" class="flex items-center gap-2 text-gray-400 hover:text-red-400 text-sm transition-colors" href="/auth/logout">
|
||||
<span>🚪</span> Sair
|
||||
</a> </div>
|
||||
</aside>
|
||||
|
||||
<header class="md:hidden fixed top-0 left-0 right-0 z-30 bg-[#111111] border-b border-[#2a2a2a] px-4 py-3 flex items-center justify-between">
|
||||
<button onclick="toggleSidebar()"
|
||||
class="text-orange-500 text-2xl min-h-[48px] min-w-[48px] flex items-center justify-center">
|
||||
☰
|
||||
</button>
|
||||
<div class="flex items-center gap-2">
|
||||
<div class="w-7 h-7 bg-orange-500 rounded flex items-center justify-center font-black text-black text-sm">G</div>
|
||||
<span class="font-bold text-white text-sm">Reem Logística</span>
|
||||
</div>
|
||||
<div class="w-12"></div>
|
||||
</header>
|
||||
<div class="h-14 md:hidden"></div>
|
||||
|
||||
<script>
|
||||
function toggleSidebar() {
|
||||
const s = document.getElementById('sidebar');
|
||||
const o = document.getElementById('sidebar-overlay');
|
||||
s.classList.toggle('-translate-x-full');
|
||||
o.classList.toggle('hidden');
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
<main class="ml-0 md:ml-64 p-4 md:p-8 min-h-screen">
|
||||
<div class="max-w-2xl mx-auto space-y-6">
|
||||
|
||||
<div>
|
||||
<h1 class="text-2xl font-bold text-white">
|
||||
Novo Usuário
|
||||
</h1>
|
||||
<p class="text-gray-400 text-sm mt-0.5">
|
||||
Preencha os dados para criar um novo acesso
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<form class="bg-[#1a1a1a] rounded-2xl border border-white/5 p-8 space-y-6" action="/admin/usuarios" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="ENsNJddbt-MKLOBei4dMU8xI5qs3plOiQMzqfepJ4wk7d_oooUwVJUOzd7xxU_Kjqz8jnh7JOzPwpymLh0pwVQ" autocomplete="off" />
|
||||
|
||||
|
||||
<div class="grid grid-cols-1 sm:grid-cols-2 gap-6">
|
||||
<div class="sm:col-span-2">
|
||||
<label class="block text-sm font-medium text-gray-300 mb-1.5" for="user_nome">Nome completo</label>
|
||||
<input class="w-full px-4 py-3 bg-[#0a0a0a] border border-white/10 rounded-xl text-white
|
||||
placeholder-gray-600 focus:outline-none focus:border-[#f97316] focus:ring-1
|
||||
focus:ring-[#f97316] transition-colors" placeholder="João da Silva" type="text" name="user[nome]" id="user_nome" />
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-300 mb-1.5" for="user_role">Perfil de acesso</label>
|
||||
<select class="w-full px-4 py-3 bg-[#0a0a0a] border border-white/10 rounded-xl text-white
|
||||
focus:outline-none focus:border-[#f97316] focus:ring-1 focus:ring-[#f97316]
|
||||
transition-colors cursor-pointer" name="user[role]" id="user_role"><option value="admin">Administrador</option>
|
||||
<option value="gerente">Gerente</option>
|
||||
<option value="operador">Operador</option>
|
||||
<option selected="selected" value="motorista">Motorista</option></select>
|
||||
</div>
|
||||
|
||||
<div class="flex items-center">
|
||||
<div class="flex-1">
|
||||
<label class="block text-sm font-medium text-gray-300" for="user_ativo">Usuário ativo</label>
|
||||
<p class="text-gray-500 text-xs mt-0.5">Usuários inativos não conseguem fazer login</p>
|
||||
</div>
|
||||
<label class="relative inline-flex items-center cursor-pointer ml-4">
|
||||
<input name="user[ativo]" type="hidden" value="0" autocomplete="off" /><input class="sr-only peer" type="checkbox" value="1" checked="checked" name="user[ativo]" id="user_ativo" />
|
||||
<div class="w-11 h-6 bg-gray-700 peer-focus:outline-none rounded-full peer
|
||||
peer-checked:after:translate-x-full peer-checked:after:border-white
|
||||
after:content-[''] after:absolute after:top-[2px] after:left-[2px]
|
||||
after:bg-white after:border-gray-300 after:border after:rounded-full
|
||||
after:h-5 after:w-5 after:transition-all peer-checked:bg-[#f97316]"></div>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="fields-email" class="space-y-6">
|
||||
<div class="border-t border-white/5 pt-6">
|
||||
<p class="text-sm font-medium text-gray-300 mb-4">Credenciais de acesso</p>
|
||||
<div class="grid grid-cols-1 sm:grid-cols-2 gap-6">
|
||||
<div class="sm:col-span-2">
|
||||
<label class="block text-sm font-medium text-gray-300 mb-1.5" for="user_email">E-mail</label>
|
||||
<input class="w-full px-4 py-3 bg-[#0a0a0a] border border-white/10 rounded-xl text-white
|
||||
placeholder-gray-600 focus:outline-none focus:border-[#f97316] focus:ring-1
|
||||
focus:ring-[#f97316] transition-colors" placeholder="usuario@gade.com" type="email" value="" name="user[email]" id="user_email" />
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-300 mb-1.5" for="user_password">Senha</label>
|
||||
<input class="w-full px-4 py-3 bg-[#0a0a0a] border border-white/10 rounded-xl text-white
|
||||
placeholder-gray-600 focus:outline-none focus:border-[#f97316] focus:ring-1
|
||||
focus:ring-[#f97316] transition-colors" placeholder="••••••••" type="password" name="user[password]" id="user_password" />
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-300 mb-1.5" for="user_password_confirmation">Confirmar senha</label>
|
||||
<input class="w-full px-4 py-3 bg-[#0a0a0a] border border-white/10 rounded-xl text-white
|
||||
placeholder-gray-600 focus:outline-none focus:border-[#f97316] focus:ring-1
|
||||
focus:ring-[#f97316] transition-colors" placeholder="••••••••" type="password" name="user[password_confirmation]" id="user_password_confirmation" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="fields-pin" class="hidden border-t border-white/5 pt-6">
|
||||
<p class="text-sm font-medium text-gray-300 mb-4">PIN de acesso</p>
|
||||
<div class="max-w-xs">
|
||||
<label class="block text-sm font-medium text-gray-300 mb-1.5" for="user_pin_code">PIN (4 dígitos)</label>
|
||||
<input maxlength="4" pattern="\d{4}" inputmode="numeric" class="w-full px-4 py-3 bg-[#0a0a0a] border border-white/10 rounded-xl text-white
|
||||
placeholder-gray-600 focus:outline-none focus:border-[#f97316] focus:ring-1
|
||||
focus:ring-[#f97316] transition-colors text-center text-2xl tracking-[0.5em] font-bold" placeholder="0000" size="4" type="text" name="user[pin_code]" id="user_pin_code" />
|
||||
<p class="text-gray-500 text-xs mt-1.5">Deve ser único entre todos os motoristas</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="flex items-center justify-between pt-2 border-t border-white/5">
|
||||
<a class="px-6 py-3 text-gray-400 hover:text-white border border-white/10
|
||||
hover:border-white/20 rounded-xl transition-colors" href="/admin/usuarios">Cancelar</a>
|
||||
<input type="submit" name="commit" value="Criar Usuário" class="px-8 py-3 bg-[#f97316] hover:bg-orange-500 text-white font-semibold
|
||||
rounded-xl transition-colors cursor-pointer min-h-[48px]" data-disable-with="Criar Usuário" />
|
||||
</div>
|
||||
</form></div>
|
||||
|
||||
<script>
|
||||
// IIFE: evita "Identifier already declared" quando o Turbo re-executa o script
|
||||
// ao navegar (o que antes abortava o toggle e escondia o campo de PIN).
|
||||
(function () {
|
||||
const roleSelect = document.querySelector('select[name="user[role]"]');
|
||||
const fieldsEmail = document.getElementById('fields-email');
|
||||
const fieldsPin = document.getElementById('fields-pin');
|
||||
if (!roleSelect || !fieldsEmail || !fieldsPin) return;
|
||||
|
||||
function toggleFields() {
|
||||
const motorista = roleSelect.value === 'motorista';
|
||||
fieldsEmail.classList.toggle('hidden', motorista);
|
||||
fieldsPin.classList.toggle('hidden', !motorista);
|
||||
}
|
||||
|
||||
roleSelect.addEventListener('change', toggleFields);
|
||||
toggleFields(); // estado inicial
|
||||
})();
|
||||
</script>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<script>
|
||||
setTimeout(() => {
|
||||
['flash-notice', 'flash-alert'].forEach(id => {
|
||||
const el = document.getElementById(id);
|
||||
if (el) el.style.transition = 'opacity 0.5s', el.style.opacity = '0',
|
||||
setTimeout(() => el.remove(), 500);
|
||||
});
|
||||
}, 4000);
|
||||
</script>
|
||||
|
||||
<script async nonce="" type="text/javascript" id="mini-profiler" src="/mini-profiler-resources/includes.js?v=e0bcc9ce0ae3bb5d6b736b6f282f601f" data-css-url="/mini-profiler-resources/includes.css?v=e0bcc9ce0ae3bb5d6b736b6f282f601f" data-version="e0bcc9ce0ae3bb5d6b736b6f282f601f" data-path="/mini-profiler-resources/" data-current-id="1ahgpnmdas9x6acftfbr" data-ids="1ahgpnmdas9x6acftfbr,ho1l1mkabtvdcaskpjm7" data-horizontal-position="left" data-vertical-position="top" data-trivial="false" data-children="false" data-max-traces="20" data-controls="false" data-total-sql-count="false" data-authorized="true" data-toggle-shortcut="alt+p" data-start-hidden="false" data-collapse-results="true" data-html-container="body" data-hidden-custom-fields="" data-turbo-permanent="false"></script>
|
||||
</body>
|
||||
</html>
|
||||
2280
Erros/holerite_carlos-matheus-pimentel_10-1.pdf
Normal file
3911
Erros/relatorio_bruno-corgozinho_4-2.pdf
Normal file
@@ -0,0 +1,252 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR" class="dark">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="csrf-param" content="authenticity_token">
|
||||
<meta name="csrf-token" content="V0huiUnnR6iuZZliHnfydw0_28pJd5ho66yiE1jO186V5ffx6xm7oL5TuqTEwVv9v-9pxKKkTDbXwLQRAdLL3w">
|
||||
<title>teste | Reem Logística</title>
|
||||
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<script>
|
||||
tailwind.config = {
|
||||
darkMode: 'class',
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
brand: {
|
||||
preto: '#0a0a0a',
|
||||
'preto-card': '#1a1a1a',
|
||||
laranja: '#f97316',
|
||||
'laranja-escuro': '#ea580c',
|
||||
branco: '#ffffff',
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
||||
|
||||
<style>
|
||||
body { font-family: 'Inter', sans-serif; }
|
||||
/* Scrollbar tema escuro */
|
||||
::-webkit-scrollbar { width: 6px; }
|
||||
::-webkit-scrollbar-track { background: #0a0a0a; }
|
||||
::-webkit-scrollbar-thumb { background: #f97316; border-radius: 3px; }
|
||||
/* Loading spinner laranja */
|
||||
.spinner {
|
||||
border: 3px solid #1a1a1a;
|
||||
border-top-color: #f97316;
|
||||
border-radius: 50%;
|
||||
animation: spin 0.8s linear infinite;
|
||||
}
|
||||
@keyframes spin { to { transform: rotate(360deg); } }
|
||||
</style>
|
||||
|
||||
<script type="importmap" data-turbo-track="reload">{
|
||||
"imports": {
|
||||
"application": "/assets/application-09caced1.js",
|
||||
"@hotwired/turbo-rails": "/assets/turbo.min-86bf8853.js",
|
||||
"@hotwired/stimulus": "/assets/stimulus.min-7ea3d58b.js",
|
||||
"@hotwired/stimulus-loading": "/assets/stimulus-loading-25917588.js",
|
||||
"controllers/application": "/assets/controllers/application-75a69c37.js",
|
||||
"controllers": "/assets/controllers/index-dfefe98d.js",
|
||||
"controllers/validacao_controller": "/assets/controllers/validacao_controller-3ce614b7.js"
|
||||
}
|
||||
}</script>
|
||||
<link rel="modulepreload" href="/assets/application-09caced1.js">
|
||||
<link rel="modulepreload" href="/assets/turbo.min-86bf8853.js">
|
||||
<link rel="modulepreload" href="/assets/stimulus.min-7ea3d58b.js">
|
||||
<link rel="modulepreload" href="/assets/stimulus-loading-25917588.js">
|
||||
<link rel="modulepreload" href="/assets/controllers/application-75a69c37.js">
|
||||
<link rel="modulepreload" href="/assets/controllers/index-dfefe98d.js">
|
||||
<link rel="modulepreload" href="/assets/controllers/validacao_controller-3ce614b7.js">
|
||||
<script type="module">import "application"</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body class="bg-[#0a0a0a] text-white min-h-screen">
|
||||
|
||||
|
||||
<div id="sidebar-overlay"
|
||||
class="fixed inset-0 bg-black/70 z-30 hidden md:hidden"
|
||||
onclick="toggleSidebar()"></div>
|
||||
|
||||
<aside id="sidebar"
|
||||
class="fixed top-0 left-0 h-full w-64 bg-[#111111] border-r border-[#2a2a2a] z-40
|
||||
transform -translate-x-full md:translate-x-0 transition-transform duration-300">
|
||||
|
||||
<div class="flex items-center gap-3 px-6 py-5 border-b border-[#2a2a2a]">
|
||||
<div class="w-9 h-9 bg-orange-500 rounded-lg flex items-center justify-center font-black text-black text-lg">G</div>
|
||||
<div>
|
||||
<p class="font-bold text-white text-sm leading-tight">Reem Transporte</p>
|
||||
<p class="text-orange-500 text-xs">Logística</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="px-6 py-4 border-b border-[#2a2a2a]">
|
||||
<p class="text-xs text-gray-500 mb-1">Logado como</p>
|
||||
<p class="text-white font-semibold text-sm truncate">Administrador Gade</p>
|
||||
<span class="inline-block mt-1 px-2 py-0.5 text-xs rounded-full
|
||||
bg-orange-500 text-black">
|
||||
Administrador
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<nav class="px-3 py-4 space-y-1 flex-1 overflow-y-auto">
|
||||
|
||||
<a class="flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-all min-h-[44px] text-gray-400 hover:bg-[#1a1a1a] hover:text-white" href="/dashboard">📊 Dashboard</a>
|
||||
<a class="flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-all min-h-[44px] text-gray-400 hover:bg-[#1a1a1a] hover:text-white" href="/consolidacoes">📦 Consolidações</a>
|
||||
|
||||
|
||||
<div class="pt-4 mt-4 border-t border-[#2a2a2a]">
|
||||
<p class="px-3 text-xs text-gray-600 uppercase tracking-wider mb-2">Administração</p>
|
||||
<a class="flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-all min-h-[44px] text-gray-400 hover:bg-[#1a1a1a] hover:text-white" href="/admin/usuarios">👥 Usuários</a>
|
||||
<a class="flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-all min-h-[44px] text-gray-400 hover:bg-[#1a1a1a] hover:text-white" href="/admin/configuracoes">⚙️ Configurações</a>
|
||||
<a class="flex items-center gap-3 px-3 py-2.5 rounded-lg text-sm font-medium transition-all min-h-[44px] text-gray-400 hover:bg-[#1a1a1a] hover:text-white" href="/admin/auditoria_logs">🔍 Auditoria</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="px-6 py-4 border-t border-[#2a2a2a]">
|
||||
<a data-turbo-method="delete" data-turbo-confirm="Deseja sair?" class="flex items-center gap-2 text-gray-400 hover:text-red-400 text-sm transition-colors" href="/auth/logout">
|
||||
<span>🚪</span> Sair
|
||||
</a> </div>
|
||||
</aside>
|
||||
|
||||
<header class="md:hidden fixed top-0 left-0 right-0 z-30 bg-[#111111] border-b border-[#2a2a2a] px-4 py-3 flex items-center justify-between">
|
||||
<button onclick="toggleSidebar()"
|
||||
class="text-orange-500 text-2xl min-h-[48px] min-w-[48px] flex items-center justify-center">
|
||||
☰
|
||||
</button>
|
||||
<div class="flex items-center gap-2">
|
||||
<div class="w-7 h-7 bg-orange-500 rounded flex items-center justify-center font-black text-black text-sm">G</div>
|
||||
<span class="font-bold text-white text-sm">Reem Logística</span>
|
||||
</div>
|
||||
<div class="w-12"></div>
|
||||
</header>
|
||||
<div class="h-14 md:hidden"></div>
|
||||
|
||||
<script>
|
||||
function toggleSidebar() {
|
||||
const s = document.getElementById('sidebar');
|
||||
const o = document.getElementById('sidebar-overlay');
|
||||
s.classList.toggle('-translate-x-full');
|
||||
o.classList.toggle('hidden');
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
<main class="ml-0 md:ml-64 p-4 md:p-8 min-h-screen">
|
||||
|
||||
<div class="max-w-4xl mx-auto">
|
||||
|
||||
<div class="mb-6">
|
||||
<a class="text-gray-500 hover:text-orange-500 text-sm" href="/consolidacoes">← Consolidações</a>
|
||||
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-3 mt-2">
|
||||
<div>
|
||||
<div class="flex items-center gap-3">
|
||||
<h1 class="text-2xl font-bold text-white">teste</h1>
|
||||
<span class="inline-flex items-center gap-1 px-2.5 py-1 rounded-full text-xs font-bold bg-yellow-500 text-black">📝 Rascunho</span>
|
||||
</div>
|
||||
<p class="text-gray-400 text-sm mt-1">
|
||||
📅 01/02/2026 → 28/02/2026
|
||||
· Criada por Administrador Gade
|
||||
</p>
|
||||
</div>
|
||||
<div class="flex gap-2">
|
||||
<a class="bg-orange-500 hover:bg-orange-600 text-black font-bold px-5 py-3 rounded-lg min-h-[48px] flex items-center" href="/consolidacoes/3/wizard">✏️ Continuar validação</a>
|
||||
<form class="button_to" method="post" action="/consolidacoes/3/arquivar"><button data-turbo-confirm="Arquivar esta consolidação? Ela não será excluída, apenas movida para o arquivo." class="text-gray-400 hover:text-white border border-[#2a2a2a] px-4 py-3 rounded-lg min-h-[48px]" type="submit">📁 Arquivar</button><input type="hidden" name="authenticity_token" value="bFgW-DhUfHVabQb6YBBZhcI6kTfr6RY-m2AcIg74Too_85JbSI2x1yKmq7VymjoA3QnfDb2v-F5VSGRHh8Q_DQ" autocomplete="off" /></form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-[#1a1a1a] border border-orange-500 rounded-xl p-6 mb-6 text-center">
|
||||
<p class="text-gray-400 text-sm">Valor total da consolidação</p>
|
||||
<p class="text-orange-500 font-black text-4xl">R$ 5265,00</p>
|
||||
</div>
|
||||
|
||||
<h2 class="text-white font-bold text-lg mb-3">👥 Motoristas</h2>
|
||||
<div class="space-y-3">
|
||||
<div class="bg-[#1a1a1a] border border-[#2a2a2a] rounded-xl p-5">
|
||||
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-4">
|
||||
<div>
|
||||
<p class="text-white font-bold text-lg">Bruno Corgozinho</p>
|
||||
<p class="text-orange-500 font-black text-xl">R$ 5265,00</p>
|
||||
</div>
|
||||
<div class="flex flex-wrap gap-2">
|
||||
<button onclick="abrirPreview('/consolidacoes/3/preview_holerite?motorista=Bruno+Corgozinho')"
|
||||
class="bg-[#0a0a0a] hover:bg-[#2a2a2a] text-white border border-orange-500 font-semibold px-4 py-3 rounded-lg text-sm min-h-[48px]">
|
||||
👁️ Ver antes de gerar
|
||||
</button>
|
||||
<a class="bg-orange-800 hover:bg-orange-700 text-white font-semibold px-4 py-3 rounded-lg text-sm min-h-[48px] flex items-center" href="/consolidacoes/3/gerar_pdf_relatorio?motorista=Bruno+Corgozinho">📄 Relatório Individual</a>
|
||||
<a class="bg-orange-500 hover:bg-orange-600 text-black font-bold px-4 py-3 rounded-lg text-sm min-h-[48px] flex items-center" href="/consolidacoes/3/gerar_pdf_holerite?motorista=Bruno+Corgozinho">🧾 Gerar Holerite</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="modal-preview" class="fixed inset-0 bg-black/80 z-50 hidden items-center justify-center p-4">
|
||||
<div class="bg-[#1a1a1a] border border-[#2a2a2a] rounded-2xl max-w-2xl w-full max-h-[85vh] flex flex-col">
|
||||
<div class="flex items-center justify-between px-6 py-4 border-b border-[#2a2a2a]">
|
||||
<h3 class="text-white font-bold">👁️ Pré-visualização do Holerite</h3>
|
||||
<button onclick="fecharPreview()" class="text-gray-400 hover:text-white text-2xl min-w-[44px] min-h-[44px]">✕</button>
|
||||
</div>
|
||||
<div id="modal-preview-conteudo" class="overflow-y-auto p-6 flex-1">
|
||||
<div class="flex justify-center py-10"><div class="spinner w-10 h-10"></div></div>
|
||||
</div>
|
||||
<div class="flex gap-3 px-6 py-4 border-t border-[#2a2a2a]">
|
||||
<a id="modal-confirmar" href="#"
|
||||
class="flex-1 bg-orange-500 hover:bg-orange-600 text-black font-bold py-3 rounded-lg text-center min-h-[48px] flex items-center justify-center">
|
||||
✓ Confirmar e baixar PDF
|
||||
</a>
|
||||
<button onclick="fecharPreview()"
|
||||
class="px-6 py-3 text-gray-400 hover:text-white border border-[#2a2a2a] rounded-lg min-h-[48px]">
|
||||
← Voltar
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
async function abrirPreview(url) {
|
||||
const modal = document.getElementById('modal-preview');
|
||||
const conteudo = document.getElementById('modal-preview-conteudo');
|
||||
modal.classList.remove('hidden');
|
||||
modal.classList.add('flex');
|
||||
conteudo.innerHTML = '<div class="flex justify-center py-10"><div class="spinner w-10 h-10"></div></div>';
|
||||
|
||||
const resp = await fetch(url);
|
||||
conteudo.innerHTML = await resp.text();
|
||||
|
||||
// O link de confirmar aponta para o PDF do mesmo motorista
|
||||
document.getElementById('modal-confirmar').href =
|
||||
url.replace('preview_holerite', 'gerar_pdf_holerite');
|
||||
}
|
||||
function fecharPreview() {
|
||||
const modal = document.getElementById('modal-preview');
|
||||
modal.classList.add('hidden');
|
||||
modal.classList.remove('flex');
|
||||
}
|
||||
</script>
|
||||
|
||||
</main>
|
||||
|
||||
<script>
|
||||
setTimeout(() => {
|
||||
['flash-notice', 'flash-alert'].forEach(id => {
|
||||
const el = document.getElementById(id);
|
||||
if (el) el.style.transition = 'opacity 0.5s', el.style.opacity = '0',
|
||||
setTimeout(() => el.remove(), 500);
|
||||
});
|
||||
}, 4000);
|
||||
</script>
|
||||
|
||||
<script async nonce="" type="text/javascript" id="mini-profiler" src="/mini-profiler-resources/includes.js?v=e0bcc9ce0ae3bb5d6b736b6f282f601f" data-css-url="/mini-profiler-resources/includes.css?v=e0bcc9ce0ae3bb5d6b736b6f282f601f" data-version="e0bcc9ce0ae3bb5d6b736b6f282f601f" data-path="/mini-profiler-resources/" data-current-id="5vfdctp5mnyu0tdtx94a" data-ids="5vfdctp5mnyu0tdtx94a,md2esz0jc4j57ce236e8" data-horizontal-position="left" data-vertical-position="top" data-trivial="false" data-children="false" data-max-traces="20" data-controls="false" data-total-sql-count="false" data-authorized="true" data-toggle-shortcut="alt+p" data-start-hidden="false" data-collapse-results="true" data-html-container="body" data-hidden-custom-fields="" data-turbo-permanent="false"></script>
|
||||
</body>
|
||||
</html>
|
||||
18
Gemfile
@@ -26,14 +26,6 @@ gem "dotenv-rails"
|
||||
# PDF
|
||||
gem "prawn"
|
||||
gem "prawn-table"
|
||||
|
||||
# Planilhas (XLSX) — geração da carga de importação do SimpliRoute
|
||||
gem "caxlsx"
|
||||
# Leitura do .xlsx do PLANO do SimpliRoute (reserva do romaneio, quando a API não
|
||||
# responde ou o plano do dia ainda não foi publicado). A roo pina rubyzip < 3.0;
|
||||
# o único outro consumidor é o selenium-webdriver (grupo de teste, aceita >= 1.2.2,
|
||||
# < 4.0), então o bundler rebaixa o rubyzip sem quebrar nada.
|
||||
gem "roo", "~> 2.10"
|
||||
gem "rqrcode" # QR code no holerite (login rápido motorista)
|
||||
gem "chunky_png" # renderiza QR como PNG para embed no Prawn
|
||||
|
||||
@@ -52,19 +44,11 @@ group :development, :test do
|
||||
gem "rspec-rails"
|
||||
gem "factory_bot_rails"
|
||||
gem "faker"
|
||||
# Lê o PDF gerado (páginas e texto) nos specs. Sem ele, o único jeito de testar
|
||||
# um PDF do Prawn seria olhar o arquivo: as fontes TTF são subsetadas, então o
|
||||
# texto não é "grepável" no binário.
|
||||
gem "pdf-inspector", require: false
|
||||
end
|
||||
|
||||
group :development do
|
||||
gem "web-console"
|
||||
# require: false → não monta o middleware automaticamente (evita vazar o
|
||||
# cookie __profilin e a rota /mini-profiler-resources em produção). Para usar
|
||||
# numa investigação de performance, rode com RACK_MINI_PROFILER=1 ou
|
||||
# adicione `require "rack-mini-profiler"` temporariamente.
|
||||
gem "rack-mini-profiler", require: false
|
||||
gem "rack-mini-profiler"
|
||||
gem "annotate"
|
||||
end
|
||||
|
||||
|
||||
24
Gemfile.lock
@@ -1,7 +1,6 @@
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
Ascii85 (2.0.1)
|
||||
actioncable (7.1.6)
|
||||
actionpack (= 7.1.6)
|
||||
activesupport (= 7.1.6)
|
||||
@@ -83,7 +82,6 @@ GEM
|
||||
tzinfo (~> 2.0)
|
||||
addressable (2.9.0)
|
||||
public_suffix (>= 2.0.2, < 8.0)
|
||||
afm (1.0.0)
|
||||
annotate (3.2.0)
|
||||
activerecord (>= 3.2, < 8.0)
|
||||
rake (>= 10.4, < 14.0)
|
||||
@@ -102,11 +100,6 @@ GEM
|
||||
rack-test (>= 0.6.3)
|
||||
regexp_parser (>= 1.5, < 3.0)
|
||||
xpath (~> 3.2)
|
||||
caxlsx (4.5.0)
|
||||
htmlentities (~> 4.3, >= 4.3.4)
|
||||
marcel (~> 1.0)
|
||||
nokogiri (~> 1.10, >= 1.10.4)
|
||||
rubyzip (>= 2.4, < 4)
|
||||
cgi (0.5.1)
|
||||
chronic (0.10.2)
|
||||
chunky_png (1.4.0)
|
||||
@@ -146,8 +139,6 @@ GEM
|
||||
net-http (~> 0.5)
|
||||
globalid (1.3.0)
|
||||
activesupport (>= 6.1)
|
||||
hashery (2.1.2)
|
||||
htmlentities (4.4.2)
|
||||
i18n (1.14.8)
|
||||
concurrent-ruby (~> 1.0)
|
||||
image_processing (2.0.2)
|
||||
@@ -201,13 +192,6 @@ GEM
|
||||
orm_adapter (0.5.0)
|
||||
pagy (9.4.0)
|
||||
pdf-core (0.10.0)
|
||||
pdf-inspector (1.3.0)
|
||||
pdf-reader (>= 1.0, < 3.0.a)
|
||||
pdf-reader (2.16.0)
|
||||
Ascii85 (>= 1.0, < 3.0, != 2.0.0)
|
||||
afm (>= 0.2.1, < 2)
|
||||
hashery (~> 2.0)
|
||||
ttfunk
|
||||
pg (1.6.3-x86_64-linux)
|
||||
pp (0.6.3)
|
||||
prettyprint
|
||||
@@ -285,9 +269,6 @@ GEM
|
||||
actionpack (>= 7.0)
|
||||
railties (>= 7.0)
|
||||
rexml (3.4.4)
|
||||
roo (2.10.1)
|
||||
nokogiri (~> 1)
|
||||
rubyzip (>= 1.3.0, < 3.0.0)
|
||||
rqrcode (3.2.0)
|
||||
chunky_png (~> 1.0)
|
||||
rqrcode_core (~> 2.0)
|
||||
@@ -309,7 +290,7 @@ GEM
|
||||
rspec-mocks (~> 3.13)
|
||||
rspec-support (~> 3.13)
|
||||
rspec-support (3.13.7)
|
||||
rubyzip (2.4.1)
|
||||
rubyzip (3.4.0)
|
||||
securerandom (0.4.1)
|
||||
selenium-webdriver (4.44.0)
|
||||
base64 (~> 0.2)
|
||||
@@ -363,7 +344,6 @@ PLATFORMS
|
||||
DEPENDENCIES
|
||||
annotate
|
||||
capybara
|
||||
caxlsx
|
||||
chunky_png
|
||||
debug
|
||||
devise
|
||||
@@ -374,7 +354,6 @@ DEPENDENCIES
|
||||
importmap-rails
|
||||
jbuilder
|
||||
pagy (~> 9.0)
|
||||
pdf-inspector
|
||||
pg (~> 1.1)
|
||||
prawn
|
||||
prawn-table
|
||||
@@ -383,7 +362,6 @@ DEPENDENCIES
|
||||
pundit
|
||||
rack-mini-profiler
|
||||
rails (~> 7.1.0)
|
||||
roo (~> 2.10)
|
||||
rqrcode
|
||||
rspec-rails
|
||||
selenium-webdriver
|
||||
|
||||
BIN
Imagens para correção /BKP/Imagem colada (10).png
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
Imagens para correção /BKP/Imagem colada (11).png
Normal file
|
After Width: | Height: | Size: 189 KiB |
BIN
Imagens para correção /BKP/Imagem colada (12).png
Normal file
|
After Width: | Height: | Size: 138 KiB |
BIN
Imagens para correção /BKP/Imagem colada (13).png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
Imagens para correção /BKP/Imagem colada (14).png
Normal file
|
After Width: | Height: | Size: 53 KiB |
BIN
Imagens para correção /BKP/Imagem colada (15).png
Normal file
|
After Width: | Height: | Size: 292 KiB |
BIN
Imagens para correção /BKP/Imagem colada (16).png
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
Imagens para correção /BKP/Imagem colada (17).png
Normal file
|
After Width: | Height: | Size: 122 KiB |
BIN
Imagens para correção /BKP/Imagem colada (2).png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
Imagens para correção /BKP/Imagem colada (3).png
Normal file
|
After Width: | Height: | Size: 147 KiB |
BIN
Imagens para correção /BKP/Imagem colada (4).png
Normal file
|
After Width: | Height: | Size: 161 KiB |
BIN
Imagens para correção /BKP/Imagem colada (5).png
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
Imagens para correção /BKP/Imagem colada (6).png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
Imagens para correção /BKP/Imagem colada (7).png
Normal file
|
After Width: | Height: | Size: 112 KiB |
BIN
Imagens para correção /BKP/Imagem colada (8).png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
Imagens para correção /BKP/Imagem colada (9).png
Normal file
|
After Width: | Height: | Size: 160 KiB |
BIN
Imagens para correção /BKP/Imagem colada.png
Normal file
|
After Width: | Height: | Size: 140 KiB |
BIN
Imagens para correção /Imagem colada (2).png
Normal file
|
After Width: | Height: | Size: 144 KiB |
BIN
Imagens para correção /Imagem colada (3).png
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
Imagens para correção /Imagem colada (4).png
Normal file
|
After Width: | Height: | Size: 141 KiB |
BIN
Imagens para correção /Imagem colada.png
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (10).png
Normal file
|
After Width: | Height: | Size: 414 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (11).png
Normal file
|
After Width: | Height: | Size: 698 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (12).png
Normal file
|
After Width: | Height: | Size: 121 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (13).png
Normal file
|
After Width: | Height: | Size: 120 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (14).png
Normal file
|
After Width: | Height: | Size: 133 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (15).png
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (16).png
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (17).png
Normal file
|
After Width: | Height: | Size: 478 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (18).png
Normal file
|
After Width: | Height: | Size: 196 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (19).png
Normal file
|
After Width: | Height: | Size: 213 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (2).png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (20).png
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (21).png
Normal file
|
After Width: | Height: | Size: 234 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (22).png
Normal file
|
After Width: | Height: | Size: 280 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (23).png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (3).png
Normal file
|
After Width: | Height: | Size: 129 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (4).png
Normal file
|
After Width: | Height: | Size: 253 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (5).png
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (6).png
Normal file
|
After Width: | Height: | Size: 59 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (7).png
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (8).png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
Imagens para implantação /Bkp Imagens/Imagem colada (9).png
Normal file
|
After Width: | Height: | Size: 140 KiB |
BIN
Imagens para implantação /Icone.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
Imagens para implantação /Imagem colada (10).png
Normal file
|
After Width: | Height: | Size: 673 KiB |
BIN
Imagens para implantação /Imagem colada (11).png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
Imagens para implantação /Imagem colada (2).png
Normal file
|
After Width: | Height: | Size: 240 KiB |
BIN
Imagens para implantação /Imagem colada (3).png
Normal file
|
After Width: | Height: | Size: 2.5 MiB |
BIN
Imagens para implantação /Imagem colada (4).png
Normal file
|
After Width: | Height: | Size: 141 KiB |
BIN
Imagens para implantação /Imagem colada (5).png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
Imagens para implantação /Imagem colada (6).png
Normal file
|
After Width: | Height: | Size: 172 KiB |
BIN
Imagens para implantação /Imagem colada (7).png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
Imagens para implantação /Imagem colada (8).png
Normal file
|
After Width: | Height: | Size: 666 KiB |
BIN
Imagens para implantação /Imagem colada (9).png
Normal file
|
After Width: | Height: | Size: 332 KiB |
BIN
Imagens para implantação /Imagem colada.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 61 KiB |
BIN
Imagens para implantação /Videos/copmo ficou.mp4
Normal file
BIN
Imagens para implantação /Videos/copmo ficou.webm
Normal file
799
Imagens para implantação /holerite_bruno-corgozinho_4-5.pdf
Normal file
@@ -0,0 +1,799 @@
|
||||
%PDF-1.3
|
||||
%ÿÿÿÿ
|
||||
1 0 obj
|
||||
<< /Creator <feff0050007200610077006e>
|
||||
/Producer <feff0050007200610077006e>
|
||||
>>
|
||||
endobj
|
||||
2 0 obj
|
||||
<< /Pages 3 0 R
|
||||
/Type /Catalog
|
||||
>>
|
||||
endobj
|
||||
3 0 obj
|
||||
<< /Count 1
|
||||
/Kids [5 0 R]
|
||||
/Type /Pages
|
||||
>>
|
||||
endobj
|
||||
4 0 obj
|
||||
<< /Length 8085
|
||||
>>
|
||||
stream
|
||||
q
|
||||
/DeviceRGB cs
|
||||
0.03922 0.03922 0.03922 scn
|
||||
0.0 771.89 595.28 70.0 re
|
||||
f
|
||||
0.97647 0.45098 0.08627 scn
|
||||
0.0 771.89 8.0 70.0 re
|
||||
f
|
||||
1.0 1.0 1.0 scn
|
||||
|
||||
BT
|
||||
50.0 807.53 Td
|
||||
/F2.0 20 Tf
|
||||
[<5245454d205452414e53504f52> 20 <5445>] TJ
|
||||
ET
|
||||
|
||||
0.97647 0.45098 0.08627 scn
|
||||
|
||||
BT
|
||||
50.0 790.71 Td
|
||||
/F1.0 10 Tf
|
||||
[<53697374656d6120646520436f6e74726f6c6520646520437573746f73204c6f67ed737469636f73>] TJ
|
||||
ET
|
||||
|
||||
0.0 0.0 0.0 scn
|
||||
0.97647 0.45098 0.08627 scn
|
||||
|
||||
BT
|
||||
40.0 723.556 Td
|
||||
/F2.0 13 Tf
|
||||
[<484f4c45524954452044452050> 100 <41> 50 <47414d454e54> 40 <4f209720454e545245474153>] TJ
|
||||
ET
|
||||
|
||||
/DeviceRGB CS
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
40.0 717.42 m
|
||||
555.28 717.42 l
|
||||
S
|
||||
0.0 0.0 0.0 scn
|
||||
0.95294 0.95686 0.96471 scn
|
||||
40.0 687.52 120.0 21.9 re
|
||||
f
|
||||
0.0 0.0 0.0 scn
|
||||
0.95294 0.95686 0.96471 scn
|
||||
40.0 665.62 120.0 21.9 re
|
||||
f
|
||||
0.0 0.0 0.0 scn
|
||||
0.95294 0.95686 0.96471 scn
|
||||
40.0 643.72 120.0 21.9 re
|
||||
f
|
||||
0.0 0.0 0.0 scn
|
||||
0.95294 0.95686 0.96471 scn
|
||||
40.0 621.82 120.0 21.9 re
|
||||
f
|
||||
0.0 0.0 0.0 scn
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 709.42 m
|
||||
160.0 709.42 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 687.52 m
|
||||
160.0 687.52 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 709.92 m
|
||||
40.0 687.02 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 709.92 m
|
||||
160.0 687.02 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
|
||||
BT
|
||||
48.0 694.408 Td
|
||||
/F2.0 10 Tf
|
||||
[<4d6f746f7269737461>] TJ
|
||||
ET
|
||||
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 709.42 m
|
||||
555.28 709.42 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 687.52 m
|
||||
555.28 687.52 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 709.92 m
|
||||
160.0 687.02 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
555.28 709.92 m
|
||||
555.28 687.02 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
|
||||
BT
|
||||
168.0 694.612 Td
|
||||
/F1.0 10 Tf
|
||||
[<4272> -15 <756e6f20436f72676f7a696e686f>] TJ
|
||||
ET
|
||||
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 687.52 m
|
||||
160.0 687.52 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 665.62 m
|
||||
160.0 665.62 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 688.02 m
|
||||
40.0 665.12 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 688.02 m
|
||||
160.0 665.12 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
|
||||
BT
|
||||
48.0 672.508 Td
|
||||
/F2.0 10 Tf
|
||||
[<436f6e736f6c696461e7e36f>] TJ
|
||||
ET
|
||||
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 687.52 m
|
||||
555.28 687.52 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 665.62 m
|
||||
555.28 665.62 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 688.02 m
|
||||
160.0 665.12 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
555.28 688.02 m
|
||||
555.28 665.12 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
|
||||
BT
|
||||
168.0 672.712 Td
|
||||
/F1.0 10 Tf
|
||||
[<7465737465>] TJ
|
||||
ET
|
||||
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 665.62 m
|
||||
160.0 665.62 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 643.72 m
|
||||
160.0 643.72 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 666.12 m
|
||||
40.0 643.22 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 666.12 m
|
||||
160.0 643.22 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
|
||||
BT
|
||||
48.0 650.608 Td
|
||||
/F2.0 10 Tf
|
||||
[<50> 30 <6572ed6f646f>] TJ
|
||||
ET
|
||||
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 665.62 m
|
||||
555.28 665.62 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 643.72 m
|
||||
555.28 643.72 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 666.12 m
|
||||
160.0 643.22 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
555.28 666.12 m
|
||||
555.28 643.22 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
|
||||
BT
|
||||
168.0 650.812 Td
|
||||
/F1.0 10 Tf
|
||||
[<30312f30322f3230323620612031362f30362f32303236>] TJ
|
||||
ET
|
||||
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 643.72 m
|
||||
160.0 643.72 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 621.82 m
|
||||
160.0 621.82 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 644.22 m
|
||||
40.0 621.32 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 644.22 m
|
||||
160.0 621.32 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
|
||||
BT
|
||||
48.0 628.708 Td
|
||||
/F2.0 10 Tf
|
||||
[<456d697373e36f>] TJ
|
||||
ET
|
||||
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 643.72 m
|
||||
555.28 643.72 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 621.82 m
|
||||
555.28 621.82 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
160.0 644.22 m
|
||||
160.0 621.32 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
555.28 644.22 m
|
||||
555.28 621.32 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
|
||||
BT
|
||||
168.0 628.912 Td
|
||||
/F1.0 10 Tf
|
||||
[<31362f30362f32303236>] TJ
|
||||
ET
|
||||
|
||||
0.97647 0.45098 0.08627 scn
|
||||
|
||||
BT
|
||||
40.0 598.486 Td
|
||||
/F2.0 13 Tf
|
||||
[<5052> 20 <4f> 50 <56454e54> 40 <4f53204520444553434f4e54> 40 <4f53>] TJ
|
||||
ET
|
||||
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
40.0 592.35 m
|
||||
555.28 592.35 l
|
||||
S
|
||||
0.0 0.0 0.0 scn
|
||||
0.03922 0.03922 0.03922 scn
|
||||
40.0 560.45 189.0039 23.9 re
|
||||
f
|
||||
0.0 0.0 0.0 scn
|
||||
0.03922 0.03922 0.03922 scn
|
||||
229.0039 560.45 148.87117 23.9 re
|
||||
f
|
||||
0.0 0.0 0.0 scn
|
||||
0.03922 0.03922 0.03922 scn
|
||||
377.87507 560.45 177.40493 23.9 re
|
||||
f
|
||||
0.0 0.0 0.0 scn
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 584.35 m
|
||||
229.0039 584.35 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 560.45 m
|
||||
229.0039 560.45 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 584.85 m
|
||||
40.0 559.95 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
229.0039 584.85 m
|
||||
229.0039 559.95 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
1.0 1.0 1.0 scn
|
||||
|
||||
BT
|
||||
48.0 568.338 Td
|
||||
/F2.0 10 Tf
|
||||
[<446573637269e7e36f>] TJ
|
||||
ET
|
||||
|
||||
0.0 0.0 0.0 scn
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
229.0039 584.35 m
|
||||
377.87507 584.35 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
229.0039 560.45 m
|
||||
377.87507 560.45 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
229.0039 584.85 m
|
||||
229.0039 559.95 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
377.87507 584.85 m
|
||||
377.87507 559.95 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
1.0 1.0 1.0 scn
|
||||
|
||||
BT
|
||||
353.65507 568.338 Td
|
||||
/F2.0 10 Tf
|
||||
[<517464>] TJ
|
||||
ET
|
||||
|
||||
0.0 0.0 0.0 scn
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
377.87507 584.35 m
|
||||
555.28 584.35 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
377.87507 560.45 m
|
||||
555.28 560.45 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
377.87507 584.85 m
|
||||
377.87507 559.95 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
555.28 584.85 m
|
||||
555.28 559.95 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
1.0 1.0 1.0 scn
|
||||
|
||||
BT
|
||||
523.87 568.338 Td
|
||||
/F2.0 10 Tf
|
||||
[<56> 60 <616c6f72>] TJ
|
||||
ET
|
||||
|
||||
0.0 0.0 0.0 scn
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 560.45 m
|
||||
229.0039 560.45 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 536.89 m
|
||||
229.0039 536.89 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
40.0 560.95 m
|
||||
40.0 536.39 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
229.0039 560.95 m
|
||||
229.0039 536.39 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
|
||||
BT
|
||||
48.0 544.642 Td
|
||||
/F1.0 10 Tf
|
||||
[<456e7472656761204e6f72> -25 <6d616c>] TJ
|
||||
ET
|
||||
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
229.0039 560.45 m
|
||||
377.87507 560.45 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
229.0039 536.89 m
|
||||
377.87507 536.89 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
229.0039 560.95 m
|
||||
229.0039 536.39 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
377.87507 560.95 m
|
||||
377.87507 536.39 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
|
||||
BT
|
||||
359.75507 544.642 Td
|
||||
/F1.0 10 Tf
|
||||
[<3239>] TJ
|
||||
ET
|
||||
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
377.87507 560.45 m
|
||||
555.28 560.45 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
377.87507 536.89 m
|
||||
555.28 536.89 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
377.87507 560.95 m
|
||||
377.87507 536.39 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.0 0.0 0.0 SCN
|
||||
555.28 560.95 m
|
||||
555.28 536.39 l
|
||||
S
|
||||
[] 0 d
|
||||
1 w
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
|
||||
BT
|
||||
493.52 544.642 Td
|
||||
/F1.0 10 Tf
|
||||
[<2b205224203433352c3030>] TJ
|
||||
ET
|
||||
|
||||
0.97647 0.45098 0.08627 scn
|
||||
48.0 520.89 m
|
||||
547.28 520.89 l
|
||||
551.69828 520.89 555.28 517.30828 555.28 512.89 c
|
||||
555.28 478.89 l
|
||||
555.28 474.47172 551.69828 470.89 547.28 470.89 c
|
||||
48.0 470.89 l
|
||||
43.58172 470.89 40.0 474.47172 40.0 478.89 c
|
||||
40.0 512.89 l
|
||||
40.0 517.30828 43.58172 520.89 48.0 520.89 c
|
||||
h
|
||||
f
|
||||
0.0 0.0 0.0 scn
|
||||
|
||||
BT
|
||||
56.0 503.71 Td
|
||||
/F2.0 10 Tf
|
||||
[<56> 80 <414c4f52204ccd51> 10 <5549444f20412052454345424552>] TJ
|
||||
ET
|
||||
|
||||
|
||||
BT
|
||||
56.0 481.094 Td
|
||||
/F2.0 22 Tf
|
||||
[<5224203433352c3030>] TJ
|
||||
ET
|
||||
|
||||
0.97647 0.45098 0.08627 scn
|
||||
|
||||
BT
|
||||
40.0 433.556 Td
|
||||
/F2.0 13 Tf
|
||||
[<41> 40 <434553534f2052c15049444f2041> 40 <4f205345552050> 100 <41494e454c>] TJ
|
||||
ET
|
||||
|
||||
0.97647 0.45098 0.08627 SCN
|
||||
40.0 427.42 m
|
||||
555.28 427.42 l
|
||||
S
|
||||
0.0 0.0 0.0 scn
|
||||
|
||||
q
|
||||
110.0 0.0 0.0 110.0 40.0 309.42 cm
|
||||
/I1 Do
|
||||
Q
|
||||
|
||||
BT
|
||||
170.0 397.958 Td
|
||||
/F1.0 9 Tf
|
||||
[<457363616e656965206573746520515220436f646520636f6d20612063e26d6572> 10 <6120646f2063656c756c617220706172> 10 <6120656e7472> 10 <6172>] TJ
|
||||
ET
|
||||
|
||||
|
||||
BT
|
||||
170.0 387.554 Td
|
||||
/F1.0 9 Tf
|
||||
[<6e6f20736575207061696e656c20652061636f6d70616e686172207365757320706167616d656e746f73> 15 <2e>] TJ
|
||||
ET
|
||||
|
||||
|
||||
BT
|
||||
170.0 366.746 Td
|
||||
/F1.0 9 Tf
|
||||
[<4f75206163657373653a206c6f63616c686f73743a333030302f6d6f746f72> -15 <69737461>] TJ
|
||||
ET
|
||||
|
||||
|
||||
BT
|
||||
170.0 356.342 Td
|
||||
/F1.0 9 Tf
|
||||
[<6520757365207365752050494e20646520342064ed6769746f73> 15 <2e>] TJ
|
||||
ET
|
||||
|
||||
0.0 0.0 0.0 SCN
|
||||
0.7 w
|
||||
40.0 244.42 m
|
||||
277.64 244.42 l
|
||||
S
|
||||
317.64 244.42 m
|
||||
555.28 244.42 l
|
||||
S
|
||||
0.0 0.0 0.0 scn
|
||||
|
||||
BT
|
||||
119.391 229.958 Td
|
||||
/F2.0 9 Tf
|
||||
[<4272756e6f20436f72> 15 <676f7a696e686f>] TJ
|
||||
ET
|
||||
|
||||
|
||||
BT
|
||||
399.722 229.958 Td
|
||||
/F2.0 9 Tf
|
||||
[<5265656d2054> 80 <72616e73706f72> -20 <7465>] TJ
|
||||
ET
|
||||
|
||||
0.41961 0.44706 0.50196 scn
|
||||
|
||||
BT
|
||||
116.784 216.676 Td
|
||||
/F1.0 8 Tf
|
||||
[<417373696e61747572> 10 <6120646f204d6f746f72> -15 <69737461>] TJ
|
||||
ET
|
||||
|
||||
|
||||
BT
|
||||
386.3 216.676 Td
|
||||
/F1.0 8 Tf
|
||||
[<417373696e61747572> 10 <6120646f2041646d696e69737472> 10 <61646f72>] TJ
|
||||
ET
|
||||
|
||||
0.0 0.0 0.0 scn
|
||||
/Stamp1 Do
|
||||
Q
|
||||
|
||||
endstream
|
||||
endobj
|
||||
5 0 obj
|
||||
<< /ArtBox [0 0 595.28 841.89]
|
||||
/BleedBox [0 0 595.28 841.89]
|
||||
/Contents 4 0 R
|
||||
/CropBox [0 0 595.28 841.89]
|
||||
/MediaBox [0 0 595.28 841.89]
|
||||
/Parent 3 0 R
|
||||
/Resources << /Font << /F1.0 7 0 R
|
||||
/F2.0 6 0 R
|
||||
>>
|
||||
/ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
||||
/XObject << /I1 8 0 R
|
||||
/Stamp1 9 0 R
|
||||
>>
|
||||
>>
|
||||
/TrimBox [0 0 595.28 841.89]
|
||||
/Type /Page
|
||||
>>
|
||||
endobj
|
||||
6 0 obj
|
||||
<< /BaseFont /Helvetica-Bold
|
||||
/Encoding /WinAnsiEncoding
|
||||
/Subtype /Type1
|
||||
/Type /Font
|
||||
>>
|
||||
endobj
|
||||
7 0 obj
|
||||
<< /BaseFont /Helvetica
|
||||
/Encoding /WinAnsiEncoding
|
||||
/Subtype /Type1
|
||||
/Type /Font
|
||||
>>
|
||||
endobj
|
||||
8 0 obj
|
||||
<< /BitsPerComponent 1
|
||||
/ColorSpace /DeviceGray
|
||||
/DecodeParms [<< /BitsPerComponent 1
|
||||
/Colors 1
|
||||
/Columns 220
|
||||
/Predictor 15
|
||||
>>]
|
||||
/Filter [/FlateDecode]
|
||||
/Height 220
|
||||
/Length 788
|
||||
/Subtype /Image
|
||||
/Type /XObject
|
||||
/Width 220
|
||||
>>
|
||||
stream
|
||||
xœí˜Á‘åHD‹q | ||||