From 0c0a3ce71afb7ce91470ce05dea3ce320c10ed7e Mon Sep 17 00:00:00 2001 From: Andres Ramos Date: Sat, 6 Apr 2024 07:52:32 -0500 Subject: [PATCH 1/6] Remove Microsoft.Extensions.DependencyInjection.Abstractions from Sdk.Extras --- .../ARSoftware.Contpaqi.Comercial.Sdk.Extras.csproj | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ARSoftware.Contpaqi.Comercial.Sdk.Extras/ARSoftware.Contpaqi.Comercial.Sdk.Extras.csproj b/src/ARSoftware.Contpaqi.Comercial.Sdk.Extras/ARSoftware.Contpaqi.Comercial.Sdk.Extras.csproj index c331caa..6642d79 100644 --- a/src/ARSoftware.Contpaqi.Comercial.Sdk.Extras/ARSoftware.Contpaqi.Comercial.Sdk.Extras.csproj +++ b/src/ARSoftware.Contpaqi.Comercial.Sdk.Extras/ARSoftware.Contpaqi.Comercial.Sdk.Extras.csproj @@ -26,10 +26,6 @@ - - - - From 675aad66e3483307a027702f6ccd7a8217b0b8cc Mon Sep 17 00:00:00 2001 From: Andres Ramos Date: Sat, 6 Apr 2024 07:54:10 -0500 Subject: [PATCH 2/6] Use version 8.0.0 of Microsoft.EntityFrameworkCore.SqlServer --- .../ARSoftware.Contpaqi.Comercial.Sql.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj b/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj index 90d32b9..12f45be 100644 --- a/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj +++ b/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj @@ -28,7 +28,7 @@ - + From 081d5e3f779ada2735b5277f7a8c25626fb55a02 Mon Sep 17 00:00:00 2001 From: Andres Ramos Date: Sat, 6 Apr 2024 07:56:02 -0500 Subject: [PATCH 3/6] Update EntityFramework packages of the migrations startup project --- .../Sql.MigrationsStartupProject.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Sql.MigrationsStartupProject/Sql.MigrationsStartupProject.csproj b/src/Sql.MigrationsStartupProject/Sql.MigrationsStartupProject.csproj index ee09f71..0e9f4ff 100644 --- a/src/Sql.MigrationsStartupProject/Sql.MigrationsStartupProject.csproj +++ b/src/Sql.MigrationsStartupProject/Sql.MigrationsStartupProject.csproj @@ -7,8 +7,8 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive From 74e497926a33af1f768081bdbfb351b0864ce5bc Mon Sep 17 00:00:00 2001 From: Andres Ramos Date: Sat, 6 Apr 2024 08:03:40 -0500 Subject: [PATCH 4/6] Scaffold Empresas database v9.2.1 --- .../Empresa/admParametros.cs | 2 ++ .../Contexts/ContpaqiComercialEmpresaDbContext.cs | 3 +++ 2 files changed, 5 insertions(+) diff --git a/src/ARSoftware.Contpaqi.Comercial.Sql.Models/Empresa/admParametros.cs b/src/ARSoftware.Contpaqi.Comercial.Sql.Models/Empresa/admParametros.cs index a0d201a..30bfa0a 100644 --- a/src/ARSoftware.Contpaqi.Comercial.Sql.Models/Empresa/admParametros.cs +++ b/src/ARSoftware.Contpaqi.Comercial.Sql.Models/Empresa/admParametros.cs @@ -426,4 +426,6 @@ public partial class admParametros public string? CREFRESHTOKENCN { get; set; } public string? CURLWSTORE { get; set; } + + public string CLEYENDON { get; set; } = null!; } diff --git a/src/ARSoftware.Contpaqi.Comercial.Sql/Contexts/ContpaqiComercialEmpresaDbContext.cs b/src/ARSoftware.Contpaqi.Comercial.Sql/Contexts/ContpaqiComercialEmpresaDbContext.cs index 1315e7e..39924fc 100644 --- a/src/ARSoftware.Contpaqi.Comercial.Sql/Contexts/ContpaqiComercialEmpresaDbContext.cs +++ b/src/ARSoftware.Contpaqi.Comercial.Sql/Contexts/ContpaqiComercialEmpresaDbContext.cs @@ -2246,6 +2246,9 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) .HasMaxLength(60) .IsUnicode(false) .HasDefaultValue(""); + entity.Property(e => e.CLEYENDON) + .IsUnicode(false) + .HasDefaultValue(""); entity.Property(e => e.CLEYENDON1) .HasMaxLength(253) .IsUnicode(false) From 0673d3c5a8dead4fd0e936b9ec71d882ff94eee3 Mon Sep 17 00:00:00 2001 From: Andres Ramos Date: Sun, 21 Apr 2024 20:06:53 -0500 Subject: [PATCH 5/6] Update descriptions --- .../ARSoftware.Contpaqi.Comercial.Sql.Models.csproj | 2 +- .../ARSoftware.Contpaqi.Comercial.Sql.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ARSoftware.Contpaqi.Comercial.Sql.Models/ARSoftware.Contpaqi.Comercial.Sql.Models.csproj b/src/ARSoftware.Contpaqi.Comercial.Sql.Models/ARSoftware.Contpaqi.Comercial.Sql.Models.csproj index c4920dc..866498b 100644 --- a/src/ARSoftware.Contpaqi.Comercial.Sql.Models/ARSoftware.Contpaqi.Comercial.Sql.Models.csproj +++ b/src/ARSoftware.Contpaqi.Comercial.Sql.Models/ARSoftware.Contpaqi.Comercial.Sql.Models.csproj @@ -5,7 +5,7 @@ enable 6.1.1 AR Software - Modelo de las bases de datos de CONTPAQi Comercial v9.1.1 Service Pack 1 + Modelo de las bases de datos de CONTPAQi Comercial v9.2.1 Copyright © AR Software 2024 https://github.com/AndresRamos/ARSoftware.Contpaqi.Comercial https://github.com/AndresRamos/ARSoftware.Contpaqi.Comercial diff --git a/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj b/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj index 12f45be..5258f09 100644 --- a/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj +++ b/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj @@ -5,7 +5,7 @@ enable 6.1.1 AR Software - Entity Framework DbContexts para hacer query las bases de datos de CONTPAQi Comercial v9.1.1 Service Pack 1 + Entity Framework DbContexts para hacer query las bases de datos de CONTPAQi Comercial v9.2.1 Copyright © AR Software 2024 https://github.com/AndresRamos/ARSoftware.Contpaqi.Comercial https://github.com/AndresRamos/ARSoftware.Contpaqi.Comercial From 659fdef301a0d232c6e502800a0474a869f3480c Mon Sep 17 00:00:00 2001 From: Andres Ramos Date: Sun, 21 Apr 2024 20:44:43 -0500 Subject: [PATCH 6/6] Update version to 6.2.0 --- .../ARSoftware.Contpaqi.Comercial.Sdk.Abstractions.csproj | 2 +- .../ARSoftware.Contpaqi.Comercial.Sdk.Extras.csproj | 2 +- .../ARSoftware.Contpaqi.Comercial.Sdk.csproj | 2 +- .../ARSoftware.Contpaqi.Comercial.Sql.Models.csproj | 2 +- .../ARSoftware.Contpaqi.Comercial.Sql.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ARSoftware.Contpaqi.Comercial.Sdk.Abstractions/ARSoftware.Contpaqi.Comercial.Sdk.Abstractions.csproj b/src/ARSoftware.Contpaqi.Comercial.Sdk.Abstractions/ARSoftware.Contpaqi.Comercial.Sdk.Abstractions.csproj index 36bac3a..33f8fe0 100644 --- a/src/ARSoftware.Contpaqi.Comercial.Sdk.Abstractions/ARSoftware.Contpaqi.Comercial.Sdk.Abstractions.csproj +++ b/src/ARSoftware.Contpaqi.Comercial.Sdk.Abstractions/ARSoftware.Contpaqi.Comercial.Sdk.Abstractions.csproj @@ -3,7 +3,7 @@ net8.0 enable - 6.1.1 + 6.2.0 AR Software Esta libreria contiene las interfaces usadas por los poryectos de SDK y SQL. Copyright © AR Software 2024 diff --git a/src/ARSoftware.Contpaqi.Comercial.Sdk.Extras/ARSoftware.Contpaqi.Comercial.Sdk.Extras.csproj b/src/ARSoftware.Contpaqi.Comercial.Sdk.Extras/ARSoftware.Contpaqi.Comercial.Sdk.Extras.csproj index 6642d79..70fe021 100644 --- a/src/ARSoftware.Contpaqi.Comercial.Sdk.Extras/ARSoftware.Contpaqi.Comercial.Sdk.Extras.csproj +++ b/src/ARSoftware.Contpaqi.Comercial.Sdk.Extras/ARSoftware.Contpaqi.Comercial.Sdk.Extras.csproj @@ -3,7 +3,7 @@ net8.0-windows enable - 6.1.1 + 6.2.0 AR Software Este proyecto extiende el proyecto ARSoftware.Contpaqi.Comercial.Sdk y dispone de varios repositorios y servicios que implementan las diferentes funcionalidades del SDK. Copyright © AR Software 2024 diff --git a/src/ARSoftware.Contpaqi.Comercial.Sdk/ARSoftware.Contpaqi.Comercial.Sdk.csproj b/src/ARSoftware.Contpaqi.Comercial.Sdk/ARSoftware.Contpaqi.Comercial.Sdk.csproj index d4afc09..f2c80b1 100644 --- a/src/ARSoftware.Contpaqi.Comercial.Sdk/ARSoftware.Contpaqi.Comercial.Sdk.csproj +++ b/src/ARSoftware.Contpaqi.Comercial.Sdk/ARSoftware.Contpaqi.Comercial.Sdk.csproj @@ -3,7 +3,7 @@ net8.0 enable - 6.1.1 + 6.2.0 AR Software Este proyecto tiene declaradas todas las funciones y clases utilizadas por el SDK de CONTPAQi Comercial, CONTPAQi Adminpaq, y CONTPAQi Factura Electronica. Copyright © AR Software 2024 diff --git a/src/ARSoftware.Contpaqi.Comercial.Sql.Models/ARSoftware.Contpaqi.Comercial.Sql.Models.csproj b/src/ARSoftware.Contpaqi.Comercial.Sql.Models/ARSoftware.Contpaqi.Comercial.Sql.Models.csproj index 866498b..a76574a 100644 --- a/src/ARSoftware.Contpaqi.Comercial.Sql.Models/ARSoftware.Contpaqi.Comercial.Sql.Models.csproj +++ b/src/ARSoftware.Contpaqi.Comercial.Sql.Models/ARSoftware.Contpaqi.Comercial.Sql.Models.csproj @@ -3,7 +3,7 @@ net8.0 enable - 6.1.1 + 6.2.0 AR Software Modelo de las bases de datos de CONTPAQi Comercial v9.2.1 Copyright © AR Software 2024 diff --git a/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj b/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj index 5258f09..c72f453 100644 --- a/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj +++ b/src/ARSoftware.Contpaqi.Comercial.Sql/ARSoftware.Contpaqi.Comercial.Sql.csproj @@ -3,7 +3,7 @@ net8.0 enable - 6.1.1 + 6.2.0 AR Software Entity Framework DbContexts para hacer query las bases de datos de CONTPAQi Comercial v9.2.1 Copyright © AR Software 2024