maralvic commited on
Commit
55b9ab7
verified
1 Parent(s): 0b3c462

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +152 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Relpaula
3
- emoji: 馃悹
4
- colorFrom: red
5
- colorTo: red
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: relpaula
3
+ emoji: 馃惓
4
+ colorFrom: yellow
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,152 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="pt-BR">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Relat贸rio MVICENTE Advocacia</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
9
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.18.5/xlsx.full.min.js"></script>
10
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/2.0.5/FileSaver.min.js"></script>
11
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>
12
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
13
+ <style>
14
+ @page {
15
+ size: A4;
16
+ margin: 10mm;
17
+ }
18
+ body {
19
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
20
+ }
21
+ .blue-gradient {
22
+ background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
23
+ }
24
+ .scrollable-table-container {
25
+ position: relative;
26
+ overflow: auto;
27
+ max-height: 70vh;
28
+ }
29
+ .scrollable-table {
30
+ overflow: visible;
31
+ }
32
+ .sticky-header th {
33
+ position: sticky;
34
+ top: 0;
35
+ z-index: 10;
36
+ background-color: #1e40af;
37
+ color: white;
38
+ text-align: center;
39
+ vertical-align: middle;
40
+ }
41
+ .hover-row:hover {
42
+ background-color: #f0f9ff;
43
+ }
44
+ .text-xxs {
45
+ font-size: 0.65rem;
46
+ }
47
+ .rotate-text {
48
+ writing-mode: vertical-rl;
49
+ transform: rotate(180deg);
50
+ white-space: nowrap;
51
+ }
52
+ .monetary {
53
+ text-align: right;
54
+ font-family: 'Courier New', monospace;
55
+ }
56
+ .row-page {
57
+ width: 210mm;
58
+ height: 297mm;
59
+ padding: 15mm;
60
+ box-sizing: border-box;
61
+ background: white;
62
+ margin: 0 auto;
63
+ box-shadow: 0 0 5px rgba(0,0,0,0.1);
64
+ position: relative;
65
+ overflow: hidden;
66
+ }
67
+ .row-table {
68
+ width: 100%;
69
+ border-collapse: collapse;
70
+ margin-bottom: 10px;
71
+ }
72
+ .row-table th {
73
+ background-color: #1e40af;
74
+ color: white;
75
+ text-align: left;
76
+ padding: 8px;
77
+ font-size: 12px;
78
+ width: 30%;
79
+ }
80
+ .row-table td {
81
+ border: 1px solid #ddd;
82
+ padding: 8px;
83
+ font-size: 12px;
84
+ width: 70%;
85
+ }
86
+ .row-table tr:nth-child(even) {
87
+ background-color: #f8fafc;
88
+ }
89
+ @media print {
90
+ body * {
91
+ visibility: hidden;
92
+ }
93
+ #printableArea, #printableArea * {
94
+ visibility: visible;
95
+ }
96
+ #printableArea {
97
+ position: absolute;
98
+ left: 0;
99
+ top: 0;
100
+ width: 100%;
101
+ }
102
+ .no-print {
103
+ display: none !important;
104
+ }
105
+ .row-page {
106
+ page-break-after: always;
107
+ box-shadow: none;
108
+ margin: 0;
109
+ padding: 15mm;
110
+ }
111
+ }
112
+ .hidden-row-pages {
113
+ position: absolute;
114
+ left: -9999px;
115
+ top: -9999px;
116
+ width: 210mm;
117
+ height: 297mm;
118
+ }
119
+ .cda-list {
120
+ max-height: 80px;
121
+ overflow-y: auto;
122
+ padding: 4px;
123
+ border: 1px solid #e2e8f0;
124
+ border-radius: 4px;
125
+ background-color: #f8fafc;
126
+ }
127
+ .cda-item {
128
+ padding: 2px 0;
129
+ font-size: 0.75rem;
130
+ border-bottom: 1px solid #e2e8f0;
131
+ }
132
+ .cda-item:last-child {
133
+ border-bottom: none;
134
+ }
135
+ .summary-card {
136
+ transition: all 0.3s ease;
137
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
138
+ }
139
+ .summary-card:hover {
140
+ transform: translateY(-2px);
141
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
142
+ }
143
+ .progress-bar {
144
+ height: 6px;
145
+ border-radius: 3px;
146
+ background-color: #e2e8f0;
147
+ overflow: hidden;
148
+ }
149
+ .progress-value {
150
+ height: 100%;
151
+ background-color: #3
152
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ Preparar novamente o relat贸rio com caracter铆sticas id锚nticas e as mesmas fun莽玫es operacionais, por茅m alterando para o cliente "" e a partir dos dados dispon铆veis na seguinte planilha elaborada em Excel: "REF CONTA N MODALIDADE SUBMODALIDADE DATA CONSOLID SITUA脟脙O ATUAL N. CDA V DIV R$ V CONS R$ %DESC V DESC R$ Q PREST TOTAL %ENT V ENT R$ Q PREST ENT V PREST ENT R$ V PREST ENT 1 R$ V PREST ENT F R$ Q PREST ENT R V SALDO R$ Q PREST SALDO V PREST SALDO R$ V PREST SALDO 1 R$ V PREST SALDO F R$ Q PREST SALDO R R$ V PREST ATUAL R$ SALDO T ATUAL R$ ORIENTA脟脙O OBS LINK PARA BOT脙O "GERAR DOCUMENTO" 1 0211.00012.0037528086.24-73 PARCELAMENTO SIMPLIFICADO Parcelamento Simplificado 21/02/2024 ATIVO N/C 4.497,46 4.497,46 0,00% - 44 2,27% 102,22 1 102,22 28/02/2024 28/02/2024 - 4.395,25 43 102,22 28/03/2024 28/09/2027 28 116,15 3.252,11 PAGAMENTOS EM DIA / MANTER DARF C脫D 1124 https://drive.google.com/file/d/1MBW9kk8mvEx_D2GMbZezz6W0mTNYp5mS/view?usp=sharing 2 S/N ESOCIAL Maria Machado Gomes 29/05/2025 ATIVO N/C 426,85 426,85 0,00% - 1 100,00% 426,85 1 426,85 29/05/2025 29/05/2025 1 0,00 - - 29/06/2025 29/05/2025 - 426,85 426,85 PAGAMENTOS EM DIA / MANTER N脙O 脡 PARCELAMENTO / SOMENTE PARA CONTROLE DE PARCELAS DO ESOCIAL https://drive.google.com/file/d/16vj7AoQMSdAUwA2ppH10AkR5sl3kS9Oa/view?usp=sharing TOTAL 4.924,31 4.924,31 529,07 4.395,25 102,22 543,00 3.678,96 "; alterar a senha para "POBASTOS25"
2
+ The same job, but changeing the former plan to "REF CONTA N MODALIDADE SUBMODALIDADE DATA CONSOLID SITUA脟脙O ATUAL N. CDA V DIV R$ V CONS R$ %DESC V DESC R$ Q PREST TOTAL %ENT V ENT R$ Q PREST ENT V PREST ENT R$ V PREST ENT 1 R$ V PREST ENT F R$ Q PREST ENT R V SALDO R$ Q PREST SALDO V PREST SALDO R$ V PREST SALDO 1 R$ V PREST SALDO F R$ Q PREST SALDO R R$ V PREST ATUAL R$ SALDO T ATUAL R$ ORIENTA脟脙O OBS LINK PARA BOT脙O "GERAR DOCUMENTO" 1 0211.00012.0037528086.24-73 PARCELAMENTO SIMPLIFICADO Parcelamento Simplificado 21/02/2024 ATIVO N/C 4.497,46 4.497,46 0,00% - 44 2,27% 102,22 1 102,22 28/02/2024 28/02/2024 - 4.395,25 43 102,22 28/03/2024 28/09/2027 28 116,15 3.252,11 PAGAMENTOS EM DIA / MANTER DARF C脫D 1124 https://drive.google.com/file/d/1MBW9kk8mvEx_D2GMbZezz6W0mTNYp5mS/view?usp=sharing 2 S/N ESOCIAL Maria Machado Gomes 29/05/2025 ATIVO N/C 5.121,84 5.121,84 0,00% - 12 8,33% 426,82 1 426,82 29/05/2025 29/05/2025 1 4.695,02 11 426,82 29/06/2025 29/04/2026 11 426,82 5.121,84 PAGAMENTOS EM DIA / MANTER N脙O 脡 PARCELAMENTO / SOMENTE PARA CONTROLE DE PARCELAS DO ESOCIAL https://drive.google.com/file/d/16vj7AoQMSdAUwA2ppH10AkR5sl3kS9Oa/view?usp=sharing TOTAL 9.619,30 9.619,30 529,04 9.090,27 529,04 542,97 8.373,95 ""