aboutsummaryrefslogtreecommitdiff
path: root/src/PriceListTools/MergeTool.cs
blob: ddf74d29e410ccdcec4c373490d93502607d8f61 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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);

                try
                {
                    PriceList priceList = new PriceList(wb);
                    SkuAmount.AddValues(priceList);
                }

                catch (Exception ex)
                {
                    System.Windows.Forms.MessageBox.Show
                        ( $"{wb.Name} не является файлом прайс-листа \n\n {ex.Message}",
                        "Неверный файл прайс-листа!",
                        System.Windows.Forms.MessageBoxButtons.OK,
                        System.Windows.Forms.MessageBoxIcon.Error);
                }

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

        public void ExportToNewFile(string exportFile)
        {
            if (SkuAmount.Count < 1)
            {
                return;
            }

            Workbook wb = ExcelApp.Workbooks.Open(exportFile);
            PriceList priceList;

            try
            {
                priceList = new PriceList(wb);
                priceList.Fill(SkuAmount);
            }

            catch (Exception ex)
            {
                System.Windows.Forms.MessageBox.Show
                    ($"{RegistryUtil.PriceListPath} не является файлом прайс-листа \n\n {ex.Message}",
                    "Неверный файл прайс-листа!",
                    System.Windows.Forms.MessageBoxButtons.OK,
                    System.Windows.Forms.MessageBoxIcon.Error);

                wb.Close();
            }
        }

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

        protected virtual void Dispose(bool disposing)
        {

        }
    }
}