From f787582604415b84d9c855e44756e9a5e7ce8fb0 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 2 Oct 2025 09:19:41 +0200 Subject: [PATCH 1/3] AI, grid --- .../Components/_DocumentsGridPartial.cshtml | 25 ++ .../FruitBankPluginAdminController.cs | 5 + .../Admin/Controllers/ShippingController.cs | 141 +++++++-- .../Areas/Admin/Models/ConfigureModel.cs | 9 + .../Areas/Admin/Models/EditShippingModel.cs | 22 +- .../Admin/Models/ShippingDocumentListModel.cs | 18 ++ .../Admin/Views/Configure/Configure.cshtml | 20 ++ .../Areas/Admin/Views/Shipping/Edit.cshtml | 175 ++++++----- .../Areas/Admin/Views/Shipping/List.cshtml | 138 ++++++++- Nop.Plugin.Misc.AIPlugin/FruitBankSettings.cs | 15 + .../Helpers/TextHelper.cs | 271 ++++++++++++++++++ .../Infrastructure/PluginNopStartup.cs | 1 + .../Infrastructure/RouteProvider.cs | 5 + .../Nop.Plugin.Misc.FruitBankPlugin.csproj | 3 + .../Services/AICalculationService.cs | 15 + .../Services/OpenAIApiService.cs | 4 +- 16 files changed, 750 insertions(+), 117 deletions(-) create mode 100644 Nop.Plugin.Misc.AIPlugin/Areas/Admin/Components/_DocumentsGridPartial.cshtml create mode 100644 Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/ShippingDocumentListModel.cs create mode 100644 Nop.Plugin.Misc.AIPlugin/Helpers/TextHelper.cs diff --git a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Components/_DocumentsGridPartial.cshtml b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Components/_DocumentsGridPartial.cshtml new file mode 100644 index 0000000..400c358 --- /dev/null +++ b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Components/_DocumentsGridPartial.cshtml @@ -0,0 +1,25 @@ +@model Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Models.ShippingDocumentListModel +@using Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Models +@using FruitBank.Common.Entities; +@using DevExtreme.AspNet.Mvc +

Id: @Model.ShippingId

