Forward-fill plano contrato in resumo import
This commit is contained in:
parent
c174033583
commit
382aece077
|
|
@ -1714,9 +1714,9 @@ namespace line_gestao_api.Controllers
|
||||||
|
|
||||||
private async Task ImportResumoTabela4(IXLWorksheet ws, DateTime now)
|
private async Task ImportResumoTabela4(IXLWorksheet ws, DateTime now)
|
||||||
{
|
{
|
||||||
const int headerRow = 74;
|
var lastRowUsed = ws.LastRowUsed()?.RowNumber() ?? 1;
|
||||||
const int totalRow = 81;
|
var headerRow = FindHeaderRowForPlanoContratoResumo(ws, 1, lastRowUsed);
|
||||||
var lastRow = Math.Min(totalRow - 1, ws.LastRowUsed()?.RowNumber() ?? totalRow - 1);
|
if (headerRow == 0) return;
|
||||||
|
|
||||||
var map = BuildHeaderMap(ws.Row(headerRow));
|
var map = BuildHeaderMap(ws.Row(headerRow));
|
||||||
var colPlano = GetCol(map, "PLANO CONTRATO");
|
var colPlano = GetCol(map, "PLANO CONTRATO");
|
||||||
|
|
@ -1725,10 +1725,17 @@ namespace line_gestao_api.Controllers
|
||||||
var colFranquiaGb = GetColAny(map, "FRANQUIA GB", "FRAQUIA GB");
|
var colFranquiaGb = GetColAny(map, "FRANQUIA GB", "FRAQUIA GB");
|
||||||
var colTotalLinhas = GetColAny(map, "TOTAL DE LINHAS", "TOTAL LINHAS");
|
var colTotalLinhas = GetColAny(map, "TOTAL DE LINHAS", "TOTAL LINHAS");
|
||||||
var colValorTotal = GetCol(map, "VALOR TOTAL");
|
var colValorTotal = GetCol(map, "VALOR TOTAL");
|
||||||
|
var colCliente = GetCol(map, "CLIENTE");
|
||||||
|
var colQtdLinhas = GetColAny(map, "QTD DE LINHAS", "QTD. DE LINHAS", "QTD LINHAS");
|
||||||
|
|
||||||
var buffer = new List<ResumoPlanoContratoResumo>(200);
|
var buffer = new List<ResumoPlanoContratoResumo>(200);
|
||||||
|
string? lastPlanoContrato = null;
|
||||||
|
var dataStarted = false;
|
||||||
|
var emptyDataStreak = 0;
|
||||||
|
int? totalRowIndex = null;
|
||||||
|
var missingPlanoCount = 0;
|
||||||
|
|
||||||
for (int r = headerRow + 1; r <= lastRow; r++)
|
for (int r = headerRow + 1; r <= lastRowUsed; r++)
|
||||||
{
|
{
|
||||||
var plano = GetCellString(ws, r, colPlano);
|
var plano = GetCellString(ws, r, colPlano);
|
||||||
var gb = GetCellString(ws, r, colGb);
|
var gb = GetCellString(ws, r, colGb);
|
||||||
|
|
@ -1736,20 +1743,68 @@ namespace line_gestao_api.Controllers
|
||||||
var franquia = GetCellString(ws, r, colFranquiaGb);
|
var franquia = GetCellString(ws, r, colFranquiaGb);
|
||||||
var totalLinhas = GetCellString(ws, r, colTotalLinhas);
|
var totalLinhas = GetCellString(ws, r, colTotalLinhas);
|
||||||
var valorTotal = GetCellString(ws, r, colValorTotal);
|
var valorTotal = GetCellString(ws, r, colValorTotal);
|
||||||
|
var cliente = GetCellString(ws, r, colCliente);
|
||||||
|
var qtdLinhas = GetCellString(ws, r, colQtdLinhas);
|
||||||
|
|
||||||
if (string.IsNullOrWhiteSpace(plano)
|
var isPlanoTotal = !string.IsNullOrWhiteSpace(plano)
|
||||||
|
&& NormalizeHeader(plano) == NormalizeHeader("TOTAL");
|
||||||
|
|
||||||
|
if (isPlanoTotal)
|
||||||
|
{
|
||||||
|
totalRowIndex = r;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
var hasAnyValue = !(string.IsNullOrWhiteSpace(plano)
|
||||||
&& string.IsNullOrWhiteSpace(gb)
|
&& string.IsNullOrWhiteSpace(gb)
|
||||||
&& string.IsNullOrWhiteSpace(valorInd)
|
&& string.IsNullOrWhiteSpace(valorInd)
|
||||||
&& string.IsNullOrWhiteSpace(franquia)
|
&& string.IsNullOrWhiteSpace(franquia)
|
||||||
&& string.IsNullOrWhiteSpace(totalLinhas)
|
&& string.IsNullOrWhiteSpace(totalLinhas)
|
||||||
&& string.IsNullOrWhiteSpace(valorTotal))
|
&& string.IsNullOrWhiteSpace(valorTotal)
|
||||||
|
&& string.IsNullOrWhiteSpace(cliente)
|
||||||
|
&& string.IsNullOrWhiteSpace(qtdLinhas));
|
||||||
|
|
||||||
|
if (!hasAnyValue)
|
||||||
{
|
{
|
||||||
|
if (dataStarted)
|
||||||
|
{
|
||||||
|
emptyDataStreak++;
|
||||||
|
if (emptyDataStreak >= 2) break;
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
emptyDataStreak = 0;
|
||||||
|
|
||||||
|
var isDataRow = !string.IsNullOrWhiteSpace(cliente) || TryNullableInt(qtdLinhas).HasValue;
|
||||||
|
|
||||||
|
var planoNormalized = NormalizeHeader(plano);
|
||||||
|
if (!string.IsNullOrWhiteSpace(plano)
|
||||||
|
&& planoNormalized != NormalizeHeader("PLANO CONTRATO")
|
||||||
|
&& planoNormalized != NormalizeHeader("TOTAL"))
|
||||||
|
{
|
||||||
|
lastPlanoContrato = plano.Trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isDataRow && dataStarted)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isDataRow) dataStarted = true;
|
||||||
|
|
||||||
|
var resolvedPlano = isDataRow
|
||||||
|
? (string.IsNullOrWhiteSpace(plano) ? lastPlanoContrato : plano.Trim())
|
||||||
|
: (string.IsNullOrWhiteSpace(plano) ? null : plano.Trim());
|
||||||
|
|
||||||
|
if (isDataRow && string.IsNullOrWhiteSpace(resolvedPlano))
|
||||||
|
{
|
||||||
|
missingPlanoCount++;
|
||||||
|
}
|
||||||
|
|
||||||
buffer.Add(new ResumoPlanoContratoResumo
|
buffer.Add(new ResumoPlanoContratoResumo
|
||||||
{
|
{
|
||||||
PlanoContrato = string.IsNullOrWhiteSpace(plano) ? null : plano.Trim(),
|
PlanoContrato = string.IsNullOrWhiteSpace(resolvedPlano) ? null : resolvedPlano,
|
||||||
Gb = TryDecimal(gb),
|
Gb = TryDecimal(gb),
|
||||||
ValorIndividualComSvas = TryDecimal(valorInd),
|
ValorIndividualComSvas = TryDecimal(valorInd),
|
||||||
FranquiaGb = TryDecimal(franquia),
|
FranquiaGb = TryDecimal(franquia),
|
||||||
|
|
@ -1766,9 +1821,19 @@ namespace line_gestao_api.Controllers
|
||||||
await _db.SaveChangesAsync();
|
await _db.SaveChangesAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (missingPlanoCount > 0)
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException($"Import RESUMO/PLANO CONTRATO: {missingPlanoCount} linhas de dados ficaram sem PLANO CONTRATO.");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (totalRowIndex == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var total = new ResumoPlanoContratoTotal
|
var total = new ResumoPlanoContratoTotal
|
||||||
{
|
{
|
||||||
ValorTotal = TryDecimal(ws.Cell(totalRow, 7).GetString()),
|
ValorTotal = TryDecimal(GetCellString(ws, totalRowIndex.Value, colValorTotal)),
|
||||||
CreatedAt = now,
|
CreatedAt = now,
|
||||||
UpdatedAt = now
|
UpdatedAt = now
|
||||||
};
|
};
|
||||||
|
|
@ -1777,6 +1842,27 @@ namespace line_gestao_api.Controllers
|
||||||
await _db.SaveChangesAsync();
|
await _db.SaveChangesAsync();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static int FindHeaderRowForPlanoContratoResumo(IXLWorksheet ws, int startRow, int lastRow)
|
||||||
|
{
|
||||||
|
for (int r = startRow; r <= lastRow; r++)
|
||||||
|
{
|
||||||
|
var row = ws.Row(r);
|
||||||
|
if (!row.CellsUsed().Any()) continue;
|
||||||
|
|
||||||
|
var map = BuildHeaderMap(row);
|
||||||
|
var hasPlano = GetCol(map, "PLANO CONTRATO") > 0;
|
||||||
|
var hasCliente = GetCol(map, "CLIENTE") > 0;
|
||||||
|
var hasQtd = GetColAny(map, "QTD DE LINHAS", "QTD. DE LINHAS", "QTD LINHAS") > 0;
|
||||||
|
|
||||||
|
if (hasPlano && hasCliente && hasQtd)
|
||||||
|
{
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
private async Task ImportResumoTabela5(IXLWorksheet ws, DateTime now)
|
private async Task ImportResumoTabela5(IXLWorksheet ws, DateTime now)
|
||||||
{
|
{
|
||||||
const int headerRow = 83;
|
const int headerRow = 83;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue