+++ .svn/entries
... | ... | @@ -0,0 +1,1 @@ |
1 | +12 |
+++ .svn/format
... | ... | @@ -0,0 +1,1 @@ |
1 | +12 |
+++ .svn/pristine/00/00b1a740020a584cdeaf015be75a1dfa7c9c11cd.svn-base
... | ... | @@ -0,0 +1,196 @@ |
1 | +using ClientLib; | |
2 | +using ClientLib.CommonService; | |
3 | +using DevExpress.XtraEditors; | |
4 | +using PublicLib; | |
5 | +using System; | |
6 | +using System.Collections.Generic; | |
7 | +using System.ComponentModel; | |
8 | +using System.Data; | |
9 | +using System.Drawing; | |
10 | +using System.IO; | |
11 | +using System.Linq; | |
12 | +using System.Net; | |
13 | +using System.Reflection; | |
14 | +using System.Text; | |
15 | +using System.Threading; | |
16 | +using System.Windows.Forms; | |
17 | + | |
18 | +namespace HANMI_MACH | |
19 | +{ | |
20 | + partial class MachASManagerPopup : PublicLib.CommonPopup | |
21 | + { | |
22 | + | |
23 | + private string m_Type, m_comp_cd, m_mach_cd; | |
24 | + | |
25 | + public MachASManagerPopup(string comp_cd, string mach_cd) | |
26 | + { | |
27 | + InitializeComponent(); | |
28 | + | |
29 | + this.Icon = ConstClass._MAIN.Icon; | |
30 | + | |
31 | + m_Type = "I"; | |
32 | + m_comp_cd = comp_cd; | |
33 | + m_mach_cd = mach_cd; | |
34 | + | |
35 | + //AS일자 | |
36 | + dateEdit_AS_DT.DateTime = DateTime.Now; | |
37 | + //AS종류 | |
38 | + DataView asKindCD = new DataView(ConstClass._DATA); | |
39 | + asKindCD.RowFilter = "CATE_CD = 'E' and GRP_CD = 'E02'"; | |
40 | + UtilClass.SetLookup(lookUpEdit_ASKIND_CD, asKindCD, "NO_CD", "NO_CD_NM", true); | |
41 | + | |
42 | + | |
43 | + | |
44 | + this.Shown += (sender, e) => | |
45 | + { | |
46 | + try | |
47 | + { | |
48 | + //설비 | |
49 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] { | |
50 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar,m_comp_cd) | |
51 | + }; | |
52 | + ResultData resultMACH = ClientClass.GetData("getMachineForLookup", aParam); | |
53 | + if (resultMACH.isError) | |
54 | + { | |
55 | + throw new Exception(resultMACH.ResultValue); | |
56 | + } | |
57 | + | |
58 | + UtilClass.SetLookup(lookUpEdit_MACH_CD, resultMACH.DataList.Tables[1], "MACH_CD", "MACH_NM", true); | |
59 | + | |
60 | + if (m_mach_cd != "ALL") | |
61 | + { | |
62 | + lookUpEdit_MACH_CD.EditValue = m_mach_cd; | |
63 | + } | |
64 | + } | |
65 | + catch (Exception ex) | |
66 | + { | |
67 | + MessageBox.Show(ex.Message); | |
68 | + this.Close(); | |
69 | + } | |
70 | + }; | |
71 | + | |
72 | + | |
73 | + //보수품 | |
74 | + | |
75 | + lookUpEdit_MACH_CD.EditValueChanged += (sender, e) => | |
76 | + { | |
77 | + SerializedSqlParam[] aParam1 = new SerializedSqlParam[] { | |
78 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar,m_comp_cd), | |
79 | + ClientClass.CreateSqlParameter("MACH_CD", SqlDbType.NVarChar,UtilClass.toStr(lookUpEdit_MACH_CD.EditValue)) | |
80 | + }; | |
81 | + ResultData resultMACHMAT = ClientClass.GetData("getMachineMATForLookup", aParam1); | |
82 | + if (resultMACHMAT.isError) | |
83 | + { | |
84 | + throw new Exception(resultMACHMAT.ResultValue); | |
85 | + } | |
86 | + | |
87 | + UtilClass.SetLookup(lookUpEdit_MAT_CD, resultMACHMAT.DataList.Tables[1], "MAT_CD", "MAT_NM", true); | |
88 | + }; | |
89 | + | |
90 | + | |
91 | + | |
92 | + this.simpleButton_CANCEL.Click += (sender, e) => | |
93 | + { | |
94 | + this.DialogResult = DialogResult.Cancel; | |
95 | + this.Close(); | |
96 | + }; | |
97 | + | |
98 | + this.simpleButton_Save.Click += (sender, e) => | |
99 | + { | |
100 | + saveProc(false); | |
101 | + }; | |
102 | + | |
103 | + this.simpleButton_SaveClose.Click += (sender, e) => | |
104 | + { | |
105 | + saveProc(true); | |
106 | + }; | |
107 | + | |
108 | + this.Shown += (sender, e) => | |
109 | + { | |
110 | + lookUpEdit_MACH_CD.Focus(); | |
111 | + }; | |
112 | + | |
113 | + } | |
114 | + private void saveProc(bool candClose) | |
115 | + { | |
116 | + try | |
117 | + { | |
118 | + this.Cursor = Cursors.WaitCursor; | |
119 | + | |
120 | + if (UtilClass.isNull(lookUpEdit_ASKIND_CD.Text)) | |
121 | + { | |
122 | + lookUpEdit_ASKIND_CD.Focus(); | |
123 | + throw new Exception("AS 구분을 선택하십시오."); | |
124 | + } | |
125 | + if (UtilClass.isNull(lookUpEdit_MACH_CD.Text)) | |
126 | + { | |
127 | + lookUpEdit_MACH_CD.Focus(); | |
128 | + throw new Exception("설비를 선택하십시오."); | |
129 | + } | |
130 | + if (UtilClass.isNull(lookUpEdit_MAT_CD.EditValue)) | |
131 | + { | |
132 | + lookUpEdit_MAT_CD.Focus(); | |
133 | + throw new Exception("보수품을 선택하십시오."); | |
134 | + } | |
135 | + if (UtilClass.isNull(textEdit_WORK_DESC.EditValue)) | |
136 | + { | |
137 | + textEdit_WORK_DESC.Focus(); | |
138 | + throw new Exception("작업내용을 입력하십시오."); | |
139 | + } | |
140 | + | |
141 | + //m_ITEM_CD = UtilClass.toStr(lookUpEdit_TYPE_CD.EditValue) + | |
142 | + // UtilClass.toStr(lookUpEdit_NAME_CD.EditValue) + | |
143 | + // UtilClass.toStr(lookUpEdit_COLOR_CD.EditValue) + | |
144 | + // UtilClass.toFloat(textEdit_THICK_mm.Text).ToString("n2") + | |
145 | + // UtilClass.toFloat(textEdit_WIDTH_mm.Text).ToString("n0"); | |
146 | + | |
147 | + | |
148 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] | |
149 | + { | |
150 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, m_comp_cd), | |
151 | + ClientClass.CreateSqlParameter("MACH_CD", SqlDbType.NVarChar, lookUpEdit_MACH_CD.EditValue), | |
152 | + ClientClass.CreateSqlParameter("AS_DT", SqlDbType.NVarChar, dateEdit_AS_DT.DateTime.ToString("yyyy-MM-dd")), | |
153 | + ClientClass.CreateSqlParameter("AS_SEQ", SqlDbType.Int, 0), | |
154 | + ClientClass.CreateSqlParameter("AS_KIND_CD", SqlDbType.NVarChar, lookUpEdit_ASKIND_CD.EditValue), | |
155 | + ClientClass.CreateSqlParameter("MAT_CD", SqlDbType.NVarChar, lookUpEdit_MAT_CD.EditValue), | |
156 | + ClientClass.CreateSqlParameter("AS_CUSTNM", SqlDbType.NVarChar, textEdit_AS_CUSTNM.Text), | |
157 | + ClientClass.CreateSqlParameter("AS_TEL", SqlDbType.NVarChar, textEdit_AS_TEL.Text), | |
158 | + ClientClass.CreateSqlParameter("AS_MANAGER", SqlDbType.NVarChar, textEdit_ASMANAGER.Text), | |
159 | + ClientClass.CreateSqlParameter("AS_MANAGERTEL", SqlDbType.NVarChar, textEdit_MANAGERTEL.Text), | |
160 | + ClientClass.CreateSqlParameter("AS_MY", SqlDbType.Float, UtilClass.toFloat(textEdit_AS_MY.Text)), | |
161 | + ClientClass.CreateSqlParameter("AS_VAT_MY", SqlDbType.Float, UtilClass.toFloat(textEdit_AS_VAT_MY.Text)), | |
162 | + ClientClass.CreateSqlParameter("AS_SUM_MY", SqlDbType.Float, UtilClass.toFloat(textEdit_AS_SUM_MY.Text)), | |
163 | + ClientClass.CreateSqlParameter("AS_WORK_DESC", SqlDbType.NVarChar, textEdit_WORK_DESC.Text), | |
164 | + ClientClass.CreateSqlParameter("AS_M_RMK", SqlDbType.NVarChar, textEdit_M_RMK.Text), | |
165 | + | |
166 | + ClientClass.CreateSqlParameter("REG_ID", SqlDbType.NVarChar, ConstClass._USR_ID), | |
167 | + ClientClass.CreateSqlParameter("TYPE", SqlDbType.NVarChar, m_Type), | |
168 | + ClientClass.CreateSqlParameter("RUN_RESULT", SqlDbType.NVarChar, "", ParameterDirection.Output, 1000) | |
169 | + }; | |
170 | + ResultData result = ClientClass.SetData("SaveMachineASManagerPopup", aParam); | |
171 | + if (result.isError || !UtilClass.isNull(result.ResultValue)) | |
172 | + { | |
173 | + throw new Exception(result.ResultValue); | |
174 | + } | |
175 | + | |
176 | + this.Cursor = Cursors.Arrow; | |
177 | + MessageBox.Show("정상적으로 저장하였습니다."); | |
178 | + | |
179 | + if (candClose) | |
180 | + { | |
181 | + this.DialogResult = DialogResult.Yes; | |
182 | + this.Close(); | |
183 | + } | |
184 | + } | |
185 | + catch (Exception ex) | |
186 | + { | |
187 | + this.Cursor = Cursors.Arrow; | |
188 | + MessageBox.Show(ex.Message); | |
189 | + } | |
190 | + } | |
191 | + | |
192 | + } | |
193 | + | |
194 | + | |
195 | +} | |
196 | + (No newline at end of file) |
+++ .svn/pristine/00/00db93a9fa1ad2ce57246aa13da04a70aa5e11ae.svn-base
Binary file is not shown |
+++ .svn/pristine/02/02b9397ee8ad8016f852e792d1284f07bdf0be99.svn-base
... | ... | @@ -0,0 +1,19 @@ |
1 | +DevExpress.XtraEditors.CheckEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
2 | +DevExpress.XtraEditors.Repository.RepositoryItemDateEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
3 | +DevExpress.XtraEditors.TextEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
4 | +DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
5 | +DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
6 | +DevExpress.XtraEditors.PictureEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
7 | +DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
8 | +DevExpress.XtraBars.BarManager, DevExpress.XtraBars.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
9 | +DevExpress.XtraEditors.ProgressBarControl, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
10 | +DevExpress.XtraEditors.ComboBoxEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
11 | +DevExpress.XtraTreeList.TreeList, DevExpress.XtraTreeList.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
12 | +DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
13 | +DevExpress.XtraEditors.LookUpEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
14 | +DevExpress.XtraEditors.DateEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
15 | +DevExpress.XtraEditors.Repository.RepositoryItemComboBox, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
16 | +DevExpress.XtraEditors.Repository.RepositoryItemTextEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
17 | +DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
18 | +DevExpress.XtraEditors.ButtonEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a | |
19 | +DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a |
+++ .svn/pristine/04/043fbf98c9fb9dc94549c09369268218696d5d86.svn-base
... | ... | @@ -0,0 +1,4381 @@ |
1 | +namespace HANMI_J_SALE | |
2 | +{ | |
3 | + partial class TaxBillByPopbill | |
4 | + { | |
5 | + /// <summary> | |
6 | + /// Required designer variable. | |
7 | + /// </summary> | |
8 | + private System.ComponentModel.IContainer components = null; | |
9 | + | |
10 | + /// <summary> | |
11 | + /// Clean up any resources being used. | |
12 | + /// </summary> | |
13 | + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
14 | + protected override void Dispose(bool disposing) | |
15 | + { | |
16 | + if (disposing && (components != null)) | |
17 | + { | |
18 | + components.Dispose(); | |
19 | + } | |
20 | + base.Dispose(disposing); | |
21 | + } | |
22 | + | |
23 | + #region Windows Form Designer generated code | |
24 | + | |
25 | + /// <summary> | |
26 | + /// Required method for Designer support - do not modify | |
27 | + /// the contents of this method with the code editor. | |
28 | + /// </summary> | |
29 | + private void InitializeComponent() | |
30 | + { | |
31 | + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TaxBillByPopbill)); | |
32 | + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject(); | |
33 | + this.panelControl_Search = new DevExpress.XtraEditors.PanelControl(); | |
34 | + this.simpleButton_Popbill = new DevExpress.XtraEditors.SimpleButton(); | |
35 | + this.checkEdit_Card = new DevExpress.XtraEditors.CheckEdit(); | |
36 | + this.panelControl8 = new DevExpress.XtraEditors.PanelControl(); | |
37 | + this.panelControl9 = new DevExpress.XtraEditors.PanelControl(); | |
38 | + this.checkEdit_Maked = new DevExpress.XtraEditors.CheckEdit(); | |
39 | + this.checkEdit_NotMake = new DevExpress.XtraEditors.CheckEdit(); | |
40 | + this.labelControl9 = new DevExpress.XtraEditors.LabelControl(); | |
41 | + this.panelControl5 = new DevExpress.XtraEditors.PanelControl(); | |
42 | + this.lookUpEdit_SIGN_GUBUN = new DevExpress.XtraEditors.LookUpEdit(); | |
43 | + this.labelControl7 = new DevExpress.XtraEditors.LabelControl(); | |
44 | + this.panelControl4 = new DevExpress.XtraEditors.PanelControl(); | |
45 | + this.labelControl_Point = new DevExpress.XtraEditors.LabelControl(); | |
46 | + this.labelControl25 = new DevExpress.XtraEditors.LabelControl(); | |
47 | + this.panelControl_Cust = new DevExpress.XtraEditors.PanelControl(); | |
48 | + this.buttonEdit_CUST_NM = new DevExpress.XtraEditors.ButtonEdit(); | |
49 | + this.labelControl_CUST_CD = new DevExpress.XtraEditors.LabelControl(); | |
50 | + this.labelControl27 = new DevExpress.XtraEditors.LabelControl(); | |
51 | + this.panelControl_Date = new DevExpress.XtraEditors.PanelControl(); | |
52 | + this.labelControl2 = new DevExpress.XtraEditors.LabelControl(); | |
53 | + this.dateEdit_SDATE = new DevExpress.XtraEditors.DateEdit(); | |
54 | + this.dateEdit_FDATE = new DevExpress.XtraEditors.DateEdit(); | |
55 | + this.labelControl1 = new DevExpress.XtraEditors.LabelControl(); | |
56 | + this.checkEdit_NotEmail = new DevExpress.XtraEditors.CheckEdit(); | |
57 | + this.xtraTabControl_Tab = new DevExpress.XtraTab.XtraTabControl(); | |
58 | + this.xtraTabPage_Tab1 = new DevExpress.XtraTab.XtraTabPage(); | |
59 | + this.xtraTabControl_TaxBill = new DevExpress.XtraTab.XtraTabControl(); | |
60 | + this.xtraTabPage_Batch = new DevExpress.XtraTab.XtraTabPage(); | |
61 | + this.gridControl_TaxBill_Maked = new DevExpress.XtraGrid.GridControl(); | |
62 | + this.gridView_TaxBill_Maked = new DevExpress.XtraGrid.Views.Grid.GridView(); | |
63 | + this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
64 | + this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
65 | + this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
66 | + this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
67 | + this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
68 | + this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
69 | + this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
70 | + this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
71 | + this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
72 | + this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
73 | + this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
74 | + this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
75 | + this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
76 | + this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
77 | + this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
78 | + this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
79 | + this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
80 | + this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
81 | + this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
82 | + this.gridControl_TaxBill_NotMake = new DevExpress.XtraGrid.GridControl(); | |
83 | + this.gridView_TaxBill_NotMake = new DevExpress.XtraGrid.Views.Grid.GridView(); | |
84 | + this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
85 | + this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
86 | + this.gridColumn_CUST_NM = new DevExpress.XtraGrid.Columns.GridColumn(); | |
87 | + this.gridColumn_ITEM_NM = new DevExpress.XtraGrid.Columns.GridColumn(); | |
88 | + this.gridColumn_ORDER_NORM = new DevExpress.XtraGrid.Columns.GridColumn(); | |
89 | + this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
90 | + this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
91 | + this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
92 | + this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
93 | + this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
94 | + this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
95 | + this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
96 | + this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
97 | + this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
98 | + this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
99 | + this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
100 | + this.xtraTabPage_Etc = new DevExpress.XtraTab.XtraTabPage(); | |
101 | + this.gridControl_Etc = new DevExpress.XtraGrid.GridControl(); | |
102 | + this.gridView_Etc = new DevExpress.XtraGrid.Views.Grid.GridView(); | |
103 | + this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
104 | + this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
105 | + this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
106 | + this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
107 | + this.gridColumn64 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
108 | + this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
109 | + this.gridColumn77 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
110 | + this.gridColumn76 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
111 | + this.gridColumn75 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
112 | + this.gridColumn74 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
113 | + this.gridColumn73 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
114 | + this.gridColumn72 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
115 | + this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
116 | + this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
117 | + this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
118 | + this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
119 | + this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
120 | + this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
121 | + this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
122 | + this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
123 | + this.gridColumn58 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
124 | + this.gridColumn59 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
125 | + this.gridColumn60 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
126 | + this.gridColumn61 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
127 | + this.gridColumn62 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
128 | + this.gridColumn63 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
129 | + this.panelControl2 = new DevExpress.XtraEditors.PanelControl(); | |
130 | + this.simpleButton_SelectNone = new DevExpress.XtraEditors.SimpleButton(); | |
131 | + this.simpleButton_SelectAll = new DevExpress.XtraEditors.SimpleButton(); | |
132 | + this.simpleButton_Make = new DevExpress.XtraEditors.SimpleButton(); | |
133 | + this.panelControl_TAX_DT = new DevExpress.XtraEditors.PanelControl(); | |
134 | + this.dateEdit_Date = new DevExpress.XtraEditors.DateEdit(); | |
135 | + this.labelControl4 = new DevExpress.XtraEditors.LabelControl(); | |
136 | + this.panelControl_TAX_TYPE = new DevExpress.XtraEditors.PanelControl(); | |
137 | + this.lookUpEdit_TAX_TYPE = new DevExpress.XtraEditors.LookUpEdit(); | |
138 | + this.labelControl5 = new DevExpress.XtraEditors.LabelControl(); | |
139 | + this.panelControl_REQ_TYPE = new DevExpress.XtraEditors.PanelControl(); | |
140 | + this.lookUpEdit_TAX_REQ_TYPE = new DevExpress.XtraEditors.LookUpEdit(); | |
141 | + this.labelControl3 = new DevExpress.XtraEditors.LabelControl(); | |
142 | + this.xtraTabPage_Tab2 = new DevExpress.XtraTab.XtraTabPage(); | |
143 | + this.gridControl_Cust = new DevExpress.XtraGrid.GridControl(); | |
144 | + this.gridView_Cust = new DevExpress.XtraGrid.Views.Grid.GridView(); | |
145 | + this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
146 | + this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
147 | + this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
148 | + this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
149 | + this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
150 | + this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
151 | + this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
152 | + this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
153 | + this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
154 | + this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
155 | + this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
156 | + this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
157 | + this.panelControl10 = new DevExpress.XtraEditors.PanelControl(); | |
158 | + this.groupControl_Cust = new DevExpress.XtraEditors.GroupControl(); | |
159 | + this.simpleButton_CustSave = new DevExpress.XtraEditors.SimpleButton(); | |
160 | + this.panelControl26 = new DevExpress.XtraEditors.PanelControl(); | |
161 | + this.textEdit_CUST_BIZ_NO = new DevExpress.XtraEditors.TextEdit(); | |
162 | + this.labelControl23 = new DevExpress.XtraEditors.LabelControl(); | |
163 | + this.panelControl35 = new DevExpress.XtraEditors.PanelControl(); | |
164 | + this.textEdit_CUST_MGR_EMAIL = new DevExpress.XtraEditors.TextEdit(); | |
165 | + this.labelControl31 = new DevExpress.XtraEditors.LabelControl(); | |
166 | + this.panelControl40 = new DevExpress.XtraEditors.PanelControl(); | |
167 | + this.textEdit_CUST_MGR_NM = new DevExpress.XtraEditors.TextEdit(); | |
168 | + this.labelControl36 = new DevExpress.XtraEditors.LabelControl(); | |
169 | + this.panelControl39 = new DevExpress.XtraEditors.PanelControl(); | |
170 | + this.textEdit_CUST_MGR_TEL_NO = new DevExpress.XtraEditors.TextEdit(); | |
171 | + this.labelControl35 = new DevExpress.XtraEditors.LabelControl(); | |
172 | + this.panelControl31 = new DevExpress.XtraEditors.PanelControl(); | |
173 | + this.textEdit_CUST_FAX_NO = new DevExpress.XtraEditors.TextEdit(); | |
174 | + this.labelControl26 = new DevExpress.XtraEditors.LabelControl(); | |
175 | + this.panelControl32 = new DevExpress.XtraEditors.PanelControl(); | |
176 | + this.textEdit_CUST_EVNT_NM = new DevExpress.XtraEditors.TextEdit(); | |
177 | + this.labelControl28 = new DevExpress.XtraEditors.LabelControl(); | |
178 | + this.panelControl33 = new DevExpress.XtraEditors.PanelControl(); | |
179 | + this.textEdit_CUST_COND_NM = new DevExpress.XtraEditors.TextEdit(); | |
180 | + this.labelControl29 = new DevExpress.XtraEditors.LabelControl(); | |
181 | + this.panelControl34 = new DevExpress.XtraEditors.PanelControl(); | |
182 | + this.textEdit_CUST_ADDR1 = new DevExpress.XtraEditors.TextEdit(); | |
183 | + this.labelControl30 = new DevExpress.XtraEditors.LabelControl(); | |
184 | + this.panelControl41 = new DevExpress.XtraEditors.PanelControl(); | |
185 | + this.textEdit_CUST_OWNER_NM = new DevExpress.XtraEditors.TextEdit(); | |
186 | + this.labelControl37 = new DevExpress.XtraEditors.LabelControl(); | |
187 | + this.panelControl42 = new DevExpress.XtraEditors.PanelControl(); | |
188 | + this.textEdit_CUST_NM = new DevExpress.XtraEditors.TextEdit(); | |
189 | + this.labelControl38 = new DevExpress.XtraEditors.LabelControl(); | |
190 | + this.groupControl1 = new DevExpress.XtraEditors.GroupControl(); | |
191 | + this.simpleButton_CompSave = new DevExpress.XtraEditors.SimpleButton(); | |
192 | + this.panelControl12 = new DevExpress.XtraEditors.PanelControl(); | |
193 | + this.textEdit_BIZ_NO = new DevExpress.XtraEditors.TextEdit(); | |
194 | + this.labelControl6 = new DevExpress.XtraEditors.LabelControl(); | |
195 | + this.panelControl24 = new DevExpress.XtraEditors.PanelControl(); | |
196 | + this.textEdit_TB_ACCT_NO = new DevExpress.XtraEditors.TextEdit(); | |
197 | + this.labelControl21 = new DevExpress.XtraEditors.LabelControl(); | |
198 | + this.panelControl22 = new DevExpress.XtraEditors.PanelControl(); | |
199 | + this.textEdit_TB_USR_PWD = new DevExpress.XtraEditors.TextEdit(); | |
200 | + this.labelControl19 = new DevExpress.XtraEditors.LabelControl(); | |
201 | + this.panelControl18 = new DevExpress.XtraEditors.PanelControl(); | |
202 | + this.textEdit_FAX_NO = new DevExpress.XtraEditors.TextEdit(); | |
203 | + this.labelControl15 = new DevExpress.XtraEditors.LabelControl(); | |
204 | + this.panelControl16 = new DevExpress.XtraEditors.PanelControl(); | |
205 | + this.textEdit_EVNT_NM = new DevExpress.XtraEditors.TextEdit(); | |
206 | + this.labelControl13 = new DevExpress.XtraEditors.LabelControl(); | |
207 | + this.panelControl14 = new DevExpress.XtraEditors.PanelControl(); | |
208 | + this.textEdit_COND_NM = new DevExpress.XtraEditors.TextEdit(); | |
209 | + this.labelControl11 = new DevExpress.XtraEditors.LabelControl(); | |
210 | + this.panelControl20 = new DevExpress.XtraEditors.PanelControl(); | |
211 | + this.textEdit_ADDR1 = new DevExpress.XtraEditors.TextEdit(); | |
212 | + this.labelControl17 = new DevExpress.XtraEditors.LabelControl(); | |
213 | + this.panelControl19 = new DevExpress.XtraEditors.PanelControl(); | |
214 | + this.textEdit_EMAIL = new DevExpress.XtraEditors.TextEdit(); | |
215 | + this.labelControl16 = new DevExpress.XtraEditors.LabelControl(); | |
216 | + this.panelControl25 = new DevExpress.XtraEditors.PanelControl(); | |
217 | + this.textEdit_TB_ACCT_NM = new DevExpress.XtraEditors.TextEdit(); | |
218 | + this.labelControl22 = new DevExpress.XtraEditors.LabelControl(); | |
219 | + this.panelControl23 = new DevExpress.XtraEditors.PanelControl(); | |
220 | + this.textEdit_TB_BANK_NM = new DevExpress.XtraEditors.TextEdit(); | |
221 | + this.labelControl20 = new DevExpress.XtraEditors.LabelControl(); | |
222 | + this.panelControl21 = new DevExpress.XtraEditors.PanelControl(); | |
223 | + this.textEdit_TB_USR_ID = new DevExpress.XtraEditors.TextEdit(); | |
224 | + this.labelControl18 = new DevExpress.XtraEditors.LabelControl(); | |
225 | + this.panelControl17 = new DevExpress.XtraEditors.PanelControl(); | |
226 | + this.textEdit_TEL_NO = new DevExpress.XtraEditors.TextEdit(); | |
227 | + this.labelControl14 = new DevExpress.XtraEditors.LabelControl(); | |
228 | + this.panelControl15 = new DevExpress.XtraEditors.PanelControl(); | |
229 | + this.textEdit_TB_USR_NM = new DevExpress.XtraEditors.TextEdit(); | |
230 | + this.labelControl12 = new DevExpress.XtraEditors.LabelControl(); | |
231 | + this.panelControl13 = new DevExpress.XtraEditors.PanelControl(); | |
232 | + this.textEdit_OWNER_NM = new DevExpress.XtraEditors.TextEdit(); | |
233 | + this.labelControl10 = new DevExpress.XtraEditors.LabelControl(); | |
234 | + this.panelControl11 = new DevExpress.XtraEditors.PanelControl(); | |
235 | + this.textEdit_COMP_NM = new DevExpress.XtraEditors.TextEdit(); | |
236 | + this.labelControl8 = new DevExpress.XtraEditors.LabelControl(); | |
237 | + this.panelControl7 = new DevExpress.XtraEditors.PanelControl(); | |
238 | + this.xtraTabPage_Tab3 = new DevExpress.XtraTab.XtraTabPage(); | |
239 | + this.xtraTabControl_Send = new DevExpress.XtraTab.XtraTabControl(); | |
240 | + this.xtraTabPage_NotSend = new DevExpress.XtraTab.XtraTabPage(); | |
241 | + this.gridControl_NotSendList = new DevExpress.XtraGrid.GridControl(); | |
242 | + this.gridView_NotSendList = new DevExpress.XtraGrid.Views.Grid.GridView(); | |
243 | + this.gridColumn65 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
244 | + this.gridColumn66 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
245 | + this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
246 | + this.gridColumn68 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
247 | + this.gridColumn69 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
248 | + this.gridColumn70 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
249 | + this.gridColumn71 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
250 | + this.gridColumn78 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
251 | + this.gridColumn79 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
252 | + this.gridColumn80 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
253 | + this.gridColumn81 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
254 | + this.gridColumn82 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
255 | + this.gridColumn83 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
256 | + this.gridColumn84 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
257 | + this.gridColumn85 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
258 | + this.gridColumn86 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
259 | + this.gridColumn87 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
260 | + this.gridColumn88 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
261 | + this.gridColumn89 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
262 | + this.panelControl1 = new DevExpress.XtraEditors.PanelControl(); | |
263 | + this.progressBarControl_Send = new DevExpress.XtraEditors.ProgressBarControl(); | |
264 | + this.simpleButton_SendSelectNone = new DevExpress.XtraEditors.SimpleButton(); | |
265 | + this.simpleButton_SendSelectAll = new DevExpress.XtraEditors.SimpleButton(); | |
266 | + this.simpleButton_Send = new DevExpress.XtraEditors.SimpleButton(); | |
267 | + this.xtraTabPage_Send = new DevExpress.XtraTab.XtraTabPage(); | |
268 | + this.gridControl_Sended = new DevExpress.XtraGrid.GridControl(); | |
269 | + this.gridView_Sended = new DevExpress.XtraGrid.Views.Grid.GridView(); | |
270 | + this.gridColumn90 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
271 | + this.gridColumn91 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
272 | + this.gridColumn92 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
273 | + this.gridColumn93 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
274 | + this.gridColumn94 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
275 | + this.gridColumn95 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
276 | + this.gridColumn96 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
277 | + this.gridColumn97 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
278 | + this.gridColumn98 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
279 | + this.gridColumn99 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
280 | + this.gridColumn109 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
281 | + this.gridColumn100 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
282 | + this.gridColumn101 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
283 | + this.gridColumn102 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
284 | + this.gridColumn103 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
285 | + this.gridColumn104 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
286 | + this.gridColumn105 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
287 | + this.gridColumn106 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
288 | + this.gridColumn107 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
289 | + this.gridColumn108 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
290 | + this.gridColumn110 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
291 | + this.gridColumn111 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
292 | + this.gridColumn112 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
293 | + this.panelControl3 = new DevExpress.XtraEditors.PanelControl(); | |
294 | + this.progressBarControl_Sended = new DevExpress.XtraEditors.ProgressBarControl(); | |
295 | + this.simpleButton_SendedSelectNone = new DevExpress.XtraEditors.SimpleButton(); | |
296 | + this.simpleButton_SendedSelectAll = new DevExpress.XtraEditors.SimpleButton(); | |
297 | + this.simpleButton_CancelSend = new DevExpress.XtraEditors.SimpleButton(); | |
298 | + this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage(); | |
299 | + this.gridControl_PopBill = new DevExpress.XtraGrid.GridControl(); | |
300 | + this.gridView_PopBill = new DevExpress.XtraGrid.Views.Grid.GridView(); | |
301 | + this.gridColumn114 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
302 | + this.gridColumn115 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
303 | + this.gridColumn116 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
304 | + this.gridColumn113 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
305 | + this.gridColumn117 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
306 | + this.gridColumn124 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
307 | + this.gridColumn118 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
308 | + this.gridColumn119 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
309 | + this.gridColumn120 = new DevExpress.XtraGrid.Columns.GridColumn(); | |
310 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_N0)).BeginInit(); | |
311 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_N1)).BeginInit(); | |
312 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_N2)).BeginInit(); | |
313 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_N3)).BeginInit(); | |
314 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_N4)).BeginInit(); | |
315 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_DT)).BeginInit(); | |
316 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_DT.CalendarTimeProperties)).BeginInit(); | |
317 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_CheckYN)).BeginInit(); | |
318 | + ((System.ComponentModel.ISupportInitialize)(this.m_GridPopupMenu)).BeginInit(); | |
319 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_Search)).BeginInit(); | |
320 | + this.panelControl_Search.SuspendLayout(); | |
321 | + ((System.ComponentModel.ISupportInitialize)(this.checkEdit_Card.Properties)).BeginInit(); | |
322 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit(); | |
323 | + this.panelControl8.SuspendLayout(); | |
324 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit(); | |
325 | + this.panelControl9.SuspendLayout(); | |
326 | + ((System.ComponentModel.ISupportInitialize)(this.checkEdit_Maked.Properties)).BeginInit(); | |
327 | + ((System.ComponentModel.ISupportInitialize)(this.checkEdit_NotMake.Properties)).BeginInit(); | |
328 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit(); | |
329 | + this.panelControl5.SuspendLayout(); | |
330 | + ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_SIGN_GUBUN.Properties)).BeginInit(); | |
331 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit(); | |
332 | + this.panelControl4.SuspendLayout(); | |
333 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_Cust)).BeginInit(); | |
334 | + this.panelControl_Cust.SuspendLayout(); | |
335 | + ((System.ComponentModel.ISupportInitialize)(this.buttonEdit_CUST_NM.Properties)).BeginInit(); | |
336 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_Date)).BeginInit(); | |
337 | + this.panelControl_Date.SuspendLayout(); | |
338 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SDATE.Properties.CalendarTimeProperties)).BeginInit(); | |
339 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SDATE.Properties)).BeginInit(); | |
340 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_FDATE.Properties.CalendarTimeProperties)).BeginInit(); | |
341 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_FDATE.Properties)).BeginInit(); | |
342 | + ((System.ComponentModel.ISupportInitialize)(this.checkEdit_NotEmail.Properties)).BeginInit(); | |
343 | + ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_Tab)).BeginInit(); | |
344 | + this.xtraTabControl_Tab.SuspendLayout(); | |
345 | + this.xtraTabPage_Tab1.SuspendLayout(); | |
346 | + ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_TaxBill)).BeginInit(); | |
347 | + this.xtraTabControl_TaxBill.SuspendLayout(); | |
348 | + this.xtraTabPage_Batch.SuspendLayout(); | |
349 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_TaxBill_Maked)).BeginInit(); | |
350 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_TaxBill_Maked)).BeginInit(); | |
351 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_TaxBill_NotMake)).BeginInit(); | |
352 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_TaxBill_NotMake)).BeginInit(); | |
353 | + this.xtraTabPage_Etc.SuspendLayout(); | |
354 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_Etc)).BeginInit(); | |
355 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_Etc)).BeginInit(); | |
356 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit(); | |
357 | + this.panelControl2.SuspendLayout(); | |
358 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_TAX_DT)).BeginInit(); | |
359 | + this.panelControl_TAX_DT.SuspendLayout(); | |
360 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_Date.Properties.CalendarTimeProperties)).BeginInit(); | |
361 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_Date.Properties)).BeginInit(); | |
362 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_TAX_TYPE)).BeginInit(); | |
363 | + this.panelControl_TAX_TYPE.SuspendLayout(); | |
364 | + ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_TAX_TYPE.Properties)).BeginInit(); | |
365 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_REQ_TYPE)).BeginInit(); | |
366 | + this.panelControl_REQ_TYPE.SuspendLayout(); | |
367 | + ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_TAX_REQ_TYPE.Properties)).BeginInit(); | |
368 | + this.xtraTabPage_Tab2.SuspendLayout(); | |
369 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_Cust)).BeginInit(); | |
370 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_Cust)).BeginInit(); | |
371 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit(); | |
372 | + this.panelControl10.SuspendLayout(); | |
373 | + ((System.ComponentModel.ISupportInitialize)(this.groupControl_Cust)).BeginInit(); | |
374 | + this.groupControl_Cust.SuspendLayout(); | |
375 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl26)).BeginInit(); | |
376 | + this.panelControl26.SuspendLayout(); | |
377 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_BIZ_NO.Properties)).BeginInit(); | |
378 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl35)).BeginInit(); | |
379 | + this.panelControl35.SuspendLayout(); | |
380 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_MGR_EMAIL.Properties)).BeginInit(); | |
381 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl40)).BeginInit(); | |
382 | + this.panelControl40.SuspendLayout(); | |
383 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_MGR_NM.Properties)).BeginInit(); | |
384 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl39)).BeginInit(); | |
385 | + this.panelControl39.SuspendLayout(); | |
386 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_MGR_TEL_NO.Properties)).BeginInit(); | |
387 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl31)).BeginInit(); | |
388 | + this.panelControl31.SuspendLayout(); | |
389 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_FAX_NO.Properties)).BeginInit(); | |
390 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl32)).BeginInit(); | |
391 | + this.panelControl32.SuspendLayout(); | |
392 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_EVNT_NM.Properties)).BeginInit(); | |
393 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl33)).BeginInit(); | |
394 | + this.panelControl33.SuspendLayout(); | |
395 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_COND_NM.Properties)).BeginInit(); | |
396 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl34)).BeginInit(); | |
397 | + this.panelControl34.SuspendLayout(); | |
398 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_ADDR1.Properties)).BeginInit(); | |
399 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl41)).BeginInit(); | |
400 | + this.panelControl41.SuspendLayout(); | |
401 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_OWNER_NM.Properties)).BeginInit(); | |
402 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl42)).BeginInit(); | |
403 | + this.panelControl42.SuspendLayout(); | |
404 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_NM.Properties)).BeginInit(); | |
405 | + ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit(); | |
406 | + this.groupControl1.SuspendLayout(); | |
407 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).BeginInit(); | |
408 | + this.panelControl12.SuspendLayout(); | |
409 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_BIZ_NO.Properties)).BeginInit(); | |
410 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl24)).BeginInit(); | |
411 | + this.panelControl24.SuspendLayout(); | |
412 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_ACCT_NO.Properties)).BeginInit(); | |
413 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl22)).BeginInit(); | |
414 | + this.panelControl22.SuspendLayout(); | |
415 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_USR_PWD.Properties)).BeginInit(); | |
416 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl18)).BeginInit(); | |
417 | + this.panelControl18.SuspendLayout(); | |
418 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_FAX_NO.Properties)).BeginInit(); | |
419 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).BeginInit(); | |
420 | + this.panelControl16.SuspendLayout(); | |
421 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_EVNT_NM.Properties)).BeginInit(); | |
422 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).BeginInit(); | |
423 | + this.panelControl14.SuspendLayout(); | |
424 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_COND_NM.Properties)).BeginInit(); | |
425 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl20)).BeginInit(); | |
426 | + this.panelControl20.SuspendLayout(); | |
427 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_ADDR1.Properties)).BeginInit(); | |
428 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl19)).BeginInit(); | |
429 | + this.panelControl19.SuspendLayout(); | |
430 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_EMAIL.Properties)).BeginInit(); | |
431 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl25)).BeginInit(); | |
432 | + this.panelControl25.SuspendLayout(); | |
433 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_ACCT_NM.Properties)).BeginInit(); | |
434 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl23)).BeginInit(); | |
435 | + this.panelControl23.SuspendLayout(); | |
436 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_BANK_NM.Properties)).BeginInit(); | |
437 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl21)).BeginInit(); | |
438 | + this.panelControl21.SuspendLayout(); | |
439 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_USR_ID.Properties)).BeginInit(); | |
440 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl17)).BeginInit(); | |
441 | + this.panelControl17.SuspendLayout(); | |
442 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TEL_NO.Properties)).BeginInit(); | |
443 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).BeginInit(); | |
444 | + this.panelControl15.SuspendLayout(); | |
445 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_USR_NM.Properties)).BeginInit(); | |
446 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).BeginInit(); | |
447 | + this.panelControl13.SuspendLayout(); | |
448 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_OWNER_NM.Properties)).BeginInit(); | |
449 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).BeginInit(); | |
450 | + this.panelControl11.SuspendLayout(); | |
451 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_COMP_NM.Properties)).BeginInit(); | |
452 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit(); | |
453 | + this.panelControl7.SuspendLayout(); | |
454 | + this.xtraTabPage_Tab3.SuspendLayout(); | |
455 | + ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_Send)).BeginInit(); | |
456 | + this.xtraTabControl_Send.SuspendLayout(); | |
457 | + this.xtraTabPage_NotSend.SuspendLayout(); | |
458 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_NotSendList)).BeginInit(); | |
459 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_NotSendList)).BeginInit(); | |
460 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit(); | |
461 | + this.panelControl1.SuspendLayout(); | |
462 | + ((System.ComponentModel.ISupportInitialize)(this.progressBarControl_Send.Properties)).BeginInit(); | |
463 | + this.xtraTabPage_Send.SuspendLayout(); | |
464 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_Sended)).BeginInit(); | |
465 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_Sended)).BeginInit(); | |
466 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit(); | |
467 | + this.panelControl3.SuspendLayout(); | |
468 | + ((System.ComponentModel.ISupportInitialize)(this.progressBarControl_Sended.Properties)).BeginInit(); | |
469 | + this.xtraTabPage1.SuspendLayout(); | |
470 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_PopBill)).BeginInit(); | |
471 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_PopBill)).BeginInit(); | |
472 | + this.SuspendLayout(); | |
473 | + // | |
474 | + // m_Repository | |
475 | + // | |
476 | + this.m_Repository.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { | |
477 | + this.m_Repository_N0, | |
478 | + this.m_Repository_N1, | |
479 | + this.m_Repository_N2, | |
480 | + this.m_Repository_N3, | |
481 | + this.m_Repository_N4, | |
482 | + this.m_Repository_DT, | |
483 | + this.m_Repository_CheckYN}); | |
484 | + // | |
485 | + // m_Repository_N0 | |
486 | + // | |
487 | + this.m_Repository_N0.Appearance.Options.UseTextOptions = true; | |
488 | + this.m_Repository_N0.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
489 | + this.m_Repository_N0.AppearanceFocused.Options.UseTextOptions = true; | |
490 | + this.m_Repository_N0.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
491 | + this.m_Repository_N0.Mask.EditMask = "n0"; | |
492 | + this.m_Repository_N0.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; | |
493 | + // | |
494 | + // m_Repository_N1 | |
495 | + // | |
496 | + this.m_Repository_N1.Appearance.Options.UseTextOptions = true; | |
497 | + this.m_Repository_N1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
498 | + this.m_Repository_N1.AppearanceFocused.Options.UseTextOptions = true; | |
499 | + this.m_Repository_N1.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
500 | + this.m_Repository_N1.Mask.EditMask = "n1"; | |
501 | + this.m_Repository_N1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; | |
502 | + // | |
503 | + // m_Repository_N2 | |
504 | + // | |
505 | + this.m_Repository_N2.Appearance.Options.UseTextOptions = true; | |
506 | + this.m_Repository_N2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
507 | + this.m_Repository_N2.AppearanceFocused.Options.UseTextOptions = true; | |
508 | + this.m_Repository_N2.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
509 | + this.m_Repository_N2.Mask.EditMask = "n2"; | |
510 | + this.m_Repository_N2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; | |
511 | + // | |
512 | + // m_Repository_N3 | |
513 | + // | |
514 | + this.m_Repository_N3.Appearance.Options.UseTextOptions = true; | |
515 | + this.m_Repository_N3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
516 | + this.m_Repository_N3.AppearanceFocused.Options.UseTextOptions = true; | |
517 | + this.m_Repository_N3.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
518 | + this.m_Repository_N3.Mask.EditMask = "n3"; | |
519 | + this.m_Repository_N3.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; | |
520 | + // | |
521 | + // m_Repository_N4 | |
522 | + // | |
523 | + this.m_Repository_N4.Appearance.Options.UseTextOptions = true; | |
524 | + this.m_Repository_N4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
525 | + this.m_Repository_N4.AppearanceFocused.Options.UseTextOptions = true; | |
526 | + this.m_Repository_N4.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
527 | + this.m_Repository_N4.Mask.EditMask = "n4"; | |
528 | + this.m_Repository_N4.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; | |
529 | + // | |
530 | + // m_Repository_DT | |
531 | + // | |
532 | + this.m_Repository_DT.AppearanceDropDown.Options.UseTextOptions = true; | |
533 | + this.m_Repository_DT.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
534 | + this.m_Repository_DT.AppearanceFocused.Options.UseTextOptions = true; | |
535 | + this.m_Repository_DT.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
536 | + this.m_Repository_DT.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; | |
537 | + // | |
538 | + // m_Repository_CheckYN | |
539 | + // | |
540 | + this.m_Repository_CheckYN.Appearance.Options.UseTextOptions = true; | |
541 | + this.m_Repository_CheckYN.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
542 | + this.m_Repository_CheckYN.AppearanceFocused.Options.UseTextOptions = true; | |
543 | + this.m_Repository_CheckYN.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
544 | + // | |
545 | + // panelControl_Search | |
546 | + // | |
547 | + this.panelControl_Search.Controls.Add(this.simpleButton_Popbill); | |
548 | + this.panelControl_Search.Controls.Add(this.checkEdit_Card); | |
549 | + this.panelControl_Search.Controls.Add(this.panelControl8); | |
550 | + this.panelControl_Search.Controls.Add(this.panelControl5); | |
551 | + this.panelControl_Search.Controls.Add(this.panelControl4); | |
552 | + this.panelControl_Search.Controls.Add(this.panelControl_Cust); | |
553 | + this.panelControl_Search.Controls.Add(this.panelControl_Date); | |
554 | + this.panelControl_Search.Dock = System.Windows.Forms.DockStyle.Top; | |
555 | + this.panelControl_Search.Location = new System.Drawing.Point(0, 0); | |
556 | + this.panelControl_Search.Name = "panelControl_Search"; | |
557 | + this.panelControl_Search.Size = new System.Drawing.Size(1924, 70); | |
558 | + this.panelControl_Search.TabIndex = 0; | |
559 | + // | |
560 | + // simpleButton_Popbill | |
561 | + // | |
562 | + this.simpleButton_Popbill.Location = new System.Drawing.Point(968, 5); | |
563 | + this.simpleButton_Popbill.Name = "simpleButton_Popbill"; | |
564 | + this.simpleButton_Popbill.Size = new System.Drawing.Size(104, 27); | |
565 | + this.simpleButton_Popbill.TabIndex = 10; | |
566 | + this.simpleButton_Popbill.Text = "팝빌 바로가기"; | |
567 | + // | |
568 | + // checkEdit_Card | |
569 | + // | |
570 | + this.checkEdit_Card.EnterMoveNextControl = true; | |
571 | + this.checkEdit_Card.Location = new System.Drawing.Point(243, 42); | |
572 | + this.checkEdit_Card.Name = "checkEdit_Card"; | |
573 | + this.checkEdit_Card.Properties.AutoWidth = true; | |
574 | + this.checkEdit_Card.Properties.Caption = "카드결재 포함"; | |
575 | + this.checkEdit_Card.Size = new System.Drawing.Size(100, 19); | |
576 | + this.checkEdit_Card.TabIndex = 3; | |
577 | + // | |
578 | + // panelControl8 | |
579 | + // | |
580 | + this.panelControl8.Appearance.BackColor = System.Drawing.Color.White; | |
581 | + this.panelControl8.Appearance.Options.UseBackColor = true; | |
582 | + this.panelControl8.Controls.Add(this.panelControl9); | |
583 | + this.panelControl8.Controls.Add(this.labelControl9); | |
584 | + this.panelControl8.Location = new System.Drawing.Point(396, 38); | |
585 | + this.panelControl8.Name = "panelControl8"; | |
586 | + this.panelControl8.Size = new System.Drawing.Size(365, 27); | |
587 | + this.panelControl8.TabIndex = 4; | |
588 | + // | |
589 | + // panelControl9 | |
590 | + // | |
591 | + this.panelControl9.Appearance.BackColor = System.Drawing.Color.White; | |
592 | + this.panelControl9.Appearance.Options.UseBackColor = true; | |
593 | + this.panelControl9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; | |
594 | + this.panelControl9.Controls.Add(this.checkEdit_Maked); | |
595 | + this.panelControl9.Controls.Add(this.checkEdit_NotMake); | |
596 | + this.panelControl9.Dock = System.Windows.Forms.DockStyle.Fill; | |
597 | + this.panelControl9.Location = new System.Drawing.Point(92, 2); | |
598 | + this.panelControl9.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat; | |
599 | + this.panelControl9.LookAndFeel.UseDefaultLookAndFeel = false; | |
600 | + this.panelControl9.Name = "panelControl9"; | |
601 | + this.panelControl9.Size = new System.Drawing.Size(271, 23); | |
602 | + this.panelControl9.TabIndex = 8; | |
603 | + // | |
604 | + // checkEdit_Maked | |
605 | + // | |
606 | + this.checkEdit_Maked.Location = new System.Drawing.Point(148, 2); | |
607 | + this.checkEdit_Maked.Name = "checkEdit_Maked"; | |
608 | + this.checkEdit_Maked.Properties.AutoHeight = false; | |
609 | + this.checkEdit_Maked.Properties.Caption = "발행자료"; | |
610 | + this.checkEdit_Maked.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio; | |
611 | + this.checkEdit_Maked.Properties.RadioGroupIndex = 1; | |
612 | + this.checkEdit_Maked.Size = new System.Drawing.Size(67, 19); | |
613 | + this.checkEdit_Maked.TabIndex = 1; | |
614 | + this.checkEdit_Maked.TabStop = false; | |
615 | + // | |
616 | + // checkEdit_NotMake | |
617 | + // | |
618 | + this.checkEdit_NotMake.EditValue = true; | |
619 | + this.checkEdit_NotMake.EnterMoveNextControl = true; | |
620 | + this.checkEdit_NotMake.Location = new System.Drawing.Point(50, 2); | |
621 | + this.checkEdit_NotMake.MenuManager = this.m_BarManager; | |
622 | + this.checkEdit_NotMake.Name = "checkEdit_NotMake"; | |
623 | + this.checkEdit_NotMake.Properties.AutoHeight = false; | |
624 | + this.checkEdit_NotMake.Properties.Caption = "미발행자료"; | |
625 | + this.checkEdit_NotMake.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio; | |
626 | + this.checkEdit_NotMake.Properties.RadioGroupIndex = 1; | |
627 | + this.checkEdit_NotMake.Size = new System.Drawing.Size(90, 19); | |
628 | + this.checkEdit_NotMake.TabIndex = 0; | |
629 | + // | |
630 | + // labelControl9 | |
631 | + // | |
632 | + this.labelControl9.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
633 | + this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
634 | + this.labelControl9.Dock = System.Windows.Forms.DockStyle.Left; | |
635 | + this.labelControl9.Location = new System.Drawing.Point(2, 2); | |
636 | + this.labelControl9.Name = "labelControl9"; | |
637 | + this.labelControl9.Size = new System.Drawing.Size(90, 23); | |
638 | + this.labelControl9.TabIndex = 0; | |
639 | + this.labelControl9.Text = "구분"; | |
640 | + // | |
641 | + // panelControl5 | |
642 | + // | |
643 | + this.panelControl5.Controls.Add(this.lookUpEdit_SIGN_GUBUN); | |
644 | + this.panelControl5.Controls.Add(this.labelControl7); | |
645 | + this.panelControl5.Location = new System.Drawing.Point(25, 38); | |
646 | + this.panelControl5.Name = "panelControl5"; | |
647 | + this.panelControl5.Size = new System.Drawing.Size(212, 27); | |
648 | + this.panelControl5.TabIndex = 2; | |
649 | + // | |
650 | + // lookUpEdit_SIGN_GUBUN | |
651 | + // | |
652 | + this.lookUpEdit_SIGN_GUBUN.Dock = System.Windows.Forms.DockStyle.Fill; | |
653 | + this.lookUpEdit_SIGN_GUBUN.EnterMoveNextControl = true; | |
654 | + this.lookUpEdit_SIGN_GUBUN.Location = new System.Drawing.Point(92, 2); | |
655 | + this.lookUpEdit_SIGN_GUBUN.Name = "lookUpEdit_SIGN_GUBUN"; | |
656 | + this.lookUpEdit_SIGN_GUBUN.Properties.AutoHeight = false; | |
657 | + this.lookUpEdit_SIGN_GUBUN.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
658 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
659 | + this.lookUpEdit_SIGN_GUBUN.Size = new System.Drawing.Size(118, 23); | |
660 | + this.lookUpEdit_SIGN_GUBUN.TabIndex = 1; | |
661 | + // | |
662 | + // labelControl7 | |
663 | + // | |
664 | + this.labelControl7.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
665 | + this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
666 | + this.labelControl7.Dock = System.Windows.Forms.DockStyle.Left; | |
667 | + this.labelControl7.Location = new System.Drawing.Point(2, 2); | |
668 | + this.labelControl7.Name = "labelControl7"; | |
669 | + this.labelControl7.Size = new System.Drawing.Size(90, 23); | |
670 | + this.labelControl7.TabIndex = 0; | |
671 | + this.labelControl7.Text = "결재구분"; | |
672 | + // | |
673 | + // panelControl4 | |
674 | + // | |
675 | + this.panelControl4.Controls.Add(this.labelControl_Point); | |
676 | + this.panelControl4.Controls.Add(this.labelControl25); | |
677 | + this.panelControl4.Location = new System.Drawing.Point(767, 5); | |
678 | + this.panelControl4.Name = "panelControl4"; | |
679 | + this.panelControl4.Size = new System.Drawing.Size(195, 27); | |
680 | + this.panelControl4.TabIndex = 1; | |
681 | + // | |
682 | + // labelControl_Point | |
683 | + // | |
684 | + this.labelControl_Point.Appearance.Font = new System.Drawing.Font("굴림체", 9F, System.Drawing.FontStyle.Bold); | |
685 | + this.labelControl_Point.Appearance.ForeColor = System.Drawing.Color.Red; | |
686 | + this.labelControl_Point.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
687 | + this.labelControl_Point.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
688 | + this.labelControl_Point.Dock = System.Windows.Forms.DockStyle.Fill; | |
689 | + this.labelControl_Point.Location = new System.Drawing.Point(92, 2); | |
690 | + this.labelControl_Point.Name = "labelControl_Point"; | |
691 | + this.labelControl_Point.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
692 | + this.labelControl_Point.Size = new System.Drawing.Size(101, 23); | |
693 | + this.labelControl_Point.TabIndex = 6; | |
694 | + // | |
695 | + // labelControl25 | |
696 | + // | |
697 | + this.labelControl25.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
698 | + this.labelControl25.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
699 | + this.labelControl25.Dock = System.Windows.Forms.DockStyle.Left; | |
700 | + this.labelControl25.Location = new System.Drawing.Point(2, 2); | |
701 | + this.labelControl25.Name = "labelControl25"; | |
702 | + this.labelControl25.Size = new System.Drawing.Size(90, 23); | |
703 | + this.labelControl25.TabIndex = 0; | |
704 | + this.labelControl25.Text = "충전포인트"; | |
705 | + // | |
706 | + // panelControl_Cust | |
707 | + // | |
708 | + this.panelControl_Cust.Controls.Add(this.buttonEdit_CUST_NM); | |
709 | + this.panelControl_Cust.Controls.Add(this.labelControl_CUST_CD); | |
710 | + this.panelControl_Cust.Controls.Add(this.labelControl27); | |
711 | + this.panelControl_Cust.Location = new System.Drawing.Point(396, 5); | |
712 | + this.panelControl_Cust.Name = "panelControl_Cust"; | |
713 | + this.panelControl_Cust.Size = new System.Drawing.Size(365, 27); | |
714 | + this.panelControl_Cust.TabIndex = 1; | |
715 | + // | |
716 | + // buttonEdit_CUST_NM | |
717 | + // | |
718 | + this.buttonEdit_CUST_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
719 | + this.buttonEdit_CUST_NM.Location = new System.Drawing.Point(92, 2); | |
720 | + this.buttonEdit_CUST_NM.MenuManager = this.m_BarManager; | |
721 | + this.buttonEdit_CUST_NM.Name = "buttonEdit_CUST_NM"; | |
722 | + this.buttonEdit_CUST_NM.Properties.AutoHeight = false; | |
723 | + this.buttonEdit_CUST_NM.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
724 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("buttonEdit_CUST_NM.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)}); | |
725 | + this.buttonEdit_CUST_NM.Size = new System.Drawing.Size(208, 23); | |
726 | + this.buttonEdit_CUST_NM.TabIndex = 7; | |
727 | + // | |
728 | + // labelControl_CUST_CD | |
729 | + // | |
730 | + this.labelControl_CUST_CD.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
731 | + this.labelControl_CUST_CD.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
732 | + this.labelControl_CUST_CD.Dock = System.Windows.Forms.DockStyle.Right; | |
733 | + this.labelControl_CUST_CD.Location = new System.Drawing.Point(300, 2); | |
734 | + this.labelControl_CUST_CD.Name = "labelControl_CUST_CD"; | |
735 | + this.labelControl_CUST_CD.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
736 | + this.labelControl_CUST_CD.Size = new System.Drawing.Size(63, 23); | |
737 | + this.labelControl_CUST_CD.TabIndex = 6; | |
738 | + // | |
739 | + // labelControl27 | |
740 | + // | |
741 | + this.labelControl27.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
742 | + this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
743 | + this.labelControl27.Dock = System.Windows.Forms.DockStyle.Left; | |
744 | + this.labelControl27.Location = new System.Drawing.Point(2, 2); | |
745 | + this.labelControl27.Name = "labelControl27"; | |
746 | + this.labelControl27.Size = new System.Drawing.Size(90, 23); | |
747 | + this.labelControl27.TabIndex = 0; | |
748 | + this.labelControl27.Text = "거래선명"; | |
749 | + // | |
750 | + // panelControl_Date | |
751 | + // | |
752 | + this.panelControl_Date.Controls.Add(this.labelControl2); | |
753 | + this.panelControl_Date.Controls.Add(this.dateEdit_SDATE); | |
754 | + this.panelControl_Date.Controls.Add(this.dateEdit_FDATE); | |
755 | + this.panelControl_Date.Controls.Add(this.labelControl1); | |
756 | + this.panelControl_Date.Location = new System.Drawing.Point(25, 5); | |
757 | + this.panelControl_Date.Name = "panelControl_Date"; | |
758 | + this.panelControl_Date.Size = new System.Drawing.Size(365, 27); | |
759 | + this.panelControl_Date.TabIndex = 0; | |
760 | + // | |
761 | + // labelControl2 | |
762 | + // | |
763 | + this.labelControl2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
764 | + this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
765 | + this.labelControl2.Dock = System.Windows.Forms.DockStyle.Fill; | |
766 | + this.labelControl2.Location = new System.Drawing.Point(212, 2); | |
767 | + this.labelControl2.Name = "labelControl2"; | |
768 | + this.labelControl2.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
769 | + this.labelControl2.Size = new System.Drawing.Size(31, 23); | |
770 | + this.labelControl2.TabIndex = 4; | |
771 | + this.labelControl2.Text = "~"; | |
772 | + // | |
773 | + // dateEdit_SDATE | |
774 | + // | |
775 | + this.dateEdit_SDATE.Dock = System.Windows.Forms.DockStyle.Left; | |
776 | + this.dateEdit_SDATE.EditValue = null; | |
777 | + this.dateEdit_SDATE.EnterMoveNextControl = true; | |
778 | + this.dateEdit_SDATE.Location = new System.Drawing.Point(92, 2); | |
779 | + this.dateEdit_SDATE.Name = "dateEdit_SDATE"; | |
780 | + this.dateEdit_SDATE.Properties.Appearance.Options.UseTextOptions = true; | |
781 | + this.dateEdit_SDATE.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
782 | + this.dateEdit_SDATE.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
783 | + this.dateEdit_SDATE.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
784 | + this.dateEdit_SDATE.Properties.AutoHeight = false; | |
785 | + this.dateEdit_SDATE.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
786 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
787 | + this.dateEdit_SDATE.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
788 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
789 | + this.dateEdit_SDATE.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; | |
790 | + this.dateEdit_SDATE.Properties.Mask.UseMaskAsDisplayFormat = true; | |
791 | + this.dateEdit_SDATE.Size = new System.Drawing.Size(120, 23); | |
792 | + this.dateEdit_SDATE.TabIndex = 0; | |
793 | + // | |
794 | + // dateEdit_FDATE | |
795 | + // | |
796 | + this.dateEdit_FDATE.Dock = System.Windows.Forms.DockStyle.Right; | |
797 | + this.dateEdit_FDATE.EditValue = null; | |
798 | + this.dateEdit_FDATE.EnterMoveNextControl = true; | |
799 | + this.dateEdit_FDATE.Location = new System.Drawing.Point(243, 2); | |
800 | + this.dateEdit_FDATE.Name = "dateEdit_FDATE"; | |
801 | + this.dateEdit_FDATE.Properties.Appearance.Options.UseTextOptions = true; | |
802 | + this.dateEdit_FDATE.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
803 | + this.dateEdit_FDATE.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
804 | + this.dateEdit_FDATE.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
805 | + this.dateEdit_FDATE.Properties.AutoHeight = false; | |
806 | + this.dateEdit_FDATE.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
807 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
808 | + this.dateEdit_FDATE.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
809 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
810 | + this.dateEdit_FDATE.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; | |
811 | + this.dateEdit_FDATE.Properties.Mask.UseMaskAsDisplayFormat = true; | |
812 | + this.dateEdit_FDATE.Size = new System.Drawing.Size(120, 23); | |
813 | + this.dateEdit_FDATE.TabIndex = 1; | |
814 | + // | |
815 | + // labelControl1 | |
816 | + // | |
817 | + this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
818 | + this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
819 | + this.labelControl1.Dock = System.Windows.Forms.DockStyle.Left; | |
820 | + this.labelControl1.Location = new System.Drawing.Point(2, 2); | |
821 | + this.labelControl1.Name = "labelControl1"; | |
822 | + this.labelControl1.Size = new System.Drawing.Size(90, 23); | |
823 | + this.labelControl1.TabIndex = 0; | |
824 | + this.labelControl1.Text = "조회일자"; | |
825 | + // | |
826 | + // checkEdit_NotEmail | |
827 | + // | |
828 | + this.checkEdit_NotEmail.Location = new System.Drawing.Point(24, 5); | |
829 | + this.checkEdit_NotEmail.MenuManager = this.m_BarManager; | |
830 | + this.checkEdit_NotEmail.Name = "checkEdit_NotEmail"; | |
831 | + this.checkEdit_NotEmail.Properties.AutoWidth = true; | |
832 | + this.checkEdit_NotEmail.Properties.Caption = "EMAIL 이 없는 자료만 보기"; | |
833 | + this.checkEdit_NotEmail.Size = new System.Drawing.Size(172, 19); | |
834 | + this.checkEdit_NotEmail.TabIndex = 10; | |
835 | + // | |
836 | + // xtraTabControl_Tab | |
837 | + // | |
838 | + this.xtraTabControl_Tab.Dock = System.Windows.Forms.DockStyle.Fill; | |
839 | + this.xtraTabControl_Tab.Location = new System.Drawing.Point(0, 70); | |
840 | + this.xtraTabControl_Tab.Name = "xtraTabControl_Tab"; | |
841 | + this.xtraTabControl_Tab.SelectedTabPage = this.xtraTabPage_Tab1; | |
842 | + this.xtraTabControl_Tab.Size = new System.Drawing.Size(1924, 464); | |
843 | + this.xtraTabControl_Tab.TabIndex = 4; | |
844 | + this.xtraTabControl_Tab.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { | |
845 | + this.xtraTabPage_Tab1, | |
846 | + this.xtraTabPage_Tab2, | |
847 | + this.xtraTabPage_Tab3}); | |
848 | + // | |
849 | + // xtraTabPage_Tab1 | |
850 | + // | |
851 | + this.xtraTabPage_Tab1.Controls.Add(this.xtraTabControl_TaxBill); | |
852 | + this.xtraTabPage_Tab1.Controls.Add(this.panelControl2); | |
853 | + this.xtraTabPage_Tab1.Name = "xtraTabPage_Tab1"; | |
854 | + this.xtraTabPage_Tab1.Size = new System.Drawing.Size(1918, 437); | |
855 | + this.xtraTabPage_Tab1.Text = "매출계산서 발행처리"; | |
856 | + // | |
857 | + // xtraTabControl_TaxBill | |
858 | + // | |
859 | + this.xtraTabControl_TaxBill.Dock = System.Windows.Forms.DockStyle.Fill; | |
860 | + this.xtraTabControl_TaxBill.Location = new System.Drawing.Point(0, 37); | |
861 | + this.xtraTabControl_TaxBill.Name = "xtraTabControl_TaxBill"; | |
862 | + this.xtraTabControl_TaxBill.SelectedTabPage = this.xtraTabPage_Batch; | |
863 | + this.xtraTabControl_TaxBill.Size = new System.Drawing.Size(1918, 400); | |
864 | + this.xtraTabControl_TaxBill.TabIndex = 0; | |
865 | + this.xtraTabControl_TaxBill.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { | |
866 | + this.xtraTabPage_Batch, | |
867 | + this.xtraTabPage_Etc}); | |
868 | + // | |
869 | + // xtraTabPage_Batch | |
870 | + // | |
871 | + this.xtraTabPage_Batch.Controls.Add(this.gridControl_TaxBill_Maked); | |
872 | + this.xtraTabPage_Batch.Controls.Add(this.gridControl_TaxBill_NotMake); | |
873 | + this.xtraTabPage_Batch.Name = "xtraTabPage_Batch"; | |
874 | + this.xtraTabPage_Batch.Size = new System.Drawing.Size(1912, 373); | |
875 | + this.xtraTabPage_Batch.Text = "업체별 일괄발행 처리"; | |
876 | + // | |
877 | + // gridControl_TaxBill_Maked | |
878 | + // | |
879 | + this.gridControl_TaxBill_Maked.ExternalRepository = this.m_Repository; | |
880 | + this.gridControl_TaxBill_Maked.Location = new System.Drawing.Point(841, 173); | |
881 | + this.gridControl_TaxBill_Maked.MainView = this.gridView_TaxBill_Maked; | |
882 | + this.gridControl_TaxBill_Maked.Name = "gridControl_TaxBill_Maked"; | |
883 | + this.gridControl_TaxBill_Maked.Size = new System.Drawing.Size(1081, 241); | |
884 | + this.gridControl_TaxBill_Maked.TabIndex = 3; | |
885 | + this.gridControl_TaxBill_Maked.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { | |
886 | + this.gridView_TaxBill_Maked}); | |
887 | + // | |
888 | + // gridView_TaxBill_Maked | |
889 | + // | |
890 | + this.gridView_TaxBill_Maked.Appearance.FooterPanel.Options.UseFont = true; | |
891 | + this.gridView_TaxBill_Maked.Appearance.HeaderPanel.Options.UseFont = true; | |
892 | + this.gridView_TaxBill_Maked.Appearance.HeaderPanel.Options.UseTextOptions = true; | |
893 | + this.gridView_TaxBill_Maked.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
894 | + this.gridView_TaxBill_Maked.Appearance.Row.Options.UseFont = true; | |
895 | + this.gridView_TaxBill_Maked.ColumnPanelRowHeight = 23; | |
896 | + this.gridView_TaxBill_Maked.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { | |
897 | + this.gridColumn13, | |
898 | + this.gridColumn14, | |
899 | + this.gridColumn16, | |
900 | + this.gridColumn42, | |
901 | + this.gridColumn29, | |
902 | + this.gridColumn30, | |
903 | + this.gridColumn31, | |
904 | + this.gridColumn32, | |
905 | + this.gridColumn44, | |
906 | + this.gridColumn43, | |
907 | + this.gridColumn33, | |
908 | + this.gridColumn34, | |
909 | + this.gridColumn35, | |
910 | + this.gridColumn36, | |
911 | + this.gridColumn37, | |
912 | + this.gridColumn38, | |
913 | + this.gridColumn39, | |
914 | + this.gridColumn40, | |
915 | + this.gridColumn41}); | |
916 | + this.gridView_TaxBill_Maked.FooterPanelHeight = 23; | |
917 | + this.gridView_TaxBill_Maked.GridControl = this.gridControl_TaxBill_Maked; | |
918 | + this.gridView_TaxBill_Maked.GroupRowHeight = 23; | |
919 | + this.gridView_TaxBill_Maked.Name = "gridView_TaxBill_Maked"; | |
920 | + this.gridView_TaxBill_Maked.OptionsCustomization.AllowGroup = false; | |
921 | + this.gridView_TaxBill_Maked.OptionsCustomization.AllowSort = false; | |
922 | + this.gridView_TaxBill_Maked.OptionsNavigation.EnterMoveNextColumn = true; | |
923 | + this.gridView_TaxBill_Maked.OptionsView.ColumnAutoWidth = false; | |
924 | + this.gridView_TaxBill_Maked.OptionsView.ShowFooter = true; | |
925 | + this.gridView_TaxBill_Maked.OptionsView.ShowGroupPanel = false; | |
926 | + this.gridView_TaxBill_Maked.RowHeight = 23; | |
927 | + // | |
928 | + // gridColumn13 | |
929 | + // | |
930 | + this.gridColumn13.Caption = "취소"; | |
931 | + this.gridColumn13.ColumnEdit = this.m_Repository_CheckYN; | |
932 | + this.gridColumn13.FieldName = "SEL_FIELD"; | |
933 | + this.gridColumn13.Name = "gridColumn13"; | |
934 | + this.gridColumn13.Visible = true; | |
935 | + this.gridColumn13.VisibleIndex = 0; | |
936 | + this.gridColumn13.Width = 50; | |
937 | + // | |
938 | + // gridColumn14 | |
939 | + // | |
940 | + this.gridColumn14.AppearanceCell.Options.UseTextOptions = true; | |
941 | + this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
942 | + this.gridColumn14.Caption = "건수"; | |
943 | + this.gridColumn14.FieldName = "CNT"; | |
944 | + this.gridColumn14.Name = "gridColumn14"; | |
945 | + this.gridColumn14.OptionsColumn.AllowEdit = false; | |
946 | + this.gridColumn14.Visible = true; | |
947 | + this.gridColumn14.VisibleIndex = 1; | |
948 | + this.gridColumn14.Width = 50; | |
949 | + // | |
950 | + // gridColumn16 | |
951 | + // | |
952 | + this.gridColumn16.AppearanceCell.Options.UseTextOptions = true; | |
953 | + this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
954 | + this.gridColumn16.Caption = "분류"; | |
955 | + this.gridColumn16.FieldName = "TAX_TYPE_NM"; | |
956 | + this.gridColumn16.Name = "gridColumn16"; | |
957 | + this.gridColumn16.OptionsColumn.AllowEdit = false; | |
958 | + this.gridColumn16.Visible = true; | |
959 | + this.gridColumn16.VisibleIndex = 2; | |
960 | + this.gridColumn16.Width = 50; | |
961 | + // | |
962 | + // gridColumn42 | |
963 | + // | |
964 | + this.gridColumn42.AppearanceCell.Options.UseTextOptions = true; | |
965 | + this.gridColumn42.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
966 | + this.gridColumn42.Caption = "구분"; | |
967 | + this.gridColumn42.FieldName = "REQ_TYPE_NM"; | |
968 | + this.gridColumn42.Name = "gridColumn42"; | |
969 | + this.gridColumn42.OptionsColumn.AllowEdit = false; | |
970 | + this.gridColumn42.Visible = true; | |
971 | + this.gridColumn42.VisibleIndex = 3; | |
972 | + this.gridColumn42.Width = 50; | |
973 | + // | |
974 | + // gridColumn29 | |
975 | + // | |
976 | + this.gridColumn29.Caption = "거래선명"; | |
977 | + this.gridColumn29.FieldName = "CUST_NM"; | |
978 | + this.gridColumn29.Name = "gridColumn29"; | |
979 | + this.gridColumn29.OptionsColumn.AllowEdit = false; | |
980 | + this.gridColumn29.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
981 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "CUST_NM", "{0:#,##0} 건")}); | |
982 | + this.gridColumn29.Visible = true; | |
983 | + this.gridColumn29.VisibleIndex = 4; | |
984 | + this.gridColumn29.Width = 160; | |
985 | + // | |
986 | + // gridColumn30 | |
987 | + // | |
988 | + this.gridColumn30.AppearanceCell.Options.UseTextOptions = true; | |
989 | + this.gridColumn30.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
990 | + this.gridColumn30.Caption = "공급가액"; | |
991 | + this.gridColumn30.DisplayFormat.FormatString = "n0"; | |
992 | + this.gridColumn30.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
993 | + this.gridColumn30.FieldName = "CURR_MY"; | |
994 | + this.gridColumn30.Name = "gridColumn30"; | |
995 | + this.gridColumn30.OptionsColumn.AllowEdit = false; | |
996 | + this.gridColumn30.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
997 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CURR_MY", "{0:#,##0}")}); | |
998 | + this.gridColumn30.Visible = true; | |
999 | + this.gridColumn30.VisibleIndex = 5; | |
1000 | + this.gridColumn30.Width = 110; | |
1001 | + // | |
1002 | + // gridColumn31 | |
1003 | + // | |
1004 | + this.gridColumn31.AppearanceCell.Options.UseTextOptions = true; | |
1005 | + this.gridColumn31.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
1006 | + this.gridColumn31.Caption = "부가세액"; | |
1007 | + this.gridColumn31.DisplayFormat.FormatString = "n0"; | |
1008 | + this.gridColumn31.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
1009 | + this.gridColumn31.FieldName = "VAT_MY"; | |
1010 | + this.gridColumn31.Name = "gridColumn31"; | |
1011 | + this.gridColumn31.OptionsColumn.AllowEdit = false; | |
1012 | + this.gridColumn31.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1013 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "VAT_MY", "{0:#,##0}")}); | |
1014 | + this.gridColumn31.Visible = true; | |
1015 | + this.gridColumn31.VisibleIndex = 6; | |
1016 | + this.gridColumn31.Width = 110; | |
1017 | + // | |
1018 | + // gridColumn32 | |
1019 | + // | |
1020 | + this.gridColumn32.AppearanceCell.Options.UseTextOptions = true; | |
1021 | + this.gridColumn32.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
1022 | + this.gridColumn32.Caption = "합계금액"; | |
1023 | + this.gridColumn32.DisplayFormat.FormatString = "n0"; | |
1024 | + this.gridColumn32.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
1025 | + this.gridColumn32.FieldName = "TOT_MY"; | |
1026 | + this.gridColumn32.Name = "gridColumn32"; | |
1027 | + this.gridColumn32.OptionsColumn.AllowEdit = false; | |
1028 | + this.gridColumn32.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1029 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "TOT_MY", "{0:#,##0}")}); | |
1030 | + this.gridColumn32.Visible = true; | |
1031 | + this.gridColumn32.VisibleIndex = 7; | |
1032 | + this.gridColumn32.Width = 110; | |
1033 | + // | |
1034 | + // gridColumn44 | |
1035 | + // | |
1036 | + this.gridColumn44.AppearanceCell.Options.UseTextOptions = true; | |
1037 | + this.gridColumn44.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1038 | + this.gridColumn44.Caption = "발행일"; | |
1039 | + this.gridColumn44.FieldName = "TAX_DT"; | |
1040 | + this.gridColumn44.Name = "gridColumn44"; | |
1041 | + this.gridColumn44.OptionsColumn.AllowEdit = false; | |
1042 | + this.gridColumn44.Visible = true; | |
1043 | + this.gridColumn44.VisibleIndex = 8; | |
1044 | + // | |
1045 | + // gridColumn43 | |
1046 | + // | |
1047 | + this.gridColumn43.AppearanceCell.Options.UseTextOptions = true; | |
1048 | + this.gridColumn43.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1049 | + this.gridColumn43.Caption = "발행번호"; | |
1050 | + this.gridColumn43.FieldName = "DISP_BILL_NO"; | |
1051 | + this.gridColumn43.Name = "gridColumn43"; | |
1052 | + this.gridColumn43.OptionsColumn.AllowEdit = false; | |
1053 | + this.gridColumn43.Visible = true; | |
1054 | + this.gridColumn43.VisibleIndex = 9; | |
1055 | + // | |
1056 | + // gridColumn33 | |
1057 | + // | |
1058 | + this.gridColumn33.AppearanceCell.Options.UseTextOptions = true; | |
1059 | + this.gridColumn33.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1060 | + this.gridColumn33.Caption = "사업자번호"; | |
1061 | + this.gridColumn33.FieldName = "BIZ_NO"; | |
1062 | + this.gridColumn33.Name = "gridColumn33"; | |
1063 | + this.gridColumn33.OptionsColumn.AllowEdit = false; | |
1064 | + this.gridColumn33.Visible = true; | |
1065 | + this.gridColumn33.VisibleIndex = 10; | |
1066 | + this.gridColumn33.Width = 100; | |
1067 | + // | |
1068 | + // gridColumn34 | |
1069 | + // | |
1070 | + this.gridColumn34.Caption = "대표자"; | |
1071 | + this.gridColumn34.FieldName = "OWNER_NM"; | |
1072 | + this.gridColumn34.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
1073 | + this.gridColumn34.Name = "gridColumn34"; | |
1074 | + this.gridColumn34.OptionsColumn.AllowEdit = false; | |
1075 | + this.gridColumn34.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1076 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Custom, "CURR_MY", "{0:#,##0}")}); | |
1077 | + this.gridColumn34.Visible = true; | |
1078 | + this.gridColumn34.VisibleIndex = 11; | |
1079 | + this.gridColumn34.Width = 90; | |
1080 | + // | |
1081 | + // gridColumn35 | |
1082 | + // | |
1083 | + this.gridColumn35.Caption = "업태"; | |
1084 | + this.gridColumn35.FieldName = "COND_NM"; | |
1085 | + this.gridColumn35.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
1086 | + this.gridColumn35.Name = "gridColumn35"; | |
1087 | + this.gridColumn35.OptionsColumn.AllowEdit = false; | |
1088 | + this.gridColumn35.Visible = true; | |
1089 | + this.gridColumn35.VisibleIndex = 12; | |
1090 | + this.gridColumn35.Width = 110; | |
1091 | + // | |
1092 | + // gridColumn36 | |
1093 | + // | |
1094 | + this.gridColumn36.Caption = "종목"; | |
1095 | + this.gridColumn36.FieldName = "EVNT_NM"; | |
1096 | + this.gridColumn36.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
1097 | + this.gridColumn36.Name = "gridColumn36"; | |
1098 | + this.gridColumn36.OptionsColumn.AllowEdit = false; | |
1099 | + this.gridColumn36.Visible = true; | |
1100 | + this.gridColumn36.VisibleIndex = 13; | |
1101 | + this.gridColumn36.Width = 110; | |
1102 | + // | |
1103 | + // gridColumn37 | |
1104 | + // | |
1105 | + this.gridColumn37.Caption = "주소"; | |
1106 | + this.gridColumn37.FieldName = "ADDR1"; | |
1107 | + this.gridColumn37.Name = "gridColumn37"; | |
1108 | + this.gridColumn37.OptionsColumn.AllowEdit = false; | |
1109 | + this.gridColumn37.Visible = true; | |
1110 | + this.gridColumn37.VisibleIndex = 14; | |
1111 | + this.gridColumn37.Width = 300; | |
1112 | + // | |
1113 | + // gridColumn38 | |
1114 | + // | |
1115 | + this.gridColumn38.Caption = "전화번호"; | |
1116 | + this.gridColumn38.FieldName = "TEL_NO"; | |
1117 | + this.gridColumn38.Name = "gridColumn38"; | |
1118 | + this.gridColumn38.OptionsColumn.AllowEdit = false; | |
1119 | + this.gridColumn38.Visible = true; | |
1120 | + this.gridColumn38.VisibleIndex = 15; | |
1121 | + this.gridColumn38.Width = 100; | |
1122 | + // | |
1123 | + // gridColumn39 | |
1124 | + // | |
1125 | + this.gridColumn39.AppearanceCell.Options.UseTextOptions = true; | |
1126 | + this.gridColumn39.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1127 | + this.gridColumn39.Caption = "팩스"; | |
1128 | + this.gridColumn39.FieldName = "FAX_NO"; | |
1129 | + this.gridColumn39.Name = "gridColumn39"; | |
1130 | + this.gridColumn39.OptionsColumn.AllowEdit = false; | |
1131 | + this.gridColumn39.Visible = true; | |
1132 | + this.gridColumn39.VisibleIndex = 16; | |
1133 | + this.gridColumn39.Width = 100; | |
1134 | + // | |
1135 | + // gridColumn40 | |
1136 | + // | |
1137 | + this.gridColumn40.AppearanceCell.Options.UseTextOptions = true; | |
1138 | + this.gridColumn40.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1139 | + this.gridColumn40.Caption = "코드"; | |
1140 | + this.gridColumn40.FieldName = "CUST_CD"; | |
1141 | + this.gridColumn40.Name = "gridColumn40"; | |
1142 | + this.gridColumn40.OptionsColumn.AllowEdit = false; | |
1143 | + this.gridColumn40.Visible = true; | |
1144 | + this.gridColumn40.VisibleIndex = 17; | |
1145 | + this.gridColumn40.Width = 50; | |
1146 | + // | |
1147 | + // gridColumn41 | |
1148 | + // | |
1149 | + this.gridColumn41.Caption = "이메일"; | |
1150 | + this.gridColumn41.FieldName = "EMAIL"; | |
1151 | + this.gridColumn41.Name = "gridColumn41"; | |
1152 | + this.gridColumn41.OptionsColumn.AllowEdit = false; | |
1153 | + this.gridColumn41.Visible = true; | |
1154 | + this.gridColumn41.VisibleIndex = 18; | |
1155 | + this.gridColumn41.Width = 150; | |
1156 | + // | |
1157 | + // gridControl_TaxBill_NotMake | |
1158 | + // | |
1159 | + this.gridControl_TaxBill_NotMake.ExternalRepository = this.m_Repository; | |
1160 | + this.gridControl_TaxBill_NotMake.Location = new System.Drawing.Point(0, 0); | |
1161 | + this.gridControl_TaxBill_NotMake.MainView = this.gridView_TaxBill_NotMake; | |
1162 | + this.gridControl_TaxBill_NotMake.Name = "gridControl_TaxBill_NotMake"; | |
1163 | + this.gridControl_TaxBill_NotMake.Size = new System.Drawing.Size(1039, 266); | |
1164 | + this.gridControl_TaxBill_NotMake.TabIndex = 3; | |
1165 | + this.gridControl_TaxBill_NotMake.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { | |
1166 | + this.gridView_TaxBill_NotMake}); | |
1167 | + // | |
1168 | + // gridView_TaxBill_NotMake | |
1169 | + // | |
1170 | + this.gridView_TaxBill_NotMake.Appearance.FooterPanel.Options.UseFont = true; | |
1171 | + this.gridView_TaxBill_NotMake.Appearance.HeaderPanel.Options.UseFont = true; | |
1172 | + this.gridView_TaxBill_NotMake.Appearance.HeaderPanel.Options.UseTextOptions = true; | |
1173 | + this.gridView_TaxBill_NotMake.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1174 | + this.gridView_TaxBill_NotMake.Appearance.Row.Options.UseFont = true; | |
1175 | + this.gridView_TaxBill_NotMake.ColumnPanelRowHeight = 23; | |
1176 | + this.gridView_TaxBill_NotMake.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { | |
1177 | + this.gridColumn15, | |
1178 | + this.gridColumn1, | |
1179 | + this.gridColumn_CUST_NM, | |
1180 | + this.gridColumn_ITEM_NM, | |
1181 | + this.gridColumn_ORDER_NORM, | |
1182 | + this.gridColumn4, | |
1183 | + this.gridColumn5, | |
1184 | + this.gridColumn6, | |
1185 | + this.gridColumn7, | |
1186 | + this.gridColumn8, | |
1187 | + this.gridColumn9, | |
1188 | + this.gridColumn10, | |
1189 | + this.gridColumn2, | |
1190 | + this.gridColumn3, | |
1191 | + this.gridColumn11, | |
1192 | + this.gridColumn12}); | |
1193 | + this.gridView_TaxBill_NotMake.FooterPanelHeight = 23; | |
1194 | + this.gridView_TaxBill_NotMake.GridControl = this.gridControl_TaxBill_NotMake; | |
1195 | + this.gridView_TaxBill_NotMake.GroupRowHeight = 23; | |
1196 | + this.gridView_TaxBill_NotMake.Name = "gridView_TaxBill_NotMake"; | |
1197 | + this.gridView_TaxBill_NotMake.OptionsCustomization.AllowGroup = false; | |
1198 | + this.gridView_TaxBill_NotMake.OptionsCustomization.AllowSort = false; | |
1199 | + this.gridView_TaxBill_NotMake.OptionsNavigation.EnterMoveNextColumn = true; | |
1200 | + this.gridView_TaxBill_NotMake.OptionsView.ColumnAutoWidth = false; | |
1201 | + this.gridView_TaxBill_NotMake.OptionsView.ShowFooter = true; | |
1202 | + this.gridView_TaxBill_NotMake.OptionsView.ShowGroupPanel = false; | |
1203 | + this.gridView_TaxBill_NotMake.RowHeight = 23; | |
1204 | + // | |
1205 | + // gridColumn15 | |
1206 | + // | |
1207 | + this.gridColumn15.Caption = "발행"; | |
1208 | + this.gridColumn15.ColumnEdit = this.m_Repository_CheckYN; | |
1209 | + this.gridColumn15.FieldName = "SEL_FIELD"; | |
1210 | + this.gridColumn15.Name = "gridColumn15"; | |
1211 | + this.gridColumn15.Visible = true; | |
1212 | + this.gridColumn15.VisibleIndex = 0; | |
1213 | + this.gridColumn15.Width = 50; | |
1214 | + // | |
1215 | + // gridColumn1 | |
1216 | + // | |
1217 | + this.gridColumn1.AppearanceCell.Options.UseTextOptions = true; | |
1218 | + this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1219 | + this.gridColumn1.Caption = "건수"; | |
1220 | + this.gridColumn1.FieldName = "CNT"; | |
1221 | + this.gridColumn1.Name = "gridColumn1"; | |
1222 | + this.gridColumn1.OptionsColumn.AllowEdit = false; | |
1223 | + this.gridColumn1.Visible = true; | |
1224 | + this.gridColumn1.VisibleIndex = 1; | |
1225 | + this.gridColumn1.Width = 50; | |
1226 | + // | |
1227 | + // gridColumn_CUST_NM | |
1228 | + // | |
1229 | + this.gridColumn_CUST_NM.AppearanceCell.Options.UseTextOptions = true; | |
1230 | + this.gridColumn_CUST_NM.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1231 | + this.gridColumn_CUST_NM.Caption = "분류"; | |
1232 | + this.gridColumn_CUST_NM.FieldName = "RCP_REQ_NM"; | |
1233 | + this.gridColumn_CUST_NM.Name = "gridColumn_CUST_NM"; | |
1234 | + this.gridColumn_CUST_NM.OptionsColumn.AllowEdit = false; | |
1235 | + this.gridColumn_CUST_NM.Visible = true; | |
1236 | + this.gridColumn_CUST_NM.VisibleIndex = 2; | |
1237 | + this.gridColumn_CUST_NM.Width = 50; | |
1238 | + // | |
1239 | + // gridColumn_ITEM_NM | |
1240 | + // | |
1241 | + this.gridColumn_ITEM_NM.Caption = "거래선명"; | |
1242 | + this.gridColumn_ITEM_NM.FieldName = "CUST_NM"; | |
1243 | + this.gridColumn_ITEM_NM.Name = "gridColumn_ITEM_NM"; | |
1244 | + this.gridColumn_ITEM_NM.OptionsColumn.AllowEdit = false; | |
1245 | + this.gridColumn_ITEM_NM.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1246 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "CUST_NM", "{0:#,##0} 건")}); | |
1247 | + this.gridColumn_ITEM_NM.Visible = true; | |
1248 | + this.gridColumn_ITEM_NM.VisibleIndex = 3; | |
1249 | + this.gridColumn_ITEM_NM.Width = 160; | |
1250 | + // | |
1251 | + // gridColumn_ORDER_NORM | |
1252 | + // | |
1253 | + this.gridColumn_ORDER_NORM.AppearanceCell.Options.UseTextOptions = true; | |
1254 | + this.gridColumn_ORDER_NORM.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
1255 | + this.gridColumn_ORDER_NORM.Caption = "공급가액"; | |
1256 | + this.gridColumn_ORDER_NORM.DisplayFormat.FormatString = "n0"; | |
1257 | + this.gridColumn_ORDER_NORM.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
1258 | + this.gridColumn_ORDER_NORM.FieldName = "CURR_MY"; | |
1259 | + this.gridColumn_ORDER_NORM.Name = "gridColumn_ORDER_NORM"; | |
1260 | + this.gridColumn_ORDER_NORM.OptionsColumn.AllowEdit = false; | |
1261 | + this.gridColumn_ORDER_NORM.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1262 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CURR_MY", "{0:#,##0}")}); | |
1263 | + this.gridColumn_ORDER_NORM.Visible = true; | |
1264 | + this.gridColumn_ORDER_NORM.VisibleIndex = 4; | |
1265 | + this.gridColumn_ORDER_NORM.Width = 110; | |
1266 | + // | |
1267 | + // gridColumn4 | |
1268 | + // | |
1269 | + this.gridColumn4.AppearanceCell.Options.UseTextOptions = true; | |
1270 | + this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
1271 | + this.gridColumn4.Caption = "부가세액"; | |
1272 | + this.gridColumn4.DisplayFormat.FormatString = "n0"; | |
1273 | + this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
1274 | + this.gridColumn4.FieldName = "VAT_MY"; | |
1275 | + this.gridColumn4.Name = "gridColumn4"; | |
1276 | + this.gridColumn4.OptionsColumn.AllowEdit = false; | |
1277 | + this.gridColumn4.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1278 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "VAT_MY", "{0:#,##0}")}); | |
1279 | + this.gridColumn4.Visible = true; | |
1280 | + this.gridColumn4.VisibleIndex = 5; | |
1281 | + this.gridColumn4.Width = 110; | |
1282 | + // | |
1283 | + // gridColumn5 | |
1284 | + // | |
1285 | + this.gridColumn5.AppearanceCell.Options.UseTextOptions = true; | |
1286 | + this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
1287 | + this.gridColumn5.Caption = "합계금액"; | |
1288 | + this.gridColumn5.DisplayFormat.FormatString = "n0"; | |
1289 | + this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
1290 | + this.gridColumn5.FieldName = "TOT_MY"; | |
1291 | + this.gridColumn5.Name = "gridColumn5"; | |
1292 | + this.gridColumn5.OptionsColumn.AllowEdit = false; | |
1293 | + this.gridColumn5.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1294 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "TOT_MY", "{0:#,##0}")}); | |
1295 | + this.gridColumn5.Visible = true; | |
1296 | + this.gridColumn5.VisibleIndex = 6; | |
1297 | + this.gridColumn5.Width = 110; | |
1298 | + // | |
1299 | + // gridColumn6 | |
1300 | + // | |
1301 | + this.gridColumn6.AppearanceCell.Options.UseTextOptions = true; | |
1302 | + this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1303 | + this.gridColumn6.Caption = "사업자번호"; | |
1304 | + this.gridColumn6.FieldName = "BIZ_NO"; | |
1305 | + this.gridColumn6.Name = "gridColumn6"; | |
1306 | + this.gridColumn6.OptionsColumn.AllowEdit = false; | |
1307 | + this.gridColumn6.Visible = true; | |
1308 | + this.gridColumn6.VisibleIndex = 7; | |
1309 | + this.gridColumn6.Width = 100; | |
1310 | + // | |
1311 | + // gridColumn7 | |
1312 | + // | |
1313 | + this.gridColumn7.Caption = "대표자"; | |
1314 | + this.gridColumn7.FieldName = "OWNER_NM"; | |
1315 | + this.gridColumn7.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
1316 | + this.gridColumn7.Name = "gridColumn7"; | |
1317 | + this.gridColumn7.OptionsColumn.AllowEdit = false; | |
1318 | + this.gridColumn7.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1319 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Custom, "CURR_MY", "{0:#,##0}")}); | |
1320 | + this.gridColumn7.Visible = true; | |
1321 | + this.gridColumn7.VisibleIndex = 8; | |
1322 | + this.gridColumn7.Width = 90; | |
1323 | + // | |
1324 | + // gridColumn8 | |
1325 | + // | |
1326 | + this.gridColumn8.Caption = "업태"; | |
1327 | + this.gridColumn8.FieldName = "COND_NM"; | |
1328 | + this.gridColumn8.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
1329 | + this.gridColumn8.Name = "gridColumn8"; | |
1330 | + this.gridColumn8.OptionsColumn.AllowEdit = false; | |
1331 | + this.gridColumn8.Visible = true; | |
1332 | + this.gridColumn8.VisibleIndex = 9; | |
1333 | + this.gridColumn8.Width = 110; | |
1334 | + // | |
1335 | + // gridColumn9 | |
1336 | + // | |
1337 | + this.gridColumn9.Caption = "종목"; | |
1338 | + this.gridColumn9.FieldName = "EVNT_NM"; | |
1339 | + this.gridColumn9.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
1340 | + this.gridColumn9.Name = "gridColumn9"; | |
1341 | + this.gridColumn9.OptionsColumn.AllowEdit = false; | |
1342 | + this.gridColumn9.Visible = true; | |
1343 | + this.gridColumn9.VisibleIndex = 10; | |
1344 | + this.gridColumn9.Width = 110; | |
1345 | + // | |
1346 | + // gridColumn10 | |
1347 | + // | |
1348 | + this.gridColumn10.Caption = "주소"; | |
1349 | + this.gridColumn10.FieldName = "ADDR1"; | |
1350 | + this.gridColumn10.Name = "gridColumn10"; | |
1351 | + this.gridColumn10.OptionsColumn.AllowEdit = false; | |
1352 | + this.gridColumn10.Visible = true; | |
1353 | + this.gridColumn10.VisibleIndex = 11; | |
1354 | + this.gridColumn10.Width = 300; | |
1355 | + // | |
1356 | + // gridColumn2 | |
1357 | + // | |
1358 | + this.gridColumn2.Caption = "전화번호"; | |
1359 | + this.gridColumn2.FieldName = "TEL_NO"; | |
1360 | + this.gridColumn2.Name = "gridColumn2"; | |
1361 | + this.gridColumn2.OptionsColumn.AllowEdit = false; | |
1362 | + this.gridColumn2.Visible = true; | |
1363 | + this.gridColumn2.VisibleIndex = 12; | |
1364 | + this.gridColumn2.Width = 100; | |
1365 | + // | |
1366 | + // gridColumn3 | |
1367 | + // | |
1368 | + this.gridColumn3.AppearanceCell.Options.UseTextOptions = true; | |
1369 | + this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1370 | + this.gridColumn3.Caption = "팩스"; | |
1371 | + this.gridColumn3.FieldName = "FAX_NO"; | |
1372 | + this.gridColumn3.Name = "gridColumn3"; | |
1373 | + this.gridColumn3.OptionsColumn.AllowEdit = false; | |
1374 | + this.gridColumn3.Visible = true; | |
1375 | + this.gridColumn3.VisibleIndex = 13; | |
1376 | + this.gridColumn3.Width = 100; | |
1377 | + // | |
1378 | + // gridColumn11 | |
1379 | + // | |
1380 | + this.gridColumn11.AppearanceCell.Options.UseTextOptions = true; | |
1381 | + this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1382 | + this.gridColumn11.Caption = "코드"; | |
1383 | + this.gridColumn11.FieldName = "CUST_CD"; | |
1384 | + this.gridColumn11.Name = "gridColumn11"; | |
1385 | + this.gridColumn11.OptionsColumn.AllowEdit = false; | |
1386 | + this.gridColumn11.Visible = true; | |
1387 | + this.gridColumn11.VisibleIndex = 14; | |
1388 | + this.gridColumn11.Width = 50; | |
1389 | + // | |
1390 | + // gridColumn12 | |
1391 | + // | |
1392 | + this.gridColumn12.Caption = "이메일"; | |
1393 | + this.gridColumn12.FieldName = "EMAIL"; | |
1394 | + this.gridColumn12.Name = "gridColumn12"; | |
1395 | + this.gridColumn12.OptionsColumn.AllowEdit = false; | |
1396 | + this.gridColumn12.Visible = true; | |
1397 | + this.gridColumn12.VisibleIndex = 15; | |
1398 | + this.gridColumn12.Width = 150; | |
1399 | + // | |
1400 | + // xtraTabPage_Etc | |
1401 | + // | |
1402 | + this.xtraTabPage_Etc.Controls.Add(this.gridControl_Etc); | |
1403 | + this.xtraTabPage_Etc.Name = "xtraTabPage_Etc"; | |
1404 | + this.xtraTabPage_Etc.Size = new System.Drawing.Size(1912, 371); | |
1405 | + this.xtraTabPage_Etc.Text = "업체별/건발행 처리"; | |
1406 | + // | |
1407 | + // gridControl_Etc | |
1408 | + // | |
1409 | + this.gridControl_Etc.Dock = System.Windows.Forms.DockStyle.Fill; | |
1410 | + this.gridControl_Etc.ExternalRepository = this.m_Repository; | |
1411 | + this.gridControl_Etc.Location = new System.Drawing.Point(0, 0); | |
1412 | + this.gridControl_Etc.MainView = this.gridView_Etc; | |
1413 | + this.gridControl_Etc.Name = "gridControl_Etc"; | |
1414 | + this.gridControl_Etc.Size = new System.Drawing.Size(1912, 371); | |
1415 | + this.gridControl_Etc.TabIndex = 4; | |
1416 | + this.gridControl_Etc.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { | |
1417 | + this.gridView_Etc}); | |
1418 | + // | |
1419 | + // gridView_Etc | |
1420 | + // | |
1421 | + this.gridView_Etc.Appearance.FooterPanel.Options.UseFont = true; | |
1422 | + this.gridView_Etc.Appearance.HeaderPanel.Options.UseFont = true; | |
1423 | + this.gridView_Etc.Appearance.HeaderPanel.Options.UseTextOptions = true; | |
1424 | + this.gridView_Etc.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1425 | + this.gridView_Etc.Appearance.Row.Options.UseFont = true; | |
1426 | + this.gridView_Etc.ColumnPanelRowHeight = 23; | |
1427 | + this.gridView_Etc.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { | |
1428 | + this.gridColumn45, | |
1429 | + this.gridColumn47, | |
1430 | + this.gridColumn48, | |
1431 | + this.gridColumn46, | |
1432 | + this.gridColumn64, | |
1433 | + this.gridColumn49, | |
1434 | + this.gridColumn77, | |
1435 | + this.gridColumn76, | |
1436 | + this.gridColumn75, | |
1437 | + this.gridColumn74, | |
1438 | + this.gridColumn73, | |
1439 | + this.gridColumn72, | |
1440 | + this.gridColumn50, | |
1441 | + this.gridColumn51, | |
1442 | + this.gridColumn52, | |
1443 | + this.gridColumn53, | |
1444 | + this.gridColumn54, | |
1445 | + this.gridColumn55, | |
1446 | + this.gridColumn56, | |
1447 | + this.gridColumn57, | |
1448 | + this.gridColumn58, | |
1449 | + this.gridColumn59, | |
1450 | + this.gridColumn60, | |
1451 | + this.gridColumn61, | |
1452 | + this.gridColumn62, | |
1453 | + this.gridColumn63}); | |
1454 | + this.gridView_Etc.FooterPanelHeight = 23; | |
1455 | + this.gridView_Etc.GridControl = this.gridControl_Etc; | |
1456 | + this.gridView_Etc.GroupRowHeight = 23; | |
1457 | + this.gridView_Etc.Name = "gridView_Etc"; | |
1458 | + this.gridView_Etc.OptionsCustomization.AllowGroup = false; | |
1459 | + this.gridView_Etc.OptionsCustomization.AllowSort = false; | |
1460 | + this.gridView_Etc.OptionsNavigation.EnterMoveNextColumn = true; | |
1461 | + this.gridView_Etc.OptionsView.AllowCellMerge = true; | |
1462 | + this.gridView_Etc.OptionsView.ColumnAutoWidth = false; | |
1463 | + this.gridView_Etc.OptionsView.ShowFooter = true; | |
1464 | + this.gridView_Etc.OptionsView.ShowGroupPanel = false; | |
1465 | + this.gridView_Etc.RowHeight = 23; | |
1466 | + // | |
1467 | + // gridColumn45 | |
1468 | + // | |
1469 | + this.gridColumn45.Caption = "선택"; | |
1470 | + this.gridColumn45.ColumnEdit = this.m_Repository_CheckYN; | |
1471 | + this.gridColumn45.FieldName = "SEL_FIELD"; | |
1472 | + this.gridColumn45.Name = "gridColumn45"; | |
1473 | + this.gridColumn45.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1474 | + this.gridColumn45.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1475 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "SEL_FIELD", "{0:#,##0}")}); | |
1476 | + this.gridColumn45.Visible = true; | |
1477 | + this.gridColumn45.VisibleIndex = 0; | |
1478 | + this.gridColumn45.Width = 50; | |
1479 | + // | |
1480 | + // gridColumn47 | |
1481 | + // | |
1482 | + this.gridColumn47.AppearanceCell.Options.UseTextOptions = true; | |
1483 | + this.gridColumn47.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1484 | + this.gridColumn47.Caption = "분류"; | |
1485 | + this.gridColumn47.FieldName = "TAX_TYPE_NM"; | |
1486 | + this.gridColumn47.Name = "gridColumn47"; | |
1487 | + this.gridColumn47.OptionsColumn.AllowEdit = false; | |
1488 | + this.gridColumn47.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1489 | + this.gridColumn47.Visible = true; | |
1490 | + this.gridColumn47.VisibleIndex = 1; | |
1491 | + this.gridColumn47.Width = 50; | |
1492 | + // | |
1493 | + // gridColumn48 | |
1494 | + // | |
1495 | + this.gridColumn48.Caption = "구분"; | |
1496 | + this.gridColumn48.FieldName = "REQ_TYPE_NM"; | |
1497 | + this.gridColumn48.Name = "gridColumn48"; | |
1498 | + this.gridColumn48.OptionsColumn.AllowEdit = false; | |
1499 | + this.gridColumn48.Visible = true; | |
1500 | + this.gridColumn48.VisibleIndex = 2; | |
1501 | + // | |
1502 | + // gridColumn46 | |
1503 | + // | |
1504 | + this.gridColumn46.AppearanceCell.Options.UseTextOptions = true; | |
1505 | + this.gridColumn46.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1506 | + this.gridColumn46.Caption = "매출일자"; | |
1507 | + this.gridColumn46.FieldName = "SALE_DT"; | |
1508 | + this.gridColumn46.Name = "gridColumn46"; | |
1509 | + this.gridColumn46.OptionsColumn.AllowEdit = false; | |
1510 | + this.gridColumn46.Visible = true; | |
1511 | + this.gridColumn46.VisibleIndex = 3; | |
1512 | + // | |
1513 | + // gridColumn64 | |
1514 | + // | |
1515 | + this.gridColumn64.AppearanceCell.Options.UseTextOptions = true; | |
1516 | + this.gridColumn64.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1517 | + this.gridColumn64.Caption = "번호"; | |
1518 | + this.gridColumn64.FieldName = "ORDER_SEQ"; | |
1519 | + this.gridColumn64.Name = "gridColumn64"; | |
1520 | + this.gridColumn64.OptionsColumn.AllowEdit = false; | |
1521 | + this.gridColumn64.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1522 | + this.gridColumn64.Visible = true; | |
1523 | + this.gridColumn64.VisibleIndex = 4; | |
1524 | + this.gridColumn64.Width = 50; | |
1525 | + // | |
1526 | + // gridColumn49 | |
1527 | + // | |
1528 | + this.gridColumn49.AppearanceCell.Options.UseTextOptions = true; | |
1529 | + this.gridColumn49.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1530 | + this.gridColumn49.Caption = "순번"; | |
1531 | + this.gridColumn49.FieldName = "R_NO"; | |
1532 | + this.gridColumn49.Name = "gridColumn49"; | |
1533 | + this.gridColumn49.OptionsColumn.AllowEdit = false; | |
1534 | + this.gridColumn49.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1535 | + this.gridColumn49.Visible = true; | |
1536 | + this.gridColumn49.VisibleIndex = 5; | |
1537 | + this.gridColumn49.Width = 50; | |
1538 | + // | |
1539 | + // gridColumn77 | |
1540 | + // | |
1541 | + this.gridColumn77.Caption = "상품명"; | |
1542 | + this.gridColumn77.FieldName = "ITEM_NM"; | |
1543 | + this.gridColumn77.Name = "gridColumn77"; | |
1544 | + this.gridColumn77.OptionsColumn.AllowEdit = false; | |
1545 | + this.gridColumn77.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1546 | + this.gridColumn77.Visible = true; | |
1547 | + this.gridColumn77.VisibleIndex = 6; | |
1548 | + this.gridColumn77.Width = 120; | |
1549 | + // | |
1550 | + // gridColumn76 | |
1551 | + // | |
1552 | + this.gridColumn76.Caption = "평량"; | |
1553 | + this.gridColumn76.FieldName = "AREA_WT"; | |
1554 | + this.gridColumn76.Name = "gridColumn76"; | |
1555 | + this.gridColumn76.OptionsColumn.AllowEdit = false; | |
1556 | + this.gridColumn76.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1557 | + this.gridColumn76.Visible = true; | |
1558 | + this.gridColumn76.VisibleIndex = 7; | |
1559 | + this.gridColumn76.Width = 50; | |
1560 | + // | |
1561 | + // gridColumn75 | |
1562 | + // | |
1563 | + this.gridColumn75.Caption = "규격"; | |
1564 | + this.gridColumn75.FieldName = "ORDER_NORM"; | |
1565 | + this.gridColumn75.Name = "gridColumn75"; | |
1566 | + this.gridColumn75.OptionsColumn.AllowEdit = false; | |
1567 | + this.gridColumn75.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1568 | + this.gridColumn75.Visible = true; | |
1569 | + this.gridColumn75.VisibleIndex = 8; | |
1570 | + // | |
1571 | + // gridColumn74 | |
1572 | + // | |
1573 | + this.gridColumn74.AppearanceCell.Options.UseTextOptions = true; | |
1574 | + this.gridColumn74.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
1575 | + this.gridColumn74.Caption = "수량"; | |
1576 | + this.gridColumn74.DisplayFormat.FormatString = "n0"; | |
1577 | + this.gridColumn74.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
1578 | + this.gridColumn74.Name = "gridColumn74"; | |
1579 | + this.gridColumn74.OptionsColumn.AllowEdit = false; | |
1580 | + this.gridColumn74.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1581 | + this.gridColumn74.Visible = true; | |
1582 | + this.gridColumn74.VisibleIndex = 9; | |
1583 | + this.gridColumn74.Width = 60; | |
1584 | + // | |
1585 | + // gridColumn73 | |
1586 | + // | |
1587 | + this.gridColumn73.Caption = "단위"; | |
1588 | + this.gridColumn73.FieldName = "UNIT_NM"; | |
1589 | + this.gridColumn73.Name = "gridColumn73"; | |
1590 | + this.gridColumn73.OptionsColumn.AllowEdit = false; | |
1591 | + this.gridColumn73.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1592 | + this.gridColumn73.Visible = true; | |
1593 | + this.gridColumn73.VisibleIndex = 10; | |
1594 | + this.gridColumn73.Width = 50; | |
1595 | + // | |
1596 | + // gridColumn72 | |
1597 | + // | |
1598 | + this.gridColumn72.AppearanceCell.Options.UseTextOptions = true; | |
1599 | + this.gridColumn72.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
1600 | + this.gridColumn72.Caption = "단가"; | |
1601 | + this.gridColumn72.FieldName = "CURR_UNIT_MY"; | |
1602 | + this.gridColumn72.Name = "gridColumn72"; | |
1603 | + this.gridColumn72.OptionsColumn.AllowEdit = false; | |
1604 | + this.gridColumn72.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1605 | + this.gridColumn72.Visible = true; | |
1606 | + this.gridColumn72.VisibleIndex = 11; | |
1607 | + // | |
1608 | + // gridColumn50 | |
1609 | + // | |
1610 | + this.gridColumn50.AppearanceCell.Options.UseTextOptions = true; | |
1611 | + this.gridColumn50.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
1612 | + this.gridColumn50.Caption = "공급가액"; | |
1613 | + this.gridColumn50.DisplayFormat.FormatString = "n0"; | |
1614 | + this.gridColumn50.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
1615 | + this.gridColumn50.FieldName = "CURR_MY"; | |
1616 | + this.gridColumn50.Name = "gridColumn50"; | |
1617 | + this.gridColumn50.OptionsColumn.AllowEdit = false; | |
1618 | + this.gridColumn50.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1619 | + this.gridColumn50.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1620 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CURR_MY", "{0:#,##0}")}); | |
1621 | + this.gridColumn50.Visible = true; | |
1622 | + this.gridColumn50.VisibleIndex = 12; | |
1623 | + this.gridColumn50.Width = 90; | |
1624 | + // | |
1625 | + // gridColumn51 | |
1626 | + // | |
1627 | + this.gridColumn51.AppearanceCell.Options.UseTextOptions = true; | |
1628 | + this.gridColumn51.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
1629 | + this.gridColumn51.Caption = "부가세액"; | |
1630 | + this.gridColumn51.DisplayFormat.FormatString = "n0"; | |
1631 | + this.gridColumn51.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
1632 | + this.gridColumn51.FieldName = "VAT_MY"; | |
1633 | + this.gridColumn51.Name = "gridColumn51"; | |
1634 | + this.gridColumn51.OptionsColumn.AllowEdit = false; | |
1635 | + this.gridColumn51.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1636 | + this.gridColumn51.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1637 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "VAT_MY", "{0:#,##0}")}); | |
1638 | + this.gridColumn51.Visible = true; | |
1639 | + this.gridColumn51.VisibleIndex = 13; | |
1640 | + this.gridColumn51.Width = 90; | |
1641 | + // | |
1642 | + // gridColumn52 | |
1643 | + // | |
1644 | + this.gridColumn52.AppearanceCell.Options.UseTextOptions = true; | |
1645 | + this.gridColumn52.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
1646 | + this.gridColumn52.Caption = "합계금액"; | |
1647 | + this.gridColumn52.DisplayFormat.FormatString = "n0"; | |
1648 | + this.gridColumn52.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
1649 | + this.gridColumn52.FieldName = "TOT_MY"; | |
1650 | + this.gridColumn52.Name = "gridColumn52"; | |
1651 | + this.gridColumn52.OptionsColumn.AllowEdit = false; | |
1652 | + this.gridColumn52.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1653 | + this.gridColumn52.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1654 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "TOT_MY", "{0:#,##0}")}); | |
1655 | + this.gridColumn52.Visible = true; | |
1656 | + this.gridColumn52.VisibleIndex = 14; | |
1657 | + this.gridColumn52.Width = 90; | |
1658 | + // | |
1659 | + // gridColumn53 | |
1660 | + // | |
1661 | + this.gridColumn53.AppearanceCell.Options.UseTextOptions = true; | |
1662 | + this.gridColumn53.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1663 | + this.gridColumn53.Caption = "발행일"; | |
1664 | + this.gridColumn53.FieldName = "TAX_DT"; | |
1665 | + this.gridColumn53.Name = "gridColumn53"; | |
1666 | + this.gridColumn53.OptionsColumn.AllowEdit = false; | |
1667 | + this.gridColumn53.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1668 | + this.gridColumn53.Visible = true; | |
1669 | + this.gridColumn53.VisibleIndex = 15; | |
1670 | + // | |
1671 | + // gridColumn54 | |
1672 | + // | |
1673 | + this.gridColumn54.AppearanceCell.Options.UseTextOptions = true; | |
1674 | + this.gridColumn54.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1675 | + this.gridColumn54.Caption = "발행번호"; | |
1676 | + this.gridColumn54.FieldName = "DISP_BILL_NO"; | |
1677 | + this.gridColumn54.Name = "gridColumn54"; | |
1678 | + this.gridColumn54.OptionsColumn.AllowEdit = false; | |
1679 | + this.gridColumn54.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1680 | + this.gridColumn54.Visible = true; | |
1681 | + this.gridColumn54.VisibleIndex = 16; | |
1682 | + // | |
1683 | + // gridColumn55 | |
1684 | + // | |
1685 | + this.gridColumn55.AppearanceCell.Options.UseTextOptions = true; | |
1686 | + this.gridColumn55.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1687 | + this.gridColumn55.Caption = "사업자번호"; | |
1688 | + this.gridColumn55.FieldName = "BIZ_NO"; | |
1689 | + this.gridColumn55.Name = "gridColumn55"; | |
1690 | + this.gridColumn55.OptionsColumn.AllowEdit = false; | |
1691 | + this.gridColumn55.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1692 | + this.gridColumn55.Visible = true; | |
1693 | + this.gridColumn55.VisibleIndex = 17; | |
1694 | + this.gridColumn55.Width = 100; | |
1695 | + // | |
1696 | + // gridColumn56 | |
1697 | + // | |
1698 | + this.gridColumn56.Caption = "대표자"; | |
1699 | + this.gridColumn56.FieldName = "OWNER_NM"; | |
1700 | + this.gridColumn56.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
1701 | + this.gridColumn56.Name = "gridColumn56"; | |
1702 | + this.gridColumn56.OptionsColumn.AllowEdit = false; | |
1703 | + this.gridColumn56.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1704 | + this.gridColumn56.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
1705 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Custom, "CURR_MY", "{0:#,##0}")}); | |
1706 | + this.gridColumn56.Visible = true; | |
1707 | + this.gridColumn56.VisibleIndex = 18; | |
1708 | + this.gridColumn56.Width = 90; | |
1709 | + // | |
1710 | + // gridColumn57 | |
1711 | + // | |
1712 | + this.gridColumn57.Caption = "업태"; | |
1713 | + this.gridColumn57.FieldName = "COND_NM"; | |
1714 | + this.gridColumn57.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
1715 | + this.gridColumn57.Name = "gridColumn57"; | |
1716 | + this.gridColumn57.OptionsColumn.AllowEdit = false; | |
1717 | + this.gridColumn57.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1718 | + this.gridColumn57.Visible = true; | |
1719 | + this.gridColumn57.VisibleIndex = 19; | |
1720 | + this.gridColumn57.Width = 110; | |
1721 | + // | |
1722 | + // gridColumn58 | |
1723 | + // | |
1724 | + this.gridColumn58.Caption = "종목"; | |
1725 | + this.gridColumn58.FieldName = "EVNT_NM"; | |
1726 | + this.gridColumn58.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
1727 | + this.gridColumn58.Name = "gridColumn58"; | |
1728 | + this.gridColumn58.OptionsColumn.AllowEdit = false; | |
1729 | + this.gridColumn58.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1730 | + this.gridColumn58.Visible = true; | |
1731 | + this.gridColumn58.VisibleIndex = 20; | |
1732 | + this.gridColumn58.Width = 110; | |
1733 | + // | |
1734 | + // gridColumn59 | |
1735 | + // | |
1736 | + this.gridColumn59.Caption = "주소"; | |
1737 | + this.gridColumn59.FieldName = "ADDR1"; | |
1738 | + this.gridColumn59.Name = "gridColumn59"; | |
1739 | + this.gridColumn59.OptionsColumn.AllowEdit = false; | |
1740 | + this.gridColumn59.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1741 | + this.gridColumn59.Visible = true; | |
1742 | + this.gridColumn59.VisibleIndex = 21; | |
1743 | + this.gridColumn59.Width = 300; | |
1744 | + // | |
1745 | + // gridColumn60 | |
1746 | + // | |
1747 | + this.gridColumn60.Caption = "전화번호"; | |
1748 | + this.gridColumn60.FieldName = "TEL_NO"; | |
1749 | + this.gridColumn60.Name = "gridColumn60"; | |
1750 | + this.gridColumn60.OptionsColumn.AllowEdit = false; | |
1751 | + this.gridColumn60.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1752 | + this.gridColumn60.Visible = true; | |
1753 | + this.gridColumn60.VisibleIndex = 22; | |
1754 | + this.gridColumn60.Width = 100; | |
1755 | + // | |
1756 | + // gridColumn61 | |
1757 | + // | |
1758 | + this.gridColumn61.AppearanceCell.Options.UseTextOptions = true; | |
1759 | + this.gridColumn61.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1760 | + this.gridColumn61.Caption = "팩스"; | |
1761 | + this.gridColumn61.FieldName = "FAX_NO"; | |
1762 | + this.gridColumn61.Name = "gridColumn61"; | |
1763 | + this.gridColumn61.OptionsColumn.AllowEdit = false; | |
1764 | + this.gridColumn61.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1765 | + this.gridColumn61.Visible = true; | |
1766 | + this.gridColumn61.VisibleIndex = 23; | |
1767 | + this.gridColumn61.Width = 100; | |
1768 | + // | |
1769 | + // gridColumn62 | |
1770 | + // | |
1771 | + this.gridColumn62.AppearanceCell.Options.UseTextOptions = true; | |
1772 | + this.gridColumn62.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1773 | + this.gridColumn62.Caption = "코드"; | |
1774 | + this.gridColumn62.FieldName = "CUST_CD"; | |
1775 | + this.gridColumn62.Name = "gridColumn62"; | |
1776 | + this.gridColumn62.OptionsColumn.AllowEdit = false; | |
1777 | + this.gridColumn62.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1778 | + this.gridColumn62.Visible = true; | |
1779 | + this.gridColumn62.VisibleIndex = 24; | |
1780 | + this.gridColumn62.Width = 50; | |
1781 | + // | |
1782 | + // gridColumn63 | |
1783 | + // | |
1784 | + this.gridColumn63.Caption = "이메일"; | |
1785 | + this.gridColumn63.FieldName = "EMAIL"; | |
1786 | + this.gridColumn63.Name = "gridColumn63"; | |
1787 | + this.gridColumn63.OptionsColumn.AllowEdit = false; | |
1788 | + this.gridColumn63.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; | |
1789 | + this.gridColumn63.Visible = true; | |
1790 | + this.gridColumn63.VisibleIndex = 25; | |
1791 | + this.gridColumn63.Width = 150; | |
1792 | + // | |
1793 | + // panelControl2 | |
1794 | + // | |
1795 | + this.panelControl2.Controls.Add(this.simpleButton_SelectNone); | |
1796 | + this.panelControl2.Controls.Add(this.simpleButton_SelectAll); | |
1797 | + this.panelControl2.Controls.Add(this.simpleButton_Make); | |
1798 | + this.panelControl2.Controls.Add(this.panelControl_TAX_DT); | |
1799 | + this.panelControl2.Controls.Add(this.panelControl_TAX_TYPE); | |
1800 | + this.panelControl2.Controls.Add(this.panelControl_REQ_TYPE); | |
1801 | + this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top; | |
1802 | + this.panelControl2.Location = new System.Drawing.Point(0, 0); | |
1803 | + this.panelControl2.Name = "panelControl2"; | |
1804 | + this.panelControl2.Size = new System.Drawing.Size(1918, 37); | |
1805 | + this.panelControl2.TabIndex = 5; | |
1806 | + // | |
1807 | + // simpleButton_SelectNone | |
1808 | + // | |
1809 | + this.simpleButton_SelectNone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); | |
1810 | + this.simpleButton_SelectNone.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SelectNone.Image"))); | |
1811 | + this.simpleButton_SelectNone.Location = new System.Drawing.Point(1613, 5); | |
1812 | + this.simpleButton_SelectNone.Name = "simpleButton_SelectNone"; | |
1813 | + this.simpleButton_SelectNone.Size = new System.Drawing.Size(94, 27); | |
1814 | + this.simpleButton_SelectNone.TabIndex = 4; | |
1815 | + this.simpleButton_SelectNone.Text = "모두해제"; | |
1816 | + // | |
1817 | + // simpleButton_SelectAll | |
1818 | + // | |
1819 | + this.simpleButton_SelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); | |
1820 | + this.simpleButton_SelectAll.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SelectAll.Image"))); | |
1821 | + this.simpleButton_SelectAll.Location = new System.Drawing.Point(1513, 5); | |
1822 | + this.simpleButton_SelectAll.Name = "simpleButton_SelectAll"; | |
1823 | + this.simpleButton_SelectAll.Size = new System.Drawing.Size(94, 27); | |
1824 | + this.simpleButton_SelectAll.TabIndex = 3; | |
1825 | + this.simpleButton_SelectAll.Text = "모두선택"; | |
1826 | + // | |
1827 | + // simpleButton_Make | |
1828 | + // | |
1829 | + this.simpleButton_Make.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); | |
1830 | + this.simpleButton_Make.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Make.Image"))); | |
1831 | + this.simpleButton_Make.Location = new System.Drawing.Point(1713, 5); | |
1832 | + this.simpleButton_Make.Name = "simpleButton_Make"; | |
1833 | + this.simpleButton_Make.Size = new System.Drawing.Size(198, 27); | |
1834 | + this.simpleButton_Make.TabIndex = 5; | |
1835 | + this.simpleButton_Make.Text = "선택된 모든 자료를 발행"; | |
1836 | + // | |
1837 | + // panelControl_TAX_DT | |
1838 | + // | |
1839 | + this.panelControl_TAX_DT.Controls.Add(this.dateEdit_Date); | |
1840 | + this.panelControl_TAX_DT.Controls.Add(this.labelControl4); | |
1841 | + this.panelControl_TAX_DT.Location = new System.Drawing.Point(24, 5); | |
1842 | + this.panelControl_TAX_DT.Name = "panelControl_TAX_DT"; | |
1843 | + this.panelControl_TAX_DT.Size = new System.Drawing.Size(212, 27); | |
1844 | + this.panelControl_TAX_DT.TabIndex = 0; | |
1845 | + // | |
1846 | + // dateEdit_Date | |
1847 | + // | |
1848 | + this.dateEdit_Date.Dock = System.Windows.Forms.DockStyle.Fill; | |
1849 | + this.dateEdit_Date.EditValue = null; | |
1850 | + this.dateEdit_Date.EnterMoveNextControl = true; | |
1851 | + this.dateEdit_Date.Location = new System.Drawing.Point(92, 2); | |
1852 | + this.dateEdit_Date.Name = "dateEdit_Date"; | |
1853 | + this.dateEdit_Date.Properties.Appearance.Options.UseTextOptions = true; | |
1854 | + this.dateEdit_Date.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1855 | + this.dateEdit_Date.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
1856 | + this.dateEdit_Date.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1857 | + this.dateEdit_Date.Properties.AutoHeight = false; | |
1858 | + this.dateEdit_Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
1859 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
1860 | + this.dateEdit_Date.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
1861 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
1862 | + this.dateEdit_Date.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; | |
1863 | + this.dateEdit_Date.Properties.Mask.UseMaskAsDisplayFormat = true; | |
1864 | + this.dateEdit_Date.Size = new System.Drawing.Size(118, 23); | |
1865 | + this.dateEdit_Date.TabIndex = 0; | |
1866 | + // | |
1867 | + // labelControl4 | |
1868 | + // | |
1869 | + this.labelControl4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1870 | + this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
1871 | + this.labelControl4.Dock = System.Windows.Forms.DockStyle.Left; | |
1872 | + this.labelControl4.Location = new System.Drawing.Point(2, 2); | |
1873 | + this.labelControl4.Name = "labelControl4"; | |
1874 | + this.labelControl4.Size = new System.Drawing.Size(90, 23); | |
1875 | + this.labelControl4.TabIndex = 0; | |
1876 | + this.labelControl4.Text = "작성일자"; | |
1877 | + // | |
1878 | + // panelControl_TAX_TYPE | |
1879 | + // | |
1880 | + this.panelControl_TAX_TYPE.Controls.Add(this.lookUpEdit_TAX_TYPE); | |
1881 | + this.panelControl_TAX_TYPE.Controls.Add(this.labelControl5); | |
1882 | + this.panelControl_TAX_TYPE.Location = new System.Drawing.Point(460, 5); | |
1883 | + this.panelControl_TAX_TYPE.Name = "panelControl_TAX_TYPE"; | |
1884 | + this.panelControl_TAX_TYPE.Size = new System.Drawing.Size(212, 27); | |
1885 | + this.panelControl_TAX_TYPE.TabIndex = 2; | |
1886 | + // | |
1887 | + // lookUpEdit_TAX_TYPE | |
1888 | + // | |
1889 | + this.lookUpEdit_TAX_TYPE.Dock = System.Windows.Forms.DockStyle.Fill; | |
1890 | + this.lookUpEdit_TAX_TYPE.EnterMoveNextControl = true; | |
1891 | + this.lookUpEdit_TAX_TYPE.Location = new System.Drawing.Point(92, 2); | |
1892 | + this.lookUpEdit_TAX_TYPE.Name = "lookUpEdit_TAX_TYPE"; | |
1893 | + this.lookUpEdit_TAX_TYPE.Properties.AutoHeight = false; | |
1894 | + this.lookUpEdit_TAX_TYPE.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
1895 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
1896 | + this.lookUpEdit_TAX_TYPE.Size = new System.Drawing.Size(118, 23); | |
1897 | + this.lookUpEdit_TAX_TYPE.TabIndex = 1; | |
1898 | + // | |
1899 | + // labelControl5 | |
1900 | + // | |
1901 | + this.labelControl5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1902 | + this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
1903 | + this.labelControl5.Dock = System.Windows.Forms.DockStyle.Left; | |
1904 | + this.labelControl5.Location = new System.Drawing.Point(2, 2); | |
1905 | + this.labelControl5.Name = "labelControl5"; | |
1906 | + this.labelControl5.Size = new System.Drawing.Size(90, 23); | |
1907 | + this.labelControl5.TabIndex = 0; | |
1908 | + this.labelControl5.Text = "계산서분류"; | |
1909 | + // | |
1910 | + // panelControl_REQ_TYPE | |
1911 | + // | |
1912 | + this.panelControl_REQ_TYPE.Controls.Add(this.lookUpEdit_TAX_REQ_TYPE); | |
1913 | + this.panelControl_REQ_TYPE.Controls.Add(this.labelControl3); | |
1914 | + this.panelControl_REQ_TYPE.Location = new System.Drawing.Point(242, 5); | |
1915 | + this.panelControl_REQ_TYPE.Name = "panelControl_REQ_TYPE"; | |
1916 | + this.panelControl_REQ_TYPE.Size = new System.Drawing.Size(212, 27); | |
1917 | + this.panelControl_REQ_TYPE.TabIndex = 1; | |
1918 | + // | |
1919 | + // lookUpEdit_TAX_REQ_TYPE | |
1920 | + // | |
1921 | + this.lookUpEdit_TAX_REQ_TYPE.Dock = System.Windows.Forms.DockStyle.Fill; | |
1922 | + this.lookUpEdit_TAX_REQ_TYPE.EnterMoveNextControl = true; | |
1923 | + this.lookUpEdit_TAX_REQ_TYPE.Location = new System.Drawing.Point(92, 2); | |
1924 | + this.lookUpEdit_TAX_REQ_TYPE.Name = "lookUpEdit_TAX_REQ_TYPE"; | |
1925 | + this.lookUpEdit_TAX_REQ_TYPE.Properties.AutoHeight = false; | |
1926 | + this.lookUpEdit_TAX_REQ_TYPE.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
1927 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
1928 | + this.lookUpEdit_TAX_REQ_TYPE.Size = new System.Drawing.Size(118, 23); | |
1929 | + this.lookUpEdit_TAX_REQ_TYPE.TabIndex = 1; | |
1930 | + // | |
1931 | + // labelControl3 | |
1932 | + // | |
1933 | + this.labelControl3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1934 | + this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
1935 | + this.labelControl3.Dock = System.Windows.Forms.DockStyle.Left; | |
1936 | + this.labelControl3.Location = new System.Drawing.Point(2, 2); | |
1937 | + this.labelControl3.Name = "labelControl3"; | |
1938 | + this.labelControl3.Size = new System.Drawing.Size(90, 23); | |
1939 | + this.labelControl3.TabIndex = 0; | |
1940 | + this.labelControl3.Text = "영수구분"; | |
1941 | + // | |
1942 | + // xtraTabPage_Tab2 | |
1943 | + // | |
1944 | + this.xtraTabPage_Tab2.Controls.Add(this.gridControl_Cust); | |
1945 | + this.xtraTabPage_Tab2.Controls.Add(this.panelControl10); | |
1946 | + this.xtraTabPage_Tab2.Controls.Add(this.panelControl7); | |
1947 | + this.xtraTabPage_Tab2.Name = "xtraTabPage_Tab2"; | |
1948 | + this.xtraTabPage_Tab2.Size = new System.Drawing.Size(1918, 437); | |
1949 | + this.xtraTabPage_Tab2.Text = "계산서 거래선정보 작업"; | |
1950 | + // | |
1951 | + // gridControl_Cust | |
1952 | + // | |
1953 | + this.gridControl_Cust.Dock = System.Windows.Forms.DockStyle.Fill; | |
1954 | + this.gridControl_Cust.Location = new System.Drawing.Point(0, 30); | |
1955 | + this.gridControl_Cust.MainView = this.gridView_Cust; | |
1956 | + this.gridControl_Cust.Name = "gridControl_Cust"; | |
1957 | + this.gridControl_Cust.Size = new System.Drawing.Size(1918, 118); | |
1958 | + this.gridControl_Cust.TabIndex = 7; | |
1959 | + this.gridControl_Cust.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { | |
1960 | + this.gridView_Cust}); | |
1961 | + // | |
1962 | + // gridView_Cust | |
1963 | + // | |
1964 | + this.gridView_Cust.Appearance.FooterPanel.Options.UseFont = true; | |
1965 | + this.gridView_Cust.Appearance.HeaderPanel.Options.UseFont = true; | |
1966 | + this.gridView_Cust.Appearance.HeaderPanel.Options.UseTextOptions = true; | |
1967 | + this.gridView_Cust.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
1968 | + this.gridView_Cust.Appearance.Row.Options.UseFont = true; | |
1969 | + this.gridView_Cust.ColumnPanelRowHeight = 23; | |
1970 | + this.gridView_Cust.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { | |
1971 | + this.gridColumn17, | |
1972 | + this.gridColumn18, | |
1973 | + this.gridColumn19, | |
1974 | + this.gridColumn20, | |
1975 | + this.gridColumn21, | |
1976 | + this.gridColumn22, | |
1977 | + this.gridColumn23, | |
1978 | + this.gridColumn24, | |
1979 | + this.gridColumn25, | |
1980 | + this.gridColumn26, | |
1981 | + this.gridColumn27, | |
1982 | + this.gridColumn28}); | |
1983 | + this.gridView_Cust.FooterPanelHeight = 23; | |
1984 | + this.gridView_Cust.GridControl = this.gridControl_Cust; | |
1985 | + this.gridView_Cust.GroupRowHeight = 23; | |
1986 | + this.gridView_Cust.Name = "gridView_Cust"; | |
1987 | + this.gridView_Cust.OptionsBehavior.Editable = false; | |
1988 | + this.gridView_Cust.OptionsCustomization.AllowGroup = false; | |
1989 | + this.gridView_Cust.OptionsCustomization.AllowSort = false; | |
1990 | + this.gridView_Cust.OptionsNavigation.EnterMoveNextColumn = true; | |
1991 | + this.gridView_Cust.OptionsSelection.EnableAppearanceFocusedCell = false; | |
1992 | + this.gridView_Cust.OptionsView.ColumnAutoWidth = false; | |
1993 | + this.gridView_Cust.OptionsView.ShowFooter = true; | |
1994 | + this.gridView_Cust.OptionsView.ShowGroupPanel = false; | |
1995 | + this.gridView_Cust.RowHeight = 23; | |
1996 | + // | |
1997 | + // gridColumn17 | |
1998 | + // | |
1999 | + this.gridColumn17.AppearanceCell.Options.UseTextOptions = true; | |
2000 | + this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2001 | + this.gridColumn17.Caption = "사업자번호"; | |
2002 | + this.gridColumn17.FieldName = "BIZ_NO"; | |
2003 | + this.gridColumn17.Name = "gridColumn17"; | |
2004 | + this.gridColumn17.Visible = true; | |
2005 | + this.gridColumn17.VisibleIndex = 1; | |
2006 | + this.gridColumn17.Width = 105; | |
2007 | + // | |
2008 | + // gridColumn18 | |
2009 | + // | |
2010 | + this.gridColumn18.Caption = "상호"; | |
2011 | + this.gridColumn18.FieldName = "CUST_NM"; | |
2012 | + this.gridColumn18.Name = "gridColumn18"; | |
2013 | + this.gridColumn18.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
2014 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "CUST_NM", "{0:#,##0} 건")}); | |
2015 | + this.gridColumn18.Visible = true; | |
2016 | + this.gridColumn18.VisibleIndex = 0; | |
2017 | + this.gridColumn18.Width = 250; | |
2018 | + // | |
2019 | + // gridColumn19 | |
2020 | + // | |
2021 | + this.gridColumn19.Caption = "계산서 담당자"; | |
2022 | + this.gridColumn19.FieldName = "MGR_NM"; | |
2023 | + this.gridColumn19.Name = "gridColumn19"; | |
2024 | + this.gridColumn19.Visible = true; | |
2025 | + this.gridColumn19.VisibleIndex = 3; | |
2026 | + this.gridColumn19.Width = 110; | |
2027 | + // | |
2028 | + // gridColumn20 | |
2029 | + // | |
2030 | + this.gridColumn20.Caption = "대표"; | |
2031 | + this.gridColumn20.FieldName = "OWNER_NM"; | |
2032 | + this.gridColumn20.Name = "gridColumn20"; | |
2033 | + this.gridColumn20.Visible = true; | |
2034 | + this.gridColumn20.VisibleIndex = 2; | |
2035 | + // | |
2036 | + // gridColumn21 | |
2037 | + // | |
2038 | + this.gridColumn21.Caption = "담당자 연락처"; | |
2039 | + this.gridColumn21.FieldName = "MGR_TEL_NO"; | |
2040 | + this.gridColumn21.Name = "gridColumn21"; | |
2041 | + this.gridColumn21.Visible = true; | |
2042 | + this.gridColumn21.VisibleIndex = 4; | |
2043 | + this.gridColumn21.Width = 150; | |
2044 | + // | |
2045 | + // gridColumn22 | |
2046 | + // | |
2047 | + this.gridColumn22.AppearanceCell.Options.UseTextOptions = true; | |
2048 | + this.gridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2049 | + this.gridColumn22.Caption = "담당자 이메일"; | |
2050 | + this.gridColumn22.FieldName = "MGR_EMAIL"; | |
2051 | + this.gridColumn22.Name = "gridColumn22"; | |
2052 | + this.gridColumn22.Visible = true; | |
2053 | + this.gridColumn22.VisibleIndex = 5; | |
2054 | + this.gridColumn22.Width = 180; | |
2055 | + // | |
2056 | + // gridColumn23 | |
2057 | + // | |
2058 | + this.gridColumn23.Caption = "종목"; | |
2059 | + this.gridColumn23.FieldName = "EVNT_NM"; | |
2060 | + this.gridColumn23.Name = "gridColumn23"; | |
2061 | + this.gridColumn23.Visible = true; | |
2062 | + this.gridColumn23.VisibleIndex = 7; | |
2063 | + this.gridColumn23.Width = 120; | |
2064 | + // | |
2065 | + // gridColumn24 | |
2066 | + // | |
2067 | + this.gridColumn24.Caption = "업태"; | |
2068 | + this.gridColumn24.FieldName = "COND_NM"; | |
2069 | + this.gridColumn24.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
2070 | + this.gridColumn24.Name = "gridColumn24"; | |
2071 | + this.gridColumn24.Visible = true; | |
2072 | + this.gridColumn24.VisibleIndex = 6; | |
2073 | + this.gridColumn24.Width = 120; | |
2074 | + // | |
2075 | + // gridColumn25 | |
2076 | + // | |
2077 | + this.gridColumn25.Caption = "주소"; | |
2078 | + this.gridColumn25.FieldName = "ADDR1"; | |
2079 | + this.gridColumn25.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
2080 | + this.gridColumn25.Name = "gridColumn25"; | |
2081 | + this.gridColumn25.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
2082 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Custom, "VAT_MY", "{0:#,##0}")}); | |
2083 | + this.gridColumn25.Visible = true; | |
2084 | + this.gridColumn25.VisibleIndex = 8; | |
2085 | + this.gridColumn25.Width = 350; | |
2086 | + // | |
2087 | + // gridColumn26 | |
2088 | + // | |
2089 | + this.gridColumn26.AppearanceCell.Options.UseTextOptions = true; | |
2090 | + this.gridColumn26.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2091 | + this.gridColumn26.Caption = "전화번호"; | |
2092 | + this.gridColumn26.FieldName = "TEL_NO"; | |
2093 | + this.gridColumn26.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
2094 | + this.gridColumn26.Name = "gridColumn26"; | |
2095 | + this.gridColumn26.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
2096 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Custom, "ORDER_MY", "{0:#,##0}")}); | |
2097 | + this.gridColumn26.Visible = true; | |
2098 | + this.gridColumn26.VisibleIndex = 9; | |
2099 | + this.gridColumn26.Width = 110; | |
2100 | + // | |
2101 | + // gridColumn27 | |
2102 | + // | |
2103 | + this.gridColumn27.AppearanceCell.Options.UseTextOptions = true; | |
2104 | + this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2105 | + this.gridColumn27.Caption = "팩스"; | |
2106 | + this.gridColumn27.FieldName = "FAX_NO"; | |
2107 | + this.gridColumn27.Name = "gridColumn27"; | |
2108 | + this.gridColumn27.Visible = true; | |
2109 | + this.gridColumn27.VisibleIndex = 10; | |
2110 | + this.gridColumn27.Width = 110; | |
2111 | + // | |
2112 | + // gridColumn28 | |
2113 | + // | |
2114 | + this.gridColumn28.AppearanceCell.Options.UseTextOptions = true; | |
2115 | + this.gridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2116 | + this.gridColumn28.Caption = "코드"; | |
2117 | + this.gridColumn28.FieldName = "CUST_CD"; | |
2118 | + this.gridColumn28.Name = "gridColumn28"; | |
2119 | + this.gridColumn28.Visible = true; | |
2120 | + this.gridColumn28.VisibleIndex = 11; | |
2121 | + // | |
2122 | + // panelControl10 | |
2123 | + // | |
2124 | + this.panelControl10.Controls.Add(this.groupControl_Cust); | |
2125 | + this.panelControl10.Controls.Add(this.groupControl1); | |
2126 | + this.panelControl10.Dock = System.Windows.Forms.DockStyle.Bottom; | |
2127 | + this.panelControl10.Location = new System.Drawing.Point(0, 148); | |
2128 | + this.panelControl10.Name = "panelControl10"; | |
2129 | + this.panelControl10.Size = new System.Drawing.Size(1918, 289); | |
2130 | + this.panelControl10.TabIndex = 8; | |
2131 | + // | |
2132 | + // groupControl_Cust | |
2133 | + // | |
2134 | + this.groupControl_Cust.Controls.Add(this.simpleButton_CustSave); | |
2135 | + this.groupControl_Cust.Controls.Add(this.panelControl26); | |
2136 | + this.groupControl_Cust.Controls.Add(this.panelControl35); | |
2137 | + this.groupControl_Cust.Controls.Add(this.panelControl40); | |
2138 | + this.groupControl_Cust.Controls.Add(this.panelControl39); | |
2139 | + this.groupControl_Cust.Controls.Add(this.panelControl31); | |
2140 | + this.groupControl_Cust.Controls.Add(this.panelControl32); | |
2141 | + this.groupControl_Cust.Controls.Add(this.panelControl33); | |
2142 | + this.groupControl_Cust.Controls.Add(this.panelControl34); | |
2143 | + this.groupControl_Cust.Controls.Add(this.panelControl41); | |
2144 | + this.groupControl_Cust.Controls.Add(this.panelControl42); | |
2145 | + this.groupControl_Cust.Dock = System.Windows.Forms.DockStyle.Left; | |
2146 | + this.groupControl_Cust.Location = new System.Drawing.Point(471, 2); | |
2147 | + this.groupControl_Cust.Name = "groupControl_Cust"; | |
2148 | + this.groupControl_Cust.Size = new System.Drawing.Size(469, 285); | |
2149 | + this.groupControl_Cust.TabIndex = 1; | |
2150 | + this.groupControl_Cust.Text = "공급받는자 용"; | |
2151 | + // | |
2152 | + // simpleButton_CustSave | |
2153 | + // | |
2154 | + this.simpleButton_CustSave.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_CustSave.Image"))); | |
2155 | + this.simpleButton_CustSave.Location = new System.Drawing.Point(386, 255); | |
2156 | + this.simpleButton_CustSave.Name = "simpleButton_CustSave"; | |
2157 | + this.simpleButton_CustSave.Size = new System.Drawing.Size(75, 25); | |
2158 | + this.simpleButton_CustSave.TabIndex = 51; | |
2159 | + this.simpleButton_CustSave.Text = "저장"; | |
2160 | + // | |
2161 | + // panelControl26 | |
2162 | + // | |
2163 | + this.panelControl26.Controls.Add(this.textEdit_CUST_BIZ_NO); | |
2164 | + this.panelControl26.Controls.Add(this.labelControl23); | |
2165 | + this.panelControl26.Location = new System.Drawing.Point(238, 23); | |
2166 | + this.panelControl26.Name = "panelControl26"; | |
2167 | + this.panelControl26.Size = new System.Drawing.Size(223, 25); | |
2168 | + this.panelControl26.TabIndex = 1; | |
2169 | + // | |
2170 | + // textEdit_CUST_BIZ_NO | |
2171 | + // | |
2172 | + this.textEdit_CUST_BIZ_NO.Dock = System.Windows.Forms.DockStyle.Fill; | |
2173 | + this.textEdit_CUST_BIZ_NO.EnterMoveNextControl = true; | |
2174 | + this.textEdit_CUST_BIZ_NO.Location = new System.Drawing.Point(87, 2); | |
2175 | + this.textEdit_CUST_BIZ_NO.Name = "textEdit_CUST_BIZ_NO"; | |
2176 | + this.textEdit_CUST_BIZ_NO.Properties.Appearance.Options.UseTextOptions = true; | |
2177 | + this.textEdit_CUST_BIZ_NO.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2178 | + this.textEdit_CUST_BIZ_NO.Properties.AutoHeight = false; | |
2179 | + this.textEdit_CUST_BIZ_NO.Properties.Mask.EditMask = "\\d\\d\\d-\\d\\d-\\d\\d\\d\\d\\d"; | |
2180 | + this.textEdit_CUST_BIZ_NO.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx; | |
2181 | + this.textEdit_CUST_BIZ_NO.Properties.Mask.UseMaskAsDisplayFormat = true; | |
2182 | + this.textEdit_CUST_BIZ_NO.Size = new System.Drawing.Size(134, 21); | |
2183 | + this.textEdit_CUST_BIZ_NO.TabIndex = 1; | |
2184 | + // | |
2185 | + // labelControl23 | |
2186 | + // | |
2187 | + this.labelControl23.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2188 | + this.labelControl23.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2189 | + this.labelControl23.Dock = System.Windows.Forms.DockStyle.Left; | |
2190 | + this.labelControl23.Location = new System.Drawing.Point(2, 2); | |
2191 | + this.labelControl23.Name = "labelControl23"; | |
2192 | + this.labelControl23.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2193 | + this.labelControl23.Size = new System.Drawing.Size(85, 21); | |
2194 | + this.labelControl23.TabIndex = 0; | |
2195 | + this.labelControl23.Text = "사업자번호"; | |
2196 | + // | |
2197 | + // panelControl35 | |
2198 | + // | |
2199 | + this.panelControl35.Controls.Add(this.textEdit_CUST_MGR_EMAIL); | |
2200 | + this.panelControl35.Controls.Add(this.labelControl31); | |
2201 | + this.panelControl35.Location = new System.Drawing.Point(9, 168); | |
2202 | + this.panelControl35.Name = "panelControl35"; | |
2203 | + this.panelControl35.Size = new System.Drawing.Size(452, 25); | |
2204 | + this.panelControl35.TabIndex = 9; | |
2205 | + // | |
2206 | + // textEdit_CUST_MGR_EMAIL | |
2207 | + // | |
2208 | + this.textEdit_CUST_MGR_EMAIL.Dock = System.Windows.Forms.DockStyle.Fill; | |
2209 | + this.textEdit_CUST_MGR_EMAIL.EnterMoveNextControl = true; | |
2210 | + this.textEdit_CUST_MGR_EMAIL.Location = new System.Drawing.Point(87, 2); | |
2211 | + this.textEdit_CUST_MGR_EMAIL.Name = "textEdit_CUST_MGR_EMAIL"; | |
2212 | + this.textEdit_CUST_MGR_EMAIL.Properties.AutoHeight = false; | |
2213 | + this.textEdit_CUST_MGR_EMAIL.Size = new System.Drawing.Size(363, 21); | |
2214 | + this.textEdit_CUST_MGR_EMAIL.TabIndex = 1; | |
2215 | + // | |
2216 | + // labelControl31 | |
2217 | + // | |
2218 | + this.labelControl31.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2219 | + this.labelControl31.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2220 | + this.labelControl31.Dock = System.Windows.Forms.DockStyle.Left; | |
2221 | + this.labelControl31.Location = new System.Drawing.Point(2, 2); | |
2222 | + this.labelControl31.Name = "labelControl31"; | |
2223 | + this.labelControl31.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2224 | + this.labelControl31.Size = new System.Drawing.Size(85, 21); | |
2225 | + this.labelControl31.TabIndex = 0; | |
2226 | + this.labelControl31.Text = "계산서 이메일"; | |
2227 | + // | |
2228 | + // panelControl40 | |
2229 | + // | |
2230 | + this.panelControl40.Controls.Add(this.textEdit_CUST_MGR_NM); | |
2231 | + this.panelControl40.Controls.Add(this.labelControl36); | |
2232 | + this.panelControl40.Location = new System.Drawing.Point(9, 139); | |
2233 | + this.panelControl40.Name = "panelControl40"; | |
2234 | + this.panelControl40.Size = new System.Drawing.Size(223, 25); | |
2235 | + this.panelControl40.TabIndex = 7; | |
2236 | + // | |
2237 | + // textEdit_CUST_MGR_NM | |
2238 | + // | |
2239 | + this.textEdit_CUST_MGR_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2240 | + this.textEdit_CUST_MGR_NM.EnterMoveNextControl = true; | |
2241 | + this.textEdit_CUST_MGR_NM.Location = new System.Drawing.Point(87, 2); | |
2242 | + this.textEdit_CUST_MGR_NM.Name = "textEdit_CUST_MGR_NM"; | |
2243 | + this.textEdit_CUST_MGR_NM.Properties.AutoHeight = false; | |
2244 | + this.textEdit_CUST_MGR_NM.Size = new System.Drawing.Size(134, 21); | |
2245 | + this.textEdit_CUST_MGR_NM.TabIndex = 1; | |
2246 | + // | |
2247 | + // labelControl36 | |
2248 | + // | |
2249 | + this.labelControl36.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2250 | + this.labelControl36.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2251 | + this.labelControl36.Dock = System.Windows.Forms.DockStyle.Left; | |
2252 | + this.labelControl36.Location = new System.Drawing.Point(2, 2); | |
2253 | + this.labelControl36.Name = "labelControl36"; | |
2254 | + this.labelControl36.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2255 | + this.labelControl36.Size = new System.Drawing.Size(85, 21); | |
2256 | + this.labelControl36.TabIndex = 0; | |
2257 | + this.labelControl36.Text = "계산서 담당자"; | |
2258 | + // | |
2259 | + // panelControl39 | |
2260 | + // | |
2261 | + this.panelControl39.Controls.Add(this.textEdit_CUST_MGR_TEL_NO); | |
2262 | + this.panelControl39.Controls.Add(this.labelControl35); | |
2263 | + this.panelControl39.Location = new System.Drawing.Point(238, 139); | |
2264 | + this.panelControl39.Name = "panelControl39"; | |
2265 | + this.panelControl39.Size = new System.Drawing.Size(223, 25); | |
2266 | + this.panelControl39.TabIndex = 8; | |
2267 | + // | |
2268 | + // textEdit_CUST_MGR_TEL_NO | |
2269 | + // | |
2270 | + this.textEdit_CUST_MGR_TEL_NO.Dock = System.Windows.Forms.DockStyle.Fill; | |
2271 | + this.textEdit_CUST_MGR_TEL_NO.EnterMoveNextControl = true; | |
2272 | + this.textEdit_CUST_MGR_TEL_NO.Location = new System.Drawing.Point(87, 2); | |
2273 | + this.textEdit_CUST_MGR_TEL_NO.Name = "textEdit_CUST_MGR_TEL_NO"; | |
2274 | + this.textEdit_CUST_MGR_TEL_NO.Properties.Appearance.Options.UseTextOptions = true; | |
2275 | + this.textEdit_CUST_MGR_TEL_NO.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2276 | + this.textEdit_CUST_MGR_TEL_NO.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
2277 | + this.textEdit_CUST_MGR_TEL_NO.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2278 | + this.textEdit_CUST_MGR_TEL_NO.Properties.AutoHeight = false; | |
2279 | + this.textEdit_CUST_MGR_TEL_NO.Size = new System.Drawing.Size(134, 21); | |
2280 | + this.textEdit_CUST_MGR_TEL_NO.TabIndex = 1; | |
2281 | + // | |
2282 | + // labelControl35 | |
2283 | + // | |
2284 | + this.labelControl35.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2285 | + this.labelControl35.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2286 | + this.labelControl35.Dock = System.Windows.Forms.DockStyle.Left; | |
2287 | + this.labelControl35.Location = new System.Drawing.Point(2, 2); | |
2288 | + this.labelControl35.Name = "labelControl35"; | |
2289 | + this.labelControl35.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2290 | + this.labelControl35.Size = new System.Drawing.Size(85, 21); | |
2291 | + this.labelControl35.TabIndex = 0; | |
2292 | + this.labelControl35.Text = "담당자 전화"; | |
2293 | + // | |
2294 | + // panelControl31 | |
2295 | + // | |
2296 | + this.panelControl31.Controls.Add(this.textEdit_CUST_FAX_NO); | |
2297 | + this.panelControl31.Controls.Add(this.labelControl26); | |
2298 | + this.panelControl31.Location = new System.Drawing.Point(238, 81); | |
2299 | + this.panelControl31.Name = "panelControl31"; | |
2300 | + this.panelControl31.Size = new System.Drawing.Size(223, 25); | |
2301 | + this.panelControl31.TabIndex = 5; | |
2302 | + // | |
2303 | + // textEdit_CUST_FAX_NO | |
2304 | + // | |
2305 | + this.textEdit_CUST_FAX_NO.Dock = System.Windows.Forms.DockStyle.Fill; | |
2306 | + this.textEdit_CUST_FAX_NO.EnterMoveNextControl = true; | |
2307 | + this.textEdit_CUST_FAX_NO.Location = new System.Drawing.Point(87, 2); | |
2308 | + this.textEdit_CUST_FAX_NO.Name = "textEdit_CUST_FAX_NO"; | |
2309 | + this.textEdit_CUST_FAX_NO.Properties.Appearance.Options.UseTextOptions = true; | |
2310 | + this.textEdit_CUST_FAX_NO.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2311 | + this.textEdit_CUST_FAX_NO.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
2312 | + this.textEdit_CUST_FAX_NO.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2313 | + this.textEdit_CUST_FAX_NO.Properties.AutoHeight = false; | |
2314 | + this.textEdit_CUST_FAX_NO.Size = new System.Drawing.Size(134, 21); | |
2315 | + this.textEdit_CUST_FAX_NO.TabIndex = 1; | |
2316 | + // | |
2317 | + // labelControl26 | |
2318 | + // | |
2319 | + this.labelControl26.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2320 | + this.labelControl26.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2321 | + this.labelControl26.Dock = System.Windows.Forms.DockStyle.Left; | |
2322 | + this.labelControl26.Location = new System.Drawing.Point(2, 2); | |
2323 | + this.labelControl26.Name = "labelControl26"; | |
2324 | + this.labelControl26.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2325 | + this.labelControl26.Size = new System.Drawing.Size(85, 21); | |
2326 | + this.labelControl26.TabIndex = 0; | |
2327 | + this.labelControl26.Text = "팩스"; | |
2328 | + // | |
2329 | + // panelControl32 | |
2330 | + // | |
2331 | + this.panelControl32.Controls.Add(this.textEdit_CUST_EVNT_NM); | |
2332 | + this.panelControl32.Controls.Add(this.labelControl28); | |
2333 | + this.panelControl32.Location = new System.Drawing.Point(9, 81); | |
2334 | + this.panelControl32.Name = "panelControl32"; | |
2335 | + this.panelControl32.Size = new System.Drawing.Size(223, 25); | |
2336 | + this.panelControl32.TabIndex = 4; | |
2337 | + // | |
2338 | + // textEdit_CUST_EVNT_NM | |
2339 | + // | |
2340 | + this.textEdit_CUST_EVNT_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2341 | + this.textEdit_CUST_EVNT_NM.EnterMoveNextControl = true; | |
2342 | + this.textEdit_CUST_EVNT_NM.Location = new System.Drawing.Point(87, 2); | |
2343 | + this.textEdit_CUST_EVNT_NM.Name = "textEdit_CUST_EVNT_NM"; | |
2344 | + this.textEdit_CUST_EVNT_NM.Properties.AutoHeight = false; | |
2345 | + this.textEdit_CUST_EVNT_NM.Size = new System.Drawing.Size(134, 21); | |
2346 | + this.textEdit_CUST_EVNT_NM.TabIndex = 1; | |
2347 | + // | |
2348 | + // labelControl28 | |
2349 | + // | |
2350 | + this.labelControl28.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2351 | + this.labelControl28.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2352 | + this.labelControl28.Dock = System.Windows.Forms.DockStyle.Left; | |
2353 | + this.labelControl28.Location = new System.Drawing.Point(2, 2); | |
2354 | + this.labelControl28.Name = "labelControl28"; | |
2355 | + this.labelControl28.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2356 | + this.labelControl28.Size = new System.Drawing.Size(85, 21); | |
2357 | + this.labelControl28.TabIndex = 0; | |
2358 | + this.labelControl28.Text = "종목"; | |
2359 | + // | |
2360 | + // panelControl33 | |
2361 | + // | |
2362 | + this.panelControl33.Controls.Add(this.textEdit_CUST_COND_NM); | |
2363 | + this.panelControl33.Controls.Add(this.labelControl29); | |
2364 | + this.panelControl33.Location = new System.Drawing.Point(238, 52); | |
2365 | + this.panelControl33.Name = "panelControl33"; | |
2366 | + this.panelControl33.Size = new System.Drawing.Size(223, 25); | |
2367 | + this.panelControl33.TabIndex = 3; | |
2368 | + // | |
2369 | + // textEdit_CUST_COND_NM | |
2370 | + // | |
2371 | + this.textEdit_CUST_COND_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2372 | + this.textEdit_CUST_COND_NM.EnterMoveNextControl = true; | |
2373 | + this.textEdit_CUST_COND_NM.Location = new System.Drawing.Point(87, 2); | |
2374 | + this.textEdit_CUST_COND_NM.Name = "textEdit_CUST_COND_NM"; | |
2375 | + this.textEdit_CUST_COND_NM.Properties.AutoHeight = false; | |
2376 | + this.textEdit_CUST_COND_NM.Size = new System.Drawing.Size(134, 21); | |
2377 | + this.textEdit_CUST_COND_NM.TabIndex = 1; | |
2378 | + // | |
2379 | + // labelControl29 | |
2380 | + // | |
2381 | + this.labelControl29.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2382 | + this.labelControl29.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2383 | + this.labelControl29.Dock = System.Windows.Forms.DockStyle.Left; | |
2384 | + this.labelControl29.Location = new System.Drawing.Point(2, 2); | |
2385 | + this.labelControl29.Name = "labelControl29"; | |
2386 | + this.labelControl29.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2387 | + this.labelControl29.Size = new System.Drawing.Size(85, 21); | |
2388 | + this.labelControl29.TabIndex = 0; | |
2389 | + this.labelControl29.Text = "업태"; | |
2390 | + // | |
2391 | + // panelControl34 | |
2392 | + // | |
2393 | + this.panelControl34.Controls.Add(this.textEdit_CUST_ADDR1); | |
2394 | + this.panelControl34.Controls.Add(this.labelControl30); | |
2395 | + this.panelControl34.Location = new System.Drawing.Point(9, 110); | |
2396 | + this.panelControl34.Name = "panelControl34"; | |
2397 | + this.panelControl34.Size = new System.Drawing.Size(452, 25); | |
2398 | + this.panelControl34.TabIndex = 6; | |
2399 | + // | |
2400 | + // textEdit_CUST_ADDR1 | |
2401 | + // | |
2402 | + this.textEdit_CUST_ADDR1.Dock = System.Windows.Forms.DockStyle.Fill; | |
2403 | + this.textEdit_CUST_ADDR1.EnterMoveNextControl = true; | |
2404 | + this.textEdit_CUST_ADDR1.Location = new System.Drawing.Point(87, 2); | |
2405 | + this.textEdit_CUST_ADDR1.Name = "textEdit_CUST_ADDR1"; | |
2406 | + this.textEdit_CUST_ADDR1.Properties.AutoHeight = false; | |
2407 | + this.textEdit_CUST_ADDR1.Size = new System.Drawing.Size(363, 21); | |
2408 | + this.textEdit_CUST_ADDR1.TabIndex = 1; | |
2409 | + // | |
2410 | + // labelControl30 | |
2411 | + // | |
2412 | + this.labelControl30.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2413 | + this.labelControl30.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2414 | + this.labelControl30.Dock = System.Windows.Forms.DockStyle.Left; | |
2415 | + this.labelControl30.Location = new System.Drawing.Point(2, 2); | |
2416 | + this.labelControl30.Name = "labelControl30"; | |
2417 | + this.labelControl30.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2418 | + this.labelControl30.Size = new System.Drawing.Size(85, 21); | |
2419 | + this.labelControl30.TabIndex = 0; | |
2420 | + this.labelControl30.Text = "주소"; | |
2421 | + // | |
2422 | + // panelControl41 | |
2423 | + // | |
2424 | + this.panelControl41.Controls.Add(this.textEdit_CUST_OWNER_NM); | |
2425 | + this.panelControl41.Controls.Add(this.labelControl37); | |
2426 | + this.panelControl41.Location = new System.Drawing.Point(9, 52); | |
2427 | + this.panelControl41.Name = "panelControl41"; | |
2428 | + this.panelControl41.Size = new System.Drawing.Size(223, 25); | |
2429 | + this.panelControl41.TabIndex = 2; | |
2430 | + // | |
2431 | + // textEdit_CUST_OWNER_NM | |
2432 | + // | |
2433 | + this.textEdit_CUST_OWNER_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2434 | + this.textEdit_CUST_OWNER_NM.EnterMoveNextControl = true; | |
2435 | + this.textEdit_CUST_OWNER_NM.Location = new System.Drawing.Point(87, 2); | |
2436 | + this.textEdit_CUST_OWNER_NM.Name = "textEdit_CUST_OWNER_NM"; | |
2437 | + this.textEdit_CUST_OWNER_NM.Properties.AutoHeight = false; | |
2438 | + this.textEdit_CUST_OWNER_NM.Size = new System.Drawing.Size(134, 21); | |
2439 | + this.textEdit_CUST_OWNER_NM.TabIndex = 1; | |
2440 | + // | |
2441 | + // labelControl37 | |
2442 | + // | |
2443 | + this.labelControl37.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2444 | + this.labelControl37.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2445 | + this.labelControl37.Dock = System.Windows.Forms.DockStyle.Left; | |
2446 | + this.labelControl37.Location = new System.Drawing.Point(2, 2); | |
2447 | + this.labelControl37.Name = "labelControl37"; | |
2448 | + this.labelControl37.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2449 | + this.labelControl37.Size = new System.Drawing.Size(85, 21); | |
2450 | + this.labelControl37.TabIndex = 0; | |
2451 | + this.labelControl37.Text = "대표자"; | |
2452 | + // | |
2453 | + // panelControl42 | |
2454 | + // | |
2455 | + this.panelControl42.Controls.Add(this.textEdit_CUST_NM); | |
2456 | + this.panelControl42.Controls.Add(this.labelControl38); | |
2457 | + this.panelControl42.Location = new System.Drawing.Point(9, 23); | |
2458 | + this.panelControl42.Name = "panelControl42"; | |
2459 | + this.panelControl42.Size = new System.Drawing.Size(223, 25); | |
2460 | + this.panelControl42.TabIndex = 0; | |
2461 | + // | |
2462 | + // textEdit_CUST_NM | |
2463 | + // | |
2464 | + this.textEdit_CUST_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2465 | + this.textEdit_CUST_NM.EnterMoveNextControl = true; | |
2466 | + this.textEdit_CUST_NM.Location = new System.Drawing.Point(87, 2); | |
2467 | + this.textEdit_CUST_NM.MenuManager = this.m_BarManager; | |
2468 | + this.textEdit_CUST_NM.Name = "textEdit_CUST_NM"; | |
2469 | + this.textEdit_CUST_NM.Properties.AutoHeight = false; | |
2470 | + this.textEdit_CUST_NM.Size = new System.Drawing.Size(134, 21); | |
2471 | + this.textEdit_CUST_NM.TabIndex = 1; | |
2472 | + // | |
2473 | + // labelControl38 | |
2474 | + // | |
2475 | + this.labelControl38.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2476 | + this.labelControl38.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2477 | + this.labelControl38.Dock = System.Windows.Forms.DockStyle.Left; | |
2478 | + this.labelControl38.Location = new System.Drawing.Point(2, 2); | |
2479 | + this.labelControl38.Name = "labelControl38"; | |
2480 | + this.labelControl38.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2481 | + this.labelControl38.Size = new System.Drawing.Size(85, 21); | |
2482 | + this.labelControl38.TabIndex = 0; | |
2483 | + this.labelControl38.Text = "상호"; | |
2484 | + // | |
2485 | + // groupControl1 | |
2486 | + // | |
2487 | + this.groupControl1.Controls.Add(this.simpleButton_CompSave); | |
2488 | + this.groupControl1.Controls.Add(this.panelControl12); | |
2489 | + this.groupControl1.Controls.Add(this.panelControl24); | |
2490 | + this.groupControl1.Controls.Add(this.panelControl22); | |
2491 | + this.groupControl1.Controls.Add(this.panelControl18); | |
2492 | + this.groupControl1.Controls.Add(this.panelControl16); | |
2493 | + this.groupControl1.Controls.Add(this.panelControl14); | |
2494 | + this.groupControl1.Controls.Add(this.panelControl20); | |
2495 | + this.groupControl1.Controls.Add(this.panelControl19); | |
2496 | + this.groupControl1.Controls.Add(this.panelControl25); | |
2497 | + this.groupControl1.Controls.Add(this.panelControl23); | |
2498 | + this.groupControl1.Controls.Add(this.panelControl21); | |
2499 | + this.groupControl1.Controls.Add(this.panelControl17); | |
2500 | + this.groupControl1.Controls.Add(this.panelControl15); | |
2501 | + this.groupControl1.Controls.Add(this.panelControl13); | |
2502 | + this.groupControl1.Controls.Add(this.panelControl11); | |
2503 | + this.groupControl1.Dock = System.Windows.Forms.DockStyle.Left; | |
2504 | + this.groupControl1.Location = new System.Drawing.Point(2, 2); | |
2505 | + this.groupControl1.Name = "groupControl1"; | |
2506 | + this.groupControl1.Size = new System.Drawing.Size(469, 285); | |
2507 | + this.groupControl1.TabIndex = 0; | |
2508 | + this.groupControl1.Text = "공급자 용"; | |
2509 | + // | |
2510 | + // simpleButton_CompSave | |
2511 | + // | |
2512 | + this.simpleButton_CompSave.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_CompSave.Image"))); | |
2513 | + this.simpleButton_CompSave.Location = new System.Drawing.Point(386, 255); | |
2514 | + this.simpleButton_CompSave.Name = "simpleButton_CompSave"; | |
2515 | + this.simpleButton_CompSave.Size = new System.Drawing.Size(75, 25); | |
2516 | + this.simpleButton_CompSave.TabIndex = 51; | |
2517 | + this.simpleButton_CompSave.Text = "저장"; | |
2518 | + // | |
2519 | + // panelControl12 | |
2520 | + // | |
2521 | + this.panelControl12.Controls.Add(this.textEdit_BIZ_NO); | |
2522 | + this.panelControl12.Controls.Add(this.labelControl6); | |
2523 | + this.panelControl12.Location = new System.Drawing.Point(238, 23); | |
2524 | + this.panelControl12.Name = "panelControl12"; | |
2525 | + this.panelControl12.Size = new System.Drawing.Size(223, 25); | |
2526 | + this.panelControl12.TabIndex = 1; | |
2527 | + // | |
2528 | + // textEdit_BIZ_NO | |
2529 | + // | |
2530 | + this.textEdit_BIZ_NO.Dock = System.Windows.Forms.DockStyle.Fill; | |
2531 | + this.textEdit_BIZ_NO.EnterMoveNextControl = true; | |
2532 | + this.textEdit_BIZ_NO.Location = new System.Drawing.Point(87, 2); | |
2533 | + this.textEdit_BIZ_NO.Name = "textEdit_BIZ_NO"; | |
2534 | + this.textEdit_BIZ_NO.Properties.Appearance.Options.UseTextOptions = true; | |
2535 | + this.textEdit_BIZ_NO.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2536 | + this.textEdit_BIZ_NO.Properties.AutoHeight = false; | |
2537 | + this.textEdit_BIZ_NO.Properties.Mask.EditMask = "\\d\\d\\d-\\d\\d-\\d\\d\\d\\d\\d"; | |
2538 | + this.textEdit_BIZ_NO.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx; | |
2539 | + this.textEdit_BIZ_NO.Properties.Mask.UseMaskAsDisplayFormat = true; | |
2540 | + this.textEdit_BIZ_NO.Size = new System.Drawing.Size(134, 21); | |
2541 | + this.textEdit_BIZ_NO.TabIndex = 1; | |
2542 | + // | |
2543 | + // labelControl6 | |
2544 | + // | |
2545 | + this.labelControl6.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2546 | + this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2547 | + this.labelControl6.Dock = System.Windows.Forms.DockStyle.Left; | |
2548 | + this.labelControl6.Location = new System.Drawing.Point(2, 2); | |
2549 | + this.labelControl6.Name = "labelControl6"; | |
2550 | + this.labelControl6.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2551 | + this.labelControl6.Size = new System.Drawing.Size(85, 21); | |
2552 | + this.labelControl6.TabIndex = 0; | |
2553 | + this.labelControl6.Text = "사업자번호"; | |
2554 | + // | |
2555 | + // panelControl24 | |
2556 | + // | |
2557 | + this.panelControl24.Controls.Add(this.textEdit_TB_ACCT_NO); | |
2558 | + this.panelControl24.Controls.Add(this.labelControl21); | |
2559 | + this.panelControl24.Location = new System.Drawing.Point(238, 226); | |
2560 | + this.panelControl24.Name = "panelControl24"; | |
2561 | + this.panelControl24.Size = new System.Drawing.Size(223, 25); | |
2562 | + this.panelControl24.TabIndex = 24; | |
2563 | + // | |
2564 | + // textEdit_TB_ACCT_NO | |
2565 | + // | |
2566 | + this.textEdit_TB_ACCT_NO.Dock = System.Windows.Forms.DockStyle.Fill; | |
2567 | + this.textEdit_TB_ACCT_NO.EnterMoveNextControl = true; | |
2568 | + this.textEdit_TB_ACCT_NO.Location = new System.Drawing.Point(87, 2); | |
2569 | + this.textEdit_TB_ACCT_NO.Name = "textEdit_TB_ACCT_NO"; | |
2570 | + this.textEdit_TB_ACCT_NO.Properties.AutoHeight = false; | |
2571 | + this.textEdit_TB_ACCT_NO.Size = new System.Drawing.Size(134, 21); | |
2572 | + this.textEdit_TB_ACCT_NO.TabIndex = 1; | |
2573 | + // | |
2574 | + // labelControl21 | |
2575 | + // | |
2576 | + this.labelControl21.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2577 | + this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2578 | + this.labelControl21.Dock = System.Windows.Forms.DockStyle.Left; | |
2579 | + this.labelControl21.Location = new System.Drawing.Point(2, 2); | |
2580 | + this.labelControl21.Name = "labelControl21"; | |
2581 | + this.labelControl21.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2582 | + this.labelControl21.Size = new System.Drawing.Size(85, 21); | |
2583 | + this.labelControl21.TabIndex = 0; | |
2584 | + this.labelControl21.Text = "계좌번호"; | |
2585 | + // | |
2586 | + // panelControl22 | |
2587 | + // | |
2588 | + this.panelControl22.Controls.Add(this.textEdit_TB_USR_PWD); | |
2589 | + this.panelControl22.Controls.Add(this.labelControl19); | |
2590 | + this.panelControl22.Location = new System.Drawing.Point(238, 197); | |
2591 | + this.panelControl22.Name = "panelControl22"; | |
2592 | + this.panelControl22.Size = new System.Drawing.Size(223, 25); | |
2593 | + this.panelControl22.TabIndex = 22; | |
2594 | + // | |
2595 | + // textEdit_TB_USR_PWD | |
2596 | + // | |
2597 | + this.textEdit_TB_USR_PWD.Dock = System.Windows.Forms.DockStyle.Fill; | |
2598 | + this.textEdit_TB_USR_PWD.EnterMoveNextControl = true; | |
2599 | + this.textEdit_TB_USR_PWD.Location = new System.Drawing.Point(87, 2); | |
2600 | + this.textEdit_TB_USR_PWD.Name = "textEdit_TB_USR_PWD"; | |
2601 | + this.textEdit_TB_USR_PWD.Properties.AutoHeight = false; | |
2602 | + this.textEdit_TB_USR_PWD.Properties.PasswordChar = '*'; | |
2603 | + this.textEdit_TB_USR_PWD.Size = new System.Drawing.Size(134, 21); | |
2604 | + this.textEdit_TB_USR_PWD.TabIndex = 1; | |
2605 | + // | |
2606 | + // labelControl19 | |
2607 | + // | |
2608 | + this.labelControl19.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2609 | + this.labelControl19.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2610 | + this.labelControl19.Dock = System.Windows.Forms.DockStyle.Left; | |
2611 | + this.labelControl19.Location = new System.Drawing.Point(2, 2); | |
2612 | + this.labelControl19.Name = "labelControl19"; | |
2613 | + this.labelControl19.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2614 | + this.labelControl19.Size = new System.Drawing.Size(85, 21); | |
2615 | + this.labelControl19.TabIndex = 0; | |
2616 | + this.labelControl19.Text = "팝빌 비밀번호"; | |
2617 | + // | |
2618 | + // panelControl18 | |
2619 | + // | |
2620 | + this.panelControl18.Controls.Add(this.textEdit_FAX_NO); | |
2621 | + this.panelControl18.Controls.Add(this.labelControl15); | |
2622 | + this.panelControl18.Location = new System.Drawing.Point(238, 110); | |
2623 | + this.panelControl18.Name = "panelControl18"; | |
2624 | + this.panelControl18.Size = new System.Drawing.Size(223, 25); | |
2625 | + this.panelControl18.TabIndex = 7; | |
2626 | + // | |
2627 | + // textEdit_FAX_NO | |
2628 | + // | |
2629 | + this.textEdit_FAX_NO.Dock = System.Windows.Forms.DockStyle.Fill; | |
2630 | + this.textEdit_FAX_NO.EnterMoveNextControl = true; | |
2631 | + this.textEdit_FAX_NO.Location = new System.Drawing.Point(87, 2); | |
2632 | + this.textEdit_FAX_NO.Name = "textEdit_FAX_NO"; | |
2633 | + this.textEdit_FAX_NO.Properties.Appearance.Options.UseTextOptions = true; | |
2634 | + this.textEdit_FAX_NO.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2635 | + this.textEdit_FAX_NO.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
2636 | + this.textEdit_FAX_NO.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2637 | + this.textEdit_FAX_NO.Properties.AutoHeight = false; | |
2638 | + this.textEdit_FAX_NO.Size = new System.Drawing.Size(134, 21); | |
2639 | + this.textEdit_FAX_NO.TabIndex = 1; | |
2640 | + // | |
2641 | + // labelControl15 | |
2642 | + // | |
2643 | + this.labelControl15.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2644 | + this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2645 | + this.labelControl15.Dock = System.Windows.Forms.DockStyle.Left; | |
2646 | + this.labelControl15.Location = new System.Drawing.Point(2, 2); | |
2647 | + this.labelControl15.Name = "labelControl15"; | |
2648 | + this.labelControl15.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2649 | + this.labelControl15.Size = new System.Drawing.Size(85, 21); | |
2650 | + this.labelControl15.TabIndex = 0; | |
2651 | + this.labelControl15.Text = "팩스"; | |
2652 | + // | |
2653 | + // panelControl16 | |
2654 | + // | |
2655 | + this.panelControl16.Controls.Add(this.textEdit_EVNT_NM); | |
2656 | + this.panelControl16.Controls.Add(this.labelControl13); | |
2657 | + this.panelControl16.Location = new System.Drawing.Point(238, 81); | |
2658 | + this.panelControl16.Name = "panelControl16"; | |
2659 | + this.panelControl16.Size = new System.Drawing.Size(223, 25); | |
2660 | + this.panelControl16.TabIndex = 5; | |
2661 | + // | |
2662 | + // textEdit_EVNT_NM | |
2663 | + // | |
2664 | + this.textEdit_EVNT_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2665 | + this.textEdit_EVNT_NM.EnterMoveNextControl = true; | |
2666 | + this.textEdit_EVNT_NM.Location = new System.Drawing.Point(87, 2); | |
2667 | + this.textEdit_EVNT_NM.Name = "textEdit_EVNT_NM"; | |
2668 | + this.textEdit_EVNT_NM.Properties.AutoHeight = false; | |
2669 | + this.textEdit_EVNT_NM.Size = new System.Drawing.Size(134, 21); | |
2670 | + this.textEdit_EVNT_NM.TabIndex = 1; | |
2671 | + // | |
2672 | + // labelControl13 | |
2673 | + // | |
2674 | + this.labelControl13.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2675 | + this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2676 | + this.labelControl13.Dock = System.Windows.Forms.DockStyle.Left; | |
2677 | + this.labelControl13.Location = new System.Drawing.Point(2, 2); | |
2678 | + this.labelControl13.Name = "labelControl13"; | |
2679 | + this.labelControl13.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2680 | + this.labelControl13.Size = new System.Drawing.Size(85, 21); | |
2681 | + this.labelControl13.TabIndex = 0; | |
2682 | + this.labelControl13.Text = "종목"; | |
2683 | + // | |
2684 | + // panelControl14 | |
2685 | + // | |
2686 | + this.panelControl14.Controls.Add(this.textEdit_COND_NM); | |
2687 | + this.panelControl14.Controls.Add(this.labelControl11); | |
2688 | + this.panelControl14.Location = new System.Drawing.Point(238, 52); | |
2689 | + this.panelControl14.Name = "panelControl14"; | |
2690 | + this.panelControl14.Size = new System.Drawing.Size(223, 25); | |
2691 | + this.panelControl14.TabIndex = 3; | |
2692 | + // | |
2693 | + // textEdit_COND_NM | |
2694 | + // | |
2695 | + this.textEdit_COND_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2696 | + this.textEdit_COND_NM.EnterMoveNextControl = true; | |
2697 | + this.textEdit_COND_NM.Location = new System.Drawing.Point(87, 2); | |
2698 | + this.textEdit_COND_NM.Name = "textEdit_COND_NM"; | |
2699 | + this.textEdit_COND_NM.Properties.AutoHeight = false; | |
2700 | + this.textEdit_COND_NM.Size = new System.Drawing.Size(134, 21); | |
2701 | + this.textEdit_COND_NM.TabIndex = 1; | |
2702 | + // | |
2703 | + // labelControl11 | |
2704 | + // | |
2705 | + this.labelControl11.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2706 | + this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2707 | + this.labelControl11.Dock = System.Windows.Forms.DockStyle.Left; | |
2708 | + this.labelControl11.Location = new System.Drawing.Point(2, 2); | |
2709 | + this.labelControl11.Name = "labelControl11"; | |
2710 | + this.labelControl11.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2711 | + this.labelControl11.Size = new System.Drawing.Size(85, 21); | |
2712 | + this.labelControl11.TabIndex = 0; | |
2713 | + this.labelControl11.Text = "업태"; | |
2714 | + // | |
2715 | + // panelControl20 | |
2716 | + // | |
2717 | + this.panelControl20.Controls.Add(this.textEdit_ADDR1); | |
2718 | + this.panelControl20.Controls.Add(this.labelControl17); | |
2719 | + this.panelControl20.Location = new System.Drawing.Point(9, 168); | |
2720 | + this.panelControl20.Name = "panelControl20"; | |
2721 | + this.panelControl20.Size = new System.Drawing.Size(452, 25); | |
2722 | + this.panelControl20.TabIndex = 12; | |
2723 | + // | |
2724 | + // textEdit_ADDR1 | |
2725 | + // | |
2726 | + this.textEdit_ADDR1.Dock = System.Windows.Forms.DockStyle.Fill; | |
2727 | + this.textEdit_ADDR1.EnterMoveNextControl = true; | |
2728 | + this.textEdit_ADDR1.Location = new System.Drawing.Point(87, 2); | |
2729 | + this.textEdit_ADDR1.Name = "textEdit_ADDR1"; | |
2730 | + this.textEdit_ADDR1.Properties.AutoHeight = false; | |
2731 | + this.textEdit_ADDR1.Size = new System.Drawing.Size(363, 21); | |
2732 | + this.textEdit_ADDR1.TabIndex = 1; | |
2733 | + // | |
2734 | + // labelControl17 | |
2735 | + // | |
2736 | + this.labelControl17.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2737 | + this.labelControl17.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2738 | + this.labelControl17.Dock = System.Windows.Forms.DockStyle.Left; | |
2739 | + this.labelControl17.Location = new System.Drawing.Point(2, 2); | |
2740 | + this.labelControl17.Name = "labelControl17"; | |
2741 | + this.labelControl17.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2742 | + this.labelControl17.Size = new System.Drawing.Size(85, 21); | |
2743 | + this.labelControl17.TabIndex = 0; | |
2744 | + this.labelControl17.Text = "주소"; | |
2745 | + // | |
2746 | + // panelControl19 | |
2747 | + // | |
2748 | + this.panelControl19.Controls.Add(this.textEdit_EMAIL); | |
2749 | + this.panelControl19.Controls.Add(this.labelControl16); | |
2750 | + this.panelControl19.Location = new System.Drawing.Point(9, 139); | |
2751 | + this.panelControl19.Name = "panelControl19"; | |
2752 | + this.panelControl19.Size = new System.Drawing.Size(452, 25); | |
2753 | + this.panelControl19.TabIndex = 11; | |
2754 | + // | |
2755 | + // textEdit_EMAIL | |
2756 | + // | |
2757 | + this.textEdit_EMAIL.Dock = System.Windows.Forms.DockStyle.Fill; | |
2758 | + this.textEdit_EMAIL.EnterMoveNextControl = true; | |
2759 | + this.textEdit_EMAIL.Location = new System.Drawing.Point(87, 2); | |
2760 | + this.textEdit_EMAIL.Name = "textEdit_EMAIL"; | |
2761 | + this.textEdit_EMAIL.Properties.AutoHeight = false; | |
2762 | + this.textEdit_EMAIL.Size = new System.Drawing.Size(363, 21); | |
2763 | + this.textEdit_EMAIL.TabIndex = 1; | |
2764 | + // | |
2765 | + // labelControl16 | |
2766 | + // | |
2767 | + this.labelControl16.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2768 | + this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2769 | + this.labelControl16.Dock = System.Windows.Forms.DockStyle.Left; | |
2770 | + this.labelControl16.Location = new System.Drawing.Point(2, 2); | |
2771 | + this.labelControl16.Name = "labelControl16"; | |
2772 | + this.labelControl16.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2773 | + this.labelControl16.Size = new System.Drawing.Size(85, 21); | |
2774 | + this.labelControl16.TabIndex = 0; | |
2775 | + this.labelControl16.Text = "이메일"; | |
2776 | + // | |
2777 | + // panelControl25 | |
2778 | + // | |
2779 | + this.panelControl25.Controls.Add(this.textEdit_TB_ACCT_NM); | |
2780 | + this.panelControl25.Controls.Add(this.labelControl22); | |
2781 | + this.panelControl25.Location = new System.Drawing.Point(9, 255); | |
2782 | + this.panelControl25.Name = "panelControl25"; | |
2783 | + this.panelControl25.Size = new System.Drawing.Size(223, 25); | |
2784 | + this.panelControl25.TabIndex = 25; | |
2785 | + // | |
2786 | + // textEdit_TB_ACCT_NM | |
2787 | + // | |
2788 | + this.textEdit_TB_ACCT_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2789 | + this.textEdit_TB_ACCT_NM.EnterMoveNextControl = true; | |
2790 | + this.textEdit_TB_ACCT_NM.Location = new System.Drawing.Point(87, 2); | |
2791 | + this.textEdit_TB_ACCT_NM.Name = "textEdit_TB_ACCT_NM"; | |
2792 | + this.textEdit_TB_ACCT_NM.Properties.AutoHeight = false; | |
2793 | + this.textEdit_TB_ACCT_NM.Size = new System.Drawing.Size(134, 21); | |
2794 | + this.textEdit_TB_ACCT_NM.TabIndex = 1; | |
2795 | + // | |
2796 | + // labelControl22 | |
2797 | + // | |
2798 | + this.labelControl22.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2799 | + this.labelControl22.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2800 | + this.labelControl22.Dock = System.Windows.Forms.DockStyle.Left; | |
2801 | + this.labelControl22.Location = new System.Drawing.Point(2, 2); | |
2802 | + this.labelControl22.Name = "labelControl22"; | |
2803 | + this.labelControl22.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2804 | + this.labelControl22.Size = new System.Drawing.Size(85, 21); | |
2805 | + this.labelControl22.TabIndex = 0; | |
2806 | + this.labelControl22.Text = "예금주"; | |
2807 | + // | |
2808 | + // panelControl23 | |
2809 | + // | |
2810 | + this.panelControl23.Controls.Add(this.textEdit_TB_BANK_NM); | |
2811 | + this.panelControl23.Controls.Add(this.labelControl20); | |
2812 | + this.panelControl23.Location = new System.Drawing.Point(9, 226); | |
2813 | + this.panelControl23.Name = "panelControl23"; | |
2814 | + this.panelControl23.Size = new System.Drawing.Size(223, 25); | |
2815 | + this.panelControl23.TabIndex = 23; | |
2816 | + // | |
2817 | + // textEdit_TB_BANK_NM | |
2818 | + // | |
2819 | + this.textEdit_TB_BANK_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2820 | + this.textEdit_TB_BANK_NM.EnterMoveNextControl = true; | |
2821 | + this.textEdit_TB_BANK_NM.Location = new System.Drawing.Point(87, 2); | |
2822 | + this.textEdit_TB_BANK_NM.Name = "textEdit_TB_BANK_NM"; | |
2823 | + this.textEdit_TB_BANK_NM.Properties.AutoHeight = false; | |
2824 | + this.textEdit_TB_BANK_NM.Size = new System.Drawing.Size(134, 21); | |
2825 | + this.textEdit_TB_BANK_NM.TabIndex = 1; | |
2826 | + // | |
2827 | + // labelControl20 | |
2828 | + // | |
2829 | + this.labelControl20.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2830 | + this.labelControl20.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2831 | + this.labelControl20.Dock = System.Windows.Forms.DockStyle.Left; | |
2832 | + this.labelControl20.Location = new System.Drawing.Point(2, 2); | |
2833 | + this.labelControl20.Name = "labelControl20"; | |
2834 | + this.labelControl20.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2835 | + this.labelControl20.Size = new System.Drawing.Size(85, 21); | |
2836 | + this.labelControl20.TabIndex = 0; | |
2837 | + this.labelControl20.Text = "입금은행"; | |
2838 | + // | |
2839 | + // panelControl21 | |
2840 | + // | |
2841 | + this.panelControl21.Controls.Add(this.textEdit_TB_USR_ID); | |
2842 | + this.panelControl21.Controls.Add(this.labelControl18); | |
2843 | + this.panelControl21.Location = new System.Drawing.Point(9, 197); | |
2844 | + this.panelControl21.Name = "panelControl21"; | |
2845 | + this.panelControl21.Size = new System.Drawing.Size(223, 25); | |
2846 | + this.panelControl21.TabIndex = 21; | |
2847 | + // | |
2848 | + // textEdit_TB_USR_ID | |
2849 | + // | |
2850 | + this.textEdit_TB_USR_ID.Dock = System.Windows.Forms.DockStyle.Fill; | |
2851 | + this.textEdit_TB_USR_ID.EnterMoveNextControl = true; | |
2852 | + this.textEdit_TB_USR_ID.Location = new System.Drawing.Point(87, 2); | |
2853 | + this.textEdit_TB_USR_ID.Name = "textEdit_TB_USR_ID"; | |
2854 | + this.textEdit_TB_USR_ID.Properties.AutoHeight = false; | |
2855 | + this.textEdit_TB_USR_ID.Size = new System.Drawing.Size(134, 21); | |
2856 | + this.textEdit_TB_USR_ID.TabIndex = 1; | |
2857 | + // | |
2858 | + // labelControl18 | |
2859 | + // | |
2860 | + this.labelControl18.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2861 | + this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2862 | + this.labelControl18.Dock = System.Windows.Forms.DockStyle.Left; | |
2863 | + this.labelControl18.Location = new System.Drawing.Point(2, 2); | |
2864 | + this.labelControl18.Name = "labelControl18"; | |
2865 | + this.labelControl18.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2866 | + this.labelControl18.Size = new System.Drawing.Size(85, 21); | |
2867 | + this.labelControl18.TabIndex = 0; | |
2868 | + this.labelControl18.Text = "팝빌 아이디"; | |
2869 | + // | |
2870 | + // panelControl17 | |
2871 | + // | |
2872 | + this.panelControl17.Controls.Add(this.textEdit_TEL_NO); | |
2873 | + this.panelControl17.Controls.Add(this.labelControl14); | |
2874 | + this.panelControl17.Location = new System.Drawing.Point(9, 110); | |
2875 | + this.panelControl17.Name = "panelControl17"; | |
2876 | + this.panelControl17.Size = new System.Drawing.Size(223, 25); | |
2877 | + this.panelControl17.TabIndex = 6; | |
2878 | + // | |
2879 | + // textEdit_TEL_NO | |
2880 | + // | |
2881 | + this.textEdit_TEL_NO.Dock = System.Windows.Forms.DockStyle.Fill; | |
2882 | + this.textEdit_TEL_NO.EnterMoveNextControl = true; | |
2883 | + this.textEdit_TEL_NO.Location = new System.Drawing.Point(87, 2); | |
2884 | + this.textEdit_TEL_NO.Name = "textEdit_TEL_NO"; | |
2885 | + this.textEdit_TEL_NO.Properties.Appearance.Options.UseTextOptions = true; | |
2886 | + this.textEdit_TEL_NO.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2887 | + this.textEdit_TEL_NO.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
2888 | + this.textEdit_TEL_NO.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
2889 | + this.textEdit_TEL_NO.Properties.AutoHeight = false; | |
2890 | + this.textEdit_TEL_NO.Size = new System.Drawing.Size(134, 21); | |
2891 | + this.textEdit_TEL_NO.TabIndex = 1; | |
2892 | + // | |
2893 | + // labelControl14 | |
2894 | + // | |
2895 | + this.labelControl14.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2896 | + this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2897 | + this.labelControl14.Dock = System.Windows.Forms.DockStyle.Left; | |
2898 | + this.labelControl14.Location = new System.Drawing.Point(2, 2); | |
2899 | + this.labelControl14.Name = "labelControl14"; | |
2900 | + this.labelControl14.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2901 | + this.labelControl14.Size = new System.Drawing.Size(85, 21); | |
2902 | + this.labelControl14.TabIndex = 0; | |
2903 | + this.labelControl14.Text = "전화"; | |
2904 | + // | |
2905 | + // panelControl15 | |
2906 | + // | |
2907 | + this.panelControl15.Controls.Add(this.textEdit_TB_USR_NM); | |
2908 | + this.panelControl15.Controls.Add(this.labelControl12); | |
2909 | + this.panelControl15.Location = new System.Drawing.Point(9, 81); | |
2910 | + this.panelControl15.Name = "panelControl15"; | |
2911 | + this.panelControl15.Size = new System.Drawing.Size(223, 25); | |
2912 | + this.panelControl15.TabIndex = 4; | |
2913 | + // | |
2914 | + // textEdit_TB_USR_NM | |
2915 | + // | |
2916 | + this.textEdit_TB_USR_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2917 | + this.textEdit_TB_USR_NM.EnterMoveNextControl = true; | |
2918 | + this.textEdit_TB_USR_NM.Location = new System.Drawing.Point(87, 2); | |
2919 | + this.textEdit_TB_USR_NM.Name = "textEdit_TB_USR_NM"; | |
2920 | + this.textEdit_TB_USR_NM.Properties.AutoHeight = false; | |
2921 | + this.textEdit_TB_USR_NM.Size = new System.Drawing.Size(134, 21); | |
2922 | + this.textEdit_TB_USR_NM.TabIndex = 1; | |
2923 | + // | |
2924 | + // labelControl12 | |
2925 | + // | |
2926 | + this.labelControl12.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2927 | + this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2928 | + this.labelControl12.Dock = System.Windows.Forms.DockStyle.Left; | |
2929 | + this.labelControl12.Location = new System.Drawing.Point(2, 2); | |
2930 | + this.labelControl12.Name = "labelControl12"; | |
2931 | + this.labelControl12.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2932 | + this.labelControl12.Size = new System.Drawing.Size(85, 21); | |
2933 | + this.labelControl12.TabIndex = 0; | |
2934 | + this.labelControl12.Text = "계산서 담당자"; | |
2935 | + // | |
2936 | + // panelControl13 | |
2937 | + // | |
2938 | + this.panelControl13.Controls.Add(this.textEdit_OWNER_NM); | |
2939 | + this.panelControl13.Controls.Add(this.labelControl10); | |
2940 | + this.panelControl13.Location = new System.Drawing.Point(9, 52); | |
2941 | + this.panelControl13.Name = "panelControl13"; | |
2942 | + this.panelControl13.Size = new System.Drawing.Size(223, 25); | |
2943 | + this.panelControl13.TabIndex = 2; | |
2944 | + // | |
2945 | + // textEdit_OWNER_NM | |
2946 | + // | |
2947 | + this.textEdit_OWNER_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2948 | + this.textEdit_OWNER_NM.EnterMoveNextControl = true; | |
2949 | + this.textEdit_OWNER_NM.Location = new System.Drawing.Point(87, 2); | |
2950 | + this.textEdit_OWNER_NM.Name = "textEdit_OWNER_NM"; | |
2951 | + this.textEdit_OWNER_NM.Properties.AutoHeight = false; | |
2952 | + this.textEdit_OWNER_NM.Size = new System.Drawing.Size(134, 21); | |
2953 | + this.textEdit_OWNER_NM.TabIndex = 1; | |
2954 | + // | |
2955 | + // labelControl10 | |
2956 | + // | |
2957 | + this.labelControl10.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2958 | + this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2959 | + this.labelControl10.Dock = System.Windows.Forms.DockStyle.Left; | |
2960 | + this.labelControl10.Location = new System.Drawing.Point(2, 2); | |
2961 | + this.labelControl10.Name = "labelControl10"; | |
2962 | + this.labelControl10.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2963 | + this.labelControl10.Size = new System.Drawing.Size(85, 21); | |
2964 | + this.labelControl10.TabIndex = 0; | |
2965 | + this.labelControl10.Text = "대표자"; | |
2966 | + // | |
2967 | + // panelControl11 | |
2968 | + // | |
2969 | + this.panelControl11.Controls.Add(this.textEdit_COMP_NM); | |
2970 | + this.panelControl11.Controls.Add(this.labelControl8); | |
2971 | + this.panelControl11.Location = new System.Drawing.Point(9, 23); | |
2972 | + this.panelControl11.Name = "panelControl11"; | |
2973 | + this.panelControl11.Size = new System.Drawing.Size(223, 25); | |
2974 | + this.panelControl11.TabIndex = 0; | |
2975 | + // | |
2976 | + // textEdit_COMP_NM | |
2977 | + // | |
2978 | + this.textEdit_COMP_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
2979 | + this.textEdit_COMP_NM.EnterMoveNextControl = true; | |
2980 | + this.textEdit_COMP_NM.Location = new System.Drawing.Point(87, 2); | |
2981 | + this.textEdit_COMP_NM.MenuManager = this.m_BarManager; | |
2982 | + this.textEdit_COMP_NM.Name = "textEdit_COMP_NM"; | |
2983 | + this.textEdit_COMP_NM.Properties.AutoHeight = false; | |
2984 | + this.textEdit_COMP_NM.Size = new System.Drawing.Size(134, 21); | |
2985 | + this.textEdit_COMP_NM.TabIndex = 1; | |
2986 | + // | |
2987 | + // labelControl8 | |
2988 | + // | |
2989 | + this.labelControl8.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
2990 | + this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
2991 | + this.labelControl8.Dock = System.Windows.Forms.DockStyle.Left; | |
2992 | + this.labelControl8.Location = new System.Drawing.Point(2, 2); | |
2993 | + this.labelControl8.Name = "labelControl8"; | |
2994 | + this.labelControl8.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
2995 | + this.labelControl8.Size = new System.Drawing.Size(85, 21); | |
2996 | + this.labelControl8.TabIndex = 0; | |
2997 | + this.labelControl8.Text = "상호"; | |
2998 | + // | |
2999 | + // panelControl7 | |
3000 | + // | |
3001 | + this.panelControl7.Controls.Add(this.checkEdit_NotEmail); | |
3002 | + this.panelControl7.Dock = System.Windows.Forms.DockStyle.Top; | |
3003 | + this.panelControl7.Location = new System.Drawing.Point(0, 0); | |
3004 | + this.panelControl7.Name = "panelControl7"; | |
3005 | + this.panelControl7.Size = new System.Drawing.Size(1918, 30); | |
3006 | + this.panelControl7.TabIndex = 6; | |
3007 | + // | |
3008 | + // xtraTabPage_Tab3 | |
3009 | + // | |
3010 | + this.xtraTabPage_Tab3.Controls.Add(this.xtraTabControl_Send); | |
3011 | + this.xtraTabPage_Tab3.Name = "xtraTabPage_Tab3"; | |
3012 | + this.xtraTabPage_Tab3.Size = new System.Drawing.Size(1918, 437); | |
3013 | + this.xtraTabPage_Tab3.Text = "전자세금계산서 전송 관리"; | |
3014 | + // | |
3015 | + // xtraTabControl_Send | |
3016 | + // | |
3017 | + this.xtraTabControl_Send.Dock = System.Windows.Forms.DockStyle.Fill; | |
3018 | + this.xtraTabControl_Send.Location = new System.Drawing.Point(0, 0); | |
3019 | + this.xtraTabControl_Send.Name = "xtraTabControl_Send"; | |
3020 | + this.xtraTabControl_Send.SelectedTabPage = this.xtraTabPage_NotSend; | |
3021 | + this.xtraTabControl_Send.Size = new System.Drawing.Size(1918, 437); | |
3022 | + this.xtraTabControl_Send.TabIndex = 0; | |
3023 | + this.xtraTabControl_Send.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { | |
3024 | + this.xtraTabPage_NotSend, | |
3025 | + this.xtraTabPage_Send, | |
3026 | + this.xtraTabPage1}); | |
3027 | + // | |
3028 | + // xtraTabPage_NotSend | |
3029 | + // | |
3030 | + this.xtraTabPage_NotSend.Controls.Add(this.gridControl_NotSendList); | |
3031 | + this.xtraTabPage_NotSend.Controls.Add(this.panelControl1); | |
3032 | + this.xtraTabPage_NotSend.Name = "xtraTabPage_NotSend"; | |
3033 | + this.xtraTabPage_NotSend.Size = new System.Drawing.Size(1912, 410); | |
3034 | + this.xtraTabPage_NotSend.Text = "미전송자료"; | |
3035 | + // | |
3036 | + // gridControl_NotSendList | |
3037 | + // | |
3038 | + this.gridControl_NotSendList.Dock = System.Windows.Forms.DockStyle.Fill; | |
3039 | + this.gridControl_NotSendList.ExternalRepository = this.m_Repository; | |
3040 | + this.gridControl_NotSendList.Location = new System.Drawing.Point(0, 37); | |
3041 | + this.gridControl_NotSendList.MainView = this.gridView_NotSendList; | |
3042 | + this.gridControl_NotSendList.Name = "gridControl_NotSendList"; | |
3043 | + this.gridControl_NotSendList.Size = new System.Drawing.Size(1912, 373); | |
3044 | + this.gridControl_NotSendList.TabIndex = 5; | |
3045 | + this.gridControl_NotSendList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { | |
3046 | + this.gridView_NotSendList}); | |
3047 | + // | |
3048 | + // gridView_NotSendList | |
3049 | + // | |
3050 | + this.gridView_NotSendList.Appearance.FooterPanel.Options.UseFont = true; | |
3051 | + this.gridView_NotSendList.Appearance.HeaderPanel.Options.UseFont = true; | |
3052 | + this.gridView_NotSendList.Appearance.HeaderPanel.Options.UseTextOptions = true; | |
3053 | + this.gridView_NotSendList.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3054 | + this.gridView_NotSendList.Appearance.Row.Options.UseFont = true; | |
3055 | + this.gridView_NotSendList.ColumnPanelRowHeight = 23; | |
3056 | + this.gridView_NotSendList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { | |
3057 | + this.gridColumn65, | |
3058 | + this.gridColumn66, | |
3059 | + this.gridColumn67, | |
3060 | + this.gridColumn68, | |
3061 | + this.gridColumn69, | |
3062 | + this.gridColumn70, | |
3063 | + this.gridColumn71, | |
3064 | + this.gridColumn78, | |
3065 | + this.gridColumn79, | |
3066 | + this.gridColumn80, | |
3067 | + this.gridColumn81, | |
3068 | + this.gridColumn82, | |
3069 | + this.gridColumn83, | |
3070 | + this.gridColumn84, | |
3071 | + this.gridColumn85, | |
3072 | + this.gridColumn86, | |
3073 | + this.gridColumn87, | |
3074 | + this.gridColumn88, | |
3075 | + this.gridColumn89}); | |
3076 | + this.gridView_NotSendList.FooterPanelHeight = 23; | |
3077 | + this.gridView_NotSendList.GridControl = this.gridControl_NotSendList; | |
3078 | + this.gridView_NotSendList.GroupRowHeight = 23; | |
3079 | + this.gridView_NotSendList.Name = "gridView_NotSendList"; | |
3080 | + this.gridView_NotSendList.OptionsCustomization.AllowGroup = false; | |
3081 | + this.gridView_NotSendList.OptionsCustomization.AllowSort = false; | |
3082 | + this.gridView_NotSendList.OptionsNavigation.EnterMoveNextColumn = true; | |
3083 | + this.gridView_NotSendList.OptionsView.ColumnAutoWidth = false; | |
3084 | + this.gridView_NotSendList.OptionsView.ShowFooter = true; | |
3085 | + this.gridView_NotSendList.OptionsView.ShowGroupPanel = false; | |
3086 | + this.gridView_NotSendList.RowHeight = 23; | |
3087 | + // | |
3088 | + // gridColumn65 | |
3089 | + // | |
3090 | + this.gridColumn65.Caption = "전송"; | |
3091 | + this.gridColumn65.ColumnEdit = this.m_Repository_CheckYN; | |
3092 | + this.gridColumn65.FieldName = "SEL_FIELD"; | |
3093 | + this.gridColumn65.Name = "gridColumn65"; | |
3094 | + this.gridColumn65.Visible = true; | |
3095 | + this.gridColumn65.VisibleIndex = 0; | |
3096 | + this.gridColumn65.Width = 50; | |
3097 | + // | |
3098 | + // gridColumn66 | |
3099 | + // | |
3100 | + this.gridColumn66.AppearanceCell.Options.UseTextOptions = true; | |
3101 | + this.gridColumn66.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3102 | + this.gridColumn66.Caption = "건수"; | |
3103 | + this.gridColumn66.FieldName = "CNT"; | |
3104 | + this.gridColumn66.Name = "gridColumn66"; | |
3105 | + this.gridColumn66.OptionsColumn.AllowEdit = false; | |
3106 | + this.gridColumn66.Visible = true; | |
3107 | + this.gridColumn66.VisibleIndex = 2; | |
3108 | + this.gridColumn66.Width = 50; | |
3109 | + // | |
3110 | + // gridColumn67 | |
3111 | + // | |
3112 | + this.gridColumn67.AppearanceCell.Options.UseTextOptions = true; | |
3113 | + this.gridColumn67.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3114 | + this.gridColumn67.Caption = "분류"; | |
3115 | + this.gridColumn67.FieldName = "TAX_TYPE_NM"; | |
3116 | + this.gridColumn67.Name = "gridColumn67"; | |
3117 | + this.gridColumn67.OptionsColumn.AllowEdit = false; | |
3118 | + this.gridColumn67.Visible = true; | |
3119 | + this.gridColumn67.VisibleIndex = 3; | |
3120 | + this.gridColumn67.Width = 50; | |
3121 | + // | |
3122 | + // gridColumn68 | |
3123 | + // | |
3124 | + this.gridColumn68.AppearanceCell.Options.UseTextOptions = true; | |
3125 | + this.gridColumn68.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3126 | + this.gridColumn68.Caption = "구분"; | |
3127 | + this.gridColumn68.FieldName = "TAX_REQ_TYPE_NM"; | |
3128 | + this.gridColumn68.Name = "gridColumn68"; | |
3129 | + this.gridColumn68.OptionsColumn.AllowEdit = false; | |
3130 | + this.gridColumn68.Visible = true; | |
3131 | + this.gridColumn68.VisibleIndex = 1; | |
3132 | + this.gridColumn68.Width = 50; | |
3133 | + // | |
3134 | + // gridColumn69 | |
3135 | + // | |
3136 | + this.gridColumn69.Caption = "거래선명"; | |
3137 | + this.gridColumn69.FieldName = "CUST_NM"; | |
3138 | + this.gridColumn69.Name = "gridColumn69"; | |
3139 | + this.gridColumn69.OptionsColumn.AllowEdit = false; | |
3140 | + this.gridColumn69.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3141 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "CUST_NM", "{0:#,##0} 건")}); | |
3142 | + this.gridColumn69.Visible = true; | |
3143 | + this.gridColumn69.VisibleIndex = 4; | |
3144 | + this.gridColumn69.Width = 160; | |
3145 | + // | |
3146 | + // gridColumn70 | |
3147 | + // | |
3148 | + this.gridColumn70.AppearanceCell.Options.UseTextOptions = true; | |
3149 | + this.gridColumn70.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
3150 | + this.gridColumn70.Caption = "공급가액"; | |
3151 | + this.gridColumn70.DisplayFormat.FormatString = "n0"; | |
3152 | + this.gridColumn70.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
3153 | + this.gridColumn70.FieldName = "CURR_MY"; | |
3154 | + this.gridColumn70.Name = "gridColumn70"; | |
3155 | + this.gridColumn70.OptionsColumn.AllowEdit = false; | |
3156 | + this.gridColumn70.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3157 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CURR_MY", "{0:#,##0}")}); | |
3158 | + this.gridColumn70.Visible = true; | |
3159 | + this.gridColumn70.VisibleIndex = 5; | |
3160 | + this.gridColumn70.Width = 110; | |
3161 | + // | |
3162 | + // gridColumn71 | |
3163 | + // | |
3164 | + this.gridColumn71.AppearanceCell.Options.UseTextOptions = true; | |
3165 | + this.gridColumn71.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
3166 | + this.gridColumn71.Caption = "부가세액"; | |
3167 | + this.gridColumn71.DisplayFormat.FormatString = "n0"; | |
3168 | + this.gridColumn71.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
3169 | + this.gridColumn71.FieldName = "VAT_MY"; | |
3170 | + this.gridColumn71.Name = "gridColumn71"; | |
3171 | + this.gridColumn71.OptionsColumn.AllowEdit = false; | |
3172 | + this.gridColumn71.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3173 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "VAT_MY", "{0:#,##0}")}); | |
3174 | + this.gridColumn71.Visible = true; | |
3175 | + this.gridColumn71.VisibleIndex = 6; | |
3176 | + this.gridColumn71.Width = 110; | |
3177 | + // | |
3178 | + // gridColumn78 | |
3179 | + // | |
3180 | + this.gridColumn78.AppearanceCell.Options.UseTextOptions = true; | |
3181 | + this.gridColumn78.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
3182 | + this.gridColumn78.Caption = "합계금액"; | |
3183 | + this.gridColumn78.DisplayFormat.FormatString = "n0"; | |
3184 | + this.gridColumn78.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
3185 | + this.gridColumn78.FieldName = "TOT_MY"; | |
3186 | + this.gridColumn78.Name = "gridColumn78"; | |
3187 | + this.gridColumn78.OptionsColumn.AllowEdit = false; | |
3188 | + this.gridColumn78.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3189 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "TOT_MY", "{0:#,##0}")}); | |
3190 | + this.gridColumn78.Visible = true; | |
3191 | + this.gridColumn78.VisibleIndex = 7; | |
3192 | + this.gridColumn78.Width = 110; | |
3193 | + // | |
3194 | + // gridColumn79 | |
3195 | + // | |
3196 | + this.gridColumn79.AppearanceCell.Options.UseTextOptions = true; | |
3197 | + this.gridColumn79.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3198 | + this.gridColumn79.Caption = "발행일"; | |
3199 | + this.gridColumn79.FieldName = "TAX_DT"; | |
3200 | + this.gridColumn79.Name = "gridColumn79"; | |
3201 | + this.gridColumn79.OptionsColumn.AllowEdit = false; | |
3202 | + this.gridColumn79.Visible = true; | |
3203 | + this.gridColumn79.VisibleIndex = 8; | |
3204 | + // | |
3205 | + // gridColumn80 | |
3206 | + // | |
3207 | + this.gridColumn80.AppearanceCell.Options.UseTextOptions = true; | |
3208 | + this.gridColumn80.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3209 | + this.gridColumn80.Caption = "발행번호"; | |
3210 | + this.gridColumn80.FieldName = "DISP_BILL_NO"; | |
3211 | + this.gridColumn80.Name = "gridColumn80"; | |
3212 | + this.gridColumn80.OptionsColumn.AllowEdit = false; | |
3213 | + this.gridColumn80.Visible = true; | |
3214 | + this.gridColumn80.VisibleIndex = 9; | |
3215 | + // | |
3216 | + // gridColumn81 | |
3217 | + // | |
3218 | + this.gridColumn81.AppearanceCell.Options.UseTextOptions = true; | |
3219 | + this.gridColumn81.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3220 | + this.gridColumn81.Caption = "사업자번호"; | |
3221 | + this.gridColumn81.FieldName = "BIZ_NO"; | |
3222 | + this.gridColumn81.Name = "gridColumn81"; | |
3223 | + this.gridColumn81.OptionsColumn.AllowEdit = false; | |
3224 | + this.gridColumn81.Visible = true; | |
3225 | + this.gridColumn81.VisibleIndex = 10; | |
3226 | + this.gridColumn81.Width = 100; | |
3227 | + // | |
3228 | + // gridColumn82 | |
3229 | + // | |
3230 | + this.gridColumn82.Caption = "대표자"; | |
3231 | + this.gridColumn82.FieldName = "OWNER_NM"; | |
3232 | + this.gridColumn82.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
3233 | + this.gridColumn82.Name = "gridColumn82"; | |
3234 | + this.gridColumn82.OptionsColumn.AllowEdit = false; | |
3235 | + this.gridColumn82.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3236 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Custom, "CURR_MY", "{0:#,##0}")}); | |
3237 | + this.gridColumn82.Visible = true; | |
3238 | + this.gridColumn82.VisibleIndex = 11; | |
3239 | + this.gridColumn82.Width = 90; | |
3240 | + // | |
3241 | + // gridColumn83 | |
3242 | + // | |
3243 | + this.gridColumn83.Caption = "업태"; | |
3244 | + this.gridColumn83.FieldName = "COND_NM"; | |
3245 | + this.gridColumn83.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
3246 | + this.gridColumn83.Name = "gridColumn83"; | |
3247 | + this.gridColumn83.OptionsColumn.AllowEdit = false; | |
3248 | + this.gridColumn83.Visible = true; | |
3249 | + this.gridColumn83.VisibleIndex = 12; | |
3250 | + this.gridColumn83.Width = 110; | |
3251 | + // | |
3252 | + // gridColumn84 | |
3253 | + // | |
3254 | + this.gridColumn84.Caption = "종목"; | |
3255 | + this.gridColumn84.FieldName = "EVNT_NM"; | |
3256 | + this.gridColumn84.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
3257 | + this.gridColumn84.Name = "gridColumn84"; | |
3258 | + this.gridColumn84.OptionsColumn.AllowEdit = false; | |
3259 | + this.gridColumn84.Visible = true; | |
3260 | + this.gridColumn84.VisibleIndex = 13; | |
3261 | + this.gridColumn84.Width = 110; | |
3262 | + // | |
3263 | + // gridColumn85 | |
3264 | + // | |
3265 | + this.gridColumn85.Caption = "주소"; | |
3266 | + this.gridColumn85.FieldName = "ADDR1"; | |
3267 | + this.gridColumn85.Name = "gridColumn85"; | |
3268 | + this.gridColumn85.OptionsColumn.AllowEdit = false; | |
3269 | + this.gridColumn85.Visible = true; | |
3270 | + this.gridColumn85.VisibleIndex = 14; | |
3271 | + this.gridColumn85.Width = 300; | |
3272 | + // | |
3273 | + // gridColumn86 | |
3274 | + // | |
3275 | + this.gridColumn86.Caption = "전화번호"; | |
3276 | + this.gridColumn86.FieldName = "TEL_NO"; | |
3277 | + this.gridColumn86.Name = "gridColumn86"; | |
3278 | + this.gridColumn86.OptionsColumn.AllowEdit = false; | |
3279 | + this.gridColumn86.Visible = true; | |
3280 | + this.gridColumn86.VisibleIndex = 15; | |
3281 | + this.gridColumn86.Width = 100; | |
3282 | + // | |
3283 | + // gridColumn87 | |
3284 | + // | |
3285 | + this.gridColumn87.AppearanceCell.Options.UseTextOptions = true; | |
3286 | + this.gridColumn87.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3287 | + this.gridColumn87.Caption = "팩스"; | |
3288 | + this.gridColumn87.FieldName = "FAX_NO"; | |
3289 | + this.gridColumn87.Name = "gridColumn87"; | |
3290 | + this.gridColumn87.OptionsColumn.AllowEdit = false; | |
3291 | + this.gridColumn87.Visible = true; | |
3292 | + this.gridColumn87.VisibleIndex = 16; | |
3293 | + this.gridColumn87.Width = 100; | |
3294 | + // | |
3295 | + // gridColumn88 | |
3296 | + // | |
3297 | + this.gridColumn88.AppearanceCell.Options.UseTextOptions = true; | |
3298 | + this.gridColumn88.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3299 | + this.gridColumn88.Caption = "코드"; | |
3300 | + this.gridColumn88.FieldName = "CUST_CD"; | |
3301 | + this.gridColumn88.Name = "gridColumn88"; | |
3302 | + this.gridColumn88.OptionsColumn.AllowEdit = false; | |
3303 | + this.gridColumn88.Visible = true; | |
3304 | + this.gridColumn88.VisibleIndex = 17; | |
3305 | + this.gridColumn88.Width = 50; | |
3306 | + // | |
3307 | + // gridColumn89 | |
3308 | + // | |
3309 | + this.gridColumn89.Caption = "담당자 이메일"; | |
3310 | + this.gridColumn89.FieldName = "MGR_EMAIL"; | |
3311 | + this.gridColumn89.Name = "gridColumn89"; | |
3312 | + this.gridColumn89.OptionsColumn.AllowEdit = false; | |
3313 | + this.gridColumn89.Visible = true; | |
3314 | + this.gridColumn89.VisibleIndex = 18; | |
3315 | + this.gridColumn89.Width = 150; | |
3316 | + // | |
3317 | + // panelControl1 | |
3318 | + // | |
3319 | + this.panelControl1.Controls.Add(this.progressBarControl_Send); | |
3320 | + this.panelControl1.Controls.Add(this.simpleButton_SendSelectNone); | |
3321 | + this.panelControl1.Controls.Add(this.simpleButton_SendSelectAll); | |
3322 | + this.panelControl1.Controls.Add(this.simpleButton_Send); | |
3323 | + this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top; | |
3324 | + this.panelControl1.Location = new System.Drawing.Point(0, 0); | |
3325 | + this.panelControl1.Name = "panelControl1"; | |
3326 | + this.panelControl1.Size = new System.Drawing.Size(1912, 37); | |
3327 | + this.panelControl1.TabIndex = 6; | |
3328 | + // | |
3329 | + // progressBarControl_Send | |
3330 | + // | |
3331 | + this.progressBarControl_Send.EditValue = 30; | |
3332 | + this.progressBarControl_Send.Location = new System.Drawing.Point(414, 4); | |
3333 | + this.progressBarControl_Send.MenuManager = this.m_BarManager; | |
3334 | + this.progressBarControl_Send.Name = "progressBarControl_Send"; | |
3335 | + this.progressBarControl_Send.Properties.DisplayFormat.FormatString = "{0:#,##0} / 2,093 건"; | |
3336 | + this.progressBarControl_Send.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
3337 | + this.progressBarControl_Send.Properties.Maximum = 120; | |
3338 | + this.progressBarControl_Send.Properties.PercentView = false; | |
3339 | + this.progressBarControl_Send.Properties.ProgressViewStyle = DevExpress.XtraEditors.Controls.ProgressViewStyle.Solid; | |
3340 | + this.progressBarControl_Send.Properties.ShowTitle = true; | |
3341 | + this.progressBarControl_Send.Properties.Step = 1; | |
3342 | + this.progressBarControl_Send.Size = new System.Drawing.Size(330, 29); | |
3343 | + this.progressBarControl_Send.TabIndex = 3; | |
3344 | + // | |
3345 | + // simpleButton_SendSelectNone | |
3346 | + // | |
3347 | + this.simpleButton_SendSelectNone.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SendSelectNone.Image"))); | |
3348 | + this.simpleButton_SendSelectNone.Location = new System.Drawing.Point(110, 4); | |
3349 | + this.simpleButton_SendSelectNone.Name = "simpleButton_SendSelectNone"; | |
3350 | + this.simpleButton_SendSelectNone.Size = new System.Drawing.Size(94, 28); | |
3351 | + this.simpleButton_SendSelectNone.TabIndex = 1; | |
3352 | + this.simpleButton_SendSelectNone.Text = "모두해제"; | |
3353 | + // | |
3354 | + // simpleButton_SendSelectAll | |
3355 | + // | |
3356 | + this.simpleButton_SendSelectAll.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SendSelectAll.Image"))); | |
3357 | + this.simpleButton_SendSelectAll.Location = new System.Drawing.Point(10, 4); | |
3358 | + this.simpleButton_SendSelectAll.Name = "simpleButton_SendSelectAll"; | |
3359 | + this.simpleButton_SendSelectAll.Size = new System.Drawing.Size(94, 28); | |
3360 | + this.simpleButton_SendSelectAll.TabIndex = 0; | |
3361 | + this.simpleButton_SendSelectAll.Text = "모두선택"; | |
3362 | + // | |
3363 | + // simpleButton_Send | |
3364 | + // | |
3365 | + this.simpleButton_Send.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Send.Image"))); | |
3366 | + this.simpleButton_Send.Location = new System.Drawing.Point(210, 4); | |
3367 | + this.simpleButton_Send.Name = "simpleButton_Send"; | |
3368 | + this.simpleButton_Send.Size = new System.Drawing.Size(198, 28); | |
3369 | + this.simpleButton_Send.TabIndex = 2; | |
3370 | + this.simpleButton_Send.Text = "선택된 모든 자료를 전송"; | |
3371 | + // | |
3372 | + // xtraTabPage_Send | |
3373 | + // | |
3374 | + this.xtraTabPage_Send.Controls.Add(this.gridControl_Sended); | |
3375 | + this.xtraTabPage_Send.Controls.Add(this.panelControl3); | |
3376 | + this.xtraTabPage_Send.Name = "xtraTabPage_Send"; | |
3377 | + this.xtraTabPage_Send.Size = new System.Drawing.Size(1912, 410); | |
3378 | + this.xtraTabPage_Send.Text = "전송자료"; | |
3379 | + // | |
3380 | + // gridControl_Sended | |
3381 | + // | |
3382 | + this.gridControl_Sended.Dock = System.Windows.Forms.DockStyle.Fill; | |
3383 | + this.gridControl_Sended.ExternalRepository = this.m_Repository; | |
3384 | + this.gridControl_Sended.Location = new System.Drawing.Point(0, 37); | |
3385 | + this.gridControl_Sended.MainView = this.gridView_Sended; | |
3386 | + this.gridControl_Sended.Name = "gridControl_Sended"; | |
3387 | + this.gridControl_Sended.Size = new System.Drawing.Size(1912, 373); | |
3388 | + this.gridControl_Sended.TabIndex = 6; | |
3389 | + this.gridControl_Sended.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { | |
3390 | + this.gridView_Sended}); | |
3391 | + // | |
3392 | + // gridView_Sended | |
3393 | + // | |
3394 | + this.gridView_Sended.Appearance.FooterPanel.Options.UseFont = true; | |
3395 | + this.gridView_Sended.Appearance.HeaderPanel.Options.UseFont = true; | |
3396 | + this.gridView_Sended.Appearance.HeaderPanel.Options.UseTextOptions = true; | |
3397 | + this.gridView_Sended.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3398 | + this.gridView_Sended.Appearance.Row.Options.UseFont = true; | |
3399 | + this.gridView_Sended.ColumnPanelRowHeight = 23; | |
3400 | + this.gridView_Sended.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { | |
3401 | + this.gridColumn90, | |
3402 | + this.gridColumn91, | |
3403 | + this.gridColumn92, | |
3404 | + this.gridColumn93, | |
3405 | + this.gridColumn94, | |
3406 | + this.gridColumn95, | |
3407 | + this.gridColumn96, | |
3408 | + this.gridColumn97, | |
3409 | + this.gridColumn98, | |
3410 | + this.gridColumn99, | |
3411 | + this.gridColumn109, | |
3412 | + this.gridColumn100, | |
3413 | + this.gridColumn101, | |
3414 | + this.gridColumn102, | |
3415 | + this.gridColumn103, | |
3416 | + this.gridColumn104, | |
3417 | + this.gridColumn105, | |
3418 | + this.gridColumn106, | |
3419 | + this.gridColumn107, | |
3420 | + this.gridColumn108, | |
3421 | + this.gridColumn110, | |
3422 | + this.gridColumn111, | |
3423 | + this.gridColumn112}); | |
3424 | + this.gridView_Sended.FooterPanelHeight = 23; | |
3425 | + this.gridView_Sended.GridControl = this.gridControl_Sended; | |
3426 | + this.gridView_Sended.GroupRowHeight = 23; | |
3427 | + this.gridView_Sended.Name = "gridView_Sended"; | |
3428 | + this.gridView_Sended.OptionsCustomization.AllowGroup = false; | |
3429 | + this.gridView_Sended.OptionsNavigation.EnterMoveNextColumn = true; | |
3430 | + this.gridView_Sended.OptionsView.ColumnAutoWidth = false; | |
3431 | + this.gridView_Sended.OptionsView.ShowFooter = true; | |
3432 | + this.gridView_Sended.OptionsView.ShowGroupPanel = false; | |
3433 | + this.gridView_Sended.RowHeight = 23; | |
3434 | + // | |
3435 | + // gridColumn90 | |
3436 | + // | |
3437 | + this.gridColumn90.Caption = "전송"; | |
3438 | + this.gridColumn90.ColumnEdit = this.m_Repository_CheckYN; | |
3439 | + this.gridColumn90.FieldName = "SEL_FIELD"; | |
3440 | + this.gridColumn90.Name = "gridColumn90"; | |
3441 | + this.gridColumn90.Visible = true; | |
3442 | + this.gridColumn90.VisibleIndex = 0; | |
3443 | + this.gridColumn90.Width = 50; | |
3444 | + // | |
3445 | + // gridColumn91 | |
3446 | + // | |
3447 | + this.gridColumn91.AppearanceCell.Options.UseTextOptions = true; | |
3448 | + this.gridColumn91.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3449 | + this.gridColumn91.Caption = "건수"; | |
3450 | + this.gridColumn91.FieldName = "CNT"; | |
3451 | + this.gridColumn91.Name = "gridColumn91"; | |
3452 | + this.gridColumn91.OptionsColumn.AllowEdit = false; | |
3453 | + this.gridColumn91.Visible = true; | |
3454 | + this.gridColumn91.VisibleIndex = 2; | |
3455 | + this.gridColumn91.Width = 50; | |
3456 | + // | |
3457 | + // gridColumn92 | |
3458 | + // | |
3459 | + this.gridColumn92.AppearanceCell.Options.UseTextOptions = true; | |
3460 | + this.gridColumn92.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3461 | + this.gridColumn92.Caption = "분류"; | |
3462 | + this.gridColumn92.FieldName = "TAX_TYPE_NM"; | |
3463 | + this.gridColumn92.Name = "gridColumn92"; | |
3464 | + this.gridColumn92.OptionsColumn.AllowEdit = false; | |
3465 | + this.gridColumn92.Visible = true; | |
3466 | + this.gridColumn92.VisibleIndex = 3; | |
3467 | + this.gridColumn92.Width = 50; | |
3468 | + // | |
3469 | + // gridColumn93 | |
3470 | + // | |
3471 | + this.gridColumn93.AppearanceCell.Options.UseTextOptions = true; | |
3472 | + this.gridColumn93.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3473 | + this.gridColumn93.Caption = "구분"; | |
3474 | + this.gridColumn93.FieldName = "TAX_REQ_TYPE_NM"; | |
3475 | + this.gridColumn93.Name = "gridColumn93"; | |
3476 | + this.gridColumn93.OptionsColumn.AllowEdit = false; | |
3477 | + this.gridColumn93.Visible = true; | |
3478 | + this.gridColumn93.VisibleIndex = 1; | |
3479 | + this.gridColumn93.Width = 50; | |
3480 | + // | |
3481 | + // gridColumn94 | |
3482 | + // | |
3483 | + this.gridColumn94.Caption = "거래선명"; | |
3484 | + this.gridColumn94.FieldName = "CUST_NM"; | |
3485 | + this.gridColumn94.Name = "gridColumn94"; | |
3486 | + this.gridColumn94.OptionsColumn.AllowEdit = false; | |
3487 | + this.gridColumn94.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3488 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "CUST_NM", "{0:#,##0} 건")}); | |
3489 | + this.gridColumn94.Visible = true; | |
3490 | + this.gridColumn94.VisibleIndex = 4; | |
3491 | + this.gridColumn94.Width = 160; | |
3492 | + // | |
3493 | + // gridColumn95 | |
3494 | + // | |
3495 | + this.gridColumn95.AppearanceCell.Options.UseTextOptions = true; | |
3496 | + this.gridColumn95.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
3497 | + this.gridColumn95.Caption = "공급가액"; | |
3498 | + this.gridColumn95.DisplayFormat.FormatString = "n0"; | |
3499 | + this.gridColumn95.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
3500 | + this.gridColumn95.FieldName = "CURR_MY"; | |
3501 | + this.gridColumn95.Name = "gridColumn95"; | |
3502 | + this.gridColumn95.OptionsColumn.AllowEdit = false; | |
3503 | + this.gridColumn95.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3504 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CURR_MY", "{0:#,##0}")}); | |
3505 | + this.gridColumn95.Visible = true; | |
3506 | + this.gridColumn95.VisibleIndex = 5; | |
3507 | + this.gridColumn95.Width = 110; | |
3508 | + // | |
3509 | + // gridColumn96 | |
3510 | + // | |
3511 | + this.gridColumn96.AppearanceCell.Options.UseTextOptions = true; | |
3512 | + this.gridColumn96.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
3513 | + this.gridColumn96.Caption = "부가세액"; | |
3514 | + this.gridColumn96.DisplayFormat.FormatString = "n0"; | |
3515 | + this.gridColumn96.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
3516 | + this.gridColumn96.FieldName = "VAT_MY"; | |
3517 | + this.gridColumn96.Name = "gridColumn96"; | |
3518 | + this.gridColumn96.OptionsColumn.AllowEdit = false; | |
3519 | + this.gridColumn96.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3520 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "VAT_MY", "{0:#,##0}")}); | |
3521 | + this.gridColumn96.Visible = true; | |
3522 | + this.gridColumn96.VisibleIndex = 6; | |
3523 | + this.gridColumn96.Width = 110; | |
3524 | + // | |
3525 | + // gridColumn97 | |
3526 | + // | |
3527 | + this.gridColumn97.AppearanceCell.Options.UseTextOptions = true; | |
3528 | + this.gridColumn97.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
3529 | + this.gridColumn97.Caption = "합계금액"; | |
3530 | + this.gridColumn97.DisplayFormat.FormatString = "n0"; | |
3531 | + this.gridColumn97.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
3532 | + this.gridColumn97.FieldName = "TOT_MY"; | |
3533 | + this.gridColumn97.Name = "gridColumn97"; | |
3534 | + this.gridColumn97.OptionsColumn.AllowEdit = false; | |
3535 | + this.gridColumn97.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3536 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "TOT_MY", "{0:#,##0}")}); | |
3537 | + this.gridColumn97.Visible = true; | |
3538 | + this.gridColumn97.VisibleIndex = 7; | |
3539 | + this.gridColumn97.Width = 110; | |
3540 | + // | |
3541 | + // gridColumn98 | |
3542 | + // | |
3543 | + this.gridColumn98.AppearanceCell.Options.UseTextOptions = true; | |
3544 | + this.gridColumn98.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3545 | + this.gridColumn98.Caption = "발행일"; | |
3546 | + this.gridColumn98.FieldName = "TAX_DT"; | |
3547 | + this.gridColumn98.Name = "gridColumn98"; | |
3548 | + this.gridColumn98.OptionsColumn.AllowEdit = false; | |
3549 | + this.gridColumn98.Visible = true; | |
3550 | + this.gridColumn98.VisibleIndex = 8; | |
3551 | + // | |
3552 | + // gridColumn99 | |
3553 | + // | |
3554 | + this.gridColumn99.AppearanceCell.Options.UseTextOptions = true; | |
3555 | + this.gridColumn99.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3556 | + this.gridColumn99.Caption = "발행번호"; | |
3557 | + this.gridColumn99.FieldName = "DISP_BILL_NO"; | |
3558 | + this.gridColumn99.Name = "gridColumn99"; | |
3559 | + this.gridColumn99.OptionsColumn.AllowEdit = false; | |
3560 | + this.gridColumn99.Visible = true; | |
3561 | + this.gridColumn99.VisibleIndex = 9; | |
3562 | + // | |
3563 | + // gridColumn109 | |
3564 | + // | |
3565 | + this.gridColumn109.AppearanceCell.Options.UseTextOptions = true; | |
3566 | + this.gridColumn109.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3567 | + this.gridColumn109.Caption = "전송일자"; | |
3568 | + this.gridColumn109.FieldName = "SEND_DT"; | |
3569 | + this.gridColumn109.Name = "gridColumn109"; | |
3570 | + this.gridColumn109.OptionsColumn.AllowEdit = false; | |
3571 | + this.gridColumn109.Visible = true; | |
3572 | + this.gridColumn109.VisibleIndex = 10; | |
3573 | + // | |
3574 | + // gridColumn100 | |
3575 | + // | |
3576 | + this.gridColumn100.AppearanceCell.Options.UseTextOptions = true; | |
3577 | + this.gridColumn100.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3578 | + this.gridColumn100.Caption = "사업자번호"; | |
3579 | + this.gridColumn100.FieldName = "BIZ_NO"; | |
3580 | + this.gridColumn100.Name = "gridColumn100"; | |
3581 | + this.gridColumn100.OptionsColumn.AllowEdit = false; | |
3582 | + this.gridColumn100.Visible = true; | |
3583 | + this.gridColumn100.VisibleIndex = 11; | |
3584 | + this.gridColumn100.Width = 100; | |
3585 | + // | |
3586 | + // gridColumn101 | |
3587 | + // | |
3588 | + this.gridColumn101.Caption = "대표자"; | |
3589 | + this.gridColumn101.FieldName = "OWNER_NM"; | |
3590 | + this.gridColumn101.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
3591 | + this.gridColumn101.Name = "gridColumn101"; | |
3592 | + this.gridColumn101.OptionsColumn.AllowEdit = false; | |
3593 | + this.gridColumn101.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3594 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Custom, "CURR_MY", "{0:#,##0}")}); | |
3595 | + this.gridColumn101.Visible = true; | |
3596 | + this.gridColumn101.VisibleIndex = 12; | |
3597 | + this.gridColumn101.Width = 90; | |
3598 | + // | |
3599 | + // gridColumn102 | |
3600 | + // | |
3601 | + this.gridColumn102.Caption = "업태"; | |
3602 | + this.gridColumn102.FieldName = "COND_NM"; | |
3603 | + this.gridColumn102.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
3604 | + this.gridColumn102.Name = "gridColumn102"; | |
3605 | + this.gridColumn102.OptionsColumn.AllowEdit = false; | |
3606 | + this.gridColumn102.Visible = true; | |
3607 | + this.gridColumn102.VisibleIndex = 13; | |
3608 | + this.gridColumn102.Width = 110; | |
3609 | + // | |
3610 | + // gridColumn103 | |
3611 | + // | |
3612 | + this.gridColumn103.Caption = "종목"; | |
3613 | + this.gridColumn103.FieldName = "EVNT_NM"; | |
3614 | + this.gridColumn103.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value; | |
3615 | + this.gridColumn103.Name = "gridColumn103"; | |
3616 | + this.gridColumn103.OptionsColumn.AllowEdit = false; | |
3617 | + this.gridColumn103.Visible = true; | |
3618 | + this.gridColumn103.VisibleIndex = 14; | |
3619 | + this.gridColumn103.Width = 110; | |
3620 | + // | |
3621 | + // gridColumn104 | |
3622 | + // | |
3623 | + this.gridColumn104.Caption = "주소"; | |
3624 | + this.gridColumn104.FieldName = "ADDR1"; | |
3625 | + this.gridColumn104.Name = "gridColumn104"; | |
3626 | + this.gridColumn104.OptionsColumn.AllowEdit = false; | |
3627 | + this.gridColumn104.Visible = true; | |
3628 | + this.gridColumn104.VisibleIndex = 15; | |
3629 | + this.gridColumn104.Width = 300; | |
3630 | + // | |
3631 | + // gridColumn105 | |
3632 | + // | |
3633 | + this.gridColumn105.Caption = "전화번호"; | |
3634 | + this.gridColumn105.FieldName = "TEL_NO"; | |
3635 | + this.gridColumn105.Name = "gridColumn105"; | |
3636 | + this.gridColumn105.OptionsColumn.AllowEdit = false; | |
3637 | + this.gridColumn105.Visible = true; | |
3638 | + this.gridColumn105.VisibleIndex = 16; | |
3639 | + this.gridColumn105.Width = 100; | |
3640 | + // | |
3641 | + // gridColumn106 | |
3642 | + // | |
3643 | + this.gridColumn106.AppearanceCell.Options.UseTextOptions = true; | |
3644 | + this.gridColumn106.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3645 | + this.gridColumn106.Caption = "팩스"; | |
3646 | + this.gridColumn106.FieldName = "FAX_NO"; | |
3647 | + this.gridColumn106.Name = "gridColumn106"; | |
3648 | + this.gridColumn106.OptionsColumn.AllowEdit = false; | |
3649 | + this.gridColumn106.Visible = true; | |
3650 | + this.gridColumn106.VisibleIndex = 17; | |
3651 | + this.gridColumn106.Width = 100; | |
3652 | + // | |
3653 | + // gridColumn107 | |
3654 | + // | |
3655 | + this.gridColumn107.AppearanceCell.Options.UseTextOptions = true; | |
3656 | + this.gridColumn107.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3657 | + this.gridColumn107.Caption = "코드"; | |
3658 | + this.gridColumn107.FieldName = "CUST_CD"; | |
3659 | + this.gridColumn107.Name = "gridColumn107"; | |
3660 | + this.gridColumn107.OptionsColumn.AllowEdit = false; | |
3661 | + this.gridColumn107.Visible = true; | |
3662 | + this.gridColumn107.VisibleIndex = 18; | |
3663 | + this.gridColumn107.Width = 50; | |
3664 | + // | |
3665 | + // gridColumn108 | |
3666 | + // | |
3667 | + this.gridColumn108.Caption = "이메일"; | |
3668 | + this.gridColumn108.FieldName = "EMAIL"; | |
3669 | + this.gridColumn108.Name = "gridColumn108"; | |
3670 | + this.gridColumn108.OptionsColumn.AllowEdit = false; | |
3671 | + this.gridColumn108.Visible = true; | |
3672 | + this.gridColumn108.VisibleIndex = 19; | |
3673 | + this.gridColumn108.Width = 150; | |
3674 | + // | |
3675 | + // gridColumn110 | |
3676 | + // | |
3677 | + this.gridColumn110.Caption = "담당자"; | |
3678 | + this.gridColumn110.FieldName = "MGR_NM"; | |
3679 | + this.gridColumn110.Name = "gridColumn110"; | |
3680 | + this.gridColumn110.OptionsColumn.AllowEdit = false; | |
3681 | + this.gridColumn110.Visible = true; | |
3682 | + this.gridColumn110.VisibleIndex = 20; | |
3683 | + // | |
3684 | + // gridColumn111 | |
3685 | + // | |
3686 | + this.gridColumn111.Caption = "담당자 이메일"; | |
3687 | + this.gridColumn111.FieldName = "MGR_EMAIL"; | |
3688 | + this.gridColumn111.Name = "gridColumn111"; | |
3689 | + this.gridColumn111.OptionsColumn.AllowEdit = false; | |
3690 | + this.gridColumn111.Visible = true; | |
3691 | + this.gridColumn111.VisibleIndex = 21; | |
3692 | + this.gridColumn111.Width = 150; | |
3693 | + // | |
3694 | + // gridColumn112 | |
3695 | + // | |
3696 | + this.gridColumn112.Caption = "담당자 연락처"; | |
3697 | + this.gridColumn112.FieldName = "MGR_TEL_NO"; | |
3698 | + this.gridColumn112.Name = "gridColumn112"; | |
3699 | + this.gridColumn112.OptionsColumn.AllowEdit = false; | |
3700 | + this.gridColumn112.Visible = true; | |
3701 | + this.gridColumn112.VisibleIndex = 22; | |
3702 | + this.gridColumn112.Width = 120; | |
3703 | + // | |
3704 | + // panelControl3 | |
3705 | + // | |
3706 | + this.panelControl3.Controls.Add(this.progressBarControl_Sended); | |
3707 | + this.panelControl3.Controls.Add(this.simpleButton_SendedSelectNone); | |
3708 | + this.panelControl3.Controls.Add(this.simpleButton_SendedSelectAll); | |
3709 | + this.panelControl3.Controls.Add(this.simpleButton_CancelSend); | |
3710 | + this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top; | |
3711 | + this.panelControl3.Location = new System.Drawing.Point(0, 0); | |
3712 | + this.panelControl3.Name = "panelControl3"; | |
3713 | + this.panelControl3.Size = new System.Drawing.Size(1912, 37); | |
3714 | + this.panelControl3.TabIndex = 7; | |
3715 | + // | |
3716 | + // progressBarControl_Sended | |
3717 | + // | |
3718 | + this.progressBarControl_Sended.EditValue = 30; | |
3719 | + this.progressBarControl_Sended.Location = new System.Drawing.Point(414, 4); | |
3720 | + this.progressBarControl_Sended.MenuManager = this.m_BarManager; | |
3721 | + this.progressBarControl_Sended.Name = "progressBarControl_Sended"; | |
3722 | + this.progressBarControl_Sended.Properties.DisplayFormat.FormatString = "{0:#,##0} / 2,093 건"; | |
3723 | + this.progressBarControl_Sended.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
3724 | + this.progressBarControl_Sended.Properties.Maximum = 120; | |
3725 | + this.progressBarControl_Sended.Properties.PercentView = false; | |
3726 | + this.progressBarControl_Sended.Properties.ProgressViewStyle = DevExpress.XtraEditors.Controls.ProgressViewStyle.Solid; | |
3727 | + this.progressBarControl_Sended.Properties.ShowTitle = true; | |
3728 | + this.progressBarControl_Sended.Properties.Step = 1; | |
3729 | + this.progressBarControl_Sended.Size = new System.Drawing.Size(330, 29); | |
3730 | + this.progressBarControl_Sended.TabIndex = 3; | |
3731 | + // | |
3732 | + // simpleButton_SendedSelectNone | |
3733 | + // | |
3734 | + this.simpleButton_SendedSelectNone.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SendedSelectNone.Image"))); | |
3735 | + this.simpleButton_SendedSelectNone.Location = new System.Drawing.Point(110, 4); | |
3736 | + this.simpleButton_SendedSelectNone.Name = "simpleButton_SendedSelectNone"; | |
3737 | + this.simpleButton_SendedSelectNone.Size = new System.Drawing.Size(94, 28); | |
3738 | + this.simpleButton_SendedSelectNone.TabIndex = 1; | |
3739 | + this.simpleButton_SendedSelectNone.Text = "모두해제"; | |
3740 | + // | |
3741 | + // simpleButton_SendedSelectAll | |
3742 | + // | |
3743 | + this.simpleButton_SendedSelectAll.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SendedSelectAll.Image"))); | |
3744 | + this.simpleButton_SendedSelectAll.Location = new System.Drawing.Point(10, 4); | |
3745 | + this.simpleButton_SendedSelectAll.Name = "simpleButton_SendedSelectAll"; | |
3746 | + this.simpleButton_SendedSelectAll.Size = new System.Drawing.Size(94, 28); | |
3747 | + this.simpleButton_SendedSelectAll.TabIndex = 0; | |
3748 | + this.simpleButton_SendedSelectAll.Text = "모두선택"; | |
3749 | + // | |
3750 | + // simpleButton_CancelSend | |
3751 | + // | |
3752 | + this.simpleButton_CancelSend.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_CancelSend.Image"))); | |
3753 | + this.simpleButton_CancelSend.Location = new System.Drawing.Point(210, 4); | |
3754 | + this.simpleButton_CancelSend.Name = "simpleButton_CancelSend"; | |
3755 | + this.simpleButton_CancelSend.Size = new System.Drawing.Size(198, 28); | |
3756 | + this.simpleButton_CancelSend.TabIndex = 2; | |
3757 | + this.simpleButton_CancelSend.Text = "선택된 모든 자료를 전송취소"; | |
3758 | + // | |
3759 | + // xtraTabPage1 | |
3760 | + // | |
3761 | + this.xtraTabPage1.Controls.Add(this.gridControl_PopBill); | |
3762 | + this.xtraTabPage1.Name = "xtraTabPage1"; | |
3763 | + this.xtraTabPage1.Size = new System.Drawing.Size(1912, 410); | |
3764 | + this.xtraTabPage1.Text = "국세청 전송결과 자료"; | |
3765 | + // | |
3766 | + // gridControl_PopBill | |
3767 | + // | |
3768 | + this.gridControl_PopBill.Dock = System.Windows.Forms.DockStyle.Fill; | |
3769 | + this.gridControl_PopBill.ExternalRepository = this.m_Repository; | |
3770 | + this.gridControl_PopBill.Location = new System.Drawing.Point(0, 0); | |
3771 | + this.gridControl_PopBill.MainView = this.gridView_PopBill; | |
3772 | + this.gridControl_PopBill.Name = "gridControl_PopBill"; | |
3773 | + this.gridControl_PopBill.Size = new System.Drawing.Size(1912, 410); | |
3774 | + this.gridControl_PopBill.TabIndex = 7; | |
3775 | + this.gridControl_PopBill.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { | |
3776 | + this.gridView_PopBill}); | |
3777 | + // | |
3778 | + // gridView_PopBill | |
3779 | + // | |
3780 | + this.gridView_PopBill.Appearance.FooterPanel.Options.UseFont = true; | |
3781 | + this.gridView_PopBill.Appearance.HeaderPanel.Options.UseFont = true; | |
3782 | + this.gridView_PopBill.Appearance.HeaderPanel.Options.UseTextOptions = true; | |
3783 | + this.gridView_PopBill.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3784 | + this.gridView_PopBill.Appearance.Row.Options.UseFont = true; | |
3785 | + this.gridView_PopBill.ColumnPanelRowHeight = 23; | |
3786 | + this.gridView_PopBill.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { | |
3787 | + this.gridColumn114, | |
3788 | + this.gridColumn115, | |
3789 | + this.gridColumn116, | |
3790 | + this.gridColumn113, | |
3791 | + this.gridColumn117, | |
3792 | + this.gridColumn124, | |
3793 | + this.gridColumn118, | |
3794 | + this.gridColumn119, | |
3795 | + this.gridColumn120}); | |
3796 | + this.gridView_PopBill.FooterPanelHeight = 23; | |
3797 | + this.gridView_PopBill.GridControl = this.gridControl_PopBill; | |
3798 | + this.gridView_PopBill.GroupRowHeight = 23; | |
3799 | + this.gridView_PopBill.Name = "gridView_PopBill"; | |
3800 | + this.gridView_PopBill.OptionsBehavior.Editable = false; | |
3801 | + this.gridView_PopBill.OptionsCustomization.AllowGroup = false; | |
3802 | + this.gridView_PopBill.OptionsNavigation.EnterMoveNextColumn = true; | |
3803 | + this.gridView_PopBill.OptionsSelection.EnableAppearanceFocusedCell = false; | |
3804 | + this.gridView_PopBill.OptionsView.ColumnAutoWidth = false; | |
3805 | + this.gridView_PopBill.OptionsView.ShowFooter = true; | |
3806 | + this.gridView_PopBill.OptionsView.ShowGroupPanel = false; | |
3807 | + this.gridView_PopBill.RowHeight = 23; | |
3808 | + // | |
3809 | + // gridColumn114 | |
3810 | + // | |
3811 | + this.gridColumn114.AppearanceCell.Options.UseTextOptions = true; | |
3812 | + this.gridColumn114.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3813 | + this.gridColumn114.Caption = "작성일"; | |
3814 | + this.gridColumn114.FieldName = "WRITE_DATE"; | |
3815 | + this.gridColumn114.Name = "gridColumn114"; | |
3816 | + this.gridColumn114.OptionsColumn.AllowEdit = false; | |
3817 | + this.gridColumn114.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3818 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "WRITE_DATE", "{0:#,##0} 건")}); | |
3819 | + this.gridColumn114.Visible = true; | |
3820 | + this.gridColumn114.VisibleIndex = 0; | |
3821 | + // | |
3822 | + // gridColumn115 | |
3823 | + // | |
3824 | + this.gridColumn115.AppearanceCell.Options.UseTextOptions = true; | |
3825 | + this.gridColumn115.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3826 | + this.gridColumn115.Caption = "등록일"; | |
3827 | + this.gridColumn115.FieldName = "REG_DT"; | |
3828 | + this.gridColumn115.Name = "gridColumn115"; | |
3829 | + this.gridColumn115.OptionsColumn.AllowEdit = false; | |
3830 | + this.gridColumn115.Visible = true; | |
3831 | + this.gridColumn115.VisibleIndex = 1; | |
3832 | + this.gridColumn115.Width = 130; | |
3833 | + // | |
3834 | + // gridColumn116 | |
3835 | + // | |
3836 | + this.gridColumn116.AppearanceCell.Options.UseTextOptions = true; | |
3837 | + this.gridColumn116.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3838 | + this.gridColumn116.Caption = "과세구분"; | |
3839 | + this.gridColumn116.FieldName = "TAX_TYPE"; | |
3840 | + this.gridColumn116.Name = "gridColumn116"; | |
3841 | + this.gridColumn116.OptionsColumn.AllowEdit = false; | |
3842 | + this.gridColumn116.Visible = true; | |
3843 | + this.gridColumn116.VisibleIndex = 2; | |
3844 | + // | |
3845 | + // gridColumn113 | |
3846 | + // | |
3847 | + this.gridColumn113.AppearanceCell.Options.UseTextOptions = true; | |
3848 | + this.gridColumn113.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3849 | + this.gridColumn113.Caption = "영수구분"; | |
3850 | + this.gridColumn113.FieldName = "TAX_REQ_TYPE"; | |
3851 | + this.gridColumn113.Name = "gridColumn113"; | |
3852 | + this.gridColumn113.Visible = true; | |
3853 | + this.gridColumn113.VisibleIndex = 3; | |
3854 | + // | |
3855 | + // gridColumn117 | |
3856 | + // | |
3857 | + this.gridColumn117.Caption = "거래선명"; | |
3858 | + this.gridColumn117.FieldName = "CUST_NM"; | |
3859 | + this.gridColumn117.Name = "gridColumn117"; | |
3860 | + this.gridColumn117.OptionsColumn.AllowEdit = false; | |
3861 | + this.gridColumn117.Visible = true; | |
3862 | + this.gridColumn117.VisibleIndex = 4; | |
3863 | + this.gridColumn117.Width = 160; | |
3864 | + // | |
3865 | + // gridColumn124 | |
3866 | + // | |
3867 | + this.gridColumn124.AppearanceCell.Options.UseTextOptions = true; | |
3868 | + this.gridColumn124.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
3869 | + this.gridColumn124.Caption = "사업자번호"; | |
3870 | + this.gridColumn124.FieldName = "BIZ_NO"; | |
3871 | + this.gridColumn124.Name = "gridColumn124"; | |
3872 | + this.gridColumn124.OptionsColumn.AllowEdit = false; | |
3873 | + this.gridColumn124.Visible = true; | |
3874 | + this.gridColumn124.VisibleIndex = 5; | |
3875 | + this.gridColumn124.Width = 100; | |
3876 | + // | |
3877 | + // gridColumn118 | |
3878 | + // | |
3879 | + this.gridColumn118.AppearanceCell.Options.UseTextOptions = true; | |
3880 | + this.gridColumn118.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
3881 | + this.gridColumn118.Caption = "공급가액"; | |
3882 | + this.gridColumn118.DisplayFormat.FormatString = "n0"; | |
3883 | + this.gridColumn118.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
3884 | + this.gridColumn118.FieldName = "CURR_MY"; | |
3885 | + this.gridColumn118.Name = "gridColumn118"; | |
3886 | + this.gridColumn118.OptionsColumn.AllowEdit = false; | |
3887 | + this.gridColumn118.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3888 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CURR_MY", "{0:#,##0}")}); | |
3889 | + this.gridColumn118.Visible = true; | |
3890 | + this.gridColumn118.VisibleIndex = 6; | |
3891 | + this.gridColumn118.Width = 110; | |
3892 | + // | |
3893 | + // gridColumn119 | |
3894 | + // | |
3895 | + this.gridColumn119.AppearanceCell.Options.UseTextOptions = true; | |
3896 | + this.gridColumn119.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
3897 | + this.gridColumn119.Caption = "부가세액"; | |
3898 | + this.gridColumn119.DisplayFormat.FormatString = "n0"; | |
3899 | + this.gridColumn119.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
3900 | + this.gridColumn119.FieldName = "VAT_MY"; | |
3901 | + this.gridColumn119.Name = "gridColumn119"; | |
3902 | + this.gridColumn119.OptionsColumn.AllowEdit = false; | |
3903 | + this.gridColumn119.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3904 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "VAT_MY", "{0:#,##0}")}); | |
3905 | + this.gridColumn119.Visible = true; | |
3906 | + this.gridColumn119.VisibleIndex = 7; | |
3907 | + this.gridColumn119.Width = 110; | |
3908 | + // | |
3909 | + // gridColumn120 | |
3910 | + // | |
3911 | + this.gridColumn120.AppearanceCell.Options.UseTextOptions = true; | |
3912 | + this.gridColumn120.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
3913 | + this.gridColumn120.Caption = "합계금액"; | |
3914 | + this.gridColumn120.DisplayFormat.FormatString = "n0"; | |
3915 | + this.gridColumn120.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
3916 | + this.gridColumn120.FieldName = "TOT_MY"; | |
3917 | + this.gridColumn120.Name = "gridColumn120"; | |
3918 | + this.gridColumn120.OptionsColumn.AllowEdit = false; | |
3919 | + this.gridColumn120.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { | |
3920 | + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "TOT_MY", "{0:#,##0}")}); | |
3921 | + this.gridColumn120.Visible = true; | |
3922 | + this.gridColumn120.VisibleIndex = 8; | |
3923 | + this.gridColumn120.Width = 110; | |
3924 | + // | |
3925 | + // TaxBillByPopbill | |
3926 | + // | |
3927 | + this.Appearance.Options.UseFont = true; | |
3928 | + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; | |
3929 | + this.ClientSize = new System.Drawing.Size(1924, 534); | |
3930 | + this.Controls.Add(this.xtraTabControl_Tab); | |
3931 | + this.Controls.Add(this.panelControl_Search); | |
3932 | + this.Name = "TaxBillByPopbill"; | |
3933 | + this.Text = "세금계산서(팝빌)"; | |
3934 | + this.WindowState = System.Windows.Forms.FormWindowState.Normal; | |
3935 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_N0)).EndInit(); | |
3936 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_N1)).EndInit(); | |
3937 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_N2)).EndInit(); | |
3938 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_N3)).EndInit(); | |
3939 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_N4)).EndInit(); | |
3940 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_DT.CalendarTimeProperties)).EndInit(); | |
3941 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_DT)).EndInit(); | |
3942 | + ((System.ComponentModel.ISupportInitialize)(this.m_Repository_CheckYN)).EndInit(); | |
3943 | + ((System.ComponentModel.ISupportInitialize)(this.m_GridPopupMenu)).EndInit(); | |
3944 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_Search)).EndInit(); | |
3945 | + this.panelControl_Search.ResumeLayout(false); | |
3946 | + ((System.ComponentModel.ISupportInitialize)(this.checkEdit_Card.Properties)).EndInit(); | |
3947 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit(); | |
3948 | + this.panelControl8.ResumeLayout(false); | |
3949 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit(); | |
3950 | + this.panelControl9.ResumeLayout(false); | |
3951 | + ((System.ComponentModel.ISupportInitialize)(this.checkEdit_Maked.Properties)).EndInit(); | |
3952 | + ((System.ComponentModel.ISupportInitialize)(this.checkEdit_NotMake.Properties)).EndInit(); | |
3953 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit(); | |
3954 | + this.panelControl5.ResumeLayout(false); | |
3955 | + ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_SIGN_GUBUN.Properties)).EndInit(); | |
3956 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit(); | |
3957 | + this.panelControl4.ResumeLayout(false); | |
3958 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_Cust)).EndInit(); | |
3959 | + this.panelControl_Cust.ResumeLayout(false); | |
3960 | + ((System.ComponentModel.ISupportInitialize)(this.buttonEdit_CUST_NM.Properties)).EndInit(); | |
3961 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_Date)).EndInit(); | |
3962 | + this.panelControl_Date.ResumeLayout(false); | |
3963 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SDATE.Properties.CalendarTimeProperties)).EndInit(); | |
3964 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SDATE.Properties)).EndInit(); | |
3965 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_FDATE.Properties.CalendarTimeProperties)).EndInit(); | |
3966 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_FDATE.Properties)).EndInit(); | |
3967 | + ((System.ComponentModel.ISupportInitialize)(this.checkEdit_NotEmail.Properties)).EndInit(); | |
3968 | + ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_Tab)).EndInit(); | |
3969 | + this.xtraTabControl_Tab.ResumeLayout(false); | |
3970 | + this.xtraTabPage_Tab1.ResumeLayout(false); | |
3971 | + ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_TaxBill)).EndInit(); | |
3972 | + this.xtraTabControl_TaxBill.ResumeLayout(false); | |
3973 | + this.xtraTabPage_Batch.ResumeLayout(false); | |
3974 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_TaxBill_Maked)).EndInit(); | |
3975 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_TaxBill_Maked)).EndInit(); | |
3976 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_TaxBill_NotMake)).EndInit(); | |
3977 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_TaxBill_NotMake)).EndInit(); | |
3978 | + this.xtraTabPage_Etc.ResumeLayout(false); | |
3979 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_Etc)).EndInit(); | |
3980 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_Etc)).EndInit(); | |
3981 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit(); | |
3982 | + this.panelControl2.ResumeLayout(false); | |
3983 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_TAX_DT)).EndInit(); | |
3984 | + this.panelControl_TAX_DT.ResumeLayout(false); | |
3985 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_Date.Properties.CalendarTimeProperties)).EndInit(); | |
3986 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_Date.Properties)).EndInit(); | |
3987 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_TAX_TYPE)).EndInit(); | |
3988 | + this.panelControl_TAX_TYPE.ResumeLayout(false); | |
3989 | + ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_TAX_TYPE.Properties)).EndInit(); | |
3990 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl_REQ_TYPE)).EndInit(); | |
3991 | + this.panelControl_REQ_TYPE.ResumeLayout(false); | |
3992 | + ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_TAX_REQ_TYPE.Properties)).EndInit(); | |
3993 | + this.xtraTabPage_Tab2.ResumeLayout(false); | |
3994 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_Cust)).EndInit(); | |
3995 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_Cust)).EndInit(); | |
3996 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit(); | |
3997 | + this.panelControl10.ResumeLayout(false); | |
3998 | + ((System.ComponentModel.ISupportInitialize)(this.groupControl_Cust)).EndInit(); | |
3999 | + this.groupControl_Cust.ResumeLayout(false); | |
4000 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl26)).EndInit(); | |
4001 | + this.panelControl26.ResumeLayout(false); | |
4002 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_BIZ_NO.Properties)).EndInit(); | |
4003 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl35)).EndInit(); | |
4004 | + this.panelControl35.ResumeLayout(false); | |
4005 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_MGR_EMAIL.Properties)).EndInit(); | |
4006 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl40)).EndInit(); | |
4007 | + this.panelControl40.ResumeLayout(false); | |
4008 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_MGR_NM.Properties)).EndInit(); | |
4009 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl39)).EndInit(); | |
4010 | + this.panelControl39.ResumeLayout(false); | |
4011 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_MGR_TEL_NO.Properties)).EndInit(); | |
4012 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl31)).EndInit(); | |
4013 | + this.panelControl31.ResumeLayout(false); | |
4014 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_FAX_NO.Properties)).EndInit(); | |
4015 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl32)).EndInit(); | |
4016 | + this.panelControl32.ResumeLayout(false); | |
4017 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_EVNT_NM.Properties)).EndInit(); | |
4018 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl33)).EndInit(); | |
4019 | + this.panelControl33.ResumeLayout(false); | |
4020 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_COND_NM.Properties)).EndInit(); | |
4021 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl34)).EndInit(); | |
4022 | + this.panelControl34.ResumeLayout(false); | |
4023 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_ADDR1.Properties)).EndInit(); | |
4024 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl41)).EndInit(); | |
4025 | + this.panelControl41.ResumeLayout(false); | |
4026 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_OWNER_NM.Properties)).EndInit(); | |
4027 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl42)).EndInit(); | |
4028 | + this.panelControl42.ResumeLayout(false); | |
4029 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_NM.Properties)).EndInit(); | |
4030 | + ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit(); | |
4031 | + this.groupControl1.ResumeLayout(false); | |
4032 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).EndInit(); | |
4033 | + this.panelControl12.ResumeLayout(false); | |
4034 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_BIZ_NO.Properties)).EndInit(); | |
4035 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl24)).EndInit(); | |
4036 | + this.panelControl24.ResumeLayout(false); | |
4037 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_ACCT_NO.Properties)).EndInit(); | |
4038 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl22)).EndInit(); | |
4039 | + this.panelControl22.ResumeLayout(false); | |
4040 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_USR_PWD.Properties)).EndInit(); | |
4041 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl18)).EndInit(); | |
4042 | + this.panelControl18.ResumeLayout(false); | |
4043 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_FAX_NO.Properties)).EndInit(); | |
4044 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).EndInit(); | |
4045 | + this.panelControl16.ResumeLayout(false); | |
4046 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_EVNT_NM.Properties)).EndInit(); | |
4047 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).EndInit(); | |
4048 | + this.panelControl14.ResumeLayout(false); | |
4049 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_COND_NM.Properties)).EndInit(); | |
4050 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl20)).EndInit(); | |
4051 | + this.panelControl20.ResumeLayout(false); | |
4052 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_ADDR1.Properties)).EndInit(); | |
4053 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl19)).EndInit(); | |
4054 | + this.panelControl19.ResumeLayout(false); | |
4055 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_EMAIL.Properties)).EndInit(); | |
4056 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl25)).EndInit(); | |
4057 | + this.panelControl25.ResumeLayout(false); | |
4058 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_ACCT_NM.Properties)).EndInit(); | |
4059 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl23)).EndInit(); | |
4060 | + this.panelControl23.ResumeLayout(false); | |
4061 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_BANK_NM.Properties)).EndInit(); | |
4062 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl21)).EndInit(); | |
4063 | + this.panelControl21.ResumeLayout(false); | |
4064 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_USR_ID.Properties)).EndInit(); | |
4065 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl17)).EndInit(); | |
4066 | + this.panelControl17.ResumeLayout(false); | |
4067 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TEL_NO.Properties)).EndInit(); | |
4068 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl15)).EndInit(); | |
4069 | + this.panelControl15.ResumeLayout(false); | |
4070 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_TB_USR_NM.Properties)).EndInit(); | |
4071 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).EndInit(); | |
4072 | + this.panelControl13.ResumeLayout(false); | |
4073 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_OWNER_NM.Properties)).EndInit(); | |
4074 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).EndInit(); | |
4075 | + this.panelControl11.ResumeLayout(false); | |
4076 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_COMP_NM.Properties)).EndInit(); | |
4077 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit(); | |
4078 | + this.panelControl7.ResumeLayout(false); | |
4079 | + this.xtraTabPage_Tab3.ResumeLayout(false); | |
4080 | + ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_Send)).EndInit(); | |
4081 | + this.xtraTabControl_Send.ResumeLayout(false); | |
4082 | + this.xtraTabPage_NotSend.ResumeLayout(false); | |
4083 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_NotSendList)).EndInit(); | |
4084 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_NotSendList)).EndInit(); | |
4085 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit(); | |
4086 | + this.panelControl1.ResumeLayout(false); | |
4087 | + ((System.ComponentModel.ISupportInitialize)(this.progressBarControl_Send.Properties)).EndInit(); | |
4088 | + this.xtraTabPage_Send.ResumeLayout(false); | |
4089 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_Sended)).EndInit(); | |
4090 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_Sended)).EndInit(); | |
4091 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit(); | |
4092 | + this.panelControl3.ResumeLayout(false); | |
4093 | + ((System.ComponentModel.ISupportInitialize)(this.progressBarControl_Sended.Properties)).EndInit(); | |
4094 | + this.xtraTabPage1.ResumeLayout(false); | |
4095 | + ((System.ComponentModel.ISupportInitialize)(this.gridControl_PopBill)).EndInit(); | |
4096 | + ((System.ComponentModel.ISupportInitialize)(this.gridView_PopBill)).EndInit(); | |
4097 | + this.ResumeLayout(false); | |
4098 | + | |
4099 | + } | |
4100 | + | |
4101 | + #endregion | |
4102 | + | |
4103 | + private DevExpress.XtraEditors.PanelControl panelControl_Search; | |
4104 | + private DevExpress.XtraEditors.PanelControl panelControl_Date; | |
4105 | + private DevExpress.XtraEditors.DateEdit dateEdit_SDATE; | |
4106 | + private DevExpress.XtraEditors.LabelControl labelControl1; | |
4107 | + private DevExpress.XtraEditors.LabelControl labelControl2; | |
4108 | + private DevExpress.XtraEditors.DateEdit dateEdit_FDATE; | |
4109 | + private DevExpress.XtraEditors.PanelControl panelControl_Cust; | |
4110 | + private DevExpress.XtraEditors.ButtonEdit buttonEdit_CUST_NM; | |
4111 | + private DevExpress.XtraEditors.LabelControl labelControl_CUST_CD; | |
4112 | + private DevExpress.XtraEditors.LabelControl labelControl27; | |
4113 | + private DevExpress.XtraEditors.PanelControl panelControl8; | |
4114 | + private DevExpress.XtraEditors.PanelControl panelControl9; | |
4115 | + private DevExpress.XtraEditors.CheckEdit checkEdit_Maked; | |
4116 | + private DevExpress.XtraEditors.CheckEdit checkEdit_NotMake; | |
4117 | + private DevExpress.XtraEditors.LabelControl labelControl9; | |
4118 | + private DevExpress.XtraEditors.PanelControl panelControl5; | |
4119 | + private DevExpress.XtraEditors.LookUpEdit lookUpEdit_SIGN_GUBUN; | |
4120 | + private DevExpress.XtraEditors.LabelControl labelControl7; | |
4121 | + private DevExpress.XtraEditors.CheckEdit checkEdit_NotEmail; | |
4122 | + private DevExpress.XtraTab.XtraTabControl xtraTabControl_Tab; | |
4123 | + private DevExpress.XtraTab.XtraTabPage xtraTabPage_Tab1; | |
4124 | + private DevExpress.XtraTab.XtraTabPage xtraTabPage_Tab2; | |
4125 | + private DevExpress.XtraTab.XtraTabControl xtraTabControl_TaxBill; | |
4126 | + private DevExpress.XtraTab.XtraTabPage xtraTabPage_Batch; | |
4127 | + private DevExpress.XtraGrid.GridControl gridControl_TaxBill_NotMake; | |
4128 | + private DevExpress.XtraGrid.Views.Grid.GridView gridView_TaxBill_NotMake; | |
4129 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn15; | |
4130 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn1; | |
4131 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn_CUST_NM; | |
4132 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn_ITEM_NM; | |
4133 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn_ORDER_NORM; | |
4134 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn4; | |
4135 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn5; | |
4136 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn6; | |
4137 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn7; | |
4138 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn8; | |
4139 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn9; | |
4140 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn10; | |
4141 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn2; | |
4142 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn3; | |
4143 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn11; | |
4144 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn12; | |
4145 | + private DevExpress.XtraTab.XtraTabPage xtraTabPage_Etc; | |
4146 | + private DevExpress.XtraTab.XtraTabPage xtraTabPage_Tab3; | |
4147 | + private DevExpress.XtraEditors.PanelControl panelControl2; | |
4148 | + private DevExpress.XtraEditors.PanelControl panelControl_TAX_DT; | |
4149 | + private DevExpress.XtraEditors.DateEdit dateEdit_Date; | |
4150 | + private DevExpress.XtraEditors.LabelControl labelControl4; | |
4151 | + private DevExpress.XtraEditors.PanelControl panelControl_TAX_TYPE; | |
4152 | + private DevExpress.XtraEditors.LookUpEdit lookUpEdit_TAX_TYPE; | |
4153 | + private DevExpress.XtraEditors.LabelControl labelControl5; | |
4154 | + private DevExpress.XtraEditors.PanelControl panelControl_REQ_TYPE; | |
4155 | + private DevExpress.XtraEditors.LookUpEdit lookUpEdit_TAX_REQ_TYPE; | |
4156 | + private DevExpress.XtraEditors.LabelControl labelControl3; | |
4157 | + private DevExpress.XtraGrid.GridControl gridControl_Cust; | |
4158 | + private DevExpress.XtraGrid.Views.Grid.GridView gridView_Cust; | |
4159 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn17; | |
4160 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn18; | |
4161 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn19; | |
4162 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn20; | |
4163 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn21; | |
4164 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn22; | |
4165 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn23; | |
4166 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn24; | |
4167 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn25; | |
4168 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn26; | |
4169 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn27; | |
4170 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn28; | |
4171 | + private DevExpress.XtraEditors.PanelControl panelControl7; | |
4172 | + private DevExpress.XtraEditors.PanelControl panelControl10; | |
4173 | + private DevExpress.XtraEditors.GroupControl groupControl1; | |
4174 | + private DevExpress.XtraEditors.PanelControl panelControl12; | |
4175 | + private DevExpress.XtraEditors.TextEdit textEdit_BIZ_NO; | |
4176 | + private DevExpress.XtraEditors.LabelControl labelControl6; | |
4177 | + private DevExpress.XtraEditors.PanelControl panelControl24; | |
4178 | + private DevExpress.XtraEditors.TextEdit textEdit_TB_ACCT_NO; | |
4179 | + private DevExpress.XtraEditors.LabelControl labelControl21; | |
4180 | + private DevExpress.XtraEditors.PanelControl panelControl22; | |
4181 | + private DevExpress.XtraEditors.TextEdit textEdit_TB_USR_PWD; | |
4182 | + private DevExpress.XtraEditors.LabelControl labelControl19; | |
4183 | + private DevExpress.XtraEditors.PanelControl panelControl18; | |
4184 | + private DevExpress.XtraEditors.TextEdit textEdit_FAX_NO; | |
4185 | + private DevExpress.XtraEditors.LabelControl labelControl15; | |
4186 | + private DevExpress.XtraEditors.PanelControl panelControl16; | |
4187 | + private DevExpress.XtraEditors.TextEdit textEdit_EVNT_NM; | |
4188 | + private DevExpress.XtraEditors.LabelControl labelControl13; | |
4189 | + private DevExpress.XtraEditors.PanelControl panelControl14; | |
4190 | + private DevExpress.XtraEditors.TextEdit textEdit_COND_NM; | |
4191 | + private DevExpress.XtraEditors.LabelControl labelControl11; | |
4192 | + private DevExpress.XtraEditors.PanelControl panelControl20; | |
4193 | + private DevExpress.XtraEditors.TextEdit textEdit_ADDR1; | |
4194 | + private DevExpress.XtraEditors.LabelControl labelControl17; | |
4195 | + private DevExpress.XtraEditors.PanelControl panelControl19; | |
4196 | + private DevExpress.XtraEditors.TextEdit textEdit_EMAIL; | |
4197 | + private DevExpress.XtraEditors.LabelControl labelControl16; | |
4198 | + private DevExpress.XtraEditors.PanelControl panelControl25; | |
4199 | + private DevExpress.XtraEditors.TextEdit textEdit_TB_ACCT_NM; | |
4200 | + private DevExpress.XtraEditors.LabelControl labelControl22; | |
4201 | + private DevExpress.XtraEditors.PanelControl panelControl23; | |
4202 | + private DevExpress.XtraEditors.TextEdit textEdit_TB_BANK_NM; | |
4203 | + private DevExpress.XtraEditors.LabelControl labelControl20; | |
4204 | + private DevExpress.XtraEditors.PanelControl panelControl21; | |
4205 | + private DevExpress.XtraEditors.TextEdit textEdit_TB_USR_ID; | |
4206 | + private DevExpress.XtraEditors.LabelControl labelControl18; | |
4207 | + private DevExpress.XtraEditors.PanelControl panelControl17; | |
4208 | + private DevExpress.XtraEditors.TextEdit textEdit_TEL_NO; | |
4209 | + private DevExpress.XtraEditors.LabelControl labelControl14; | |
4210 | + private DevExpress.XtraEditors.PanelControl panelControl15; | |
4211 | + private DevExpress.XtraEditors.TextEdit textEdit_TB_USR_NM; | |
4212 | + private DevExpress.XtraEditors.LabelControl labelControl12; | |
4213 | + private DevExpress.XtraEditors.PanelControl panelControl13; | |
4214 | + private DevExpress.XtraEditors.TextEdit textEdit_OWNER_NM; | |
4215 | + private DevExpress.XtraEditors.LabelControl labelControl10; | |
4216 | + private DevExpress.XtraEditors.PanelControl panelControl11; | |
4217 | + private DevExpress.XtraEditors.TextEdit textEdit_COMP_NM; | |
4218 | + private DevExpress.XtraEditors.LabelControl labelControl8; | |
4219 | + private DevExpress.XtraEditors.SimpleButton simpleButton_CompSave; | |
4220 | + private DevExpress.XtraEditors.GroupControl groupControl_Cust; | |
4221 | + private DevExpress.XtraEditors.SimpleButton simpleButton_CustSave; | |
4222 | + private DevExpress.XtraEditors.PanelControl panelControl26; | |
4223 | + private DevExpress.XtraEditors.TextEdit textEdit_CUST_BIZ_NO; | |
4224 | + private DevExpress.XtraEditors.LabelControl labelControl23; | |
4225 | + private DevExpress.XtraEditors.PanelControl panelControl31; | |
4226 | + private DevExpress.XtraEditors.TextEdit textEdit_CUST_FAX_NO; | |
4227 | + private DevExpress.XtraEditors.LabelControl labelControl26; | |
4228 | + private DevExpress.XtraEditors.PanelControl panelControl32; | |
4229 | + private DevExpress.XtraEditors.TextEdit textEdit_CUST_EVNT_NM; | |
4230 | + private DevExpress.XtraEditors.LabelControl labelControl28; | |
4231 | + private DevExpress.XtraEditors.PanelControl panelControl33; | |
4232 | + private DevExpress.XtraEditors.TextEdit textEdit_CUST_COND_NM; | |
4233 | + private DevExpress.XtraEditors.LabelControl labelControl29; | |
4234 | + private DevExpress.XtraEditors.PanelControl panelControl34; | |
4235 | + private DevExpress.XtraEditors.TextEdit textEdit_CUST_ADDR1; | |
4236 | + private DevExpress.XtraEditors.LabelControl labelControl30; | |
4237 | + private DevExpress.XtraEditors.PanelControl panelControl35; | |
4238 | + private DevExpress.XtraEditors.TextEdit textEdit_CUST_MGR_EMAIL; | |
4239 | + private DevExpress.XtraEditors.LabelControl labelControl31; | |
4240 | + private DevExpress.XtraEditors.PanelControl panelControl39; | |
4241 | + private DevExpress.XtraEditors.TextEdit textEdit_CUST_MGR_TEL_NO; | |
4242 | + private DevExpress.XtraEditors.LabelControl labelControl35; | |
4243 | + private DevExpress.XtraEditors.PanelControl panelControl41; | |
4244 | + private DevExpress.XtraEditors.TextEdit textEdit_CUST_OWNER_NM; | |
4245 | + private DevExpress.XtraEditors.LabelControl labelControl37; | |
4246 | + private DevExpress.XtraEditors.PanelControl panelControl42; | |
4247 | + private DevExpress.XtraEditors.TextEdit textEdit_CUST_NM; | |
4248 | + private DevExpress.XtraEditors.LabelControl labelControl38; | |
4249 | + private DevExpress.XtraEditors.PanelControl panelControl40; | |
4250 | + private DevExpress.XtraEditors.TextEdit textEdit_CUST_MGR_NM; | |
4251 | + private DevExpress.XtraEditors.LabelControl labelControl36; | |
4252 | + private DevExpress.XtraGrid.GridControl gridControl_TaxBill_Maked; | |
4253 | + private DevExpress.XtraGrid.Views.Grid.GridView gridView_TaxBill_Maked; | |
4254 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn13; | |
4255 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn14; | |
4256 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn16; | |
4257 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn29; | |
4258 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn30; | |
4259 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn31; | |
4260 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn32; | |
4261 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn33; | |
4262 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn34; | |
4263 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn35; | |
4264 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn36; | |
4265 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn37; | |
4266 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn38; | |
4267 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn39; | |
4268 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn40; | |
4269 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn41; | |
4270 | + private DevExpress.XtraEditors.CheckEdit checkEdit_Card; | |
4271 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn42; | |
4272 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn44; | |
4273 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn43; | |
4274 | + private DevExpress.XtraGrid.GridControl gridControl_Etc; | |
4275 | + private DevExpress.XtraGrid.Views.Grid.GridView gridView_Etc; | |
4276 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn45; | |
4277 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn47; | |
4278 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn48; | |
4279 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn49; | |
4280 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn50; | |
4281 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn51; | |
4282 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn52; | |
4283 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn53; | |
4284 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn54; | |
4285 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn55; | |
4286 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn56; | |
4287 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn57; | |
4288 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn58; | |
4289 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn59; | |
4290 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn60; | |
4291 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn61; | |
4292 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn62; | |
4293 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn63; | |
4294 | + private DevExpress.XtraEditors.SimpleButton simpleButton_Make; | |
4295 | + private DevExpress.XtraEditors.SimpleButton simpleButton_SelectNone; | |
4296 | + private DevExpress.XtraEditors.SimpleButton simpleButton_SelectAll; | |
4297 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn46; | |
4298 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn64; | |
4299 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn77; | |
4300 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn76; | |
4301 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn75; | |
4302 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn74; | |
4303 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn73; | |
4304 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn72; | |
4305 | + private DevExpress.XtraTab.XtraTabControl xtraTabControl_Send; | |
4306 | + private DevExpress.XtraTab.XtraTabPage xtraTabPage_NotSend; | |
4307 | + private DevExpress.XtraGrid.GridControl gridControl_NotSendList; | |
4308 | + private DevExpress.XtraGrid.Views.Grid.GridView gridView_NotSendList; | |
4309 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn65; | |
4310 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn66; | |
4311 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn67; | |
4312 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn68; | |
4313 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn69; | |
4314 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn70; | |
4315 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn71; | |
4316 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn78; | |
4317 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn79; | |
4318 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn80; | |
4319 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn81; | |
4320 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn82; | |
4321 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn83; | |
4322 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn84; | |
4323 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn85; | |
4324 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn86; | |
4325 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn87; | |
4326 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn88; | |
4327 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn89; | |
4328 | + private DevExpress.XtraTab.XtraTabPage xtraTabPage_Send; | |
4329 | + private DevExpress.XtraEditors.PanelControl panelControl1; | |
4330 | + private DevExpress.XtraEditors.SimpleButton simpleButton_SendSelectNone; | |
4331 | + private DevExpress.XtraEditors.SimpleButton simpleButton_SendSelectAll; | |
4332 | + private DevExpress.XtraEditors.SimpleButton simpleButton_Send; | |
4333 | + private DevExpress.XtraGrid.GridControl gridControl_Sended; | |
4334 | + private DevExpress.XtraGrid.Views.Grid.GridView gridView_Sended; | |
4335 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn90; | |
4336 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn91; | |
4337 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn92; | |
4338 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn93; | |
4339 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn94; | |
4340 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn95; | |
4341 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn96; | |
4342 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn97; | |
4343 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn98; | |
4344 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn99; | |
4345 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn109; | |
4346 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn100; | |
4347 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn101; | |
4348 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn102; | |
4349 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn103; | |
4350 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn104; | |
4351 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn105; | |
4352 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn106; | |
4353 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn107; | |
4354 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn108; | |
4355 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn110; | |
4356 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn111; | |
4357 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn112; | |
4358 | + private DevExpress.XtraEditors.ProgressBarControl progressBarControl_Send; | |
4359 | + private DevExpress.XtraEditors.PanelControl panelControl3; | |
4360 | + private DevExpress.XtraEditors.ProgressBarControl progressBarControl_Sended; | |
4361 | + private DevExpress.XtraEditors.SimpleButton simpleButton_SendedSelectNone; | |
4362 | + private DevExpress.XtraEditors.SimpleButton simpleButton_SendedSelectAll; | |
4363 | + private DevExpress.XtraEditors.SimpleButton simpleButton_CancelSend; | |
4364 | + private DevExpress.XtraEditors.PanelControl panelControl4; | |
4365 | + private DevExpress.XtraEditors.LabelControl labelControl_Point; | |
4366 | + private DevExpress.XtraEditors.LabelControl labelControl25; | |
4367 | + private DevExpress.XtraTab.XtraTabPage xtraTabPage1; | |
4368 | + private DevExpress.XtraGrid.GridControl gridControl_PopBill; | |
4369 | + private DevExpress.XtraGrid.Views.Grid.GridView gridView_PopBill; | |
4370 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn114; | |
4371 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn115; | |
4372 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn116; | |
4373 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn117; | |
4374 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn118; | |
4375 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn119; | |
4376 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn120; | |
4377 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn124; | |
4378 | + private DevExpress.XtraGrid.Columns.GridColumn gridColumn113; | |
4379 | + private DevExpress.XtraEditors.SimpleButton simpleButton_Popbill; | |
4380 | + } | |
4381 | +}(No newline at end of file) |
+++ .svn/pristine/04/04b3087360443301e3b4ef9f78dacd09a51aec27.svn-base
Binary file is not shown |
+++ .svn/pristine/05/05228586012d831eb21ddc212dc3ede16a9f4f89.svn-base
... | ... | @@ -0,0 +1,495 @@ |
1 | +using ClientLib; | |
2 | +using ClientLib.CommonService; | |
3 | +using DevExpress.XtraGrid; | |
4 | +using DevExpress.XtraGrid.Views.Grid.ViewInfo; | |
5 | +using PublicLib; | |
6 | +using System; | |
7 | +using System.Collections.Generic; | |
8 | +using System.ComponentModel; | |
9 | +using System.Data; | |
10 | +using System.Drawing; | |
11 | +using System.Linq; | |
12 | +using System.Text; | |
13 | +using System.Windows.Forms; | |
14 | + | |
15 | +namespace HANMI_J_SALE | |
16 | +{ | |
17 | + public partial class SalesList : PublicLib.CommonMDI | |
18 | + { | |
19 | + private int m_CURR_MY, m_VAT_MY, m_ORDER_MY; | |
20 | + | |
21 | + public SalesList() | |
22 | + { | |
23 | + InitializeComponent(); | |
24 | + | |
25 | + gridControl_Main.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat; | |
26 | + gridControl_Main.LookAndFeel.UseDefaultLookAndFeel = false; | |
27 | + gridView_Main.Appearance.HeaderPanel.BackColor = Color.FromArgb(170, 204, 255); | |
28 | + | |
29 | + m_CURR_MY = 0; | |
30 | + m_VAT_MY = 0; | |
31 | + m_ORDER_MY = 0; | |
32 | + | |
33 | + dateEdit_SDATE.DateTime = dateEdit_FDATE.DateTime = DateTime.Now; | |
34 | + | |
35 | + buttonEdit_CUST_NM.ButtonClick += (sender, e) => | |
36 | + { | |
37 | + selectCustProc(); | |
38 | + }; | |
39 | + buttonEdit_CUST_NM.KeyPress += (sender, e) => | |
40 | + { | |
41 | + if (e.KeyChar == '\r') | |
42 | + { | |
43 | + selectCustProc(); | |
44 | + } | |
45 | + }; | |
46 | + | |
47 | + buttonEdit_CUST_NM.EditValueChanged += (sender, e) => | |
48 | + { | |
49 | + if (UtilClass.isNull(buttonEdit_CUST_NM.Text)) | |
50 | + { | |
51 | + labelControl_CUST_CD.Text = ""; | |
52 | + } | |
53 | + }; | |
54 | + | |
55 | + checkEdit_SpecToItemName.KeyPress += (sender, e) => | |
56 | + { | |
57 | + if (e.KeyChar == '\r') | |
58 | + { | |
59 | + searchProc(); | |
60 | + } | |
61 | + }; | |
62 | + | |
63 | + GridGroupSummaryItem item; | |
64 | + item = new GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "CURR_MY", gridView_Main.Columns["CURR_MY"], "{0:#,##0}"); | |
65 | + gridView_Main.GroupSummary.Add(item); | |
66 | + item = new GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "VAT_MY", gridView_Main.Columns["VAT_MY"], "{0:#,##0}"); | |
67 | + gridView_Main.GroupSummary.Add(item); | |
68 | + item = new GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "ORDER_MY", gridView_Main.Columns["ORDER_MY"], "{0:#,##0}"); | |
69 | + gridView_Main.GroupSummary.Add(item); | |
70 | + | |
71 | + gridView_Main.DoubleClick += (sender, e) => | |
72 | + { | |
73 | + Point aPT = gridControl_Main.PointToClient(Control.MousePosition); | |
74 | + GridHitInfo aInfo = gridView_Main.CalcHitInfo(aPT); | |
75 | + if (aInfo.InRowCell) | |
76 | + { | |
77 | + DataRow row = gridView_Main.GetFocusedDataRow(); | |
78 | + SaleRegistrationPopupV2 form = new SaleRegistrationPopupV2(); | |
79 | + form.setData(Convert.ToDateTime(row["ORDER_DT"]), UtilClass.toStr(row["ORDER_SEQ"])); | |
80 | + form.ShowDialog(); | |
81 | + if (form.m_Changed) | |
82 | + { | |
83 | + searchProc(); | |
84 | + } | |
85 | + } | |
86 | + }; | |
87 | + | |
88 | + gridView_Main.CustomDrawFooterCell += (sender, e) => | |
89 | + { | |
90 | + if (e.Column == gridView_Main.Columns["CURR_MY"]) | |
91 | + { | |
92 | + e.Info.DisplayText = m_CURR_MY.ToString("#,##0"); | |
93 | + } | |
94 | + else if (e.Column == gridView_Main.Columns["VAT_MY"]) | |
95 | + { | |
96 | + e.Info.DisplayText = m_VAT_MY.ToString("#,##0"); | |
97 | + } | |
98 | + else if (e.Column == gridView_Main.Columns["ORDER_MY"]) | |
99 | + { | |
100 | + e.Info.DisplayText = m_ORDER_MY.ToString("#,##0"); | |
101 | + } | |
102 | + }; | |
103 | + | |
104 | + gridView_Main.CustomDrawCell += (sender, e) => | |
105 | + { | |
106 | + DataRow row = gridView_Main.GetDataRow(e.RowHandle); | |
107 | + | |
108 | + if (UtilClass.isEqual(e.Column.FieldName, "ORDER_DT") || UtilClass.isEqual(e.Column.FieldName, "CUST_NM") || | |
109 | + UtilClass.isEqual(e.Column.FieldName, "CURR_MY") || UtilClass.isEqual(e.Column.FieldName, "VAT_MY") || | |
110 | + UtilClass.isEqual(e.Column.FieldName, "ORDER_MY") || UtilClass.isEqual(e.Column.FieldName, "ORDER_QTY")) | |
111 | + { | |
112 | + if (UtilClass.isEqual(row["TAG_STR"], "C")) | |
113 | + { | |
114 | + e.Appearance.BackColor = Color.WhiteSmoke; | |
115 | + e.Appearance.ForeColor = checkEdit_Color.Checked ? Color.Blue : e.Appearance.ForeColor; | |
116 | + } | |
117 | + else if (UtilClass.isEqual(row["TAG_STR"], "D")) | |
118 | + { | |
119 | + e.Appearance.BackColor = Color.LightCyan; | |
120 | + e.Appearance.ForeColor = checkEdit_Color.Checked ? Color.Blue : e.Appearance.ForeColor; | |
121 | + } | |
122 | + else if (UtilClass.isEqual(row["TAG_STR"], "T")) | |
123 | + { | |
124 | + e.Appearance.BackColor = Color.LightGreen; | |
125 | + e.Appearance.ForeColor = checkEdit_Color.Checked ? Color.Blue : e.Appearance.ForeColor; | |
126 | + } | |
127 | + else | |
128 | + { | |
129 | + e.Appearance.BackColor = Color.LightYellow; | |
130 | + } | |
131 | + } | |
132 | + else | |
133 | + { | |
134 | + if (UtilClass.isEqual(row["TAG_STR"], "C")) | |
135 | + { | |
136 | + e.Appearance.BackColor = Color.WhiteSmoke; | |
137 | + } | |
138 | + else if (UtilClass.isEqual(row["TAG_STR"], "D")) | |
139 | + { | |
140 | + e.Appearance.BackColor = Color.LightCyan; | |
141 | + } | |
142 | + else if (UtilClass.isEqual(row["TAG_STR"], "T")) | |
143 | + { | |
144 | + e.Appearance.BackColor = Color.LightGreen; | |
145 | + } | |
146 | + else | |
147 | + { | |
148 | + e.Appearance.BackColor = Color.Empty; | |
149 | + } | |
150 | + } | |
151 | + }; | |
152 | + | |
153 | + gridView_Main.Appearance.HeaderPanel.ForeColor = | |
154 | + gridView_Main.Appearance.GroupFooter.ForeColor = | |
155 | + gridView_Main.Appearance.FooterPanel.ForeColor = | |
156 | + checkEdit_Color.Checked ? Color.Blue : Color.Empty; | |
157 | + for (int i = 0; i < gridView_Main.FormatConditions.Count; i++) | |
158 | + { | |
159 | + gridView_Main.FormatConditions[i].Appearance.ForeColor = checkEdit_Color.Checked ? Color.Blue : Color.Empty; | |
160 | + } | |
161 | + checkEdit_Color.CheckedChanged += (sender, e) => | |
162 | + { | |
163 | + gridView_Main.Appearance.HeaderPanel.ForeColor = | |
164 | + gridView_Main.Appearance.GroupFooter.ForeColor = | |
165 | + gridView_Main.Appearance.FooterPanel.ForeColor = | |
166 | + checkEdit_Color.Checked ? Color.Blue : Color.Empty; | |
167 | + | |
168 | + for (int i = 0; i < gridView_Main.FormatConditions.Count; i++) | |
169 | + { | |
170 | + gridView_Main.FormatConditions[i].Appearance.ForeColor = checkEdit_Color.Checked ? Color.Blue : Color.Empty; | |
171 | + } | |
172 | + }; | |
173 | + | |
174 | + checkEdit_SpecToItemName.CheckedChanged += (sender, e) => | |
175 | + { | |
176 | + if (checkEdit_SpecToItemName.Checked) | |
177 | + { | |
178 | + gridColumn_ITEM_NM.FieldName = "ORDER_NORM"; | |
179 | + gridColumn_ORDER_NORM.Visible = false; | |
180 | + } | |
181 | + else | |
182 | + { | |
183 | + gridColumn_ITEM_NM.FieldName = "ITEM_NM"; | |
184 | + gridColumn_ORDER_NORM.Visible = true; | |
185 | + } | |
186 | + }; | |
187 | + | |
188 | + this.Shown += (sender, e) => | |
189 | + { | |
190 | + try | |
191 | + { | |
192 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] { | |
193 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD) | |
194 | + }; | |
195 | + ResultData resultData = ClientClass.GetData("GetSalesListForLookup", aParam); | |
196 | + if (resultData.isError) | |
197 | + { | |
198 | + throw new Exception(resultData.ResultValue); | |
199 | + } | |
200 | + | |
201 | + DataRow row; | |
202 | + | |
203 | + row = resultData.DataList.Tables[0].NewRow(); | |
204 | + row["USR_ID"] = ""; | |
205 | + row["EMP_NO"] = ""; | |
206 | + row["USR_NM"] = "전체담당자"; | |
207 | + resultData.DataList.Tables[0].Rows.InsertAt(row, 0); | |
208 | + UtilClass.SetLookup(lookUpEdit_SALES_USER, resultData.DataList.Tables[0], "EMP_NO", "USR_NM", true); | |
209 | + | |
210 | + row = resultData.DataList.Tables[1].NewRow(); | |
211 | + row["MST_DEPT_CD"] = ""; | |
212 | + row["DEPT_CD"] = ""; | |
213 | + row["DEPT_NM"] = "전체부서"; | |
214 | + resultData.DataList.Tables[1].Rows.InsertAt(row, 0); | |
215 | + UtilClass.SetLookup(lookUpEdit_DEPT, resultData.DataList.Tables[1], "MST_DEPT_CD", "DEPT_NM", true); | |
216 | + | |
217 | + DataView c11 = new DataView(ConstClass._DATA); | |
218 | + c11.RowFilter = "CATE_CD = 'C' and GRP_CD = 'C11'"; | |
219 | + DataTable c11Data = c11.ToTable(); | |
220 | + row = c11Data.NewRow(); | |
221 | + row["NO_CD"] = ""; | |
222 | + row["NO_CD_NM"] = "전체창고"; | |
223 | + c11Data.Rows.InsertAt(row, 0); | |
224 | + UtilClass.SetLookup(lookUpEdit_STOCK, c11Data, "NO_CD", "NO_CD_NM", true); | |
225 | + | |
226 | + DataView c12 = new DataView(ConstClass._DATA); | |
227 | + c12.RowFilter = "CATE_CD = 'C' and GRP_CD = 'C12'"; | |
228 | + DataTable c12Data = c12.ToTable(); | |
229 | + row = c12Data.NewRow(); | |
230 | + row["NO_CD"] = ""; | |
231 | + row["NO_CD_NM"] = "전체"; | |
232 | + c12Data.Rows.InsertAt(row, 0); | |
233 | + UtilClass.SetLookup(lookUpEdit_SIGN_GUBUN, c12Data, "NO_CD", "NO_CD_NM", true); | |
234 | + } | |
235 | + catch (Exception ex) | |
236 | + { | |
237 | + MessageBox.Show(ex.Message); | |
238 | + this.Close(); | |
239 | + } | |
240 | + }; | |
241 | + } | |
242 | + | |
243 | + private void selectCustProc() | |
244 | + { | |
245 | + SelectCustomerForm form = new SelectCustomerForm(buttonEdit_CUST_NM.Text, DateTime.Now); | |
246 | + if (form.ShowDialog() != DialogResult.Yes) | |
247 | + { | |
248 | + return; | |
249 | + } | |
250 | + buttonEdit_CUST_NM.Text = form.m_CUST_NM; | |
251 | + labelControl_CUST_CD.Text = form.m_CUST_CD; | |
252 | + lookUpEdit_SALES_USER.Focus(); | |
253 | + } | |
254 | + | |
255 | + private void selectItemProc() | |
256 | + { | |
257 | + SelectSalesItemForm form = new SelectSalesItemForm(buttonEdit_ITEM_NM.Text); | |
258 | + if (form.ShowDialog() != System.Windows.Forms.DialogResult.Yes) | |
259 | + { | |
260 | + return; | |
261 | + } | |
262 | + labelControl_ITEM_CD.Text = form.m_ITEM_CD; | |
263 | + buttonEdit_ITEM_NM.Text = form.m_ITEM_NM; | |
264 | + buttonEdit_SPEC.Focus(); | |
265 | + } | |
266 | + | |
267 | + public override void searchProc() | |
268 | + { | |
269 | + try | |
270 | + { | |
271 | + | |
272 | + this.Cursor = Cursors.WaitCursor; | |
273 | + | |
274 | + gridControl_Main.DataSource = null; | |
275 | + | |
276 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] { | |
277 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD), | |
278 | + ClientClass.CreateSqlParameter("SDATE", SqlDbType.NVarChar, dateEdit_SDATE.DateTime.ToString("yyyy.MM.dd")), | |
279 | + ClientClass.CreateSqlParameter("FDATE", SqlDbType.NVarChar, dateEdit_FDATE.DateTime.ToString("yyyy.MM.dd")), | |
280 | + ClientClass.CreateSqlParameter("CUST_CD", SqlDbType.NVarChar, labelControl_CUST_CD.Text), | |
281 | + ClientClass.CreateSqlParameter("SALE_USR_ID", SqlDbType.NVarChar, lookUpEdit_SALES_USER.EditValue), | |
282 | + ClientClass.CreateSqlParameter("DEPT_CD", SqlDbType.NVarChar, lookUpEdit_DEPT.EditValue), | |
283 | + ClientClass.CreateSqlParameter("PROC_CD", SqlDbType.NVarChar, (comboBoxEdit_PROC.SelectedIndex + 1).ToString()), | |
284 | + ClientClass.CreateSqlParameter("STOCK_CD", SqlDbType.NVarChar, lookUpEdit_STOCK.EditValue), | |
285 | + ClientClass.CreateSqlParameter("SIGN_GUBUN_CD", SqlDbType.NVarChar, lookUpEdit_SIGN_GUBUN.EditValue), | |
286 | + ClientClass.CreateSqlParameter("ITEM_CD", SqlDbType.NVarChar, labelControl_ITEM_CD.Text), | |
287 | + ClientClass.CreateSqlParameter("ORDER_NORM", SqlDbType.NVarChar, buttonEdit_SPEC.Text), | |
288 | + ClientClass.CreateSqlParameter("SORT", SqlDbType.Int, checkEdit_CustSort.Checked ? 0 : 1) | |
289 | + }; | |
290 | + ResultData resultData = ClientClass.GetData("GetSaleList", aParam); | |
291 | + if (resultData.isError) | |
292 | + { | |
293 | + throw new Exception(resultData.ResultValue); | |
294 | + } | |
295 | + | |
296 | + if (checkEdit_SpecToItemName.Checked) | |
297 | + { | |
298 | + gridColumn_ITEM_NM.FieldName = "ORDER_NORM"; | |
299 | + } | |
300 | + else | |
301 | + { | |
302 | + gridColumn_ITEM_NM.FieldName = "ITEM_NM"; | |
303 | + } | |
304 | + | |
305 | + DataTable data = resultData.TableData.Clone(); | |
306 | + DataTable aData = resultData.TableData; | |
307 | + | |
308 | + m_CURR_MY = 0; m_VAT_MY = 0; m_ORDER_MY = 0; | |
309 | + | |
310 | + int curr_my_day = 0, vat_my_day = 0, order_my_day = 0; | |
311 | + int curr_my_cust = 0, vat_my_cust = 0, order_my_cust = 0, cnt_cust = 0; | |
312 | + string order_dt = "", cust_cd = ""; | |
313 | + DataRow row; | |
314 | + for (int i = 0; i < aData.Rows.Count; i++) | |
315 | + { | |
316 | + row = data.NewRow(); | |
317 | + row.ItemArray = aData.Rows[i].ItemArray; | |
318 | + data.Rows.Add(row); | |
319 | + | |
320 | + if (checkEdit_CustSort.Checked) | |
321 | + { | |
322 | + if (checkEdit_CustSum.Checked) | |
323 | + { | |
324 | + if (!UtilClass.isNull(cust_cd) && !UtilClass.isEqual(cust_cd, aData.Rows[i]["CUST_CD"])) | |
325 | + { | |
326 | + if (cnt_cust > 1) | |
327 | + { | |
328 | + row = data.NewRow(); | |
329 | + row["ORDER_DT"] = " "; | |
330 | + row["CUST_NM"] = "▷거래선계"; | |
331 | + row["CURR_MY"] = curr_my_cust; | |
332 | + row["VAT_MY"] = vat_my_cust; | |
333 | + row["ORDER_MY"] = order_my_cust; | |
334 | + row["TAG_STR"] = "C"; | |
335 | + data.Rows.InsertAt(row, data.Rows.Count - 1); | |
336 | + } | |
337 | + | |
338 | + curr_my_cust = 0; | |
339 | + vat_my_cust = 0; | |
340 | + order_my_cust = 0; | |
341 | + cnt_cust = 0; | |
342 | + } | |
343 | + } | |
344 | + if (checkEdit_DaySum.Checked) | |
345 | + { | |
346 | + if (!UtilClass.isNull(order_dt) && !UtilClass.isEqual(order_dt, aData.Rows[i]["ORDER_DT"])) | |
347 | + { | |
348 | + row = data.NewRow(); | |
349 | + row["ORDER_DT"] = " "; | |
350 | + row["CUST_NM"] = "▷일 자 계"; | |
351 | + row["CURR_MY"] = curr_my_day; | |
352 | + row["VAT_MY"] = vat_my_day; | |
353 | + row["ORDER_MY"] = order_my_day; | |
354 | + row["TAG_STR"] = "D"; | |
355 | + data.Rows.InsertAt(row, data.Rows.Count - 1); | |
356 | + | |
357 | + curr_my_day = 0; | |
358 | + vat_my_day = 0; | |
359 | + order_my_day = 0; | |
360 | + //cnt_cust = 0; | |
361 | + } | |
362 | + } | |
363 | + } | |
364 | + else | |
365 | + { | |
366 | + if (checkEdit_DaySum.Checked) | |
367 | + { | |
368 | + if (!UtilClass.isNull(order_dt) && !UtilClass.isEqual(order_dt, aData.Rows[i]["ORDER_DT"])) | |
369 | + { | |
370 | + row = data.NewRow(); | |
371 | + row["ORDER_DT"] = " "; | |
372 | + row["CUST_NM"] = "▷일 자 계"; | |
373 | + row["CURR_MY"] = curr_my_day; | |
374 | + row["VAT_MY"] = vat_my_day; | |
375 | + row["ORDER_MY"] = order_my_day; | |
376 | + row["TAG_STR"] = "D"; | |
377 | + data.Rows.InsertAt(row, data.Rows.Count - 1); | |
378 | + | |
379 | + curr_my_day = 0; | |
380 | + vat_my_day = 0; | |
381 | + order_my_day = 0; | |
382 | + //cnt_cust = 0; | |
383 | + } | |
384 | + } | |
385 | + if (checkEdit_CustSum.Checked) | |
386 | + { | |
387 | + if (!UtilClass.isNull(cust_cd) && !UtilClass.isEqual(cust_cd, aData.Rows[i]["CUST_CD"])) | |
388 | + { | |
389 | + if (cnt_cust > 1) | |
390 | + { | |
391 | + row = data.NewRow(); | |
392 | + row["ORDER_DT"] = " "; | |
393 | + row["CUST_NM"] = "▷거래선계"; | |
394 | + row["CURR_MY"] = curr_my_cust; | |
395 | + row["VAT_MY"] = vat_my_cust; | |
396 | + row["ORDER_MY"] = order_my_cust; | |
397 | + row["TAG_STR"] = "C"; | |
398 | + data.Rows.InsertAt(row, data.Rows.Count - 1); | |
399 | + } | |
400 | + | |
401 | + curr_my_cust = 0; | |
402 | + vat_my_cust = 0; | |
403 | + order_my_cust = 0; | |
404 | + cnt_cust = 0; | |
405 | + } | |
406 | + } | |
407 | + } | |
408 | + | |
409 | + order_dt = UtilClass.toStr(aData.Rows[i]["ORDER_DT"]); | |
410 | + cust_cd = UtilClass.toStr(aData.Rows[i]["CUST_CD"]); | |
411 | + | |
412 | + curr_my_day += UtilClass.toInt(aData.Rows[i]["CURR_MY"]); | |
413 | + vat_my_day += UtilClass.toInt(aData.Rows[i]["VAT_MY"]); | |
414 | + order_my_day += UtilClass.toInt(aData.Rows[i]["ORDER_MY"]); | |
415 | + | |
416 | + curr_my_cust += UtilClass.toInt(aData.Rows[i]["CURR_MY"]); | |
417 | + vat_my_cust += UtilClass.toInt(aData.Rows[i]["VAT_MY"]); | |
418 | + order_my_cust += UtilClass.toInt(aData.Rows[i]["ORDER_MY"]); | |
419 | + | |
420 | + m_CURR_MY += UtilClass.toInt(aData.Rows[i]["CURR_MY"]); | |
421 | + m_VAT_MY += UtilClass.toInt(aData.Rows[i]["VAT_MY"]); | |
422 | + m_ORDER_MY += UtilClass.toInt(aData.Rows[i]["ORDER_MY"]); | |
423 | + | |
424 | + cnt_cust++; | |
425 | + } | |
426 | + | |
427 | + if (checkEdit_CustSum.Checked && cnt_cust > 1) | |
428 | + { | |
429 | + DataRow cRow = data.NewRow(); | |
430 | + cRow["ORDER_DT"] = " "; | |
431 | + cRow["CUST_NM"] = "▷거래선계"; | |
432 | + cRow["CURR_MY"] = curr_my_cust; | |
433 | + cRow["VAT_MY"] = vat_my_cust; | |
434 | + cRow["ORDER_MY"] = order_my_cust; | |
435 | + cRow["TAG_STR"] = "C"; | |
436 | + data.Rows.Add(cRow); | |
437 | + } | |
438 | + | |
439 | + if (checkEdit_DaySum.Checked) | |
440 | + { | |
441 | + DataRow dRow = data.NewRow(); | |
442 | + dRow["ORDER_DT"] = " "; | |
443 | + dRow["CUST_NM"] = "▷일 자 계"; | |
444 | + dRow["CURR_MY"] = curr_my_day; | |
445 | + dRow["VAT_MY"] = vat_my_day; | |
446 | + dRow["ORDER_MY"] = order_my_day; | |
447 | + dRow["TAG_STR"] = "D"; | |
448 | + data.Rows.Add(dRow); | |
449 | + } | |
450 | + | |
451 | + DataRow sRow = data.NewRow(); | |
452 | + sRow["ORDER_DT"] = "★"; | |
453 | + sRow["CUST_NM"] = "▷합 계"; | |
454 | + sRow["CURR_MY"] = m_CURR_MY; | |
455 | + sRow["VAT_MY"] = m_VAT_MY; | |
456 | + sRow["ORDER_MY"] = m_ORDER_MY; | |
457 | + sRow["TAG_STR"] = "T"; | |
458 | + data.Rows.Add(sRow); | |
459 | + | |
460 | + data.AcceptChanges(); | |
461 | + | |
462 | + gridControl_Main.DataSource = data; | |
463 | + this.Cursor = Cursors.Arrow; | |
464 | + } | |
465 | + catch (Exception ex) | |
466 | + { | |
467 | + this.Cursor = Cursors.Arrow; | |
468 | + MessageBox.Show(ex.Message); | |
469 | + } | |
470 | + } | |
471 | + | |
472 | + | |
473 | + public override void newProc() | |
474 | + { | |
475 | + try | |
476 | + { | |
477 | + SaleRegistrationPopupV2 form = new SaleRegistrationPopupV2(); | |
478 | + form.ShowDialog(); | |
479 | + if (form.m_Changed) | |
480 | + { | |
481 | + searchProc(); | |
482 | + } | |
483 | + } | |
484 | + catch (Exception ex) | |
485 | + { | |
486 | + MessageBox.Show(ex.Message); | |
487 | + } | |
488 | + } | |
489 | + | |
490 | + public override void excelProc() | |
491 | + { | |
492 | + this.ExportExcelGrid(gridControl_Main); | |
493 | + } | |
494 | + } | |
495 | +}(No newline at end of file) |
+++ .svn/pristine/05/054af3c4c3d31ffe70bb82af259c598c03183515.svn-base
Binary file is not shown |
+++ .svn/pristine/05/05bc046ec25e830518d62d7fec6efb6a6124b8bb.svn-base
... | ... | @@ -0,0 +1,413 @@ |
1 | +<?xml version="1.0" encoding="utf-8"?> | |
2 | +<root> | |
3 | + <!-- | |
4 | + Microsoft ResX Schema | |
5 | + | |
6 | + Version 2.0 | |
7 | + | |
8 | + The primary goals of this format is to allow a simple XML format | |
9 | + that is mostly human readable. The generation and parsing of the | |
10 | + various data types are done through the TypeConverter classes | |
11 | + associated with the data types. | |
12 | + | |
13 | + Example: | |
14 | + | |
15 | + ... ado.net/XML headers & schema ... | |
16 | + <resheader name="resmimetype">text/microsoft-resx</resheader> | |
17 | + <resheader name="version">2.0</resheader> | |
18 | + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> | |
19 | + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> | |
20 | + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> | |
21 | + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> | |
22 | + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> | |
23 | + <value>[base64 mime encoded serialized .NET Framework object]</value> | |
24 | + </data> | |
25 | + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
26 | + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> | |
27 | + <comment>This is a comment</comment> | |
28 | + </data> | |
29 | + | |
30 | + There are any number of "resheader" rows that contain simple | |
31 | + name/value pairs. | |
32 | + | |
33 | + Each data row contains a name, and value. The row also contains a | |
34 | + type or mimetype. Type corresponds to a .NET class that support | |
35 | + text/value conversion through the TypeConverter architecture. | |
36 | + Classes that don't support this are serialized and stored with the | |
37 | + mimetype set. | |
38 | + | |
39 | + The mimetype is used for serialized objects, and tells the | |
40 | + ResXResourceReader how to depersist the object. This is currently not | |
41 | + extensible. For a given mimetype the value must be set accordingly: | |
42 | + | |
43 | + Note - application/x-microsoft.net.object.binary.base64 is the format | |
44 | + that the ResXResourceWriter will generate, however the reader can | |
45 | + read any of the formats listed below. | |
46 | + | |
47 | + mimetype: application/x-microsoft.net.object.binary.base64 | |
48 | + value : The object must be serialized with | |
49 | + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter | |
50 | + : and then encoded with base64 encoding. | |
51 | + | |
52 | + mimetype: application/x-microsoft.net.object.soap.base64 | |
53 | + value : The object must be serialized with | |
54 | + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter | |
55 | + : and then encoded with base64 encoding. | |
56 | + | |
57 | + mimetype: application/x-microsoft.net.object.bytearray.base64 | |
58 | + value : The object must be serialized into a byte array | |
59 | + : using a System.ComponentModel.TypeConverter | |
60 | + : and then encoded with base64 encoding. | |
61 | + --> | |
62 | + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | |
63 | + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> | |
64 | + <xsd:element name="root" msdata:IsDataSet="true"> | |
65 | + <xsd:complexType> | |
66 | + <xsd:choice maxOccurs="unbounded"> | |
67 | + <xsd:element name="metadata"> | |
68 | + <xsd:complexType> | |
69 | + <xsd:sequence> | |
70 | + <xsd:element name="value" type="xsd:string" minOccurs="0" /> | |
71 | + </xsd:sequence> | |
72 | + <xsd:attribute name="name" use="required" type="xsd:string" /> | |
73 | + <xsd:attribute name="type" type="xsd:string" /> | |
74 | + <xsd:attribute name="mimetype" type="xsd:string" /> | |
75 | + <xsd:attribute ref="xml:space" /> | |
76 | + </xsd:complexType> | |
77 | + </xsd:element> | |
78 | + <xsd:element name="assembly"> | |
79 | + <xsd:complexType> | |
80 | + <xsd:attribute name="alias" type="xsd:string" /> | |
81 | + <xsd:attribute name="name" type="xsd:string" /> | |
82 | + </xsd:complexType> | |
83 | + </xsd:element> | |
84 | + <xsd:element name="data"> | |
85 | + <xsd:complexType> | |
86 | + <xsd:sequence> | |
87 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
88 | + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> | |
89 | + </xsd:sequence> | |
90 | + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> | |
91 | + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> | |
92 | + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> | |
93 | + <xsd:attribute ref="xml:space" /> | |
94 | + </xsd:complexType> | |
95 | + </xsd:element> | |
96 | + <xsd:element name="resheader"> | |
97 | + <xsd:complexType> | |
98 | + <xsd:sequence> | |
99 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
100 | + </xsd:sequence> | |
101 | + <xsd:attribute name="name" type="xsd:string" use="required" /> | |
102 | + </xsd:complexType> | |
103 | + </xsd:element> | |
104 | + </xsd:choice> | |
105 | + </xsd:complexType> | |
106 | + </xsd:element> | |
107 | + </xsd:schema> | |
108 | + <resheader name="resmimetype"> | |
109 | + <value>text/microsoft-resx</value> | |
110 | + </resheader> | |
111 | + <resheader name="version"> | |
112 | + <value>2.0</value> | |
113 | + </resheader> | |
114 | + <resheader name="reader"> | |
115 | + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
116 | + </resheader> | |
117 | + <resheader name="writer"> | |
118 | + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
119 | + </resheader> | |
120 | + <metadata name="m_Repository.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | |
121 | + <value>17, 17</value> | |
122 | + </metadata> | |
123 | + <metadata name="m_GridPopupMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | |
124 | + <value>279, 17</value> | |
125 | + </metadata> | |
126 | + <metadata name="persistentRepository_Common.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | |
127 | + <value>False</value> | |
128 | + </metadata> | |
129 | + <metadata name="persistentRepository_Common.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | |
130 | + <value>439, 17</value> | |
131 | + </metadata> | |
132 | + <metadata name="imageCollection1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | |
133 | + <value>661, 17</value> | |
134 | + </metadata> | |
135 | + <assembly alias="DevExpress.Utils.v14.1" name="DevExpress.Utils.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" /> | |
136 | + <data name="imageCollection1.ImageStream" type="DevExpress.Utils.ImageCollectionStreamer, DevExpress.Utils.v14.1" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
137 | + <value> | |
138 | + AAEAAAD/////AQAAAAAAAAAMAgAAAFtEZXZFeHByZXNzLlV0aWxzLnYxNC4xLCBWZXJzaW9uPTE0LjEu | |
139 | + MTAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iODhkMTc1NGQ3MDBlNDlhDAMAAABR | |
140 | + U3lzdGVtLkRyYXdpbmcsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlU | |
141 | + b2tlbj1iMDNmNWY3ZjExZDUwYTNhBQEAAAAoRGV2RXhwcmVzcy5VdGlscy5JbWFnZUNvbGxlY3Rpb25T | |
142 | + dHJlYW1lcgIAAAAJSW1hZ2VTaXplBERhdGEEBxNTeXN0ZW0uRHJhd2luZy5TaXplAwAAAAICAAAABfz/ | |
143 | + //8TU3lzdGVtLkRyYXdpbmcuU2l6ZQIAAAAFd2lkdGgGaGVpZ2h0AAAICAMAAAAQAAAAEAAAAAkFAAAA | |
144 | + DwUAAABwAgAAAjUBAACJUE5HDQoaCgAAAA1JSERSAAAAEAAAABAIBgAAAB/z/2EAAAAEZ0FNQQAAsY8L | |
145 | + /GEFAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAA10lEQVQ4T6WRIQ9BYRSG7wQTTDITbrKbpDtBxq8Q/AGC | |
146 | + KKh+gIkmCbIgmyRKonQnCoJoxnO29zIb9n3zbM92z3vOu2tu8A/NbhLq0R/KNYw1+kGxhGONflDM4hoj | |
147 | + Re5QMmc4UeQHxR6esajIHUotvOJAkTuUKnjCBHOK3aCQxz3esaPYDQoZXKq8s1mrF4QxRphV9IRshFY2 | |
148 | + G4rfYRHiBm94xC0u0D6XZVZe6fwzHNhPHaL9y+kbUy2r6vQ3HNbxoGLqVGs3KBRwrvIFy1r5QbGNfY1f | |
149 | + CIIHrSqQxW3UasUAAAAASUVORK5CYIIzAQAAiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9h | |
150 | + AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOxAAADsQBlSsOGwAAANVJREFUOE+lkS8PQVEchu+EO8Ek | |
151 | + M0GymyQTZPMpBJ9AEAXVBzDRJEEWZJNESVSYKAjinfH8eP3bmHPm2Z7Nec95trsJ/mFTDfP66Q9xGUs6 | |
152 | + +kGYxZ6OfhCGOMNIkztE5hD7mvwgbOIBM5rcIaphjO3b4gFRAfe4xaRmNwhSuMIzNjS7QZDAieKlnXX1 | |
153 | + hLGEEYaaHrB10WKzqvkdLvI4xxPucIFjtL/LNounev4ZHtindjBW8KptxevDX/CwgmuFdwe6doMgjSPF | |
154 | + R8zpyg/COrZ0/EIQXAA+CHWMyE85RwAAAABJRU5ErkJgggs= | |
155 | +</value> | |
156 | + </data> | |
157 | + <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> | |
158 | + <data name="simpleButton_ITEM_Search.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
159 | + <value> | |
160 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAt0RVh0VGl0 | |
161 | + bGUAWm9vbTvPCf68AAADeklEQVQ4T3WTX0yTVxjGD2iGJgreLNmNGnfhonHuhg0yFYOCZGzRgk7T4CBE | |
162 | + lAWYJtTYiKWIBfotaAWGgiJqsQUGpaOFydwI6R/4aIuFroAbDmRxCHRYKwwQiuTZ+xVNdrM3+eV87znn | |
163 | + eb73/GMAAlCsunzdEH67nm9S6xzj6qaHuNvo8FRprcb8Ym0Ujb9DBL2dL/+2SdCwQBIbfyzkhsaSr7vv | |
164 | + 9v8+8jdm5xapG4H2t2EPNHrH6wKVviQ8MnYDSYIFzdl87YoBxarKe+aCny1D8C8t4yf+KeQVPTiRb0Iu | |
165 | + ta2df2Ju3o+6ZjukCk0dzV9LBGVIqwNidqWi9ZOGFpf/1cISuDt9yFZ1g3d68GO3F+fvjOAkZ0NBdS+m | |
166 | + fHNQftcC8YlLiSRbnXr6+opBhdraPDA0gTb6c3aJDTM+P8YmFtE/Mg+jbRrcD1PIUtnR8Msw2kz9SMks | |
167 | + bSfZWvEp1YrBNbVlXFjr2XIeVuckxiYX4X4yD8vAPzD2vISqbQplbc+QXdqFodEpJKWXvCDZ+oRkjhlP | |
168 | + RjBWcsuE18vLSFF24EGfF+7ROZgfzaC1bxoa3osq83PU2nxILzZhdHwaR1KLhSML+0KsYPez9jLGlT/w | |
169 | + zMwuQFLZDWnjEzQ6fTC4XkJt9+Im/xzf9/mgsXsgrbKh99E4SDgtGMQdyWOtGXsYu6DU6+y9o6g304ZV | |
170 | + 2qHomARn9aDC4UVdvw/NQzNQGgZR2/EHanRd2C+SmslgXUyCjBnSdzOWdqYsXsbpqTwfZLVOZNY4cdny | |
171 | + F2oGvbjtnMAlQz84vQuOwQkcTuEQvic5jQxC9otymD5tF31S8lVmeS1X1gLXYw/UpsfIqe/BqapOyBse | |
172 | + QmsZBu9+hoxzNyHNkID7fHshaUKJ4MbUTwMGQe9/ELHhoFhRmpx1bVmt48H/Ogb3iBddrqe4oTVBdLwQ | |
173 | + 8szTWBioRI8qCYVx2wpIt14wefsOgok1kTHpB6i09tjEvIWYxDxab64/Kl5i/ijymFi2d4vSUnQUcHHo | |
174 | + LkqAPHorR5qw/z6mIGI1IVxVwT3sDeuIECJUErGxqF0WD3RKYJUdgCJuRyHbJ7rIokV5LPpQLiFj0Qcv | |
175 | + vCGH8hy279D5ABRClaFf73yPM36zG4uGJFR/GT4rDPxvaJM+ZsqozUyxaxO7GLlJ6AqYJG99V3E1dvsS | |
176 | + 99mH2n8BS6wgHnYivPsAAAAASUVORK5CYII= | |
177 | +</value> | |
178 | + </data> | |
179 | + <data name="simpleButton_New.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
180 | + <value> | |
181 | + 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 | |
221 | +</value> | |
222 | + </data> | |
223 | + <data name="simpleButton_Search.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
224 | + <value> | |
225 | + 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 | |
262 | + 2QGDfwPeXb++Nf0EWQAAAABJRU5ErkJggg== | |
263 | +</value> | |
264 | + </data> | |
265 | + <data name="simpleButton_Print.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
266 | + <value> | |
267 | + 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 | |
304 | + YII= | |
305 | +</value> | |
306 | + </data> | |
307 | + <data name="simpleButton_Excel_Save.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
308 | + <value> | |
309 | + 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 | |
347 | +</value> | |
348 | + </data> | |
349 | + <data name="simpleButton_Close.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
350 | + <value> | |
351 | + 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 | |
387 | +</value> | |
388 | + </data> | |
389 | + <data name="simpleButton_Cust_Search.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
390 | + <value> | |
391 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAt0RVh0VGl0 | |
392 | + bGUAWm9vbTvPCf68AAADeklEQVQ4T3WTX0yTVxjGD2iGJgreLNmNGnfhonHuhg0yFYOCZGzRgk7T4CBE | |
393 | + lAWYJtTYiKWIBfotaAWGgiJqsQUGpaOFydwI6R/4aIuFroAbDmRxCHRYKwwQiuTZ+xVNdrM3+eV87znn | |
394 | + eb73/GMAAlCsunzdEH67nm9S6xzj6qaHuNvo8FRprcb8Ym0Ujb9DBL2dL/+2SdCwQBIbfyzkhsaSr7vv | |
395 | + 9v8+8jdm5xapG4H2t2EPNHrH6wKVviQ8MnYDSYIFzdl87YoBxarKe+aCny1D8C8t4yf+KeQVPTiRb0Iu | |
396 | + ta2df2Ju3o+6ZjukCk0dzV9LBGVIqwNidqWi9ZOGFpf/1cISuDt9yFZ1g3d68GO3F+fvjOAkZ0NBdS+m | |
397 | + fHNQftcC8YlLiSRbnXr6+opBhdraPDA0gTb6c3aJDTM+P8YmFtE/Mg+jbRrcD1PIUtnR8Msw2kz9SMks | |
398 | + bSfZWvEp1YrBNbVlXFjr2XIeVuckxiYX4X4yD8vAPzD2vISqbQplbc+QXdqFodEpJKWXvCDZ+oRkjhlP | |
399 | + RjBWcsuE18vLSFF24EGfF+7ROZgfzaC1bxoa3osq83PU2nxILzZhdHwaR1KLhSML+0KsYPez9jLGlT/w | |
400 | + zMwuQFLZDWnjEzQ6fTC4XkJt9+Im/xzf9/mgsXsgrbKh99E4SDgtGMQdyWOtGXsYu6DU6+y9o6g304ZV | |
401 | + 2qHomARn9aDC4UVdvw/NQzNQGgZR2/EHanRd2C+SmslgXUyCjBnSdzOWdqYsXsbpqTwfZLVOZNY4cdny | |
402 | + F2oGvbjtnMAlQz84vQuOwQkcTuEQvic5jQxC9otymD5tF31S8lVmeS1X1gLXYw/UpsfIqe/BqapOyBse | |
403 | + QmsZBu9+hoxzNyHNkID7fHshaUKJ4MbUTwMGQe9/ELHhoFhRmpx1bVmt48H/Ogb3iBddrqe4oTVBdLwQ | |
404 | + 8szTWBioRI8qCYVx2wpIt14wefsOgok1kTHpB6i09tjEvIWYxDxab64/Kl5i/ijymFi2d4vSUnQUcHHo | |
405 | + LkqAPHorR5qw/z6mIGI1IVxVwT3sDeuIECJUErGxqF0WD3RKYJUdgCJuRyHbJ7rIokV5LPpQLiFj0Qcv | |
406 | + vCGH8hy279D5ABRClaFf73yPM36zG4uGJFR/GT4rDPxvaJM+ZsqozUyxaxO7GLlJ6AqYJG99V3E1dvsS | |
407 | + 99mH2n8BS6wgHnYivPsAAAAASUVORK5CYII= | |
408 | +</value> | |
409 | + </data> | |
410 | + <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | |
411 | + <value>66</value> | |
412 | + </metadata> | |
413 | +</root>(No newline at end of file) |
+++ .svn/pristine/06/0638b27d5342e7aa86567c2259a8eeca9d3f406f.svn-base
... | ... | @@ -0,0 +1,827 @@ |
1 | +namespace HANMI_J_SALE | |
2 | +{ | |
3 | + partial class CollectPopup | |
4 | + { | |
5 | + /// <summary> | |
6 | + /// Required designer variable. | |
7 | + /// </summary> | |
8 | + private System.ComponentModel.IContainer components = null; | |
9 | + | |
10 | + /// <summary> | |
11 | + /// Clean up any resources being used. | |
12 | + /// </summary> | |
13 | + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
14 | + protected override void Dispose(bool disposing) | |
15 | + { | |
16 | + if (disposing && (components != null)) | |
17 | + { | |
18 | + components.Dispose(); | |
19 | + } | |
20 | + base.Dispose(disposing); | |
21 | + } | |
22 | + | |
23 | + #region Windows Form Designer generated code | |
24 | + | |
25 | + /// <summary> | |
26 | + /// Required method for Designer support - do not modify | |
27 | + /// the contents of this method with the code editor. | |
28 | + /// </summary> | |
29 | + private void InitializeComponent() | |
30 | + { | |
31 | + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CollectPopup)); | |
32 | + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject(); | |
33 | + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject(); | |
34 | + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject(); | |
35 | + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject(); | |
36 | + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject(); | |
37 | + DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject(); | |
38 | + this.panelControl2 = new DevExpress.XtraEditors.PanelControl(); | |
39 | + this.simpleButton_CANCEL = new DevExpress.XtraEditors.SimpleButton(); | |
40 | + this.simpleButton_INPUT = new DevExpress.XtraEditors.SimpleButton(); | |
41 | + this.simpleButton_UPDATE = new DevExpress.XtraEditors.SimpleButton(); | |
42 | + this.simpleButton_DELETE = new DevExpress.XtraEditors.SimpleButton(); | |
43 | + this.simpleButton_CLOSE = new DevExpress.XtraEditors.SimpleButton(); | |
44 | + this.panelControl3 = new DevExpress.XtraEditors.PanelControl(); | |
45 | + this.panelControl5 = new DevExpress.XtraEditors.PanelControl(); | |
46 | + this.buttonEdit_COL_CD = new DevExpress.XtraEditors.ButtonEdit(); | |
47 | + this.labelControl2 = new DevExpress.XtraEditors.LabelControl(); | |
48 | + this.panelControl4 = new DevExpress.XtraEditors.PanelControl(); | |
49 | + this.dateEdit_COL_DT = new DevExpress.XtraEditors.DateEdit(); | |
50 | + this.labelControl1 = new DevExpress.XtraEditors.LabelControl(); | |
51 | + this.panelControl6 = new DevExpress.XtraEditors.PanelControl(); | |
52 | + this.panelControl8 = new DevExpress.XtraEditors.PanelControl(); | |
53 | + this.buttonEdit_CURR_REMAIN_MONEY = new DevExpress.XtraEditors.ButtonEdit(); | |
54 | + this.labelControl3 = new DevExpress.XtraEditors.LabelControl(); | |
55 | + this.panelControl7 = new DevExpress.XtraEditors.PanelControl(); | |
56 | + this.buttonEdit_CUST_NM = new DevExpress.XtraEditors.ButtonEdit(); | |
57 | + this.labelControl_CUST_CD = new DevExpress.XtraEditors.LabelControl(); | |
58 | + this.labelControl27 = new DevExpress.XtraEditors.LabelControl(); | |
59 | + this.panelControl25 = new DevExpress.XtraEditors.PanelControl(); | |
60 | + this.textEdit_CUST_USR_NM = new DevExpress.XtraEditors.TextEdit(); | |
61 | + this.labelControl7 = new DevExpress.XtraEditors.LabelControl(); | |
62 | + this.panelControl1 = new DevExpress.XtraEditors.PanelControl(); | |
63 | + this.textEdit_CASH_MY = new DevExpress.XtraEditors.TextEdit(); | |
64 | + this.labelControl4 = new DevExpress.XtraEditors.LabelControl(); | |
65 | + this.panelControl9 = new DevExpress.XtraEditors.PanelControl(); | |
66 | + this.textEdit_DEP_MY = new DevExpress.XtraEditors.TextEdit(); | |
67 | + this.labelControl5 = new DevExpress.XtraEditors.LabelControl(); | |
68 | + this.panelControl10 = new DevExpress.XtraEditors.PanelControl(); | |
69 | + this.textEdit_ETC_MY = new DevExpress.XtraEditors.TextEdit(); | |
70 | + this.labelControl6 = new DevExpress.XtraEditors.LabelControl(); | |
71 | + this.panelControl11 = new DevExpress.XtraEditors.PanelControl(); | |
72 | + this.buttonEdit_ACC_NO = new DevExpress.XtraEditors.ButtonEdit(); | |
73 | + this.labelControl_BANK_NM = new DevExpress.XtraEditors.LabelControl(); | |
74 | + this.textEdit_ACC_NM = new DevExpress.XtraEditors.TextEdit(); | |
75 | + this.labelControl9 = new DevExpress.XtraEditors.LabelControl(); | |
76 | + this.panelControl12 = new DevExpress.XtraEditors.PanelControl(); | |
77 | + this.textEdit_REMAK = new DevExpress.XtraEditors.TextEdit(); | |
78 | + this.labelControl10 = new DevExpress.XtraEditors.LabelControl(); | |
79 | + this.panelControl13 = new DevExpress.XtraEditors.PanelControl(); | |
80 | + this.textEdit_Total = new DevExpress.XtraEditors.TextEdit(); | |
81 | + this.labelControl8 = new DevExpress.XtraEditors.LabelControl(); | |
82 | + this.panelControl14 = new DevExpress.XtraEditors.PanelControl(); | |
83 | + this.lookUpEdit_COL_USR_ID = new DevExpress.XtraEditors.LookUpEdit(); | |
84 | + this.labelControl11 = new DevExpress.XtraEditors.LabelControl(); | |
85 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit(); | |
86 | + this.panelControl2.SuspendLayout(); | |
87 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit(); | |
88 | + this.panelControl3.SuspendLayout(); | |
89 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit(); | |
90 | + this.panelControl5.SuspendLayout(); | |
91 | + ((System.ComponentModel.ISupportInitialize)(this.buttonEdit_COL_CD.Properties)).BeginInit(); | |
92 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit(); | |
93 | + this.panelControl4.SuspendLayout(); | |
94 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_COL_DT.Properties.CalendarTimeProperties)).BeginInit(); | |
95 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_COL_DT.Properties)).BeginInit(); | |
96 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit(); | |
97 | + this.panelControl6.SuspendLayout(); | |
98 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit(); | |
99 | + this.panelControl8.SuspendLayout(); | |
100 | + ((System.ComponentModel.ISupportInitialize)(this.buttonEdit_CURR_REMAIN_MONEY.Properties)).BeginInit(); | |
101 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit(); | |
102 | + this.panelControl7.SuspendLayout(); | |
103 | + ((System.ComponentModel.ISupportInitialize)(this.buttonEdit_CUST_NM.Properties)).BeginInit(); | |
104 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl25)).BeginInit(); | |
105 | + this.panelControl25.SuspendLayout(); | |
106 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_USR_NM.Properties)).BeginInit(); | |
107 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit(); | |
108 | + this.panelControl1.SuspendLayout(); | |
109 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CASH_MY.Properties)).BeginInit(); | |
110 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit(); | |
111 | + this.panelControl9.SuspendLayout(); | |
112 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_DEP_MY.Properties)).BeginInit(); | |
113 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit(); | |
114 | + this.panelControl10.SuspendLayout(); | |
115 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_ETC_MY.Properties)).BeginInit(); | |
116 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).BeginInit(); | |
117 | + this.panelControl11.SuspendLayout(); | |
118 | + ((System.ComponentModel.ISupportInitialize)(this.buttonEdit_ACC_NO.Properties)).BeginInit(); | |
119 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_ACC_NM.Properties)).BeginInit(); | |
120 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).BeginInit(); | |
121 | + this.panelControl12.SuspendLayout(); | |
122 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_REMAK.Properties)).BeginInit(); | |
123 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).BeginInit(); | |
124 | + this.panelControl13.SuspendLayout(); | |
125 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_Total.Properties)).BeginInit(); | |
126 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).BeginInit(); | |
127 | + this.panelControl14.SuspendLayout(); | |
128 | + ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_COL_USR_ID.Properties)).BeginInit(); | |
129 | + this.SuspendLayout(); | |
130 | + // | |
131 | + // panelControl2 | |
132 | + // | |
133 | + this.panelControl2.Controls.Add(this.simpleButton_CANCEL); | |
134 | + this.panelControl2.Controls.Add(this.simpleButton_INPUT); | |
135 | + this.panelControl2.Controls.Add(this.simpleButton_UPDATE); | |
136 | + this.panelControl2.Controls.Add(this.simpleButton_DELETE); | |
137 | + this.panelControl2.Controls.Add(this.simpleButton_CLOSE); | |
138 | + this.panelControl2.Dock = System.Windows.Forms.DockStyle.Bottom; | |
139 | + this.panelControl2.Location = new System.Drawing.Point(0, 294); | |
140 | + this.panelControl2.Name = "panelControl2"; | |
141 | + this.panelControl2.Size = new System.Drawing.Size(500, 42); | |
142 | + this.panelControl2.TabIndex = 9; | |
143 | + // | |
144 | + // simpleButton_CANCEL | |
145 | + // | |
146 | + this.simpleButton_CANCEL.Appearance.Options.UseFont = true; | |
147 | + this.simpleButton_CANCEL.Dock = System.Windows.Forms.DockStyle.Right; | |
148 | + this.simpleButton_CANCEL.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_CANCEL.Image"))); | |
149 | + this.simpleButton_CANCEL.Location = new System.Drawing.Point(48, 2); | |
150 | + this.simpleButton_CANCEL.Name = "simpleButton_CANCEL"; | |
151 | + this.simpleButton_CANCEL.Size = new System.Drawing.Size(90, 38); | |
152 | + this.simpleButton_CANCEL.TabIndex = 4; | |
153 | + this.simpleButton_CANCEL.Text = "취소(&A)"; | |
154 | + // | |
155 | + // simpleButton_INPUT | |
156 | + // | |
157 | + this.simpleButton_INPUT.Appearance.Options.UseFont = true; | |
158 | + this.simpleButton_INPUT.Dock = System.Windows.Forms.DockStyle.Right; | |
159 | + this.simpleButton_INPUT.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_INPUT.Image"))); | |
160 | + this.simpleButton_INPUT.Location = new System.Drawing.Point(138, 2); | |
161 | + this.simpleButton_INPUT.Name = "simpleButton_INPUT"; | |
162 | + this.simpleButton_INPUT.Size = new System.Drawing.Size(90, 38); | |
163 | + this.simpleButton_INPUT.TabIndex = 0; | |
164 | + this.simpleButton_INPUT.Text = "등록(&I)"; | |
165 | + // | |
166 | + // simpleButton_UPDATE | |
167 | + // | |
168 | + this.simpleButton_UPDATE.Appearance.Options.UseFont = true; | |
169 | + this.simpleButton_UPDATE.Dock = System.Windows.Forms.DockStyle.Right; | |
170 | + this.simpleButton_UPDATE.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_UPDATE.Image"))); | |
171 | + this.simpleButton_UPDATE.Location = new System.Drawing.Point(228, 2); | |
172 | + this.simpleButton_UPDATE.Name = "simpleButton_UPDATE"; | |
173 | + this.simpleButton_UPDATE.Size = new System.Drawing.Size(90, 38); | |
174 | + this.simpleButton_UPDATE.TabIndex = 1; | |
175 | + this.simpleButton_UPDATE.Text = "수정(&M)"; | |
176 | + // | |
177 | + // simpleButton_DELETE | |
178 | + // | |
179 | + this.simpleButton_DELETE.Appearance.Options.UseFont = true; | |
180 | + this.simpleButton_DELETE.Dock = System.Windows.Forms.DockStyle.Right; | |
181 | + this.simpleButton_DELETE.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_DELETE.Image"))); | |
182 | + this.simpleButton_DELETE.Location = new System.Drawing.Point(318, 2); | |
183 | + this.simpleButton_DELETE.Name = "simpleButton_DELETE"; | |
184 | + this.simpleButton_DELETE.Size = new System.Drawing.Size(90, 38); | |
185 | + this.simpleButton_DELETE.TabIndex = 2; | |
186 | + this.simpleButton_DELETE.Text = "삭제(&D)"; | |
187 | + // | |
188 | + // simpleButton_CLOSE | |
189 | + // | |
190 | + this.simpleButton_CLOSE.Appearance.Options.UseFont = true; | |
191 | + this.simpleButton_CLOSE.Dock = System.Windows.Forms.DockStyle.Right; | |
192 | + this.simpleButton_CLOSE.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_CLOSE.Image"))); | |
193 | + this.simpleButton_CLOSE.Location = new System.Drawing.Point(408, 2); | |
194 | + this.simpleButton_CLOSE.Name = "simpleButton_CLOSE"; | |
195 | + this.simpleButton_CLOSE.Size = new System.Drawing.Size(90, 38); | |
196 | + this.simpleButton_CLOSE.TabIndex = 3; | |
197 | + this.simpleButton_CLOSE.Text = "종료(&X)"; | |
198 | + // | |
199 | + // panelControl3 | |
200 | + // | |
201 | + this.panelControl3.Controls.Add(this.panelControl5); | |
202 | + this.panelControl3.Controls.Add(this.panelControl4); | |
203 | + this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top; | |
204 | + this.panelControl3.Location = new System.Drawing.Point(0, 0); | |
205 | + this.panelControl3.Name = "panelControl3"; | |
206 | + this.panelControl3.Size = new System.Drawing.Size(500, 42); | |
207 | + this.panelControl3.TabIndex = 0; | |
208 | + // | |
209 | + // panelControl5 | |
210 | + // | |
211 | + this.panelControl5.Controls.Add(this.buttonEdit_COL_CD); | |
212 | + this.panelControl5.Controls.Add(this.labelControl2); | |
213 | + this.panelControl5.Location = new System.Drawing.Point(253, 7); | |
214 | + this.panelControl5.Name = "panelControl5"; | |
215 | + this.panelControl5.Size = new System.Drawing.Size(237, 27); | |
216 | + this.panelControl5.TabIndex = 3; | |
217 | + // | |
218 | + // buttonEdit_COL_CD | |
219 | + // | |
220 | + this.buttonEdit_COL_CD.Dock = System.Windows.Forms.DockStyle.Fill; | |
221 | + this.buttonEdit_COL_CD.EnterMoveNextControl = true; | |
222 | + this.buttonEdit_COL_CD.Location = new System.Drawing.Point(92, 2); | |
223 | + this.buttonEdit_COL_CD.Name = "buttonEdit_COL_CD"; | |
224 | + this.buttonEdit_COL_CD.Properties.Appearance.Options.UseTextOptions = true; | |
225 | + this.buttonEdit_COL_CD.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
226 | + this.buttonEdit_COL_CD.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
227 | + this.buttonEdit_COL_CD.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
228 | + this.buttonEdit_COL_CD.Properties.AutoHeight = false; | |
229 | + this.buttonEdit_COL_CD.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
230 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("buttonEdit_COL_CD.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true), | |
231 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("buttonEdit_COL_CD.Properties.Buttons1"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true), | |
232 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("buttonEdit_COL_CD.Properties.Buttons2"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)}); | |
233 | + this.buttonEdit_COL_CD.Properties.Mask.EditMask = "\\d?\\d?\\d?\\d"; | |
234 | + this.buttonEdit_COL_CD.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx; | |
235 | + this.buttonEdit_COL_CD.Size = new System.Drawing.Size(143, 23); | |
236 | + this.buttonEdit_COL_CD.TabIndex = 1; | |
237 | + // | |
238 | + // labelControl2 | |
239 | + // | |
240 | + this.labelControl2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
241 | + this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
242 | + this.labelControl2.Dock = System.Windows.Forms.DockStyle.Left; | |
243 | + this.labelControl2.Location = new System.Drawing.Point(2, 2); | |
244 | + this.labelControl2.Name = "labelControl2"; | |
245 | + this.labelControl2.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
246 | + this.labelControl2.Size = new System.Drawing.Size(90, 23); | |
247 | + this.labelControl2.TabIndex = 0; | |
248 | + this.labelControl2.Text = "관리번호"; | |
249 | + // | |
250 | + // panelControl4 | |
251 | + // | |
252 | + this.panelControl4.Controls.Add(this.dateEdit_COL_DT); | |
253 | + this.panelControl4.Controls.Add(this.labelControl1); | |
254 | + this.panelControl4.Location = new System.Drawing.Point(12, 7); | |
255 | + this.panelControl4.Name = "panelControl4"; | |
256 | + this.panelControl4.Size = new System.Drawing.Size(237, 27); | |
257 | + this.panelControl4.TabIndex = 2; | |
258 | + // | |
259 | + // dateEdit_COL_DT | |
260 | + // | |
261 | + this.dateEdit_COL_DT.Dock = System.Windows.Forms.DockStyle.Fill; | |
262 | + this.dateEdit_COL_DT.EditValue = null; | |
263 | + this.dateEdit_COL_DT.EnterMoveNextControl = true; | |
264 | + this.dateEdit_COL_DT.Location = new System.Drawing.Point(92, 2); | |
265 | + this.dateEdit_COL_DT.Name = "dateEdit_COL_DT"; | |
266 | + this.dateEdit_COL_DT.Properties.Appearance.Options.UseTextOptions = true; | |
267 | + this.dateEdit_COL_DT.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
268 | + this.dateEdit_COL_DT.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
269 | + this.dateEdit_COL_DT.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
270 | + this.dateEdit_COL_DT.Properties.AutoHeight = false; | |
271 | + this.dateEdit_COL_DT.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
272 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
273 | + this.dateEdit_COL_DT.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
274 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
275 | + this.dateEdit_COL_DT.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret; | |
276 | + this.dateEdit_COL_DT.Properties.Mask.UseMaskAsDisplayFormat = true; | |
277 | + this.dateEdit_COL_DT.Size = new System.Drawing.Size(143, 23); | |
278 | + this.dateEdit_COL_DT.TabIndex = 2; | |
279 | + // | |
280 | + // labelControl1 | |
281 | + // | |
282 | + this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
283 | + this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
284 | + this.labelControl1.Dock = System.Windows.Forms.DockStyle.Left; | |
285 | + this.labelControl1.Location = new System.Drawing.Point(2, 2); | |
286 | + this.labelControl1.Name = "labelControl1"; | |
287 | + this.labelControl1.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
288 | + this.labelControl1.Size = new System.Drawing.Size(90, 23); | |
289 | + this.labelControl1.TabIndex = 0; | |
290 | + this.labelControl1.Text = "발생일자"; | |
291 | + // | |
292 | + // panelControl6 | |
293 | + // | |
294 | + this.panelControl6.Controls.Add(this.panelControl8); | |
295 | + this.panelControl6.Controls.Add(this.panelControl7); | |
296 | + this.panelControl6.Controls.Add(this.panelControl25); | |
297 | + this.panelControl6.Dock = System.Windows.Forms.DockStyle.Top; | |
298 | + this.panelControl6.Location = new System.Drawing.Point(0, 42); | |
299 | + this.panelControl6.Name = "panelControl6"; | |
300 | + this.panelControl6.Size = new System.Drawing.Size(500, 76); | |
301 | + this.panelControl6.TabIndex = 1; | |
302 | + // | |
303 | + // panelControl8 | |
304 | + // | |
305 | + this.panelControl8.Controls.Add(this.buttonEdit_CURR_REMAIN_MONEY); | |
306 | + this.panelControl8.Controls.Add(this.labelControl3); | |
307 | + this.panelControl8.Location = new System.Drawing.Point(253, 40); | |
308 | + this.panelControl8.Name = "panelControl8"; | |
309 | + this.panelControl8.Size = new System.Drawing.Size(237, 27); | |
310 | + this.panelControl8.TabIndex = 3; | |
311 | + // | |
312 | + // buttonEdit_CURR_REMAIN_MONEY | |
313 | + // | |
314 | + this.buttonEdit_CURR_REMAIN_MONEY.Dock = System.Windows.Forms.DockStyle.Fill; | |
315 | + this.buttonEdit_CURR_REMAIN_MONEY.EnterMoveNextControl = true; | |
316 | + this.buttonEdit_CURR_REMAIN_MONEY.Location = new System.Drawing.Point(92, 2); | |
317 | + this.buttonEdit_CURR_REMAIN_MONEY.Name = "buttonEdit_CURR_REMAIN_MONEY"; | |
318 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.Appearance.Options.UseTextOptions = true; | |
319 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
320 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
321 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
322 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.AppearanceReadOnly.Options.UseTextOptions = true; | |
323 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
324 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.AutoHeight = false; | |
325 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
326 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("buttonEdit_CURR_REMAIN_MONEY.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)}); | |
327 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.DisplayFormat.FormatString = "n0"; | |
328 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
329 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.Mask.EditMask = "n0"; | |
330 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; | |
331 | + this.buttonEdit_CURR_REMAIN_MONEY.Properties.ReadOnly = true; | |
332 | + this.buttonEdit_CURR_REMAIN_MONEY.Size = new System.Drawing.Size(143, 23); | |
333 | + this.buttonEdit_CURR_REMAIN_MONEY.TabIndex = 1; | |
334 | + // | |
335 | + // labelControl3 | |
336 | + // | |
337 | + this.labelControl3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
338 | + this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
339 | + this.labelControl3.Dock = System.Windows.Forms.DockStyle.Left; | |
340 | + this.labelControl3.Location = new System.Drawing.Point(2, 2); | |
341 | + this.labelControl3.Name = "labelControl3"; | |
342 | + this.labelControl3.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
343 | + this.labelControl3.Size = new System.Drawing.Size(90, 23); | |
344 | + this.labelControl3.TabIndex = 0; | |
345 | + this.labelControl3.Text = "현재잔액"; | |
346 | + // | |
347 | + // panelControl7 | |
348 | + // | |
349 | + this.panelControl7.Controls.Add(this.buttonEdit_CUST_NM); | |
350 | + this.panelControl7.Controls.Add(this.labelControl_CUST_CD); | |
351 | + this.panelControl7.Controls.Add(this.labelControl27); | |
352 | + this.panelControl7.Location = new System.Drawing.Point(12, 7); | |
353 | + this.panelControl7.Name = "panelControl7"; | |
354 | + this.panelControl7.Size = new System.Drawing.Size(478, 27); | |
355 | + this.panelControl7.TabIndex = 6; | |
356 | + // | |
357 | + // buttonEdit_CUST_NM | |
358 | + // | |
359 | + this.buttonEdit_CUST_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
360 | + this.buttonEdit_CUST_NM.EnterMoveNextControl = true; | |
361 | + this.buttonEdit_CUST_NM.Location = new System.Drawing.Point(92, 2); | |
362 | + this.buttonEdit_CUST_NM.Name = "buttonEdit_CUST_NM"; | |
363 | + this.buttonEdit_CUST_NM.Properties.AutoHeight = false; | |
364 | + this.buttonEdit_CUST_NM.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
365 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("buttonEdit_CUST_NM.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true)}); | |
366 | + this.buttonEdit_CUST_NM.Size = new System.Drawing.Size(315, 23); | |
367 | + this.buttonEdit_CUST_NM.TabIndex = 7; | |
368 | + // | |
369 | + // labelControl_CUST_CD | |
370 | + // | |
371 | + this.labelControl_CUST_CD.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
372 | + this.labelControl_CUST_CD.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
373 | + this.labelControl_CUST_CD.Dock = System.Windows.Forms.DockStyle.Right; | |
374 | + this.labelControl_CUST_CD.Location = new System.Drawing.Point(407, 2); | |
375 | + this.labelControl_CUST_CD.Name = "labelControl_CUST_CD"; | |
376 | + this.labelControl_CUST_CD.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
377 | + this.labelControl_CUST_CD.Size = new System.Drawing.Size(69, 23); | |
378 | + this.labelControl_CUST_CD.TabIndex = 6; | |
379 | + // | |
380 | + // labelControl27 | |
381 | + // | |
382 | + this.labelControl27.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
383 | + this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
384 | + this.labelControl27.Dock = System.Windows.Forms.DockStyle.Left; | |
385 | + this.labelControl27.Location = new System.Drawing.Point(2, 2); | |
386 | + this.labelControl27.Name = "labelControl27"; | |
387 | + this.labelControl27.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
388 | + this.labelControl27.Size = new System.Drawing.Size(90, 23); | |
389 | + this.labelControl27.TabIndex = 0; | |
390 | + this.labelControl27.Text = "거래선명"; | |
391 | + // | |
392 | + // panelControl25 | |
393 | + // | |
394 | + this.panelControl25.Controls.Add(this.textEdit_CUST_USR_NM); | |
395 | + this.panelControl25.Controls.Add(this.labelControl7); | |
396 | + this.panelControl25.Location = new System.Drawing.Point(12, 40); | |
397 | + this.panelControl25.Name = "panelControl25"; | |
398 | + this.panelControl25.Size = new System.Drawing.Size(237, 27); | |
399 | + this.panelControl25.TabIndex = 7; | |
400 | + // | |
401 | + // textEdit_CUST_USR_NM | |
402 | + // | |
403 | + this.textEdit_CUST_USR_NM.Dock = System.Windows.Forms.DockStyle.Fill; | |
404 | + this.textEdit_CUST_USR_NM.Location = new System.Drawing.Point(92, 2); | |
405 | + this.textEdit_CUST_USR_NM.Name = "textEdit_CUST_USR_NM"; | |
406 | + this.textEdit_CUST_USR_NM.Properties.AutoHeight = false; | |
407 | + this.textEdit_CUST_USR_NM.Properties.ReadOnly = true; | |
408 | + this.textEdit_CUST_USR_NM.Size = new System.Drawing.Size(143, 23); | |
409 | + this.textEdit_CUST_USR_NM.TabIndex = 1; | |
410 | + // | |
411 | + // labelControl7 | |
412 | + // | |
413 | + this.labelControl7.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
414 | + this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
415 | + this.labelControl7.Dock = System.Windows.Forms.DockStyle.Left; | |
416 | + this.labelControl7.Location = new System.Drawing.Point(2, 2); | |
417 | + this.labelControl7.Name = "labelControl7"; | |
418 | + this.labelControl7.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
419 | + this.labelControl7.Size = new System.Drawing.Size(90, 23); | |
420 | + this.labelControl7.TabIndex = 0; | |
421 | + this.labelControl7.Text = "영업담당"; | |
422 | + // | |
423 | + // panelControl1 | |
424 | + // | |
425 | + this.panelControl1.Controls.Add(this.textEdit_CASH_MY); | |
426 | + this.panelControl1.Controls.Add(this.labelControl4); | |
427 | + this.panelControl1.Location = new System.Drawing.Point(12, 127); | |
428 | + this.panelControl1.Name = "panelControl1"; | |
429 | + this.panelControl1.Size = new System.Drawing.Size(237, 27); | |
430 | + this.panelControl1.TabIndex = 2; | |
431 | + // | |
432 | + // textEdit_CASH_MY | |
433 | + // | |
434 | + this.textEdit_CASH_MY.Dock = System.Windows.Forms.DockStyle.Fill; | |
435 | + this.textEdit_CASH_MY.EnterMoveNextControl = true; | |
436 | + this.textEdit_CASH_MY.Location = new System.Drawing.Point(92, 2); | |
437 | + this.textEdit_CASH_MY.Name = "textEdit_CASH_MY"; | |
438 | + this.textEdit_CASH_MY.Properties.Appearance.Options.UseTextOptions = true; | |
439 | + this.textEdit_CASH_MY.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
440 | + this.textEdit_CASH_MY.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
441 | + this.textEdit_CASH_MY.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
442 | + this.textEdit_CASH_MY.Properties.AutoHeight = false; | |
443 | + this.textEdit_CASH_MY.Properties.Mask.EditMask = "n0"; | |
444 | + this.textEdit_CASH_MY.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; | |
445 | + this.textEdit_CASH_MY.Properties.Mask.UseMaskAsDisplayFormat = true; | |
446 | + this.textEdit_CASH_MY.Size = new System.Drawing.Size(143, 23); | |
447 | + this.textEdit_CASH_MY.TabIndex = 2; | |
448 | + // | |
449 | + // labelControl4 | |
450 | + // | |
451 | + this.labelControl4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
452 | + this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
453 | + this.labelControl4.Dock = System.Windows.Forms.DockStyle.Left; | |
454 | + this.labelControl4.Location = new System.Drawing.Point(2, 2); | |
455 | + this.labelControl4.Name = "labelControl4"; | |
456 | + this.labelControl4.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
457 | + this.labelControl4.Size = new System.Drawing.Size(90, 23); | |
458 | + this.labelControl4.TabIndex = 0; | |
459 | + this.labelControl4.Text = "현금금액"; | |
460 | + // | |
461 | + // panelControl9 | |
462 | + // | |
463 | + this.panelControl9.Controls.Add(this.textEdit_DEP_MY); | |
464 | + this.panelControl9.Controls.Add(this.labelControl5); | |
465 | + this.panelControl9.Location = new System.Drawing.Point(253, 127); | |
466 | + this.panelControl9.Name = "panelControl9"; | |
467 | + this.panelControl9.Size = new System.Drawing.Size(237, 27); | |
468 | + this.panelControl9.TabIndex = 3; | |
469 | + // | |
470 | + // textEdit_DEP_MY | |
471 | + // | |
472 | + this.textEdit_DEP_MY.Dock = System.Windows.Forms.DockStyle.Fill; | |
473 | + this.textEdit_DEP_MY.EnterMoveNextControl = true; | |
474 | + this.textEdit_DEP_MY.Location = new System.Drawing.Point(92, 2); | |
475 | + this.textEdit_DEP_MY.Name = "textEdit_DEP_MY"; | |
476 | + this.textEdit_DEP_MY.Properties.Appearance.Options.UseTextOptions = true; | |
477 | + this.textEdit_DEP_MY.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
478 | + this.textEdit_DEP_MY.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
479 | + this.textEdit_DEP_MY.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
480 | + this.textEdit_DEP_MY.Properties.AutoHeight = false; | |
481 | + this.textEdit_DEP_MY.Properties.Mask.EditMask = "n0"; | |
482 | + this.textEdit_DEP_MY.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; | |
483 | + this.textEdit_DEP_MY.Properties.Mask.UseMaskAsDisplayFormat = true; | |
484 | + this.textEdit_DEP_MY.Size = new System.Drawing.Size(143, 23); | |
485 | + this.textEdit_DEP_MY.TabIndex = 2; | |
486 | + // | |
487 | + // labelControl5 | |
488 | + // | |
489 | + this.labelControl5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
490 | + this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
491 | + this.labelControl5.Dock = System.Windows.Forms.DockStyle.Left; | |
492 | + this.labelControl5.Location = new System.Drawing.Point(2, 2); | |
493 | + this.labelControl5.Name = "labelControl5"; | |
494 | + this.labelControl5.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
495 | + this.labelControl5.Size = new System.Drawing.Size(90, 23); | |
496 | + this.labelControl5.TabIndex = 0; | |
497 | + this.labelControl5.Text = "예금금액"; | |
498 | + // | |
499 | + // panelControl10 | |
500 | + // | |
501 | + this.panelControl10.Controls.Add(this.textEdit_ETC_MY); | |
502 | + this.panelControl10.Controls.Add(this.labelControl6); | |
503 | + this.panelControl10.Location = new System.Drawing.Point(12, 160); | |
504 | + this.panelControl10.Name = "panelControl10"; | |
505 | + this.panelControl10.Size = new System.Drawing.Size(237, 27); | |
506 | + this.panelControl10.TabIndex = 4; | |
507 | + // | |
508 | + // textEdit_ETC_MY | |
509 | + // | |
510 | + this.textEdit_ETC_MY.Dock = System.Windows.Forms.DockStyle.Fill; | |
511 | + this.textEdit_ETC_MY.EnterMoveNextControl = true; | |
512 | + this.textEdit_ETC_MY.Location = new System.Drawing.Point(92, 2); | |
513 | + this.textEdit_ETC_MY.Name = "textEdit_ETC_MY"; | |
514 | + this.textEdit_ETC_MY.Properties.Appearance.Options.UseTextOptions = true; | |
515 | + this.textEdit_ETC_MY.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
516 | + this.textEdit_ETC_MY.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
517 | + this.textEdit_ETC_MY.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
518 | + this.textEdit_ETC_MY.Properties.AutoHeight = false; | |
519 | + this.textEdit_ETC_MY.Properties.Mask.EditMask = "n0"; | |
520 | + this.textEdit_ETC_MY.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; | |
521 | + this.textEdit_ETC_MY.Properties.Mask.UseMaskAsDisplayFormat = true; | |
522 | + this.textEdit_ETC_MY.Size = new System.Drawing.Size(143, 23); | |
523 | + this.textEdit_ETC_MY.TabIndex = 2; | |
524 | + // | |
525 | + // labelControl6 | |
526 | + // | |
527 | + this.labelControl6.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
528 | + this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
529 | + this.labelControl6.Dock = System.Windows.Forms.DockStyle.Left; | |
530 | + this.labelControl6.Location = new System.Drawing.Point(2, 2); | |
531 | + this.labelControl6.Name = "labelControl6"; | |
532 | + this.labelControl6.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
533 | + this.labelControl6.Size = new System.Drawing.Size(90, 23); | |
534 | + this.labelControl6.TabIndex = 0; | |
535 | + this.labelControl6.Text = "기타금액"; | |
536 | + // | |
537 | + // panelControl11 | |
538 | + // | |
539 | + this.panelControl11.Controls.Add(this.buttonEdit_ACC_NO); | |
540 | + this.panelControl11.Controls.Add(this.labelControl_BANK_NM); | |
541 | + this.panelControl11.Controls.Add(this.textEdit_ACC_NM); | |
542 | + this.panelControl11.Controls.Add(this.labelControl9); | |
543 | + this.panelControl11.Location = new System.Drawing.Point(12, 193); | |
544 | + this.panelControl11.Name = "panelControl11"; | |
545 | + this.panelControl11.Size = new System.Drawing.Size(478, 27); | |
546 | + this.panelControl11.TabIndex = 5; | |
547 | + // | |
548 | + // buttonEdit_ACC_NO | |
549 | + // | |
550 | + this.buttonEdit_ACC_NO.Dock = System.Windows.Forms.DockStyle.Fill; | |
551 | + this.buttonEdit_ACC_NO.EnterMoveNextControl = true; | |
552 | + this.buttonEdit_ACC_NO.Location = new System.Drawing.Point(92, 2); | |
553 | + this.buttonEdit_ACC_NO.Name = "buttonEdit_ACC_NO"; | |
554 | + this.buttonEdit_ACC_NO.Properties.AutoHeight = false; | |
555 | + this.buttonEdit_ACC_NO.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
556 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("buttonEdit_ACC_NO.Properties.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true)}); | |
557 | + this.buttonEdit_ACC_NO.Size = new System.Drawing.Size(187, 23); | |
558 | + this.buttonEdit_ACC_NO.TabIndex = 0; | |
559 | + // | |
560 | + // labelControl_BANK_NM | |
561 | + // | |
562 | + this.labelControl_BANK_NM.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
563 | + this.labelControl_BANK_NM.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
564 | + this.labelControl_BANK_NM.Dock = System.Windows.Forms.DockStyle.Right; | |
565 | + this.labelControl_BANK_NM.Location = new System.Drawing.Point(279, 2); | |
566 | + this.labelControl_BANK_NM.Name = "labelControl_BANK_NM"; | |
567 | + this.labelControl_BANK_NM.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
568 | + this.labelControl_BANK_NM.Size = new System.Drawing.Size(99, 23); | |
569 | + this.labelControl_BANK_NM.TabIndex = 1; | |
570 | + // | |
571 | + // textEdit_ACC_NM | |
572 | + // | |
573 | + this.textEdit_ACC_NM.Dock = System.Windows.Forms.DockStyle.Right; | |
574 | + this.textEdit_ACC_NM.Location = new System.Drawing.Point(378, 2); | |
575 | + this.textEdit_ACC_NM.Name = "textEdit_ACC_NM"; | |
576 | + this.textEdit_ACC_NM.Properties.Appearance.Options.UseTextOptions = true; | |
577 | + this.textEdit_ACC_NM.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
578 | + this.textEdit_ACC_NM.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
579 | + this.textEdit_ACC_NM.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
580 | + this.textEdit_ACC_NM.Properties.AppearanceReadOnly.Options.UseTextOptions = true; | |
581 | + this.textEdit_ACC_NM.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
582 | + this.textEdit_ACC_NM.Properties.AutoHeight = false; | |
583 | + this.textEdit_ACC_NM.Properties.ReadOnly = true; | |
584 | + this.textEdit_ACC_NM.Size = new System.Drawing.Size(98, 23); | |
585 | + this.textEdit_ACC_NM.TabIndex = 2; | |
586 | + this.textEdit_ACC_NM.TabStop = false; | |
587 | + // | |
588 | + // labelControl9 | |
589 | + // | |
590 | + this.labelControl9.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
591 | + this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
592 | + this.labelControl9.Dock = System.Windows.Forms.DockStyle.Left; | |
593 | + this.labelControl9.Location = new System.Drawing.Point(2, 2); | |
594 | + this.labelControl9.Name = "labelControl9"; | |
595 | + this.labelControl9.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
596 | + this.labelControl9.Size = new System.Drawing.Size(90, 23); | |
597 | + this.labelControl9.TabIndex = 0; | |
598 | + this.labelControl9.Text = "예금구좌"; | |
599 | + // | |
600 | + // panelControl12 | |
601 | + // | |
602 | + this.panelControl12.Controls.Add(this.textEdit_REMAK); | |
603 | + this.panelControl12.Controls.Add(this.labelControl10); | |
604 | + this.panelControl12.Location = new System.Drawing.Point(12, 226); | |
605 | + this.panelControl12.Name = "panelControl12"; | |
606 | + this.panelControl12.Size = new System.Drawing.Size(478, 27); | |
607 | + this.panelControl12.TabIndex = 6; | |
608 | + // | |
609 | + // textEdit_REMAK | |
610 | + // | |
611 | + this.textEdit_REMAK.Dock = System.Windows.Forms.DockStyle.Fill; | |
612 | + this.textEdit_REMAK.EnterMoveNextControl = true; | |
613 | + this.textEdit_REMAK.Location = new System.Drawing.Point(92, 2); | |
614 | + this.textEdit_REMAK.Name = "textEdit_REMAK"; | |
615 | + this.textEdit_REMAK.Properties.AutoHeight = false; | |
616 | + this.textEdit_REMAK.Size = new System.Drawing.Size(384, 23); | |
617 | + this.textEdit_REMAK.TabIndex = 2; | |
618 | + // | |
619 | + // labelControl10 | |
620 | + // | |
621 | + this.labelControl10.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
622 | + this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
623 | + this.labelControl10.Dock = System.Windows.Forms.DockStyle.Left; | |
624 | + this.labelControl10.Location = new System.Drawing.Point(2, 2); | |
625 | + this.labelControl10.Name = "labelControl10"; | |
626 | + this.labelControl10.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
627 | + this.labelControl10.Size = new System.Drawing.Size(90, 23); | |
628 | + this.labelControl10.TabIndex = 0; | |
629 | + this.labelControl10.Text = "비고"; | |
630 | + // | |
631 | + // panelControl13 | |
632 | + // | |
633 | + this.panelControl13.Controls.Add(this.textEdit_Total); | |
634 | + this.panelControl13.Controls.Add(this.labelControl8); | |
635 | + this.panelControl13.Location = new System.Drawing.Point(253, 259); | |
636 | + this.panelControl13.Name = "panelControl13"; | |
637 | + this.panelControl13.Size = new System.Drawing.Size(237, 27); | |
638 | + this.panelControl13.TabIndex = 8; | |
639 | + // | |
640 | + // textEdit_Total | |
641 | + // | |
642 | + this.textEdit_Total.Dock = System.Windows.Forms.DockStyle.Fill; | |
643 | + this.textEdit_Total.Location = new System.Drawing.Point(92, 2); | |
644 | + this.textEdit_Total.Name = "textEdit_Total"; | |
645 | + this.textEdit_Total.Properties.Appearance.Options.UseTextOptions = true; | |
646 | + this.textEdit_Total.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
647 | + this.textEdit_Total.Properties.AppearanceFocused.Options.UseTextOptions = true; | |
648 | + this.textEdit_Total.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
649 | + this.textEdit_Total.Properties.AppearanceReadOnly.Options.UseTextOptions = true; | |
650 | + this.textEdit_Total.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; | |
651 | + this.textEdit_Total.Properties.AutoHeight = false; | |
652 | + this.textEdit_Total.Properties.Mask.EditMask = "n0"; | |
653 | + this.textEdit_Total.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; | |
654 | + this.textEdit_Total.Properties.Mask.UseMaskAsDisplayFormat = true; | |
655 | + this.textEdit_Total.Properties.ReadOnly = true; | |
656 | + this.textEdit_Total.Size = new System.Drawing.Size(143, 23); | |
657 | + this.textEdit_Total.TabIndex = 1; | |
658 | + this.textEdit_Total.TabStop = false; | |
659 | + // | |
660 | + // labelControl8 | |
661 | + // | |
662 | + this.labelControl8.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
663 | + this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
664 | + this.labelControl8.Dock = System.Windows.Forms.DockStyle.Left; | |
665 | + this.labelControl8.Location = new System.Drawing.Point(2, 2); | |
666 | + this.labelControl8.Name = "labelControl8"; | |
667 | + this.labelControl8.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
668 | + this.labelControl8.Size = new System.Drawing.Size(90, 23); | |
669 | + this.labelControl8.TabIndex = 0; | |
670 | + this.labelControl8.Text = "합계금액"; | |
671 | + // | |
672 | + // panelControl14 | |
673 | + // | |
674 | + this.panelControl14.Controls.Add(this.lookUpEdit_COL_USR_ID); | |
675 | + this.panelControl14.Controls.Add(this.labelControl11); | |
676 | + this.panelControl14.Location = new System.Drawing.Point(12, 259); | |
677 | + this.panelControl14.Name = "panelControl14"; | |
678 | + this.panelControl14.Size = new System.Drawing.Size(237, 27); | |
679 | + this.panelControl14.TabIndex = 7; | |
680 | + // | |
681 | + // lookUpEdit_COL_USR_ID | |
682 | + // | |
683 | + this.lookUpEdit_COL_USR_ID.Dock = System.Windows.Forms.DockStyle.Fill; | |
684 | + this.lookUpEdit_COL_USR_ID.EnterMoveNextControl = true; | |
685 | + this.lookUpEdit_COL_USR_ID.Location = new System.Drawing.Point(92, 2); | |
686 | + this.lookUpEdit_COL_USR_ID.Name = "lookUpEdit_COL_USR_ID"; | |
687 | + this.lookUpEdit_COL_USR_ID.Properties.AutoHeight = false; | |
688 | + this.lookUpEdit_COL_USR_ID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { | |
689 | + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); | |
690 | + this.lookUpEdit_COL_USR_ID.Size = new System.Drawing.Size(143, 23); | |
691 | + this.lookUpEdit_COL_USR_ID.TabIndex = 2; | |
692 | + // | |
693 | + // labelControl11 | |
694 | + // | |
695 | + this.labelControl11.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
696 | + this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; | |
697 | + this.labelControl11.Dock = System.Windows.Forms.DockStyle.Left; | |
698 | + this.labelControl11.Location = new System.Drawing.Point(2, 2); | |
699 | + this.labelControl11.Name = "labelControl11"; | |
700 | + this.labelControl11.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0); | |
701 | + this.labelControl11.Size = new System.Drawing.Size(90, 23); | |
702 | + this.labelControl11.TabIndex = 0; | |
703 | + this.labelControl11.Text = "수금사원"; | |
704 | + // | |
705 | + // CollectPopup | |
706 | + // | |
707 | + this.Appearance.Options.UseFont = true; | |
708 | + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; | |
709 | + this.ClientSize = new System.Drawing.Size(500, 336); | |
710 | + this.Controls.Add(this.panelControl12); | |
711 | + this.Controls.Add(this.panelControl14); | |
712 | + this.Controls.Add(this.panelControl10); | |
713 | + this.Controls.Add(this.panelControl13); | |
714 | + this.Controls.Add(this.panelControl9); | |
715 | + this.Controls.Add(this.panelControl11); | |
716 | + this.Controls.Add(this.panelControl1); | |
717 | + this.Controls.Add(this.panelControl6); | |
718 | + this.Controls.Add(this.panelControl3); | |
719 | + this.Controls.Add(this.panelControl2); | |
720 | + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; | |
721 | + this.MaximizeBox = false; | |
722 | + this.MinimizeBox = false; | |
723 | + this.Name = "CollectPopup"; | |
724 | + this.ShowIcon = false; | |
725 | + this.ShowInTaskbar = false; | |
726 | + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; | |
727 | + this.Text = "수금"; | |
728 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit(); | |
729 | + this.panelControl2.ResumeLayout(false); | |
730 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit(); | |
731 | + this.panelControl3.ResumeLayout(false); | |
732 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit(); | |
733 | + this.panelControl5.ResumeLayout(false); | |
734 | + ((System.ComponentModel.ISupportInitialize)(this.buttonEdit_COL_CD.Properties)).EndInit(); | |
735 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit(); | |
736 | + this.panelControl4.ResumeLayout(false); | |
737 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_COL_DT.Properties.CalendarTimeProperties)).EndInit(); | |
738 | + ((System.ComponentModel.ISupportInitialize)(this.dateEdit_COL_DT.Properties)).EndInit(); | |
739 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit(); | |
740 | + this.panelControl6.ResumeLayout(false); | |
741 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit(); | |
742 | + this.panelControl8.ResumeLayout(false); | |
743 | + ((System.ComponentModel.ISupportInitialize)(this.buttonEdit_CURR_REMAIN_MONEY.Properties)).EndInit(); | |
744 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit(); | |
745 | + this.panelControl7.ResumeLayout(false); | |
746 | + ((System.ComponentModel.ISupportInitialize)(this.buttonEdit_CUST_NM.Properties)).EndInit(); | |
747 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl25)).EndInit(); | |
748 | + this.panelControl25.ResumeLayout(false); | |
749 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CUST_USR_NM.Properties)).EndInit(); | |
750 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit(); | |
751 | + this.panelControl1.ResumeLayout(false); | |
752 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_CASH_MY.Properties)).EndInit(); | |
753 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit(); | |
754 | + this.panelControl9.ResumeLayout(false); | |
755 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_DEP_MY.Properties)).EndInit(); | |
756 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit(); | |
757 | + this.panelControl10.ResumeLayout(false); | |
758 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_ETC_MY.Properties)).EndInit(); | |
759 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl11)).EndInit(); | |
760 | + this.panelControl11.ResumeLayout(false); | |
761 | + ((System.ComponentModel.ISupportInitialize)(this.buttonEdit_ACC_NO.Properties)).EndInit(); | |
762 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_ACC_NM.Properties)).EndInit(); | |
763 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl12)).EndInit(); | |
764 | + this.panelControl12.ResumeLayout(false); | |
765 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_REMAK.Properties)).EndInit(); | |
766 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl13)).EndInit(); | |
767 | + this.panelControl13.ResumeLayout(false); | |
768 | + ((System.ComponentModel.ISupportInitialize)(this.textEdit_Total.Properties)).EndInit(); | |
769 | + ((System.ComponentModel.ISupportInitialize)(this.panelControl14)).EndInit(); | |
770 | + this.panelControl14.ResumeLayout(false); | |
771 | + ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_COL_USR_ID.Properties)).EndInit(); | |
772 | + this.ResumeLayout(false); | |
773 | + | |
774 | + } | |
775 | + | |
776 | + #endregion | |
777 | + | |
778 | + private DevExpress.XtraEditors.PanelControl panelControl2; | |
779 | + private DevExpress.XtraEditors.PanelControl panelControl3; | |
780 | + private DevExpress.XtraEditors.SimpleButton simpleButton_CANCEL; | |
781 | + private DevExpress.XtraEditors.SimpleButton simpleButton_INPUT; | |
782 | + private DevExpress.XtraEditors.SimpleButton simpleButton_UPDATE; | |
783 | + private DevExpress.XtraEditors.SimpleButton simpleButton_DELETE; | |
784 | + private DevExpress.XtraEditors.SimpleButton simpleButton_CLOSE; | |
785 | + private DevExpress.XtraEditors.PanelControl panelControl5; | |
786 | + private DevExpress.XtraEditors.ButtonEdit buttonEdit_COL_CD; | |
787 | + private DevExpress.XtraEditors.LabelControl labelControl2; | |
788 | + private DevExpress.XtraEditors.PanelControl panelControl4; | |
789 | + private DevExpress.XtraEditors.DateEdit dateEdit_COL_DT; | |
790 | + private DevExpress.XtraEditors.LabelControl labelControl1; | |
791 | + private DevExpress.XtraEditors.PanelControl panelControl6; | |
792 | + private DevExpress.XtraEditors.PanelControl panelControl7; | |
793 | + private DevExpress.XtraEditors.ButtonEdit buttonEdit_CUST_NM; | |
794 | + private DevExpress.XtraEditors.LabelControl labelControl_CUST_CD; | |
795 | + private DevExpress.XtraEditors.LabelControl labelControl27; | |
796 | + private DevExpress.XtraEditors.PanelControl panelControl8; | |
797 | + private DevExpress.XtraEditors.ButtonEdit buttonEdit_CURR_REMAIN_MONEY; | |
798 | + private DevExpress.XtraEditors.LabelControl labelControl3; | |
799 | + private DevExpress.XtraEditors.PanelControl panelControl25; | |
800 | + private DevExpress.XtraEditors.TextEdit textEdit_CUST_USR_NM; | |
801 | + private DevExpress.XtraEditors.LabelControl labelControl7; | |
802 | + private DevExpress.XtraEditors.PanelControl panelControl1; | |
803 | + private DevExpress.XtraEditors.TextEdit textEdit_CASH_MY; | |
804 | + private DevExpress.XtraEditors.LabelControl labelControl4; | |
805 | + private DevExpress.XtraEditors.PanelControl panelControl9; | |
806 | + private DevExpress.XtraEditors.TextEdit textEdit_DEP_MY; | |
807 | + private DevExpress.XtraEditors.LabelControl labelControl5; | |
808 | + private DevExpress.XtraEditors.PanelControl panelControl10; | |
809 | + private DevExpress.XtraEditors.TextEdit textEdit_ETC_MY; | |
810 | + private DevExpress.XtraEditors.LabelControl labelControl6; | |
811 | + private DevExpress.XtraEditors.PanelControl panelControl11; | |
812 | + private DevExpress.XtraEditors.ButtonEdit buttonEdit_ACC_NO; | |
813 | + private DevExpress.XtraEditors.LabelControl labelControl9; | |
814 | + private DevExpress.XtraEditors.PanelControl panelControl12; | |
815 | + private DevExpress.XtraEditors.TextEdit textEdit_REMAK; | |
816 | + private DevExpress.XtraEditors.LabelControl labelControl10; | |
817 | + private DevExpress.XtraEditors.LabelControl labelControl_BANK_NM; | |
818 | + private DevExpress.XtraEditors.TextEdit textEdit_ACC_NM; | |
819 | + private DevExpress.XtraEditors.PanelControl panelControl13; | |
820 | + private DevExpress.XtraEditors.TextEdit textEdit_Total; | |
821 | + private DevExpress.XtraEditors.LabelControl labelControl8; | |
822 | + private DevExpress.XtraEditors.PanelControl panelControl14; | |
823 | + private DevExpress.XtraEditors.LabelControl labelControl11; | |
824 | + private DevExpress.XtraEditors.LookUpEdit lookUpEdit_COL_USR_ID; | |
825 | + | |
826 | + } | |
827 | +}(No newline at end of file) |
+++ .svn/pristine/07/073b3624189e3a3bbacaeea719485868c0996273.svn-base
... | ... | @@ -0,0 +1,447 @@ |
1 | +<?xml version="1.0" encoding="utf-8"?> | |
2 | +<root> | |
3 | + <!-- | |
4 | + Microsoft ResX Schema | |
5 | + | |
6 | + Version 2.0 | |
7 | + | |
8 | + The primary goals of this format is to allow a simple XML format | |
9 | + that is mostly human readable. The generation and parsing of the | |
10 | + various data types are done through the TypeConverter classes | |
11 | + associated with the data types. | |
12 | + | |
13 | + Example: | |
14 | + | |
15 | + ... ado.net/XML headers & schema ... | |
16 | + <resheader name="resmimetype">text/microsoft-resx</resheader> | |
17 | + <resheader name="version">2.0</resheader> | |
18 | + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> | |
19 | + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> | |
20 | + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> | |
21 | + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> | |
22 | + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> | |
23 | + <value>[base64 mime encoded serialized .NET Framework object]</value> | |
24 | + </data> | |
25 | + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
26 | + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> | |
27 | + <comment>This is a comment</comment> | |
28 | + </data> | |
29 | + | |
30 | + There are any number of "resheader" rows that contain simple | |
31 | + name/value pairs. | |
32 | + | |
33 | + Each data row contains a name, and value. The row also contains a | |
34 | + type or mimetype. Type corresponds to a .NET class that support | |
35 | + text/value conversion through the TypeConverter architecture. | |
36 | + Classes that don't support this are serialized and stored with the | |
37 | + mimetype set. | |
38 | + | |
39 | + The mimetype is used for serialized objects, and tells the | |
40 | + ResXResourceReader how to depersist the object. This is currently not | |
41 | + extensible. For a given mimetype the value must be set accordingly: | |
42 | + | |
43 | + Note - application/x-microsoft.net.object.binary.base64 is the format | |
44 | + that the ResXResourceWriter will generate, however the reader can | |
45 | + read any of the formats listed below. | |
46 | + | |
47 | + mimetype: application/x-microsoft.net.object.binary.base64 | |
48 | + value : The object must be serialized with | |
49 | + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter | |
50 | + : and then encoded with base64 encoding. | |
51 | + | |
52 | + mimetype: application/x-microsoft.net.object.soap.base64 | |
53 | + value : The object must be serialized with | |
54 | + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter | |
55 | + : and then encoded with base64 encoding. | |
56 | + | |
57 | + mimetype: application/x-microsoft.net.object.bytearray.base64 | |
58 | + value : The object must be serialized into a byte array | |
59 | + : using a System.ComponentModel.TypeConverter | |
60 | + : and then encoded with base64 encoding. | |
61 | + --> | |
62 | + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | |
63 | + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> | |
64 | + <xsd:element name="root" msdata:IsDataSet="true"> | |
65 | + <xsd:complexType> | |
66 | + <xsd:choice maxOccurs="unbounded"> | |
67 | + <xsd:element name="metadata"> | |
68 | + <xsd:complexType> | |
69 | + <xsd:sequence> | |
70 | + <xsd:element name="value" type="xsd:string" minOccurs="0" /> | |
71 | + </xsd:sequence> | |
72 | + <xsd:attribute name="name" use="required" type="xsd:string" /> | |
73 | + <xsd:attribute name="type" type="xsd:string" /> | |
74 | + <xsd:attribute name="mimetype" type="xsd:string" /> | |
75 | + <xsd:attribute ref="xml:space" /> | |
76 | + </xsd:complexType> | |
77 | + </xsd:element> | |
78 | + <xsd:element name="assembly"> | |
79 | + <xsd:complexType> | |
80 | + <xsd:attribute name="alias" type="xsd:string" /> | |
81 | + <xsd:attribute name="name" type="xsd:string" /> | |
82 | + </xsd:complexType> | |
83 | + </xsd:element> | |
84 | + <xsd:element name="data"> | |
85 | + <xsd:complexType> | |
86 | + <xsd:sequence> | |
87 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
88 | + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> | |
89 | + </xsd:sequence> | |
90 | + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> | |
91 | + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> | |
92 | + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> | |
93 | + <xsd:attribute ref="xml:space" /> | |
94 | + </xsd:complexType> | |
95 | + </xsd:element> | |
96 | + <xsd:element name="resheader"> | |
97 | + <xsd:complexType> | |
98 | + <xsd:sequence> | |
99 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
100 | + </xsd:sequence> | |
101 | + <xsd:attribute name="name" type="xsd:string" use="required" /> | |
102 | + </xsd:complexType> | |
103 | + </xsd:element> | |
104 | + </xsd:choice> | |
105 | + </xsd:complexType> | |
106 | + </xsd:element> | |
107 | + </xsd:schema> | |
108 | + <resheader name="resmimetype"> | |
109 | + <value>text/microsoft-resx</value> | |
110 | + </resheader> | |
111 | + <resheader name="version"> | |
112 | + <value>2.0</value> | |
113 | + </resheader> | |
114 | + <resheader name="reader"> | |
115 | + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
116 | + </resheader> | |
117 | + <resheader name="writer"> | |
118 | + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
119 | + </resheader> | |
120 | + <metadata name="persistentRepository_Common.GenerateMember" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | |
121 | + <value>False</value> | |
122 | + </metadata> | |
123 | + <metadata name="persistentRepository_Common.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | |
124 | + <value>439, 17</value> | |
125 | + </metadata> | |
126 | + <metadata name="imageCollection1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | |
127 | + <value>661, 17</value> | |
128 | + </metadata> | |
129 | + <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> | |
130 | + <data name="repositoryItemCheckEdit2.PictureChecked" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
131 | + <value> | |
132 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACF0RVh0VGl0 | |
133 | + bGUAQXBwbHk7T0s7Q2hlY2s7QmFycztSaWJib247ZGPIaAAAA6ZJREFUOE9Nk31Q03Ucx3+iqwzOhE6t | |
134 | + MxsDOcbDhgPtziPoCGXkJIq6FQsn0WSOjRKIpzTmgRMfuKwpA2zLjFUzIPAIXCDIIiYPTWyDxThQntp4 | |
135 | + iAeBjP569/3Nuut397r73X0/79fn87n7fqnJlQZq7qGJIt86wvqMC+yYXG2o7ng1p19pCFtQfsvtP6Hn | |
136 | + NGSVBwvJ+WMEj/m/zJTrzxvU1Eo9RblWje5wUhZrW6Y6yFhasw+tVhXsTgPmVrswNFMD09BZqJsFKPgy | |
137 | + tE9U6BdIN5p9eOuRgA4L0pnPZHwaPGwwHcPkchOGlyoxMK/Cnblc2BfPYHRZC9dqCxotBcjXcWeT8/24 | |
138 | + JOcxsVznFmx47zS7qc5cAMfCZXT8fgSdLgnMLhm6p+XomVGgZ1aOZrsYv81XoNV2GorPQqzbd3p60c2p | |
139 | + pGw//nFtLOx/lKPlvghtE2LcmnoXJqcEXU4pbk9LUXR1Lw5kMiE5z4ZjsRJltQk4VBSQSTen3v4ooKah | |
140 | + Ox83x9JwY1RIJMloG09BOxGZpg5DWsZG3icyjIw7wZdvww9Dh9E2WII0VaCZCDZSwkL/kXZHAa4PJ0Hd | |
141 | + EoUY2UbkacNgvPcWcqo4KNLkwDW7BMWZRFxuFeHHe+/g9oQSaaXsNSLwot7M8182OtJhsMUhRuqJPqsV | |
142 | + +RcyECv3docnpx/g/FfZUH0TR6YTo95xED9NyJF6KhAhkd7PUq9l+97X9wpgsO6DujERGcWvwjmzhKbO | |
143 | + DoxOLmJg9A4Sc7fDOJKK2qF4fGfno3bgdYg+DqAn2EQlKFjNZY1RuGLZi2uDAhRXx6K4QoaFB2tYWPkb | |
144 | + h5R7cPVnIQyDsdDboqH/9UWU34zBGzksCxF4Ui+Ld4jTz3HxhSUSFb27cM0mQFb5bujqS2Hqv47Uc/5k | |
145 | + vf240v8CPrdEoPpuNI5d4oEveV5JBI8TqCcFct+7J77moqo3AppuLlnnIFJKfBEppaBp34+qPh4qCdpf | |
146 | + dqOkjofED1g2Lx/G0yTrQQvWR8Rv5SVk+s1/qAsigjBoerhkTyGaho9CRybT9Owi8nAU6kOQlOO/Fh63 | |
147 | + JYrkGJ0T71OUaVxGSxjh8Vv3HJD5jqSc3Imi2iCou0JxqZuDi2YOTn4fjFRVAF45yhzgPQrTo69zZzvG | |
148 | + JLSAfokbyFg+0cnPFcZJmGaBnAU3Chb4R5jWl0Q7Tnk+xdhC6hh0PZ1zZ//7+VdE70Tb6Xu+meBD8CZs | |
149 | + IjxB8Ph/fceYhPoHAkQRj5PgdPMAAAAASUVORK5CYII= | |
150 | +</value> | |
151 | + </data> | |
152 | + <data name="repositoryItemCheckEdit2.PictureGrayed" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
153 | + <value> | |
154 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACN0RVh0VGl0 | |
155 | + bGUAQ2FuY2VsO1N0b3A7RXhpdDtCYXJzO1JpYmJvbjtMlpayAAADmklEQVQ4TyWTf1CTdRzHvwim2KS6 | |
156 | + 0k5iXWAbIg6GbG2gHmPGhMEs+CMsT70yE1BGx3F5kCReFE7uNAMu7og6MBFk/LCEOZ15WUkXw8aAcgsE | |
157 | + +SHC9mzABtuR3rvv8/C9ez33vs/n834/3+9zz5d4TK3Ec7uDeO9cJXQF/pZ7RGQrKqh6cKLQMl5c9ISF | |
158 | + 1X8XamsMHxwU05kgSoDHpCcLxhZCA/SsMYCy2qrNKx799BP/7Ldfw93eAM/tTngp7vZGzNRXYezkCb/5 | |
159 | + 2NFSOruWsooLoCtAK5fxho7nmcYryuC51Y757ouY66iHq6UGruYauNvqMPdTI+jLMHH2cwwcz/1FEyl8 | |
160 | + gQ1hA4LMHx7+ZrS8lBovwVKUj7pwEYyZmXA2noOz4RxuZmVxNUvhMS5o7Msy/HH4/cvUu5Z0ZmVKrbk5 | |
161 | + Txj9d7hXkIMG1TswdZvRnFOCbnUGDOkaTpu6ermeOf8juK7UwZqf97Q+NTWJmDI0tSNfnMTj2grU8aPw | |
162 | + wD4Fh2sJ9lEGLdrTHPepnnZ6MWyb4mamq8sxcroEhrR0Pbm5Rz1sP/ouRrT7cUPzFv7UnYd36T84532w | |
163 | + PWRgG2MwO+fDwuIy1zNq9mI4Lxu2I9m4oUp7SK4rVMv/ZKdg6O0dsB+iW969Gz26C5hx+zBDd/LYTWF8 | |
164 | + +L3iKxiUStw/kIbBjAQMZiXBoEhZJlflScuW1DcwoJZhaG8irkm2w3jqLN3yEh45FzHl8FKWcL1Uh2vx | |
165 | + 2zGQLod1jxT9KglYL2kSy8d6lSuFrthtaPu4DAP/OjA56wWz4AMz78f4jBf99lnoC06hKyYaljfj0KsQ | |
166 | + oylWNkVqheLvTTtksCjFuBQuhHPaiUnHIlwLfvRfqOZYCfHA8cjJzfyVFIOfEyWoFsR2kqLQiF0Xo+Ke | |
167 | + mnduw12lHLcOHIKfYXBPVwmjLJ4i4TRbY3t3k2XoS4zGD1vEyH/5NTX7IwVXviK8fCVyKyzJsehJlqJV | |
168 | + GAmTLI5+Fzl3ZlaztR6FFBZFDPSRUTizScBenvVswKqta9ZtqNy4ua8pQgDzLhE1JaA/RYK+hCjKFnrm | |
169 | + eAyqE9C3U4TmzQKc2RhhFa15lk+9gWSi4D02JDD+Gd6msuf4LVUbwtEuiMAd8evoldJAyq9Ud9BaNe19 | |
170 | + 9jz/x+jVwa9ST9C4dh8h7IMTKxeDd3DdS6oSXmhreUjYhC6ED11IGMrXh00W80Lb9ge/qKEzIZTAFd8+ | |
171 | + 8j91kUbX3K/WKgAAAABJRU5ErkJggg== | |
172 | +</value> | |
173 | + </data> | |
174 | + <data name="repositoryItemCheckEdit2.PictureUnchecked" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
175 | + <value> | |
176 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAABl0RVh0VGl0 | |
177 | + bGUARGVsZXRlO1JlbW92ZTtNaW51c+upj0EAAANRSURBVDhPfZJdTFN3GMYPkPiBF2NeejEXkyVubtXg | |
178 | + YnSJMZu6KQazhWHZpnFxc06Z0xWwFqEwJS4NaBEtRKVJh6Ji+agUKaWipoIEQmf5sBUKpS0y+sEOlrbW | |
179 | + FZLH93+q8c4mv/R93/P8ntOLciPh/wXok0AkZpcbP86t7lFI1ZY+qcYaPK55xEvVfZacSw9L9xZfW0GZ | |
180 | + JJYdJofBjUZigpy6OWvh0cpupaymf76m04M2ewAWXxj/+MMwPpnGla4JyP62zh48YzpA+QXMeeVyCWs+ | |
181 | + Fy/8TdXdptQPY/C/KKz8C/QEouj0PkcX0Tsdv1m8YZQ22XGowqxf/tH6JcxlBUm/Ks0VZTo7BmdewOgK | |
182 | + wTAegtEdhmkiApMnDts7PGE8DsZQTi/6SWEsI3cBlymtXXW4sme+zxuB1jaDxidB6EZmoR8NocX5hmba | |
183 | + dY4gGui5xR+FpKo3tv2XsyJud0l7ldo0hrpBHjWPeNQO8KizPYPWHg+/5qYtiBuPnwnPrw/NoMbsgriw | |
184 | + Scl9f7LDWm/xobLbj10lBmzKrn0rYspc7PWjoT+ArOK2IS6z6M60pscHxd1JITAw/C+GHFOwO30Ydvkx | |
185 | + QjjcAThcAbgneWz54ybK7k9BTSWZ8nae+zrfOKu8N4ES01OhwMdHEHoeQygaQzg6hwgRppnts3TfKtHi | |
186 | + r45JlNILv5EZeC5N0jxwSj+KPw0T+O50OzYfrRNCX+bUI02mE+av8hqQdlyHHfm3sO+cGaeMTyG/5cS2 | |
187 | + I41W7osD11RHLltQbPBAQc3nzFM4/8CLC51Elxcq+mawnd3L7k2iyODG79VWbPzxciknSi9K3SZpiRU2 | |
188 | + jyOfOKF3ofC2C/JWN4paPRSOI6e5oMWFE4RM58SOvNa5DzbuX83+SIvW7VarMorvooDkY7pxSOnnyahM | |
189 | + Rnt+MwkCdGeQnHHyPtZmqSrITWYFiclL30/59AeNMb3gDqSNY1TiRF5TnFxhHkMuzRKtAzvlHSRX3yYv | |
190 | + hbmcfw6sJGlxynvvijIqqz77uT4mVnTh8BXbK3EM2Vdt2EW3Dfu1kZXbS3Io/w5zvMz1z+N1SSKRvHxD | |
191 | + 9voPd5ZfEGWq+0VijZ/wfvJttXVl+tnzy1L3rKHMYiKByd45cC8B0oKaPyRsCA8AAAAASUVORK5CYII= | |
192 | +</value> | |
193 | + </data> | |
194 | + <metadata name="imageCollection1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | |
195 | + <value>661, 17</value> | |
196 | + </metadata> | |
197 | + <assembly alias="DevExpress.Utils.v14.1" name="DevExpress.Utils.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" /> | |
198 | + <data name="imageCollection1.ImageStream" type="DevExpress.Utils.ImageCollectionStreamer, DevExpress.Utils.v14.1" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
199 | + <value> | |
200 | + AAEAAAD/////AQAAAAAAAAAMAgAAAFtEZXZFeHByZXNzLlV0aWxzLnYxNC4xLCBWZXJzaW9uPTE0LjEu | |
201 | + MTAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iODhkMTc1NGQ3MDBlNDlhDAMAAABR | |
202 | + U3lzdGVtLkRyYXdpbmcsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlU | |
203 | + b2tlbj1iMDNmNWY3ZjExZDUwYTNhBQEAAAAoRGV2RXhwcmVzcy5VdGlscy5JbWFnZUNvbGxlY3Rpb25T | |
204 | + dHJlYW1lcgIAAAAJSW1hZ2VTaXplBERhdGEEBxNTeXN0ZW0uRHJhd2luZy5TaXplAwAAAAICAAAABfz/ | |
205 | + //8TU3lzdGVtLkRyYXdpbmcuU2l6ZQIAAAAFd2lkdGgGaGVpZ2h0AAAICAMAAAAQAAAAEAAAAAkFAAAA | |
206 | + DwUAAABwAgAAAjUBAACJUE5HDQoaCgAAAA1JSERSAAAAEAAAABAIBgAAAB/z/2EAAAAEZ0FNQQAAsY8L | |
207 | + /GEFAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAA10lEQVQ4T6WRIQ9BYRSG7wQTTDITbrKbpDtBxq8Q/AGC | |
208 | + KKh+gIkmCbIgmyRKonQnCoJoxnO29zIb9n3zbM92z3vOu2tu8A/NbhLq0R/KNYw1+kGxhGONflDM4hoj | |
209 | + Re5QMmc4UeQHxR6esajIHUotvOJAkTuUKnjCBHOK3aCQxz3esaPYDQoZXKq8s1mrF4QxRphV9IRshFY2 | |
210 | + G4rfYRHiBm94xC0u0D6XZVZe6fwzHNhPHaL9y+kbUy2r6vQ3HNbxoGLqVGs3KBRwrvIFy1r5QbGNfY1f | |
211 | + CIIHrSqQxW3UasUAAAAASUVORK5CYIIzAQAAiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9h | |
212 | + AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOxAAADsQBlSsOGwAAANVJREFUOE+lkS8PQVEchu+EO8Ek | |
213 | + M0GymyQTZPMpBJ9AEAXVBzDRJEEWZJNESVSYKAjinfH8eP3bmHPm2Z7Nec95trsJ/mFTDfP66Q9xGUs6 | |
214 | + +kGYxZ6OfhCGOMNIkztE5hD7mvwgbOIBM5rcIaphjO3b4gFRAfe4xaRmNwhSuMIzNjS7QZDAieKlnXX1 | |
215 | + hLGEEYaaHrB10WKzqvkdLvI4xxPucIFjtL/LNounev4ZHtindjBW8KptxevDX/CwgmuFdwe6doMgjSPF | |
216 | + R8zpyg/COrZ0/EIQXAA+CHWMyE85RwAAAABJRU5ErkJgggs= | |
217 | +</value> | |
218 | + </data> | |
219 | + <data name="simpleButton_OUT.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
220 | + <value> | |
221 | + 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 | |
255 | +</value> | |
256 | + </data> | |
257 | + <data name="simpleButton_Search.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
258 | + <value> | |
259 | + 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 | |
296 | + 2QGDfwPeXb++Nf0EWQAAAABJRU5ErkJggg== | |
297 | +</value> | |
298 | + </data> | |
299 | + <data name="simpleButton_Print.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
300 | + <value> | |
301 | + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAx0RVh0VGl0 | |
302 | + bGUAUHJpbnQ7yDYy6gAACE1JREFUWEell3tQVNcdx2ltHkZr0tQ4SR/Tpp12Ov3DJplpk5hOJrWSih2T | |
303 | + iJppjR0ChKBheSsgpIjGF6kIQkAB5RXwgchbKoEgyht5GQwsC+yLxy6wsDyXl/jt73furixgzJjemc+e | |
304 | + e8899/f9nnPuOfe3NgAWYD6+Ryz7PLfxWlreLTCpFnKbCKmk+/NkNyIlh+Ayu0GQnNWAsxm11ynWY8T3 | |
305 | + OfASvSUV0sEGHuGA/+9xJuMmB11BLOPAVLVQb0mFdLDbxxIv12N2dg6mqTswTc5igpDKGcG4SWJMMI2x | |
306 | + CWYGo+PTAtPUDE6fq+Kgq4gfcOAleksqpIMNPB53sRZT03P3hMZJZJRELIww41PENIbHpgRGZpSZFM9E | |
307 | + pZRz0KeIhzawPDq1CpPUCyEyxiKEObgkRCUxRAyOEMMSBqMJA8MmMQphZ0o56I+IhzLA87UiPKlMDPUQ | |
308 | + BWcGKagQEJAIC5npH5oQ9DGD48QEjPTM0ZhiDvpj4hEO/A16Sw42sPLT2GtiXoXIEGMWoeAW9IZx6AfG | |
309 | + oBsYR69gDL39Y+ghDMYJhEQUsMpqgg3wy/3AgxswPFyrDn1WJOZ1XkSCRVhA0DeG7r5RCf0ouvQj0Ook | |
310 | + 2GBgaC4beJZ43ByXp3eJEa7gG9yAnT5BrAkOKxDDzsF7iC6GBLpIyCKi1Q1DQ6W6lxkWqHoYozDo+0km | |
311 | + G/g1wdPwQ2I5wRr3jPDPssMRF59PyKjNSMqq7/X8OAq++6PhdyyHhnxcCGjMAhoKrqbgLKJkuo1mhtDZ | |
312 | + ZUSn1ogO7RA6uoagJbOyjy/CMzACuwPCEZ1aoYtI+DLHyS3k96TJIyL2hmXHojLXXrxya1hJD03Q0vnQ | |
313 | + 7wQSrrTA5+BlMbdCgINT2UltOs0CLNSuHSSGoNBQSSjUg2gTGKAiw67+qYjNaoSTZyjGaDUp1ANIyKgZ | |
314 | + cfM7sY60eYe0efR0WkV2h8ZAy2YKd+/exfueR3Dqch3cyD0PvxAgIYsIB5cYhFzFGCBXGtBKiJKuW5UD | |
315 | + wqyzbwqiLlRhx64QzMzcwQCtkLbOfhyNLrhK2jwlNstjUitHtL1GdOmMZAD4p+t+RJ6rhN1Wb8ILdvbe | |
316 | + 2EjlRvuF/I3Z4mnGA2++I2ErcIft2xKRaZXY6rBPxO7UGqCkToSeLp4gbX4vbFacTK6AQtkPDc0jj4Dd | |
317 | + ux44EJVrRd78eeSia+v6yMXtLOd52PD2LszN3UU76TTLe3Hosy/45VzDBlYep93qtkKHTpqGO9Ro03YZ | |
318 | + HGShcPYMg7NXOHb7x5iJhntQLLz2nyUSrMp5ZEFxUtsA6Rln73A4eoThL393xuydObS061HfrEXwCbE/ | |
319 | + 8PK0WXX0VDEaW3rQphrADDXaF3KShs4Ndtt4CizQVCy63mQ+32RdL86ltpu4pLr1m3fBN/A4pugdaG7T | |
320 | + oapRjX3S/vATNvDkgchC3LylpVHQY3J6FvJ2NWzfcsUbm1yx4S0381zSvN7Dcj0/z0uv3fHXzTK8vtEF | |
321 | + b9g5oqVNJT5O9be7UVbbiT2fZLGBn7GBp/5NG055nQoNX3eLrxx/aDTd/cK17eYP8dKft+OldcRr2/Hi | |
322 | + um10vg0vvirxwqtbzdjjhVck/vCyPda+vAXrSdjLPxTqrj4Rkz9a3PviCgU8919iAz9nA08H0HCUVHWg | |
323 | + ukkDw4gJev6Y0J5vHJsUhsS3/jsgdWZSxNJRTOYG9b6gtBUfBZ1nA79gA6v3HMrCf6/Lcf2mUnxQ1LS9 | |
324 | + WlCZud+1db3AshWbr3kjsm7HZVG5AtlfNNNml8oGfskGnvE5mImsotsopJudtM220iZjQb6o/C5YP5tX | |
325 | + 0oIL+Y34YO/nbOBXbGCNZ0gGzhfcQg7d/LpzAA1tejSaaaAXk68tdaKkOuv74vw+7cS9RfcvFX6F5Ow6 | |
326 | + sUOSNn+kbJ51D06nygakX21GXasOlc09eE8Wgz9uDMSfCC4fBLd5UDuOVflVj4iblteI+PRaOPoksYHf | |
327 | + sIHn3IIuIP7STUq7m1DW1IWiWhXcg1NpntJgomUZcV2PMzUDiCfO1PQjrrofsVV9iK7QI+iKFoH5WgTk | |
328 | + abA3R409WSp4X1bBOUlBb/0UdridhltQMopqlLhWr0FiZh2i06rg4CUM/FYY2B14DqfOVyMhq16I55e3 | |
329 | + o4yWCy8VzoQ/LekhsT7EENHlfYgiIsv0OFLcg30k7J+rgV82iRM+mWp4kQGnpDZaUVM01EkoqVUgv6wN | |
330 | + hdVKxKbX4CQlqv/ySLg3Amtc9qYMhyWWIY5GIb+iA9mlcqRdbSLnF2g5zeBQYRcibugQTiNxolSP46U6 | |
331 | + /KdEhyDquV8O9TxbI3ruk6kS4p4ZSjgmtqGfkhkHrwQk5dZSzFbkUceiz1XjWFwJTUvcCGmLVbDqTfu9 | |
332 | + ju/JYg07ZfHY6RaPf+w+hS1O4dghixVrOThfg9Ave3CMKe7GkaIeHCzsJlE1fBkS9iFhrwwVPC6pIEtX | |
333 | + wiFBTuvfhHccIvD65iBs2HYYtu8ege32w1hvf2Bo7Ss7PiJtzhVFevQk8RzBG8PzBA/NWi9aHUZKxf1z | |
334 | + VPCnHvqRkF+mEnsI9/MdcElVwCVFgQ+SFWLOedgdE+Uk3gaHs3LaeExwkZbbaxyP4EzodwRrsLhISERK | |
335 | + RjxqruCcbSWxmhOSQZrHwWFGyvkHGMqS9dQ7PWfFhM7AO51JlL2LMC+3nxLcSY7L+SanY5a8UBxswho2 | |
336 | + 9ISLX/IN14A0SqskePdyYahXDG8mzr5MCpx8mGQJ72Q4Eu97J2GnLK6CYrG4dUZs4Rv/KPBNS3bMD/M/ | |
337 | + m6fNcBbD8BBaeMYMJxjW8D1+/qH/HfNhGQlLqn4/eNq+jQX/BRbqweZ/Pa0K/+6HvEAAAAAASUVORK5C | |
338 | + YII= | |
339 | +</value> | |
340 | + </data> | |
341 | + <data name="simpleButton_Excel_Save.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
342 | + <value> | |
343 | + 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 | |
381 | +</value> | |
382 | + </data> | |
383 | + <data name="simpleButton_Close.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
384 | + <value> | |
385 | + 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 | |
421 | +</value> | |
422 | + </data> | |
423 | + <data name="simpleButton_Cust_Search.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
424 | + <value> | |
425 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAt0RVh0VGl0 | |
426 | + bGUAWm9vbTvPCf68AAADeklEQVQ4T3WTX0yTVxjGD2iGJgreLNmNGnfhonHuhg0yFYOCZGzRgk7T4CBE | |
427 | + lAWYJtTYiKWIBfotaAWGgiJqsQUGpaOFydwI6R/4aIuFroAbDmRxCHRYKwwQiuTZ+xVNdrM3+eV87znn | |
428 | + eb73/GMAAlCsunzdEH67nm9S6xzj6qaHuNvo8FRprcb8Ym0Ujb9DBL2dL/+2SdCwQBIbfyzkhsaSr7vv | |
429 | + 9v8+8jdm5xapG4H2t2EPNHrH6wKVviQ8MnYDSYIFzdl87YoBxarKe+aCny1D8C8t4yf+KeQVPTiRb0Iu | |
430 | + ta2df2Ju3o+6ZjukCk0dzV9LBGVIqwNidqWi9ZOGFpf/1cISuDt9yFZ1g3d68GO3F+fvjOAkZ0NBdS+m | |
431 | + fHNQftcC8YlLiSRbnXr6+opBhdraPDA0gTb6c3aJDTM+P8YmFtE/Mg+jbRrcD1PIUtnR8Msw2kz9SMks | |
432 | + bSfZWvEp1YrBNbVlXFjr2XIeVuckxiYX4X4yD8vAPzD2vISqbQplbc+QXdqFodEpJKWXvCDZ+oRkjhlP | |
433 | + RjBWcsuE18vLSFF24EGfF+7ROZgfzaC1bxoa3osq83PU2nxILzZhdHwaR1KLhSML+0KsYPez9jLGlT/w | |
434 | + zMwuQFLZDWnjEzQ6fTC4XkJt9+Im/xzf9/mgsXsgrbKh99E4SDgtGMQdyWOtGXsYu6DU6+y9o6g304ZV | |
435 | + 2qHomARn9aDC4UVdvw/NQzNQGgZR2/EHanRd2C+SmslgXUyCjBnSdzOWdqYsXsbpqTwfZLVOZNY4cdny | |
436 | + F2oGvbjtnMAlQz84vQuOwQkcTuEQvic5jQxC9otymD5tF31S8lVmeS1X1gLXYw/UpsfIqe/BqapOyBse | |
437 | + QmsZBu9+hoxzNyHNkID7fHshaUKJ4MbUTwMGQe9/ELHhoFhRmpx1bVmt48H/Ogb3iBddrqe4oTVBdLwQ | |
438 | + 8szTWBioRI8qCYVx2wpIt14wefsOgok1kTHpB6i09tjEvIWYxDxab64/Kl5i/ijymFi2d4vSUnQUcHHo | |
439 | + LkqAPHorR5qw/z6mIGI1IVxVwT3sDeuIECJUErGxqF0WD3RKYJUdgCJuRyHbJ7rIokV5LPpQLiFj0Qcv | |
440 | + vCGH8hy279D5ABRClaFf73yPM36zG4uGJFR/GT4rDPxvaJM+ZsqozUyxaxO7GLlJ6AqYJG99V3E1dvsS | |
441 | + 99mH2n8BS6wgHnYivPsAAAAASUVORK5CYII= | |
442 | +</value> | |
443 | + </data> | |
444 | + <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | |
445 | + <value>66</value> | |
446 | + </metadata> | |
447 | +</root>(No newline at end of file) |
+++ .svn/pristine/07/07666a342d514982af29b6a95b6850b642f19032.svn-base
... | ... | @@ -0,0 +1,162 @@ |
1 | +<?xml version="1.0" encoding="utf-8"?> | |
2 | +<root> | |
3 | + <!-- | |
4 | + Microsoft ResX Schema | |
5 | + | |
6 | + Version 2.0 | |
7 | + | |
8 | + The primary goals of this format is to allow a simple XML format | |
9 | + that is mostly human readable. The generation and parsing of the | |
10 | + various data types are done through the TypeConverter classes | |
11 | + associated with the data types. | |
12 | + | |
13 | + Example: | |
14 | + | |
15 | + ... ado.net/XML headers & schema ... | |
16 | + <resheader name="resmimetype">text/microsoft-resx</resheader> | |
17 | + <resheader name="version">2.0</resheader> | |
18 | + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> | |
19 | + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> | |
20 | + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> | |
21 | + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> | |
22 | + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> | |
23 | + <value>[base64 mime encoded serialized .NET Framework object]</value> | |
24 | + </data> | |
25 | + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
26 | + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> | |
27 | + <comment>This is a comment</comment> | |
28 | + </data> | |
29 | + | |
30 | + There are any number of "resheader" rows that contain simple | |
31 | + name/value pairs. | |
32 | + | |
33 | + Each data row contains a name, and value. The row also contains a | |
34 | + type or mimetype. Type corresponds to a .NET class that support | |
35 | + text/value conversion through the TypeConverter architecture. | |
36 | + Classes that don't support this are serialized and stored with the | |
37 | + mimetype set. | |
38 | + | |
39 | + The mimetype is used for serialized objects, and tells the | |
40 | + ResXResourceReader how to depersist the object. This is currently not | |
41 | + extensible. For a given mimetype the value must be set accordingly: | |
42 | + | |
43 | + Note - application/x-microsoft.net.object.binary.base64 is the format | |
44 | + that the ResXResourceWriter will generate, however the reader can | |
45 | + read any of the formats listed below. | |
46 | + | |
47 | + mimetype: application/x-microsoft.net.object.binary.base64 | |
48 | + value : The object must be serialized with | |
49 | + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter | |
50 | + : and then encoded with base64 encoding. | |
51 | + | |
52 | + mimetype: application/x-microsoft.net.object.soap.base64 | |
53 | + value : The object must be serialized with | |
54 | + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter | |
55 | + : and then encoded with base64 encoding. | |
56 | + | |
57 | + mimetype: application/x-microsoft.net.object.bytearray.base64 | |
58 | + value : The object must be serialized into a byte array | |
59 | + : using a System.ComponentModel.TypeConverter | |
60 | + : and then encoded with base64 encoding. | |
61 | + --> | |
62 | + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | |
63 | + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> | |
64 | + <xsd:element name="root" msdata:IsDataSet="true"> | |
65 | + <xsd:complexType> | |
66 | + <xsd:choice maxOccurs="unbounded"> | |
67 | + <xsd:element name="metadata"> | |
68 | + <xsd:complexType> | |
69 | + <xsd:sequence> | |
70 | + <xsd:element name="value" type="xsd:string" minOccurs="0" /> | |
71 | + </xsd:sequence> | |
72 | + <xsd:attribute name="name" use="required" type="xsd:string" /> | |
73 | + <xsd:attribute name="type" type="xsd:string" /> | |
74 | + <xsd:attribute name="mimetype" type="xsd:string" /> | |
75 | + <xsd:attribute ref="xml:space" /> | |
76 | + </xsd:complexType> | |
77 | + </xsd:element> | |
78 | + <xsd:element name="assembly"> | |
79 | + <xsd:complexType> | |
80 | + <xsd:attribute name="alias" type="xsd:string" /> | |
81 | + <xsd:attribute name="name" type="xsd:string" /> | |
82 | + </xsd:complexType> | |
83 | + </xsd:element> | |
84 | + <xsd:element name="data"> | |
85 | + <xsd:complexType> | |
86 | + <xsd:sequence> | |
87 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
88 | + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> | |
89 | + </xsd:sequence> | |
90 | + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> | |
91 | + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> | |
92 | + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> | |
93 | + <xsd:attribute ref="xml:space" /> | |
94 | + </xsd:complexType> | |
95 | + </xsd:element> | |
96 | + <xsd:element name="resheader"> | |
97 | + <xsd:complexType> | |
98 | + <xsd:sequence> | |
99 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
100 | + </xsd:sequence> | |
101 | + <xsd:attribute name="name" type="xsd:string" use="required" /> | |
102 | + </xsd:complexType> | |
103 | + </xsd:element> | |
104 | + </xsd:choice> | |
105 | + </xsd:complexType> | |
106 | + </xsd:element> | |
107 | + </xsd:schema> | |
108 | + <resheader name="resmimetype"> | |
109 | + <value>text/microsoft-resx</value> | |
110 | + </resheader> | |
111 | + <resheader name="version"> | |
112 | + <value>2.0</value> | |
113 | + </resheader> | |
114 | + <resheader name="reader"> | |
115 | + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
116 | + </resheader> | |
117 | + <resheader name="writer"> | |
118 | + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
119 | + </resheader> | |
120 | + <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> | |
121 | + <data name="simpleButton_OK.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
122 | + <value> | |
123 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAt0RVh0VGl0 | |
124 | + bGUAU2F2ZTv56PkJAAAC9ElEQVQ4T4WTXUiTURjHV6YhYh9WmpSSGQPBNG1tuvk65+a+nHPT6WxOt+HM | |
125 | + r/zI75WmBkURdBME3QYFIYUYRVFBdJkfF2GpEV2oTec0K5crb/6d520XEkEHfrwv7zn/33nOeXgFobGd | |
126 | + EcbY8Rfh/yAiBM1vYwjCOE3FK05XAZt7AL1Dt9E1cAvt52+iufcGGtqvw91yBY6GS6h090NvaYGsoBxZ | |
127 | + ytLXLEtCQQSntcIzeA1WVx8CwU0ENv6wHuL7j034vvyAdyUAtakBrT2XkK0qBctGkmCntKAM3f1XYan2 | |
128 | + 8EFavLhKBPiQWKqBmNNiYtYHpcGNElsdJAozCaJIEEm2jvOXYbJ18TtS2BsKf5hbQxang7rIhgV/AHKt | |
129 | + kwlqIZIXkyCaBFHifDPaWFlF5W2s3F9YWA7gk/cb3n70Y5ztyimMMJQ6Mb+8jpyCKphP1yKTM5BgNwmi | |
130 | + T8mNaO4chLakid918oMPEzM+jDPGGG+mlzDHwnO+dWQrbDBVuJEu1ZJgLwl2ka2xrQ8qYx3yC2uh0NdA | |
131 | + rnEhV+NAjsoOqbKSBU8jK68CErkVxdYaHBerSbCPBHvSpTqcafGAKzDBWO5iOFFU5oTB4mBUo7C0GvqS | |
132 | + KuhK7NCZK9mcCykiJQkOkCAmVaJGTVMPL/jfkCnZfVhcEGbkkSCOBPtTRCo46jpYucX8otXvP7H6jQhi | |
133 | + 9WsQfvbuZ88VhiRPzypyIDmNI0E8CWLJZne3sjMaeIGfBSnAsxbE8toGj48hkqnZUaqQlColwSESHDyW | |
134 | + ngur8yy7ID36R2dxYWQGPQ+n0Tk8jbb779F87x0a706h/s4UTso00BRXIjFFQoIEEsQnpcpgsddDlKPF | |
135 | + 9ddLuPpqEZdfejH0/DP6ni7A83ge3aNz6GBkZKtYV8xIEIpIkEiCmMPCzDEyZkjVMA29RNHFF9B5nkHd | |
136 | + /QSKc4/ANY8gu/4BTtUOI02cD+EJDnFHjk+yLN8F+i2pn2Q7soWkLRzdQnLoW6xAIAj/DQXi/m5m2Bwf | |
137 | + AAAAAElFTkSuQmCC | |
138 | +</value> | |
139 | + </data> | |
140 | + <data name="simpleButton_Cancel.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
141 | + <value> | |
142 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACN0RVh0VGl0 | |
143 | + bGUAQ2FuY2VsO1N0b3A7RXhpdDtCYXJzO1JpYmJvbjtMlpayAAADmklEQVQ4TyWTf1CTdRzHvwim2KS6 | |
144 | + 0k5iXWAbIg6GbG2gHmPGhMEs+CMsT70yE1BGx3F5kCReFE7uNAMu7og6MBFk/LCEOZ15WUkXw8aAcgsE | |
145 | + +SHC9mzABtuR3rvv8/C9ez33vs/n834/3+9zz5d4TK3Ec7uDeO9cJXQF/pZ7RGQrKqh6cKLQMl5c9ISF | |
146 | + 1X8XamsMHxwU05kgSoDHpCcLxhZCA/SsMYCy2qrNKx799BP/7Ldfw93eAM/tTngp7vZGzNRXYezkCb/5 | |
147 | + 2NFSOruWsooLoCtAK5fxho7nmcYryuC51Y757ouY66iHq6UGruYauNvqMPdTI+jLMHH2cwwcz/1FEyl8 | |
148 | + gQ1hA4LMHx7+ZrS8lBovwVKUj7pwEYyZmXA2noOz4RxuZmVxNUvhMS5o7Msy/HH4/cvUu5Z0ZmVKrbk5 | |
149 | + Txj9d7hXkIMG1TswdZvRnFOCbnUGDOkaTpu6ermeOf8juK7UwZqf97Q+NTWJmDI0tSNfnMTj2grU8aPw | |
150 | + wD4Fh2sJ9lEGLdrTHPepnnZ6MWyb4mamq8sxcroEhrR0Pbm5Rz1sP/ouRrT7cUPzFv7UnYd36T84532w | |
151 | + PWRgG2MwO+fDwuIy1zNq9mI4Lxu2I9m4oUp7SK4rVMv/ZKdg6O0dsB+iW969Gz26C5hx+zBDd/LYTWF8 | |
152 | + +L3iKxiUStw/kIbBjAQMZiXBoEhZJlflScuW1DcwoJZhaG8irkm2w3jqLN3yEh45FzHl8FKWcL1Uh2vx | |
153 | + 2zGQLod1jxT9KglYL2kSy8d6lSuFrthtaPu4DAP/OjA56wWz4AMz78f4jBf99lnoC06hKyYaljfj0KsQ | |
154 | + oylWNkVqheLvTTtksCjFuBQuhHPaiUnHIlwLfvRfqOZYCfHA8cjJzfyVFIOfEyWoFsR2kqLQiF0Xo+Ke | |
155 | + mnduw12lHLcOHIKfYXBPVwmjLJ4i4TRbY3t3k2XoS4zGD1vEyH/5NTX7IwVXviK8fCVyKyzJsehJlqJV | |
156 | + GAmTLI5+Fzl3ZlaztR6FFBZFDPSRUTizScBenvVswKqta9ZtqNy4ua8pQgDzLhE1JaA/RYK+hCjKFnrm | |
157 | + eAyqE9C3U4TmzQKc2RhhFa15lk+9gWSi4D02JDD+Gd6msuf4LVUbwtEuiMAd8evoldJAyq9Ud9BaNe19 | |
158 | + 9jz/x+jVwa9ST9C4dh8h7IMTKxeDd3DdS6oSXmhreUjYhC6ED11IGMrXh00W80Lb9ge/qKEzIZTAFd8+ | |
159 | + 8j91kUbX3K/WKgAAAABJRU5ErkJggg== | |
160 | +</value> | |
161 | + </data> | |
162 | +</root>(No newline at end of file) |
+++ .svn/pristine/07/07ca6618dd0848a74422cd07c7a27ace1059cfb4.svn-base
Binary file is not shown |
+++ .svn/pristine/08/08723d295528cf1330bbeea4bcff112aeebb62b9.svn-base
... | ... | @@ -0,0 +1,196 @@ |
1 | +<?xml version="1.0" encoding="utf-8"?> | |
2 | +<root> | |
3 | + <!-- | |
4 | + Microsoft ResX Schema | |
5 | + | |
6 | + Version 2.0 | |
7 | + | |
8 | + The primary goals of this format is to allow a simple XML format | |
9 | + that is mostly human readable. The generation and parsing of the | |
10 | + various data types are done through the TypeConverter classes | |
11 | + associated with the data types. | |
12 | + | |
13 | + Example: | |
14 | + | |
15 | + ... ado.net/XML headers & schema ... | |
16 | + <resheader name="resmimetype">text/microsoft-resx</resheader> | |
17 | + <resheader name="version">2.0</resheader> | |
18 | + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> | |
19 | + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> | |
20 | + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> | |
21 | + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> | |
22 | + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> | |
23 | + <value>[base64 mime encoded serialized .NET Framework object]</value> | |
24 | + </data> | |
25 | + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
26 | + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> | |
27 | + <comment>This is a comment</comment> | |
28 | + </data> | |
29 | + | |
30 | + There are any number of "resheader" rows that contain simple | |
31 | + name/value pairs. | |
32 | + | |
33 | + Each data row contains a name, and value. The row also contains a | |
34 | + type or mimetype. Type corresponds to a .NET class that support | |
35 | + text/value conversion through the TypeConverter architecture. | |
36 | + Classes that don't support this are serialized and stored with the | |
37 | + mimetype set. | |
38 | + | |
39 | + The mimetype is used for serialized objects, and tells the | |
40 | + ResXResourceReader how to depersist the object. This is currently not | |
41 | + extensible. For a given mimetype the value must be set accordingly: | |
42 | + | |
43 | + Note - application/x-microsoft.net.object.binary.base64 is the format | |
44 | + that the ResXResourceWriter will generate, however the reader can | |
45 | + read any of the formats listed below. | |
46 | + | |
47 | + mimetype: application/x-microsoft.net.object.binary.base64 | |
48 | + value : The object must be serialized with | |
49 | + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter | |
50 | + : and then encoded with base64 encoding. | |
51 | + | |
52 | + mimetype: application/x-microsoft.net.object.soap.base64 | |
53 | + value : The object must be serialized with | |
54 | + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter | |
55 | + : and then encoded with base64 encoding. | |
56 | + | |
57 | + mimetype: application/x-microsoft.net.object.bytearray.base64 | |
58 | + value : The object must be serialized into a byte array | |
59 | + : using a System.ComponentModel.TypeConverter | |
60 | + : and then encoded with base64 encoding. | |
61 | + --> | |
62 | + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | |
63 | + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> | |
64 | + <xsd:element name="root" msdata:IsDataSet="true"> | |
65 | + <xsd:complexType> | |
66 | + <xsd:choice maxOccurs="unbounded"> | |
67 | + <xsd:element name="metadata"> | |
68 | + <xsd:complexType> | |
69 | + <xsd:sequence> | |
70 | + <xsd:element name="value" type="xsd:string" minOccurs="0" /> | |
71 | + </xsd:sequence> | |
72 | + <xsd:attribute name="name" use="required" type="xsd:string" /> | |
73 | + <xsd:attribute name="type" type="xsd:string" /> | |
74 | + <xsd:attribute name="mimetype" type="xsd:string" /> | |
75 | + <xsd:attribute ref="xml:space" /> | |
76 | + </xsd:complexType> | |
77 | + </xsd:element> | |
78 | + <xsd:element name="assembly"> | |
79 | + <xsd:complexType> | |
80 | + <xsd:attribute name="alias" type="xsd:string" /> | |
81 | + <xsd:attribute name="name" type="xsd:string" /> | |
82 | + </xsd:complexType> | |
83 | + </xsd:element> | |
84 | + <xsd:element name="data"> | |
85 | + <xsd:complexType> | |
86 | + <xsd:sequence> | |
87 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
88 | + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> | |
89 | + </xsd:sequence> | |
90 | + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> | |
91 | + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> | |
92 | + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> | |
93 | + <xsd:attribute ref="xml:space" /> | |
94 | + </xsd:complexType> | |
95 | + </xsd:element> | |
96 | + <xsd:element name="resheader"> | |
97 | + <xsd:complexType> | |
98 | + <xsd:sequence> | |
99 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
100 | + </xsd:sequence> | |
101 | + <xsd:attribute name="name" type="xsd:string" use="required" /> | |
102 | + </xsd:complexType> | |
103 | + </xsd:element> | |
104 | + </xsd:choice> | |
105 | + </xsd:complexType> | |
106 | + </xsd:element> | |
107 | + </xsd:schema> | |
108 | + <resheader name="resmimetype"> | |
109 | + <value>text/microsoft-resx</value> | |
110 | + </resheader> | |
111 | + <resheader name="version"> | |
112 | + <value>2.0</value> | |
113 | + </resheader> | |
114 | + <resheader name="reader"> | |
115 | + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
116 | + </resheader> | |
117 | + <resheader name="writer"> | |
118 | + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
119 | + </resheader> | |
120 | + <metadata name="m_Repository.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | |
121 | + <value>17, 17</value> | |
122 | + </metadata> | |
123 | + <metadata name="m_GridPopupMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | |
124 | + <value>279, 17</value> | |
125 | + </metadata> | |
126 | + <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> | |
127 | + <data name="simpleButton_AddGroup.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
128 | + <value> | |
129 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAD10RVh0VGl0 | |
130 | + bGUATmV3O1BhZ2U7QmFycztSaWJib247U3RhbmRhcmQ7SXRlbTtCbGFuaztEZWZhdWx0O0VtcHR5OxME | |
131 | + Uu0AAAIdSURBVDhPZZJbTxNRFIUbiWiBioB/zyewmhhJNAEpBKNGMdagmGoxIWIIosQnW2KMkhDwQjBG | |
132 | + Kv4GlUvb6X3uM8u1T2s7Eyb55szD+dY+++yJAIjw6Uqv5Dafrf7C/Opek9d7SL/6qXgqrAg5PHmZw9yL | |
133 | + nU90upXbCjgpG4OPL/Dl89VZfXjk8dIPkaLc0g7oTi3vigfL9mC2MCxiutBNB7rhoGG4cF0fs8+/i9Qb | |
134 | + Cphb2lVVldQWXSU1KNdJjd+26yG5sHMs4NTs4jd11I7koq5TJDXdRZVU+G05Hmbmt0XqCwacTi5IgB+S | |
135 | + lFin2HBQVtiqtdupzyLFggHRmfS2uqAaN1UZ0JEclOo2NFKq2aq96YdbIp0JBdxMfVEBbbFOkYJQrFko | |
136 | + Vi3kKxbvwkXiwYZI/cGAnhuPNuF5vhKkmsa1ULGVlC835aOyybYcjN1fPxbQm0huwGWAVFLVKB0pTBwK | |
137 | + JRMHpMIWr979KNLZYEDf2L11OJxxW2oJh5qJ/f8UTXUfo7feizQQDIhdu/OBAZ6SDjRD0RQN/C0Y+KPQ | |
138 | + oVVtXJ5+J9JgKOAKU23OWASptF+kSEQSfudNovNeLFyaXBNpKBQgqfKTyAirnIL0WuIkNE5A450UWDnP | |
139 | + 1qTF+ERGpNAJosPjb7YuTq0hPpVFfDKLkYksLiQyTa5nMExGxt8qzo8uf6UT+hNPkB7STwZaDLYYCnCu | |
140 | + tcZIF4DIP3Oy5FnUGr9wAAAAAElFTkSuQmCC | |
141 | +</value> | |
142 | + </data> | |
143 | + <data name="simpleButton_DeleteGroup.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
144 | + <value> | |
145 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACl0RVh0VGl0 | |
146 | + bGUAUmVtb3ZlO0RlbGV0ZTtCYXJzO1JpYmJvbjtTdGFuZGFyZDtjVkgwAAACeElEQVQ4T6WTW0iTYRjH | |
147 | + LXdw6nKtm0jaliWlkkrJKrtJb5KROYvMdEtrHqrNQ03zgI1ouF2kUnPqTSeJWVC2K01CyoEHyEGWkYEU | |
148 | + HcjoYGu1Sq/+vc+3aV91Vw/8vu99/8/z/2/f9/KFAfgvgpdftZQhCN2XkBAqWoczhAzqcz1+AAmCh6WH | |
149 | + zkwfK/s4uDv7CNvTMOmEcLRYZ6Te+OEiK9uLSecHhI8X623vr3RgfnIIU6fr0ZuZaWS6iIY9hfmmmfaz | |
150 | + rOfBu0tOjOgL7EwX8gNEE0V63/dRNwK9bZgbvoGJk1W4nKau6tuTW/2yzYZ5bx8CN1sRGOjGxEG9j3kk | |
151 | + /ACBa1u68YHJgK/udvi7rfhxrwf3K8rxzG7B3JgbX65aOX04X4tz8QnH6Uf5AfSc4s6k5MoR3T74upsx | |
152 | + 21WPQP8FfLt9EZ+6GjDbWYdBTQZssSozm40kDz+AikIkdsVa812tBh8cNXhrNTBKuHv/jq1olK+sZzPR | |
153 | + DDqloPePgMjzqeraMYMeb6zleFWzf5FRXR5aUtIa2YyU8VcAZ25JSDV7dPmYaa3FdIkG06Uh2Pq19SiG | |
154 | + 8vbCtj558V/wA0TNaxLNd3Ky8cJShicFGZhiXFunxPWEeG5NPD9RiAFNFizKDQ3M89spRHcoEv1PTQcw | |
155 | + mbsdj3LS0ROngFEQfcoojLL0xKkwqU3neFy0C05lkp95ZPyAiKYVKod78yZ4s9RwKVajUiSl540hTOKY | |
156 | + JpdKCe/OLbiVshF1cmUH06P4AfRSYmqksQ6bTOmrCJqXhXSuZ4xY3sR6n6ulq5xsLyedH0BFg3S+MoYk | |
157 | + tF+ohR4Z6QXShxX00uXfQdhPmOi/wI4pGN8AAAAASUVORK5CYII= | |
158 | +</value> | |
159 | + </data> | |
160 | + <data name="simpleButton_DeleteMoney.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
161 | + <value> | |
162 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACl0RVh0VGl0 | |
163 | + bGUAUmVtb3ZlO0RlbGV0ZTtCYXJzO1JpYmJvbjtTdGFuZGFyZDtjVkgwAAACeElEQVQ4T6WTW0iTYRjH | |
164 | + LXdw6nKtm0jaliWlkkrJKrtJb5KROYvMdEtrHqrNQ03zgI1ouF2kUnPqTSeJWVC2K01CyoEHyEGWkYEU | |
165 | + HcjoYGu1Sq/+vc+3aV91Vw/8vu99/8/z/2/f9/KFAfgvgpdftZQhCN2XkBAqWoczhAzqcz1+AAmCh6WH | |
166 | + zkwfK/s4uDv7CNvTMOmEcLRYZ6Te+OEiK9uLSecHhI8X623vr3RgfnIIU6fr0ZuZaWS6iIY9hfmmmfaz | |
167 | + rOfBu0tOjOgL7EwX8gNEE0V63/dRNwK9bZgbvoGJk1W4nKau6tuTW/2yzYZ5bx8CN1sRGOjGxEG9j3kk | |
168 | + /ACBa1u68YHJgK/udvi7rfhxrwf3K8rxzG7B3JgbX65aOX04X4tz8QnH6Uf5AfSc4s6k5MoR3T74upsx | |
169 | + 21WPQP8FfLt9EZ+6GjDbWYdBTQZssSozm40kDz+AikIkdsVa812tBh8cNXhrNTBKuHv/jq1olK+sZzPR | |
170 | + DDqloPePgMjzqeraMYMeb6zleFWzf5FRXR5aUtIa2YyU8VcAZ25JSDV7dPmYaa3FdIkG06Uh2Pq19SiG | |
171 | + 8vbCtj558V/wA0TNaxLNd3Ky8cJShicFGZhiXFunxPWEeG5NPD9RiAFNFizKDQ3M89spRHcoEv1PTQcw | |
172 | + mbsdj3LS0ROngFEQfcoojLL0xKkwqU3neFy0C05lkp95ZPyAiKYVKod78yZ4s9RwKVajUiSl540hTOKY | |
173 | + JpdKCe/OLbiVshF1cmUH06P4AfRSYmqksQ6bTOmrCJqXhXSuZ4xY3sR6n6ulq5xsLyedH0BFg3S+MoYk | |
174 | + tF+ohR4Z6QXShxX00uXfQdhPmOi/wI4pGN8AAAAASUVORK5CYII= | |
175 | +</value> | |
176 | + </data> | |
177 | + <data name="simpleButton_AddMoney.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
178 | + <value> | |
179 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAD10RVh0VGl0 | |
180 | + bGUATmV3O1BhZ2U7QmFycztSaWJib247U3RhbmRhcmQ7SXRlbTtCbGFuaztEZWZhdWx0O0VtcHR5OxME | |
181 | + Uu0AAAIdSURBVDhPZZJbTxNRFIUbiWiBioB/zyewmhhJNAEpBKNGMdagmGoxIWIIosQnW2KMkhDwQjBG | |
182 | + Kv4GlUvb6X3uM8u1T2s7Eyb55szD+dY+++yJAIjw6Uqv5Dafrf7C/Opek9d7SL/6qXgqrAg5PHmZw9yL | |
183 | + nU90upXbCjgpG4OPL/Dl89VZfXjk8dIPkaLc0g7oTi3vigfL9mC2MCxiutBNB7rhoGG4cF0fs8+/i9Qb | |
184 | + Cphb2lVVldQWXSU1KNdJjd+26yG5sHMs4NTs4jd11I7koq5TJDXdRZVU+G05Hmbmt0XqCwacTi5IgB+S | |
185 | + lFin2HBQVtiqtdupzyLFggHRmfS2uqAaN1UZ0JEclOo2NFKq2aq96YdbIp0JBdxMfVEBbbFOkYJQrFko | |
186 | + Vi3kKxbvwkXiwYZI/cGAnhuPNuF5vhKkmsa1ULGVlC835aOyybYcjN1fPxbQm0huwGWAVFLVKB0pTBwK | |
187 | + JRMHpMIWr979KNLZYEDf2L11OJxxW2oJh5qJ/f8UTXUfo7feizQQDIhdu/OBAZ6SDjRD0RQN/C0Y+KPQ | |
188 | + oVVtXJ5+J9JgKOAKU23OWASptF+kSEQSfudNovNeLFyaXBNpKBQgqfKTyAirnIL0WuIkNE5A450UWDnP | |
189 | + 1qTF+ERGpNAJosPjb7YuTq0hPpVFfDKLkYksLiQyTa5nMExGxt8qzo8uf6UT+hNPkB7STwZaDLYYCnCu | |
190 | + tcZIF4DIP3Oy5FnUGr9wAAAAAElFTkSuQmCC | |
191 | +</value> | |
192 | + </data> | |
193 | + <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | |
194 | + <value>116</value> | |
195 | + </metadata> | |
196 | +</root>(No newline at end of file) |
+++ .svn/pristine/09/096665d4cf6be3ae2756a349a8a5d0c66acb7e59.svn-base
Binary file is not shown |
+++ .svn/pristine/0a/0a051bc38f72a9df86c1b1767d7b3f007535d964.svn-base
... | ... | @@ -0,0 +1,838 @@ |
1 | +using ClientLib; | |
2 | +using ClientLib.CommonService; | |
3 | +using DevExpress.XtraEditors; | |
4 | +using DevExpress.XtraGrid.Views.Grid.ViewInfo; | |
5 | +using PublicLib; | |
6 | +using System; | |
7 | +using System.Collections.Generic; | |
8 | +using System.ComponentModel; | |
9 | +using System.Data; | |
10 | +using System.Drawing; | |
11 | +using System.Linq; | |
12 | +using System.Net; | |
13 | +using System.Text; | |
14 | +using System.Windows.Forms; | |
15 | +using System.Xml; | |
16 | + | |
17 | +namespace HANMI_SALE | |
18 | +{ | |
19 | + partial class InitialManagerPopup : XtraForm | |
20 | + { | |
21 | + private string m_Type; | |
22 | + private string m_ROUT_CD; | |
23 | + private string m_ORDER_NO; | |
24 | + private bool m_Change_Date; | |
25 | + private DataTable m_ORDER_M; | |
26 | + | |
27 | + private CommonMDI m_Parent; | |
28 | + | |
29 | + public InitialManagerPopup(CommonMDI parent) | |
30 | + { | |
31 | + InitializeComponent(); | |
32 | + | |
33 | + m_Parent = parent; | |
34 | + this.Icon = ConstClass._MAIN.Icon; | |
35 | + m_ORDER_M = null; | |
36 | + | |
37 | + textEdit_CUST_NM.ImeMode = System.Windows.Forms.ImeMode.Hangul; | |
38 | + textEdit_FILE_NM.ImeMode = System.Windows.Forms.ImeMode.Hangul; | |
39 | + textEdit_ITEM_NM.ImeMode = System.Windows.Forms.ImeMode.Hangul; | |
40 | + textEdit_ORDER_NORM.ImeMode = System.Windows.Forms.ImeMode.Hangul; | |
41 | + | |
42 | + m_Type = "I"; | |
43 | + m_ROUT_CD = ""; | |
44 | + m_ORDER_NO = ""; | |
45 | + m_Change_Date = false; | |
46 | + | |
47 | + simpleButton_DELETE.Enabled = false; | |
48 | + simpleButton_UPDATE.Enabled = false; | |
49 | + | |
50 | + dateEdit_ORDER_DATE.DateTime = DateTime.Now; | |
51 | + | |
52 | + DataView orderUnitCD = new DataView(ConstClass._DATA); | |
53 | + orderUnitCD.RowFilter = "CATE_CD = 'C' and GRP_CD = 'C03'"; | |
54 | + UtilClass.SetLookup(lookUpEdit_ORDER_UNIT_CD, orderUnitCD, "NO_CD", "NO_CD_NM", true); | |
55 | + | |
56 | + getLookup(); | |
57 | + | |
58 | + | |
59 | + simpleButton_Print.Click += (sender, e) => | |
60 | + { | |
61 | + DataTable aData = gridControl_Main.DataSource as DataTable; | |
62 | + | |
63 | + if (m_ORDER_M.Rows.Count <= 0) | |
64 | + { | |
65 | + return; | |
66 | + } | |
67 | + if (aData == null) | |
68 | + { | |
69 | + return; | |
70 | + } | |
71 | + | |
72 | + InitialInputReport report = new InitialInputReport(); | |
73 | + report.SetData("견적서", m_ORDER_M.Rows[0], aData); | |
74 | + }; | |
75 | + | |
76 | + simpleButton_COPY_COST.Click += (sender, e) => | |
77 | + { | |
78 | + if (XtraMessageBox.Show("견적서 내용을 원가로 복사하시겠습니까?", "복사", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) != DialogResult.Yes) | |
79 | + { | |
80 | + return; | |
81 | + } | |
82 | + | |
83 | + try | |
84 | + { | |
85 | + this.Cursor = Cursors.WaitCursor; | |
86 | + | |
87 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] | |
88 | + { | |
89 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD), | |
90 | + ClientClass.CreateSqlParameter("INITIAL_NO", SqlDbType.NVarChar, m_ORDER_NO), | |
91 | + ClientClass.CreateSqlParameter("REG_ID", SqlDbType.NVarChar, ConstClass._USR_ID), | |
92 | + ClientClass.CreateSqlParameter("RESULT_STR", SqlDbType.NVarChar, "", ParameterDirection.Output, 1000) | |
93 | + }; | |
94 | + ResultData resultData = ClientClass.SetData("CopyCostToInitial", aParam); | |
95 | + if (resultData.isError || !UtilClass.isNull(resultData.ResultValue)) | |
96 | + { | |
97 | + throw new Exception(resultData.ResultValue); | |
98 | + } | |
99 | + | |
100 | + this.Cursor = Cursors.Arrow; | |
101 | + XtraMessageBox.Show("정상적으로 복사하였습니다."); | |
102 | + } | |
103 | + catch (Exception ex) | |
104 | + { | |
105 | + this.Cursor = Cursors.Arrow; | |
106 | + XtraMessageBox.Show(ex.Message); | |
107 | + } | |
108 | + }; | |
109 | + | |
110 | + simpleButton_COPY.Click += (sender, e) => | |
111 | + { | |
112 | + if (XtraMessageBox.Show("견적서 내용을 작업지시서로 복사하시겠습니까?", "복사", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) != DialogResult.Yes) | |
113 | + { | |
114 | + return; | |
115 | + } | |
116 | + | |
117 | + try | |
118 | + { | |
119 | + this.Cursor = Cursors.WaitCursor; | |
120 | + | |
121 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] | |
122 | + { | |
123 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD), | |
124 | + ClientClass.CreateSqlParameter("INITIAL_NO", SqlDbType.NVarChar, m_ORDER_NO), | |
125 | + ClientClass.CreateSqlParameter("REG_ID", SqlDbType.NVarChar, ConstClass._USR_ID), | |
126 | + ClientClass.CreateSqlParameter("RESULT_STR", SqlDbType.NVarChar, "", ParameterDirection.Output, 1000) | |
127 | + }; | |
128 | + ResultData resultData = ClientClass.SetData("CopyOrderToInitial", aParam); | |
129 | + if (resultData.isError || !UtilClass.isNull(resultData.ResultValue)) | |
130 | + { | |
131 | + throw new Exception(resultData.ResultValue); | |
132 | + } | |
133 | + | |
134 | + this.Cursor = Cursors.Arrow; | |
135 | + XtraMessageBox.Show("정상적으로 복사하였습니다."); | |
136 | + } | |
137 | + catch (Exception ex) | |
138 | + { | |
139 | + this.Cursor = Cursors.Arrow; | |
140 | + XtraMessageBox.Show(ex.Message); | |
141 | + } | |
142 | + }; | |
143 | + | |
144 | + textEdit_LN_RMK.KeyPress += (sender, e) => | |
145 | + { | |
146 | + if (e.KeyChar == '\r') | |
147 | + { | |
148 | + textEdit_CURR_UNIT_MY.Focus(); | |
149 | + //simpleButton_ADD.Focus(); | |
150 | + } | |
151 | + }; | |
152 | + | |
153 | + | |
154 | + | |
155 | + textEdit_VAT_MY.KeyPress += (sender, e) => | |
156 | + { | |
157 | + if (e.KeyChar == '\r') | |
158 | + { | |
159 | + if (gridView_Main.RowCount > 0) | |
160 | + { | |
161 | + simpleButton_MOD.Focus(); | |
162 | + } | |
163 | + else | |
164 | + { | |
165 | + simpleButton_ADD.Focus(); | |
166 | + } | |
167 | + } | |
168 | + }; | |
169 | + | |
170 | + textEdit_CUST_NM.KeyPress += (sender, e) => | |
171 | + { | |
172 | + if (e.KeyChar == '\r') | |
173 | + { | |
174 | + selectCustProc(); | |
175 | + } | |
176 | + }; | |
177 | + | |
178 | + dateEdit_ORDER_DATE.EditValueChanged += (sender, e) => | |
179 | + { | |
180 | + if (m_Type == "M") | |
181 | + { | |
182 | + m_Change_Date = true; | |
183 | + } | |
184 | + }; | |
185 | + | |
186 | + | |
187 | + textEdit_ITEM_NM.KeyPress += (sender, e) => | |
188 | + { | |
189 | + if (e.KeyChar == '\r') | |
190 | + { | |
191 | + selectItemProc(); | |
192 | + } | |
193 | + }; | |
194 | + | |
195 | + textEdit_ORDER_NORM.KeyPress += (sender, e) => | |
196 | + { | |
197 | + if (e.KeyChar == '\r') | |
198 | + { | |
199 | + selectNormProc(); | |
200 | + } | |
201 | + }; | |
202 | + | |
203 | + textEdit_CURR_UNIT_MY.EditValueChanged += (sender, e) => | |
204 | + { | |
205 | + int order_qty = UtilClass.toInt(textEdit_ORDER_QTY.Text); | |
206 | + int curr_unit_my = UtilClass.toInt(textEdit_CURR_UNIT_MY.Text); | |
207 | + int curr_my = order_qty * curr_unit_my; | |
208 | + textEdit_CURR_MY.Text = curr_my.ToString("n0"); | |
209 | + textEdit_VAT_MY.Text = Math.Truncate(curr_my * 0.1).ToString("n0"); | |
210 | + textEdit_ORDER_MY.Text = Math.Truncate(curr_my * 1.1).ToString("n0"); | |
211 | + }; | |
212 | + | |
213 | + textEdit_CURR_MY.EditValueChanged += (sender, e) => | |
214 | + { | |
215 | + int curr_my = UtilClass.toInt(textEdit_CURR_MY.Text); | |
216 | + textEdit_VAT_MY.Text = Math.Truncate(curr_my * 0.1).ToString("n0"); | |
217 | + textEdit_ORDER_MY.Text = Math.Truncate(curr_my * 1.1).ToString("n0"); | |
218 | + }; | |
219 | + | |
220 | + textEdit_VAT_MY.EditValueChanged += (sender, e) => | |
221 | + { | |
222 | + int curr_my = UtilClass.toInt(textEdit_CURR_MY.Text); | |
223 | + int vat_my = UtilClass.toInt(textEdit_VAT_MY.Text); | |
224 | + textEdit_ORDER_MY.Text = (curr_my + vat_my).ToString("n0"); | |
225 | + }; | |
226 | + | |
227 | + | |
228 | + simpleButton_Cust_Search.Click += (sender, e) => | |
229 | + { | |
230 | + selectCustProc(); | |
231 | + }; | |
232 | + | |
233 | + | |
234 | + simpleButton_ITEM_Search.Click += (sender, e) => | |
235 | + { | |
236 | + selectItemProc(); | |
237 | + }; | |
238 | + | |
239 | + simpleButton_NORM_Search.Click += (sender, e) => | |
240 | + { | |
241 | + selectNormProc(); | |
242 | + }; | |
243 | + | |
244 | + | |
245 | + textEdit_ORDER_QTY.Properties.Mask.UseMaskAsDisplayFormat = true; | |
246 | + textEdit_CURR_UNIT_MY.Properties.Mask.UseMaskAsDisplayFormat = true; | |
247 | + textEdit_CURR_MY.Properties.Mask.UseMaskAsDisplayFormat = true; | |
248 | + textEdit_VAT_MY.Properties.Mask.UseMaskAsDisplayFormat = true; | |
249 | + | |
250 | + textEdit_ORDER_QTY.MouseUp += textEditMouseUp; | |
251 | + textEdit_CURR_UNIT_MY.MouseUp += textEditMouseUp; | |
252 | + textEdit_CURR_MY.MouseUp += textEditMouseUp; | |
253 | + textEdit_VAT_MY.MouseUp += textEditMouseUp; | |
254 | + | |
255 | + | |
256 | + gridView_Main.FocusedRowChanged += (sender, e) => | |
257 | + { | |
258 | + DataRow row = gridView_Main.GetFocusedDataRow(); | |
259 | + if (row == null) | |
260 | + { | |
261 | + return; | |
262 | + } | |
263 | + textEdit_LN_SEQ.Text = UtilClass.toInt(row["LN_SEQ"]).ToString("00"); | |
264 | + textEdit_ITEM_CD.Text = UtilClass.toStr(row["ITEM_CD"]); | |
265 | + textEdit_ITEM_NM.Text = UtilClass.toStr(row["ITEM_NM"]); | |
266 | + textEdit_ORDER_NORM.Text = UtilClass.toStr(row["ORDER_NORM"]); | |
267 | + lookUpEdit_ORDER_UNIT_CD.EditValue = UtilClass.toStr(row["ORDER_UNIT_CD"]); | |
268 | + textEdit_ORDER_QTY.Text = UtilClass.toInt(row["ORDER_QTY"]).ToString("n0"); | |
269 | + textEdit_LN_RMK.Text = UtilClass.toStr(row["LN_RMK"]); | |
270 | + textEdit_CURR_UNIT_MY.Text = UtilClass.toInt(row["CURR_UNIT_MY"]).ToString("n0"); | |
271 | + textEdit_CURR_MY.Text = UtilClass.toInt(row["CURR_MY"]).ToString("n0"); | |
272 | + textEdit_VAT_MY.Text = UtilClass.toInt(row["VAT_MY"]).ToString("n0"); | |
273 | + textEdit_ORDER_MY.Text = UtilClass.toInt(row["ORDER_MY"]).ToString("n0"); | |
274 | + }; | |
275 | + | |
276 | + simpleButton_ADD.Click += (sender, e) => | |
277 | + { | |
278 | + if (UtilClass.isNull(textEdit_ITEM_CD.Text)) | |
279 | + { | |
280 | + XtraMessageBox.Show("[필수입력]상품코드를 입력하세요."); | |
281 | + return; | |
282 | + } | |
283 | + DataTable aData = gridControl_Main.DataSource as DataTable; | |
284 | + DataRow row = aData.NewRow(); | |
285 | + row["COMP_CD"] = ConstClass._COMP_CD; | |
286 | + row["ORDER_NO"] = textEdit_ORDER_SEQ.Text; | |
287 | + row["LN_SEQ"] = (aData.Rows.Count + 1).ToString("00"); | |
288 | + row["ROUT_CD"] = m_ROUT_CD; | |
289 | + row["ITEM_CD"] = textEdit_ITEM_CD.Text; | |
290 | + row["ITEM_NM"] = textEdit_ITEM_NM.Text; | |
291 | + row["ORDER_NORM"] = textEdit_ORDER_NORM.Text; | |
292 | + row["ORDER_UNIT_CD"] = UtilClass.toStr(lookUpEdit_ORDER_UNIT_CD.EditValue); | |
293 | + row["ORDER_UNIT_NM"] = lookUpEdit_ORDER_UNIT_CD.Text; | |
294 | + row["ORDER_QTY"] = UtilClass.toInt(textEdit_ORDER_QTY.Text); | |
295 | + row["CURR_UNIT_MY"] = UtilClass.toInt(textEdit_CURR_UNIT_MY.Text); | |
296 | + row["CURR_MY"] = UtilClass.toInt(textEdit_CURR_MY.Text); | |
297 | + row["VAT_MY"] = UtilClass.toInt(textEdit_VAT_MY.Text); | |
298 | + row["ORDER_MY"] = UtilClass.toInt(textEdit_ORDER_MY.Text); | |
299 | + row["LN_RMK"] = textEdit_LN_RMK.Text; | |
300 | + aData.Rows.Add(row); | |
301 | + }; | |
302 | + | |
303 | + simpleButton_MOD.Click += (sender, e) => | |
304 | + { | |
305 | + DataRow row = gridView_Main.GetFocusedDataRow(); | |
306 | + if (row == null) | |
307 | + { | |
308 | + return; | |
309 | + } | |
310 | + row["ROUT_CD"] = m_ROUT_CD; | |
311 | + row["ITEM_CD"] = textEdit_ITEM_CD.Text; | |
312 | + row["ITEM_NM"] = textEdit_ITEM_NM.Text; | |
313 | + row["ORDER_NORM"] = textEdit_ORDER_NORM.Text; | |
314 | + row["ORDER_UNIT_CD"] = UtilClass.toStr(lookUpEdit_ORDER_UNIT_CD.EditValue); | |
315 | + row["ORDER_UNIT_NM"] = lookUpEdit_ORDER_UNIT_CD.Text; | |
316 | + row["ORDER_QTY"] = UtilClass.toInt(textEdit_ORDER_QTY.Text); | |
317 | + row["CURR_UNIT_MY"] = UtilClass.toInt(textEdit_CURR_UNIT_MY.Text); | |
318 | + row["CURR_MY"] = UtilClass.toInt(textEdit_CURR_MY.Text); | |
319 | + row["VAT_MY"] = UtilClass.toInt(textEdit_VAT_MY.Text); | |
320 | + row["ORDER_MY"] = UtilClass.toInt(textEdit_ORDER_MY.Text); | |
321 | + row["LN_RMK"] = textEdit_LN_RMK.Text; | |
322 | + }; | |
323 | + | |
324 | + simpleButton_DEL.Click += (sender, e) => | |
325 | + { | |
326 | + DataRow row = gridView_Main.GetFocusedDataRow(); | |
327 | + if (row == null) | |
328 | + { | |
329 | + return; | |
330 | + } | |
331 | + if (XtraMessageBox.Show("삭제하시겠습니까?", "삭제", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) != DialogResult.Yes) | |
332 | + { | |
333 | + return; | |
334 | + } | |
335 | + | |
336 | + row.Delete(); | |
337 | + }; | |
338 | + | |
339 | + simpleButton_CLEAR.Click += (sender, e) => | |
340 | + { | |
341 | + m_ROUT_CD = ""; | |
342 | + textEdit_ITEM_CD.Text = ""; | |
343 | + textEdit_ITEM_NM.Text = ""; | |
344 | + textEdit_ORDER_NORM.Text = ""; | |
345 | + lookUpEdit_ORDER_UNIT_CD.EditValue = "01"; | |
346 | + textEdit_ORDER_QTY.Text = "0"; | |
347 | + textEdit_LN_RMK.Text = ""; | |
348 | + textEdit_CURR_UNIT_MY.Text = "0"; | |
349 | + textEdit_CURR_MY.Text = "0"; | |
350 | + textEdit_VAT_MY.Text = "0"; | |
351 | + textEdit_ORDER_MY.Text = "0"; | |
352 | + }; | |
353 | + | |
354 | + simpleButton_CLOSE.Click += (sender, e) => | |
355 | + { | |
356 | + this.Close(); | |
357 | + m_Parent.searchProc(); | |
358 | + }; | |
359 | + | |
360 | + simpleButton_CANCEL.Click += (sender, e) => | |
361 | + { | |
362 | + textEdit_ORDER_SEQ.Text = ""; | |
363 | + textEdit_LN_SEQ.Text = ""; | |
364 | + textEdit_CUST_NM.Text = ""; | |
365 | + textEdit_CUST_CD.Text = ""; | |
366 | + textEdit_FILE_NM.Text = ""; | |
367 | + }; | |
368 | + | |
369 | + simpleButton_INPUT.Click += (sender, e) => | |
370 | + { | |
371 | + m_Type = "I"; | |
372 | + string order_seq = getMaxOrderno(); | |
373 | + if (XtraMessageBox.Show("[" + order_seq +"] 작업을 등록하시겠습니까?", "등록", MessageBoxButtons.YesNo, MessageBoxIcon.Information) != DialogResult.Yes) | |
374 | + { | |
375 | + return; | |
376 | + } | |
377 | + | |
378 | + saveProc(); | |
379 | + }; | |
380 | + | |
381 | + simpleButton_UPDATE.Click += (sender, e) => | |
382 | + { | |
383 | + m_Type = "M"; | |
384 | + string order_seq = ""; | |
385 | + if (m_Change_Date) | |
386 | + { | |
387 | + order_seq = getMaxOrderno(); | |
388 | + } | |
389 | + else | |
390 | + { | |
391 | + order_seq = textEdit_ORDER_SEQ.Text; | |
392 | + } | |
393 | + if (XtraMessageBox.Show("[" + order_seq + "] 번호 자료를 수정하시겠습니까?", "등록", MessageBoxButtons.YesNo, MessageBoxIcon.Information) != DialogResult.Yes) | |
394 | + { | |
395 | + return; | |
396 | + } | |
397 | + | |
398 | + updateProc(); | |
399 | + }; | |
400 | + | |
401 | + simpleButton_DELETE.Click += (sender, e) => | |
402 | + { | |
403 | + if (XtraMessageBox.Show("[" + textEdit_ORDER_SEQ.Text + "] 번호 자료를 삭제하시겠습니까?", "삭제", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) != DialogResult.Yes) | |
404 | + { | |
405 | + return; | |
406 | + } | |
407 | + | |
408 | + deleteProc(); | |
409 | + }; | |
410 | + | |
411 | + this.FormClosed += (sender, e) => | |
412 | + { | |
413 | + bool isFind = false; | |
414 | + for (int i = 0; i < Application.OpenForms.Count; i++) | |
415 | + { | |
416 | + if (Application.OpenForms[i] is InitialManagerPopup) | |
417 | + { | |
418 | + isFind = true; | |
419 | + Application.OpenForms[i].BringToFront(); | |
420 | + Application.OpenForms[i].Focus(); | |
421 | + (Application.OpenForms[i] as InitialManagerPopup).textEdit_CUST_NM.Focus(); | |
422 | + break; | |
423 | + } | |
424 | + } | |
425 | + | |
426 | + if (!isFind) | |
427 | + { | |
428 | + if (m_Parent != null) | |
429 | + { | |
430 | + m_Parent.Activate(); | |
431 | + m_Parent.Focus(); | |
432 | + (m_Parent as InitialManager).textEdit_CUST_NM.Focus(); | |
433 | + } | |
434 | + } | |
435 | + }; | |
436 | + | |
437 | + this.Shown += (sender, e) => | |
438 | + { | |
439 | + m_Change_Date = false; | |
440 | + searchProc(); | |
441 | + }; | |
442 | + } | |
443 | + | |
444 | + | |
445 | + private void textEditMouseUp(object sender, MouseEventArgs e) | |
446 | + { | |
447 | + TextEdit edit = sender as TextEdit; | |
448 | + BeginInvoke(new Action(() => edit.SelectAll())); | |
449 | + } | |
450 | + | |
451 | + private void getLookup() | |
452 | + { | |
453 | + } | |
454 | + | |
455 | + private string getMaxOrderno() | |
456 | + { | |
457 | + try | |
458 | + { | |
459 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] | |
460 | + { | |
461 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD), | |
462 | + ClientClass.CreateSqlParameter("ORDER_DT", SqlDbType.NVarChar, dateEdit_ORDER_DATE.DateTime.ToString("yyyy.MM.dd")), | |
463 | + ClientClass.CreateSqlParameter("RESULT_STR", SqlDbType.NVarChar, "", ParameterDirection.Output, 1000) | |
464 | + }; | |
465 | + ResultData resultData = ClientClass.GetData("GetMaxInitial", aParam); | |
466 | + if (resultData.isError) | |
467 | + { | |
468 | + throw new Exception(resultData.ResultValue); | |
469 | + } | |
470 | + string returnvalue = ""; | |
471 | + if (resultData.TableData.Rows.Count > 0) | |
472 | + { | |
473 | + returnvalue = UtilClass.toStr(resultData.TableData.Rows[0]["ORDER_SEQ"]); | |
474 | + } | |
475 | + else | |
476 | + { | |
477 | + returnvalue = "0000"; | |
478 | + } | |
479 | + return returnvalue; | |
480 | + } | |
481 | + catch (Exception ex) | |
482 | + { | |
483 | + this.Cursor = Cursors.Arrow; | |
484 | + XtraMessageBox.Show(ex.Message); | |
485 | + return "0000"; | |
486 | + } | |
487 | + } | |
488 | + | |
489 | + private void selectCustProc() | |
490 | + { | |
491 | + SelectCustomerForm form = new SelectCustomerForm(textEdit_CUST_NM.Text); | |
492 | + form.TopMost = true; | |
493 | + if (form.ShowDialog() != System.Windows.Forms.DialogResult.Yes) | |
494 | + { | |
495 | + return; | |
496 | + } | |
497 | + textEdit_CUST_NM.Text = form.m_CUST_NN; | |
498 | + textEdit_CUST_CD.Text = form.m_CUST_CD; | |
499 | + textEdit_TEL_NO.Text = form.m_TEL_NO; | |
500 | + textEdit_OWNER_TEL_NO.Text = form.m_OWNER_TEL_NO; | |
501 | + textEdit_MGR_TEL_NO.Text = form.m_MGR_TEL_NO; | |
502 | + } | |
503 | + | |
504 | + | |
505 | + private void selectItemProc() | |
506 | + { | |
507 | + SelectItemForm form = new SelectItemForm(textEdit_ITEM_NM.Text); | |
508 | + form.TopMost = true; | |
509 | + if (form.ShowDialog() != System.Windows.Forms.DialogResult.Yes) | |
510 | + { | |
511 | + return; | |
512 | + } | |
513 | + m_ROUT_CD = form.m_ROUT_CD; | |
514 | + textEdit_ITEM_CD.Text = form.m_ITEM_CD; | |
515 | + textEdit_ITEM_NM.Text = form.m_ITEM_NM; | |
516 | + textEdit_ORDER_NORM.Focus(); | |
517 | + } | |
518 | + | |
519 | + private void selectNormProc() | |
520 | + { | |
521 | + SelectNormForm form = new SelectNormForm(textEdit_ITEM_CD.Text); | |
522 | + form.TopMost = true; | |
523 | + if (form.ShowDialog() != System.Windows.Forms.DialogResult.Yes) | |
524 | + { | |
525 | + return; | |
526 | + } | |
527 | + textEdit_ORDER_NORM.Text = form.m_NORM; | |
528 | + textEdit_ORDER_QTY.Focus(); | |
529 | + } | |
530 | + | |
531 | + public string initProc(string order_no) | |
532 | + { | |
533 | + string result = ""; | |
534 | + | |
535 | + try | |
536 | + { | |
537 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] | |
538 | + { | |
539 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD), | |
540 | + ClientClass.CreateSqlParameter("ORDER_NO", SqlDbType.NVarChar, order_no) | |
541 | + }; | |
542 | + ResultData resultData = ClientClass.GetData("GetInitialManagerPopup", aParam); | |
543 | + if (resultData.isError) | |
544 | + { | |
545 | + throw new Exception(resultData.ResultValue); | |
546 | + } | |
547 | + | |
548 | + if (resultData.DataList.Tables[0].Rows.Count > 0) | |
549 | + { | |
550 | + m_Type = "M"; | |
551 | + | |
552 | + simpleButton_INPUT.Enabled = true; | |
553 | + simpleButton_DELETE.Enabled = true; | |
554 | + simpleButton_UPDATE.Enabled = true; | |
555 | + | |
556 | + m_ORDER_M = resultData.DataList.Tables[0]; | |
557 | + DataRow row = resultData.DataList.Tables[0].Rows[0]; | |
558 | + | |
559 | + m_ORDER_NO = UtilClass.toStr(row["ORDER_NO"]); | |
560 | + dateEdit_ORDER_DATE.Text = UtilClass.toStr(row["ORDER_DATE"]); | |
561 | + textEdit_ORDER_SEQ.Text = UtilClass.toInt(row["ORDER_SEQ"]).ToString("0000"); | |
562 | + textEdit_CUST_NM.Text = UtilClass.toStr(row["CUST_NM"]); | |
563 | + textEdit_CUST_CD.Text = UtilClass.toStr(row["CUST_CD"]); | |
564 | + textEdit_FILE_NM.Text = UtilClass.toStr(row["FILE_NM"]); | |
565 | + textEdit_TEL_NO.Text = UtilClass.toStr(row["TEL_NO"]); | |
566 | + textEdit_OWNER_TEL_NO.Text = UtilClass.toStr(row["OWNER_TEL_NO"]); | |
567 | + textEdit_MGR_TEL_NO.Text = UtilClass.toStr(row["MGR_TEL_NO"]); | |
568 | + memoEdit_REMARK.Text = UtilClass.toStr(row["REMARK"]); | |
569 | + } | |
570 | + | |
571 | + gridControl_Main.DataSource = resultData.DataList.Tables[1]; | |
572 | + } | |
573 | + catch (Exception ex) | |
574 | + { | |
575 | + result = ex.Message; | |
576 | + } | |
577 | + | |
578 | + return result; | |
579 | + } | |
580 | + | |
581 | + private void searchProc() | |
582 | + { | |
583 | + try | |
584 | + { | |
585 | + } | |
586 | + catch (Exception ex) | |
587 | + { | |
588 | + this.Cursor = Cursors.Arrow; | |
589 | + XtraMessageBox.Show(ex.Message); | |
590 | + } | |
591 | + } | |
592 | + | |
593 | + private void saveProc() | |
594 | + { | |
595 | + try | |
596 | + { | |
597 | + this.Cursor = Cursors.WaitCursor; | |
598 | + gridView_Main.PostEditor(); | |
599 | + gridView_Main.UpdateCurrentRow(); | |
600 | + Application.DoEvents(); | |
601 | + | |
602 | + if (UtilClass.isNull(dateEdit_ORDER_DATE.EditValue)) | |
603 | + { | |
604 | + dateEdit_ORDER_DATE.Focus(); | |
605 | + throw new Exception("견적일을 선택하십시오."); | |
606 | + } | |
607 | + | |
608 | + if (UtilClass.isNull(textEdit_CUST_CD.EditValue)) | |
609 | + { | |
610 | + textEdit_FILE_NM.Focus(); | |
611 | + throw new Exception("거래선이 등록되어있지 않습니다."); | |
612 | + } | |
613 | + | |
614 | + if (UtilClass.isNull(textEdit_FILE_NM.EditValue)) | |
615 | + { | |
616 | + textEdit_FILE_NM.Focus(); | |
617 | + throw new Exception("파일이름을 입력하십시오."); | |
618 | + } | |
619 | + | |
620 | + | |
621 | + DataTable aData = gridControl_Main.DataSource as DataTable; | |
622 | + foreach(DataRow inrow in aData.Rows) | |
623 | + { | |
624 | + if (inrow.RowState == DataRowState.Deleted) | |
625 | + { | |
626 | + continue; | |
627 | + } | |
628 | + inrow["REG_ID"] = "MOD"; | |
629 | + } | |
630 | + DataTable dtData = UtilClass.GetDataTable(aData, true, | |
631 | + "LN_SEQ", "ROUT_CD", "ITEM_CD", "ORDER_NORM", "ORDER_UNIT_CD", | |
632 | + "ORDER_QTY", "CURR_UNIT_MY", "CURR_MY", "VAT_MY", "ORDER_MY", "LN_RMK" | |
633 | + ); | |
634 | + if (dtData.Rows.Count < 1 && m_Type == "I") | |
635 | + { | |
636 | + throw new Exception("작업내역이 없습니다. 작업명을 추가하세요."); | |
637 | + } | |
638 | + | |
639 | + dtData.TableName = "ADATA"; | |
640 | + ResultData data1 = new ResultData(); | |
641 | + data1.TableData = dtData; | |
642 | + ResultData[] dataList = new ResultData[] { data1 }; | |
643 | + | |
644 | + | |
645 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] | |
646 | + { | |
647 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD), | |
648 | + ClientClass.CreateSqlParameter("CUST_CD", SqlDbType.NVarChar, textEdit_CUST_CD.Text), | |
649 | + ClientClass.CreateSqlParameter("ORDER_DATE", SqlDbType.NVarChar, dateEdit_ORDER_DATE.DateTime.ToString("yyyy-MM-dd")), | |
650 | + ClientClass.CreateSqlParameter("FILE_NM", SqlDbType.NVarChar, textEdit_FILE_NM.Text), | |
651 | + ClientClass.CreateSqlParameter("REMARK", SqlDbType.NVarChar, memoEdit_REMARK.Text), | |
652 | + ClientClass.CreateSqlParameter("REG_ID", SqlDbType.NVarChar, ConstClass._USR_ID) | |
653 | + }; | |
654 | + | |
655 | + ResultData resultData = ClientClass.SetTableData("SaveInitialManagerPopup", dataList, aParam); | |
656 | + if (resultData.isError) | |
657 | + { | |
658 | + throw new Exception(resultData.ResultValue); | |
659 | + } | |
660 | + | |
661 | + this.Cursor = Cursors.Arrow; | |
662 | + | |
663 | + this.Close(); | |
664 | + m_Parent.searchProc(); | |
665 | + } | |
666 | + catch (Exception ex) | |
667 | + { | |
668 | + this.Cursor = Cursors.Arrow; | |
669 | + XtraMessageBox.Show(ex.Message); | |
670 | + } | |
671 | + } | |
672 | + | |
673 | + private void updateProc() | |
674 | + { | |
675 | + try | |
676 | + { | |
677 | + this.Cursor = Cursors.WaitCursor; | |
678 | + gridView_Main.PostEditor(); | |
679 | + gridView_Main.UpdateCurrentRow(); | |
680 | + Application.DoEvents(); | |
681 | + | |
682 | + if (UtilClass.isNull(dateEdit_ORDER_DATE.EditValue)) | |
683 | + { | |
684 | + dateEdit_ORDER_DATE.Focus(); | |
685 | + throw new Exception("견적일을 선택하십시오."); | |
686 | + } | |
687 | + | |
688 | + if (UtilClass.isNull(textEdit_CUST_CD.EditValue)) | |
689 | + { | |
690 | + textEdit_FILE_NM.Focus(); | |
691 | + throw new Exception("거래선이 등록되어있지 않습니다."); | |
692 | + } | |
693 | + | |
694 | + if (UtilClass.isNull(textEdit_FILE_NM.EditValue)) | |
695 | + { | |
696 | + textEdit_FILE_NM.Focus(); | |
697 | + throw new Exception("파일이름을 입력하십시오."); | |
698 | + } | |
699 | + | |
700 | + | |
701 | + DataTable aData = gridControl_Main.DataSource as DataTable; | |
702 | + DataTable dtData = UtilClass.GetDataTable(aData, true, | |
703 | + "LN_SEQ", "ROUT_CD", "ITEM_CD", "ORDER_NORM", "ORDER_UNIT_CD", | |
704 | + "ORDER_QTY", "CURR_UNIT_MY", "CURR_MY", "VAT_MY", "ORDER_MY", "LN_RMK" | |
705 | + ); | |
706 | + | |
707 | + | |
708 | + dtData.TableName = "ADATA"; | |
709 | + ResultData data1 = new ResultData(); | |
710 | + data1.TableData = dtData; | |
711 | + ResultData[] dataList = new ResultData[] { data1 }; | |
712 | + | |
713 | + | |
714 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] | |
715 | + { | |
716 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD), | |
717 | + ClientClass.CreateSqlParameter("ORDER_NO", SqlDbType.NVarChar, m_ORDER_NO), | |
718 | + ClientClass.CreateSqlParameter("CUST_CD", SqlDbType.NVarChar, textEdit_CUST_CD.Text), | |
719 | + ClientClass.CreateSqlParameter("ORDER_DT", SqlDbType.NVarChar, dateEdit_ORDER_DATE.DateTime.ToString("yyyy.MM.dd")), | |
720 | + ClientClass.CreateSqlParameter("FILE_NM", SqlDbType.NVarChar, textEdit_FILE_NM.Text), | |
721 | + ClientClass.CreateSqlParameter("REMARK", SqlDbType.NVarChar, memoEdit_REMARK.Text), | |
722 | + ClientClass.CreateSqlParameter("REG_ID", SqlDbType.NVarChar, ConstClass._USR_ID) | |
723 | + }; | |
724 | + | |
725 | + ResultData resultData = ClientClass.SetTableData("UpdateInitialManagerPopup", dataList, aParam); | |
726 | + if (resultData.isError) | |
727 | + { | |
728 | + throw new Exception(resultData.ResultValue); | |
729 | + } | |
730 | + | |
731 | + this.Cursor = Cursors.Arrow; | |
732 | + | |
733 | + this.Close(); | |
734 | + m_Parent.searchProc(); | |
735 | + } | |
736 | + catch (Exception ex) | |
737 | + { | |
738 | + this.Cursor = Cursors.Arrow; | |
739 | + XtraMessageBox.Show(ex.Message); | |
740 | + } | |
741 | + } | |
742 | + | |
743 | + private void deleteProc() | |
744 | + { | |
745 | + try | |
746 | + { | |
747 | + this.Cursor = Cursors.WaitCursor; | |
748 | + gridView_Main.PostEditor(); | |
749 | + gridView_Main.UpdateCurrentRow(); | |
750 | + Application.DoEvents(); | |
751 | + | |
752 | + | |
753 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] | |
754 | + { | |
755 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD), | |
756 | + ClientClass.CreateSqlParameter("ORDER_NO", SqlDbType.NVarChar, m_ORDER_NO), | |
757 | + ClientClass.CreateSqlParameter("RESULT_STR", SqlDbType.NVarChar, "", ParameterDirection.Output, 1000) | |
758 | + }; | |
759 | + | |
760 | + ResultData resultData = ClientClass.SetData("DeleteInitialManager", aParam); | |
761 | + if (resultData.isError) | |
762 | + { | |
763 | + throw new Exception(resultData.ResultValue); | |
764 | + } | |
765 | + if (!UtilClass.isNull(resultData.ResultValue)) | |
766 | + { | |
767 | + throw new Exception(resultData.ResultValue); | |
768 | + } | |
769 | + | |
770 | + this.Cursor = Cursors.Arrow; | |
771 | + | |
772 | + this.Close(); | |
773 | + m_Parent.searchProc(); | |
774 | + } | |
775 | + catch (Exception ex) | |
776 | + { | |
777 | + this.Cursor = Cursors.Arrow; | |
778 | + XtraMessageBox.Show(ex.Message); | |
779 | + } | |
780 | + } | |
781 | + | |
782 | + | |
783 | + protected override bool ProcessCmdKey(ref Message msg, Keys keyData) | |
784 | + { | |
785 | + if (keyData == (Keys.P | Keys.Alt)) | |
786 | + { | |
787 | + return true; | |
788 | + } | |
789 | + else if (keyData == (Keys.A | Keys.Alt)) | |
790 | + { | |
791 | + simpleButton_CANCEL.PerformClick(); | |
792 | + return true; | |
793 | + } | |
794 | + else if (keyData == (Keys.I | Keys.Alt)) | |
795 | + { | |
796 | + simpleButton_INPUT.PerformClick(); | |
797 | + return true; | |
798 | + } | |
799 | + else if (keyData == (Keys.M | Keys.Alt)) | |
800 | + { | |
801 | + simpleButton_UPDATE.PerformClick(); | |
802 | + return true; | |
803 | + } | |
804 | + else if (keyData == (Keys.D | Keys.Alt)) | |
805 | + { | |
806 | + simpleButton_DELETE.PerformClick(); | |
807 | + return true; | |
808 | + } | |
809 | + else if (keyData == (Keys.X | Keys.Alt)) | |
810 | + { | |
811 | + simpleButton_CLOSE.PerformClick(); | |
812 | + return true; | |
813 | + } | |
814 | + else if (keyData == (Keys.F5)) | |
815 | + { | |
816 | + simpleButton_ADD.PerformClick(); | |
817 | + return true; | |
818 | + } | |
819 | + else if (keyData == (Keys.F6)) | |
820 | + { | |
821 | + simpleButton_MOD.PerformClick(); | |
822 | + return true; | |
823 | + } | |
824 | + else if (keyData == (Keys.F7)) | |
825 | + { | |
826 | + simpleButton_DEL.PerformClick(); | |
827 | + return true; | |
828 | + } | |
829 | + else if (keyData == (Keys.F8)) | |
830 | + { | |
831 | + return true; | |
832 | + } | |
833 | + | |
834 | + return base.ProcessCmdKey(ref msg, keyData); | |
835 | + } | |
836 | + | |
837 | + } | |
838 | +} |
+++ .svn/pristine/0a/0a676ade4098f9be97b5452bcf1c9711e33ba01e.svn-base
Binary file is not shown |
+++ .svn/pristine/0a/0a709ed1b4af2bbe70866ff7c3ad5d1b5579740f.svn-base
Binary file is not shown |
+++ .svn/pristine/0a/0ab6d568c24d71d79f9c63c5aa02a2ea85d974be.svn-base
Binary file is not shown |
+++ .svn/pristine/0b/0b6040fd0a699ee46c6bec7cf6d11fa2d709cb2a.svn-base
... | ... | @@ -0,0 +1,445 @@ |
1 | +<?xml version="1.0" encoding="utf-8"?> | |
2 | +<root> | |
3 | + <!-- | |
4 | + Microsoft ResX Schema | |
5 | + | |
6 | + Version 2.0 | |
7 | + | |
8 | + The primary goals of this format is to allow a simple XML format | |
9 | + that is mostly human readable. The generation and parsing of the | |
10 | + various data types are done through the TypeConverter classes | |
11 | + associated with the data types. | |
12 | + | |
13 | + Example: | |
14 | + | |
15 | + ... ado.net/XML headers & schema ... | |
16 | + <resheader name="resmimetype">text/microsoft-resx</resheader> | |
17 | + <resheader name="version">2.0</resheader> | |
18 | + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> | |
19 | + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> | |
20 | + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> | |
21 | + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> | |
22 | + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> | |
23 | + <value>[base64 mime encoded serialized .NET Framework object]</value> | |
24 | + </data> | |
25 | + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
26 | + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> | |
27 | + <comment>This is a comment</comment> | |
28 | + </data> | |
29 | + | |
30 | + There are any number of "resheader" rows that contain simple | |
31 | + name/value pairs. | |
32 | + | |
33 | + Each data row contains a name, and value. The row also contains a | |
34 | + type or mimetype. Type corresponds to a .NET class that support | |
35 | + text/value conversion through the TypeConverter architecture. | |
36 | + Classes that don't support this are serialized and stored with the | |
37 | + mimetype set. | |
38 | + | |
39 | + The mimetype is used for serialized objects, and tells the | |
40 | + ResXResourceReader how to depersist the object. This is currently not | |
41 | + extensible. For a given mimetype the value must be set accordingly: | |
42 | + | |
43 | + Note - application/x-microsoft.net.object.binary.base64 is the format | |
44 | + that the ResXResourceWriter will generate, however the reader can | |
45 | + read any of the formats listed below. | |
46 | + | |
47 | + mimetype: application/x-microsoft.net.object.binary.base64 | |
48 | + value : The object must be serialized with | |
49 | + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter | |
50 | + : and then encoded with base64 encoding. | |
51 | + | |
52 | + mimetype: application/x-microsoft.net.object.soap.base64 | |
53 | + value : The object must be serialized with | |
54 | + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter | |
55 | + : and then encoded with base64 encoding. | |
56 | + | |
57 | + mimetype: application/x-microsoft.net.object.bytearray.base64 | |
58 | + value : The object must be serialized into a byte array | |
59 | + : using a System.ComponentModel.TypeConverter | |
60 | + : and then encoded with base64 encoding. | |
61 | + --> | |
62 | + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | |
63 | + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> | |
64 | + <xsd:element name="root" msdata:IsDataSet="true"> | |
65 | + <xsd:complexType> | |
66 | + <xsd:choice maxOccurs="unbounded"> | |
67 | + <xsd:element name="metadata"> | |
68 | + <xsd:complexType> | |
69 | + <xsd:sequence> | |
70 | + <xsd:element name="value" type="xsd:string" minOccurs="0" /> | |
71 | + </xsd:sequence> | |
72 | + <xsd:attribute name="name" use="required" type="xsd:string" /> | |
73 | + <xsd:attribute name="type" type="xsd:string" /> | |
74 | + <xsd:attribute name="mimetype" type="xsd:string" /> | |
75 | + <xsd:attribute ref="xml:space" /> | |
76 | + </xsd:complexType> | |
77 | + </xsd:element> | |
78 | + <xsd:element name="assembly"> | |
79 | + <xsd:complexType> | |
80 | + <xsd:attribute name="alias" type="xsd:string" /> | |
81 | + <xsd:attribute name="name" type="xsd:string" /> | |
82 | + </xsd:complexType> | |
83 | + </xsd:element> | |
84 | + <xsd:element name="data"> | |
85 | + <xsd:complexType> | |
86 | + <xsd:sequence> | |
87 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
88 | + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> | |
89 | + </xsd:sequence> | |
90 | + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> | |
91 | + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> | |
92 | + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> | |
93 | + <xsd:attribute ref="xml:space" /> | |
94 | + </xsd:complexType> | |
95 | + </xsd:element> | |
96 | + <xsd:element name="resheader"> | |
97 | + <xsd:complexType> | |
98 | + <xsd:sequence> | |
99 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
100 | + </xsd:sequence> | |
101 | + <xsd:attribute name="name" type="xsd:string" use="required" /> | |
102 | + </xsd:complexType> | |
103 | + </xsd:element> | |
104 | + </xsd:choice> | |
105 | + </xsd:complexType> | |
106 | + </xsd:element> | |
107 | + </xsd:schema> | |
108 | + <resheader name="resmimetype"> | |
109 | + <value>text/microsoft-resx</value> | |
110 | + </resheader> | |
111 | + <resheader name="version"> | |
112 | + <value>2.0</value> | |
113 | + </resheader> | |
114 | + <resheader name="reader"> | |
115 | + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
116 | + </resheader> | |
117 | + <resheader name="writer"> | |
118 | + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
119 | + </resheader> | |
120 | + <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> | |
121 | + <data name="simpleButton_CANCEL.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
122 | + <value> | |
123 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACN0RVh0VGl0 | |
124 | + bGUAQ2FuY2VsO1N0b3A7RXhpdDtCYXJzO1JpYmJvbjtMlpayAAADmklEQVQ4TyWTf1CTdRzHvwim2KS6 | |
125 | + 0k5iXWAbIg6GbG2gHmPGhMEs+CMsT70yE1BGx3F5kCReFE7uNAMu7og6MBFk/LCEOZ15WUkXw8aAcgsE | |
126 | + +SHC9mzABtuR3rvv8/C9ez33vs/n834/3+9zz5d4TK3Ec7uDeO9cJXQF/pZ7RGQrKqh6cKLQMl5c9ISF | |
127 | + 1X8XamsMHxwU05kgSoDHpCcLxhZCA/SsMYCy2qrNKx799BP/7Ldfw93eAM/tTngp7vZGzNRXYezkCb/5 | |
128 | + 2NFSOruWsooLoCtAK5fxho7nmcYryuC51Y757ouY66iHq6UGruYauNvqMPdTI+jLMHH2cwwcz/1FEyl8 | |
129 | + gQ1hA4LMHx7+ZrS8lBovwVKUj7pwEYyZmXA2noOz4RxuZmVxNUvhMS5o7Msy/HH4/cvUu5Z0ZmVKrbk5 | |
130 | + Txj9d7hXkIMG1TswdZvRnFOCbnUGDOkaTpu6ermeOf8juK7UwZqf97Q+NTWJmDI0tSNfnMTj2grU8aPw | |
131 | + wD4Fh2sJ9lEGLdrTHPepnnZ6MWyb4mamq8sxcroEhrR0Pbm5Rz1sP/ouRrT7cUPzFv7UnYd36T84532w | |
132 | + PWRgG2MwO+fDwuIy1zNq9mI4Lxu2I9m4oUp7SK4rVMv/ZKdg6O0dsB+iW969Gz26C5hx+zBDd/LYTWF8 | |
133 | + +L3iKxiUStw/kIbBjAQMZiXBoEhZJlflScuW1DcwoJZhaG8irkm2w3jqLN3yEh45FzHl8FKWcL1Uh2vx | |
134 | + 2zGQLod1jxT9KglYL2kSy8d6lSuFrthtaPu4DAP/OjA56wWz4AMz78f4jBf99lnoC06hKyYaljfj0KsQ | |
135 | + oylWNkVqheLvTTtksCjFuBQuhHPaiUnHIlwLfvRfqOZYCfHA8cjJzfyVFIOfEyWoFsR2kqLQiF0Xo+Ke | |
136 | + mnduw12lHLcOHIKfYXBPVwmjLJ4i4TRbY3t3k2XoS4zGD1vEyH/5NTX7IwVXviK8fCVyKyzJsehJlqJV | |
137 | + GAmTLI5+Fzl3ZlaztR6FFBZFDPSRUTizScBenvVswKqta9ZtqNy4ua8pQgDzLhE1JaA/RYK+hCjKFnrm | |
138 | + eAyqE9C3U4TmzQKc2RhhFa15lk+9gWSi4D02JDD+Gd6msuf4LVUbwtEuiMAd8evoldJAyq9Ud9BaNe19 | |
139 | + 9jz/x+jVwa9ST9C4dh8h7IMTKxeDd3DdS6oSXmhreUjYhC6ED11IGMrXh00W80Lb9ge/qKEzIZTAFd8+ | |
140 | + 8j91kUbX3K/WKgAAAABJRU5ErkJggg== | |
141 | +</value> | |
142 | + </data> | |
143 | + <data name="simpleButton_INPUT.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
144 | + <value> | |
145 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACV0RVh0VGl0 | |
146 | + bGUAQ29weTtCYXJzO1JpYmJvbjtTdGFuZGFyZDtDbG9uZW0O31sAAAJjSURBVDhPhZL7S1NhGMet5ebc | |
147 | + UvsP+qf6JTOiQijKdJWYrDTTaXnBS3mJJEgjwlWWGNmEzamtwtWvUQTZZRe3nbP7zs4u357n3c5MEBp8 | |
148 | + OIO938/zfc+zKgB7MJvNuok5r+ve/Cfcnf9MeDExt4XxOS/GmEdbGCWGHrxz01n9foLqcQoUiyCKFQpM | |
149 | + oUSeGJ79CDprFCH6HCB0xCGDwWBadHyBoiiQoylBRC4hRTOIJVVkcwXcmfGwoFYT6GzTHtfAzHv0T38g | |
150 | + PLBNbaJvyoNeZnITt4j7T7zYkZNQ1AJskxssMGmC6r6pjf/W7hp1wxeKIpPNo3vMzQKzJtD3TLCgiGQ6 | |
151 | + J0ik84J4Mo9YKidqW4ec+BWQkVLysI44WXBYExhujKyJiYmUijgJOBQtI9O9uXbH7VX88EfEgM7B1b2C | |
152 | + jkGnEFSCSQomVEEkkRW123rf4vvvMOL0e/uAgwV1mqDmar9D3JUDEk2U6BmOqQjFsghFs6L2xe7X+La9 | |
153 | + Q3IVl20rLKjXBMbWnhXxoiLxrIBDOwIFQSJBtc9fX8LX7aAY0nrzDQsaNEHtha5l5PLF3ZCsIEAEJQV+ | |
154 | + gq/W3PkKP30hupIq2vzbwHTOukSCgggFpIyAg356+sIZMfVMxyLGZ9eoyTKa25+uk6DyPzCdvfYSKq2K | |
155 | + A/4IBSMUJP6E0wIpruKU5Tn0ev1Rrs5hQlcRnL7yQuyaV8hvOUbrlGkTEm1AoncSJkFTm50P13NGQxPU | |
156 | + NLY8dp20PEOTxS4ONl6y40TrQomWBRwnjjU/XOdh+wkOEkaijqgv01DmSBn+biJ0uwJU/QWlHMOEoK1R | |
157 | + 1QAAAABJRU5ErkJggg== | |
158 | +</value> | |
159 | + </data> | |
160 | + <data name="simpleButton_UPDATE.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
161 | + <value> | |
162 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACB0RVh0VGl0 | |
163 | + bGUARWRpdDtCYXJzO1JpYmJvbjtTdGFuZGFyZDswE8PbAAACtUlEQVQ4T2WSW0hUQRjHT97Xy1oIJilt | |
164 | + og9GQgQVUQ+hBKWGIvnik/ViglCEBJVhpZTZFhEahuYFV1PUtvJSGaKihqVBpcZulkFZ2Orqqnt293j2 | |
165 | + 8u+bcXe1GvjNDHPm9//OmTMCAIGab0OHfqCp+wsau6fW6JqCpvMzp4HRwdCjpn18kPYHMI+77gB/tnFj | |
166 | + czGoc1G3PrpQq9UxQUGP/woIqH+qpymwKjshubGtEpIDVskOq80Oi82B6vZJJgQzj7u8o4AarZ5X5ZJX | |
167 | + dHDJQrJImGle2TLBhJB/AwKr2ib4q65LDohWEgmz1YEVYpnmFY0fmRA6fOug0HtlnzcgiCWzb9wocVEk | |
168 | + 0WLHEmG2yhh+94MJkUQAsckToCjXfICTAswWmarZvRLDJMpUXcaCyYyX9SWgyqg7vfMueaHegDv173mA | |
169 | + VxRJNMtriBIMRhNGtWX4+iyL9n3D5KMM3DweU+4JCFY/HIPD6eLCIlVcpNG4TOOKhFnDAkbarmNKm8ll | |
170 | + afoMBgsToT4S5T5JOtUblW9hd7iwsLLKmV9io4Rfs/MYbC6GrjWdy+JkHvrOJ6BPfRi5ieG1noDQaxUj | |
171 | + kO0uzJE4tyRRgA3ff/5Gf2MRPjWlcdk0egq9Z+PRU3IIJxPCNORFeQOK7r2mAKf7N8owzBnRr7mM8bqj | |
172 | + XDb0Z6MnPxadhfuRHRfSTM42ws8TEFRQ+mrg0u0hXCTua8ZQ8aAFQ+pjXJ7pysSLPBW0BXuQpVK00v4Y | |
173 | + JmdvpT/pDvAhFISSCCd2JBzI0XZUlcIy8wbPc1Voyd+FjOjAx/RMRfhNN6cIJyL81wI2wm4Yte27k8/N | |
174 | + jo/0oKHsAoqT4pEaFfiE1mMJf111sqCrThLSN/v+H9B7la4nVdkSkwxl5F6jQhnXGRGsyKG1aCanKX0F | |
175 | + RmqYj5AS5iP8AQSCmu1rvrSCAAAAAElFTkSuQmCC | |
176 | +</value> | |
177 | + </data> | |
178 | + <data name="simpleButton_DELETE.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
179 | + <value> | |
180 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACl0RVh0VGl0 | |
181 | + bGUAUmVtb3ZlO0RlbGV0ZTtCYXJzO1JpYmJvbjtTdGFuZGFyZDtjVkgwAAACeElEQVQ4T6WTW0iTYRjH | |
182 | + LXdw6nKtm0jaliWlkkrJKrtJb5KROYvMdEtrHqrNQ03zgI1ouF2kUnPqTSeJWVC2K01CyoEHyEGWkYEU | |
183 | + HcjoYGu1Sq/+vc+3aV91Vw/8vu99/8/z/2/f9/KFAfgvgpdftZQhCN2XkBAqWoczhAzqcz1+AAmCh6WH | |
184 | + zkwfK/s4uDv7CNvTMOmEcLRYZ6Te+OEiK9uLSecHhI8X623vr3RgfnIIU6fr0ZuZaWS6iIY9hfmmmfaz | |
185 | + rOfBu0tOjOgL7EwX8gNEE0V63/dRNwK9bZgbvoGJk1W4nKau6tuTW/2yzYZ5bx8CN1sRGOjGxEG9j3kk | |
186 | + /ACBa1u68YHJgK/udvi7rfhxrwf3K8rxzG7B3JgbX65aOX04X4tz8QnH6Uf5AfSc4s6k5MoR3T74upsx | |
187 | + 21WPQP8FfLt9EZ+6GjDbWYdBTQZssSozm40kDz+AikIkdsVa812tBh8cNXhrNTBKuHv/jq1olK+sZzPR | |
188 | + DDqloPePgMjzqeraMYMeb6zleFWzf5FRXR5aUtIa2YyU8VcAZ25JSDV7dPmYaa3FdIkG06Uh2Pq19SiG | |
189 | + 8vbCtj558V/wA0TNaxLNd3Ky8cJShicFGZhiXFunxPWEeG5NPD9RiAFNFizKDQ3M89spRHcoEv1PTQcw | |
190 | + mbsdj3LS0ROngFEQfcoojLL0xKkwqU3neFy0C05lkp95ZPyAiKYVKod78yZ4s9RwKVajUiSl540hTOKY | |
191 | + JpdKCe/OLbiVshF1cmUH06P4AfRSYmqksQ6bTOmrCJqXhXSuZ4xY3sR6n6ulq5xsLyedH0BFg3S+MoYk | |
192 | + tF+ohR4Z6QXShxX00uXfQdhPmOi/wI4pGN8AAAAASUVORK5CYII= | |
193 | +</value> | |
194 | + </data> | |
195 | + <data name="simpleButton_CLOSE.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
196 | + <value> | |
197 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAp0RVh0VGl0 | |
198 | + bGUAU3VtO2CGqkQAAAJpSURBVDhPpZNfSFNRHMevWzplbrJsIeisIBM3NcXIzCcnPZUPLbMFESsbaykG | |
199 | + EikWSVhkkCixbLXAxJTNqWwrK2uktZblrBn9wXKQVkTQH8KW7Trdt3OWD+vaU1343N/lnO/vc7jnnssA | |
200 | + +C9+3xgmisAnxHAQRBC7UKMJUVzBktHWortjF5QYMyrhNRbDe57QWown5wgGJR6fVWK0pQjOYwUuko/h | |
201 | + CgSe5k0I+YcRmr5PcCH0bZDgxPzXAcx/6cfcZwfmPvXhds162hC3SPCwURlk37Xj/YAOzpp83KjOQ39V | |
202 | + LhwHsmHTZaK3XI6ePRm4rF49SPNcQfTJQqnBY9qHubfN+Og6jv7a/Ksb0ySpZE5EEBLiFyrdBx5XQDcx | |
203 | + rj5PYhoxlGF24gQ+3KnDzcMF90pypMtpw+zUJSY4aWQc+myaD/dFCuhFJcLaTHGbu6kE7PMjmLpWhV59 | |
204 | + VjcZF7A+AxN43cLYtIpw+G8CHkHUWa5o91l1CDytxRvLTjRsSDSTcQE7foYJvGhk+vbKw2GuILx6lyaj | |
205 | + zddTCXa8CZNmNU4VSt3rpIIkMsf7+ayBmRmrZ2yaNJpfJIjt2LXm4qsuHdiXp+E1bEFdbsItmZBPl1tG | |
206 | + kERAN5LPFYivVyiC0556THSo4KjMgb1iLezkE9r1WbDtJ5BPadPK0bk7/RHJx3MFCY7ydMyMHIJ/SBOu | |
207 | + M6NHSa3Bj+Fq+N0H4Xfp8X1IC8s2GW1YyhUIr+xY5bKqV8JatiJM9/ZUWEtTYCmVwaJKgVmVDPPWZJg2 | |
208 | + Jz0geRFXQH8kelASCfSdKdII6Fmg0Gcx4c89+HfA/ALjLfMa6VnTRAAAAABJRU5ErkJggg== | |
209 | +</value> | |
210 | + </data> | |
211 | + <data name="simpleButton_PRINT.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
212 | + <value> | |
213 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAx0RVh0VGl0 | |
214 | + bGUAUHJpbnQ7yDYy6gAAAr9JREFUOE99k9lPU1EQxssW2URwSXz1xT9AIT4ZUCTyAEoiEAJxARIUTBCK | |
215 | + CilFgqzFlD0YJAEjJL4ZiQQkYpEaAlIK+IYSEVq7UAp0B0rbz5lr0JQHT/LL3HPuzDdn5s4VAfgLrYD2 | |
216 | + V+qJzsEFdA7OC3QQ7QNqgZa+L5PkE+wX47cRiYJIAF6fD16vDx7G48M+4d73Qt6vYqcjfjF+G5EoRN43 | |
217 | + KwSZLTvY2HYROzBtO7Hr9kD2Yoadwg7FCCuACCLCZb0zQjbjppNwwEDWYHbCtbOP+u4pjoghgolAQliB | |
218 | + jT3KpI7Br3N54i4UVb7E7p4H+g07dCYHYYPWZIfduYd88XNkFTRSKer5qtbRZIrlpKKQtoHFdSNlySxo | |
219 | + QB45OVxuaI02rBmt0BisWCO2bLvIKWpBSo4EepMTTb0qE8WGskCovH+BygFSsiXILmyB1bGHVb0FP3UW | |
220 | + rOi2BbgfN/IakHi9RPCt7Z7lciJYILyhZw5utxfpd6qQmPaQnIhrTBkuM6liXEoRI4FIzSoTfKWtQj+i | |
221 | + WCCyunOasrrxXqFGcvoDXEjMRVxCLmLjb+N8/C2cu3gTscSVlCKMjM/CSv141DTJAtEsEFXxTAnDlhM/ | |
222 | + DDasCNjp2mR1duHs4FywdK6nL1P8dJwFjrNAdGm9At91ViwumxGXLPkvC8sbWNJYUSgdY4ETLBBz/8kH | |
223 | + zH0zQzGvRW3XFCy2PdSN/ULNqBbSYS0eD61ikwaL342rVqFa2kB++QgLnGSByMx7/VM5xa+Rcbcf1e1K | |
224 | + YQqrhjWQvNOg/O0axG9WYdpyobpNiaSMOlzNkiEhTTpNsUITeRj44RRxRir/hHVyXqc6GZ4Po5kmkmyl | |
225 | + fIKzniVOE8eI4MP/QlhpzbCyovkjKpoVBFnZAQqU1Ax9Jp8Ivxi/zZ/bRBLcXa6P4Zsx/HyUCPoXA9Fv | |
226 | + k15uVlve/joAAAAASUVORK5CYII= | |
227 | +</value> | |
228 | + </data> | |
229 | + <data name="simpleButton_ACC_CLOSE.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
230 | + <value> | |
231 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAABZ0RVh0VGl0 | |
232 | + bGUAUHJvZHVjdDtCb3g7SXRlbQ71GmQAAAIDSURBVDhPndNbLNtRHAdw6tYyvIyKiNgikWnoEOLSGN54 | |
233 | + 2otI1EpSZEtYtsgSIeIWycLDXmwuMZIipK1bGluMoSlN3MKD6IxkL5No61qU0PrunL9WjOPFST75Pfy/ | |
234 | + 55t/zv9/XABwbixXgke4MdBn3Lred6uAp62Mqd1sz8BmWzo2WtOw0ZKG9S8vsP45FT/KRHUkQ4uYBbyp | |
235 | + cnHd71YJ9r9lOWTigODmaCYMzUn4/jainmZZBe6LDYm4PFvB5eky7KdLsFvnYT+Zg+1ID5tFB9uhFuPv | |
236 | + ImjYg1XgMV+fQDbMwDJTTBThyElXBIuuEBe7GoyVhtOwJ6vAc1j+BAZVCVaanl9pvDEbxVjryUdfThAN | |
237 | + ezEL9NVxOPz1FVvdyXf8VSRjb6EBo6/DaJjPKvCarYrF+VY/dlUShxTsKCUOKbCufoSmOJSGBawCvq5C | |
238 | + jLM/HdjpT4KZ6nNK5BwvVmJEHkLD3qwCgbY8ClbDJ5h7E2DqjeeYnXriycGWYqgg+N4C76kPIhwv18Ck | |
239 | + iIWRMClirhmJ/QkZBvO5Q/RhFfhMlj2DRf8e211iGLui/9cZhT3NS6jzhDT8iFlAf5KDn3Jsd4huieSY | |
240 | + lelQSQPvLeAPv3k6TV9xQBYEtUwI9StCKoQqLxBKaQCUuQFQZD+eJlnmV6A3kE/4En4M/o4pIO7ehYeB | |
241 | + yz8XaUK7uPbmkgAAAABJRU5ErkJggg== | |
242 | +</value> | |
243 | + </data> | |
244 | + <data name="simpleButton_ACC_PRINT.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
245 | + <value> | |
246 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAx0RVh0VGl0 | |
247 | + bGUAUHJpbnQ7yDYy6gAAAr9JREFUOE99k9lPU1EQxssW2URwSXz1xT9AIT4ZUCTyAEoiEAJxARIUTBCK | |
248 | + CilFgqzFlD0YJAEjJL4ZiQQkYpEaAlIK+IYSEVq7UAp0B0rbz5lr0JQHT/LL3HPuzDdn5s4VAfgLrYD2 | |
249 | + V+qJzsEFdA7OC3QQ7QNqgZa+L5PkE+wX47cRiYJIAF6fD16vDx7G48M+4d73Qt6vYqcjfjF+G5EoRN43 | |
250 | + KwSZLTvY2HYROzBtO7Hr9kD2Yoadwg7FCCuACCLCZb0zQjbjppNwwEDWYHbCtbOP+u4pjoghgolAQliB | |
251 | + jT3KpI7Br3N54i4UVb7E7p4H+g07dCYHYYPWZIfduYd88XNkFTRSKer5qtbRZIrlpKKQtoHFdSNlySxo | |
252 | + QB45OVxuaI02rBmt0BisWCO2bLvIKWpBSo4EepMTTb0qE8WGskCovH+BygFSsiXILmyB1bGHVb0FP3UW | |
253 | + rOi2BbgfN/IakHi9RPCt7Z7lciJYILyhZw5utxfpd6qQmPaQnIhrTBkuM6liXEoRI4FIzSoTfKWtQj+i | |
254 | + WCCyunOasrrxXqFGcvoDXEjMRVxCLmLjb+N8/C2cu3gTscSVlCKMjM/CSv141DTJAtEsEFXxTAnDlhM/ | |
255 | + DDasCNjp2mR1duHs4FywdK6nL1P8dJwFjrNAdGm9At91ViwumxGXLPkvC8sbWNJYUSgdY4ETLBBz/8kH | |
256 | + zH0zQzGvRW3XFCy2PdSN/ULNqBbSYS0eD61ikwaL342rVqFa2kB++QgLnGSByMx7/VM5xa+Rcbcf1e1K | |
257 | + YQqrhjWQvNOg/O0axG9WYdpyobpNiaSMOlzNkiEhTTpNsUITeRj44RRxRir/hHVyXqc6GZ4Po5kmkmyl | |
258 | + fIKzniVOE8eI4MP/QlhpzbCyovkjKpoVBFnZAQqU1Ax9Jp8Ivxi/zZ/bRBLcXa6P4Zsx/HyUCPoXA9Fv | |
259 | + k15uVlve/joAAAAASUVORK5CYII= | |
260 | +</value> | |
261 | + </data> | |
262 | + <data name="simpleButton_DEL.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
263 | + <value> | |
264 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAABl0RVh0VGl0 | |
265 | + bGUARGVsZXRlO1JlbW92ZTtNaW51c+upj0EAAANRSURBVDhPfZJdTFN3GMYPkPiBF2NeejEXkyVubtXg | |
266 | + YnSJMZu6KQazhWHZpnFxc06Z0xWwFqEwJS4NaBEtRKVJh6Ji+agUKaWipoIEQmf5sBUKpS0y+sEOlrbW | |
267 | + FZLH93+q8c4mv/R93/P8ntOLciPh/wXok0AkZpcbP86t7lFI1ZY+qcYaPK55xEvVfZacSw9L9xZfW0GZ | |
268 | + JJYdJofBjUZigpy6OWvh0cpupaymf76m04M2ewAWXxj/+MMwPpnGla4JyP62zh48YzpA+QXMeeVyCWs+ | |
269 | + Fy/8TdXdptQPY/C/KKz8C/QEouj0PkcX0Tsdv1m8YZQ22XGowqxf/tH6JcxlBUm/Ks0VZTo7BmdewOgK | |
270 | + wTAegtEdhmkiApMnDts7PGE8DsZQTi/6SWEsI3cBlymtXXW4sme+zxuB1jaDxidB6EZmoR8NocX5hmba | |
271 | + dY4gGui5xR+FpKo3tv2XsyJud0l7ldo0hrpBHjWPeNQO8KizPYPWHg+/5qYtiBuPnwnPrw/NoMbsgriw | |
272 | + Scl9f7LDWm/xobLbj10lBmzKrn0rYspc7PWjoT+ArOK2IS6z6M60pscHxd1JITAw/C+GHFOwO30Ydvkx | |
273 | + QjjcAThcAbgneWz54ybK7k9BTSWZ8nae+zrfOKu8N4ES01OhwMdHEHoeQygaQzg6hwgRppnts3TfKtHi | |
274 | + r45JlNILv5EZeC5N0jxwSj+KPw0T+O50OzYfrRNCX+bUI02mE+av8hqQdlyHHfm3sO+cGaeMTyG/5cS2 | |
275 | + I41W7osD11RHLltQbPBAQc3nzFM4/8CLC51Elxcq+mawnd3L7k2iyODG79VWbPzxciknSi9K3SZpiRU2 | |
276 | + jyOfOKF3ofC2C/JWN4paPRSOI6e5oMWFE4RM58SOvNa5DzbuX83+SIvW7VarMorvooDkY7pxSOnnyahM | |
277 | + Rnt+MwkCdGeQnHHyPtZmqSrITWYFiclL30/59AeNMb3gDqSNY1TiRF5TnFxhHkMuzRKtAzvlHSRX3yYv | |
278 | + hbmcfw6sJGlxynvvijIqqz77uT4mVnTh8BXbK3EM2Vdt2EW3Dfu1kZXbS3Io/w5zvMz1z+N1SSKRvHxD | |
279 | + 9voPd5ZfEGWq+0VijZ/wfvJttXVl+tnzy1L3rKHMYiKByd45cC8B0oKaPyRsCA8AAAAASUVORK5CYII= | |
280 | +</value> | |
281 | + </data> | |
282 | + <data name="simpleButton_MOD.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
283 | + <value> | |
284 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAC10RVh0VGl0 | |
285 | + bGUAREI7U291cmNlO1N0b3I7ZGF0YXNvdXJjZTtEYXRhYmFzZTtFZGl0KPa6nAAAAs5JREFUOE+Fk21I | |
286 | + k1EYhl8znZ9pQf5IhZAgCwlJCH9YRsvUXKn4gSRShLJQWFlqoFBjiiRDzakgzqjMWDChbGpuTTZTN2mS | |
287 | + +DGz4UcmLnPOTCXR6e7OeS0wyzpw/zk813Xe55znZchyIHHUlCckdEmSKnSVSc06ScKQriIRneXxQxpx | |
288 | + bMvrYp6kWRiVSOp203oAzK/Q5aivSm43KUQwv62HdfgFliZVsH/twaJJjllDNSbVIvTX86ESRXdSyXaB | |
289 | + k74yEVibAVangZUJ2JdHYF/sg31ehw1LO9ZnFLBNy6ESRlLCebvAuassHjZyIta+/JSMEckw1hcMWP4g | |
290 | + h1VfDqs2D68KuJTgbBdw3ohjsTqrhG1hkAgsWDM34JtRgM/qSxgQc9FXFA5zYwp0Ndcp4UZC78KRhN4f | |
291 | + 46It5v1XYNEKMdQiRZswpERz9zgaBUeKCetEBa7qwqh/CkyPBbD2P0NPbQYmXsZjwz6G9zIequL87rEC | |
292 | + 5Z1zOwpGZdmYbJdiUJaJsecXWdg2noXu/ECUcvezl+DWms/9q2CuV4RPmjr0PkiHSR7DwivGdHTkHEKH | |
293 | + OAw5wZ5lVOCuyA3/Q7A0XoHZYRkMBB55GsXCi4Y0aAQHoS4MhSDI4z49nBU03Qz7XWBRYmGqCX2yazA+ | |
294 | + 5LLwnDYJ6kx/tBaEgH/YTUI4D5JdVODSwD/R1l19FRPaOsyP6rE6/w4DXVLoxBEsbG6+ABXfF023juFK | |
295 | + gEsNYTwpnOpDX3PT4l6aHJQhTQtWPLocbDTIqzZyswuhqC3G9yk9lBm+kGcFItWfU0tqvSnzURbBJO2j | |
296 | + o7C56EDQN6U9Ubtv8Nm88QF9G56U3EbR6QCkHHCmJ7OwSXqKMUlPMnFeBNs6llvGc4+3LxeePqGTrt5H | |
297 | + a/z2eJwhe2zPPA8HhibGnWHO050dBLQ5L5K9JKR08zeOJt8X5cowkSRUciOAw/wAcHo+daCdVmIAAAAA | |
298 | + SUVORK5CYII= | |
299 | +</value> | |
300 | + </data> | |
301 | + <data name="simpleButton_ADD.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
302 | + <value> | |
303 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAABt0RVh0VGl0 | |
304 | + bGUAQWRkO1BsdXM7QmFycztSaWJib247lQYzLwAAA3VJREFUOE9VkmtMU2cYxw+Q6GQfxvZxH3RZYqK7 | |
305 | + dIaZRU3MMi/zFswWxOLmgplzXphTi1iL3IZEV2EWUSCbNOlwqMitgloOFzUdjBSplFsRhLZQLocDtvRG | |
306 | + sWX57znv5oed5J88ed7/7/8875vDDflfMtEXQYpMLuA/OF1qUiu15k6lzuI5q+tyKbWd5pTf/spLyr75 | |
307 | + LnmiJO8gMZK44UCIwbGbE5eeLG7XqMq6F8tax9AwMAPztB9PRT/4Z7O40eaE6neL9+gvTYfJv0Ri/mO5 | |
308 | + iDWfyZf+UNTeoKkfRO+LICyuBZhmgmgV5tFG6pj9t2cW/MirHcCxQmP9ivfWvS6xUkDUEY2xMF8/gF73 | |
309 | + AniHDwa7D0mXeHyaXM6UdKkR/KgfLWN+9HtCKKBBB9V8PrFLuARl+fvHi02LnUIAlVY3ap55oB/yMtDU | |
310 | + ZcOTbjur64Z90D/3oJrOzWIQipKO0I7vL8u4/bmNJdqmEVT0ulDW5UJ5jwsV1jkGTYlzCC/+zeo7Vg9u | |
311 | + 98+x81t9bpQZHZBn1Gq4r3JaLFXmaRS3i9iba2DmV5oQPfDNh/7Xk5Pn1w4R1d0zSMxu6OMSsppndaZp | |
312 | + qB9OMENHjwOdvaPo6ndiXPTC7VvAoF1E39AkBm3T2HLqDvIfT0FLIQmZjS7uizTeq3nkRG7TOAuYnPGx | |
313 | + qYJ7HuJcEIFgGP5gCD6Sl/pbFZW42DKBPBr4pcrg4nYq6nrO1w/jJ4MT+y40YvPJCmb6PKUKky8CLGxb | |
314 | + ajV2ntVjV9pdfHvFiPP8ODLv2rD9RI2F23T4ZtGJ62ZkG8agpuQrxilc/VNg29gmPfAEXrK1r7UKrJ// | |
315 | + aAJZhlH8WGrBxgPX8zhZXFbsdsW9UEadHWmkc/UOZNx3sADRHYCL3kDaKPPBGNLvOXCOpNLbsCv1QXjl | |
316 | + xkMfST/Sa5/s1xbFZz9EOsFn9HYoab09OQY2WYL3/dwMFYUrJREcn/MYHycWFRIbLQVERr/1Tszar3V8 | |
317 | + XHozlDUjFGJDDl3pYpMTF5qdVI/idK0Nisrn2J3ZQnDpfeJiJJYTw5BCopbFLH9TFl9csuG7qpBc3Ybj | |
318 | + N6xIrR0hcATJf1ixl3rrD1UGVu3ITSH/GxIjSKy4iFchkaToFeuT163eXXBNlqDtlsl1Ikn4cE+pZVXc | |
319 | + 5atvx36zhjzLSBESLITB/QMgLpTXht/PJgAAAABJRU5ErkJggg== | |
320 | +</value> | |
321 | + </data> | |
322 | + <data name="simpleButton_CLEAR.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
323 | + <value> | |
324 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACV0RVh0VGl0 | |
325 | + bGUAQ2xlYXI7RXJhc2U7UmVtb3ZlO0JhcnM7UmliYm9uO4eAg3MAAAKVSURBVDhPnZJrSJNRGMdPubnZ | |
326 | + Gln5wSSKLFuKhJpGWmqgIhtBpaBdrK2QbFqaGeUlrbxSqJRkfsmWbYMKJUzXtBRqRCE48zJT81KKJUaQ | |
327 | + Ot/CLP+dMzZTK4j+8ON53/Oc33PgPS/5xyyi2FF4lMVsYV4Mx3aTdwUnyNu8BDKQF0/6c5WkL0dJerOP | |
328 | + szaT+cZURXFHxlFjrTJyJ33nmdKOkI5UBesT0iCXEQC/QcNk+6aUmFsz5l6A0pWbwGljpKF0nW/tE1Ka | |
329 | + VfQ3WfA8MVr1Y6wbnL6cchMz4z1oz0/iMn0k4bRvzzaSFO3rP8nCxriI298/mcA9LMMkhaspw/RwM97I | |
330 | + ZbgfsuVLssdaGds8bwANkx30il0V0yOvYK4qwWTVNUoJvg28QO9hKfoOSdF1IBzXfdzGmECS1aa58pIH | |
331 | + +8LuTA01wXy3kFJkqVPdT9ETHYqeqBBKKAxSf1x0dTEwiZxUtbLCZJGiuEHdPjiKCXUBxjUFlvq1tR6d | |
332 | + e4KsBMMQ5odL65zbN4sErkxkYXcrOnhZr3k2xCGzdhR193QYV2WDa6pGGz2tTRZAawAag71wfrVTh7vQ | |
333 | + 3o067CYsJy+Nyq3RPumfsMg2Blva0BLiCyOF1cf+njjn7GiSCHgbrTJziXBvVmV5TdfnebLG+BFBGTrk | |
334 | + x6SgOdgbdX7uOOMk7tzA50lsMl1nPhFH5NSb06s/zMrlL0cQmP6IorOQEanEqeWizvU8u010P7t7i2wb | |
335 | + IAyMvZq6v9Awc7ZyEDcMw9iepsMOK/6nq+AtL+1eJV7psVC2DWAfUOwddSE+KFHzPiBBi21KNbbGVcA3 | |
336 | + VjXtGX1Fv2yN1+zJSQ58Mhdb2BAHygqKM8XFCnt2pPz67xfG9gf+HyA/AV6Ksk3Y/ofNAAAAAElFTkSu | |
337 | + QmCC | |
338 | +</value> | |
339 | + </data> | |
340 | + <data name="simpleButton_NORM_Search.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
341 | + <value> | |
342 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAt0RVh0VGl0 | |
343 | + bGUAWm9vbTvPCf68AAADeklEQVQ4T3WTX0yTVxjGD2iGJgreLNmNGnfhonHuhg0yFYOCZGzRgk7T4CBE | |
344 | + lAWYJtTYiKWIBfotaAWGgiJqsQUGpaOFydwI6R/4aIuFroAbDmRxCHRYKwwQiuTZ+xVNdrM3+eV87znn | |
345 | + eb73/GMAAlCsunzdEH67nm9S6xzj6qaHuNvo8FRprcb8Ym0Ujb9DBL2dL/+2SdCwQBIbfyzkhsaSr7vv | |
346 | + 9v8+8jdm5xapG4H2t2EPNHrH6wKVviQ8MnYDSYIFzdl87YoBxarKe+aCny1D8C8t4yf+KeQVPTiRb0Iu | |
347 | + ta2df2Ju3o+6ZjukCk0dzV9LBGVIqwNidqWi9ZOGFpf/1cISuDt9yFZ1g3d68GO3F+fvjOAkZ0NBdS+m | |
348 | + fHNQftcC8YlLiSRbnXr6+opBhdraPDA0gTb6c3aJDTM+P8YmFtE/Mg+jbRrcD1PIUtnR8Msw2kz9SMks | |
349 | + bSfZWvEp1YrBNbVlXFjr2XIeVuckxiYX4X4yD8vAPzD2vISqbQplbc+QXdqFodEpJKWXvCDZ+oRkjhlP | |
350 | + RjBWcsuE18vLSFF24EGfF+7ROZgfzaC1bxoa3osq83PU2nxILzZhdHwaR1KLhSML+0KsYPez9jLGlT/w | |
351 | + zMwuQFLZDWnjEzQ6fTC4XkJt9+Im/xzf9/mgsXsgrbKh99E4SDgtGMQdyWOtGXsYu6DU6+y9o6g304ZV | |
352 | + 2qHomARn9aDC4UVdvw/NQzNQGgZR2/EHanRd2C+SmslgXUyCjBnSdzOWdqYsXsbpqTwfZLVOZNY4cdny | |
353 | + F2oGvbjtnMAlQz84vQuOwQkcTuEQvic5jQxC9otymD5tF31S8lVmeS1X1gLXYw/UpsfIqe/BqapOyBse | |
354 | + QmsZBu9+hoxzNyHNkID7fHshaUKJ4MbUTwMGQe9/ELHhoFhRmpx1bVmt48H/Ogb3iBddrqe4oTVBdLwQ | |
355 | + 8szTWBioRI8qCYVx2wpIt14wefsOgok1kTHpB6i09tjEvIWYxDxab64/Kl5i/ijymFi2d4vSUnQUcHHo | |
356 | + LkqAPHorR5qw/z6mIGI1IVxVwT3sDeuIECJUErGxqF0WD3RKYJUdgCJuRyHbJ7rIokV5LPpQLiFj0Qcv | |
357 | + vCGH8hy279D5ABRClaFf73yPM36zG4uGJFR/GT4rDPxvaJM+ZsqozUyxaxO7GLlJ6AqYJG99V3E1dvsS | |
358 | + 99mH2n8BS6wgHnYivPsAAAAASUVORK5CYII= | |
359 | +</value> | |
360 | + </data> | |
361 | + <data name="simpleButton_ITEM_Search.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
362 | + <value> | |
363 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAt0RVh0VGl0 | |
364 | + bGUAWm9vbTvPCf68AAADeklEQVQ4T3WTX0yTVxjGD2iGJgreLNmNGnfhonHuhg0yFYOCZGzRgk7T4CBE | |
365 | + lAWYJtTYiKWIBfotaAWGgiJqsQUGpaOFydwI6R/4aIuFroAbDmRxCHRYKwwQiuTZ+xVNdrM3+eV87znn | |
366 | + eb73/GMAAlCsunzdEH67nm9S6xzj6qaHuNvo8FRprcb8Ym0Ujb9DBL2dL/+2SdCwQBIbfyzkhsaSr7vv | |
367 | + 9v8+8jdm5xapG4H2t2EPNHrH6wKVviQ8MnYDSYIFzdl87YoBxarKe+aCny1D8C8t4yf+KeQVPTiRb0Iu | |
368 | + ta2df2Ju3o+6ZjukCk0dzV9LBGVIqwNidqWi9ZOGFpf/1cISuDt9yFZ1g3d68GO3F+fvjOAkZ0NBdS+m | |
369 | + fHNQftcC8YlLiSRbnXr6+opBhdraPDA0gTb6c3aJDTM+P8YmFtE/Mg+jbRrcD1PIUtnR8Msw2kz9SMks | |
370 | + bSfZWvEp1YrBNbVlXFjr2XIeVuckxiYX4X4yD8vAPzD2vISqbQplbc+QXdqFodEpJKWXvCDZ+oRkjhlP | |
371 | + RjBWcsuE18vLSFF24EGfF+7ROZgfzaC1bxoa3osq83PU2nxILzZhdHwaR1KLhSML+0KsYPez9jLGlT/w | |
372 | + zMwuQFLZDWnjEzQ6fTC4XkJt9+Im/xzf9/mgsXsgrbKh99E4SDgtGMQdyWOtGXsYu6DU6+y9o6g304ZV | |
373 | + 2qHomARn9aDC4UVdvw/NQzNQGgZR2/EHanRd2C+SmslgXUyCjBnSdzOWdqYsXsbpqTwfZLVOZNY4cdny | |
374 | + F2oGvbjtnMAlQz84vQuOwQkcTuEQvic5jQxC9otymD5tF31S8lVmeS1X1gLXYw/UpsfIqe/BqapOyBse | |
375 | + QmsZBu9+hoxzNyHNkID7fHshaUKJ4MbUTwMGQe9/ELHhoFhRmpx1bVmt48H/Ogb3iBddrqe4oTVBdLwQ | |
376 | + 8szTWBioRI8qCYVx2wpIt14wefsOgok1kTHpB6i09tjEvIWYxDxab64/Kl5i/ijymFi2d4vSUnQUcHHo | |
377 | + LkqAPHorR5qw/z6mIGI1IVxVwT3sDeuIECJUErGxqF0WD3RKYJUdgCJuRyHbJ7rIokV5LPpQLiFj0Qcv | |
378 | + vCGH8hy279D5ABRClaFf73yPM36zG4uGJFR/GT4rDPxvaJM+ZsqozUyxaxO7GLlJ6AqYJG99V3E1dvsS | |
379 | + 99mH2n8BS6wgHnYivPsAAAAASUVORK5CYII= | |
380 | +</value> | |
381 | + </data> | |
382 | + <data name="simpleButton_OUT_POS_Search.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
383 | + <value> | |
384 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAt0RVh0VGl0 | |
385 | + bGUAWm9vbTvPCf68AAADeklEQVQ4T3WTX0yTVxjGD2iGJgreLNmNGnfhonHuhg0yFYOCZGzRgk7T4CBE | |
386 | + lAWYJtTYiKWIBfotaAWGgiJqsQUGpaOFydwI6R/4aIuFroAbDmRxCHRYKwwQiuTZ+xVNdrM3+eV87znn | |
387 | + eb73/GMAAlCsunzdEH67nm9S6xzj6qaHuNvo8FRprcb8Ym0Ujb9DBL2dL/+2SdCwQBIbfyzkhsaSr7vv | |
388 | + 9v8+8jdm5xapG4H2t2EPNHrH6wKVviQ8MnYDSYIFzdl87YoBxarKe+aCny1D8C8t4yf+KeQVPTiRb0Iu | |
389 | + ta2df2Ju3o+6ZjukCk0dzV9LBGVIqwNidqWi9ZOGFpf/1cISuDt9yFZ1g3d68GO3F+fvjOAkZ0NBdS+m | |
390 | + fHNQftcC8YlLiSRbnXr6+opBhdraPDA0gTb6c3aJDTM+P8YmFtE/Mg+jbRrcD1PIUtnR8Msw2kz9SMks | |
391 | + bSfZWvEp1YrBNbVlXFjr2XIeVuckxiYX4X4yD8vAPzD2vISqbQplbc+QXdqFodEpJKWXvCDZ+oRkjhlP | |
392 | + RjBWcsuE18vLSFF24EGfF+7ROZgfzaC1bxoa3osq83PU2nxILzZhdHwaR1KLhSML+0KsYPez9jLGlT/w | |
393 | + zMwuQFLZDWnjEzQ6fTC4XkJt9+Im/xzf9/mgsXsgrbKh99E4SDgtGMQdyWOtGXsYu6DU6+y9o6g304ZV | |
394 | + 2qHomARn9aDC4UVdvw/NQzNQGgZR2/EHanRd2C+SmslgXUyCjBnSdzOWdqYsXsbpqTwfZLVOZNY4cdny | |
395 | + F2oGvbjtnMAlQz84vQuOwQkcTuEQvic5jQxC9otymD5tF31S8lVmeS1X1gLXYw/UpsfIqe/BqapOyBse | |
396 | + QmsZBu9+hoxzNyHNkID7fHshaUKJ4MbUTwMGQe9/ELHhoFhRmpx1bVmt48H/Ogb3iBddrqe4oTVBdLwQ | |
397 | + 8szTWBioRI8qCYVx2wpIt14wefsOgok1kTHpB6i09tjEvIWYxDxab64/Kl5i/ijymFi2d4vSUnQUcHHo | |
398 | + LkqAPHorR5qw/z6mIGI1IVxVwT3sDeuIECJUErGxqF0WD3RKYJUdgCJuRyHbJ7rIokV5LPpQLiFj0Qcv | |
399 | + vCGH8hy279D5ABRClaFf73yPM36zG4uGJFR/GT4rDPxvaJM+ZsqozUyxaxO7GLlJ6AqYJG99V3E1dvsS | |
400 | + 99mH2n8BS6wgHnYivPsAAAAASUVORK5CYII= | |
401 | +</value> | |
402 | + </data> | |
403 | + <data name="simpleButton_PRINT_POS_Search.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
404 | + <value> | |
405 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAt0RVh0VGl0 | |
406 | + bGUAWm9vbTvPCf68AAADeklEQVQ4T3WTX0yTVxjGD2iGJgreLNmNGnfhonHuhg0yFYOCZGzRgk7T4CBE | |
407 | + lAWYJtTYiKWIBfotaAWGgiJqsQUGpaOFydwI6R/4aIuFroAbDmRxCHRYKwwQiuTZ+xVNdrM3+eV87znn | |
408 | + eb73/GMAAlCsunzdEH67nm9S6xzj6qaHuNvo8FRprcb8Ym0Ujb9DBL2dL/+2SdCwQBIbfyzkhsaSr7vv | |
409 | + 9v8+8jdm5xapG4H2t2EPNHrH6wKVviQ8MnYDSYIFzdl87YoBxarKe+aCny1D8C8t4yf+KeQVPTiRb0Iu | |
410 | + ta2df2Ju3o+6ZjukCk0dzV9LBGVIqwNidqWi9ZOGFpf/1cISuDt9yFZ1g3d68GO3F+fvjOAkZ0NBdS+m | |
411 | + fHNQftcC8YlLiSRbnXr6+opBhdraPDA0gTb6c3aJDTM+P8YmFtE/Mg+jbRrcD1PIUtnR8Msw2kz9SMks | |
412 | + bSfZWvEp1YrBNbVlXFjr2XIeVuckxiYX4X4yD8vAPzD2vISqbQplbc+QXdqFodEpJKWXvCDZ+oRkjhlP | |
413 | + RjBWcsuE18vLSFF24EGfF+7ROZgfzaC1bxoa3osq83PU2nxILzZhdHwaR1KLhSML+0KsYPez9jLGlT/w | |
414 | + zMwuQFLZDWnjEzQ6fTC4XkJt9+Im/xzf9/mgsXsgrbKh99E4SDgtGMQdyWOtGXsYu6DU6+y9o6g304ZV | |
415 | + 2qHomARn9aDC4UVdvw/NQzNQGgZR2/EHanRd2C+SmslgXUyCjBnSdzOWdqYsXsbpqTwfZLVOZNY4cdny | |
416 | + F2oGvbjtnMAlQz84vQuOwQkcTuEQvic5jQxC9otymD5tF31S8lVmeS1X1gLXYw/UpsfIqe/BqapOyBse | |
417 | + QmsZBu9+hoxzNyHNkID7fHshaUKJ4MbUTwMGQe9/ELHhoFhRmpx1bVmt48H/Ogb3iBddrqe4oTVBdLwQ | |
418 | + 8szTWBioRI8qCYVx2wpIt14wefsOgok1kTHpB6i09tjEvIWYxDxab64/Kl5i/ijymFi2d4vSUnQUcHHo | |
419 | + LkqAPHorR5qw/z6mIGI1IVxVwT3sDeuIECJUErGxqF0WD3RKYJUdgCJuRyHbJ7rIokV5LPpQLiFj0Qcv | |
420 | + vCGH8hy279D5ABRClaFf73yPM36zG4uGJFR/GT4rDPxvaJM+ZsqozUyxaxO7GLlJ6AqYJG99V3E1dvsS | |
421 | + 99mH2n8BS6wgHnYivPsAAAAASUVORK5CYII= | |
422 | +</value> | |
423 | + </data> | |
424 | + <data name="simpleButton_Cust_Search.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
425 | + <value> | |
426 | + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAt0RVh0VGl0 | |
427 | + bGUAWm9vbTvPCf68AAADeklEQVQ4T3WTX0yTVxjGD2iGJgreLNmNGnfhonHuhg0yFYOCZGzRgk7T4CBE | |
428 | + lAWYJtTYiKWIBfotaAWGgiJqsQUGpaOFydwI6R/4aIuFroAbDmRxCHRYKwwQiuTZ+xVNdrM3+eV87znn | |
429 | + eb73/GMAAlCsunzdEH67nm9S6xzj6qaHuNvo8FRprcb8Ym0Ujb9DBL2dL/+2SdCwQBIbfyzkhsaSr7vv | |
430 | + 9v8+8jdm5xapG4H2t2EPNHrH6wKVviQ8MnYDSYIFzdl87YoBxarKe+aCny1D8C8t4yf+KeQVPTiRb0Iu | |
431 | + ta2df2Ju3o+6ZjukCk0dzV9LBGVIqwNidqWi9ZOGFpf/1cISuDt9yFZ1g3d68GO3F+fvjOAkZ0NBdS+m | |
432 | + fHNQftcC8YlLiSRbnXr6+opBhdraPDA0gTb6c3aJDTM+P8YmFtE/Mg+jbRrcD1PIUtnR8Msw2kz9SMks | |
433 | + bSfZWvEp1YrBNbVlXFjr2XIeVuckxiYX4X4yD8vAPzD2vISqbQplbc+QXdqFodEpJKWXvCDZ+oRkjhlP | |
434 | + RjBWcsuE18vLSFF24EGfF+7ROZgfzaC1bxoa3osq83PU2nxILzZhdHwaR1KLhSML+0KsYPez9jLGlT/w | |
435 | + zMwuQFLZDWnjEzQ6fTC4XkJt9+Im/xzf9/mgsXsgrbKh99E4SDgtGMQdyWOtGXsYu6DU6+y9o6g304ZV | |
436 | + 2qHomARn9aDC4UVdvw/NQzNQGgZR2/EHanRd2C+SmslgXUyCjBnSdzOWdqYsXsbpqTwfZLVOZNY4cdny | |
437 | + F2oGvbjtnMAlQz84vQuOwQkcTuEQvic5jQxC9otymD5tF31S8lVmeS1X1gLXYw/UpsfIqe/BqapOyBse | |
438 | + QmsZBu9+hoxzNyHNkID7fHshaUKJ4MbUTwMGQe9/ELHhoFhRmpx1bVmt48H/Ogb3iBddrqe4oTVBdLwQ | |
439 | + 8szTWBioRI8qCYVx2wpIt14wefsOgok1kTHpB6i09tjEvIWYxDxab64/Kl5i/ijymFi2d4vSUnQUcHHo | |
440 | + LkqAPHorR5qw/z6mIGI1IVxVwT3sDeuIECJUErGxqF0WD3RKYJUdgCJuRyHbJ7rIokV5LPpQLiFj0Qcv | |
441 | + vCGH8hy279D5ABRClaFf73yPM36zG4uGJFR/GT4rDPxvaJM+ZsqozUyxaxO7GLlJ6AqYJG99V3E1dvsS | |
442 | + 99mH2n8BS6wgHnYivPsAAAAASUVORK5CYII= | |
443 | +</value> | |
444 | + </data> | |
445 | +</root>(No newline at end of file) |
+++ .svn/pristine/0c/0c500d3ccd6470575ec3939a4e1fb4a8c8f4e02f.svn-base
... | ... | @@ -0,0 +1,557 @@ |
1 | +namespace HANMI_SALE | |
2 | +{ | |
3 | + partial class CostManagerReport | |
4 | + { | |
5 | + /// <summary> | |
6 | + /// Required designer variable. | |
7 | + /// </summary> | |
8 | + private System.ComponentModel.IContainer components = null; | |
9 | + | |
10 | + /// <summary> | |
11 | + /// Clean up any resources being used. | |
12 | + /// </summary> | |
13 | + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
14 | + protected override void Dispose(bool disposing) | |
15 | + { | |
16 | + if (disposing && (components != null)) | |
17 | + { | |
18 | + components.Dispose(); | |
19 | + } | |
20 | + base.Dispose(disposing); | |
21 | + } | |
22 | + | |
23 | + #region Designer generated code | |
24 | + | |
25 | + /// <summary> | |
26 | + /// Required method for Designer support - do not modify | |
27 | + /// the contents of this method with the code editor. | |
28 | + /// </summary> | |
29 | + private void InitializeComponent() | |
30 | + { | |
31 | + this.Detail = new DevExpress.XtraReports.UI.DetailBand(); | |
32 | + this.xrTable5 = new DevExpress.XtraReports.UI.XRTable(); | |
33 | + this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow(); | |
34 | + this.xrTableCell_ORDER_NO = new DevExpress.XtraReports.UI.XRTableCell(); | |
35 | + this.xrTableCell_LN_SEQ = new DevExpress.XtraReports.UI.XRTableCell(); | |
36 | + this.xrTableCell_CUST_NM = new DevExpress.XtraReports.UI.XRTableCell(); | |
37 | + this.xrTableCell_FILE_NM = new DevExpress.XtraReports.UI.XRTableCell(); | |
38 | + this.xrTableCell_ITEM_NM = new DevExpress.XtraReports.UI.XRTableCell(); | |
39 | + this.xrTableCell_ORDER_NORM = new DevExpress.XtraReports.UI.XRTableCell(); | |
40 | + this.xrTableCell_ORDER_QTY = new DevExpress.XtraReports.UI.XRTableCell(); | |
41 | + this.xrTableCell_CURR_UNIT_MY = new DevExpress.XtraReports.UI.XRTableCell(); | |
42 | + this.xrTableCell_CURR_MY = new DevExpress.XtraReports.UI.XRTableCell(); | |
43 | + this.xrTableCell_VAT_MY = new DevExpress.XtraReports.UI.XRTableCell(); | |
44 | + this.xrTableCell_ORDER_MY = new DevExpress.XtraReports.UI.XRTableCell(); | |
45 | + this.xrTableCell_LN_RMK = new DevExpress.XtraReports.UI.XRTableCell(); | |
46 | + this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); | |
47 | + this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); | |
48 | + this.xrLabel_COMP_NM = new DevExpress.XtraReports.UI.XRLabel(); | |
49 | + this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); | |
50 | + this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo(); | |
51 | + this.xrLabel_Page = new DevExpress.XtraReports.UI.XRLabel(); | |
52 | + this.xrLabel_Today = new DevExpress.XtraReports.UI.XRLabel(); | |
53 | + this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); | |
54 | + this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); | |
55 | + this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); | |
56 | + this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); | |
57 | + this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); | |
58 | + this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); | |
59 | + this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); | |
60 | + this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell(); | |
61 | + this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell(); | |
62 | + this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); | |
63 | + this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); | |
64 | + this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); | |
65 | + this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); | |
66 | + this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); | |
67 | + this.xrLabel_ORDER_DATE = new DevExpress.XtraReports.UI.XRLabel(); | |
68 | + this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); | |
69 | + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit(); | |
70 | + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); | |
71 | + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); | |
72 | + // | |
73 | + // Detail | |
74 | + // | |
75 | + this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { | |
76 | + this.xrTable5}); | |
77 | + this.Detail.HeightF = 25F; | |
78 | + this.Detail.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount; | |
79 | + this.Detail.Name = "Detail"; | |
80 | + this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); | |
81 | + this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; | |
82 | + // | |
83 | + // xrTable5 | |
84 | + // | |
85 | + this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | |
86 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
87 | + this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); | |
88 | + this.xrTable5.Name = "xrTable5"; | |
89 | + this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { | |
90 | + this.xrTableRow12}); | |
91 | + this.xrTable5.SizeF = new System.Drawing.SizeF(1119F, 25F); | |
92 | + this.xrTable5.StylePriority.UseBorders = false; | |
93 | + this.xrTable5.StylePriority.UseTextAlignment = false; | |
94 | + this.xrTable5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
95 | + // | |
96 | + // xrTableRow12 | |
97 | + // | |
98 | + this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { | |
99 | + this.xrTableCell_ORDER_NO, | |
100 | + this.xrTableCell_LN_SEQ, | |
101 | + this.xrTableCell_CUST_NM, | |
102 | + this.xrTableCell_FILE_NM, | |
103 | + this.xrTableCell_ITEM_NM, | |
104 | + this.xrTableCell_ORDER_NORM, | |
105 | + this.xrTableCell_ORDER_QTY, | |
106 | + this.xrTableCell_CURR_UNIT_MY, | |
107 | + this.xrTableCell_CURR_MY, | |
108 | + this.xrTableCell_VAT_MY, | |
109 | + this.xrTableCell_ORDER_MY, | |
110 | + this.xrTableCell_LN_RMK}); | |
111 | + this.xrTableRow12.Name = "xrTableRow12"; | |
112 | + this.xrTableRow12.Weight = 1D; | |
113 | + // | |
114 | + // xrTableCell_ORDER_NO | |
115 | + // | |
116 | + this.xrTableCell_ORDER_NO.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | |
117 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
118 | + this.xrTableCell_ORDER_NO.CanGrow = false; | |
119 | + this.xrTableCell_ORDER_NO.Name = "xrTableCell_ORDER_NO"; | |
120 | + this.xrTableCell_ORDER_NO.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
121 | + this.xrTableCell_ORDER_NO.StylePriority.UseBorders = false; | |
122 | + this.xrTableCell_ORDER_NO.StylePriority.UsePadding = false; | |
123 | + this.xrTableCell_ORDER_NO.StylePriority.UseTextAlignment = false; | |
124 | + this.xrTableCell_ORDER_NO.Text = "2018.12.17-0065"; | |
125 | + this.xrTableCell_ORDER_NO.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
126 | + this.xrTableCell_ORDER_NO.Weight = 0.29494385137190027D; | |
127 | + // | |
128 | + // xrTableCell_LN_SEQ | |
129 | + // | |
130 | + this.xrTableCell_LN_SEQ.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
131 | + this.xrTableCell_LN_SEQ.Name = "xrTableCell_LN_SEQ"; | |
132 | + this.xrTableCell_LN_SEQ.StylePriority.UseBorders = false; | |
133 | + this.xrTableCell_LN_SEQ.Text = "01"; | |
134 | + this.xrTableCell_LN_SEQ.Weight = 0.084269669988882356D; | |
135 | + // | |
136 | + // xrTableCell_CUST_NM | |
137 | + // | |
138 | + this.xrTableCell_CUST_NM.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
139 | + this.xrTableCell_CUST_NM.CanGrow = false; | |
140 | + this.xrTableCell_CUST_NM.Name = "xrTableCell_CUST_NM"; | |
141 | + this.xrTableCell_CUST_NM.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
142 | + this.xrTableCell_CUST_NM.StylePriority.UseBorders = false; | |
143 | + this.xrTableCell_CUST_NM.StylePriority.UsePadding = false; | |
144 | + this.xrTableCell_CUST_NM.StylePriority.UseTextAlignment = false; | |
145 | + this.xrTableCell_CUST_NM.Text = "가나커뮤니케이션"; | |
146 | + this.xrTableCell_CUST_NM.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
147 | + this.xrTableCell_CUST_NM.Weight = 0.32303373566799343D; | |
148 | + // | |
149 | + // xrTableCell_FILE_NM | |
150 | + // | |
151 | + this.xrTableCell_FILE_NM.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
152 | + this.xrTableCell_FILE_NM.Name = "xrTableCell_FILE_NM"; | |
153 | + this.xrTableCell_FILE_NM.StylePriority.UseBorders = false; | |
154 | + this.xrTableCell_FILE_NM.StylePriority.UseTextAlignment = false; | |
155 | + this.xrTableCell_FILE_NM.Text = "정신건강간호학"; | |
156 | + this.xrTableCell_FILE_NM.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
157 | + this.xrTableCell_FILE_NM.Weight = 0.5195461304351997D; | |
158 | + // | |
159 | + // xrTableCell_ITEM_NM | |
160 | + // | |
161 | + this.xrTableCell_ITEM_NM.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
162 | + this.xrTableCell_ITEM_NM.CanGrow = false; | |
163 | + this.xrTableCell_ITEM_NM.Name = "xrTableCell_ITEM_NM"; | |
164 | + this.xrTableCell_ITEM_NM.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
165 | + this.xrTableCell_ITEM_NM.StylePriority.UseBorders = false; | |
166 | + this.xrTableCell_ITEM_NM.StylePriority.UsePadding = false; | |
167 | + this.xrTableCell_ITEM_NM.StylePriority.UseTextAlignment = false; | |
168 | + this.xrTableCell_ITEM_NM.Text = "씰크(에폭)"; | |
169 | + this.xrTableCell_ITEM_NM.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
170 | + this.xrTableCell_ITEM_NM.Weight = 0.25643718217437655D; | |
171 | + // | |
172 | + // xrTableCell_ORDER_NORM | |
173 | + // | |
174 | + this.xrTableCell_ORDER_NORM.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
175 | + this.xrTableCell_ORDER_NORM.Name = "xrTableCell_ORDER_NORM"; | |
176 | + this.xrTableCell_ORDER_NORM.StylePriority.UseBorders = false; | |
177 | + this.xrTableCell_ORDER_NORM.Text = "국선지"; | |
178 | + this.xrTableCell_ORDER_NORM.Weight = 0.20774792105796791D; | |
179 | + // | |
180 | + // xrTableCell_ORDER_QTY | |
181 | + // | |
182 | + this.xrTableCell_ORDER_QTY.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
183 | + this.xrTableCell_ORDER_QTY.Name = "xrTableCell_ORDER_QTY"; | |
184 | + this.xrTableCell_ORDER_QTY.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 2, 0, 0, 100F); | |
185 | + this.xrTableCell_ORDER_QTY.StylePriority.UseBorders = false; | |
186 | + this.xrTableCell_ORDER_QTY.StylePriority.UsePadding = false; | |
187 | + this.xrTableCell_ORDER_QTY.StylePriority.UseTextAlignment = false; | |
188 | + this.xrTableCell_ORDER_QTY.Text = "1,000"; | |
189 | + this.xrTableCell_ORDER_QTY.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; | |
190 | + this.xrTableCell_ORDER_QTY.Weight = 0.17708391541034488D; | |
191 | + // | |
192 | + // xrTableCell_CURR_UNIT_MY | |
193 | + // | |
194 | + this.xrTableCell_CURR_UNIT_MY.Name = "xrTableCell_CURR_UNIT_MY"; | |
195 | + this.xrTableCell_CURR_UNIT_MY.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 2, 0, 0, 100F); | |
196 | + this.xrTableCell_CURR_UNIT_MY.StylePriority.UsePadding = false; | |
197 | + this.xrTableCell_CURR_UNIT_MY.StylePriority.UseTextAlignment = false; | |
198 | + this.xrTableCell_CURR_UNIT_MY.Text = "0"; | |
199 | + this.xrTableCell_CURR_UNIT_MY.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; | |
200 | + this.xrTableCell_CURR_UNIT_MY.Weight = 0.1748594074028697D; | |
201 | + // | |
202 | + // xrTableCell_CURR_MY | |
203 | + // | |
204 | + this.xrTableCell_CURR_MY.Name = "xrTableCell_CURR_MY"; | |
205 | + this.xrTableCell_CURR_MY.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 2, 0, 0, 100F); | |
206 | + this.xrTableCell_CURR_MY.StylePriority.UsePadding = false; | |
207 | + this.xrTableCell_CURR_MY.StylePriority.UseTextAlignment = false; | |
208 | + this.xrTableCell_CURR_MY.Text = "0"; | |
209 | + this.xrTableCell_CURR_MY.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; | |
210 | + this.xrTableCell_CURR_MY.Weight = 0.19147913032522454D; | |
211 | + // | |
212 | + // xrTableCell_VAT_MY | |
213 | + // | |
214 | + this.xrTableCell_VAT_MY.Name = "xrTableCell_VAT_MY"; | |
215 | + this.xrTableCell_VAT_MY.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 2, 0, 0, 100F); | |
216 | + this.xrTableCell_VAT_MY.StylePriority.UsePadding = false; | |
217 | + this.xrTableCell_VAT_MY.StylePriority.UseTextAlignment = false; | |
218 | + this.xrTableCell_VAT_MY.Text = "0"; | |
219 | + this.xrTableCell_VAT_MY.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; | |
220 | + this.xrTableCell_VAT_MY.Weight = 0.19961378029599289D; | |
221 | + // | |
222 | + // xrTableCell_ORDER_MY | |
223 | + // | |
224 | + this.xrTableCell_ORDER_MY.Name = "xrTableCell_ORDER_MY"; | |
225 | + this.xrTableCell_ORDER_MY.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 2, 0, 0, 100F); | |
226 | + this.xrTableCell_ORDER_MY.StylePriority.UsePadding = false; | |
227 | + this.xrTableCell_ORDER_MY.StylePriority.UseTextAlignment = false; | |
228 | + this.xrTableCell_ORDER_MY.Text = "0"; | |
229 | + this.xrTableCell_ORDER_MY.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; | |
230 | + this.xrTableCell_ORDER_MY.Weight = 0.237652246172314D; | |
231 | + // | |
232 | + // xrTableCell_LN_RMK | |
233 | + // | |
234 | + this.xrTableCell_LN_RMK.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
235 | + this.xrTableCell_LN_RMK.Name = "xrTableCell_LN_RMK"; | |
236 | + this.xrTableCell_LN_RMK.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); | |
237 | + this.xrTableCell_LN_RMK.StylePriority.UseBorders = false; | |
238 | + this.xrTableCell_LN_RMK.StylePriority.UsePadding = false; | |
239 | + this.xrTableCell_LN_RMK.StylePriority.UseTextAlignment = false; | |
240 | + this.xrTableCell_LN_RMK.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
241 | + this.xrTableCell_LN_RMK.Weight = 0.47659181593156236D; | |
242 | + // | |
243 | + // TopMargin | |
244 | + // | |
245 | + this.TopMargin.HeightF = 50F; | |
246 | + this.TopMargin.Name = "TopMargin"; | |
247 | + this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); | |
248 | + this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; | |
249 | + // | |
250 | + // BottomMargin | |
251 | + // | |
252 | + this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { | |
253 | + this.xrLabel_COMP_NM}); | |
254 | + this.BottomMargin.HeightF = 53.26704F; | |
255 | + this.BottomMargin.Name = "BottomMargin"; | |
256 | + this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); | |
257 | + this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; | |
258 | + // | |
259 | + // xrLabel_COMP_NM | |
260 | + // | |
261 | + this.xrLabel_COMP_NM.Font = new System.Drawing.Font("굴림체", 8F); | |
262 | + this.xrLabel_COMP_NM.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 0F); | |
263 | + this.xrLabel_COMP_NM.Name = "xrLabel_COMP_NM"; | |
264 | + this.xrLabel_COMP_NM.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
265 | + this.xrLabel_COMP_NM.SizeF = new System.Drawing.SizeF(94.99998F, 23F); | |
266 | + this.xrLabel_COMP_NM.StylePriority.UseFont = false; | |
267 | + this.xrLabel_COMP_NM.StylePriority.UseTextAlignment = false; | |
268 | + this.xrLabel_COMP_NM.Text = "(주)한미칼라"; | |
269 | + this.xrLabel_COMP_NM.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
270 | + // | |
271 | + // PageHeader | |
272 | + // | |
273 | + this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { | |
274 | + this.xrPageInfo1, | |
275 | + this.xrLabel_Page, | |
276 | + this.xrLabel_Today, | |
277 | + this.xrTable1, | |
278 | + this.xrLabel_ORDER_DATE, | |
279 | + this.xrLabel1}); | |
280 | + this.PageHeader.HeightF = 104F; | |
281 | + this.PageHeader.Name = "PageHeader"; | |
282 | + // | |
283 | + // xrPageInfo1 | |
284 | + // | |
285 | + this.xrPageInfo1.Font = new System.Drawing.Font("굴림체", 9F, System.Drawing.FontStyle.Bold); | |
286 | + this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1069.303F, 48.29165F); | |
287 | + this.xrPageInfo1.Name = "xrPageInfo1"; | |
288 | + this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
289 | + this.xrPageInfo1.SizeF = new System.Drawing.SizeF(39.79163F, 23F); | |
290 | + this.xrPageInfo1.StylePriority.UseFont = false; | |
291 | + this.xrPageInfo1.StylePriority.UseTextAlignment = false; | |
292 | + this.xrPageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; | |
293 | + // | |
294 | + // xrLabel_Page | |
295 | + // | |
296 | + this.xrLabel_Page.Font = new System.Drawing.Font("굴림체", 10F, System.Drawing.FontStyle.Bold); | |
297 | + this.xrLabel_Page.LocationFloat = new DevExpress.Utils.PointFloat(1018F, 48.29165F); | |
298 | + this.xrLabel_Page.Name = "xrLabel_Page"; | |
299 | + this.xrLabel_Page.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
300 | + this.xrLabel_Page.SizeF = new System.Drawing.SizeF(51.30286F, 23F); | |
301 | + this.xrLabel_Page.StylePriority.UseFont = false; | |
302 | + this.xrLabel_Page.StylePriority.UseTextAlignment = false; | |
303 | + this.xrLabel_Page.Text = "Page:"; | |
304 | + this.xrLabel_Page.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; | |
305 | + // | |
306 | + // xrLabel_Today | |
307 | + // | |
308 | + this.xrLabel_Today.Font = new System.Drawing.Font("굴림체", 10F, System.Drawing.FontStyle.Bold); | |
309 | + this.xrLabel_Today.LocationFloat = new DevExpress.Utils.PointFloat(806.7254F, 48.29166F); | |
310 | + this.xrLabel_Today.Name = "xrLabel_Today"; | |
311 | + this.xrLabel_Today.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
312 | + this.xrLabel_Today.SizeF = new System.Drawing.SizeF(211.2746F, 23F); | |
313 | + this.xrLabel_Today.StylePriority.UseFont = false; | |
314 | + this.xrLabel_Today.StylePriority.UseTextAlignment = false; | |
315 | + this.xrLabel_Today.Text = "Date: 2018.12.17. 12:34:45"; | |
316 | + this.xrLabel_Today.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
317 | + // | |
318 | + // xrTable1 | |
319 | + // | |
320 | + this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 78.81066F); | |
321 | + this.xrTable1.Name = "xrTable1"; | |
322 | + this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { | |
323 | + this.xrTableRow1}); | |
324 | + this.xrTable1.SizeF = new System.Drawing.SizeF(1119F, 25F); | |
325 | + this.xrTable1.StylePriority.UseTextAlignment = false; | |
326 | + this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
327 | + // | |
328 | + // xrTableRow1 | |
329 | + // | |
330 | + this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { | |
331 | + this.xrTableCell1, | |
332 | + this.xrTableCell2, | |
333 | + this.xrTableCell3, | |
334 | + this.xrTableCell4, | |
335 | + this.xrTableCell18, | |
336 | + this.xrTableCell20, | |
337 | + this.xrTableCell22, | |
338 | + this.xrTableCell6, | |
339 | + this.xrTableCell8, | |
340 | + this.xrTableCell9, | |
341 | + this.xrTableCell7, | |
342 | + this.xrTableCell5}); | |
343 | + this.xrTableRow1.Name = "xrTableRow1"; | |
344 | + this.xrTableRow1.Weight = 1D; | |
345 | + // | |
346 | + // xrTableCell1 | |
347 | + // | |
348 | + this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | |
349 | + | DevExpress.XtraPrinting.BorderSide.Right) | |
350 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
351 | + this.xrTableCell1.CanGrow = false; | |
352 | + this.xrTableCell1.Name = "xrTableCell1"; | |
353 | + this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
354 | + this.xrTableCell1.StylePriority.UseBorders = false; | |
355 | + this.xrTableCell1.StylePriority.UsePadding = false; | |
356 | + this.xrTableCell1.StylePriority.UseTextAlignment = false; | |
357 | + this.xrTableCell1.Text = "원가번호"; | |
358 | + this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
359 | + this.xrTableCell1.Weight = 0.29494385137190027D; | |
360 | + // | |
361 | + // xrTableCell2 | |
362 | + // | |
363 | + this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
364 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
365 | + this.xrTableCell2.Name = "xrTableCell2"; | |
366 | + this.xrTableCell2.StylePriority.UseBorders = false; | |
367 | + this.xrTableCell2.Text = "순번"; | |
368 | + this.xrTableCell2.Weight = 0.084269669988882356D; | |
369 | + // | |
370 | + // xrTableCell3 | |
371 | + // | |
372 | + this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
373 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
374 | + this.xrTableCell3.CanGrow = false; | |
375 | + this.xrTableCell3.Name = "xrTableCell3"; | |
376 | + this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
377 | + this.xrTableCell3.StylePriority.UseBorders = false; | |
378 | + this.xrTableCell3.StylePriority.UsePadding = false; | |
379 | + this.xrTableCell3.StylePriority.UseTextAlignment = false; | |
380 | + this.xrTableCell3.Text = "거 래 처 명"; | |
381 | + this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
382 | + this.xrTableCell3.Weight = 0.32303373566799343D; | |
383 | + // | |
384 | + // xrTableCell4 | |
385 | + // | |
386 | + this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
387 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
388 | + this.xrTableCell4.Name = "xrTableCell4"; | |
389 | + this.xrTableCell4.StylePriority.UseBorders = false; | |
390 | + this.xrTableCell4.StylePriority.UseTextAlignment = false; | |
391 | + this.xrTableCell4.Text = "파 일 이 름"; | |
392 | + this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
393 | + this.xrTableCell4.Weight = 0.51954595898811207D; | |
394 | + // | |
395 | + // xrTableCell18 | |
396 | + // | |
397 | + this.xrTableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
398 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
399 | + this.xrTableCell18.CanGrow = false; | |
400 | + this.xrTableCell18.Name = "xrTableCell18"; | |
401 | + this.xrTableCell18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
402 | + this.xrTableCell18.StylePriority.UseBorders = false; | |
403 | + this.xrTableCell18.StylePriority.UsePadding = false; | |
404 | + this.xrTableCell18.StylePriority.UseTextAlignment = false; | |
405 | + this.xrTableCell18.Text = "작업명"; | |
406 | + this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
407 | + this.xrTableCell18.Weight = 0.25643726789792037D; | |
408 | + // | |
409 | + // xrTableCell20 | |
410 | + // | |
411 | + this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
412 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
413 | + this.xrTableCell20.Name = "xrTableCell20"; | |
414 | + this.xrTableCell20.StylePriority.UseBorders = false; | |
415 | + this.xrTableCell20.Text = "절수"; | |
416 | + this.xrTableCell20.Weight = 0.20774792105796783D; | |
417 | + // | |
418 | + // xrTableCell22 | |
419 | + // | |
420 | + this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
421 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
422 | + this.xrTableCell22.Name = "xrTableCell22"; | |
423 | + this.xrTableCell22.StylePriority.UseBorders = false; | |
424 | + this.xrTableCell22.Text = "수량"; | |
425 | + this.xrTableCell22.Weight = 0.17708391541034491D; | |
426 | + // | |
427 | + // xrTableCell6 | |
428 | + // | |
429 | + this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
430 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
431 | + this.xrTableCell6.Name = "xrTableCell6"; | |
432 | + this.xrTableCell6.StylePriority.UseBorders = false; | |
433 | + this.xrTableCell6.Text = "단가"; | |
434 | + this.xrTableCell6.Weight = 0.17485939427403618D; | |
435 | + // | |
436 | + // xrTableCell8 | |
437 | + // | |
438 | + this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
439 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
440 | + this.xrTableCell8.Name = "xrTableCell8"; | |
441 | + this.xrTableCell8.StylePriority.UseBorders = false; | |
442 | + this.xrTableCell8.Text = "공급가액"; | |
443 | + this.xrTableCell8.Weight = 0.19147931248775524D; | |
444 | + // | |
445 | + // xrTableCell9 | |
446 | + // | |
447 | + this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
448 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
449 | + this.xrTableCell9.Name = "xrTableCell9"; | |
450 | + this.xrTableCell9.StylePriority.UseBorders = false; | |
451 | + this.xrTableCell9.Text = "부가세"; | |
452 | + this.xrTableCell9.Weight = 0.19961376750503668D; | |
453 | + // | |
454 | + // xrTableCell7 | |
455 | + // | |
456 | + this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
457 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
458 | + this.xrTableCell7.Name = "xrTableCell7"; | |
459 | + this.xrTableCell7.StylePriority.UseBorders = false; | |
460 | + this.xrTableCell7.Text = "소계"; | |
461 | + this.xrTableCell7.Weight = 0.23765211136045877D; | |
462 | + // | |
463 | + // xrTableCell5 | |
464 | + // | |
465 | + this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
466 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
467 | + this.xrTableCell5.Name = "xrTableCell5"; | |
468 | + this.xrTableCell5.StylePriority.UseBorders = false; | |
469 | + this.xrTableCell5.Text = "비 고"; | |
470 | + this.xrTableCell5.Weight = 0.47659188022422033D; | |
471 | + // | |
472 | + // xrLabel_ORDER_DATE | |
473 | + // | |
474 | + this.xrLabel_ORDER_DATE.Font = new System.Drawing.Font("굴림체", 10F, System.Drawing.FontStyle.Bold); | |
475 | + this.xrLabel_ORDER_DATE.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 48.29165F); | |
476 | + this.xrLabel_ORDER_DATE.Name = "xrLabel_ORDER_DATE"; | |
477 | + this.xrLabel_ORDER_DATE.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
478 | + this.xrLabel_ORDER_DATE.SizeF = new System.Drawing.SizeF(405.1667F, 23F); | |
479 | + this.xrLabel_ORDER_DATE.StylePriority.UseFont = false; | |
480 | + this.xrLabel_ORDER_DATE.StylePriority.UseTextAlignment = false; | |
481 | + this.xrLabel_ORDER_DATE.Text = "일자: 2018.12.17 ~ 2018.12.17"; | |
482 | + this.xrLabel_ORDER_DATE.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
483 | + // | |
484 | + // xrLabel1 | |
485 | + // | |
486 | + this.xrLabel1.Font = new System.Drawing.Font("굴림체", 20F, System.Drawing.FontStyle.Bold); | |
487 | + this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 10.00001F); | |
488 | + this.xrLabel1.Name = "xrLabel1"; | |
489 | + this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
490 | + this.xrLabel1.SizeF = new System.Drawing.SizeF(405.1667F, 36.29166F); | |
491 | + this.xrLabel1.StylePriority.UseFont = false; | |
492 | + this.xrLabel1.StylePriority.UseTextAlignment = false; | |
493 | + this.xrLabel1.Text = "원가 현황"; | |
494 | + this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
495 | + // | |
496 | + // CostManagerReport | |
497 | + // | |
498 | + this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { | |
499 | + this.Detail, | |
500 | + this.TopMargin, | |
501 | + this.BottomMargin, | |
502 | + this.PageHeader}); | |
503 | + this.Font = new System.Drawing.Font("굴림체", 9F); | |
504 | + this.Landscape = true; | |
505 | + this.Margins = new System.Drawing.Printing.Margins(30, 20, 50, 53); | |
506 | + this.PageHeight = 827; | |
507 | + this.PageWidth = 1169; | |
508 | + this.PaperKind = System.Drawing.Printing.PaperKind.A4; | |
509 | + this.Version = "14.1"; | |
510 | + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit(); | |
511 | + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); | |
512 | + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); | |
513 | + | |
514 | + } | |
515 | + | |
516 | + #endregion | |
517 | + | |
518 | + private DevExpress.XtraReports.UI.DetailBand Detail; | |
519 | + private DevExpress.XtraReports.UI.TopMarginBand TopMargin; | |
520 | + private DevExpress.XtraReports.UI.BottomMarginBand BottomMargin; | |
521 | + private DevExpress.XtraReports.UI.XRTable xrTable5; | |
522 | + private DevExpress.XtraReports.UI.XRTableRow xrTableRow12; | |
523 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_ORDER_NO; | |
524 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_CUST_NM; | |
525 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_ITEM_NM; | |
526 | + private DevExpress.XtraReports.UI.PageHeaderBand PageHeader; | |
527 | + private DevExpress.XtraReports.UI.XRLabel xrLabel_ORDER_DATE; | |
528 | + private DevExpress.XtraReports.UI.XRLabel xrLabel1; | |
529 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_LN_SEQ; | |
530 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_FILE_NM; | |
531 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_ORDER_NORM; | |
532 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_ORDER_QTY; | |
533 | + private DevExpress.XtraReports.UI.XRTable xrTable1; | |
534 | + private DevExpress.XtraReports.UI.XRTableRow xrTableRow1; | |
535 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell1; | |
536 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell2; | |
537 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell3; | |
538 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell18; | |
539 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell20; | |
540 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell22; | |
541 | + private DevExpress.XtraReports.UI.XRLabel xrLabel_Page; | |
542 | + private DevExpress.XtraReports.UI.XRLabel xrLabel_Today; | |
543 | + private DevExpress.XtraReports.UI.XRPageInfo xrPageInfo1; | |
544 | + private DevExpress.XtraReports.UI.XRLabel xrLabel_COMP_NM; | |
545 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_LN_RMK; | |
546 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell4; | |
547 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell5; | |
548 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_CURR_UNIT_MY; | |
549 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_CURR_MY; | |
550 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_VAT_MY; | |
551 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_ORDER_MY; | |
552 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell6; | |
553 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell8; | |
554 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell9; | |
555 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell7; | |
556 | + } | |
557 | +} |
+++ .svn/pristine/0c/0c5607d6b0d506c291eee100acab0bb51fa8412a.svn-base
Binary file is not shown |
+++ .svn/pristine/0c/0c5686d96f1508bc641fa13e7e8789457190cef5.svn-base
... | ... | @@ -0,0 +1,138 @@ |
1 | +using ClientLib; | |
2 | +using ClientLib.CommonService; | |
3 | +using DevExpress.XtraGrid; | |
4 | +using DevExpress.XtraGrid.Columns; | |
5 | +using DevExpress.XtraGrid.Views.BandedGrid; | |
6 | +using DevExpress.XtraGrid.Views.Grid.ViewInfo; | |
7 | +using PublicLib; | |
8 | +using System; | |
9 | +using System.Collections.Generic; | |
10 | +using System.ComponentModel; | |
11 | +using System.Data; | |
12 | +using System.Drawing; | |
13 | +using System.Linq; | |
14 | +using System.Text; | |
15 | +using System.Windows.Forms; | |
16 | + | |
17 | +namespace HANMI_WORK | |
18 | +{ | |
19 | + public partial class ProcessRunReport : PublicLib.CommonMDI | |
20 | + { | |
21 | + public ProcessRunReport() | |
22 | + { | |
23 | + InitializeComponent(); | |
24 | + | |
25 | + | |
26 | + gridView_Main.CustomDrawCell += (sender, e) => | |
27 | + { | |
28 | + if (!e.Column.FieldName.StartsWith("C_")) | |
29 | + { | |
30 | + return; | |
31 | + } | |
32 | + | |
33 | + string value = UtilClass.toStr(e.CellValue); | |
34 | + if (UtilClass.isEqual(value, "0/0")) | |
35 | + { | |
36 | + e.Appearance.BackColor = Color.Red; | |
37 | + e.Appearance.ForeColor = Color.White; | |
38 | + } | |
39 | + else if (UtilClass.isNull(value)) | |
40 | + { | |
41 | + e.Appearance.BackColor = Color.Empty; | |
42 | + } | |
43 | + else | |
44 | + { | |
45 | + int inx = value.IndexOf("/"); | |
46 | + string v = value.Substring(0, inx); | |
47 | + if (UtilClass.toInt(v) == 0) | |
48 | + { | |
49 | + e.Appearance.BackColor = Color.Red; | |
50 | + } | |
51 | + else | |
52 | + { | |
53 | + e.Appearance.BackColor = Color.LightGreen; | |
54 | + } | |
55 | + } | |
56 | + }; | |
57 | + | |
58 | + dateEdit_SDATE.DateTime = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM") + "-01"); | |
59 | + dateEdit_FDATE.DateTime = DateTime.Now; | |
60 | + | |
61 | + dateEdit_FDATE.KeyPress += (sender, e) => | |
62 | + { | |
63 | + if (e.KeyChar == '\r') | |
64 | + { | |
65 | + searchProc(); | |
66 | + } | |
67 | + }; | |
68 | + | |
69 | + this.Shown += (sender, e) => | |
70 | + { | |
71 | + }; | |
72 | + } | |
73 | + | |
74 | + public override void searchProc() | |
75 | + { | |
76 | + try | |
77 | + { | |
78 | + | |
79 | + this.Cursor = Cursors.WaitCursor; | |
80 | + | |
81 | + gridControl_Main.DataSource = null; | |
82 | + | |
83 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] { | |
84 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD), | |
85 | + ClientClass.CreateSqlParameter("CUST_NM", SqlDbType.NVarChar, textEdit_CUST_NM.Text), | |
86 | + ClientClass.CreateSqlParameter("SDATE", SqlDbType.NVarChar, checkEdit_ORDER_DT.Checked ? dateEdit_SDATE.DateTime.ToString("yyyy-MM-dd") : ""), | |
87 | + ClientClass.CreateSqlParameter("FDATE", SqlDbType.NVarChar, dateEdit_FDATE.DateTime.ToString("yyyy-MM-dd")) | |
88 | + }; | |
89 | + ResultData resultData = ClientClass.GetData("GetProcessRunReport", aParam); | |
90 | + if (resultData.isError) | |
91 | + { | |
92 | + throw new Exception(resultData.ResultValue); | |
93 | + } | |
94 | + | |
95 | + while (gridView_Main.Columns.Count > 4) | |
96 | + { | |
97 | + gridView_Main.Columns.RemoveAt(4); | |
98 | + } | |
99 | + | |
100 | + BandedGridColumn column; | |
101 | + | |
102 | + DataTable aData = resultData.DataList.Tables[0]; | |
103 | + for (int i = 1; i < aData.Columns.Count; i++) | |
104 | + { | |
105 | + column = new BandedGridColumn(); | |
106 | + gridView_Main.Columns.Add(column); | |
107 | + column.OwnerBand = gridBand_PROC; | |
108 | + column.Visible = true; | |
109 | + column.OptionsColumn.FixedWidth = true; | |
110 | + column.Caption = aData.Columns[i].Caption; | |
111 | + column.FieldName = "C_" + UtilClass.toStr(aData.Rows[0][i]); | |
112 | + column.Width = 95; | |
113 | + column.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; | |
114 | + column.DisplayFormat.FormatString = "{0:#,##0}"; | |
115 | + column.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
116 | + column.AppearanceCell.Options.UseTextOptions = true; | |
117 | + column.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; | |
118 | + column.AppearanceHeader.Options.UseTextOptions = true; | |
119 | + } | |
120 | + | |
121 | + gridBand_PROC.Visible = true; | |
122 | + gridControl_Main.DataSource = resultData.DataList.Tables[1]; | |
123 | + | |
124 | + this.Cursor = Cursors.Arrow; | |
125 | + } | |
126 | + catch (Exception ex) | |
127 | + { | |
128 | + this.Cursor = Cursors.Arrow; | |
129 | + MessageBox.Show(ex.Message); | |
130 | + } | |
131 | + } | |
132 | + | |
133 | + public override void excelProc() | |
134 | + { | |
135 | + this.ExportExcelGrid(gridControl_Main); | |
136 | + } | |
137 | + } | |
138 | +}(No newline at end of file) |
+++ .svn/pristine/0d/0d216c933a8d464ff5a2e625e3285db0d4ab880d.svn-base
... | ... | @@ -0,0 +1,625 @@ |
1 | +namespace HANMI_SALE | |
2 | +{ | |
3 | + partial class WorkManagerReport | |
4 | + { | |
5 | + /// <summary> | |
6 | + /// Required designer variable. | |
7 | + /// </summary> | |
8 | + private System.ComponentModel.IContainer components = null; | |
9 | + | |
10 | + /// <summary> | |
11 | + /// Clean up any resources being used. | |
12 | + /// </summary> | |
13 | + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
14 | + protected override void Dispose(bool disposing) | |
15 | + { | |
16 | + if (disposing && (components != null)) | |
17 | + { | |
18 | + components.Dispose(); | |
19 | + } | |
20 | + base.Dispose(disposing); | |
21 | + } | |
22 | + | |
23 | + #region Designer generated code | |
24 | + | |
25 | + /// <summary> | |
26 | + /// Required method for Designer support - do not modify | |
27 | + /// the contents of this method with the code editor. | |
28 | + /// </summary> | |
29 | + private void InitializeComponent() | |
30 | + { | |
31 | + this.Detail = new DevExpress.XtraReports.UI.DetailBand(); | |
32 | + this.xrTable5 = new DevExpress.XtraReports.UI.XRTable(); | |
33 | + this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow(); | |
34 | + this.xrTableCell_ORDER_NO = new DevExpress.XtraReports.UI.XRTableCell(); | |
35 | + this.xrTableCell_LN_SEQ = new DevExpress.XtraReports.UI.XRTableCell(); | |
36 | + this.xrTableCell_CUST_NM = new DevExpress.XtraReports.UI.XRTableCell(); | |
37 | + this.xrTableCell_FILE_NM = new DevExpress.XtraReports.UI.XRTableCell(); | |
38 | + this.xrTableCell_PRINT_POS = new DevExpress.XtraReports.UI.XRTableCell(); | |
39 | + this.xrTableCell_IN_FIN_YN = new DevExpress.XtraReports.UI.XRTableCell(); | |
40 | + this.xrTableCell_IN_USR_NM = new DevExpress.XtraReports.UI.XRTableCell(); | |
41 | + this.xrTableCell_IN_DATE = new DevExpress.XtraReports.UI.XRTableCell(); | |
42 | + this.xrTableCell_ITEM_NM = new DevExpress.XtraReports.UI.XRTableCell(); | |
43 | + this.xrTableCell_ORDER_NORM = new DevExpress.XtraReports.UI.XRTableCell(); | |
44 | + this.xrTableCell_ORDER_QTY = new DevExpress.XtraReports.UI.XRTableCell(); | |
45 | + this.xrTableCell_FIN_QTY = new DevExpress.XtraReports.UI.XRTableCell(); | |
46 | + this.xrTableCell_WORK_USR_NM = new DevExpress.XtraReports.UI.XRTableCell(); | |
47 | + this.xrTableCell_WORK_STA_DATE = new DevExpress.XtraReports.UI.XRTableCell(); | |
48 | + this.xrTableCell_WORK_FIN_DATE = new DevExpress.XtraReports.UI.XRTableCell(); | |
49 | + this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); | |
50 | + this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); | |
51 | + this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand(); | |
52 | + this.xrLabel_Page = new DevExpress.XtraReports.UI.XRLabel(); | |
53 | + this.xrLabel_Today = new DevExpress.XtraReports.UI.XRLabel(); | |
54 | + this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); | |
55 | + this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); | |
56 | + this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); | |
57 | + this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); | |
58 | + this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); | |
59 | + this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); | |
60 | + this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); | |
61 | + this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); | |
62 | + this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); | |
63 | + this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); | |
64 | + this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); | |
65 | + this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell(); | |
66 | + this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell(); | |
67 | + this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell(); | |
68 | + this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell(); | |
69 | + this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell(); | |
70 | + this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell(); | |
71 | + this.xrLabel_ORDER_DATE = new DevExpress.XtraReports.UI.XRLabel(); | |
72 | + this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); | |
73 | + this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo(); | |
74 | + this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); | |
75 | + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit(); | |
76 | + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); | |
77 | + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); | |
78 | + // | |
79 | + // Detail | |
80 | + // | |
81 | + this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { | |
82 | + this.xrTable5}); | |
83 | + this.Detail.HeightF = 25F; | |
84 | + this.Detail.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount; | |
85 | + this.Detail.Name = "Detail"; | |
86 | + this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); | |
87 | + this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; | |
88 | + // | |
89 | + // xrTable5 | |
90 | + // | |
91 | + this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | |
92 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
93 | + this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); | |
94 | + this.xrTable5.Name = "xrTable5"; | |
95 | + this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { | |
96 | + this.xrTableRow12}); | |
97 | + this.xrTable5.SizeF = new System.Drawing.SizeF(1119F, 25F); | |
98 | + this.xrTable5.StylePriority.UseBorders = false; | |
99 | + this.xrTable5.StylePriority.UseTextAlignment = false; | |
100 | + this.xrTable5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
101 | + // | |
102 | + // xrTableRow12 | |
103 | + // | |
104 | + this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { | |
105 | + this.xrTableCell_ORDER_NO, | |
106 | + this.xrTableCell_LN_SEQ, | |
107 | + this.xrTableCell_CUST_NM, | |
108 | + this.xrTableCell_FILE_NM, | |
109 | + this.xrTableCell_PRINT_POS, | |
110 | + this.xrTableCell_IN_FIN_YN, | |
111 | + this.xrTableCell_IN_USR_NM, | |
112 | + this.xrTableCell_IN_DATE, | |
113 | + this.xrTableCell_ITEM_NM, | |
114 | + this.xrTableCell_ORDER_NORM, | |
115 | + this.xrTableCell_ORDER_QTY, | |
116 | + this.xrTableCell_FIN_QTY, | |
117 | + this.xrTableCell_WORK_USR_NM, | |
118 | + this.xrTableCell_WORK_STA_DATE, | |
119 | + this.xrTableCell_WORK_FIN_DATE}); | |
120 | + this.xrTableRow12.Name = "xrTableRow12"; | |
121 | + this.xrTableRow12.Weight = 1D; | |
122 | + // | |
123 | + // xrTableCell_ORDER_NO | |
124 | + // | |
125 | + this.xrTableCell_ORDER_NO.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) | |
126 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
127 | + this.xrTableCell_ORDER_NO.CanGrow = false; | |
128 | + this.xrTableCell_ORDER_NO.Name = "xrTableCell_ORDER_NO"; | |
129 | + this.xrTableCell_ORDER_NO.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
130 | + this.xrTableCell_ORDER_NO.StylePriority.UseBorders = false; | |
131 | + this.xrTableCell_ORDER_NO.StylePriority.UsePadding = false; | |
132 | + this.xrTableCell_ORDER_NO.StylePriority.UseTextAlignment = false; | |
133 | + this.xrTableCell_ORDER_NO.Text = "2018.12.17-0065"; | |
134 | + this.xrTableCell_ORDER_NO.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
135 | + this.xrTableCell_ORDER_NO.Weight = 0.29494385137190027D; | |
136 | + // | |
137 | + // xrTableCell_LN_SEQ | |
138 | + // | |
139 | + this.xrTableCell_LN_SEQ.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
140 | + this.xrTableCell_LN_SEQ.Name = "xrTableCell_LN_SEQ"; | |
141 | + this.xrTableCell_LN_SEQ.StylePriority.UseBorders = false; | |
142 | + this.xrTableCell_LN_SEQ.Text = "01"; | |
143 | + this.xrTableCell_LN_SEQ.Weight = 0.084269669988882356D; | |
144 | + // | |
145 | + // xrTableCell_CUST_NM | |
146 | + // | |
147 | + this.xrTableCell_CUST_NM.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
148 | + this.xrTableCell_CUST_NM.CanGrow = false; | |
149 | + this.xrTableCell_CUST_NM.Name = "xrTableCell_CUST_NM"; | |
150 | + this.xrTableCell_CUST_NM.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
151 | + this.xrTableCell_CUST_NM.StylePriority.UseBorders = false; | |
152 | + this.xrTableCell_CUST_NM.StylePriority.UsePadding = false; | |
153 | + this.xrTableCell_CUST_NM.StylePriority.UseTextAlignment = false; | |
154 | + this.xrTableCell_CUST_NM.Text = "가나커뮤니케이션"; | |
155 | + this.xrTableCell_CUST_NM.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
156 | + this.xrTableCell_CUST_NM.Weight = 0.32303373566799343D; | |
157 | + // | |
158 | + // xrTableCell_FILE_NM | |
159 | + // | |
160 | + this.xrTableCell_FILE_NM.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
161 | + this.xrTableCell_FILE_NM.Name = "xrTableCell_FILE_NM"; | |
162 | + this.xrTableCell_FILE_NM.StylePriority.UseBorders = false; | |
163 | + this.xrTableCell_FILE_NM.StylePriority.UseTextAlignment = false; | |
164 | + this.xrTableCell_FILE_NM.Text = "정신건강간호학"; | |
165 | + this.xrTableCell_FILE_NM.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
166 | + this.xrTableCell_FILE_NM.Weight = 0.3370786810935279D; | |
167 | + // | |
168 | + // xrTableCell_PRINT_POS | |
169 | + // | |
170 | + this.xrTableCell_PRINT_POS.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
171 | + this.xrTableCell_PRINT_POS.Name = "xrTableCell_PRINT_POS"; | |
172 | + this.xrTableCell_PRINT_POS.StylePriority.UseBorders = false; | |
173 | + this.xrTableCell_PRINT_POS.Text = "유원코팅 2277-6119"; | |
174 | + this.xrTableCell_PRINT_POS.Weight = 0.3370786810935279D; | |
175 | + // | |
176 | + // xrTableCell_IN_FIN_YN | |
177 | + // | |
178 | + this.xrTableCell_IN_FIN_YN.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
179 | + this.xrTableCell_IN_FIN_YN.Name = "xrTableCell_IN_FIN_YN"; | |
180 | + this.xrTableCell_IN_FIN_YN.StylePriority.UseBorders = false; | |
181 | + this.xrTableCell_IN_FIN_YN.Text = "√"; | |
182 | + this.xrTableCell_IN_FIN_YN.Weight = 0.0842696741493493D; | |
183 | + // | |
184 | + // xrTableCell_IN_USR_NM | |
185 | + // | |
186 | + this.xrTableCell_IN_USR_NM.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
187 | + this.xrTableCell_IN_USR_NM.CanGrow = false; | |
188 | + this.xrTableCell_IN_USR_NM.Name = "xrTableCell_IN_USR_NM"; | |
189 | + this.xrTableCell_IN_USR_NM.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
190 | + this.xrTableCell_IN_USR_NM.StylePriority.UseBorders = false; | |
191 | + this.xrTableCell_IN_USR_NM.StylePriority.UsePadding = false; | |
192 | + this.xrTableCell_IN_USR_NM.StylePriority.UseTextAlignment = false; | |
193 | + this.xrTableCell_IN_USR_NM.Text = "이임형"; | |
194 | + this.xrTableCell_IN_USR_NM.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
195 | + this.xrTableCell_IN_USR_NM.Weight = 0.14044945935517328D; | |
196 | + // | |
197 | + // xrTableCell_IN_DATE | |
198 | + // | |
199 | + this.xrTableCell_IN_DATE.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
200 | + this.xrTableCell_IN_DATE.Name = "xrTableCell_IN_DATE"; | |
201 | + this.xrTableCell_IN_DATE.StylePriority.UseBorders = false; | |
202 | + this.xrTableCell_IN_DATE.Text = "12/17 14:04"; | |
203 | + this.xrTableCell_IN_DATE.Weight = 0.22471912119293758D; | |
204 | + // | |
205 | + // xrTableCell_ITEM_NM | |
206 | + // | |
207 | + this.xrTableCell_ITEM_NM.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
208 | + this.xrTableCell_ITEM_NM.CanGrow = false; | |
209 | + this.xrTableCell_ITEM_NM.Name = "xrTableCell_ITEM_NM"; | |
210 | + this.xrTableCell_ITEM_NM.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
211 | + this.xrTableCell_ITEM_NM.StylePriority.UseBorders = false; | |
212 | + this.xrTableCell_ITEM_NM.StylePriority.UsePadding = false; | |
213 | + this.xrTableCell_ITEM_NM.StylePriority.UseTextAlignment = false; | |
214 | + this.xrTableCell_ITEM_NM.Text = "씰크(에폭)"; | |
215 | + this.xrTableCell_ITEM_NM.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
216 | + this.xrTableCell_ITEM_NM.Weight = 0.26685397236865227D; | |
217 | + // | |
218 | + // xrTableCell_ORDER_NORM | |
219 | + // | |
220 | + this.xrTableCell_ORDER_NORM.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
221 | + this.xrTableCell_ORDER_NORM.Name = "xrTableCell_ORDER_NORM"; | |
222 | + this.xrTableCell_ORDER_NORM.StylePriority.UseBorders = false; | |
223 | + this.xrTableCell_ORDER_NORM.Text = "국선지"; | |
224 | + this.xrTableCell_ORDER_NORM.Weight = 0.14044945282339852D; | |
225 | + // | |
226 | + // xrTableCell_ORDER_QTY | |
227 | + // | |
228 | + this.xrTableCell_ORDER_QTY.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
229 | + this.xrTableCell_ORDER_QTY.Name = "xrTableCell_ORDER_QTY"; | |
230 | + this.xrTableCell_ORDER_QTY.StylePriority.UseBorders = false; | |
231 | + this.xrTableCell_ORDER_QTY.StylePriority.UseTextAlignment = false; | |
232 | + this.xrTableCell_ORDER_QTY.Text = "1,000"; | |
233 | + this.xrTableCell_ORDER_QTY.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; | |
234 | + this.xrTableCell_ORDER_QTY.Weight = 0.14044945139145168D; | |
235 | + // | |
236 | + // xrTableCell_FIN_QTY | |
237 | + // | |
238 | + this.xrTableCell_FIN_QTY.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
239 | + this.xrTableCell_FIN_QTY.Name = "xrTableCell_FIN_QTY"; | |
240 | + this.xrTableCell_FIN_QTY.StylePriority.UseBorders = false; | |
241 | + this.xrTableCell_FIN_QTY.StylePriority.UseTextAlignment = false; | |
242 | + this.xrTableCell_FIN_QTY.Text = "1,000"; | |
243 | + this.xrTableCell_FIN_QTY.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; | |
244 | + this.xrTableCell_FIN_QTY.Weight = 0.1404494635388415D; | |
245 | + // | |
246 | + // xrTableCell_WORK_USR_NM | |
247 | + // | |
248 | + this.xrTableCell_WORK_USR_NM.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
249 | + this.xrTableCell_WORK_USR_NM.Name = "xrTableCell_WORK_USR_NM"; | |
250 | + this.xrTableCell_WORK_USR_NM.StylePriority.UseBorders = false; | |
251 | + this.xrTableCell_WORK_USR_NM.Text = "김건종"; | |
252 | + this.xrTableCell_WORK_USR_NM.Weight = 0.14044945282339852D; | |
253 | + // | |
254 | + // xrTableCell_WORK_STA_DATE | |
255 | + // | |
256 | + this.xrTableCell_WORK_STA_DATE.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
257 | + this.xrTableCell_WORK_STA_DATE.Name = "xrTableCell_WORK_STA_DATE"; | |
258 | + this.xrTableCell_WORK_STA_DATE.StylePriority.UseBorders = false; | |
259 | + this.xrTableCell_WORK_STA_DATE.Text = "12/17 14:04"; | |
260 | + this.xrTableCell_WORK_STA_DATE.Weight = 0.22471912537660568D; | |
261 | + // | |
262 | + // xrTableCell_WORK_FIN_DATE | |
263 | + // | |
264 | + this.xrTableCell_WORK_FIN_DATE.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
265 | + this.xrTableCell_WORK_FIN_DATE.Name = "xrTableCell_WORK_FIN_DATE"; | |
266 | + this.xrTableCell_WORK_FIN_DATE.StylePriority.UseBorders = false; | |
267 | + this.xrTableCell_WORK_FIN_DATE.Text = "12/17 14:04"; | |
268 | + this.xrTableCell_WORK_FIN_DATE.Weight = 0.26404499399898834D; | |
269 | + // | |
270 | + // TopMargin | |
271 | + // | |
272 | + this.TopMargin.HeightF = 50F; | |
273 | + this.TopMargin.Name = "TopMargin"; | |
274 | + this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); | |
275 | + this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; | |
276 | + // | |
277 | + // BottomMargin | |
278 | + // | |
279 | + this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { | |
280 | + this.xrLabel2}); | |
281 | + this.BottomMargin.HeightF = 53.26704F; | |
282 | + this.BottomMargin.Name = "BottomMargin"; | |
283 | + this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); | |
284 | + this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; | |
285 | + // | |
286 | + // PageHeader | |
287 | + // | |
288 | + this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { | |
289 | + this.xrPageInfo1, | |
290 | + this.xrLabel_Page, | |
291 | + this.xrLabel_Today, | |
292 | + this.xrTable1, | |
293 | + this.xrLabel_ORDER_DATE, | |
294 | + this.xrLabel1}); | |
295 | + this.PageHeader.HeightF = 104F; | |
296 | + this.PageHeader.Name = "PageHeader"; | |
297 | + // | |
298 | + // xrLabel_Page | |
299 | + // | |
300 | + this.xrLabel_Page.Font = new System.Drawing.Font("굴림체", 10F, System.Drawing.FontStyle.Bold); | |
301 | + this.xrLabel_Page.LocationFloat = new DevExpress.Utils.PointFloat(1025F, 48.29165F); | |
302 | + this.xrLabel_Page.Name = "xrLabel_Page"; | |
303 | + this.xrLabel_Page.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
304 | + this.xrLabel_Page.SizeF = new System.Drawing.SizeF(51.30286F, 23F); | |
305 | + this.xrLabel_Page.StylePriority.UseFont = false; | |
306 | + this.xrLabel_Page.StylePriority.UseTextAlignment = false; | |
307 | + this.xrLabel_Page.Text = "Page:"; | |
308 | + this.xrLabel_Page.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; | |
309 | + // | |
310 | + // xrLabel_Today | |
311 | + // | |
312 | + this.xrLabel_Today.Font = new System.Drawing.Font("굴림체", 10F, System.Drawing.FontStyle.Bold); | |
313 | + this.xrLabel_Today.LocationFloat = new DevExpress.Utils.PointFloat(813.7254F, 48.29166F); | |
314 | + this.xrLabel_Today.Name = "xrLabel_Today"; | |
315 | + this.xrLabel_Today.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
316 | + this.xrLabel_Today.SizeF = new System.Drawing.SizeF(211.2746F, 23F); | |
317 | + this.xrLabel_Today.StylePriority.UseFont = false; | |
318 | + this.xrLabel_Today.StylePriority.UseTextAlignment = false; | |
319 | + this.xrLabel_Today.Text = "Date: 2018.12.17. 12:34:45"; | |
320 | + this.xrLabel_Today.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
321 | + // | |
322 | + // xrTable1 | |
323 | + // | |
324 | + this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 78.81066F); | |
325 | + this.xrTable1.Name = "xrTable1"; | |
326 | + this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { | |
327 | + this.xrTableRow1}); | |
328 | + this.xrTable1.SizeF = new System.Drawing.SizeF(1119F, 25F); | |
329 | + this.xrTable1.StylePriority.UseTextAlignment = false; | |
330 | + this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
331 | + // | |
332 | + // xrTableRow1 | |
333 | + // | |
334 | + this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { | |
335 | + this.xrTableCell1, | |
336 | + this.xrTableCell2, | |
337 | + this.xrTableCell3, | |
338 | + this.xrTableCell4, | |
339 | + this.xrTableCell5, | |
340 | + this.xrTableCell6, | |
341 | + this.xrTableCell7, | |
342 | + this.xrTableCell8, | |
343 | + this.xrTableCell18, | |
344 | + this.xrTableCell20, | |
345 | + this.xrTableCell22, | |
346 | + this.xrTableCell23, | |
347 | + this.xrTableCell24, | |
348 | + this.xrTableCell25, | |
349 | + this.xrTableCell26}); | |
350 | + this.xrTableRow1.Name = "xrTableRow1"; | |
351 | + this.xrTableRow1.Weight = 1D; | |
352 | + // | |
353 | + // xrTableCell1 | |
354 | + // | |
355 | + this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | |
356 | + | DevExpress.XtraPrinting.BorderSide.Right) | |
357 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
358 | + this.xrTableCell1.CanGrow = false; | |
359 | + this.xrTableCell1.Name = "xrTableCell1"; | |
360 | + this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
361 | + this.xrTableCell1.StylePriority.UseBorders = false; | |
362 | + this.xrTableCell1.StylePriority.UsePadding = false; | |
363 | + this.xrTableCell1.StylePriority.UseTextAlignment = false; | |
364 | + this.xrTableCell1.Text = "관리번호"; | |
365 | + this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
366 | + this.xrTableCell1.Weight = 0.29494385137190027D; | |
367 | + // | |
368 | + // xrTableCell2 | |
369 | + // | |
370 | + this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
371 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
372 | + this.xrTableCell2.Name = "xrTableCell2"; | |
373 | + this.xrTableCell2.StylePriority.UseBorders = false; | |
374 | + this.xrTableCell2.Text = "순번"; | |
375 | + this.xrTableCell2.Weight = 0.084269669988882356D; | |
376 | + // | |
377 | + // xrTableCell3 | |
378 | + // | |
379 | + this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
380 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
381 | + this.xrTableCell3.CanGrow = false; | |
382 | + this.xrTableCell3.Name = "xrTableCell3"; | |
383 | + this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
384 | + this.xrTableCell3.StylePriority.UseBorders = false; | |
385 | + this.xrTableCell3.StylePriority.UsePadding = false; | |
386 | + this.xrTableCell3.StylePriority.UseTextAlignment = false; | |
387 | + this.xrTableCell3.Text = "거 래 처 명"; | |
388 | + this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
389 | + this.xrTableCell3.Weight = 0.32303373566799343D; | |
390 | + // | |
391 | + // xrTableCell4 | |
392 | + // | |
393 | + this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
394 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
395 | + this.xrTableCell4.Name = "xrTableCell4"; | |
396 | + this.xrTableCell4.StylePriority.UseBorders = false; | |
397 | + this.xrTableCell4.StylePriority.UseTextAlignment = false; | |
398 | + this.xrTableCell4.Text = "파 일 이 름"; | |
399 | + this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
400 | + this.xrTableCell4.Weight = 0.3370786810935279D; | |
401 | + // | |
402 | + // xrTableCell5 | |
403 | + // | |
404 | + this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
405 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
406 | + this.xrTableCell5.Name = "xrTableCell5"; | |
407 | + this.xrTableCell5.StylePriority.UseBorders = false; | |
408 | + this.xrTableCell5.Text = "인 쇄 소"; | |
409 | + this.xrTableCell5.Weight = 0.3370786810935279D; | |
410 | + // | |
411 | + // xrTableCell6 | |
412 | + // | |
413 | + this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
414 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
415 | + this.xrTableCell6.Name = "xrTableCell6"; | |
416 | + this.xrTableCell6.StylePriority.UseBorders = false; | |
417 | + this.xrTableCell6.Text = "입고"; | |
418 | + this.xrTableCell6.Weight = 0.0842696741493493D; | |
419 | + // | |
420 | + // xrTableCell7 | |
421 | + // | |
422 | + this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
423 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
424 | + this.xrTableCell7.CanGrow = false; | |
425 | + this.xrTableCell7.Name = "xrTableCell7"; | |
426 | + this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
427 | + this.xrTableCell7.StylePriority.UseBorders = false; | |
428 | + this.xrTableCell7.StylePriority.UsePadding = false; | |
429 | + this.xrTableCell7.StylePriority.UseTextAlignment = false; | |
430 | + this.xrTableCell7.Text = "입고자"; | |
431 | + this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; | |
432 | + this.xrTableCell7.Weight = 0.14044945935517328D; | |
433 | + // | |
434 | + // xrTableCell8 | |
435 | + // | |
436 | + this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
437 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
438 | + this.xrTableCell8.Name = "xrTableCell8"; | |
439 | + this.xrTableCell8.StylePriority.UseBorders = false; | |
440 | + this.xrTableCell8.Text = "입고일시"; | |
441 | + this.xrTableCell8.Weight = 0.22471912119293758D; | |
442 | + // | |
443 | + // xrTableCell18 | |
444 | + // | |
445 | + this.xrTableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
446 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
447 | + this.xrTableCell18.CanGrow = false; | |
448 | + this.xrTableCell18.Name = "xrTableCell18"; | |
449 | + this.xrTableCell18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
450 | + this.xrTableCell18.StylePriority.UseBorders = false; | |
451 | + this.xrTableCell18.StylePriority.UsePadding = false; | |
452 | + this.xrTableCell18.StylePriority.UseTextAlignment = false; | |
453 | + this.xrTableCell18.Text = "작업명"; | |
454 | + this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
455 | + this.xrTableCell18.Weight = 0.26685397236865227D; | |
456 | + // | |
457 | + // xrTableCell20 | |
458 | + // | |
459 | + this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
460 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
461 | + this.xrTableCell20.Name = "xrTableCell20"; | |
462 | + this.xrTableCell20.StylePriority.UseBorders = false; | |
463 | + this.xrTableCell20.Text = "절수"; | |
464 | + this.xrTableCell20.Weight = 0.14044945282339852D; | |
465 | + // | |
466 | + // xrTableCell22 | |
467 | + // | |
468 | + this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
469 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
470 | + this.xrTableCell22.Name = "xrTableCell22"; | |
471 | + this.xrTableCell22.StylePriority.UseBorders = false; | |
472 | + this.xrTableCell22.Text = "주문"; | |
473 | + this.xrTableCell22.Weight = 0.14044945139145168D; | |
474 | + // | |
475 | + // xrTableCell23 | |
476 | + // | |
477 | + this.xrTableCell23.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
478 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
479 | + this.xrTableCell23.Name = "xrTableCell23"; | |
480 | + this.xrTableCell23.StylePriority.UseBorders = false; | |
481 | + this.xrTableCell23.Text = "완료"; | |
482 | + this.xrTableCell23.Weight = 0.1404494635388415D; | |
483 | + // | |
484 | + // xrTableCell24 | |
485 | + // | |
486 | + this.xrTableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
487 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
488 | + this.xrTableCell24.Name = "xrTableCell24"; | |
489 | + this.xrTableCell24.StylePriority.UseBorders = false; | |
490 | + this.xrTableCell24.Text = "작업자"; | |
491 | + this.xrTableCell24.Weight = 0.14044945282339852D; | |
492 | + // | |
493 | + // xrTableCell25 | |
494 | + // | |
495 | + this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
496 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
497 | + this.xrTableCell25.Name = "xrTableCell25"; | |
498 | + this.xrTableCell25.StylePriority.UseBorders = false; | |
499 | + this.xrTableCell25.Text = "시작일시"; | |
500 | + this.xrTableCell25.Weight = 0.22471912537660568D; | |
501 | + // | |
502 | + // xrTableCell26 | |
503 | + // | |
504 | + this.xrTableCell26.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) | |
505 | + | DevExpress.XtraPrinting.BorderSide.Bottom))); | |
506 | + this.xrTableCell26.Name = "xrTableCell26"; | |
507 | + this.xrTableCell26.StylePriority.UseBorders = false; | |
508 | + this.xrTableCell26.Text = "완료일시"; | |
509 | + this.xrTableCell26.Weight = 0.26404499399898834D; | |
510 | + // | |
511 | + // xrLabel_ORDER_DATE | |
512 | + // | |
513 | + this.xrLabel_ORDER_DATE.Font = new System.Drawing.Font("굴림체", 10F, System.Drawing.FontStyle.Bold); | |
514 | + this.xrLabel_ORDER_DATE.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 48.29165F); | |
515 | + this.xrLabel_ORDER_DATE.Name = "xrLabel_ORDER_DATE"; | |
516 | + this.xrLabel_ORDER_DATE.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
517 | + this.xrLabel_ORDER_DATE.SizeF = new System.Drawing.SizeF(405.1667F, 23F); | |
518 | + this.xrLabel_ORDER_DATE.StylePriority.UseFont = false; | |
519 | + this.xrLabel_ORDER_DATE.StylePriority.UseTextAlignment = false; | |
520 | + this.xrLabel_ORDER_DATE.Text = "일자: 2018.12.17 ~ 2018.12.17"; | |
521 | + this.xrLabel_ORDER_DATE.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
522 | + // | |
523 | + // xrLabel1 | |
524 | + // | |
525 | + this.xrLabel1.Font = new System.Drawing.Font("굴림체", 20F, System.Drawing.FontStyle.Bold); | |
526 | + this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 10.00001F); | |
527 | + this.xrLabel1.Name = "xrLabel1"; | |
528 | + this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
529 | + this.xrLabel1.SizeF = new System.Drawing.SizeF(405.1667F, 36.29166F); | |
530 | + this.xrLabel1.StylePriority.UseFont = false; | |
531 | + this.xrLabel1.StylePriority.UseTextAlignment = false; | |
532 | + this.xrLabel1.Text = "작업지시 현황"; | |
533 | + this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
534 | + // | |
535 | + // xrPageInfo1 | |
536 | + // | |
537 | + this.xrPageInfo1.Font = new System.Drawing.Font("굴림체", 9F, System.Drawing.FontStyle.Bold); | |
538 | + this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1076.303F, 48.29165F); | |
539 | + this.xrPageInfo1.Name = "xrPageInfo1"; | |
540 | + this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
541 | + this.xrPageInfo1.SizeF = new System.Drawing.SizeF(39.79163F, 23F); | |
542 | + this.xrPageInfo1.StylePriority.UseFont = false; | |
543 | + this.xrPageInfo1.StylePriority.UseTextAlignment = false; | |
544 | + this.xrPageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; | |
545 | + // | |
546 | + // xrLabel2 | |
547 | + // | |
548 | + this.xrLabel2.Font = new System.Drawing.Font("굴림체", 8F); | |
549 | + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 0F); | |
550 | + this.xrLabel2.Name = "xrLabel2"; | |
551 | + this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); | |
552 | + this.xrLabel2.SizeF = new System.Drawing.SizeF(94.99998F, 23F); | |
553 | + this.xrLabel2.StylePriority.UseFont = false; | |
554 | + this.xrLabel2.StylePriority.UseTextAlignment = false; | |
555 | + this.xrLabel2.Text = "(주)한미칼라"; | |
556 | + this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; | |
557 | + // | |
558 | + // WorkManagerReport | |
559 | + // | |
560 | + this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { | |
561 | + this.Detail, | |
562 | + this.TopMargin, | |
563 | + this.BottomMargin, | |
564 | + this.PageHeader}); | |
565 | + this.Font = new System.Drawing.Font("굴림체", 9F); | |
566 | + this.Landscape = true; | |
567 | + this.Margins = new System.Drawing.Printing.Margins(30, 20, 50, 53); | |
568 | + this.PageHeight = 827; | |
569 | + this.PageWidth = 1169; | |
570 | + this.PaperKind = System.Drawing.Printing.PaperKind.A4; | |
571 | + this.Version = "14.1"; | |
572 | + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit(); | |
573 | + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); | |
574 | + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); | |
575 | + | |
576 | + } | |
577 | + | |
578 | + #endregion | |
579 | + | |
580 | + private DevExpress.XtraReports.UI.DetailBand Detail; | |
581 | + private DevExpress.XtraReports.UI.TopMarginBand TopMargin; | |
582 | + private DevExpress.XtraReports.UI.BottomMarginBand BottomMargin; | |
583 | + private DevExpress.XtraReports.UI.XRTable xrTable5; | |
584 | + private DevExpress.XtraReports.UI.XRTableRow xrTableRow12; | |
585 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_ORDER_NO; | |
586 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_CUST_NM; | |
587 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_IN_USR_NM; | |
588 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_ITEM_NM; | |
589 | + private DevExpress.XtraReports.UI.PageHeaderBand PageHeader; | |
590 | + private DevExpress.XtraReports.UI.XRLabel xrLabel_ORDER_DATE; | |
591 | + private DevExpress.XtraReports.UI.XRLabel xrLabel1; | |
592 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_LN_SEQ; | |
593 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_FILE_NM; | |
594 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_PRINT_POS; | |
595 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_IN_FIN_YN; | |
596 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_IN_DATE; | |
597 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_ORDER_NORM; | |
598 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_ORDER_QTY; | |
599 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_FIN_QTY; | |
600 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_WORK_USR_NM; | |
601 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_WORK_STA_DATE; | |
602 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell_WORK_FIN_DATE; | |
603 | + private DevExpress.XtraReports.UI.XRTable xrTable1; | |
604 | + private DevExpress.XtraReports.UI.XRTableRow xrTableRow1; | |
605 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell1; | |
606 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell2; | |
607 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell3; | |
608 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell4; | |
609 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell5; | |
610 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell6; | |
611 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell7; | |
612 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell8; | |
613 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell18; | |
614 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell20; | |
615 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell22; | |
616 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell23; | |
617 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell24; | |
618 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell25; | |
619 | + private DevExpress.XtraReports.UI.XRTableCell xrTableCell26; | |
620 | + private DevExpress.XtraReports.UI.XRLabel xrLabel_Page; | |
621 | + private DevExpress.XtraReports.UI.XRLabel xrLabel_Today; | |
622 | + private DevExpress.XtraReports.UI.XRPageInfo xrPageInfo1; | |
623 | + private DevExpress.XtraReports.UI.XRLabel xrLabel2; | |
624 | + } | |
625 | +} |
+++ .svn/pristine/0d/0da4db3f4b6c341fb1c5da8f0a13c819bfc39579.svn-base
... | ... | @@ -0,0 +1,334 @@ |
1 | +using ClientLib; | |
2 | +using ClientLib.CommonService; | |
3 | +using DevExpress.XtraGrid; | |
4 | +using DevExpress.XtraGrid.Views.Grid.ViewInfo; | |
5 | +using PublicLib; | |
6 | +using System; | |
7 | +using System.Collections.Generic; | |
8 | +using System.ComponentModel; | |
9 | +using System.Data; | |
10 | +using System.Drawing; | |
11 | +using System.Linq; | |
12 | +using System.Reflection; | |
13 | +using System.Text; | |
14 | +using System.Windows.Forms; | |
15 | + | |
16 | +namespace HANMI_J_SALE | |
17 | +{ | |
18 | + public partial class CreditLongSalesList : PublicLib.CommonMDI | |
19 | + { | |
20 | + public CreditLongSalesList() | |
21 | + { | |
22 | + InitializeComponent(); | |
23 | + | |
24 | + gridControl_Main.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat; | |
25 | + gridControl_Main.LookAndFeel.UseDefaultLookAndFeel = false; | |
26 | + gridView_Main.Appearance.HeaderPanel.BackColor = Color.FromArgb(170, 204, 255); | |
27 | + | |
28 | + | |
29 | + spinEdit_YY.Value = DateTime.Now.Year; | |
30 | + spinEdit_MM.Value = DateTime.Now.Month; | |
31 | + | |
32 | + spinEdit_MM.Spin += (sender, e) => | |
33 | + { | |
34 | + if (e.IsSpinUp) | |
35 | + { | |
36 | + if (spinEdit_MM.Value >= 12) | |
37 | + { | |
38 | + spinEdit_YY.Value++; | |
39 | + spinEdit_MM.Value = 1; | |
40 | + e.Handled = true; | |
41 | + } | |
42 | + } | |
43 | + else | |
44 | + { | |
45 | + if (spinEdit_MM.Value <= 1) | |
46 | + { | |
47 | + spinEdit_YY.Value--; | |
48 | + spinEdit_MM.Value = 12; | |
49 | + e.Handled = true; | |
50 | + } | |
51 | + } | |
52 | + }; | |
53 | + | |
54 | + buttonEdit_CUST_NM.ButtonClick += (sender, e) => | |
55 | + { | |
56 | + selectCustProc(); | |
57 | + }; | |
58 | + buttonEdit_CUST_NM.KeyPress += (sender, e) => | |
59 | + { | |
60 | + if (e.KeyChar == '\r') | |
61 | + { | |
62 | + selectCustProc(); | |
63 | + } | |
64 | + }; | |
65 | + | |
66 | + this.Shown += (sender, e) => | |
67 | + { | |
68 | + try | |
69 | + { | |
70 | + comboBoxEdit_SEARCH_CONDITION.SelectedIndex = 1; | |
71 | + | |
72 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] { | |
73 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD) | |
74 | + }; | |
75 | + ResultData resultData = ClientClass.GetData("GetSalesListForLookup", aParam); | |
76 | + if (resultData.isError) | |
77 | + { | |
78 | + throw new Exception(resultData.ResultValue); | |
79 | + } | |
80 | + | |
81 | + DataRow row; | |
82 | + | |
83 | + row = resultData.DataList.Tables[0].NewRow(); | |
84 | + row["USR_ID"] = ""; | |
85 | + row["EMP_NO"] = ""; | |
86 | + row["USR_NM"] = "전체담당자"; | |
87 | + resultData.DataList.Tables[0].Rows.InsertAt(row, 0); | |
88 | + UtilClass.SetLookup(lookUpEdit_SALES_USER, resultData.DataList.Tables[0], "EMP_NO", "USR_NM", true); | |
89 | + | |
90 | + row = resultData.DataList.Tables[1].NewRow(); | |
91 | + row["MST_DEPT_CD"] = ""; | |
92 | + row["DEPT_CD"] = ""; | |
93 | + row["DEPT_NM"] = "전체부서"; | |
94 | + resultData.DataList.Tables[1].Rows.InsertAt(row, 0); | |
95 | + UtilClass.SetLookup(lookUpEdit_DEPT, resultData.DataList.Tables[1], "MST_DEPT_CD", "DEPT_NM", true); | |
96 | + } | |
97 | + catch (Exception ex) | |
98 | + { | |
99 | + MessageBox.Show(ex.Message); | |
100 | + this.Close(); | |
101 | + } | |
102 | + }; | |
103 | + } | |
104 | + | |
105 | + private void selectCustProc() | |
106 | + { | |
107 | + SelectCustomerForm form = new SelectCustomerForm(buttonEdit_CUST_NM.Text, DateTime.Now); | |
108 | + if (form.ShowDialog() != DialogResult.Yes) | |
109 | + { | |
110 | + return; | |
111 | + } | |
112 | + buttonEdit_CUST_NM.Text = form.m_CUST_NM; | |
113 | + labelControl_CUST_CD.Text = form.m_CUST_CD; | |
114 | + lookUpEdit_SALES_USER.Focus(); | |
115 | + } | |
116 | + | |
117 | + public override void searchProc() | |
118 | + { | |
119 | + try | |
120 | + { | |
121 | + this.Cursor = Cursors.WaitCursor; | |
122 | + | |
123 | + gridControl_Main.DataSource = null; | |
124 | + | |
125 | + SerializedSqlParam[] aParam = new SerializedSqlParam[] { | |
126 | + ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD), | |
127 | + ClientClass.CreateSqlParameter("YYMM", SqlDbType.NVarChar, spinEdit_YY.Value.ToString("0000") + "." + spinEdit_MM.Value.ToString("00")), | |
128 | + ClientClass.CreateSqlParameter("SEARCH_CONDITION", SqlDbType.Int, comboBoxEdit_SEARCH_CONDITION.SelectedIndex), | |
129 | + ClientClass.CreateSqlParameter("REMARK_CONDITION", SqlDbType.Int, comboBoxEdit_REMARK_CONDITION.SelectedIndex), | |
130 | + ClientClass.CreateSqlParameter("MST_DEPT_CD", SqlDbType.NVarChar, lookUpEdit_DEPT.EditValue), | |
131 | + ClientClass.CreateSqlParameter("SALES_USR_ID", SqlDbType.NVarChar, lookUpEdit_SALES_USER.EditValue), | |
132 | + ClientClass.CreateSqlParameter("CUST_CD", SqlDbType.NVarChar, labelControl_CUST_CD.Text), | |
133 | + ClientClass.CreateSqlParameter("ONLY_4_OVER", SqlDbType.NVarChar, checkEdit_ONLY_4_OVER.Checked ? "Y" : "N"), | |
134 | + ClientClass.CreateSqlParameter("CURRENT_REMAIN_ONLY", SqlDbType.NVarChar, checkEdit_CurrentRemainOnly.Checked ? "Y" : "N") | |
135 | + }; | |
136 | + | |
137 | + // GetCreditLongSalesList2 함수로 변경 | |
138 | + ResultData resultData = ClientClass.GetData("GetCreditLongSalesList2", aParam); | |
139 | + if (resultData.isError) | |
140 | + { | |
141 | + throw new Exception(resultData.ResultValue); | |
142 | + } | |
143 | + | |
144 | + DataTable aData = resultData.TableData; | |
145 | + | |
146 | + foreach (DataRow inrow in aData.Rows) | |
147 | + { | |
148 | + //decimal col_my_c1 = UtilClass.toDecimal(inrow["COL_MY_C1"]); | |
149 | + decimal not_my_2 = UtilClass.toDecimal(inrow["NOT_MY_2"]); | |
150 | + decimal not_my_3 = UtilClass.toDecimal(inrow["NOT_MY_3"]); | |
151 | + decimal not_my_4 = UtilClass.toDecimal(inrow["NOT_MY_4"]); | |
152 | + decimal not_my_5 = UtilClass.toDecimal(inrow["NOT_MY_5"]); | |
153 | + decimal not_my_6 = UtilClass.toDecimal(inrow["NOT_MY_6"]); | |
154 | + decimal not_my_7 = UtilClass.toDecimal(inrow["NOT_MY_7"]); | |
155 | + decimal base_my = UtilClass.toDecimal(inrow["BASE_MY"]); | |
156 | + //decimal prev_my = UtilClass.toDecimal(inrow["PREV_REMAIN_MY"]); | |
157 | + decimal col_my_total = UtilClass.toDecimal(inrow["COL_MY_TOTAL"]); | |
158 | + | |
159 | + | |
160 | + not_my_7 += base_my; | |
161 | + if (not_my_7 < 0) | |
162 | + { | |
163 | + col_my_total = col_my_total + (-not_my_7); | |
164 | + inrow["NOT_MY_7"] = 0; | |
165 | + } | |
166 | + | |
167 | + if (col_my_total > 0 && not_my_7 > 0) | |
168 | + { | |
169 | + inrow["NOT_MY_7"] = (col_my_total >= not_my_7) ? 0 : (not_my_7 - col_my_total); | |
170 | + col_my_total -= not_my_7; | |
171 | + } | |
172 | + if (col_my_total > 0 && not_my_6 > 0) | |
173 | + { | |
174 | + inrow["NOT_MY_6"] = (col_my_total >= not_my_6) ? 0 : (not_my_6 - col_my_total); | |
175 | + col_my_total -= not_my_6; | |
176 | + } | |
177 | + if (col_my_total > 0 && not_my_5 > 0) | |
178 | + { | |
179 | + inrow["NOT_MY_5"] = (col_my_total >= not_my_5) ? 0 : (not_my_5 - col_my_total); | |
180 | + col_my_total -= not_my_5; | |
181 | + } | |
182 | + if (col_my_total > 0 && not_my_4 > 0) | |
183 | + { | |
184 | + inrow["NOT_MY_4"] = (col_my_total >= not_my_4) ? 0 : (not_my_4 - col_my_total); | |
185 | + col_my_total -= not_my_4; | |
186 | + } | |
187 | + if (col_my_total > 0 && not_my_3 > 0) | |
188 | + { | |
189 | + inrow["NOT_MY_3"] = (col_my_total >= not_my_3) ? 0 : (not_my_3 - col_my_total); | |
190 | + col_my_total -= not_my_3; | |
191 | + } | |
192 | + if (col_my_total > 0 && not_my_2 > 0) | |
193 | + { | |
194 | + inrow["NOT_MY_2"] = (col_my_total >= not_my_2) ? 0 : (not_my_2 - col_my_total); | |
195 | + col_my_total -= not_my_2; | |
196 | + } | |
197 | + | |
198 | + //if (col_my_total > 0 && prev_my > 0) | |
199 | + //{ | |
200 | + // inrow["PREV_REMAIN_MY"] = (col_my_total >= prev_my) ? 0 : (prev_my - col_my_total); | |
201 | + // col_my_total -= prev_my; | |
202 | + //} | |
203 | + | |
204 | + //if (col_my_c1 > 0) //당월수금이 있을시 | |
205 | + //{ | |
206 | + // if (not_my_6 > 0) | |
207 | + // { | |
208 | + // inrow["NOT_MY_6"] = not_my_6 - col_my_c1; | |
209 | + // } | |
210 | + // else if (not_my_5 > 0) | |
211 | + // { | |
212 | + // inrow["NOT_MY_5"] = not_my_5 - col_my_c1; | |
213 | + // } | |
214 | + // else if (not_my_4 > 0) | |
215 | + // { | |
216 | + // inrow["NOT_MY_4"] = not_my_4 - col_my_c1; | |
217 | + // } | |
218 | + // else if (not_my_3 > 0) | |
219 | + // { | |
220 | + // inrow["NOT_MY_3"] = not_my_3 - col_my_c1; | |
221 | + // } | |
222 | + // else if (not_my_2 > 0) | |
223 | + // { | |
224 | + // inrow["NOT_MY_2"] = not_my_2 - col_my_c1; | |
225 | + // } | |
226 | + //} | |
227 | + } | |
228 | + aData.AcceptChanges(); | |
229 | + | |
230 | + gridControl_Main.DataSource = aData; | |
231 | + this.Cursor = Cursors.Arrow; | |
232 | + } | |
233 | + catch (Exception ex) | |
234 | + { | |
235 | + this.Cursor = Cursors.Arrow; | |
236 | + MessageBox.Show(ex.Message); | |
237 | + } | |
238 | + } | |
239 | + | |
240 | + // 원래 코드 | |
241 | + //public override void searchProc() | |
242 | + //{ | |
243 | + // try | |
244 | + // { | |
245 | + // this.Cursor = Cursors.WaitCursor; | |
246 | + | |
247 | + // gridControl_Main.DataSource = null; | |
248 | + | |
249 | + // SerializedSqlParam[] aParam = new SerializedSqlParam[] { | |
250 | + // ClientClass.CreateSqlParameter("COMP_CD", SqlDbType.NVarChar, ConstClass._COMP_CD), | |
251 | + // ClientClass.CreateSqlParameter("YYMM", SqlDbType.NVarChar, spinEdit_YY.Value.ToString("0000") + "." + spinEdit_MM.Value.ToString("00")), | |
252 | + // ClientClass.CreateSqlParameter("SEARCH_CONDITION", SqlDbType.Int, comboBoxEdit_SEARCH_CONDITION.SelectedIndex), | |
253 | + // ClientClass.CreateSqlParameter("REMARK_CONDITION", SqlDbType.Int, comboBoxEdit_REMARK_CONDITION.SelectedIndex), | |
254 | + // ClientClass.CreateSqlParameter("MST_DEPT_CD", SqlDbType.NVarChar, lookUpEdit_DEPT.EditValue), | |
255 | + // ClientClass.CreateSqlParameter("SALES_USR_ID", SqlDbType.NVarChar, lookUpEdit_SALES_USER.EditValue), | |
256 | + // ClientClass.CreateSqlParameter("CUST_CD", SqlDbType.NVarChar, labelControl_CUST_CD.Text), | |
257 | + // ClientClass.CreateSqlParameter("ONLY_4_OVER", SqlDbType.NVarChar, checkEdit_ONLY_4_OVER.Checked ? "Y" : "N"), | |
258 | + // ClientClass.CreateSqlParameter("CURRENT_REMAIN_ONLY", SqlDbType.NVarChar, checkEdit_CurrentRemainOnly.Checked ? "Y" : "N") | |
259 | + // }; | |
260 | + // ResultData resultData = ClientClass.GetData("GetCreditLongSalesList", aParam); | |
261 | + // if (resultData.isError) | |
262 | + // { | |
263 | + // throw new Exception(resultData.ResultValue); | |
264 | + // } | |
265 | + | |
266 | + // DataTable aData = resultData.TableData; | |
267 | + | |
268 | + // foreach (DataRow inrow in aData.Rows) | |
269 | + // { | |
270 | + // decimal col_my_c1 = UtilClass.toDecimal(inrow["COL_MY_C1"]); | |
271 | + // decimal not_my_2 = UtilClass.toDecimal(inrow["NOT_MY_2"]); | |
272 | + // decimal not_my_3 = UtilClass.toDecimal(inrow["NOT_MY_3"]); | |
273 | + // decimal not_my_4 = UtilClass.toDecimal(inrow["NOT_MY_4"]); | |
274 | + // decimal not_my_5 = UtilClass.toDecimal(inrow["NOT_MY_5"]); | |
275 | + // decimal not_my_6 = UtilClass.toDecimal(inrow["NOT_MY_6"]); | |
276 | + // if (col_my_c1 > 0) //당월수금이 있을시 | |
277 | + // { | |
278 | + // if (not_my_6 > 0) | |
279 | + // { | |
280 | + // inrow["NOT_MY_6"] = not_my_6 - col_my_c1; | |
281 | + // } | |
282 | + // else if (not_my_5 > 0) | |
283 | + // { | |
284 | + // inrow["NOT_MY_5"] = not_my_5 - col_my_c1; | |
285 | + // } | |
286 | + // else if (not_my_4 > 0) | |
287 | + // { | |
288 | + // inrow["NOT_MY_4"] = not_my_4 - col_my_c1; | |
289 | + // } | |
290 | + // else if (not_my_3 > 0) | |
291 | + // { | |
292 | + // inrow["NOT_MY_3"] = not_my_3 - col_my_c1; | |
293 | + // } | |
294 | + // else if (not_my_2 > 0) | |
295 | + // { | |
296 | + // inrow["NOT_MY_2"] = not_my_2 - col_my_c1; | |
297 | + // } | |
298 | + // } | |
299 | + // } | |
300 | + // aData.AcceptChanges(); | |
301 | + | |
302 | + // gridControl_Main.DataSource = aData; | |
303 | + // this.Cursor = Cursors.Arrow; | |
304 | + // } | |
305 | + // catch (Exception ex) | |
306 | + // { | |
307 | + // this.Cursor = Cursors.Arrow; | |
308 | + // MessageBox.Show(ex.Message); | |
309 | + // } | |
310 | + //} | |
311 | + | |
312 | + public override void printProc() | |
313 | + { | |
314 | + try | |
315 | + { | |
316 | + if (gridControl_Main.DataSource == null) | |
317 | + { | |
318 | + return; | |
319 | + } | |
320 | + | |
321 | + CommonPreview.showPreview(gridControl_Main, "장기 외상매출현황(6개월)", true); | |
322 | + } | |
323 | + catch (Exception ex) | |
324 | + { | |
325 | + MessageBox.Show(ex.Message); | |
326 | + } | |
327 | + } | |
328 | + | |
329 | + public override void excelProc() | |
330 | + { | |
331 | + this.ExportExcelGrid(gridControl_Main); | |
332 | + } | |
333 | + } | |
334 | +}(No newline at end of file) |
+++ .svn/pristine/0f/0f83d71501fc284565631690afcc6c3851d1d020.svn-base
This file is too big to display. |
+++ .svn/pristine/0f/0fb684f582ae98378fd242b07d0bd971fa25d6c5.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/0f/0ff50d0fb7edb47280fbb4a30c3883b49ae79811.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/10/1004339c30d4ebefc4fd7ab341b167be79c37427.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/10/10f61d553b63f76e6fc45bcb572b0e901e742bd8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/11/11b2820f40a7f4a0f0bc9854e62dc5129b6c8495.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/11/11fe0d78e1628e7ebe4157229b6e1f32e1324b6b.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/13/13583657ae7b9d7248c71c5f78c1ac6414d828e7.svn-base
Binary file is not shown |
+++ .svn/pristine/13/135b5df2341cd3a239db6d5c768e8d43df343f81.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/13/13d0443e186606b9a00ec850ed28671f30ae7b5d.svn-base
Binary file is not shown |
+++ .svn/pristine/14/1416596fe078c2ffc60799c0d3b6d7e2c0ebde13.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/15/1567b04f9a7f9a96e24236f4454f6900264c78f0.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/16/16383d7b46fd7633c7d8b51adeec8d31568b0c86.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/16/16c4fd8008e0fb633fea060406487e5d3f8a3a44.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/17/17671ab5d5cc0f8fb904fbc36dafa93fbc65a199.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/17/17b138fb101794e25889ce66a39704ccd9910922.svn-base
Binary file is not shown |
+++ .svn/pristine/17/17d43666320d90189ac3c8d4db70f5c1549f4815.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/18/1849ebff09e7ef3759e169c65475fcb2bb9b3c29.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/18/18b76796126b5fd39b93269a80edbf293353f385.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/19/193bd10b747e65e2ef69ccf974579021dd9d0320.svn-base
Binary file is not shown |
+++ .svn/pristine/19/193e21367596fc7c6b6feccc7f3520ed402f56bd.svn-base
Binary file is not shown |
+++ .svn/pristine/19/1994964ca3bf37747a183cf0ad2970279a91c041.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/19/19b40914694ee6048263acbf530344814dca81f0.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1b/1b24a2698dcf312e3c81d703c789c01a35fa73b8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1b/1b4bfa1b52a2f6b8c24ae93319e295cfe1b0d49c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1b/1bf074d234abac5ebfb29b070314b7f14eca3c61.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1c/1c06ac76b73a59a5c70a87f19f58bc9e7044b1d3.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1c/1c17040f4897c0b5dd6abfcc47456c1764c07f5d.svn-base
Binary file is not shown |
+++ .svn/pristine/1c/1c44a83d836483d27b7a7323c21732a1e1367a62.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1d/1dd945e7d4017cafbc5bfaf6b191a3b433a26c9d.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1e/1e76d601853d3eb399bf11e67108dcc570f7b2bd.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1e/1e8406295e6f047741c5a8c45a735cb1e230ff79.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1f/1f0395fd540329de1aecd6f599cf8b222695b17e.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1f/1f381e3d9278e9adf36c4ac6d031855d688ca6d2.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1f/1f5035050770ecab19bf8e1b7f0f7d7e79438089.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1f/1f7b6ca8b2c3ad2ea9f72fd1a6e8be147053393a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/1f/1ff716dbec337555f7e29e2016cbad76581dcf17.svn-base
Binary file is not shown |
+++ .svn/pristine/20/20da8db58256bc4a02cc732eb5cf9216599cde1b.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/20/20f96e099a220852ea7f0a634313e36bb67d3257.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/21/21386af20de76286206e26ebb67abb8f7997eb7c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/21/214c94f57fb156df83137578d8f097c1b266ee69.svn-base
Binary file is not shown |
+++ .svn/pristine/21/2179e3b4b18f54dc6867bbca3afc69321b4da741.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/21/217c4f5ecfd918d4cc95dd53a7578d5e5189b838.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/22/2233b6bd5889fbdfb17cdea2a043ada6ea8e8bb8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/24/24a1da46acfb8ea848954827265068aac04d23ae.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/24/24e20a43d013b19245332c33373a608848c1bbfb.svn-base
Binary file is not shown |
+++ .svn/pristine/25/250215bcba63cb99f4f31cd48671a7010eef0599.svn-base
Binary file is not shown |
+++ .svn/pristine/25/257cbac6daab2e7343ea4fece2f494cc21a25b19.svn-base
Binary file is not shown |
+++ .svn/pristine/25/258ed797f69901d760c4826db8bf56abf9826fa2.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/25/25ea60c7a8b357169b80dbfcdcc93c6876ef3738.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/26/26a1b314e61dd0e8989490088e6bcc72d56c89d5.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/26/26a1ec7ca944075c48d69c30bab1747c9aaacc62.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/26/26f42e6622ba81af2e144deabd602595e2e0426d.svn-base
Binary file is not shown |
+++ .svn/pristine/27/272c3791c85f84ede372c8de27fd921f2dfbc688.svn-base
Binary file is not shown |
+++ .svn/pristine/27/2750992321cc7b9926ac3e39b63f2d34319c353b.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/28/284251f52e0f278bb97b334e1a576c19e3aed3b5.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/29/2925086b3a203bef6adc9fe20006e316a5ae834a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/2a/2ac9df33d06320efe310ba5cf934add79d8368f4.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/2a/2adeb6b51acda7161d89ee3085c56e1d3c69ad21.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/2c/2c467a8884d05e5b2282692ef99e37012d3bf287.svn-base
Binary file is not shown |
+++ .svn/pristine/2d/2d78519315931335eb81cccf09f5941ad98a988a.svn-base
Binary file is not shown |
+++ .svn/pristine/2d/2dd98720cfd7e05d02c6dca9afaaa5ed3b406148.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/2d/2ddcb6c018e500a3668c73943f6a18d2c77496fe.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/2e/2e50af6392ef3c841865dff0a063877bd9c9dc6c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/2e/2e9c839f208b35a774e46ed7277e64f55ee3f783.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/2f/2f3782665298b076968e2e446b83805ce2f833ae.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/30/308463b4a028c91290e173f17de23c62c60df637.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/30/30da8fe7efe95265993d0e8d30dfcfc37d25db86.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/31/3109013597b350d8c41ae039163d8c6ce65f9169.svn-base
Binary file is not shown |
+++ .svn/pristine/31/31fb76e5d9babe97a11fea041081f96ce426107a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/32/322694b1fd74d1ff71abb25a34254bcc4805abe6.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/32/32d523342d8e4a2a3b7b4a56be1e81ccb9f86eae.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/33/331ff5310d34dc7d277ceee9d18e96fe666a6e6a.svn-base
Binary file is not shown |
+++ .svn/pristine/33/334dff203333ebdad57272e24b5bb24e66d5f23f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/33/33f8c86f1d366c065d7027695c4f7415a333e178.svn-base
Binary file is not shown |
+++ .svn/pristine/34/3484db3bbe4346cfe4dae34a62a4fd5c3fcd8b24.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/34/34d0e0f3f1b47089e0f22f4c8c5291ccafcc74d5.svn-base
Binary file is not shown |
+++ .svn/pristine/35/35687b7fa10cd9b6ea2dcd3a66aa859dd23e6eb0.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/35/359bfdb0f3f5897263f801623ba47ba48c71048b.svn-base
Binary file is not shown |
+++ .svn/pristine/36/3623983e28b47785c0081395f7e8bf4a4058332b.svn-base
Binary file is not shown |
+++ .svn/pristine/36/3648dab45a418d018418910a886e342020cac750.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/36/36df5d334890f9b61ca3808031b06e7dcec87723.svn-base
Binary file is not shown |
+++ .svn/pristine/37/376071a96dbba971b53a4a77e0bbaccfaa7460ce.svn-base
Binary file is not shown |
+++ .svn/pristine/37/3762acbf1dd4bba639f3f67fbde4c61e4d14f64e.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/37/37830903a639ad65488689a6970ed7835d5c5528.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/37/37b8cc8dfb5647c2a669a855de1d7a2032e2af6a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/38/385c239a74c4d17a9e9d0114a1002f8d069521dc.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/38/38cb431a88b4ea21294e5914f1bbf564fbfc3774.svn-base
Binary file is not shown |
+++ .svn/pristine/39/39a2b3fe2fce6175751e0f629024afc60777ca50.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/39/39d8631408b5d89652930bbc77ab4aa4e0b8bff5.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3a/3a4f6b11295a0d41687506573096f108fe869735.svn-base
Binary file is not shown |
+++ .svn/pristine/3a/3ab0a02d83d18f6891c197ee85c5221975a6beff.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3b/3b5aceb32cce70682c4c83cfa4d7fd51645ae964.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3c/3cd49a3ee23f8184385d4c84c2e4546ae5e6ac09.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3c/3cf6109bdee2fa6b2ad341be26e44bc254a17c20.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3d/3d394738dd81d6af4f75ac21f57d367d214fa6f9.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3d/3d8b6e4cd1fea8a6a09483fecc7b5cd361c01c81.svn-base
Binary file is not shown |
+++ .svn/pristine/3d/3da1da749fef4d138dcfb68e040608ab46fe2a61.svn-base
Binary file is not shown |
+++ .svn/pristine/3d/3db870bd020b769963cc4c5cf3b9b749bb39c1be.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3d/3dcfb71421cacd2b010bd7f0947c7f2cdae90dce.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3d/3de35bc82c1a156ca9a25006358f33793f2fcb8a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3d/3dfe38e128fac1a3536e59edb23c92f541fba99e.svn-base
Binary file is not shown |
+++ .svn/pristine/3e/3e0e7dbad49f2d684b1c3666326b0cc02df76efe.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3e/3e1947ba4f9e3a7440d15c8883b95476d65feeb9.svn-base
Binary file is not shown |
+++ .svn/pristine/3e/3e309ed8599b1877f923bf2fc96a460e27d39d0f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3e/3e334065e81c6467d6b99b01254b906821708b47.svn-base
Binary file is not shown |
+++ .svn/pristine/3e/3ee1ca4d136379667595ce7e13fd40e8b3cdd094.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/3e/3efbf0a1523bef23453a2c9f5ac99128ff644fb9.svn-base
Binary file is not shown |
+++ .svn/pristine/40/400a8781c51f08133f254f6ccd95abfc41f5de56.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/40/4087de85814d66985d5d93ec7b08cf5bda7235a8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/40/40b243104969db6ff60fb9dd5b3ea32aed290c50.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/40/40d34dc6d633a7ab2f077cf3cff32a90d30eb24c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/41/417e0435a084bdf81a73b882198fa933d44f850e.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/42/4271e43b8112971ad5000b19484b7ba15b0aa697.svn-base
Binary file is not shown |
+++ .svn/pristine/42/42dff69552966560778c3fb5cca1dc5d785a04f6.svn-base
Binary file is not shown |
+++ .svn/pristine/42/42f25720f772f892f4004e7dab34ccce2d9482ad.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/43/439f00613bed795cce9adac8beff7f29490af268.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/45/4546e80652c4c707802f3851ab151ac4ebc621aa.svn-base
Binary file is not shown |
+++ .svn/pristine/46/46edc9b8ddc9f73e66ea6ba317ca94eb5aa19b50.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/47/473a1100c3d7bdf861d11f73ce046ecd8a6b1d01.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/48/4833ef0f78d92878311cdf44d66dd6c7c89912e3.svn-base
Binary file is not shown |
+++ .svn/pristine/48/483c6b96791c4c4b55031eb0139c08346ae7f539.svn-base
Binary file is not shown |
+++ .svn/pristine/48/4841dcca79455f2ca7a029fbea758c5b600b0e56.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/48/4866ab6b91703b61b1567c12f65248a5befda91d.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/49/495cf38cce9a762539f96ccf3085e11b4cc829c5.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/49/4967d5f03f95cc1bac6991693789530c79ddf212.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/49/499afdfc8434c309f010b0f92b635d43effe00df.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/49/49bea78f81ca583b3fc721ecf4906835b3cd40db.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/49/49e248eb238e24044563939a01ac12b0d7ffae2c.svn-base
Binary file is not shown |
+++ .svn/pristine/4a/4a8569a29eee91612e7c909d790b05caf5d9e45f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/4b/4b363ea24d20282840d7eaa26c4cad23a31648f9.svn-base
Binary file is not shown |
+++ .svn/pristine/4b/4b9c96bc218e8ad4d27e9c7dcdcc411340cbb809.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/4c/4c240aa7ab0bc17c627a62791d32d535d1e7f347.svn-base
Binary file is not shown |
+++ .svn/pristine/4c/4c3d05731a7e3f1bf4d46db4902e41bee19da326.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/4c/4c91bd6017e71d571f84239dbd77d6a66f56e077.svn-base
Binary file is not shown |
+++ .svn/pristine/4d/4d82f3b3edb10ba39125ebc6483885cec76fc241.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/4d/4dfbebc5a8a59ba46c7516c3e2974327e6a292b8.svn-base
Binary file is not shown |
+++ .svn/pristine/4e/4e86645526afcb20d7b9ef388c8a56db56e0811f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/4e/4ee36e824b8c9f68a6094895b768efa83a9c2c4d.svn-base
Binary file is not shown |
+++ .svn/pristine/50/509f1a6942fc3e5ec0aca35964c8e0cfe59832c9.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/50/50dc6d063131a48f014f18c2293a12c65f408daf.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/51/51454e9f8ee3338ed2f35c58d86b1d2c532af34d.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/53/536bdcd14368b8ab1916c7460b57e977b69a71ab.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/53/53f71bde7dcb4b5aec65392d78306894e843e11d.svn-base
Binary file is not shown |
+++ .svn/pristine/55/551cda339ba07b535d55ad5970f16ab412f3a354.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/55/555bd07964e50eee7bd30826bd2382619ade9cf1.svn-base
Binary file is not shown |
+++ .svn/pristine/55/5565249b2f8bab8f55f4ae8564c0fc3bd1ddee1b.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/55/55823109ca5e304d614ddb5b9c61b29df4b97a19.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/55/55c51777fe2be99c7ca3e707c067aa21b8aca89a.svn-base
Binary file is not shown |
+++ .svn/pristine/55/55cad85c84d44824a0b1a321cd85798909ce74bc.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/55/55da47709a5dabf1da49ea6e0efcafac00c0aa7c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/56/567eb1a1d4d5c048af784c36ba953179ccebdfda.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/57/57367c910f690a7bc3146b86fd4bec819bf7f7cf.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/58/5860d57cab9f1958c604bdd62c8f9b8e4415b822.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/58/58b6d068522fe8b28e9aff1f71f0b17bd97ced1f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/59/59783b7403f0f23f982c65b12245dfe82c577f37.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/59/599ba0289f156ae1b53a873bae0c250de17c3818.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/59/59d5cfc92e768d5d5964ea8fe282daf39559ec43.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/5a/5a50ce66e10147a414aae849129f0b8db8bcd143.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/5b/5b842895403c78f0e365c7b7475eb78a2363cc3a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/5c/5c5777d3b4f038393762a2de086afbad3c6ab5ed.svn-base
Binary file is not shown |
+++ .svn/pristine/5c/5c87c9af88c4b33e36fb84bd48e24db3fb920c64.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/5c/5cd9a174228d669de6844759a36961277a30584f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/5d/5d75917957c3bb38dc45eca70e9c50c207625364.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/5d/5d7c3e663e66bc1e9821043ca9793c1b91b8d682.svn-base
Binary file is not shown |
+++ .svn/pristine/5d/5d8a94b11c7f6fd8a2afc9eae572d13085b17d15.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/5d/5da2b3490f2b8a6ff32e9cc1f8587773cfa89aa2.svn-base
Binary file is not shown |
+++ .svn/pristine/5e/5e34a58fe407e7e16ab31aa4b14c8380eecfc65e.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/5e/5e46fd8b63cd69acd0686233dc9fc1395b1e5dad.svn-base
Binary file is not shown |
+++ .svn/pristine/5e/5e86b9776528b106be67dc3fcd893479b2769762.svn-base
Binary file is not shown |
+++ .svn/pristine/5f/5f98cb8aa35ab1f16af36e7763127238af23864e.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/5f/5fa1169a3a8a20f2696e27633a05aae7427deb9f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/5f/5fb8e075821191a3712f7646ac33268be9b60d16.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/5f/5fd875dfa899afb298bcd520153235599847adb3.svn-base
Binary file is not shown |
+++ .svn/pristine/5f/5fe8ffdd4b4bbf75109724bf6b0411d4bfca4b95.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/60/609d7acb659be2b9063330795b07dcf187b74009.svn-base
Binary file is not shown |
+++ .svn/pristine/60/60d65e2df60727c8e04edd4db459c1854457a58c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/61/617ca0136da64a2a9b3f5658f92e8d1d3919598b.svn-base
Binary file is not shown |
+++ .svn/pristine/62/624236f9ac50736c3d126124208a858226687617.svn-base
Binary file is not shown |
+++ .svn/pristine/63/6303cfa6775f2353724c186816c487e071eed5b2.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/65/654a54c43d132f2fb04f49b83b3ca169b431ee04.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/65/65bb9294bedebfde96c158383a2282ae102beab8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/66/6627214f76b11c811e969dc251bf1fa404ae5848.svn-base
Binary file is not shown |
+++ .svn/pristine/66/6665a114fd831aad55280601f92af456056e967e.svn-base
Binary file is not shown |
+++ .svn/pristine/67/67c20dabb3304370170c837b047dbe301f7e7466.svn-base
Binary file is not shown |
+++ .svn/pristine/67/67f0bd5cfa3824860626b6b3fff37dc89e305cec.svn-base
Binary file is not shown |
+++ .svn/pristine/68/68157fb5e56c89d5d3b1a7dfdfcfa130617570f2.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/69/69876b8399d7d23177b88ad945802cff0d993ad8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/69/69c65940d10b8af2ef6894dc4801e4aba654095d.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/69/69c92588909d8a09a7d360c88c556ad8d516ad30.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/6a/6a3ca0a6f90e7a6a7daa85387a561167a24ccbd5.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/6a/6a8c4ab46672ae8466e7136cba48278173674e35.svn-base
Binary file is not shown |
+++ .svn/pristine/6b/6b3d9930797fcbc5e52d58ad1145a6b2988dd6dd.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/6b/6bf43341a13f45a8921436465be475f033d9eb9a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/6c/6c7ebc6062c839c6229f5e1e04d738f623fdd905.svn-base
Binary file is not shown |
+++ .svn/pristine/6d/6d6dc1a37162fda602aeac750256f94df2b25bfd.svn-base
Binary file is not shown |
+++ .svn/pristine/6e/6e6091aec369852ab619c3c363d02f4817b7b213.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/6e/6ed8390209e7f9519957fd2a9e79a237c003d28d.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/6f/6f1c0b457a4b1e5bda26b259e937773338446fbe.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/6f/6f1d52337290f7dfd724f1d64eb12a26ac6ab029.svn-base
Binary file is not shown |
+++ .svn/pristine/6f/6f8382ec4ecfcd1d310fbc7a6e42c5d278b31efd.svn-base
Binary file is not shown |
+++ .svn/pristine/70/70f720ec59dd76aa4769c0420c50c83d15ae2549.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/71/71f756a0f9798d00f4cbb8ebd9d74998d0efc04b.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/72/729458b685d41857138a8496a9843bf073a465a6.svn-base
Binary file is not shown |
+++ .svn/pristine/72/72ca96ba922f142814fad65f3b8e37d3460d46c5.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/73/73a9829b6ac9ed5dd1f141ea758dbd3c9757bcde.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/74/744e518b927c381d9f3607622ff6a6a8c202047c.svn-base
Binary file is not shown |
+++ .svn/pristine/75/75794416facb3f447e23fd01f2307ba0924d6f78.svn-base
Binary file is not shown |
+++ .svn/pristine/77/7712a2ff06d73d86b7fbc235bea1b4c04d43bd26.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/77/773b30d2901551fbed2c9aedc695ba784dced0b0.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/77/7775fda955f41cf84b48b6e40a06c50d1e0f7e4c.svn-base
Binary file is not shown |
+++ .svn/pristine/77/77876475f4e80f0b04b7380cbd82e0f4060ce051.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/78/78758e1f1cbc91015498f4ffd47a93a977bf7e7c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/78/788f7fc1f188f55e74e1b1b58cd580c4c598cedc.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/7a/7acd3772db25b67410ce465b39d697cfee6d435a.svn-base
Binary file is not shown |
+++ .svn/pristine/7c/7c894211fa45a0c48323aae9384af3092cd00672.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/7c/7c961f5f4a3be468ef4f62ecebb6f038c7ee5912.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/7c/7cf263c883cebfb8c7606d148199aba43585099a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/7d/7d074ba915ee87ac8f1ee794a265b0eb707ebd95.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/7d/7d376478c0000787ec3e18ecd60ad64582f9356a.svn-base
Binary file is not shown |
+++ .svn/pristine/7d/7d76a24783eed2a3e5b675d061bc0364c9ffc750.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/7d/7dedad16fd5d19f92f6d7329b4722c61cebb8389.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/7e/7e42a03479c93098f84d17541f7f5e11ba3f60e0.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/7e/7ebb1093ea61b6ba6bcf39eec08de9cb310d110e.svn-base
Binary file is not shown |
+++ .svn/pristine/7f/7fca79eb5a30c5e67ccc138f5492e293971bc1c7.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/7f/7fd917c5147dc445587a40184f30bbd65f86811c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/81/811c4a4e9c69cacf6fd4883f302c653238289f1d.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/81/8169895aec44a4f5516387137f1010cf0212b71f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/81/81f17b4a50d1f34d0ef55008a0b66748ee05b368.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/82/8200fed8cf4c3d8173df03a0671d86452dd9b769.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/82/8216e42407b7ebccd8c290ca4a6162333cf9650d.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/82/8235147dcf96a186df1a85f1b69b7a1fadedc54c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/82/8250a791835ed3b9043b263bd0c664eae7c2ebd5.svn-base
Binary file is not shown |
+++ .svn/pristine/82/82f275b68fc85400fcc1be0860b8d83e9cc44887.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/84/843143313d67272b0edd5e058a22ad5e7b145e92.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/84/845699e1341d06beed5aa15f394a2355a012b446.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/84/8471e06a7d75e66d93b041a88a83d8c57194d9f3.svn-base
Binary file is not shown |
+++ .svn/pristine/84/84ff1f0190504df3365fe30fdff472dbae36b97c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/85/85e75b16bdfd7618d4e34add484569a7ff20f77f.svn-base
Binary file is not shown |
+++ .svn/pristine/86/86134d8b966feaa696e61c13aa5f7603be0fbc0c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/86/868f1cd61bd85b3a8fe885c36043937a4a806eef.svn-base
Binary file is not shown |
+++ .svn/pristine/86/86f5142fb7d1ba83677045c894dc8e4cf1272949.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/87/87372ada57963274d5536bfcfe9797a690fa2995.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/87/87714c4b22367415c6340bbde9a8e9511c2fbb03.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/87/87f3a1b3fd2c097a7d219f688057039c8f63fae0.svn-base
Binary file is not shown |
+++ .svn/pristine/88/88033f8d1d84a619300a7399741369328bf0b65c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/88/88b051f7ac6ff58522fd3425ee5c63b55a66fd59.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/88/88b5a025f0a6011023a9db0b16af4e378a4003a7.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/88/88bed12ec499d1af56500e63504b32a40d27742d.svn-base
Binary file is not shown |
+++ .svn/pristine/88/88f71efbbb1a38c3ef2ae881554e418f519c847c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/89/892fabb2a4ed49f1bcf6fae759c779001e0ec402.svn-base
Binary file is not shown |
+++ .svn/pristine/89/8949072bdd898aab0a0d126e1d23d94f5f2d55a2.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/8a/8a6499fa99f1709cfd0619bb07b0da0fd0e84934.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/8b/8b7349bd0b4bca13b6f01fad14025f07836f2733.svn-base
Binary file is not shown |
+++ .svn/pristine/8b/8b877e8590206b9cbff8e332d09cffaf9d3fe888.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/8b/8be89e5cf2d2af0e6228b66b302a663c17721605.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/8f/8f6f45c3699f6bd22e31bb724bb56179c48798e8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/8f/8fe01fc4eb498699020608bc4cd17341b7925c54.svn-base
Binary file is not shown |
+++ .svn/pristine/8f/8ff3eef79d1a837dd10d6ba499ff5ecc8092fd93.svn-base
Binary file is not shown |
+++ .svn/pristine/90/9029d3e3456cf419ab13faebbf85d84a623c21b2.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/90/903a5d5b5b22985609d983b3de4a2350549f0498.svn-base
Binary file is not shown |
+++ .svn/pristine/91/91f678c62ed2a8da5045fa73b2960e1e63bdd593.svn-base
Binary file is not shown |
+++ .svn/pristine/92/920036795dac6f39715b3682a7db062f83b5f689.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/92/9240116d1ca09ebfcecc25cca3a2056c4ad85bba.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/93/9332b3b7bf292a5b558bffa4183a10ff221e94af.svn-base
Binary file is not shown |
+++ .svn/pristine/93/93a2e63b7ab5c5b3907f159c813ef75b50b9dcad.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/94/9463e6d98e8608d487b733b77278f3d533a68a55.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/94/94652e28864229bfa496bb3f27464caf669b4c6b.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/96/964d5d0ecf61b96ac7dc9a9d488caf12f78e43d2.svn-base
Binary file is not shown |
+++ .svn/pristine/96/96b3181919e4c08a72cb04cfec907974f13dbc82.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/96/96c31ae6440b4b64acee3941493021d17bbd6490.svn-base
Binary file is not shown |
+++ .svn/pristine/98/984b34130a638f6c34c8ec059da0d51420df93dd.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/99/99284cbce7506866c1dec3ecef1e3cc38bd11a61.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/99/99342ff850ef835b34e3c0b678e090ec470d412a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/99/99a0cf3a617fb29bd1db59c8a7ed036021c7a4e3.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/9a/9a04550afd73d77066f543bfba1fd97642865781.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/9a/9ad03d9b2b252b44b1fe4217ae7542e120ffcd5b.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/9b/9b4d96676efa1e982458fcba6cbad5e4b515b8dd.svn-base
Binary file is not shown |
+++ .svn/pristine/9b/9bd4adc8a32819ba1068565f86d916b93d5ba374.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/9d/9d42d1b980590949e8a5dd332d6c8470393c49b2.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/9d/9da29057d9342f9188c4cbe8c4839eade968d38e.svn-base
Binary file is not shown |
+++ .svn/pristine/9d/9dfd9f4b6f2cf777c12c4a02bc4fe9840b196ec4.svn-base
Binary file is not shown |
+++ .svn/pristine/9e/9e0f8be827631cba5306fddc4ee6ad3c996a8e86.svn-base
Binary file is not shown |
+++ .svn/pristine/a1/a16979d8cd30f3a9f5e6dbf754308d69e907e9d7.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a1/a1de566ac74d51e6cebb83e693c2ce504f162d90.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a1/a1f50fd4c0f57737c7988dca03f9b7ca669a34a6.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a2/a23707d71583ca4656cadab33fb5245900ce4409.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a2/a2dc21003152b6757bc6485569e93bfc72cd5def.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a3/a30ef56306f5e2977669b32678130508704c872b.svn-base
Binary file is not shown |
+++ .svn/pristine/a3/a333be347410e9e1932f319c6bc6e99cbf485730.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a3/a339c97d6903965da5626ee4231d62e346dcb26c.svn-base
Binary file is not shown |
+++ .svn/pristine/a3/a33e5199d2db686ab5461793f867885a8ae1981c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a3/a39e9784c3c7b433cae2e72636075a46981f2dc2.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a3/a3c5b4210501612563a392c17b1237c0a46b50f3.svn-base
Binary file is not shown |
+++ .svn/pristine/a4/a43dfdbd3bef0e86df051431a321df7bacc328c7.svn-base
Binary file is not shown |
+++ .svn/pristine/a4/a466c6f947cdd7eaee15131ee7170b70f5e524d2.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a4/a495a5d7dd217efe40f2551d4f605fac1f5b6dc7.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a5/a541d2a39c8327a640497caf60bde1aba313be85.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a5/a56af3c19f643efe7bfcef9d823fa9ee745be5fd.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a5/a5d46261312199ce0c9d4880c1e20c2aa9a1c4f3.svn-base
Binary file is not shown |
+++ .svn/pristine/a6/a60a05b1d875c84e8604fab2a7e9d9d7e6a21888.svn-base
Binary file is not shown |
+++ .svn/pristine/a6/a65dc74e89df69985e219826682938421802b1cf.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a6/a6822322a8a4c2aa8dc98133676829a704b9a69c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a8/a82745e9fc26c80e49bf2938372f7e66cddf5e35.svn-base
Binary file is not shown |
+++ .svn/pristine/a8/a856843aa1d30334a74ba304d4c71b326ee4d6e9.svn-base
Binary file is not shown |
+++ .svn/pristine/a8/a8c86ed32aaf5e3e1bf764ab095497ec7b884bf0.svn-base
Binary file is not shown |
+++ .svn/pristine/a8/a8ff37fb9d0056a8e8fb09c13792c6725a40d863.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/a9/a910a0a5e30e44e728c3641338408231b4237f45.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/aa/aad3c9816b36cfb346532f39a7e5827b2f651f77.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ab/ab74c8ab44abbf0da539fe3307024c0f9a03bd26.svn-base
Binary file is not shown |
+++ .svn/pristine/ac/ac0d7919fa7a4e2dd22bc3ff0ffc2ec929c2d687.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ad/ad0536ec7069dbb10d0a0d180c9ff99078cfddf0.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ad/ad493bfae4ec64e385d1cbdddfa124d4534ab131.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ad/ad6538bae89a1dc008945ef4160af6d77c7f1cec.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ad/ad810bf582926fd4c81cdfa3444d58653eec7f18.svn-base
Binary file is not shown |
+++ .svn/pristine/ad/adc86723d8532f30e0f8379a8ab1adf36a5ccf42.svn-base
Binary file is not shown |
+++ .svn/pristine/ae/ae18dea423a8fb3b968960b3b93ec184db3044ff.svn-base
Binary file is not shown |
+++ .svn/pristine/ae/ae7d3bbdb6b1ad36f5983c2554027022c932978a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/af/af48af276a6c717decd86f3f39b10dad0f1e3ba2.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/af/afae53ebffa810dd682837d2bd8cd46892f34899.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/af/afda24ff46fea534f261f0b76c767c9e9d4f5331.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/af/affc808377a7475ad181e6c1636937ee67dc7a07.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/b0/b09c35cb296a6f3f6dc92d91598bd675c7b395f5.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/b1/b1f8674079065955059781d5328f90ae816346b1.svn-base
Binary file is not shown |
+++ .svn/pristine/b2/b2f8f780e37ae1f9e664038c0dbbc8d74f622fde.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/b3/b3b74f863acbbc4724c483d1a5dfeccf2ae8611f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/b4/b4ec30e5e878a2f540f9ff6f02a8b0ea4c628789.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/b5/b528bbc32744ee6ebff234a5c6cbefb298c037ec.svn-base
Binary file is not shown |
+++ .svn/pristine/b5/b5b5bba8ddbb281979c39d42c8833162eab6d85b.svn-base
Binary file is not shown |
+++ .svn/pristine/b5/b5dbfd72c1a983cbe4a8411bdbe780d949f63cc8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/b7/b78cda7a4ea116eb36bc4a14511d2e446bfa34e8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/b7/b7a5f578e42d5628d7833367cb6e0287e48e1b45.svn-base
Binary file is not shown |
+++ .svn/pristine/b8/b845aeecfaad31b824590c1278b121e1d20752e9.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/b8/b8eae4708406d287f698d452179d94f992dc5ce3.svn-base
Binary file is not shown |
+++ .svn/pristine/ba/ba21c835cc530636d91e319d241888c14a84332b.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ba/ba75a0beed353b05d5cd0dfb9cfb8444ba24dff3.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/bb/bb1f00344c60c45db9757a95e4b2fd0bbd13c851.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/bb/bb2e95a36ecb269c0813d62bbab600e1fee33112.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/bb/bbae48ab1b1ee50d67182bbb4f55d76ccdb5c455.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/bc/bc1afdad74875d920fe0079937e4765439035d2e.svn-base
Binary file is not shown |
+++ .svn/pristine/bc/bc24a44976be502dcde4098cd20b7db58a1d0b18.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/bc/bcc93794628a3037f052b406f1b7d90769161ced.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/bc/bcd55bada91938b3212e270c7080abcdd983b8a8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/bc/bcdc923d60ec5739fcdf1bc2d5d127d4265d7263.svn-base
Binary file is not shown |
+++ .svn/pristine/bd/bd23ee5afc02199fdffbc5db6b0656f98d2e6cba.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/bd/bd7b07090386e2639272a5c84c475a4db9048b5f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/be/be0002056bf3fda38a6ebf93224c608c41c7dab3.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/be/be0f9100c3457b53a44e8f0566ec260ac6025c63.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/be/be5cb4ef766dd190f655ece674117c0dc50bdacf.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/bf/bf257b8f050c00a4f75bcfd56f53dcb7f841f8f5.svn-base
Binary file is not shown |
+++ .svn/pristine/bf/bf8bb504900dcacaa482785e9f53e8529a09b354.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/bf/bf967a4b5164eb1e0a0eb3451c2eb26eb6c35913.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c0/c02207c30375bb8f1cbefef5dabbbbd4c4c7a4cf.svn-base
Binary file is not shown |
+++ .svn/pristine/c0/c03fef9ab18aa5235780b6adb7a56dfc9f3af3d7.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c0/c080b743701ef1ef5884f2e9c7b864c0144b1513.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c0/c0a40c9b795e2dfd8e48e0cb065f38d4195b5d1f.svn-base
Binary file is not shown |
+++ .svn/pristine/c0/c0acaf8c24a4af304dfa98a8ace34389b7ae2722.svn-base
Binary file is not shown |
+++ .svn/pristine/c0/c0f7853df46fa8ae32b52c0a889c7108bb12f490.svn-base
Binary file is not shown |
+++ .svn/pristine/c1/c1ece50f2abc83b92a68ce9b8f0f6263b60748bf.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c1/c1fbe4d0723b82cc39974d25c7b5c31099c16d57.svn-base
Binary file is not shown |
+++ .svn/pristine/c2/c2ffff0e8226c7fe7b7936dbbe0fd7a4ec19f4ea.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c3/c309d1e39d7550b7abe21a9c76a9255c7301bb60.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c3/c30ed063a5fd511f04011963cd9953e64c5fc553.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c3/c381f6b91faa969233cb929d57b59e0ce901dbc9.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c3/c3bf56c05ebc4dbe5be952e97bccd7597215ebae.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c3/c3fe08a159700e7ce26215e9fb00990bc189b591.svn-base
Binary file is not shown |
+++ .svn/pristine/c4/c44e2472213d734654d3067b0f5f0443b8f0fbe9.svn-base
Binary file is not shown |
+++ .svn/pristine/c4/c490475c1861908f19e416c0e37f037514d95a47.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c4/c4a2d285da48c2a572c410151a3e0fbf2c24ee3a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c5/c5e8c4a2eb0ef5a9741fcfdd0bf414983d927918.svn-base
Binary file is not shown |
+++ .svn/pristine/c6/c6bc15a3af286ed9fa96aad6e38113be285e6d83.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c7/c76bda52a53de9ac4bf0032ce9bf75eae47c04a4.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c7/c7c2403ea96b539ca39a65e2845c51f2c400ffb4.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c8/c81ca27d8b8f641c18add0db9c1861b10ceb12a5.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c8/c8860754044a27f97110f1091469f1fd0ac9e167.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c8/c8cf97e93aa0057ee1f0b83b7aa072afb7f75d9c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c8/c8f6aee6e836fa6f5a533a999b5ab48ce60c6c56.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c9/c94fcbb7c9acbb0faf51061d65100ca325b7cbb0.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/c9/c9b0c3952ea151a5b64cf5c67e912fbde3a39fe2.svn-base
Binary file is not shown |
+++ .svn/pristine/ca/ca1a5677d6f811ce5d31fa1fd94b356ccf7b350c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ca/ca3083fca5816893c5edc51bb83d0fedee6e9394.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ca/ca3f5a7a7596a7fd962daae368fd9556ee48923d.svn-base
Binary file is not shown |
+++ .svn/pristine/cb/cb22ca5fe1d3ac6b314758f4de45afefc2a3db46.svn-base
Binary file is not shown |
+++ .svn/pristine/cb/cb46e9530603e1b008dcd83baca32164f27da8a7.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/cb/cb98107e76632a880187db1bf08950e874db70a1.svn-base
Binary file is not shown |
+++ .svn/pristine/cb/cbe91cf672d3f75f262407f2d86a627c4f5b1fb2.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/cc/cc0a54ea35e65f17fd2b129ece29e1a5f9ce58c0.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/cc/cc9647844cf4f265a0e60957fbfc1c4f357b6934.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/cd/cd123c4d9ab954de9cee5322b383b9c3d7efb202.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/cd/cdada60fdf7db85d3471b5f0a10eab156703274d.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ce/ce8077814a282f7b6d215233f2a5df72dd58925e.svn-base
Binary file is not shown |
+++ .svn/pristine/ce/ceb90841b1d1703d9d8e2ab2de8fbe7a7184d826.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ce/cec5416e8e9a8b41169c94f8ea30ec7a46a5077b.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/cf/cf10f7120ac6649e796ccec52179be67b7c2e166.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/cf/cf2e36d06c82ad3fa6377f883c8b276da9eea258.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/cf/cf92af61e116af2e05501334eabb11d8b209f84b.svn-base
Binary file is not shown |
+++ .svn/pristine/d0/d03c58e283c243096671dd6f1e78566c92e481fe.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/d0/d081ec64457f38f74f9deb08ab11bb084067aa7f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/d0/d0dc33b5370c2aaba531b2ccb8a61820f4bcbbd8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/d1/d15c6a0944e4d691b0ce0df990d86ef554ad58b5.svn-base
Binary file is not shown |
+++ .svn/pristine/d3/d3b7d2626f60d1ef9cb0d5a981ba969439bbb918.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/d3/d3bcee6aa6bd4c68b18b5b13f6187bcb7a5d4a8f.svn-base
Binary file is not shown |
+++ .svn/pristine/d5/d54ddd21643af00113e0b4d620297e372821b6a8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/d5/d5541f137ce1ffd5833aebd413e3da2ad8e570d5.svn-base
Binary file is not shown |
+++ .svn/pristine/d5/d5787f4a26966bddf209ce4dbde89345ec624147.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/d5/d5c7e1ce95c54b17120bf7466de2e033d01e4094.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/d6/d606280e18c13eadfc1d70e1078bf1ed8cae1add.svn-base
Binary file is not shown |
+++ .svn/pristine/d6/d60c8e6c416e9a8e6a959471273d4e5153405627.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/d6/d695f6d1b742f874344908aac99a5777f6b6647c.svn-base
Binary file is not shown |
+++ .svn/pristine/d6/d69b31a92bcaeef8a1891c6abfb672d124a01bf6.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/d7/d7a925a1631c7fbff74e4455242c0171f614499e.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/d7/d7d552492db65139ca84c5b26c8987357878cf48.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/d9/d98e4c2132704868dc55208dca8a7d9d8520fbd7.svn-base
Binary file is not shown |
+++ .svn/pristine/d9/d990f2866b34cc60917e3fd18e59cc9cc98d0fc4.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/da/da451a15d98bd869a7bd2ffbcd003bc2da4ac4b9.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/da/dadc0a5c29130b10ebca5e9517874a724904f29c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/db/db06a3e213a00bc6f3dbb65f16346812343afb96.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/db/dbd176da95f9abb537a49ca94e0ff7fa36165c48.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/db/dbf3f2767b5dffac41396e6b578afeb6232b107d.svn-base
Binary file is not shown |
+++ .svn/pristine/dc/dc0f89a5bdd9cc0e594663123e999dcf50f82e9a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/dc/dc1ad09a9e064071d100b42a0bfa47a476c4c172.svn-base
Binary file is not shown |
+++ .svn/pristine/dd/dd28dd4f29648e8b53a4eefbacd28657f4032bfa.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/dd/dd2f43dbab9ce2b74a36394bdcea75f023ef0548.svn-base
Binary file is not shown |
+++ .svn/pristine/dd/dd3b1113216d8da4df9b9d387c1b2b4671c95051.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/dd/dd764a3776c5cbaee6f5e8ee32a1a0c6a9de76e7.svn-base
Binary file is not shown |
+++ .svn/pristine/dd/ddb6188b9dd17e408b1c04fdf11ec8994ba61f80.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/de/de59aa3f2df7f8d1f223aad7ea52f4a281d3e661.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/df/df80142cc7b44055ee3629aba3bc9ee56db2045c.svn-base
Binary file is not shown |
+++ .svn/pristine/e0/e02fbcc51fc0272a3ee92095ac20feaa416c42ed.svn-base
Binary file is not shown |
+++ .svn/pristine/e0/e04b194021454af592fc46741046253dd5c72f18.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e1/e1cfe110a8ec1c5d8eeb19fb923319c912122311.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e1/e1d64539de822bfd41a035e6f7d8ba8fd956ed68.svn-base
Binary file is not shown |
+++ .svn/pristine/e1/e1dd5bd9504b0532aef907ce19987b6d8d687512.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e2/e243a9979bcc0946d7c71aeb3e3d40a14a5276af.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e2/e26d7ff85b0114db6a636f7d9a1f43bbc87f4985.svn-base
Binary file is not shown |
+++ .svn/pristine/e2/e27468df5de38af07bdc057601a86c4086c73840.svn-base
Binary file is not shown |
+++ .svn/pristine/e3/e303feccfd03ee0255d6174971d760cbf42a2822.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e5/e508cc658f53eb64e3760fb8be21cf54d2d3fe89.svn-base
Binary file is not shown |
+++ .svn/pristine/e5/e52b5ea6f46f104b52f3a3afb8e99e00a7dbc419.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e6/e6249771dfb624f3e62db488b9fe8a686b290477.svn-base
Binary file is not shown |
+++ .svn/pristine/e6/e62caea4d6509911285e0e24ff13467bfe31252a.svn-base
Binary file is not shown |
+++ .svn/pristine/e6/e65bf6d8e6ec7510554351b6743f517d713fe2c0.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e7/e7342444598fd26d31427d975c88a4e9972a2f2f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e7/e735b706ec8fd3a0e93e13ed1ef39a402d45cc5b.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e7/e79902bd6133433a0ad4a54117794ceb27ba0644.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e8/e83baa724a4dcdd5c5d84ce9db5fd495935b9c60.svn-base
Binary file is not shown |
+++ .svn/pristine/e8/e88cb0d3bfc31ef91d4862c3fe91acb6812071bc.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e9/e978b1abf9cc40877b7f50a0b2f15cb69bd50f84.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/e9/e9b3810c4f98c241e138f6eadae148b3411e8302.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ea/ea44cff252ea18e54b542572521a015465f7e5d3.svn-base
Binary file is not shown |
+++ .svn/pristine/eb/eb2be42e9b48fe7a79f4c5f203878c9ad1cbcd88.svn-base
Binary file is not shown |
+++ .svn/pristine/eb/eb3d65161094624357d7b4714a04a7223488f793.svn-base
Binary file is not shown |
+++ .svn/pristine/eb/eb44fa1be3d9e817851e2b8129e7c775a58b3f00.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/eb/ebbc3794921e2493f062932861003df73c9014c5.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/eb/ebd0a9bc7245fa69514bf128ed4eaa7d99fe0a98.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/eb/ebdec607a098639e558bdceaff9081e115700690.svn-base
Binary file is not shown |
+++ .svn/pristine/ec/ec1d097113514f3316b7bbb57e6a1041cb3a72fc.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ec/ec67a1cda320faaa42541d9f6a468082273850f8.svn-base
Binary file is not shown |
+++ .svn/pristine/ec/eccd72ca41985800083e8c50dd3a04e995805780.svn-base
Binary file is not shown |
+++ .svn/pristine/ed/ed016ea356c54652a554e4f62383adb52a48818f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ed/edee07fbc049c2d83fe7c56fd48b28365294e2f0.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ee/ee2e3868993bbe0873b7da0e2e5b7bc2a2d058b3.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ee/eeefcff4650f5a3236161babadad26255d17d98c.svn-base
Binary file is not shown |
+++ .svn/pristine/ef/efa7135f35e0de61aa13c8882bc8561a34590ec8.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/f0/f01dd6fce4de04977b1cfe2e6ce823015a5482df.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/f0/f04c353157aee1e2a6373b9a01ab645e0b5f790d.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/f0/f09c23533456bc1f946df1295383b139c481d01c.svn-base
Binary file is not shown |
+++ .svn/pristine/f1/f1d30484caf06b5083b10e9c4776f74f2dae3473.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/f2/f2773b73369532d626c2b67476aaa99025edb786.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/f2/f29438ca35ac9d852b607f677e8e0a913e0e7900.svn-base
Binary file is not shown |
+++ .svn/pristine/f2/f2d12bda804c221bb04881b625fbe4156e229fb1.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/f2/f2dfcbdc751a6d16fb1261f25f82e69eaed9190f.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/f3/f319219d1607991456d6cc9779d8f59d2310269a.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/f4/f49bedbe9d32431322bd9c8cf2b32ff2408e2015.svn-base
Binary file is not shown |
+++ .svn/pristine/f6/f616dc486e436e5cefca1ebc4ab65274b92286b3.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/f6/f61a1b081024cf383aeeca72c8eada85da4535b5.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/f6/f69d9457a56777a1508632b6150734fd891704aa.svn-base
Binary file is not shown |
+++ .svn/pristine/f7/f75e1d4ace8912e46810bd71ebb5e4683d65d9ee.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/f8/f8a3f04ab8e5dd7b31c50b6e25b5b72427d405e0.svn-base
Binary file is not shown |
+++ .svn/pristine/fa/fa41c9f34392909d4ee1968fbe2b4ce0f0cd44c0.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/fa/fac1cff7468d3d2aa3f2f1d50a2a4ce934eacc3e.svn-base
Binary file is not shown |
+++ .svn/pristine/fb/fb594cdce80086ffbacc33f8b886566cd14ee18c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/fb/fbce6aa209caddf86afc8fdbc731b85f71b67a7e.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/fc/fc3591081860ecd90199cdf1cbbd045bf18bed9c.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/fc/fc56974081da16dafa411805241440f353231d47.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/fc/fc5f86e9de39b71a4860910c51dc8ec66612fbcd.svn-base
Binary file is not shown |
+++ .svn/pristine/fc/fcf6fea53905a10a6e3f51f63484c17f8fc0e10d.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/fd/fd72e74159f6789dcbf884609a8b9991a2ef0d45.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/fd/fd7558d1cf7ff40b619c430874de7259b39e5ab0.svn-base
Binary file is not shown |
+++ .svn/pristine/fd/fddcea0f3f1f0b27c3d2e43af16a24b07ab81a67.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/fe/fe093c433c1c46ec9173f31b6a87503a7610d9f3.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/pristine/ff/ff6cbb7e9428836dd9b0430716e949505d2898a3.svn-base
This diff is skipped because there are too many other diffs. |
+++ .svn/tmp/svn-EA5496DB
This diff is skipped because there are too many other diffs. |
+++ .svn/wc.db
Binary file is not shown |
+++ .svn/wc.db-journal
This diff is skipped because there are too many other diffs. |
+++ 02_Module/AegisImplicitMail.dll
Binary file is not shown |
+++ 02_Module/ClientLib.dll
Binary file is not shown |
+++ 02_Module/DevExpress.BonusSkins.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.Charts.v14.1.Core.dll
Binary file is not shown |
+++ 02_Module/DevExpress.CodeParser.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.Data.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.Data.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.DataAccess.v14.1.UI.dll
Binary file is not shown |
+++ 02_Module/DevExpress.DataAccess.v14.1.UI.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.DataAccess.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.DataAccess.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.Office.v14.1.Core.dll
Binary file is not shown |
+++ 02_Module/DevExpress.Office.v14.1.Core.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.PivotGrid.v14.1.Core.dll
Binary file is not shown |
+++ 02_Module/DevExpress.PivotGrid.v14.1.Core.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.Printing.v14.1.Core.dll
Binary file is not shown |
+++ 02_Module/DevExpress.Printing.v14.1.Core.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.RichEdit.v14.1.Core.dll
Binary file is not shown |
+++ 02_Module/DevExpress.RichEdit.v14.1.Core.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.Sparkline.v14.1.Core.dll
Binary file is not shown |
+++ 02_Module/DevExpress.Sparkline.v14.1.Core.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.Utils.v14.1.UI.dll
Binary file is not shown |
+++ 02_Module/DevExpress.Utils.v14.1.UI.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.Utils.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.Utils.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.Xpo.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.Xpo.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraBars.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraBars.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraCharts.v14.1.Extensions.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraCharts.v14.1.UI.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraCharts.v14.1.UI.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraCharts.v14.1.Wizard.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraCharts.v14.1.Wizard.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraCharts.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraCharts.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraEditors.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraEditors.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraGauges.v14.1.Core.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraGauges.v14.1.Core.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraGrid.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraGrid.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraLayout.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraLayout.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraPivotGrid.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraPivotGrid.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraPrinting.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraPrinting.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraReports.v14.1.Extensions.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraReports.v14.1.Extensions.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraReports.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraReports.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraRichEdit.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraRichEdit.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraScheduler.v14.1.Core.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraScheduler.v14.1.Core.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraScheduler.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraScheduler.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraTreeList.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraTreeList.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraVerticalGrid.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraVerticalGrid.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/DevExpress.XtraWizard.v14.1.dll
Binary file is not shown |
+++ 02_Module/DevExpress.XtraWizard.v14.1.xml
This diff is skipped because there are too many other diffs. |
+++ 02_Module/H1.exe
Binary file is not shown |
+++ 02_Module/H1.exe.config
This diff is skipped because there are too many other diffs. |
+++ 02_Module/HANMI_J_SALE.dll
Binary file is not shown |
+++ 02_Module/HANMI_MACH.dll
Binary file is not shown |
+++ 02_Module/HANMI_MACH.dll.config
This diff is skipped because there are too many other diffs. |
+++ 02_Module/HANMI_SALE.dll
Binary file is not shown |
+++ 02_Module/HANMI_STD.dll
Binary file is not shown |
+++ 02_Module/HANMI_WORK.dll
Binary file is not shown |
+++ 02_Module/HM_WORK.exe
Binary file is not shown |
+++ 02_Module/HM_WORK.exe.config
This diff is skipped because there are too many other diffs. |
+++ 02_Module/Linkhub.dll
Binary file is not shown |
+++ 02_Module/Newtonsoft.Json.dll
Binary file is not shown |
+++ 02_Module/Popbill.dll
Binary file is not shown |
+++ 02_Module/PublicLib.dll
Binary file is not shown |
+++ 02_Module/SYS.dll
Binary file is not shown |
+++ 02_Module/app.ico
Binary file is not shown |
+++ 02_Module/bar_logo.png
Binary file is not shown |
+++ 02_Module/de/DevExpress.Data.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.DataAccess.v14.1.UI.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.DataAccess.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.Office.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.PivotGrid.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.Printing.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.RichEdit.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.Sparkline.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.Utils.v14.1.UI.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.Utils.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.Xpo.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraBars.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraCharts.v14.1.Wizard.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraCharts.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraEditors.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraGauges.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraLayout.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraPivotGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraPrinting.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraReports.v14.1.Extensions.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraReports.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraRichEdit.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraScheduler.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraScheduler.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraTreeList.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraVerticalGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/de/DevExpress.XtraWizard.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/debug.ini
This diff is skipped because there are too many other diffs. |
+++ 02_Module/es/DevExpress.Data.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.DataAccess.v14.1.UI.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.DataAccess.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.Office.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.PivotGrid.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.Printing.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.RichEdit.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.Sparkline.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.Utils.v14.1.UI.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.Utils.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.Xpo.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraBars.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraCharts.v14.1.Wizard.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraCharts.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraEditors.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraGauges.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraLayout.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraPivotGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraPrinting.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraReports.v14.1.Extensions.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraReports.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraRichEdit.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraScheduler.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraScheduler.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraTreeList.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraVerticalGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/es/DevExpress.XtraWizard.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.Data.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.DataAccess.v14.1.UI.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.DataAccess.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.Office.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.PivotGrid.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.Printing.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.RichEdit.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.Sparkline.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.Utils.v14.1.UI.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.Utils.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.Xpo.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraBars.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraCharts.v14.1.Wizard.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraCharts.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraEditors.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraGauges.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraLayout.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraPivotGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraPrinting.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraReports.v14.1.Extensions.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraReports.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraRichEdit.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraScheduler.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraScheduler.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraTreeList.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraVerticalGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ja/DevExpress.XtraWizard.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ko/HANMI_SALE.resources.dll
Binary file is not shown |
+++ 02_Module/login_background.png
Binary file is not shown |
+++ 02_Module/ru/DevExpress.Data.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.DataAccess.v14.1.UI.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.DataAccess.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.Office.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.PivotGrid.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.Printing.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.RichEdit.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.Sparkline.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.Utils.v14.1.UI.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.Utils.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.Xpo.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraBars.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraCharts.v14.1.Wizard.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraCharts.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraEditors.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraGauges.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraLayout.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraPivotGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraPrinting.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraReports.v14.1.Extensions.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraReports.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraRichEdit.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraScheduler.v14.1.Core.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraScheduler.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraTreeList.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraVerticalGrid.v14.1.resources.dll
Binary file is not shown |
+++ 02_Module/ru/DevExpress.XtraWizard.v14.1.resources.dll
Binary file is not shown |
+++ HANMI_J_SALE/CollectMoneyList.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/CollectMoneyList.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/CollectMoneyList.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/CreditLongSalesList.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/CreditLongSalesList.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/CreditLongSalesList.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/CreditSalesList.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/CreditSalesList.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/CreditSalesList.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/DurationCustCreditList.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/DurationCustCreditList.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/DurationCustCreditList.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/HANMI_J_SALE.csproj
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/OutputPerHourList.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/OutputPerHourList.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/OutputPerHourList.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/ColCdPopup.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/ColCdPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/ColCdPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/CollectPopup.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/CollectPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/CollectPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/OrderSeqPopup.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/OrderSeqPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/OrderSeqPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SaleRegistrationPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SaleRegistrationPopup.designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SaleRegistrationPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SaleRegistrationPopupV2.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SaleRegistrationPopupV2.designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SaleRegistrationPopupV2.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectAccNoPopup.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectAccNoPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectAccNoPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectCodePopup.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectCodePopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectCodePopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectCustDCPopup.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectCustDCPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectCustDCPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectCustomerForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectCustomerForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectCustomerForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectNormForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectNormForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectNormForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectOutPosForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectOutPosForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectOutPosForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectRoutingForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectRoutingForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectRoutingForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectSalesItemForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectSalesItemForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/SelectSalesItemForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/WorkManagerPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/WorkManagerPopup.designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Popup/WorkManagerPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Properties/AssemblyInfo.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Properties/Resources.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Properties/Resources.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Properties/licenses.licx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Report/CollectMoneyReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Report/CollectMoneyReport.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Report/CollectMoneyReport.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Report/CreditSalesReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Report/CreditSalesReport.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/Report/CreditSalesReport.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/SalesList.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/SalesList.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/SalesList.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/SalesTotalManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/SalesTotalManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/SalesTotalManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/TaxBillByPopbill.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/TaxBillByPopbill.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/TaxBillByPopbill.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/TradeMoneyList.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/TradeMoneyList.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/TradeMoneyList.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/UserControl/NewTradeControl.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/UserControl/NewTradeControl.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/UserControl/NewTradeControl.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/UserControll/NewTradeControl.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/UserControll/NewTradeControl.designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_J_SALE/UserControll/NewTradeControl.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/CompManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/CompManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/CompManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/HANMI_MACH.csproj
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/MachASManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/MachASManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/MachASManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/MachineMATManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/MachineMATManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/MachineMATManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/MachineManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/MachineManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/MachineManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/Popup/MachASManagerPopup.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/Popup/MachASManagerPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/Popup/MachASManagerPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/Properties/AssemblyInfo.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/Properties/Resources.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/Properties/Resources.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/Properties/Settings.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/Properties/Settings.settings
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/Properties/licenses.licx
This diff is skipped because there are too many other diffs. |
+++ HANMI_MACH/app.config
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/AcceptManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/AcceptManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/AcceptManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/BillManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/BillManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/BillManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/ChangeOrderDate.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/ChangeOrderDate.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/ChangeOrderDate.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/CostManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/CostManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/CostManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/CreditDaySalesList.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/CreditDaySalesList.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/CreditDaySalesList.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/CustAccountList.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/CustAccountList.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/CustAccountList.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/HANMI_SALE.csproj
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/InitialManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/InitialManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/InitialManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/OrderManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/OrderManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/OrderManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/AlarmMessageForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/AlarmMessageForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/AlarmMessageForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/CostManagerPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/CostManagerPopup.designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/CostManagerPopup.ko.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/CostManagerPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/CustMailPopup.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/CustMailPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/CustMailPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/InitialManagerPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/InitialManagerPopup.designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/InitialManagerPopup.ko.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/InitialManagerPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/OrderManagerPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/OrderManagerPopup.designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/OrderManagerPopup.ko.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/OrderManagerPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectBillCustForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectBillCustForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectBillCustForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectCustomerForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectCustomerForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectCustomerForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectFinishForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectFinishForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectFinishForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectItemForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectItemForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectItemForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectNormForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectNormForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectNormForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectOutPosForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectOutPosForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/SelectOutPosForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/WorkManagerPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/WorkManagerPopup.designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Popup/WorkManagerPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Properties/AssemblyInfo.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Properties/Resources.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Properties/Resources.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Properties/licenses.licx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/BillManagerReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/BillManagerReport.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/BillManagerReport.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/CostInputReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/CostInputReport.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/CostInputReport.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/CostManagerReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/CostManagerReport.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/CostManagerReport.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/InitialInputReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/InitialInputReport.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/InitialInputReport.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/InitialManagerReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/InitialManagerReport.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/InitialManagerReport.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/WorkManagerReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/WorkManagerReport.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/WorkManagerReport.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/WorkOrderReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/WorkOrderReport.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/Report/WorkOrderReport.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/SaleForECount.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/WorkManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/WorkManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_SALE/WorkManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/AlarmManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/AlarmManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/AlarmManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/BankManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/BankManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/BankManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CodeManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CodeManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CodeManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CurrentMoneyManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CurrentMoneyManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CurrentMoneyManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CustBaseManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CustBaseManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CustBaseManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CustManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CustManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CustManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CustUserManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CustUserManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/CustUserManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/HANMI_STD.csproj
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/HolidayManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/HolidayManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/HolidayManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/CustManagerPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/CustManagerPopup.designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/CustManagerPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/CustUserManagerPopup.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/CustUserManagerPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/CustUserManagerPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/InsertCateForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/InsertCateForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/InsertCateForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/InsertGroupForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/InsertGroupForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/InsertGroupForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/SelectCurrentMoneyGroupForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/SelectCurrentMoneyGroupForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/SelectCurrentMoneyGroupForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/SelectCustomerForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/SelectCustomerForm.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Popup/SelectCustomerForm.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/ProductManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/ProductManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/ProductManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Properties/AssemblyInfo.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Properties/Resources.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Properties/Resources.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/Properties/licenses.licx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/RoutingManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/RoutingManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/RoutingManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/WorkdayManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/WorkdayManager.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/WorkdayManager.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/WorkdayReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/WorkdayReport.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_STD/WorkdayReport.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/HANMI_WORK.csproj
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/POPWorkExec.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/POPWorkExec.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/POPWorkExec.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/POPWorkOrder.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/POPWorkOrder.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/POPWorkOrder.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/ProcessRunReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/ProcessRunReport.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/ProcessRunReport.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/Properties/AssemblyInfo.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/Properties/Resources.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/Properties/Resources.resx
This diff is skipped because there are too many other diffs. |
+++ HANMI_WORK/Properties/licenses.licx
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/HM_WORK.csproj
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/LoginForm.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/LoginForm.designer.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/LoginForm.resx
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/OutBarCodeForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/OutBarCodeForm.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/OutBarCodeForm.resx
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/SelectCustomerForm.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/SelectCustomerForm.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/SelectCustomerForm.resx
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/WorkManagerPopup.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/WorkManagerPopup.designer.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Popup/WorkManagerPopup.resx
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Program.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Properties/AssemblyInfo.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Properties/Resources.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Properties/Resources.resx
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Properties/Settings.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Properties/Settings.settings
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Properties/licenses.licx
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Report/WorkManagerReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Report/WorkManagerReport.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Report/WorkManagerReport.resx
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Report/WorkOrderReport.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Report/WorkOrderReport.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/Report/WorkOrderReport.resx
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/WorkManager.Designer.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/WorkManager.cs
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/WorkManager.resx
This diff is skipped because there are too many other diffs. |
+++ HM_WORK/app.config
This diff is skipped because there are too many other diffs. |
+++ HanmiColor.sln
This diff is skipped because there are too many other diffs. |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?