ホテル管理システム
ogi
yesterday 1a1c8e71fcd14858f595029f089b2d4a00202b32
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
using NPOI.HSSF.UserModel;
using NPOI.SS.UserModel;
using NPOI.XSSF.UserModel;
 
namespace HotelPms.Share.Windows.Util
{
    public class NPOIExcel : IDisposable
    {
        #region  ★★★★★ Declartions ★★★★★
 
        private bool m_Disposed = false;
        private bool m_IsEditting = false;
 
        #endregion
 
        #region  ★★★★★ Property ★★★★★
 
        /// <summary>
        /// 絶対パス
        /// </summary>
        public string FileName { get; set; } = string.Empty;
 
        /// <summary>
        /// 現在のWorkbook
        /// </summary>
        public IWorkbook Workbook { get; set; } = null;
 
        /// <summary>
        /// 選択されたSheet
        /// </summary>
        public ISheet Sheet { get; set; } = null;
 
        /// <summary>
        /// Excel2003前?
        /// </summary>
        public bool XlsMode { get; set; } = false;
 
        #endregion
 
        #region  ★★★★★ Class Event ★★★★★
 
        public NPOIExcel(string fileName)
        {
            FileName = fileName;
            FileInfo fileInfo = new FileInfo(FileName);
            XlsMode = (fileInfo.Extension == ".xls");
 
            if (System.IO.File.Exists(FileName))
            {
                using (FileStream file = new FileStream(FileName, FileMode.Open, FileAccess.Read))
                {
                    Workbook = XlsMode ? new HSSFWorkbook(file) : new XSSFWorkbook(file);
                }
                Sheet = Workbook.GetSheetAt(0);
                Sheet.ForceFormulaRecalculation = true;
            }
            else
            {
                Workbook = XlsMode ? new HSSFWorkbook() : new XSSFWorkbook();
                Sheet = Workbook.CreateSheet("Sheet1"); //シートの作成
            }
        }
 
        ~NPOIExcel()
        {
            Dispose(false);
        }
 
        protected virtual void Dispose(bool disposing)
        {
            if (!m_Disposed)   //一回だけ
            {
                if (disposing)
                {
                    if (m_IsEditting) { Save(); }
                    //Managed Resources
                }
 
                //Unmanaged resources
                m_Disposed = true;
            }
        }
 
        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }
 
        #endregion
 
        #region  ★★★★★ Private Function ★★★★★
 
        private string GetCellFormat(ICell cell)
        {
            IDataFormat df = XlsMode ?  new HSSFDataFormat((Workbook as HSSFWorkbook).Workbook) : new XSSFDataFormat((Workbook as XSSFWorkbook).GetStylesSource());
            return df.GetFormat(cell.CellStyle.DataFormat);
        }
 
 
        #endregion
 
        #region  ★★★★★ Public  Function ★★★★★
 
        /// <summary>
        /// シート変換
        /// </summary>
        /// <param name="sheetIdx"></param>
        public void SetCurrentSheet(int sheetIdx)
        {
            Sheet = Workbook.GetSheetAt(sheetIdx);
            Sheet.ForceFormulaRecalculation = true;
        }
 
        /// <summary>
        /// 存在しない時、null
        /// </summary>
        /// <param name="colRowValue"></param>
        /// <returns></returns>
        public ICell? GetCell(string colRowValue)
        {
            return GetCell(colRowValue, false);
        }
 
        public object? GetCellValue(string colRowValue)
        {
            try
            {
                ICell cell = GetCell(colRowValue);
                if (cell == null) { return string.Empty; }
                System.Diagnostics.Debug.WriteLine($"{colRowValue}.CellType={cell.CellType}");
                if (cell.CellType == CellType.Numeric) { return cell.NumericCellValue; }
                else if (cell.CellType == CellType.Boolean) { return cell.BooleanCellValue; }
                else { return cell.StringCellValue; }
            }
            catch
            {
                return string.Empty;
            }
        }
 
        public string? GetCellForceString(string colRowValue)
        {
            try
            {
                object ret = GetCellValue(colRowValue);
                return ret == null ? string.Empty : ret.ToString();
            }
            catch
            {
                return string.Empty;
            }
        }
 
        /// <summary>
        /// セルの値を取得する
        /// </summary>
        /// <param name="colRowValue"></param>
        /// <returns></returns>
        public string GetCellString(string colRowValue)
        {
            try
            {
                ICell cell = GetCell(colRowValue);
                if (cell == null) { return string.Empty; }
                System.Diagnostics.Debug.WriteLine($"{colRowValue}={cell.StringCellValue}");
                return cell.StringCellValue;
            }
            catch
            {
                return string.Empty;
            }
        }
 
        public int GetCellInt(string colRowValue)
        {
            try
            {
                ICell cell = GetCell(colRowValue);
                if (cell == null) { return 0; }
                return (int)cell.NumericCellValue;
            }
            catch
            {
                return 0;
            }
        }
 
        /// <summary>
        /// 存在しない時、新規
        /// </summary>
        /// <param name="colRowValue"></param>
        /// <returns></returns>
        public ICell? GetCell(string colRowValue, bool newCell)
        {
            System.Drawing.Point p = GetCellPoint(colRowValue);
            IRow row = Sheet.GetRow(p.Y);
            if (row == null) 
            {
                if (newCell) { row = Sheet.CreateRow(p.Y); } else { return null; }
            }
 
            ICell cell = row.GetCell(p.X);
            if (cell == null) 
            {
                if (newCell) { cell = row.CreateCell(p.X); } else { return null; }  
            }
            return cell;
        }
 
