Introduced the `ResultFilePath` property in the `ZugferdInvoice` model to store the path of generated result PDFs. Added a new service, `PdfResultPackageService`, to create result PDFs by converting the original PDF to PDF/A-3b format and attaching a report file. Updated `Upload.cshtml` and `Upload.cshtml.cs` to handle and display the `ResultFilePath`. Created a migration to add the `ResultFilePath` column to the database. Updated `Program.cs` to register the new service and added configuration sections in `appsettings.json` for input and output directories. Enhanced error handling and logging for better traceability.
80 lines
2.7 KiB
C#
80 lines
2.7 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using DXApp.TemplateKitProject.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
#nullable disable
|
|
|
|
namespace DXApp.TemplateKitProject.Migrations
|
|
{
|
|
[DbContext(typeof(AppDbContext))]
|
|
partial class AppDbContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "8.0.8")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
|
|
|
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("DXApp.TemplateKitProject.Models.ZugferdInvoice", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<string>("BuyerName")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("CurrencyCode")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Iban")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<DateTime>("ImportedAt")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<DateTime>("InvoiceDate")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("InvoiceNumber")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("RawXml")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("ResultFilePath")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("SellerName")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("SellerTaxId")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("SourceType")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<decimal>("TaxAmount")
|
|
.HasColumnType("decimal(18,2)");
|
|
|
|
b.Property<decimal>("TotalAmount")
|
|
.HasColumnType("decimal(18,2)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("ZugferdInvoices");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|