Excel reader kompiliert jetzt

This commit is contained in:
Daniel Schick 2021-12-01 18:21:20 +01:00
parent a2289e303e
commit 286953e7d8
12 changed files with 201 additions and 430 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@
# ENI deployment (published files) # ENI deployment (published files)
eni_test/ eni_test/
eni2.publish/
# User-specific files # User-specific files
*.rsuser *.rsuser

View File

@ -8,8 +8,8 @@ using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Media.Imaging; using System.Windows.Media.Imaging;
using ENI2.Locode;
using bsmd.database; using bsmd.database;
using bsmd.ExcelReadService;
using System.ComponentModel; using System.ComponentModel;
namespace ENI2.Controls namespace ENI2.Controls

View File

@ -10,9 +10,8 @@ using System.IO;
using System.Windows.Controls; using System.Windows.Controls;
using ENI2.EditControls; using ENI2.EditControls;
using ENI2.Util; using ENI2.Util;
using bsmd.ExcelReadService; using ENI2.Locode;
using ExcelDataReader; using ExcelDataReader;
using bsmd.database; using bsmd.database;
namespace ENI2.DetailViewControls namespace ENI2.DetailViewControls

View File

@ -13,7 +13,6 @@ using ENI2.EditControls;
using ENI2.Util; using ENI2.Util;
using bsmd.database; using bsmd.database;
using bsmd.ExcelReadService;
using ExcelDataReader; using ExcelDataReader;
namespace ENI2.DetailViewControls namespace ENI2.DetailViewControls

View File

@ -7,7 +7,7 @@ using ENI2.Controls;
using bsmd.database; using bsmd.database;
using System.Collections.Generic; using System.Collections.Generic;
using System; using System;
using bsmd.ExcelReadService; using ENI2.Locode;
using System.ComponentModel; using System.ComponentModel;
namespace ENI2.EditControls namespace ENI2.EditControls

View File

@ -7,7 +7,7 @@ using System.Windows;
using ENI2.Controls; using ENI2.Controls;
using bsmd.database; using bsmd.database;
using bsmd.ExcelReadService; using ENI2.Locode;
namespace ENI2.EditControls namespace ENI2.EditControls
{ {

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.Windows; using System.Windows;
using ENI2.Controls; using ENI2.Controls;
using bsmd.ExcelReadService; using ENI2.Locode;
using bsmd.database; using bsmd.database;
namespace ENI2.EditControls namespace ENI2.EditControls

View File

@ -29,7 +29,7 @@ namespace ENI2.Import
{ {
ImportDate = DateTime.Now ImportDate = DateTime.Now
}; };
result = ExcelUtil.ProcessSheet(reader, out readMessage, core); // actual import result = ExcelUtil.ProcessSheet(reader, out readMessage, core, classes); // actual import
if (result) if (result)
{ {
importHeader.MessageCoreId = core.Id.Value; importHeader.MessageCoreId = core.Id.Value;

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@ using System.Data.SQLite;
using System.Collections.Generic; using System.Collections.Generic;
using bsmd.database; using bsmd.database;
using bsmd.ExcelReadService; using ENI2.Locode;
namespace ENI2 namespace ENI2
{ {

View File

@ -21,7 +21,7 @@ using ENI2.Util;
using log4net; using log4net;
using System.ComponentModel; using System.ComponentModel;
using bsmd.ExcelReadService; using ENI2.Locode;
using System.Text; using System.Text;
namespace ENI2 namespace ENI2

View File

@ -7,7 +7,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Data; using System.Windows.Data;
using bsmd.ExcelReadService; using ENI2.Locode;
namespace ENI2.Util namespace ENI2.Util
{ {