+ +@(Html.DevExtreme().DataGrid() + .ID("documentsGrid") + .DataSource(Model.ShippingDocumentList) + .KeyExpr("Id") + .ShowBorders(true) + .Editing(editing => { + editing.Mode(GridEditMode.Row); + editing.AllowUpdating(true); + editing.AllowAdding(false); + editing.AllowDeleting(true); + }) + .Columns(c => { + c.AddFor(m => m.DocumentDate).Caption("Date").DataType(GridDataType.Date); + c.AddFor(m => m.SenderName).Caption("Sender"); + c.AddFor(m => m.InvoiceNumber).Caption("Invoice #"); + c.AddFor(m => m.TotalAmount).Caption("Amount").DataType(GridDataType.Number); + c.AddFor(m => m.ItemCount).Caption("ItemCount").DataType(GridDataType.Number); + }) +) \ No newline at end of file diff --git a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/FruitBankPluginAdminController.cs b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/FruitBankPluginAdminController.cs index a970e13..8853f57 100644 --- a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/FruitBankPluginAdminController.cs +++ b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/FruitBankPluginAdminController.cs @@ -29,6 +29,8 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Controllers { ApiKey = _settings.ApiKey, ModelName = _settings.ModelName, + OpenAIApiKey = _settings.OpenAIApiKey, + OpenAIModelName = _settings.OpenAIModelName, IsEnabled = _settings.IsEnabled, ApiBaseUrl = _settings.ApiBaseUrl, MaxTokens = _settings.MaxTokens, @@ -49,8 +51,11 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Controllers // Map model properties to settings _settings.ApiKey = model.ApiKey ?? string.Empty; _settings.ModelName = model.ModelName ?? string.Empty; + _settings.OpenAIApiKey = model.OpenAIApiKey ?? string.Empty; + _settings.OpenAIModelName = model.OpenAIModelName ?? string.Empty; _settings.IsEnabled = model.IsEnabled; _settings.ApiBaseUrl = model.ApiBaseUrl ?? string.Empty; + _settings.OpenAIApiBaseUrl = model.OpenAIApiBaseUrl ?? string.Empty; _settings.MaxTokens = model.MaxTokens; _settings.Temperature = model.Temperature; _settings.RequestTimeoutSeconds = model.RequestTimeoutSeconds; diff --git a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ShippingController.cs b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ShippingController.cs index e464330..6a367a5 100644 --- a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ShippingController.cs +++ b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ShippingController.cs @@ -3,6 +3,8 @@ using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Models; using Nop.Plugin.Misc.FruitBankPlugin.Domains.DataLayer; +using Nop.Plugin.Misc.FruitBankPlugin.Helpers; +using Nop.Plugin.Misc.FruitBankPlugin.Services; using Nop.Services.Messages; using Nop.Services.Security; using Nop.Web.Areas.Admin.Controllers; @@ -11,6 +13,7 @@ using Nop.Web.Framework; using Nop.Web.Framework.Models; using Nop.Web.Framework.Models.Extensions; using Nop.Web.Framework.Mvc.Filters; +using System.Text; namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Controllers { @@ -24,12 +27,10 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Controllers protected readonly ShippingDbTable _shippingDbTable; protected readonly ShippingDocumentDbTable _shippingDocumentDbTable; protected readonly FruitBankDbContext _dbContext; - //private readonly IFruitBankShippingModelFactory _shippingModelFactory; - // TODO: Add your shipment and document services here - // private readonly IShipmentService _shipmentService; - // private readonly IShipmentDocumentService _documentService; + protected readonly AICalculationService _aiCalculationService; - public ShippingController(IPermissionService permissionService, INotificationService notificationService, ShippingItemDbTable shippingItemDbTable, ShippingDbTable shippingDbTable, ShippingDocumentDbTable shippingDocumentDbTable, FruitBankDbContext dbContext) + + public ShippingController(IPermissionService permissionService, INotificationService notificationService, ShippingItemDbTable shippingItemDbTable, ShippingDbTable shippingDbTable, ShippingDocumentDbTable shippingDocumentDbTable, FruitBankDbContext dbContext, AICalculationService aICalculationService) { _permissionService = permissionService; _notificationService = notificationService; @@ -38,6 +39,7 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Controllers _shippingDocumentDbTable = shippingDocumentDbTable; _dbContext = dbContext; //_shippingModelFactory = shippingModelFactory; + _aiCalculationService = aICalculationService; } [HttpGet] @@ -246,26 +248,28 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Controllers } [HttpPost] - public async Task UploadFile(IFormFile file, int shipmentId) + [RequestSizeLimit(10485760)] // 10MB + [RequestFormLimits(MultipartBodyLengthLimit = 10485760)] + public async Task UploadFile(IFormFile file, int shippingId) { try { if (!await _permissionService.AuthorizeAsync(StandardPermission.Security.ACCESS_ADMIN_PANEL)) - return Json(new FileUploadResult { Success = false, ErrorMessage = "Access denied" }); + return Json(new { success = false, errorMessage = "Access denied" }); if (file == null || file.Length == 0) - return Json(new FileUploadResult { Success = false, ErrorMessage = "No file selected" }); + return Json(new { success = false, errorMessage = "No file selected" }); // Validate file type (PDF only) if (!file.ContentType.Equals("application/pdf", StringComparison.OrdinalIgnoreCase)) - return Json(new FileUploadResult { Success = false, ErrorMessage = "Only PDF files are allowed" }); + return Json(new { success = false, errorMessage = "Only PDF files are allowed" }); - // Validate file size (e.g., max 10MB) + // Validate file size (max 10MB) if (file.Length > 10 * 1024 * 1024) - return Json(new FileUploadResult { Success = false, ErrorMessage = "File size must be less than 10MB" }); + return Json(new { success = false, errorMessage = "File size must be less than 10MB" }); // Create upload directory if it doesn't exist - var uploadsPath = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "uploads", "shipments"); + var uploadsPath = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "uploads", "shippingDocuments"); Directory.CreateDirectory(uploadsPath); // Generate unique filename @@ -278,34 +282,115 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Controllers await file.CopyToAsync(stream); } - // TODO: Save document record to database - // var document = new ShipmentDocument - // { - // ShipmentId = shipmentId, - // FileName = file.FileName, - // FilePath = $"/uploads/shipments/{fileName}", - // FileSize = (int)(file.Length / 1024), // Convert to KB - // ContentType = file.ContentType, - // UploadDate = DateTime.UtcNow, - // IsActive = true - // }; + // Extract text with PdfPig + var pdfText = new StringBuilder(); + using (var pdf = UglyToad.PdfPig.PdfDocument.Open(filePath)) + { + foreach (var page in pdf.GetPages()) + { + pdfText.AppendLine(page.Text); + } + } + + // Log extracted text for debugging + Console.WriteLine("Extracted PDF text:"); + Console.WriteLine(pdfText.ToString()); + + // Analyze PDF with AI to extract structured data + var aiAnalysis = await _aiCalculationService.GetOpenAIPDFAnalyzisFromText( + pdfText.ToString(), + "Extract the following information from this shipping document and return as JSON: documentDate, recipientName, senderName, invoiceNumber, totalAmount, itemCount, notes. If a field is not found, return null for that field." + ); + + // Parse AI response (assuming it returns JSON) + var extractedData = ParseShippingDocumentAIResponse(aiAnalysis); + + //TODO: Save document record to database + Console.WriteLine("AI Analysis Result:"); + Console.WriteLine(extractedData.RecipientName); + Console.WriteLine(extractedData.SenderName); + Console.WriteLine(extractedData.InvoiceNumber); + Console.WriteLine(extractedData.TotalAmount); + Console.WriteLine(extractedData.ItemCount); + Console.WriteLine(extractedData.Notes); + // var savedDocument = await _documentService.InsertDocumentAsync(document); - return Json(new FileUploadResult + // Mock saved document ID + var documentId = 1; // Replace with: savedDocument.Id + + // Return structured document model + var documentModel = new ShippingDocumentModel { - Success = true, + Id = documentId, + ShippingId = shippingId, FileName = file.FileName, FilePath = $"/uploads/shippingDocuments/{fileName}", - FileSize = (int)(file.Length / 1024), // KB - DocumentId = 1 // Replace with: savedDocument.Id + FileSize = (int)(file.Length / 1024), + DocumentDate = extractedData.DocumentDate, + RecipientName = extractedData.RecipientName, + SenderName = extractedData.SenderName, + InvoiceNumber = extractedData.InvoiceNumber, + TotalAmount = extractedData.TotalAmount, + ItemCount = extractedData.ItemCount, + Notes = extractedData.Notes, + RawAIAnalysis = aiAnalysis // Store the raw AI response for debugging + }; + + return Json(new + { + success = true, + document = documentModel }); } catch (Exception ex) { - return Json(new FileUploadResult { Success = false, ErrorMessage = ex.Message }); + Console.WriteLine($"Error uploading file: {ex}"); + return Json(new { success = false, errorMessage = ex.Message }); } } + //public IActionResult ReloadPartialView() + //{ + // // ... (logic to get updated data for the partial view) ... + // var model = new ShippingDocumentListModel(); + // return PartialView("~/Plugins/Misc.FruitBankPlugin/Areas/Admin/Components/_DocumentsGridPartial.cshtml", model); + //} + + private ExtractedDocumentData ParseShippingDocumentAIResponse(string aiResponse) + { + try + { + + // Try to parse as JSON first + var data = System.Text.Json.JsonSerializer.Deserialize( + aiResponse, + new System.Text.Json.JsonSerializerOptions { PropertyNameCaseInsensitive = true } + ); + return data ?? new ExtractedDocumentData(); + } + catch + { + // If JSON parsing fails, return empty data with the raw response in notes + return new ExtractedDocumentData + { + Notes = $"AI Analysis (raw): {aiResponse}" + }; + } + } + + // Helper class for extracted data + private class ExtractedDocumentData + { + public DateTime? DocumentDate { get; set; } + public string RecipientName { get; set; } + public string SenderName { get; set; } + public string InvoiceNumber { get; set; } + public decimal? TotalAmount { get; set; } + public int? ItemCount { get; set; } + public string Notes { get; set; } + } + [HttpPost] public async Task DeleteUploadedFile(string filePath) { diff --git a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/ConfigureModel.cs b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/ConfigureModel.cs index 9197c6b..0b5c786 100644 --- a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/ConfigureModel.cs +++ b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/ConfigureModel.cs @@ -15,12 +15,21 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Models [NopResourceDisplayName("Plugins.FruitBankPlugin.Fields.ModelName")] public string ModelName { get; set; } = string.Empty; + [NopResourceDisplayName("Plugins.FruitBankPlugin.Fields.ApiKey")] + public string OpenAIApiKey { get; set; } = string.Empty; + + [NopResourceDisplayName("Plugins.FruitBankPlugin.Fields.ModelName")] + public string OpenAIModelName { get; set; } = string.Empty; + [NopResourceDisplayName("Plugins.FruitBankPlugin.Fields.IsEnabled")] public bool IsEnabled { get; set; } [NopResourceDisplayName("Plugins.FruitBankPlugin.Fields.ApiBaseUrl")] public string ApiBaseUrl { get; set; } = string.Empty; + [NopResourceDisplayName("Plugins.FruitBankPlugin.Fields.ApiBaseUrl")] + public string OpenAIApiBaseUrl { get; set; } = string.Empty; + [NopResourceDisplayName("Plugins.FruitBankPlugin.Fields.MaxTokens")] public int MaxTokens { get; set; } diff --git a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/EditShippingModel.cs b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/EditShippingModel.cs index 53508f7..124c0ee 100644 --- a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/EditShippingModel.cs +++ b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/EditShippingModel.cs @@ -27,17 +27,23 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Models public class ShippingDocumentModel { public int Id { get; set; } - public ShippingDocument ShippingDocument { get; set; } + public int ShippingId { get; set; } public string FileName { get; set; } public string FilePath { get; set; } - public int FileSize { get; set; } // in KB - public DateTime UploadDate { get; set; } - public string ContentType { get; set; } - public bool IsActive { get; set; } = true; + public int FileSize { get; set; } + + // Extracted data from PDF + public DateTime? DocumentDate { get; set; } + public string RecipientName { get; set; } + public string SenderName { get; set; } + public string InvoiceNumber { get; set; } + public decimal? TotalAmount { get; set; } + public int? ItemCount { get; set; } + public string Notes { get; set; } + public string RawAIAnalysis { get; set; } + + public ShippingDocument? ShippingDocument { get; set; } - // Computed properties for display - public string FormattedFileSize => $"{FileSize:N0} KB"; - public string FormattedUploadDate => UploadDate.ToString("yyyy-MM-dd HH:mm"); } // Result model for AJAX operations diff --git a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/ShippingDocumentListModel.cs b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/ShippingDocumentListModel.cs new file mode 100644 index 0000000..57aa90c --- /dev/null +++ b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/ShippingDocumentListModel.cs @@ -0,0 +1,18 @@ +using FruitBank.Common.Entities; +using Nop.Web.Framework.Models; +using Nop.Web.Framework.Mvc.ModelBinding; + +namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Models +{ + public record ShippingDocumentListModel : BaseNopModel + { + public ShippingDocumentListModel() + { + ShippingDocumentList = new List(); + } + + public int ShippingId { get; set; } + public List ShippingDocumentList { get; set; } + + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Configure/Configure.cshtml b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Configure/Configure.cshtml index c0549df..ddcca9b 100644 --- a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Configure/Configure.cshtml +++ b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Configure/Configure.cshtml @@ -31,6 +31,19 @@ Az AI modell neve (pl. gpt-3.5-turbo, gpt-4, claude-3-sonnet) + +
+ + + +
+ +
+ + + + Az AI modell neve (pl. gpt-3.5-turbo, gpt-4) +
@@ -39,6 +52,13 @@ Az API alapcíme (OpenAI, Azure OpenAI, stb.)
+
+ + + + Az API alapcíme (OpenAI, Azure OpenAI, stb.) +
+
diff --git a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Shipping/Edit.cshtml b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Shipping/Edit.cshtml index 76553d4..a41b221 100644 --- a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Shipping/Edit.cshtml +++ b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Shipping/Edit.cshtml @@ -55,7 +55,7 @@
- +
@@ -91,32 +91,12 @@ - @if (Model.ExistingDocuments != null && Model.ExistingDocuments.Any()) - { -
-
Existing Documents:
-
- @foreach (var doc in Model.ExistingDocuments) - { -
-
- - @doc.FileName - (@doc.FileSize KB) -
-
- - -
-
- } -
+
+
Existing Documents:
+
+ @await Html.PartialAsync("~/Plugins/Misc.FruitBankPlugin/Areas/Admin/Components/_DocumentsGridPartial.cshtml", Model.ExistingDocuments)
- } +
-
+
@(Html.DevExtreme().DataGrid() .ColumnAutoWidth(true) .ShowBorders(true) - .ID($"shippingDocumentGridContainer-{new JS("data.Id")}") + .ID(new JS("'shippingDocumentGridContainer-' + data.Id")) .Columns(columns => { columns.AddFor(m => m.Id).AllowEditing(false); @@ -163,7 +164,12 @@ .DataType(GridColumnDataType.Boolean) .CalculateCellValue("calculateCellValue"); }) - .DataSource(new JS("data.ShippingDocuments")) + .DataSource(ds => ds.Mvc() + .Controller("Shipping") + .LoadAction("GetShippingDocumentsByShippingId") + .LoadParams(new { shippingId = new JS("data.Id") }) + .Key("Id") + ) ) ); }) @@ -203,6 +209,10 @@ let dataGrid = $("#gridContainer").dxDataGrid("instance"); dataGrid.option("toolbar.items[1].options.disabled", !data.selectedRowsData.length); } + + function onRowExpanded(e) { + e.component.dxDataGrid("getDataSource").reload(); + } - +@* *@ @@ -116,7 +116,7 @@ else @NopHtml.GenerateScripts(ResourceLocation.Head) @NopHtml.GenerateInlineScripts(ResourceLocation.Head) - + \ No newline at end of file diff --git a/Nop.Plugin.Misc.AIPlugin/Infrastructure/RouteProvider.cs b/Nop.Plugin.Misc.AIPlugin/Infrastructure/RouteProvider.cs index 45e2ff0..b4a47d2 100644 --- a/Nop.Plugin.Misc.AIPlugin/Infrastructure/RouteProvider.cs +++ b/Nop.Plugin.Misc.AIPlugin/Infrastructure/RouteProvider.cs @@ -86,6 +86,31 @@ public class RouteProvider : IRouteProvider name: "Plugin.FruitBank.Admin.Shipping.ReloadPartialView", pattern: "Admin/Shipping/ReloadPartialView", defaults: new { controller = "Shipping", action = "ReloadPartialView", area = AreaNames.ADMIN }); + + endpointRouteBuilder.MapControllerRoute( + name: "Plugin.FruitBank.Admin.Shipping.GetShippingDocumentsByShippingId", + pattern: "Admin/Shipping/GetShippingDocumentsByShippingId", + defaults: new { controller = "Shipping", action = "GetShippingDocumentsByShippingId", area = AreaNames.ADMIN }); + + endpointRouteBuilder.MapControllerRoute( + name: "Plugin.FruitBank.Admin.ManagementPage.Test", + pattern: "Admin/ManagementPage/Test", + defaults: new { controller = "ManagementPage", action = "Test", area = AreaNames.ADMIN }); + + endpointRouteBuilder.MapControllerRoute( + name: "Plugin.FruitBank.Admin.ManagementPage.GetShippings", + pattern: "Admin/ManagementPage/GetShippings", + defaults: new { controller = "ManagementPage", action = "GetShippings", area = AreaNames.ADMIN }); + + endpointRouteBuilder.MapControllerRoute( + name: "Plugin.FruitBank.Admin.ManagementPage.LoadPartial", + pattern: "Admin/ManagementPage/LoadPartial", + defaults: new { controller = "ManagementPage", action = "LoadPartial", area = AreaNames.ADMIN }); + + endpointRouteBuilder.MapControllerRoute( + name: "Plugin.FruitBank.Admin.ManagementPage.GetPartners", + pattern: "Admin/ManagementPage/GetPartners", + defaults: new { controller = "ManagementPage", action = "GetPartners", area = AreaNames.ADMIN }); } /// diff --git a/Nop.Plugin.Misc.AIPlugin/Nop.Plugin.Misc.FruitBankPlugin.csproj b/Nop.Plugin.Misc.AIPlugin/Nop.Plugin.Misc.FruitBankPlugin.csproj index 6c035be..b157f5a 100644 --- a/Nop.Plugin.Misc.AIPlugin/Nop.Plugin.Misc.FruitBankPlugin.csproj +++ b/Nop.Plugin.Misc.AIPlugin/Nop.Plugin.Misc.FruitBankPlugin.csproj @@ -149,6 +149,15 @@ Always + + Always + + + Always + + + Always + Always From 631bcdd29092d2da0420b687eb9d006f6b36224d Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 5 Oct 2025 14:55:46 +0200 Subject: [PATCH 3/3] devexpress management --- .../Controllers/ManagementPageController.cs | 219 +++++++++++++++++- .../Admin/Controllers/ShippingController.cs | 9 +- .../ShippingDocumentGridComponent.cshtml | 99 ++++---- .../Models/AIChatRequestBase.cs | 16 +- .../Services/AICalculationService.cs | 7 +- .../Services/OpenAIApiService.cs | 4 +- 6 files changed, 293 insertions(+), 61 deletions(-) diff --git a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ManagementPageController.cs b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ManagementPageController.cs index 077459e..ce0c8f3 100644 --- a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ManagementPageController.cs +++ b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ManagementPageController.cs @@ -1,13 +1,16 @@ using FruitBank.Common.Entities; +using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Azure; using Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Models; using Nop.Plugin.Misc.FruitBankPlugin.Domains.DataLayer; +using Nop.Plugin.Misc.FruitBankPlugin.Services; using Nop.Services.Security; using Nop.Web.Areas.Admin.Controllers; using Nop.Web.Framework; using Nop.Web.Framework.Mvc.Filters; +using System.Text; namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Controllers { @@ -17,11 +20,13 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Controllers { private readonly IPermissionService _permissionService; protected readonly FruitBankDbContext _dbContext; + protected readonly AICalculationService _aiCalculationService; - public ManagementPageController(IPermissionService permissionService, FruitBankDbContext fruitBankDbContext) + public ManagementPageController(IPermissionService permissionService, FruitBankDbContext fruitBankDbContext, AICalculationService aiCalculationService) { _permissionService = permissionService; _dbContext = fruitBankDbContext; + _aiCalculationService = aiCalculationService; } public async Task Test() @@ -101,5 +106,217 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Controllers return Json(model); } + [HttpGet] + public async Task GetShippingItemsByShippingDocumentId(int shippingDocumentId) + { + if (!await _permissionService.AuthorizeAsync(StandardPermission.Security.ACCESS_ADMIN_PANEL)) + return AccessDeniedView(); + + // Mock data for now + var model = await _dbContext.ShippingItems.GetAll(true).Where(sd => sd.ShippingDocumentId == shippingDocumentId).OrderByDescending(sd => sd.Created).ToListAsync(); + var valami = model; + //model. = await _dbContext.GetShippingDocumentsByShippingIdAsync(shippingId); + return Json(model); + } + + [HttpGet] + public async Task GetShippingDocumentsByShippingDocumentId(int shippingDocumentId) + { + if (!await _permissionService.AuthorizeAsync(StandardPermission.Security.ACCESS_ADMIN_PANEL)) + return AccessDeniedView(); + + // Mock data for now + var model = await _dbContext.ShippingDocumentToFiles.GetAll().Where(f => f.ShippingDocumentId == shippingDocumentId).OrderByDescending(sd => sd.Created).ToListAsync(); + var valami = model; + //model. = await _dbContext.GetShippingDocumentsByShippingIdAsync(shippingId); + return Json(model); + } + + [HttpPost] + [RequestSizeLimit(10485760)] // 10MB + [RequestFormLimits(MultipartBodyLengthLimit = 10485760)] + public async Task UploadFile(UploadModel model) + { + var files = model.Files; + var shippingDocumentId = model.ShippingDocumentId; + try + { + if (!await _permissionService.AuthorizeAsync(StandardPermission.Security.ACCESS_ADMIN_PANEL)) + return Json(new { success = false, errorMessage = "Access denied" }); + + if (files == null || files.Count == 0) + return Json(new { success = false, errorMessage = "No file selected" }); + + foreach (var file in files) + { + // Validate file type (PDF only) + if (!file.ContentType.Equals("application/pdf", StringComparison.OrdinalIgnoreCase)) + return Json(new { success = false, errorMessage = "Only PDF files are allowed" }); + + // Validate file size (max 10MB) + if (file.Length > 10 * 1024 * 1024) + return Json(new { success = false, errorMessage = "File size must be less than 10MB" }); + + // Create upload directory if it doesn't exist + var uploadsPath = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "uploads", "shippingDocuments"); + Directory.CreateDirectory(uploadsPath); + + // Generate unique filename + var fileName = $"{Guid.NewGuid()}_{file.FileName}"; + var filePath = Path.Combine(uploadsPath, fileName); + + // Save file + using (var stream = new FileStream(filePath, FileMode.Create)) + { + await file.CopyToAsync(stream); + } + + // Extract text with PdfPig + var pdfText = new StringBuilder(); + using (var pdf = UglyToad.PdfPig.PdfDocument.Open(filePath)) + { + foreach (var page in pdf.GetPages()) + { + pdfText.AppendLine(page.Text); + } + } + + // Log extracted text for debugging + Console.WriteLine("Extracted PDF text:"); + Console.WriteLine(pdfText.ToString()); + + // Analyze PDF with AI to extract structured data + var aiAnalysis = await _aiCalculationService.GetOpenAIPDFAnalyzisFromText( + pdfText.ToString(), + "Extract the following information from this shipping document and return as JSON: documentDate, recipientName, senderName, invoiceNumber, totalAmount, itemCount, notes. If a field is not found, return null for that field." + ); + + // Parse AI response (assuming it returns JSON) + var extractedData = ParseShippingDocumentAIResponse(aiAnalysis); + + //TODO: Save document record to database + Console.WriteLine("AI Analysis Result:"); + Console.WriteLine(extractedData.RecipientName); + Console.WriteLine(extractedData.SenderName); + Console.WriteLine(extractedData.InvoiceNumber); + Console.WriteLine(extractedData.TotalAmount); + Console.WriteLine(extractedData.ItemCount); + Console.WriteLine(extractedData.Notes); + + + var documentId = 1; // Replace with: savedDocument.Id + + // Return structured document model + var documentModel = new ShippingDocumentModel + { + Id = documentId, + ShippingId = shippingDocumentId, + FileName = file.FileName, + FilePath = $"/uploads/shippingDocuments/{fileName}", + FileSize = (int)(file.Length / 1024), + DocumentDate = extractedData.DocumentDate, + RecipientName = extractedData.RecipientName, + SenderName = extractedData.SenderName, + InvoiceNumber = extractedData.InvoiceNumber, + TotalAmount = extractedData.TotalAmount, + ItemCount = extractedData.ItemCount, + Notes = extractedData.Notes, + RawAIAnalysis = aiAnalysis // Store the raw AI response for debugging + }; + + } + + // var savedDocument = await _documentService.InsertDocumentAsync(document); + + // Mock saved document ID + + + //return Json(new + //{ + // success = true, + // document = documentModel + //}); + + return Ok($"Files for Shipping Document ID {shippingDocumentId} were uploaded successfully!"); + } + catch (Exception ex) + { + Console.WriteLine($"Error uploading file: {ex}"); + //return Json(new { success = false, errorMessage = ex.Message }); + return BadRequest("No files were uploaded."); + } + } + + private ExtractedDocumentData ParseShippingDocumentAIResponse(string aiResponse) + { + try + { + // Try to parse as JSON first + var data = System.Text.Json.JsonSerializer.Deserialize( + aiResponse, + new System.Text.Json.JsonSerializerOptions { PropertyNameCaseInsensitive = true } + ); + return data ?? new ExtractedDocumentData(); + } + catch + { + // If JSON parsing fails, return empty data with the raw response in notes + return new ExtractedDocumentData + { + Notes = $"AI Analysis (raw): {aiResponse}" + }; + } + } + + // Helper class for extracted data + private class ExtractedDocumentData + { + public DateTime? DocumentDate { get; set; } + public string RecipientName { get; set; } + public string SenderName { get; set; } + public string InvoiceNumber { get; set; } + public decimal? TotalAmount { get; set; } + public int? ItemCount { get; set; } + public string Notes { get; set; } + } + + [HttpPost] + public async Task DeleteUploadedFile(string filePath) + { + try + { + if (!await _permissionService.AuthorizeAsync(StandardPermission.Security.ACCESS_ADMIN_PANEL)) + return Json(new { success = false, message = "Access denied" }); + + if (string.IsNullOrEmpty(filePath)) + return Json(new { success = false, message = "Invalid file path" }); + + // TODO: Delete document record from database first + // var document = await _documentService.GetDocumentByFilePathAsync(filePath); + // if (document != null) + // await _documentService.DeleteDocumentAsync(document); + + var fullPath = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", filePath.TrimStart('/')); + + if (System.IO.File.Exists(fullPath)) + { + System.IO.File.Delete(fullPath); + return Json(new { success = true }); + } + + return Json(new { success = false, message = "File not found" }); + } + catch (Exception ex) + { + return Json(new { success = false, message = ex.Message }); + } + } + + } + + public class UploadModel + { + public int ShippingDocumentId { get; set; } + public List Files { get; set; } } } \ No newline at end of file diff --git a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ShippingController.cs b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ShippingController.cs index 4cbc8a6..2215faf 100644 --- a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ShippingController.cs +++ b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Controllers/ShippingController.cs @@ -380,14 +380,7 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Controllers Console.WriteLine($"Error uploading file: {ex}"); return Json(new { success = false, errorMessage = ex.Message }); } - } - - //public IActionResult ReloadPartialView() - //{ - // // ... (logic to get updated data for the partial view) ... - // var model = new ShippingDocumentListModel(); - // return PartialView("~/Plugins/Misc.FruitBankPlugin/Areas/Admin/Components/_DocumentsGridPartial.cshtml", model); - //} + } private ExtractedDocumentData ParseShippingDocumentAIResponse(string aiResponse) { diff --git a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Order/ShippingDocumentGridComponent.cshtml b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Order/ShippingDocumentGridComponent.cshtml index 86c1076..d9b544d 100644 --- a/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Order/ShippingDocumentGridComponent.cshtml +++ b/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Views/Order/ShippingDocumentGridComponent.cshtml @@ -7,36 +7,41 @@ }
- @(Html.DevExtreme().DataGrid() - .ID(Model.Id.ToString()) - .ShowBorders(true) - .DataSource(ds => ds.Mvc() - .Controller("ManagementPage") - .LoadAction("GetShippingDocuments")) - .KeyExpr("Id") - .SearchPanel(sp => sp.Visible(true)) - .HeaderFilter(hf => hf.Visible(true)) - .Paging(p => p.PageSize(15)) - .Pager(p => p.Visible(true)) - .OnRowExpanded("onRowExpanded") - .Editing(editing => { - editing.Mode(GridEditMode.Cell); - editing.AllowUpdating(true); - editing.AllowAdding(true); - editing.AllowDeleting(true); - }) - .Columns(c => { - - c.Add().DataField("Id").AllowEditing(false); - c.Add().DataField("PartnerId"); + @( + Html.DevExtreme().DataGrid() + .ID("orderDataGridContainer") + .ShowBorders(true) + .DataSource(ds => ds.Mvc() + .Controller("ManagementPage") + .LoadAction("GetShippingDocuments")) + .KeyExpr("Id") + .SearchPanel(sp => sp.Visible(true)) + .HeaderFilter(hf => hf.Visible(true)) + .Paging(p => p.PageSize(15)) + .Pager(p => p.Visible(true)) + .OnRowExpanded("onRowExpanded") + .Editing(editing => { + editing.Mode(GridEditMode.Cell); + editing.AllowUpdating(true); + editing.AllowAdding(true); + editing.AllowDeleting(true); + }) + .Columns(c => { + + c.Add().DataField("Id").AllowEditing(false); + c.Add().DataField("Partner.Name").AllowEditing(false); + c.Add() + .Caption("Items in order") + .DataType(GridColumnDataType.Number) + .CalculateCellValue("calculateItemsCount").AllowEditing(false); + c.Add().DataField("PartnerId"); c.Add().DataField("DocumentIdNumber"); c.Add().DataField("IsAllMeasured"); - @* c.AddFor(m => m.Partner.Name); *@ - + c.Add() .Caption("Completed") .DataType(GridColumnDataType.Boolean) - .CalculateCellValue("calculateCellValue"); + .CalculateCellValue("calculateCellValue").AllowEditing(false); }) .Toolbar(toolbar => { toolbar.Items(items => { @@ -131,21 +136,29 @@