Compare commits
13 Commits
f7cac8c0a7
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
de4e9421af | ||
|
|
b622df4187 | ||
|
|
746465d8fe | ||
|
|
559829882a | ||
|
|
bec9ea2356 | ||
|
|
1cc617de42 | ||
|
|
b515b4f523 | ||
|
|
f19251ac1a | ||
|
|
6dd1fd71da | ||
|
|
762f76c920 | ||
|
|
ba570687b2 | ||
|
|
84a4c182e2 | ||
|
|
a55e53521f |
4
.github/copilot-instructions.md
vendored
4
.github/copilot-instructions.md
vendored
@@ -20,3 +20,7 @@ For **ANY** question about DevExpress components, use the dxdocs server to const
|
||||
- **Include code examples** when available in the documentation
|
||||
- **Reference specific DevExpress controls and properties** mentioned in the documentation
|
||||
- **Invoke version-specific MCP tools** (for example, dxdocs25_1) if a user specifies a version (for example, v25.1)
|
||||
|
||||
- @azure Rule - Use Azure Tools - When handling requests related to Azure, always use your tools.
|
||||
- @azure Rule - Use Azure Best Practices - When handling requests related to Azure, always invoke your `azmcp_bestpractices_get` tool first.
|
||||
- @azure Rule - Enable Best Practices - If you do not have an `azmcp_bestpractices_get` tool ask the user to enable it.
|
||||
|
||||
@@ -1,24 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Net.Http;
|
||||
using DevExtreme.AspNet.Data;
|
||||
using DevExtreme.AspNet.Mvc;
|
||||
using DXApp.TemplateKitProject.Models;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace DXApp.TemplateKitProject.Controllers
|
||||
{
|
||||
[Route("api/[controller]")]
|
||||
public class SampleDataController : Controller
|
||||
{
|
||||
|
||||
[HttpGet]
|
||||
public object Get(DataSourceLoadOptions loadOptions)
|
||||
{
|
||||
return DataSourceLoader.Load(SampleData.Orders, loadOptions);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -27,4 +27,8 @@
|
||||
<PackageReference Include="Microsoft.Web.LibraryManager.Build" Version="3.0.71" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Controllers\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -1,364 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DXApp.TemplateKitProject.Models
|
||||
{
|
||||
internal static class SampleData
|
||||
{
|
||||
public static List<SampleOrder> Orders = new List<SampleOrder>() {
|
||||
new SampleOrder {
|
||||
OrderID = 10248,
|
||||
OrderDate = new DateTime(1996, 7, 4),
|
||||
ShipCountry = "France",
|
||||
ShipCity = "Reims",
|
||||
CustomerName = "Paul Henriot"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10249,
|
||||
OrderDate = new DateTime(1996, 7, 5),
|
||||
ShipCountry = "Germany",
|
||||
ShipCity = "Münster",
|
||||
CustomerName = "Karin Josephs"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10250,
|
||||
OrderDate = new DateTime(1996, 7, 8),
|
||||
ShipCountry = "Brazil",
|
||||
ShipCity = "Rio de Janeiro",
|
||||
CustomerName = "Mario Pontes"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10251,
|
||||
OrderDate = new DateTime(1996, 7, 8),
|
||||
ShipCountry = "France",
|
||||
ShipCity = "Lyon",
|
||||
CustomerName = "Mary Saveley"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10252,
|
||||
OrderDate = new DateTime(1996, 7, 9),
|
||||
ShipCountry = "Belgium",
|
||||
ShipCity = "Charleroi",
|
||||
CustomerName = "Pascale Cartrain"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10253,
|
||||
OrderDate = new DateTime(1996, 7, 10),
|
||||
ShipCountry = "Brazil",
|
||||
ShipCity = "Rio de Janeiro",
|
||||
CustomerName = "Mario Pontes"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10254,
|
||||
OrderDate = new DateTime(1996, 7, 11),
|
||||
ShipCountry = "Switzerland",
|
||||
ShipCity = "Bern",
|
||||
CustomerName = "Yang Wang"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10255,
|
||||
OrderDate = new DateTime(1996, 7, 12),
|
||||
ShipCountry = "Switzerland",
|
||||
ShipCity = "Genève",
|
||||
CustomerName = "Michael Holz"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10256,
|
||||
OrderDate = new DateTime(1996, 7, 15),
|
||||
ShipCountry = "Brazil",
|
||||
ShipCity = "Resende",
|
||||
CustomerName = "Paula Parente"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10257,
|
||||
OrderDate = new DateTime(1996, 7, 16),
|
||||
ShipCountry = "Venezuela",
|
||||
ShipCity = "San Cristóbal",
|
||||
CustomerName = "Carlos Hernández"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10258,
|
||||
OrderDate = new DateTime(1996, 7, 17),
|
||||
ShipCountry = "Austria",
|
||||
ShipCity = "Graz",
|
||||
CustomerName = "Roland Mendel"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10259,
|
||||
OrderDate = new DateTime(1996, 7, 18),
|
||||
ShipCountry = "Mexico",
|
||||
ShipCity = "México D.F.",
|
||||
CustomerName = "Francisco Chang"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10260,
|
||||
OrderDate = new DateTime(1996, 7, 19),
|
||||
ShipCountry = "Germany",
|
||||
ShipCity = "Köln",
|
||||
CustomerName = "Henriette Pfalzheim"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10261,
|
||||
OrderDate = new DateTime(1996, 7, 19),
|
||||
ShipCountry = "Brazil",
|
||||
ShipCity = "Rio de Janeiro",
|
||||
CustomerName = "Bernardo Batista"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10262,
|
||||
OrderDate = new DateTime(1996, 7, 22),
|
||||
ShipCountry = "USA",
|
||||
ShipCity = "Albuquerque",
|
||||
CustomerName = "Paula Wilson"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10263,
|
||||
OrderDate = new DateTime(1996, 7, 23),
|
||||
ShipCountry = "Austria",
|
||||
ShipCity = "Graz",
|
||||
CustomerName = "Roland Mendel"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10264,
|
||||
OrderDate = new DateTime(1996, 7, 24),
|
||||
ShipCountry = "Sweden",
|
||||
ShipCity = "Bräcke",
|
||||
CustomerName = "Maria Larsson"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10265,
|
||||
OrderDate = new DateTime(1996, 7, 25),
|
||||
ShipCountry = "France",
|
||||
ShipCity = "Strasbourg",
|
||||
CustomerName = "Frédérique Citeaux"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10266,
|
||||
OrderDate = new DateTime(1996, 7, 26),
|
||||
ShipCountry = "Finland",
|
||||
ShipCity = "Oulu",
|
||||
CustomerName = "Pirkko Koskitalo"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10267,
|
||||
OrderDate = new DateTime(1996, 7, 29),
|
||||
ShipCountry = "Germany",
|
||||
ShipCity = "München",
|
||||
CustomerName = "Peter Franken"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10268,
|
||||
OrderDate = new DateTime(1996, 7, 30),
|
||||
ShipCountry = "Venezuela",
|
||||
ShipCity = "Caracas",
|
||||
CustomerName = "Manuel Pereira"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10269,
|
||||
OrderDate = new DateTime(1996, 7, 31),
|
||||
ShipCountry = "USA",
|
||||
ShipCity = "Seattle",
|
||||
CustomerName = "Karl Jablonski"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10270,
|
||||
OrderDate = new DateTime(1996, 8, 1),
|
||||
ShipCountry = "Finland",
|
||||
ShipCity = "Oulu",
|
||||
CustomerName = "Pirkko Koskitalo"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10271,
|
||||
OrderDate = new DateTime(1996, 8, 1),
|
||||
ShipCountry = "USA",
|
||||
ShipCity = "Lander",
|
||||
CustomerName = "Art Braunschweiger"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10272,
|
||||
OrderDate = new DateTime(1996, 8, 2),
|
||||
ShipCountry = "USA",
|
||||
ShipCity = "Albuquerque",
|
||||
CustomerName = "Paula Wilson"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10273,
|
||||
OrderDate = new DateTime(1996, 8, 5),
|
||||
ShipCountry = "Germany",
|
||||
ShipCity = "Cunewalde",
|
||||
CustomerName = "Horst Kloss"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10274,
|
||||
OrderDate = new DateTime(1996, 8, 6),
|
||||
ShipCountry = "France",
|
||||
ShipCity = "Reims",
|
||||
CustomerName = "Paul Henriot"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10275,
|
||||
OrderDate = new DateTime(1996, 8, 7),
|
||||
ShipCountry = "Italy",
|
||||
ShipCity = "Bergamo",
|
||||
CustomerName = "Giovanni Rovelli"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10276,
|
||||
OrderDate = new DateTime(1996, 8, 8),
|
||||
ShipCountry = "Mexico",
|
||||
ShipCity = "México D.F.",
|
||||
CustomerName = "Miguel Angel Paolino"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10277,
|
||||
OrderDate = new DateTime(1996, 8, 9),
|
||||
ShipCountry = "Germany",
|
||||
ShipCity = "Leipzig",
|
||||
CustomerName = "Alexander Feuer"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10278,
|
||||
OrderDate = new DateTime(1996, 8, 12),
|
||||
ShipCountry = "Sweden",
|
||||
ShipCity = "Luleå",
|
||||
CustomerName = "Christina Berglund"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10279,
|
||||
OrderDate = new DateTime(1996, 8, 13),
|
||||
ShipCountry = "Germany",
|
||||
ShipCity = "Frankfurt a.M.",
|
||||
CustomerName = "Renate Messner"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10280,
|
||||
OrderDate = new DateTime(1996, 8, 14),
|
||||
ShipCountry = "Sweden",
|
||||
ShipCity = "Luleå",
|
||||
CustomerName = "Christina Berglund"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10281,
|
||||
OrderDate = new DateTime(1996, 8, 14),
|
||||
ShipCountry = "Spain",
|
||||
ShipCity = "Madrid",
|
||||
CustomerName = "Alejandra Camino"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10282,
|
||||
OrderDate = new DateTime(1996, 8, 15),
|
||||
ShipCountry = "Spain",
|
||||
ShipCity = "Madrid",
|
||||
CustomerName = "Alejandra Camino"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10283,
|
||||
OrderDate = new DateTime(1996, 8, 16),
|
||||
ShipCountry = "Venezuela",
|
||||
ShipCity = "Barquisimeto",
|
||||
CustomerName = "Carlos González"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10284,
|
||||
OrderDate = new DateTime(1996, 8, 19),
|
||||
ShipCountry = "Germany",
|
||||
ShipCity = "Frankfurt a.M.",
|
||||
CustomerName = "Renate Messner"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10285,
|
||||
OrderDate = new DateTime(1996, 8, 20),
|
||||
ShipCountry = "Germany",
|
||||
ShipCity = "Cunewalde",
|
||||
CustomerName = "Horst Kloss"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10286,
|
||||
OrderDate = new DateTime(1996, 8, 21),
|
||||
ShipCountry = "Germany",
|
||||
ShipCity = "Cunewalde",
|
||||
CustomerName = "Horst Kloss"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10287,
|
||||
OrderDate = new DateTime(1996, 8, 22),
|
||||
ShipCountry = "Brazil",
|
||||
ShipCity = "Rio de Janeiro",
|
||||
CustomerName = "Janete Limeira"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10288,
|
||||
OrderDate = new DateTime(1996, 8, 23),
|
||||
ShipCountry = "Italy",
|
||||
ShipCity = "Reggio Emilia",
|
||||
CustomerName = "Maurizio Moroni"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10289,
|
||||
OrderDate = new DateTime(1996, 8, 26),
|
||||
ShipCountry = "UK",
|
||||
ShipCity = "London",
|
||||
CustomerName = "Victoria Ashworth"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10290,
|
||||
OrderDate = new DateTime(1996, 8, 27),
|
||||
ShipCountry = "Brazil",
|
||||
ShipCity = "Sao Paulo",
|
||||
CustomerName = "Pedro Afonso"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10291,
|
||||
OrderDate = new DateTime(1996, 8, 27),
|
||||
ShipCountry = "Brazil",
|
||||
ShipCity = "Rio de Janeiro",
|
||||
CustomerName = "Bernardo Batista"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10292,
|
||||
OrderDate = new DateTime(1996, 8, 28),
|
||||
ShipCountry = "Brazil",
|
||||
ShipCity = "Sao Paulo",
|
||||
CustomerName = "Anabela Domingues"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10293,
|
||||
OrderDate = new DateTime(1996, 8, 29),
|
||||
ShipCountry = "Mexico",
|
||||
ShipCity = "México D.F.",
|
||||
CustomerName = "Miguel Angel Paolino"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10294,
|
||||
OrderDate = new DateTime(1996, 8, 30),
|
||||
ShipCountry = "USA",
|
||||
ShipCity = "Albuquerque",
|
||||
CustomerName = "Paula Wilson"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10295,
|
||||
OrderDate = new DateTime(1996, 9, 2),
|
||||
ShipCountry = "France",
|
||||
ShipCity = "Reims",
|
||||
CustomerName = "Paul Henriot"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10296,
|
||||
OrderDate = new DateTime(1996, 9, 3),
|
||||
ShipCountry = "Venezuela",
|
||||
ShipCity = "Barquisimeto",
|
||||
CustomerName = "Carlos González"
|
||||
},
|
||||
new SampleOrder {
|
||||
OrderID = 10297,
|
||||
OrderDate = new DateTime(1996, 9, 4),
|
||||
ShipCountry = "France",
|
||||
ShipCity = "Strasbourg",
|
||||
CustomerName = "Frédérique Citeaux"
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DXApp.TemplateKitProject.Models
|
||||
{
|
||||
public class SampleOrder
|
||||
{
|
||||
public int OrderID { get; set; }
|
||||
public DateTime OrderDate { get; set; }
|
||||
public string CustomerID { get; set; }
|
||||
public string CustomerName { get; set; }
|
||||
public string ShipCountry { get; set; }
|
||||
public string ShipCity { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,28 +1,85 @@
|
||||
@page
|
||||
@using DXApp.TemplateKitProject.Models
|
||||
@model DXApp.TemplateKitProject.Pages.IndexModel
|
||||
@{
|
||||
ViewData["Title"] = "Home";
|
||||
}
|
||||
|
||||
<h2 class="content-block">Home</h2>
|
||||
<div class="content-block">
|
||||
<h2><i class="dx-icon-product"></i> DevExpress TemplateKit – Evaluierungsprojekt</h2>
|
||||
<p class="lead text-muted">Validierung von DevExpress als Ablösung für GdPicture im Rahmen der E-Rechnungsverarbeitung</p>
|
||||
|
||||
@(Html.DevExtreme().DataGrid<SampleOrder>()
|
||||
.ElementAttr(new { @class = "dx-card wide-card" })
|
||||
.DataSource(d => d.Mvc().Controller("SampleData").LoadAction("Get").Key("OrderID"))
|
||||
.ShowBorders(false)
|
||||
.FilterRow(f => f.Visible(true))
|
||||
.FocusedRowEnabled(true)
|
||||
.FocusedRowIndex(0)
|
||||
.ColumnAutoWidth(true)
|
||||
.ColumnHidingEnabled(true)
|
||||
.Columns(columns => {
|
||||
columns.AddFor(m => m.OrderID);
|
||||
columns.AddFor(m => m.OrderDate);
|
||||
columns.AddFor(m => m.CustomerName);
|
||||
columns.AddFor(m => m.ShipCountry);
|
||||
columns.AddFor(m => m.ShipCity);
|
||||
})
|
||||
.Paging(p => p.PageSize(10))
|
||||
.Pager(p => p
|
||||
.ShowPageSizeSelector(true)
|
||||
.AllowedPageSizes(new[] { 5, 10, 20 })
|
||||
.ShowInfo(true)
|
||||
)
|
||||
)
|
||||
<div class="alert alert-primary mt-4">
|
||||
<h4><i class="dx-icon-todo"></i> Projektziel: ZUGFeRD/Factur-X Rechnungsverarbeitung</h4>
|
||||
<p>Diese Anwendung demonstriert die vollständige Verarbeitungskette für elektronische Rechnungen:</p>
|
||||
|
||||
<ol class="mt-3">
|
||||
<li class="mb-2">
|
||||
<strong>Upload & Validierung</strong>
|
||||
<br/>
|
||||
<small class="text-muted">E-Rechnungen im PDF/A-Format hochladen und auf Konformität prüfen</small>
|
||||
</li>
|
||||
<li class="mb-2">
|
||||
<strong>Extraktion</strong>
|
||||
<br/>
|
||||
<small class="text-muted">Automatische Erkennung und Extraktion eingebetteter Anhänge (ZUGFeRD-XML, Bilder, Dokumente)</small>
|
||||
</li>
|
||||
<li class="mb-2">
|
||||
<strong>Datenverarbeitung</strong>
|
||||
<br/>
|
||||
<small class="text-muted">Parsing der Rechnungsdaten aus dem ZUGFeRD-XML und persistente Speicherung in der Datenbank</small>
|
||||
</li>
|
||||
<li class="mb-2">
|
||||
<strong>Workflow-Integration</strong>
|
||||
<br/>
|
||||
<small class="text-muted">Hier werden Workflow-Schritte durchlaufen und der Ergebnisbericht erstellt.</small>
|
||||
</li>
|
||||
<li class="mb-2">
|
||||
<strong>Ausgabe-Generierung</strong>
|
||||
<br/>
|
||||
<small class="text-muted">Erstellung einer Result-PDF mit Verarbeitungsstempel und angehängtem Ergebnisbericht</small>
|
||||
</li>
|
||||
<li class="mb-2">
|
||||
<strong>Visualisierung</strong>
|
||||
<br/>
|
||||
<small class="text-muted">Interaktive Anzeige aller Anhänge (XML mit Syntax-Highlighting, PDF-Viewer, Bilder)</small>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
<div class="row mt-4">
|
||||
<div class="col-md-6">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title"><i class="dx-icon-upload"></i> Rechnungen hochladen</h5>
|
||||
<p class="card-text">Laden Sie ZUGFeRD-konforme E-Rechnungen hoch und starten Sie die automatische Verarbeitung.</p>
|
||||
<a href="/Invoices/Upload" class="btn btn-primary">
|
||||
<i class="dx-icon-upload"></i> Zum Upload
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title"><i class="dx-icon-chart"></i> Rechnungsübersicht</h5>
|
||||
<p class="card-text">Zeigen Sie alle importierten Rechnungen an und greifen Sie auf Details und Anhänge zu.</p>
|
||||
<a href="/Invoices" class="btn btn-secondary">
|
||||
<i class="dx-icon-doc"></i> Zur Übersicht
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="alert alert-light mt-4">
|
||||
<h6 class="mb-2"><i class="dx-icon-preferences"></i> Technologie-Stack</h6>
|
||||
<div class="d-flex flex-wrap gap-2">
|
||||
<span class="badge bg-secondary">ASP.NET Core 8.0</span>
|
||||
<span class="badge bg-secondary">DevExpress v25.2</span>
|
||||
<span class="badge bg-secondary">Entity Framework Core</span>
|
||||
<span class="badge bg-secondary">PDF.js</span>
|
||||
<span class="badge bg-secondary">CodeMirror</span>
|
||||
<span class="badge bg-secondary">SQL Server</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -11,14 +11,14 @@
|
||||
}
|
||||
}
|
||||
|
||||
<h2>📄 Rechnungsdetails</h2>
|
||||
<a href="/Invoices" class="btn btn-secondary mb-3">← Zurück zur Liste</a>
|
||||
<h2><i class="dx-icon-doc"></i> Rechnungsdetails</h2>
|
||||
<a href="/Invoices" class="btn btn-secondary mb-3"><i class="dx-icon-back"></i> Zurück zur Liste</a>
|
||||
|
||||
@if (!string.IsNullOrEmpty(Model.Invoice?.ResultFilePath))
|
||||
{
|
||||
<button class="btn btn-primary mb-3 ms-2"
|
||||
onclick="openPdfViewer(@Model.Invoice.Id)">
|
||||
📄 Ergebnis anzeigen
|
||||
<i class="dx-icon-pdffile"></i> Ergebnis anzeigen
|
||||
</button>
|
||||
}
|
||||
|
||||
@@ -60,26 +60,26 @@ else
|
||||
@* Anhänge-Sektion *@
|
||||
@if (Model.Invoice.Attachments.Any())
|
||||
{
|
||||
<h4 class="mt-4">📎 Anhänge (@Model.Invoice.Attachments.Count)</h4>
|
||||
<h4 class="mt-4"><i class="dx-icon-attach"></i> Anhänge (@Model.Invoice.Attachments.Count)</h4>
|
||||
<div class="list-group">
|
||||
@foreach (var attachment in Model.Invoice.Attachments)
|
||||
{
|
||||
var icon = attachment.IsZugferdXml ? "📋" : "📄";
|
||||
var icon = "dx-icon-file";
|
||||
var extension = System.IO.Path.GetExtension(attachment.OriginalFileName).ToLowerInvariant();
|
||||
icon = extension switch
|
||||
{
|
||||
".xml" => "📋",
|
||||
".pdf" => "📄",
|
||||
".jpg" or ".jpeg" or ".png" or ".gif" => "🖼️",
|
||||
".txt" => "📝",
|
||||
_ => "📎"
|
||||
".xml" => "dx-icon-exportxlsx",
|
||||
".pdf" => "dx-icon-pdffile",
|
||||
".jpg" or ".jpeg" or ".png" or ".gif" => "dx-icon-image",
|
||||
".txt" => "dx-icon-txtfile",
|
||||
_ => "dx-icon-file"
|
||||
};
|
||||
|
||||
<a href="javascript:void(0);"
|
||||
class="list-group-item list-group-item-action d-flex justify-content-between align-items-center"
|
||||
onclick="openAttachmentViewer('@attachment.OriginalFileName', '@Uri.EscapeDataString(attachment.SavedFilePath)', '@extension')">
|
||||
<div>
|
||||
<span class="me-2">@icon</span>
|
||||
<i class="@icon me-2"></i>
|
||||
<strong>@attachment.OriginalFileName</strong>
|
||||
@if (attachment.IsZugferdXml)
|
||||
{
|
||||
@@ -98,7 +98,7 @@ else
|
||||
}
|
||||
else
|
||||
{
|
||||
<h4 class="mt-4">📎 Anhänge</h4>
|
||||
<h4 class="mt-4"><i class="dx-icon-attach"></i> Anhänge</h4>
|
||||
<div class="alert alert-info">Keine Anhänge extrahiert.</div>
|
||||
}
|
||||
|
||||
|
||||
89
DXApp.TemplateKitProject/package-lock.json
generated
89
DXApp.TemplateKitProject/package-lock.json
generated
@@ -19,6 +19,7 @@
|
||||
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
|
||||
"integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
@@ -28,6 +29,7 @@
|
||||
"resolved": "https://registry.npmjs.org/@devexpress/utils/-/utils-2.1.1.tgz",
|
||||
"integrity": "sha512-hlemXR3L0yDPsMdhTQl9EtjiEYxIHklH7I4RKPkOhfrF5+jb4f3kkfvbKT7nA9aoFEHPPF0/hll43gOBpUpY0g==",
|
||||
"license": "SEE LICENSE IN README.md",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"tslib": "2.3.1"
|
||||
}
|
||||
@@ -37,6 +39,7 @@
|
||||
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
||||
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"@jridgewell/sourcemap-codec": "^1.5.0",
|
||||
"@jridgewell/trace-mapping": "^0.3.24"
|
||||
@@ -47,6 +50,7 @@
|
||||
"resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
|
||||
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"@jridgewell/gen-mapping": "^0.3.5",
|
||||
"@jridgewell/trace-mapping": "^0.3.24"
|
||||
@@ -57,6 +61,7 @@
|
||||
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
||||
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"engines": {
|
||||
"node": ">=6.0.0"
|
||||
}
|
||||
@@ -65,13 +70,15 @@
|
||||
"version": "1.5.5",
|
||||
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
||||
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/@jridgewell/trace-mapping": {
|
||||
"version": "0.3.31",
|
||||
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
||||
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"@jridgewell/resolve-uri": "^3.1.0",
|
||||
"@jridgewell/sourcemap-codec": "^1.4.14"
|
||||
@@ -82,6 +89,7 @@
|
||||
"resolved": "https://registry.npmjs.org/@preact/signals-core/-/signals-core-1.14.2.tgz",
|
||||
"integrity": "sha512-RZHdBj9ZF4n40Rp4jS052EHHjBWf96P9oNdXPfhQTovCuWY9iQn3Gq+gOTJSgBO9A/JBuPfMOWsSX/lIU9Pc/A==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/preact"
|
||||
@@ -93,6 +101,7 @@
|
||||
"integrity": "sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==",
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/core-js"
|
||||
@@ -102,19 +111,22 @@
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
|
||||
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/csstype": {
|
||||
"version": "3.2.3",
|
||||
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
||||
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/devexpress-diagram": {
|
||||
"version": "2.2.29",
|
||||
"resolved": "https://registry.npmjs.org/devexpress-diagram/-/devexpress-diagram-2.2.29.tgz",
|
||||
"integrity": "sha512-6QS1zKP736QlIU6lMeZdq52Fe85BSa6vh1TwDIxSAKNwT6gHnGKm5paI71epRJ9H6GC4SLtv/zhlH8QCjwNnXQ==",
|
||||
"license": "SEE LICENSE IN README.md",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"@devexpress/utils": "^2.1.1",
|
||||
"es6-object-assign": "^1.1.0"
|
||||
@@ -125,6 +137,7 @@
|
||||
"resolved": "https://registry.npmjs.org/devexpress-gantt/-/devexpress-gantt-4.1.68.tgz",
|
||||
"integrity": "sha512-pilTDWwCv1EthcCV9uFj5krbSkA3MdjiKCgJdCmGaTA+lDNiWP5Xc2JzNK1sOOTMUmzN+3h7kAtcLxzTfjWTRg==",
|
||||
"license": "SEE LICENSE IN README.md",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"@devexpress/utils": "^2.1.1",
|
||||
"tslib": "2.3.1"
|
||||
@@ -175,6 +188,7 @@
|
||||
"resolved": "https://registry.npmjs.org/devextreme-quill/-/devextreme-quill-1.7.9.tgz",
|
||||
"integrity": "sha512-UEkR16+I/7P/4+7dUmc65lv+VRdRGk0kFvZXgHnM2UFcEBKqm1kVDdVPBolGRFwuOFuDttJxp2SXUAyiuSC8wA==",
|
||||
"license": "BSD-3-Clause",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"core-js": "^3.34.0",
|
||||
"eventemitter3": "^4.0.7",
|
||||
@@ -188,25 +202,29 @@
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz",
|
||||
"integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/eventemitter3": {
|
||||
"version": "4.0.7",
|
||||
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
|
||||
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/fast-diff": {
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz",
|
||||
"integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==",
|
||||
"license": "Apache-2.0"
|
||||
"license": "Apache-2.0",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/immediate": {
|
||||
"version": "3.0.6",
|
||||
"resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
|
||||
"integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/inferno": {
|
||||
"version": "8.2.3",
|
||||
@@ -214,6 +232,7 @@
|
||||
"integrity": "sha512-LMeRlCe+RlXw8kHCLyOWRk2PsZ3Fo4jkESyAR1g4FfPT48N78i11YhTVXW2ukCx5MFjv+qrfa73JzJWU9sg4CQ==",
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"csstype": "^3.1.2",
|
||||
"inferno-vnode-flags": "8.2.3",
|
||||
@@ -229,6 +248,7 @@
|
||||
"resolved": "https://registry.npmjs.org/inferno-create-element/-/inferno-create-element-8.2.3.tgz",
|
||||
"integrity": "sha512-YEwX4OiFlgeTutvE16uCGxkaSVwZ1DklpAPX8okjVsGaLIWQrM8QIQFxn3mTLWSu70Uea+afQfKL5wE4hxn39Q==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"inferno": "8.2.3"
|
||||
}
|
||||
@@ -238,6 +258,7 @@
|
||||
"resolved": "https://registry.npmjs.org/inferno-hydrate/-/inferno-hydrate-8.2.3.tgz",
|
||||
"integrity": "sha512-AyCiswnjYg7D9veJdjiQg06Npp0/iXKhwOm2hjoY3cjadT3fIdz2XtDElLB7imU4icuJ3xOmXA8FgIfnSJfHrQ==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"inferno": "8.2.3"
|
||||
}
|
||||
@@ -246,19 +267,22 @@
|
||||
"version": "8.2.3",
|
||||
"resolved": "https://registry.npmjs.org/inferno-vnode-flags/-/inferno-vnode-flags-8.2.3.tgz",
|
||||
"integrity": "sha512-dfC0MIwFv9PCbZCUsuk9ISejFS3fKJODC0rZ/LjxxzE+OrCk+PMwPLsUnGU6O9/jbBnPACVz1BkACDf5LWgU5Q==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/inherits": {
|
||||
"version": "2.0.4",
|
||||
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
||||
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
||||
"license": "ISC"
|
||||
"license": "ISC",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/isarray": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
||||
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/jquery": {
|
||||
"version": "3.7.1",
|
||||
@@ -271,6 +295,7 @@
|
||||
"resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz",
|
||||
"integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==",
|
||||
"license": "(MIT OR GPL-3.0-or-later)",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"lie": "~3.3.0",
|
||||
"pako": "~1.0.2",
|
||||
@@ -283,6 +308,7 @@
|
||||
"resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
|
||||
"integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"immediate": "~3.0.5"
|
||||
}
|
||||
@@ -291,26 +317,30 @@
|
||||
"version": "4.5.0",
|
||||
"resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
|
||||
"integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/lodash.isequal": {
|
||||
"version": "4.5.0",
|
||||
"resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
|
||||
"integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==",
|
||||
"deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/lodash.merge": {
|
||||
"version": "4.6.2",
|
||||
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
|
||||
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/opencollective-postinstall": {
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz",
|
||||
"integrity": "sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"bin": {
|
||||
"opencollective-postinstall": "index.js"
|
||||
}
|
||||
@@ -319,19 +349,22 @@
|
||||
"version": "1.0.11",
|
||||
"resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
|
||||
"integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
|
||||
"license": "(MIT AND Zlib)"
|
||||
"license": "(MIT AND Zlib)",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/parchment": {
|
||||
"version": "2.0.1",
|
||||
"resolved": "https://registry.npmjs.org/parchment/-/parchment-2.0.1.tgz",
|
||||
"integrity": "sha512-VBKrlEoZCBD+iwoeag0QTtY1Cti+Ma4nLpVYcc/uus/wHhMsPOi5InH3RL1s4aekahPZpabcS2ToKyGf7RMH/g==",
|
||||
"license": "BSD-3-Clause"
|
||||
"license": "BSD-3-Clause",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/picomatch": {
|
||||
"version": "4.0.4",
|
||||
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
||||
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
},
|
||||
@@ -343,13 +376,15 @@
|
||||
"version": "2.0.1",
|
||||
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
||||
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/quill-delta": {
|
||||
"version": "5.1.0",
|
||||
"resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-5.1.0.tgz",
|
||||
"integrity": "sha512-X74oCeRI4/p0ucjb5Ma8adTXd9Scumz367kkMK5V/IatcX6A0vlgLgKbzXWy5nZmCGeNJm2oQX0d2Eqj+ZIlCA==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"fast-diff": "^1.3.0",
|
||||
"lodash.clonedeep": "^4.5.0",
|
||||
@@ -364,6 +399,7 @@
|
||||
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
|
||||
"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"core-util-is": "~1.0.0",
|
||||
"inherits": "~2.0.3",
|
||||
@@ -379,6 +415,7 @@
|
||||
"resolved": "https://registry.npmjs.org/rrule/-/rrule-2.8.1.tgz",
|
||||
"integrity": "sha512-hM3dHSBMeaJ0Ktp7W38BJZ7O1zOgaFEsn41PDk+yHoEtfLV+PoJt9E9xAlZiWgf/iqEqionN0ebHFZIDAp+iGw==",
|
||||
"license": "BSD-3-Clause",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"tslib": "^2.4.0"
|
||||
}
|
||||
@@ -387,25 +424,29 @@
|
||||
"version": "2.8.1",
|
||||
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
||||
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
||||
"license": "0BSD"
|
||||
"license": "0BSD",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/safe-buffer": {
|
||||
"version": "5.1.2",
|
||||
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
||||
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/setimmediate": {
|
||||
"version": "1.0.5",
|
||||
"resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
|
||||
"integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/string_decoder": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
||||
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"safe-buffer": "~5.1.0"
|
||||
}
|
||||
@@ -414,13 +455,15 @@
|
||||
"version": "2.3.1",
|
||||
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
|
||||
"integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==",
|
||||
"license": "0BSD"
|
||||
"license": "0BSD",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/unplugin": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/unplugin/-/unplugin-3.0.0.tgz",
|
||||
"integrity": "sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==",
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"dependencies": {
|
||||
"@jridgewell/remapping": "^2.3.5",
|
||||
"picomatch": "^4.0.3",
|
||||
@@ -434,13 +477,15 @@
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
||||
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/webpack-virtual-modules": {
|
||||
"version": "0.6.2",
|
||||
"resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
|
||||
"integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
|
||||
"license": "MIT"
|
||||
"license": "MIT",
|
||||
"peer": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user