XRechung StoredFileVM + StoredFileVM.Data

XRechnung wird nach dem Runterladen im Arbeitsspeicher gespiechert
This commit is contained in:
2025-06-25 11:49:36 +02:00
parent fb3303163d
commit bb812665db
9 changed files with 211 additions and 117 deletions

View File

@@ -33,7 +33,7 @@ namespace BeWo.Service.ServiceImplementations.Enhanced
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Single)]
public class AccountingEnhancedServiceImp : IAccountingEnhancedService
{
public ApiResponse<byte[]> GetXRechnung(long invoice_base_oid, int report_type, string report_url)
public ApiResponse<Tuple<StoredFileDC, byte[]>> GetXRechnung(long invoice_base_oid, int report_type, string report_url)
{
var service = PluginLoader.FindClass<XRechnungService>();
return service.GetXRechnung(invoice_base_oid, report_type, report_url);