@hed-hog/finance 0.0.224 → 0.0.226
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dto/create-financial-title.dto.d.ts +19 -0
- package/dist/dto/create-financial-title.dto.d.ts.map +1 -0
- package/dist/dto/create-financial-title.dto.js +128 -0
- package/dist/dto/create-financial-title.dto.js.map +1 -0
- package/dist/finance.controller.d.ts +276 -0
- package/dist/finance.controller.d.ts.map +1 -0
- package/dist/finance.controller.js +110 -0
- package/dist/finance.controller.js.map +1 -0
- package/dist/finance.module.d.ts.map +1 -1
- package/dist/finance.module.js +8 -3
- package/dist/finance.module.js.map +1 -1
- package/dist/finance.service.d.ts +295 -0
- package/dist/finance.service.d.ts.map +1 -0
- package/dist/finance.service.js +416 -0
- package/dist/finance.service.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/hedhog/data/menu.yaml +72 -25
- package/hedhog/data/route.yaml +55 -1
- package/hedhog/frontend/app/accounts-payable/approvals/page.tsx.ejs +69 -44
- package/hedhog/frontend/app/accounts-payable/installments/[id]/page.tsx.ejs +68 -46
- package/hedhog/frontend/app/accounts-payable/installments/page.tsx.ejs +87 -63
- package/hedhog/frontend/app/accounts-receivable/collections-default/page.tsx.ejs +94 -59
- package/hedhog/frontend/app/accounts-receivable/installments/[id]/page.tsx.ejs +78 -52
- package/hedhog/frontend/app/accounts-receivable/installments/page.tsx.ejs +89 -68
- package/hedhog/frontend/app/cash-and-banks/bank-accounts/page.tsx.ejs +69 -47
- package/hedhog/frontend/app/cash-and-banks/bank-reconciliation/page.tsx.ejs +79 -53
- package/hedhog/frontend/app/cash-and-banks/statements/page.tsx.ejs +43 -36
- package/hedhog/frontend/app/cash-and-banks/transfers/page.tsx.ejs +47 -38
- package/hedhog/frontend/app/page.tsx.ejs +54 -31
- package/hedhog/frontend/app/planning/cash-flow-forecast/page.tsx.ejs +51 -38
- package/hedhog/frontend/app/planning/receivables-calendar/page.tsx.ejs +63 -33
- package/hedhog/frontend/app/planning/scenarios/page.tsx.ejs +50 -33
- package/hedhog/frontend/messages/en.json +776 -0
- package/hedhog/frontend/messages/pt.json +776 -0
- package/package.json +4 -4
- package/src/dto/create-financial-title.dto.ts +142 -0
- package/src/finance.controller.ts +89 -0
- package/src/finance.module.ts +8 -3
- package/src/finance.service.ts +529 -0
- package/src/index.ts +4 -0
|
@@ -2,5 +2,781 @@
|
|
|
2
2
|
"Home": {
|
|
3
3
|
"title": "Financeiro",
|
|
4
4
|
"description": "Gerencie suas configurações financeiras e transações."
|
|
5
|
+
},
|
|
6
|
+
"DashboardPage": {
|
|
7
|
+
"chart": { "predicted": "Previsto", "actual": "Realizado" },
|
|
8
|
+
"upcoming": {
|
|
9
|
+
"payable": "A Pagar",
|
|
10
|
+
"receivable": "A Receber",
|
|
11
|
+
"nextDueDates": "Próximos vencimentos"
|
|
12
|
+
},
|
|
13
|
+
"alerts": {
|
|
14
|
+
"title": "Alertas",
|
|
15
|
+
"overdueTitles": "Títulos vencidos",
|
|
16
|
+
"pendingReconciliation": "Conciliação pendente",
|
|
17
|
+
"openPeriod": "Período aberto",
|
|
18
|
+
"currentPeriod": "Janeiro/2024"
|
|
19
|
+
},
|
|
20
|
+
"header": {
|
|
21
|
+
"title": "Visão Geral",
|
|
22
|
+
"description": "Acompanhe os principais indicadores financeiros"
|
|
23
|
+
},
|
|
24
|
+
"breadcrumbs": { "home": "Início", "finance": "Financeiro" },
|
|
25
|
+
"kpis": {
|
|
26
|
+
"cashBalance": {
|
|
27
|
+
"title": "Saldo em Caixa",
|
|
28
|
+
"description": "Todas as contas"
|
|
29
|
+
},
|
|
30
|
+
"payable30": {
|
|
31
|
+
"title": "A Pagar (30 dias)",
|
|
32
|
+
"sevenDays": "7 dias: {value}"
|
|
33
|
+
},
|
|
34
|
+
"receivable30": {
|
|
35
|
+
"title": "A Receber (30 dias)",
|
|
36
|
+
"sevenDays": "7 dias: {value}"
|
|
37
|
+
},
|
|
38
|
+
"default": {
|
|
39
|
+
"title": "Inadimplência",
|
|
40
|
+
"description": "Títulos vencidos"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"cashFlow": {
|
|
44
|
+
"title": "Fluxo de Caixa",
|
|
45
|
+
"description": "Previsto vs Realizado"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"PayableApprovalsPage": {
|
|
49
|
+
"dialog": {
|
|
50
|
+
"approveAction": "Aprovar",
|
|
51
|
+
"rejectAction": "Reprovar",
|
|
52
|
+
"approveTitle": "Aprovar Título",
|
|
53
|
+
"rejectTitle": "Reprovar Título",
|
|
54
|
+
"approveDescription": "Confirme a aprovação deste título para pagamento.",
|
|
55
|
+
"rejectDescription": "Informe o motivo da reprovação.",
|
|
56
|
+
"comment": "Comentário",
|
|
57
|
+
"optionalCommentPlaceholder": "Comentário opcional...",
|
|
58
|
+
"rejectReasonPlaceholder": "Informe o motivo da reprovação...",
|
|
59
|
+
"cancel": "Cancelar",
|
|
60
|
+
"confirmApprove": "Confirmar Aprovação",
|
|
61
|
+
"confirmReject": "Confirmar Reprovação"
|
|
62
|
+
},
|
|
63
|
+
"urgency": {
|
|
64
|
+
"low": "Baixa",
|
|
65
|
+
"medium": "Média",
|
|
66
|
+
"high": "Alta",
|
|
67
|
+
"critical": "Crítica"
|
|
68
|
+
},
|
|
69
|
+
"header": {
|
|
70
|
+
"title": "Aprovações",
|
|
71
|
+
"description": "Gerencie as aprovações de títulos"
|
|
72
|
+
},
|
|
73
|
+
"breadcrumbs": {
|
|
74
|
+
"home": "Início",
|
|
75
|
+
"finance": "Financeiro",
|
|
76
|
+
"current": "Aprovações"
|
|
77
|
+
},
|
|
78
|
+
"cards": {
|
|
79
|
+
"pending": "Pendentes",
|
|
80
|
+
"totalValue": "Valor Total",
|
|
81
|
+
"urgent": "Urgentes"
|
|
82
|
+
},
|
|
83
|
+
"table": {
|
|
84
|
+
"title": "Aprovações Pendentes",
|
|
85
|
+
"description": "Títulos aguardando sua aprovação",
|
|
86
|
+
"headers": {
|
|
87
|
+
"document": "Documento",
|
|
88
|
+
"supplier": "Fornecedor",
|
|
89
|
+
"requester": "Solicitante",
|
|
90
|
+
"value": "Valor",
|
|
91
|
+
"policy": "Política",
|
|
92
|
+
"urgency": "Urgência",
|
|
93
|
+
"date": "Data",
|
|
94
|
+
"actions": "Ações"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"empty": {
|
|
98
|
+
"title": "Tudo em dia!",
|
|
99
|
+
"description": "Não há aprovações pendentes."
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"PayableInstallmentsPage": {
|
|
103
|
+
"common": {
|
|
104
|
+
"select": "Selecione...",
|
|
105
|
+
"cancel": "Cancelar",
|
|
106
|
+
"save": "Salvar"
|
|
107
|
+
},
|
|
108
|
+
"newTitle": {
|
|
109
|
+
"action": "Novo Título",
|
|
110
|
+
"title": "Novo Título a Pagar",
|
|
111
|
+
"description": "Preencha os dados para criar um novo título a pagar.",
|
|
112
|
+
"descriptionPlaceholder": "Descrição do título..."
|
|
113
|
+
},
|
|
114
|
+
"fields": {
|
|
115
|
+
"document": "Documento",
|
|
116
|
+
"supplier": "Fornecedor",
|
|
117
|
+
"competency": "Competência",
|
|
118
|
+
"dueDate": "Vencimento",
|
|
119
|
+
"totalValue": "Valor Total",
|
|
120
|
+
"category": "Categoria",
|
|
121
|
+
"costCenter": "Centro de Custo",
|
|
122
|
+
"paymentMethod": "Forma de Pagamento",
|
|
123
|
+
"description": "Descrição"
|
|
124
|
+
},
|
|
125
|
+
"paymentMethods": {
|
|
126
|
+
"boleto": "Boleto",
|
|
127
|
+
"transfer": "Transferência",
|
|
128
|
+
"card": "Cartão",
|
|
129
|
+
"cash": "Dinheiro",
|
|
130
|
+
"check": "Cheque"
|
|
131
|
+
},
|
|
132
|
+
"header": {
|
|
133
|
+
"title": "Títulos a Pagar",
|
|
134
|
+
"description": "Gerencie suas contas a pagar"
|
|
135
|
+
},
|
|
136
|
+
"breadcrumbs": {
|
|
137
|
+
"home": "Início",
|
|
138
|
+
"finance": "Financeiro",
|
|
139
|
+
"current": "Títulos a Pagar"
|
|
140
|
+
},
|
|
141
|
+
"filters": {
|
|
142
|
+
"searchPlaceholder": "Buscar por documento ou fornecedor...",
|
|
143
|
+
"status": "Status"
|
|
144
|
+
},
|
|
145
|
+
"statuses": {
|
|
146
|
+
"all": "Todos",
|
|
147
|
+
"rascunho": "Rascunho",
|
|
148
|
+
"aprovado": "Aprovado",
|
|
149
|
+
"aberto": "Aberto",
|
|
150
|
+
"parcial": "Parcial",
|
|
151
|
+
"liquidado": "Liquidado",
|
|
152
|
+
"vencido": "Vencido",
|
|
153
|
+
"cancelado": "Cancelado"
|
|
154
|
+
},
|
|
155
|
+
"table": {
|
|
156
|
+
"headers": {
|
|
157
|
+
"document": "Documento",
|
|
158
|
+
"supplier": "Fornecedor",
|
|
159
|
+
"competency": "Competência",
|
|
160
|
+
"dueDate": "Vencimento",
|
|
161
|
+
"value": "Valor",
|
|
162
|
+
"category": "Categoria",
|
|
163
|
+
"status": "Status"
|
|
164
|
+
},
|
|
165
|
+
"actions": {
|
|
166
|
+
"srActions": "Ações",
|
|
167
|
+
"viewDetails": "Ver Detalhes",
|
|
168
|
+
"edit": "Editar",
|
|
169
|
+
"approve": "Aprovar",
|
|
170
|
+
"settle": "Baixar",
|
|
171
|
+
"reverse": "Estornar",
|
|
172
|
+
"cancel": "Cancelar"
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
"footer": {
|
|
176
|
+
"showing": "Mostrando {filtered} de {total} registros",
|
|
177
|
+
"previous": "Anterior",
|
|
178
|
+
"next": "Próximo"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"PayableInstallmentDetailPage": {
|
|
182
|
+
"notFound": {
|
|
183
|
+
"title": "Título não encontrado",
|
|
184
|
+
"description": "Não foi possível carregar os dados do título.",
|
|
185
|
+
"breadcrumbPayables": "Contas a Pagar",
|
|
186
|
+
"breadcrumbInstallments": "Títulos e Parcelas"
|
|
187
|
+
},
|
|
188
|
+
"breadcrumbs": {
|
|
189
|
+
"home": "Início",
|
|
190
|
+
"finance": "Financeiro",
|
|
191
|
+
"payables": "Títulos a Pagar"
|
|
192
|
+
},
|
|
193
|
+
"actions": {
|
|
194
|
+
"title": "Ações",
|
|
195
|
+
"edit": "Editar",
|
|
196
|
+
"approve": "Aprovar",
|
|
197
|
+
"settle": "Baixar",
|
|
198
|
+
"reverse": "Estornar",
|
|
199
|
+
"cancel": "Cancelar"
|
|
200
|
+
},
|
|
201
|
+
"documentData": {
|
|
202
|
+
"title": "Dados do Documento",
|
|
203
|
+
"supplier": "Fornecedor",
|
|
204
|
+
"cnpjCpf": "CNPJ/CPF",
|
|
205
|
+
"competency": "Competência",
|
|
206
|
+
"totalValue": "Valor Total",
|
|
207
|
+
"category": "Categoria",
|
|
208
|
+
"costCenter": "Centro de Custo",
|
|
209
|
+
"createdAt": "Data de Criação",
|
|
210
|
+
"tags": "Tags"
|
|
211
|
+
},
|
|
212
|
+
"attachments": {
|
|
213
|
+
"title": "Anexos",
|
|
214
|
+
"description": "Documentos relacionados",
|
|
215
|
+
"none": "Nenhum anexo"
|
|
216
|
+
},
|
|
217
|
+
"tabs": {
|
|
218
|
+
"installments": "Parcelas",
|
|
219
|
+
"settlements": "Liquidações",
|
|
220
|
+
"audit": "Auditoria"
|
|
221
|
+
},
|
|
222
|
+
"installmentsTable": {
|
|
223
|
+
"installment": "Parcela",
|
|
224
|
+
"dueDate": "Vencimento",
|
|
225
|
+
"value": "Valor",
|
|
226
|
+
"method": "Método",
|
|
227
|
+
"status": "Status"
|
|
228
|
+
},
|
|
229
|
+
"settlementsTable": {
|
|
230
|
+
"date": "Data",
|
|
231
|
+
"value": "Valor",
|
|
232
|
+
"interest": "Juros",
|
|
233
|
+
"discount": "Desconto",
|
|
234
|
+
"fine": "Multa",
|
|
235
|
+
"account": "Conta",
|
|
236
|
+
"method": "Método",
|
|
237
|
+
"none": "Nenhuma liquidação registrada"
|
|
238
|
+
},
|
|
239
|
+
"audit": { "none": "Nenhum evento de auditoria" }
|
|
240
|
+
},
|
|
241
|
+
"CollectionsDefaultPage": {
|
|
242
|
+
"common": { "cancel": "Cancelar" },
|
|
243
|
+
"actions": {
|
|
244
|
+
"history": "Histórico",
|
|
245
|
+
"collect": "Cobrar",
|
|
246
|
+
"registerAgreement": "Registrar Acordo"
|
|
247
|
+
},
|
|
248
|
+
"history": {
|
|
249
|
+
"title": "Histórico de Contatos",
|
|
250
|
+
"by": "por"
|
|
251
|
+
},
|
|
252
|
+
"send": {
|
|
253
|
+
"title": "Enviar Cobrança",
|
|
254
|
+
"description": "Enviar cobrança para {cliente}",
|
|
255
|
+
"contactType": "Tipo de Contato",
|
|
256
|
+
"channels": { "email": "E-mail" },
|
|
257
|
+
"message": "Mensagem",
|
|
258
|
+
"messagePlaceholder": "Mensagem personalizada...",
|
|
259
|
+
"defaultMessage": "Prezado cliente, identificamos pendências em seu cadastro. Regularize sua situação para evitar restrições.",
|
|
260
|
+
"submit": "Enviar Cobrança"
|
|
261
|
+
},
|
|
262
|
+
"agreement": {
|
|
263
|
+
"title": "Registrar Acordo",
|
|
264
|
+
"description": "Registrar acordo de pagamento para {cliente}",
|
|
265
|
+
"value": "Valor do Acordo",
|
|
266
|
+
"installments": "Parcelas",
|
|
267
|
+
"firstDueDate": "Primeiro Vencimento",
|
|
268
|
+
"notes": "Observações",
|
|
269
|
+
"notesPlaceholder": "Detalhes do acordo...",
|
|
270
|
+
"submit": "Registrar Acordo"
|
|
271
|
+
},
|
|
272
|
+
"chart": {
|
|
273
|
+
"range0to30": "0-30 dias",
|
|
274
|
+
"range31to60": "31-60 dias",
|
|
275
|
+
"range61to90": "61-90 dias",
|
|
276
|
+
"range90plus": "90+ dias"
|
|
277
|
+
},
|
|
278
|
+
"header": {
|
|
279
|
+
"title": "Cobrança e Inadimplência",
|
|
280
|
+
"description": "Gerencie a cobrança de títulos vencidos"
|
|
281
|
+
},
|
|
282
|
+
"breadcrumbs": {
|
|
283
|
+
"home": "Início",
|
|
284
|
+
"finance": "Financeiro",
|
|
285
|
+
"current": "Cobrança e Inadimplência"
|
|
286
|
+
},
|
|
287
|
+
"cards": {
|
|
288
|
+
"totalDefault": "Total Inadimplente",
|
|
289
|
+
"lateClients": "Clientes em Atraso",
|
|
290
|
+
"maxDelay": "Maior Atraso",
|
|
291
|
+
"maxDelayValue": "90+ dias"
|
|
292
|
+
},
|
|
293
|
+
"aging": {
|
|
294
|
+
"title": "Aging por Faixa de Atraso",
|
|
295
|
+
"description": "Distribuição da inadimplência por período"
|
|
296
|
+
},
|
|
297
|
+
"table": {
|
|
298
|
+
"title": "Clientes Inadimplentes",
|
|
299
|
+
"description": "Detalhamento por cliente e faixa de atraso",
|
|
300
|
+
"headers": {
|
|
301
|
+
"client": "Cliente",
|
|
302
|
+
"range0to30": "0-30 dias",
|
|
303
|
+
"range31to60": "31-60 dias",
|
|
304
|
+
"range61to90": "61-90 dias",
|
|
305
|
+
"range90plus": "90+ dias",
|
|
306
|
+
"total": "Total",
|
|
307
|
+
"actions": "Ações"
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"ReceivableInstallmentsPage": {
|
|
312
|
+
"common": {
|
|
313
|
+
"select": "Selecione...",
|
|
314
|
+
"cancel": "Cancelar",
|
|
315
|
+
"save": "Salvar"
|
|
316
|
+
},
|
|
317
|
+
"newTitle": {
|
|
318
|
+
"action": "Novo Título",
|
|
319
|
+
"title": "Novo Título a Receber",
|
|
320
|
+
"description": "Preencha os dados para criar um novo título a receber.",
|
|
321
|
+
"descriptionPlaceholder": "Descrição do título..."
|
|
322
|
+
},
|
|
323
|
+
"fields": {
|
|
324
|
+
"document": "Documento",
|
|
325
|
+
"client": "Cliente",
|
|
326
|
+
"competency": "Competência",
|
|
327
|
+
"dueDate": "Vencimento",
|
|
328
|
+
"totalValue": "Valor Total",
|
|
329
|
+
"category": "Categoria",
|
|
330
|
+
"costCenter": "Centro de Custo",
|
|
331
|
+
"channel": "Canal de Recebimento",
|
|
332
|
+
"description": "Descrição"
|
|
333
|
+
},
|
|
334
|
+
"channels": {
|
|
335
|
+
"boleto": "Boleto",
|
|
336
|
+
"card": "Cartão",
|
|
337
|
+
"transfer": "Transferência"
|
|
338
|
+
},
|
|
339
|
+
"header": {
|
|
340
|
+
"title": "Títulos a Receber",
|
|
341
|
+
"description": "Gerencie suas contas a receber"
|
|
342
|
+
},
|
|
343
|
+
"breadcrumbs": {
|
|
344
|
+
"home": "Início",
|
|
345
|
+
"finance": "Financeiro",
|
|
346
|
+
"current": "Títulos a Receber"
|
|
347
|
+
},
|
|
348
|
+
"filters": {
|
|
349
|
+
"searchPlaceholder": "Buscar por documento ou cliente...",
|
|
350
|
+
"status": "Status"
|
|
351
|
+
},
|
|
352
|
+
"statuses": {
|
|
353
|
+
"all": "Todos",
|
|
354
|
+
"aberto": "Aberto",
|
|
355
|
+
"parcial": "Parcial",
|
|
356
|
+
"liquidado": "Liquidado",
|
|
357
|
+
"vencido": "Vencido",
|
|
358
|
+
"cancelado": "Cancelado"
|
|
359
|
+
},
|
|
360
|
+
"table": {
|
|
361
|
+
"headers": {
|
|
362
|
+
"document": "Documento",
|
|
363
|
+
"client": "Cliente",
|
|
364
|
+
"competency": "Competência",
|
|
365
|
+
"dueDate": "Vencimento",
|
|
366
|
+
"value": "Valor",
|
|
367
|
+
"channel": "Canal",
|
|
368
|
+
"status": "Status"
|
|
369
|
+
},
|
|
370
|
+
"actions": {
|
|
371
|
+
"srActions": "Ações",
|
|
372
|
+
"viewDetails": "Ver Detalhes",
|
|
373
|
+
"edit": "Editar",
|
|
374
|
+
"registerReceipt": "Registrar Recebimento",
|
|
375
|
+
"sendCollection": "Enviar Cobrança"
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
"footer": {
|
|
379
|
+
"showing": "Mostrando {filtered} de {total} registros",
|
|
380
|
+
"previous": "Anterior",
|
|
381
|
+
"next": "Próximo"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"ReceivableInstallmentDetailPage": {
|
|
385
|
+
"channels": {
|
|
386
|
+
"boleto": "Boleto",
|
|
387
|
+
"card": "Cartão",
|
|
388
|
+
"transfer": "Transferência"
|
|
389
|
+
},
|
|
390
|
+
"notFound": {
|
|
391
|
+
"title": "Título não encontrado",
|
|
392
|
+
"description": "Não foi possível carregar os dados do título.",
|
|
393
|
+
"breadcrumbReceivables": "Contas a Receber",
|
|
394
|
+
"breadcrumbInstallments": "Títulos e Parcelas"
|
|
395
|
+
},
|
|
396
|
+
"breadcrumbs": {
|
|
397
|
+
"home": "Início",
|
|
398
|
+
"finance": "Financeiro",
|
|
399
|
+
"receivables": "Títulos a Receber"
|
|
400
|
+
},
|
|
401
|
+
"actions": {
|
|
402
|
+
"title": "Ações",
|
|
403
|
+
"edit": "Editar",
|
|
404
|
+
"registerReceipt": "Registrar Recebimento",
|
|
405
|
+
"sendCollection": "Enviar Cobrança"
|
|
406
|
+
},
|
|
407
|
+
"documentData": {
|
|
408
|
+
"title": "Dados do Documento",
|
|
409
|
+
"client": "Cliente",
|
|
410
|
+
"cnpjCpf": "CNPJ/CPF",
|
|
411
|
+
"competency": "Competência",
|
|
412
|
+
"totalValue": "Valor Total",
|
|
413
|
+
"category": "Categoria",
|
|
414
|
+
"costCenter": "Centro de Custo",
|
|
415
|
+
"channel": "Canal",
|
|
416
|
+
"tags": "Tags"
|
|
417
|
+
},
|
|
418
|
+
"attachments": {
|
|
419
|
+
"title": "Anexos",
|
|
420
|
+
"description": "Documentos relacionados",
|
|
421
|
+
"none": "Nenhum anexo"
|
|
422
|
+
},
|
|
423
|
+
"tabs": {
|
|
424
|
+
"installments": "Parcelas",
|
|
425
|
+
"receipts": "Recebimentos",
|
|
426
|
+
"audit": "Auditoria"
|
|
427
|
+
},
|
|
428
|
+
"installmentsTable": {
|
|
429
|
+
"installment": "Parcela",
|
|
430
|
+
"dueDate": "Vencimento",
|
|
431
|
+
"value": "Valor",
|
|
432
|
+
"status": "Status"
|
|
433
|
+
},
|
|
434
|
+
"receiptsTable": {
|
|
435
|
+
"date": "Data",
|
|
436
|
+
"value": "Valor",
|
|
437
|
+
"interest": "Juros",
|
|
438
|
+
"discount": "Desconto",
|
|
439
|
+
"account": "Conta",
|
|
440
|
+
"method": "Método",
|
|
441
|
+
"none": "Nenhum recebimento registrado"
|
|
442
|
+
},
|
|
443
|
+
"audit": { "none": "Nenhum evento de auditoria" }
|
|
444
|
+
},
|
|
445
|
+
"BankAccountsPage": {
|
|
446
|
+
"common": {
|
|
447
|
+
"select": "Selecione...",
|
|
448
|
+
"cancel": "Cancelar",
|
|
449
|
+
"save": "Salvar"
|
|
450
|
+
},
|
|
451
|
+
"types": {
|
|
452
|
+
"corrente": "Conta Corrente",
|
|
453
|
+
"poupanca": "Poupança",
|
|
454
|
+
"investimento": "Investimento",
|
|
455
|
+
"caixa": "Caixa Físico"
|
|
456
|
+
},
|
|
457
|
+
"newAccount": {
|
|
458
|
+
"action": "Nova Conta",
|
|
459
|
+
"title": "Nova Conta Bancária",
|
|
460
|
+
"description": "Cadastre uma nova conta bancária."
|
|
461
|
+
},
|
|
462
|
+
"fields": {
|
|
463
|
+
"bank": "Banco",
|
|
464
|
+
"bankPlaceholder": "Nome do banco",
|
|
465
|
+
"branch": "Agência",
|
|
466
|
+
"account": "Conta",
|
|
467
|
+
"type": "Tipo",
|
|
468
|
+
"description": "Descrição",
|
|
469
|
+
"descriptionPlaceholder": "Ex: Conta Principal",
|
|
470
|
+
"initialBalance": "Saldo Inicial"
|
|
471
|
+
},
|
|
472
|
+
"header": {
|
|
473
|
+
"title": "Contas Bancárias",
|
|
474
|
+
"description": "Gerencie suas contas bancárias"
|
|
475
|
+
},
|
|
476
|
+
"breadcrumbs": {
|
|
477
|
+
"home": "Início",
|
|
478
|
+
"finance": "Financeiro",
|
|
479
|
+
"current": "Contas Bancárias"
|
|
480
|
+
},
|
|
481
|
+
"cards": {
|
|
482
|
+
"totalBalance": "Saldo Total",
|
|
483
|
+
"activeAccounts": "{count} contas ativas",
|
|
484
|
+
"reconciledBalance": "Saldo Conciliado",
|
|
485
|
+
"difference": "Diferença"
|
|
486
|
+
},
|
|
487
|
+
"status": { "inactive": "Inativa" },
|
|
488
|
+
"accountCard": {
|
|
489
|
+
"bankAccount": "Ag: {agency} | Cc: {account}",
|
|
490
|
+
"currentBalance": "Saldo Atual",
|
|
491
|
+
"reconciledBalance": "Saldo Conciliado",
|
|
492
|
+
"difference": "Diferença",
|
|
493
|
+
"statement": "Extrato",
|
|
494
|
+
"reconcile": "Conciliar"
|
|
495
|
+
}
|
|
496
|
+
},
|
|
497
|
+
"BankReconciliationPage": {
|
|
498
|
+
"common": {
|
|
499
|
+
"select": "Selecione...",
|
|
500
|
+
"cancel": "Cancelar"
|
|
501
|
+
},
|
|
502
|
+
"adjustment": {
|
|
503
|
+
"action": "Criar Ajuste",
|
|
504
|
+
"title": "Criar Ajuste",
|
|
505
|
+
"description": "Registre um ajuste para tarifas ou diferenças.",
|
|
506
|
+
"type": "Tipo de Ajuste",
|
|
507
|
+
"types": {
|
|
508
|
+
"bankFee": "Tarifa Bancária",
|
|
509
|
+
"interest": "Juros",
|
|
510
|
+
"valueDifference": "Diferença de Valor",
|
|
511
|
+
"other": "Outro"
|
|
512
|
+
},
|
|
513
|
+
"value": "Valor",
|
|
514
|
+
"details": "Descrição",
|
|
515
|
+
"detailsPlaceholder": "Descrição do ajuste...",
|
|
516
|
+
"submit": "Criar Ajuste"
|
|
517
|
+
},
|
|
518
|
+
"header": {
|
|
519
|
+
"title": "Conciliação Bancária",
|
|
520
|
+
"description": "Concilie transações do extrato com títulos"
|
|
521
|
+
},
|
|
522
|
+
"breadcrumbs": {
|
|
523
|
+
"home": "Início",
|
|
524
|
+
"finance": "Financeiro",
|
|
525
|
+
"current": "Conciliação Bancária"
|
|
526
|
+
},
|
|
527
|
+
"filters": { "selectAccount": "Selecione a conta..." },
|
|
528
|
+
"actions": {
|
|
529
|
+
"reconcileSelected": "Conciliar Selecionados",
|
|
530
|
+
"reconcile": "Conciliar"
|
|
531
|
+
},
|
|
532
|
+
"cards": {
|
|
533
|
+
"reconciled": "Conciliado",
|
|
534
|
+
"pending": "Pendentes",
|
|
535
|
+
"transactions": "transações",
|
|
536
|
+
"discrepancies": "Divergências",
|
|
537
|
+
"toResolve": "a resolver",
|
|
538
|
+
"difference": "Diferença",
|
|
539
|
+
"notReconciled": "não conciliado"
|
|
540
|
+
},
|
|
541
|
+
"statement": {
|
|
542
|
+
"title": "Transações do Extrato",
|
|
543
|
+
"description": "Selecione uma transação para conciliar",
|
|
544
|
+
"emptyTitle": "Tudo conciliado!",
|
|
545
|
+
"emptyDescription": "Não há transações pendentes."
|
|
546
|
+
},
|
|
547
|
+
"openTitles": {
|
|
548
|
+
"title": "Títulos em Aberto",
|
|
549
|
+
"description": "Selecione um título para vincular",
|
|
550
|
+
"pay": "Pagar",
|
|
551
|
+
"receive": "Receber",
|
|
552
|
+
"personDue": "{person} | Venc: {dueDate}"
|
|
553
|
+
},
|
|
554
|
+
"ready": {
|
|
555
|
+
"title": "Pronto para Conciliar",
|
|
556
|
+
"description": "Transação e título selecionados. Clique em \"Conciliar\" para vincular."
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"StatementsPage": {
|
|
560
|
+
"common": { "cancel": "Cancelar" },
|
|
561
|
+
"importDialog": {
|
|
562
|
+
"action": "Importar",
|
|
563
|
+
"title": "Importar Extrato",
|
|
564
|
+
"description": "Selecione um arquivo OFX ou CSV para importar.",
|
|
565
|
+
"bankAccount": "Conta Bancária",
|
|
566
|
+
"selectAccount": "Selecione a conta...",
|
|
567
|
+
"file": "Arquivo",
|
|
568
|
+
"acceptedFormats": "Formatos aceitos: OFX, CSV",
|
|
569
|
+
"submit": "Importar"
|
|
570
|
+
},
|
|
571
|
+
"header": {
|
|
572
|
+
"title": "Extratos",
|
|
573
|
+
"description": "Visualize e importe extratos bancários"
|
|
574
|
+
},
|
|
575
|
+
"breadcrumbs": {
|
|
576
|
+
"home": "Início",
|
|
577
|
+
"finance": "Financeiro",
|
|
578
|
+
"current": "Extratos"
|
|
579
|
+
},
|
|
580
|
+
"actions": { "export": "Exportar" },
|
|
581
|
+
"filters": {
|
|
582
|
+
"selectAccount": "Selecione a conta...",
|
|
583
|
+
"searchPlaceholder": "Buscar na descrição..."
|
|
584
|
+
},
|
|
585
|
+
"cards": {
|
|
586
|
+
"inflows": "Entradas",
|
|
587
|
+
"outflows": "Saídas",
|
|
588
|
+
"accountBalance": "Saldo da Conta"
|
|
589
|
+
},
|
|
590
|
+
"table": {
|
|
591
|
+
"title": "Movimentações",
|
|
592
|
+
"foundTransactions": "{count} transações encontradas",
|
|
593
|
+
"headers": {
|
|
594
|
+
"date": "Data",
|
|
595
|
+
"description": "Descrição",
|
|
596
|
+
"value": "Valor",
|
|
597
|
+
"type": "Tipo",
|
|
598
|
+
"reconciliation": "Conciliação"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"types": {
|
|
602
|
+
"inflow": "Entrada",
|
|
603
|
+
"outflow": "Saída"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"TransfersPage": {
|
|
607
|
+
"common": {
|
|
608
|
+
"select": "Selecione...",
|
|
609
|
+
"cancel": "Cancelar"
|
|
610
|
+
},
|
|
611
|
+
"newTransfer": {
|
|
612
|
+
"action": "Nova Transferência",
|
|
613
|
+
"title": "Nova Transferência",
|
|
614
|
+
"description": "Registre uma transferência entre contas.",
|
|
615
|
+
"submit": "Registrar"
|
|
616
|
+
},
|
|
617
|
+
"fields": {
|
|
618
|
+
"sourceAccount": "Conta de Origem",
|
|
619
|
+
"destinationAccount": "Conta de Destino",
|
|
620
|
+
"date": "Data",
|
|
621
|
+
"value": "Valor",
|
|
622
|
+
"description": "Descrição",
|
|
623
|
+
"descriptionPlaceholder": "Motivo da transferência..."
|
|
624
|
+
},
|
|
625
|
+
"header": {
|
|
626
|
+
"title": "Transferências",
|
|
627
|
+
"description": "Gerencie transferências entre contas"
|
|
628
|
+
},
|
|
629
|
+
"breadcrumbs": {
|
|
630
|
+
"home": "Início",
|
|
631
|
+
"finance": "Financeiro",
|
|
632
|
+
"current": "Transferências"
|
|
633
|
+
},
|
|
634
|
+
"cards": {
|
|
635
|
+
"totalTransferred": "Total Transferido",
|
|
636
|
+
"transferCount": "{count} transferências",
|
|
637
|
+
"activeAccounts": "Contas Ativas",
|
|
638
|
+
"available": "disponíveis"
|
|
639
|
+
},
|
|
640
|
+
"table": {
|
|
641
|
+
"title": "Transferências Recentes",
|
|
642
|
+
"description": "Histórico de transferências entre contas",
|
|
643
|
+
"headers": {
|
|
644
|
+
"date": "Data",
|
|
645
|
+
"source": "Origem",
|
|
646
|
+
"destination": "Destino",
|
|
647
|
+
"value": "Valor",
|
|
648
|
+
"description": "Descrição"
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
"CashFlowForecastPage": {
|
|
653
|
+
"header": {
|
|
654
|
+
"title": "Fluxo de Caixa Previsto",
|
|
655
|
+
"description": "Projeção de entradas e saídas"
|
|
656
|
+
},
|
|
657
|
+
"breadcrumbs": {
|
|
658
|
+
"home": "Início",
|
|
659
|
+
"finance": "Financeiro",
|
|
660
|
+
"current": "Fluxo de Caixa Previsto"
|
|
661
|
+
},
|
|
662
|
+
"actions": { "export": "Exportar" },
|
|
663
|
+
"filters": {
|
|
664
|
+
"horizon": "Horizonte",
|
|
665
|
+
"days30": "30 dias",
|
|
666
|
+
"days60": "60 dias",
|
|
667
|
+
"days90": "90 dias",
|
|
668
|
+
"days180": "180 dias",
|
|
669
|
+
"days365": "365 dias",
|
|
670
|
+
"scenario": "Cenário"
|
|
671
|
+
},
|
|
672
|
+
"scenarios": {
|
|
673
|
+
"base": "Base",
|
|
674
|
+
"pessimistic": "Pessimista",
|
|
675
|
+
"optimistic": "Otimista"
|
|
676
|
+
},
|
|
677
|
+
"cards": {
|
|
678
|
+
"currentBalance": "Saldo Atual",
|
|
679
|
+
"expectedInflows": "Entradas Previstas",
|
|
680
|
+
"expectedOutflows": "Saídas Previstas",
|
|
681
|
+
"projectedBalance": "Saldo Projetado"
|
|
682
|
+
},
|
|
683
|
+
"projection": {
|
|
684
|
+
"title": "Projeção de Saldo",
|
|
685
|
+
"description": "Evolução do saldo ao longo do tempo",
|
|
686
|
+
"predictedBalance": "Saldo Previsto",
|
|
687
|
+
"actualBalance": "Saldo Realizado"
|
|
688
|
+
},
|
|
689
|
+
"tabs": {
|
|
690
|
+
"expectedInflows": "Entradas Previstas",
|
|
691
|
+
"expectedOutflows": "Saídas Previstas"
|
|
692
|
+
},
|
|
693
|
+
"table": {
|
|
694
|
+
"headers": {
|
|
695
|
+
"category": "Categoria",
|
|
696
|
+
"dueDate": "Vencimento",
|
|
697
|
+
"value": "Valor"
|
|
698
|
+
},
|
|
699
|
+
"total": "Total"
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
"ReceivablesCalendarPage": {
|
|
703
|
+
"status": {
|
|
704
|
+
"confirmado": "Confirmado",
|
|
705
|
+
"pendente": "Pendente",
|
|
706
|
+
"liquidado": "Liquidado"
|
|
707
|
+
},
|
|
708
|
+
"header": {
|
|
709
|
+
"title": "Agenda de Recebíveis",
|
|
710
|
+
"description": "Previsão de recebimentos por canal"
|
|
711
|
+
},
|
|
712
|
+
"breadcrumbs": {
|
|
713
|
+
"home": "Início",
|
|
714
|
+
"finance": "Financeiro",
|
|
715
|
+
"current": "Agenda de Recebíveis"
|
|
716
|
+
},
|
|
717
|
+
"cards": {
|
|
718
|
+
"totalGross": "Total Bruto",
|
|
719
|
+
"receivablesCount": "{count} recebíveis",
|
|
720
|
+
"fees": "Taxas",
|
|
721
|
+
"percentOfGross": "{percent}% do bruto",
|
|
722
|
+
"totalNet": "Total Líquido",
|
|
723
|
+
"confirmed": "Confirmados",
|
|
724
|
+
"ofTotal": "de {total} total"
|
|
725
|
+
},
|
|
726
|
+
"acquirers": {
|
|
727
|
+
"transactions": "{count} transações",
|
|
728
|
+
"toReceive": "a receber"
|
|
729
|
+
},
|
|
730
|
+
"table": {
|
|
731
|
+
"title": "Detalhamento de Recebíveis",
|
|
732
|
+
"description": "Todos os recebíveis previstos",
|
|
733
|
+
"headers": {
|
|
734
|
+
"channel": "Canal",
|
|
735
|
+
"acquirer": "Adquirente",
|
|
736
|
+
"expectedDate": "Data Prevista",
|
|
737
|
+
"gross": "Bruto",
|
|
738
|
+
"fees": "Taxas",
|
|
739
|
+
"net": "Líquido",
|
|
740
|
+
"status": "Status"
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
"ScenariosPage": {
|
|
745
|
+
"header": {
|
|
746
|
+
"title": "Cenários",
|
|
747
|
+
"description": "Simule diferentes cenários financeiros"
|
|
748
|
+
},
|
|
749
|
+
"breadcrumbs": {
|
|
750
|
+
"home": "Início",
|
|
751
|
+
"finance": "Financeiro",
|
|
752
|
+
"current": "Cenários"
|
|
753
|
+
},
|
|
754
|
+
"cards": {
|
|
755
|
+
"active": "Ativo",
|
|
756
|
+
"delay": "Atraso",
|
|
757
|
+
"defaultRate": "Inadimplência",
|
|
758
|
+
"growth": "Crescimento",
|
|
759
|
+
"days": "{value} dias"
|
|
760
|
+
},
|
|
761
|
+
"assumptions": {
|
|
762
|
+
"title": "Editor de Premissas",
|
|
763
|
+
"description": "Ajuste as premissas do cenário {scenario}",
|
|
764
|
+
"averageDelay": "Atraso Médio de Recebimento",
|
|
765
|
+
"defaultRate": "Taxa de Inadimplência",
|
|
766
|
+
"revenueGrowth": "Crescimento de Receita",
|
|
767
|
+
"restore": "Restaurar",
|
|
768
|
+
"apply": "Aplicar Cenário"
|
|
769
|
+
},
|
|
770
|
+
"impact": {
|
|
771
|
+
"title": "Impacto Projetado",
|
|
772
|
+
"description": "Resultado das premissas aplicadas",
|
|
773
|
+
"projectedBalance30d": "Saldo Projetado (30 dias)",
|
|
774
|
+
"vsCurrent": "{value} vs atual",
|
|
775
|
+
"projectedDefault": "Inadimplência Projetada",
|
|
776
|
+
"cashFlowForecast": "Fluxo de Caixa Previsto",
|
|
777
|
+
"positive": "Positivo",
|
|
778
|
+
"negative": "Negativo",
|
|
779
|
+
"withGrowth": "Com crescimento de {value}%"
|
|
780
|
+
}
|
|
5
781
|
}
|
|
6
782
|
}
|