        /// <summary>
        /// フォントの作成
        /// </summary>
        /// <returns></returns>
        public IFont CreateFont()
        {
            IFont font = Workbook.CreateFont();
            return font;
        }
 
        /// <summary>
        /// 計算式セット
        /// </summary>
        /// <param name="colRowValue"></param>
        /// <param name="formula"></param>
        public void SetCellFormula(string colRowValue, string formula)
        {
            m_IsEditting = true;
            ICell cell = GetCell(colRowValue, true);
            cell.SetCellFormula(formula);
 
        }
 
        /// <summary>
        /// セルの値セット:xls専用
        /// </summary>
        /// <param name="colRowValue"></param>
        /// <param name="richTextString"></param>
        public void SetCell(string colRowValue, HSSFRichTextString richTextString)
        {
            m_IsEditting = true;
            ICell cell = GetCell(colRowValue, true);
            cell.SetCellValue(richTextString);
        }
 
        /// <summary>
        /// セルの値セット:数字専用
        /// </summary>
        /// <param name="colRowValue"></param>
        /// <param name="value"></param>
        public void SetCell(string colRowValue, double value)
        {
            m_IsEditting = true;
            ICell cell = GetCell(colRowValue, true);
            cell.SetCellValue(value);
        }
 
        /// <summary>
        /// セルの値セット:日付専用
        /// </summary>
        /// <param name="colRowValue"></param>
        /// <param name="value"></param>
        public void SetCell(string colRowValue, DateTime value)
        {
            m_IsEditting = true;
            ICell cell = GetCell(colRowValue, true);
            cell.SetCellValue(value);
        }
 
        /// <summary>
        /// セルの値セット:Boolean
        /// </summary>
        /// <param name="colRowValue"></param>
        /// <param name="value"></param>
        public void SetCell(string colRowValue, bool value)
        {
            m_IsEditting = true;
            ICell cell = GetCell(colRowValue, true);
            cell.SetCellValue(value);
        }
 
        /// <summary>
        /// 数字型変換対応
        /// </summary>
        /// <param name="colRowValue"></param>
        /// <param name="value"></param>
        public void SetCell(string colRowValue, string value)
        {
            m_IsEditting = true;
            System.Drawing.Point p = GetCellPoint(colRowValue);
            IRow row = Sheet.GetRow(p.Y);
            if (row == null) { row = Sheet.CreateRow(p.Y); }
 
            ICell cell = row.GetCell(p.X);
            if (cell == null) { cell = row.CreateCell(p.X); }
 
            string format = GetCellFormat(cell);
            if ((format.Contains("#") && format.Contains("0")) || format.Contains("0_"))
            {
                double val = 0;
                if (double.TryParse(value, out val))
                {
                    cell.SetCellValue(val);
                }
                else
                {
                    cell.SetCellValue(value);
                }
            }
            else
            {
                cell.SetCellValue(value);
            }
        }
 
        /// <summary>
        /// 保存
        /// </summary>
        public void Save()
        {
            //Write the stream data of workbook to the root directory
            using (FileStream file = new FileStream(FileName, FileMode.Create))
            {
                Workbook.Write(file, true);
                file.Close();
            }
        }
 
        /// <summary> ExcelX位置→EXCEL列文字  (1→A,2→B,3→C,27→AA)
        /// </summary>  
        /// <param name="ColNum">索引号</param>  
        /// <returns>string</returns>  
        public static string ToColName(int ColNum)
        {
            int ll_mod;
            string ColName = "";
 
            while (ColNum > 0)
            {
                ll_mod = ColNum % 26;
                if (ll_mod == 0)
                {
                    ColName = "Z" + ColName;
                    ll_mod = 1;
                }
                else
                {
                    ColName = (Convert.ToChar(ll_mod + 64)).ToString() + ColName;
                }
                ColNum = (ColNum - ll_mod) / 26;
            }
 
            return ColName;
        }
 
        /// <summary> Excel列文字→ExcelX位置  ("A"→1、"AA"→27)
        /// </summary>  
        /// <param name="ColName">列名</param>  
        /// <returns>int</returns>  
        public static int ToIndex(string ColName)
        {
            int ColIndex = 0;
            for (int i = ColName.Length - 1; i >= 0; i--)
            {
                ColIndex += Convert.ToInt32(((int)ColName[i] - 64) * Math.Pow(26, (ColName.Length - 1) - i));
            }
 
            return ColIndex;
        }
 
 
        /// <summary> Excel文字→Excel位置("A1"→(0,0)、"B2"→(1,1))(0基準)
        /// </summary>
        /// <param name="colRowValue"></param>
        /// <returns></returns>
        public static System.Drawing.Point GetCellPoint(string colRowValue)
        {
            System.Drawing.Point point = new System.Drawing.Point(0, 0);
            string colstr = string.Empty;
            string rowStr = string.Empty;
            for (int i = 0; i < colRowValue.Length; i++)
            {
                if (Char.IsNumber(colRowValue[i]))
                {
                    rowStr += colRowValue[i].ToString();
                }
                else
                {
                    colstr += colRowValue[i].ToString();
                }
            }
 
            point.Y = Convert.ToInt32(rowStr) - 1;  //行
            point.X = ToIndex(colstr) - 1;
            return point;
        }
 
        #endregion
    }
}