aboutsummaryrefslogtreecommitdiff
path: root/Source/PriceListTools/MergeTool.cs
blob: 21da41dec1d36e28e701c31833da304876739a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using ExcelDna.Integration;
using Microsoft.Office.Interop.Excel;
using System;
using System.Collections.Generic;

namespace RehauSku.PriceListTools
{
    class MergeTool : IDisposable
    {
        private Application ExcelApp;
        private Dictionary<string, double> SkuAmount { get; set; }

        public MergeTool()
        {
            this.ExcelApp = (Application)ExcelDnaUtil.Application;
            this.SkuAmount = new Dictionary<string, double>();
        }

        public void AddSkuAmountToDict(string[] files)
        {
            ExcelApp.ScreenUpdating = false;
            foreach (string file in files)
            {
                Workbook wb = ExcelApp.Workbooks.Open(file);
                PriceList priceList = new PriceList(wb);

                if (priceList.IsValid())
                    SkuAmount.AddValues(priceList);

                wb.Close();
            }
            ExcelApp.ScreenUpdating = true;
        }

        public void ExportToNewFile(string exportFile)
        {
            Workbook wb = ExcelApp.Workbooks.Open(exportFile);
            PriceList priceList = new PriceList(wb);

            if (priceList.IsValid())
                priceList.Fill(SkuAmount);
        }

        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }

        protected virtual void Dispose(bool disposing)
        {

        }
    }
}