Rename visible RFM labels to RFV
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m26s

This commit is contained in:
Cauê Faleiros
2026-06-15 16:44:25 -03:00
parent 9a58b2a271
commit f811d3c0ab
3 changed files with 16 additions and 16 deletions

View File

@@ -174,7 +174,7 @@ const Clients = () => {
<option value="spent_asc">Menor Gasto</option>
<option value="ticket_desc">Maior Ticket Médio</option>
<option value="ticket_asc">Menor Ticket Médio</option>
<option value="rfm_priority">Prioridade RFM</option>
<option value="rfm_priority">Prioridade RFV</option>
<option value="items_desc">Mais Produtos</option>
<option value="items_asc">Menos Produtos</option>
</select>
@@ -200,7 +200,7 @@ const Clients = () => {
'Nome do Cliente': client.name,
'Telefone/WhatsApp': client.phone || 'N/A',
'Tipo de Cliente': client.clientType,
'RFM': client.rfmScore,
'RFV': client.rfmScore,
'Total Gasto (R$)': client.totalSpent.toFixed(2).replace('.', ','),
'Ticket Médio (R$)': client.averageTicket.toFixed(2).replace('.', ','),
'Produtos Comprados': client.totalItems,
@@ -223,7 +223,7 @@ const Clients = () => {
<div>
<h2 className="text-sm font-bold text-zinc-900 dark:text-dark-text">Tipos de Clientes</h2>
<p className="text-xs font-semibold text-zinc-500 dark:text-dark-muted">
Classificação RFM sincronizada com a página RFM quando disponível.
Classificação RFV sincronizada com a página RFV quando disponível.
</p>
</div>
</div>
@@ -255,7 +255,7 @@ const Clients = () => {
<th className="px-6 py-4 font-bold uppercase tracking-wider text-[10px]">Posição</th>
<th className="px-6 py-4 font-bold uppercase tracking-wider text-[10px]">Nome do Cliente</th>
<th className="px-6 py-4 font-bold uppercase tracking-wider text-[10px]">Tipo</th>
<th className="px-6 py-4 font-bold uppercase tracking-wider text-[10px]">RFM</th>
<th className="px-6 py-4 font-bold uppercase tracking-wider text-[10px]">RFV</th>
<th className="px-6 py-4 font-bold uppercase tracking-wider text-[10px]">Total Gasto</th>
<th className="px-6 py-4 font-bold uppercase tracking-wider text-[10px]">Ticket Médio</th>
<th className="px-6 py-4 font-bold uppercase tracking-wider text-[10px]">Produtos Comprados</th>