aboutsummaryrefslogtreecommitdiff
path: root/src/PriceListTools/ExportTool.cs
blob: 562c1b26821d445feb3489abadf1673af8c9e4be (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
89
90
91
92
93
94
95
96
using Microsoft.Office.Interop.Excel;
using RehauSku.Assistant;
using System;
using System.Collections.Generic;
using RehauSku.Interface;

namespace RehauSku.PriceListTools
{
    internal class ExportTool : AbstractTool
    {
        private Dictionary<Position, double> PositionAmount;
        private Range Selection;

        public void TryGetSelection()
        {
            Selection = ExcelApp.Selection;

            if (Selection == null || Selection.Columns.Count != 2)
            {
                throw new Exception("Неверный диапазон");
            }
        }

        public void FillTarget()
        {
            GetSelected();
            ProgressBar bar = new ProgressBar(PositionAmount.Count);
            
            foreach (var kvp in PositionAmount)
            {
                FillColumnsWithDictionary(kvp, TargetFile.amountCell.Column);
                bar.DoProgress();
            }

            FilterByAmount();

            Interface.Dialog.SaveWorkbookAs();
        }

        private void GetSelected()
        {
            object[,] cells = Selection.Value2;            
            PositionAmount = new Dictionary<Position, double>();

            int rowsCount = Selection.Rows.Count;

            for (int row = 1; row <= rowsCount; row++)
            {
                if (cells[row, 1] == null || cells[row, 2] == null)
                    continue;

                string sku = null;
                double? amount = null;

                for (int column = 1; column <= 2; column++)
                {
                    object current = cells[row, column];

                    if (current.ToString().IsRehauSku())
                    {
                        sku = current.ToString();
                    }

                    else if (current.GetType() == typeof(string)
                        && double.TryParse(current.ToString(), out _))
                    {
                        amount = double.Parse((string)current);
                    }

                    else if (current.GetType() == typeof(double))
                    {
                        amount = (double)current;
                    }
                }

                if (sku == null || amount == null)
                {
                    continue;
                }

                Position position = new Position(null, sku, null);

                if (PositionAmount.ContainsKey(position))
                {
                    PositionAmount[position] += amount.Value;
                }

                else
                {
                    PositionAmount.Add(position, amount.Value);
                }
            }
        }
    }
}