feat(bd): V021 crea dbo.ChargeableCharConfig + SPs + índices (PRC-001)

This commit is contained in:
2026-04-20 12:01:49 -03:00
parent dd4d4a1673
commit 9144c2e89e
8 changed files with 966 additions and 11 deletions

View File

@@ -83,8 +83,9 @@ public class PermisoRepositoryTests : IAsyncLifetime
// + V014 (ADM-009) adds 'administracion:fiscal:gestionar'
// + V016 (CAT-001) adds 'catalogo:rubros:gestionar'
// + V017 (PRD-001) adds 'catalogo:tipos:gestionar'
// + V018 (PRD-002) adds 'catalogo:productos:gestionar' = 27 total
Assert.Equal(27, list.Count);
// + V018 (PRD-002) adds 'catalogo:productos:gestionar'
// + V020 (PRC-001) adds 'tasacion:caracteres_especiales:gestionar' = 28 total
Assert.Equal(28, list.Count);
}
[Fact]

View File

@@ -181,10 +181,11 @@ public class RolPermisoRepositoryTests : IAsyncLifetime
// + 1 from V014 (ADM-009): 'administracion:fiscal:gestionar'
// + 1 from V016 (CAT-001): 'catalogo:rubros:gestionar'
// + 1 from V017 (PRD-001): 'catalogo:tipos:gestionar'
// + 1 from V018 (PRD-002): 'catalogo:productos:gestionar' = 27 total
// + 1 from V018 (PRD-002): 'catalogo:productos:gestionar'
// + 1 from V020 (PRC-001): 'tasacion:caracteres_especiales:gestionar' = 28 total
var permisos = await _repository.GetByRolCodigoAsync("admin");
Assert.Equal(27, permisos.Count);
Assert.Equal(28, permisos.Count);
}
[Fact]