リビジョン 180
請求まとめ(H-YOU様にて改修前にBIT側の変更内容をコミット)
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestSummaryList/FrmRequestSummaryList.cs | ||
---|---|---|
59 | 59 |
private enum DispColumn_Company |
60 | 60 |
{ |
61 | 61 |
SubConstractorCode = (int)DispColumn.No + 1, |
62 |
CompanyCode, |
|
62 | 63 |
SubConstractorName, |
63 | 64 |
GengaCode, |
64 | 65 |
GengaName, |
... | ... | |
72 | 73 |
GengaCode = (int)DispColumn.No + 1, |
73 | 74 |
GengaName, |
74 | 75 |
SubConstractorCode, |
76 |
CompanyCode, |
|
75 | 77 |
SubConstractorName, |
76 | 78 |
} |
77 | 79 |
|
... | ... | |
269 | 271 |
/// ???? |
270 | 272 |
/// </summary> |
271 | 273 |
private int m_Company_Column = 0; |
274 |
private int m_Company_DispColumn = 0; |
|
272 | 275 |
private int m_CompanyNM_Column = 0; |
273 | 276 |
private int m_Genba_Column = 0; |
274 | 277 |
private int m_GenbaNM_Column = 0; |
... | ... | |
768 | 771 |
sql.AppendLine(" Cbi.PurchaseOrderReturnDate, "); /*???????????*/ |
769 | 772 |
sql.AppendLine(" Pa.PERSONCODE "); // ?\?Z?? |
770 | 773 |
|
771 |
if (dgvCompany.Visible == true) |
|
774 |
if (dgvCompany.Visible == true) // ???P??\??
|
|
772 | 775 |
{ |
773 |
sql.AppendLine("order by Scm.DISPLAYORDER ASC, Bdd.SEQNO DESC, case when Bdd.CONSTRUCTIONCODE = 0 Then 2099999999 else Bdd.LINECOUNT end ");
|
|
774 |
}
|
|
775 |
else if (dgvProject.Visible == true) |
|
776 |
sql.AppendLine("order by Scm.COMPANYCODE ASC, Bdd.SEQNO DESC, case when Bdd.CONSTRUCTIONCODE = 0 Then 2099999999 else Bdd.LINECOUNT end ");
|
|
777 |
} |
|
778 |
else if (dgvProject.Visible == true) // ????P??\??
|
|
776 | 779 |
{ |
777 |
sql.AppendLine("order by Bdd.CONSTRUCTIONCODE DESC, Scm.DISPLAYORDER ASC ,Bdd.SEQNO ASC ,Bdd.LINECOUNT ASC ");
|
|
780 |
sql.AppendLine("order by Cbi.ConstructionPersonCode ASC, Bdd.CONSTRUCTIONCODE DESC, Scm.DISPLAYORDER ASC, Bdd.SEQNO ASC, Bdd.LINECOUNT ASC ");
|
|
778 | 781 |
} |
779 | 782 |
|
780 | 783 |
// ?f?[?^???@???v?E???v???v?Z?????A?S???f?[?^???????? |
... | ... | |
1357 | 1360 |
|
1358 | 1361 |
if (dgvCompany.Visible == true) |
1359 | 1362 |
{ |
1360 |
row.SetValues(new object[] { DispOrder, "", "", DataRowState.Unchanged, 1, (int)i, 0, 0, 0, "", GoukeiCD, "", "", Enum.GetName(typeof(GoukeiRows), i), 0, Money, Money, Money, 0, Money, Money, Money, Money, Money, Money, "", 0, -1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }); |
|
1363 |
row.SetValues(new object[] { DispOrder, "", "", DataRowState.Unchanged, 1, (int)i, 0, 0, 0, "", GoukeiCD, "", "", "", Enum.GetName(typeof(GoukeiRows), i), 0, Money, Money, Money, 0, Money, Money, Money, Money, Money, Money, "", 0, -1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" });
|
|
1361 | 1364 |
} |
1362 | 1365 |
else |
1363 | 1366 |
{ |
1364 |
row.SetValues(new object[] { DispOrder, "", "", DataRowState.Unchanged, 1, (int)i, 0, 0, 0, "", GoukeiCD, "", "", Enum.GetName(typeof(GoukeiRows), i), 0, Money, Money, Money, 0, Money, Money, Money, Money, Money, Money, "", 0, -1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" }); |
|
1367 |
row.SetValues(new object[] { DispOrder, "", "", DataRowState.Unchanged, 1, (int)i, 0, 0, 0, "", GoukeiCD, "", "", "", Enum.GetName(typeof(GoukeiRows), i), 0, Money, Money, Money, 0, Money, Money, Money, Money, Money, Money, "", 0, -1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" });
|
|
1365 | 1368 |
} |
1366 | 1369 |
row.ReadOnly = true; |
1367 | 1370 |
switch (i) |
... | ... | |
1490 | 1493 |
private void SetColumnID() |
1491 | 1494 |
{ |
1492 | 1495 |
m_Company_Column = dgvCompany.Visible == true ? (int)DispColumn_Company.SubConstractorCode : (int)DispColumn_Project.SubConstractorCode; |
1496 |
m_Company_DispColumn = dgvCompany.Visible == true ? (int)DispColumn_Company.CompanyCode : (int)DispColumn_Project.CompanyCode; |
|
1493 | 1497 |
m_CompanyNM_Column = dgvCompany.Visible == true ? (int)DispColumn_Company.SubConstractorName : (int)DispColumn_Project.SubConstractorName; |
1494 | 1498 |
|
1495 | 1499 |
m_Genba_Column = dgvCompany.Visible == true ? (int)DispColumn_Company.GengaCode : (int)DispColumn_Project.GengaCode; |
... | ... | |
1608 | 1612 |
dgv.Rows[iIndex].Cells[(int)DispColumn.LineCount].Value = iLineCnt; |
1609 | 1613 |
|
1610 | 1614 |
dgv.Rows[iIndex].Cells[m_Company_Column].Value = CompanyCode; |
1615 |
dgv.Rows[iIndex].Cells[m_Company_DispColumn].Value = CompanyCode; |
|
1611 | 1616 |
dgv.Rows[iIndex].Cells[m_CompanyNM_Column].Value = CompanyName; |
1612 | 1617 |
dgv.Rows[iIndex].Cells[m_CompanyNM_Column].ToolTipText = CompanyName; |
1613 | 1618 |
dgv.Rows[iIndex].Cells[m_Genba_Column].Value = GenbaCode; |
... | ... | |
3762 | 3767 |
{ |
3763 | 3768 |
DispOrder = CommonMotions.cnvInt(c.Cells[DisporderCol].Value), |
3764 | 3769 |
GoukeiCode = CommonMotions.cnvInt(c.Cells[m_GoukeiCode_Column].Value), |
3765 |
GoukeiName = CommonMotions.cnvString(c.Cells[m_GoukeiCode_Column + 1].ToolTipText)
|
|
3770 |
GoukeiName = CommonMotions.cnvString(c.Cells[m_GoukeiCode_Column + 2].ToolTipText)
|
|
3766 | 3771 |
}) |
3767 | 3772 |
.OrderBy(x => x.Key.DispOrder) |
3768 | 3773 |
.ToArray(); |
... | ... | |
3807 | 3812 |
if (iTop == 1) |
3808 | 3813 |
{ |
3809 | 3814 |
r.Cells[(int)DispColumn.No].Value = iNo; |
3810 |
r.Cells[m_GoukeiCode_Column + 1].Value = k.Key.GoukeiName; |
|
3811 |
r.Cells[m_GoukeiCode_Column + 1].ToolTipText = k.Key.GoukeiName; |
|
3815 |
r.Cells[m_GoukeiCode_Column + 1].Value = k.Key.GoukeiCode; |
|
3816 |
r.Cells[m_GoukeiCode_Column + 2].Value = k.Key.GoukeiName; |
|
3817 |
r.Cells[m_GoukeiCode_Column + 2].ToolTipText = k.Key.GoukeiName; |
|
3812 | 3818 |
} |
3813 | 3819 |
else |
3814 | 3820 |
{ |
3815 | 3821 |
r.Cells[(int)DispColumn.No].Value = ""; |
3816 | 3822 |
r.Cells[m_GoukeiCode_Column + 1].Value = ""; |
3817 |
r.Cells[m_GoukeiCode_Column + 1].ToolTipText = k.Key.GoukeiName; |
|
3823 |
r.Cells[m_GoukeiCode_Column + 2].Value = ""; |
|
3824 |
r.Cells[m_GoukeiCode_Column + 2].ToolTipText = k.Key.GoukeiName; |
|
3818 | 3825 |
} |
3819 | 3826 |
iTop++; |
3820 | 3827 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestSummaryList/FrmRequestSummaryList.designer.cs | ||
---|---|---|
29 | 29 |
private void InitializeComponent() |
30 | 30 |
{ |
31 | 31 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); |
32 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
32 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
33 | 33 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); |
34 | 34 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); |
35 | 35 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); |
... | ... | |
55 | 55 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle(); |
56 | 56 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle(); |
57 | 57 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle(); |
58 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
58 | 59 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle(); |
59 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
60 | 60 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle(); |
61 | 61 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle(); |
62 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
63 | 62 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle(); |
63 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
64 | 64 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle(); |
65 | 65 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle(); |
66 | 66 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle(); |
... | ... | |
109 | 109 |
this.cmbTargetMonth = new System.Windows.Forms.ComboBox(); |
110 | 110 |
this.label3 = new System.Windows.Forms.Label(); |
111 | 111 |
this.label4 = new System.Windows.Forms.Label(); |
112 |
this.dgvProject = new ProcessManagement.Forms.CustomControls.DataGridViewEX(); |
|
113 |
this.Column136 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
114 |
this.Column134 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
115 |
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
116 |
this.Column63 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
117 |
this.Column35 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
118 |
this.Project_Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
119 |
this.Column90 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
120 |
this.Column51 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
121 |
this.Project_Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
122 |
this.Project_Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
123 |
this.Project_Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
124 |
this.Project_Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
125 |
this.Project_Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
126 |
this.Column138 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
127 |
this.Project_Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
128 |
this.Project_Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
129 |
this.Project_Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
130 |
this.Project_Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
131 |
this.Project_Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
132 |
this.Project_Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
133 |
this.Project_Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
134 |
this.Project_Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
135 |
this.Project_Column15 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
136 |
this.Project_Column16 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
137 |
this.Project_Column17 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
138 |
this.Project_Column18 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
139 |
this.Project_Column19 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
140 |
this.Column100 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
141 |
this.KyouryokuKin_Pro = new System.Windows.Forms.DataGridViewComboBoxColumn(); |
|
142 |
this.Project_Column21 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
143 |
this.Project_Column22 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
144 |
this.Project_Column23 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
145 |
this.Column50 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
146 |
this.Project_Column24 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
147 |
this.Column78 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
148 |
this.Column52 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
149 |
this.Project_Column25 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
150 |
this.Column79 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
151 |
this.Column113 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
152 |
this.Column114 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
153 |
this.Column53 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
154 |
this.Project_Column26 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
155 |
this.Column81 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
156 |
this.Column115 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
157 |
this.Column116 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
158 |
this.Column54 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
159 |
this.Project_Column27 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
160 |
this.Column82 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
161 |
this.Column117 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
162 |
this.Column118 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
163 |
this.Column55 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
164 |
this.Project_Column28 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
165 |
this.Column83 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
166 |
this.Column119 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
167 |
this.Column120 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
168 |
this.Column56 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
169 |
this.Project_Column29 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
170 |
this.Column84 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
171 |
this.Column121 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
172 |
this.Column122 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
173 |
this.Column57 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
174 |
this.Project_Column30 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
175 |
this.Column80 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
176 |
this.Column123 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
177 |
this.Column124 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
178 |
this.Column58 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
179 |
this.Project_Column31 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
180 |
this.Column85 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
181 |
this.Column125 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
182 |
this.Column126 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
183 |
this.Column59 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
184 |
this.Project_Column32 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
185 |
this.Column86 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
186 |
this.Column127 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
187 |
this.Column128 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
188 |
this.Column60 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
189 |
this.Project_Column33 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
190 |
this.Column87 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
191 |
this.Column129 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
192 |
this.Column130 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
193 |
this.Column61 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
194 |
this.Project_Column34 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
195 |
this.Column88 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
196 |
this.Column131 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
197 |
this.Column132 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
198 |
this.Column21 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
199 |
this.Column77 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
112 | 200 |
this.dgvCompany = new ProcessManagement.Forms.CustomControls.DataGridViewEX(); |
113 | 201 |
this.Column135 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
114 | 202 |
this.Column133 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
... | ... | |
121 | 209 |
this.Column99 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
122 | 210 |
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
123 | 211 |
this.Column24 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
212 |
this.Column137 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
124 | 213 |
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
125 | 214 |
this.Column26 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
126 | 215 |
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
... | ... | |
196 | 285 |
this.Column112 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
197 | 286 |
this.Column20 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
198 | 287 |
this.Column64 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
199 |
this.dgvProject = new ProcessManagement.Forms.CustomControls.DataGridViewEX(); |
|
200 |
this.Column136 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
201 |
this.Column134 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
202 |
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
203 |
this.Column63 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
204 |
this.Column35 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
205 |
this.Project_Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
206 |
this.Column90 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
207 |
this.Column51 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
208 |
this.Project_Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
209 |
this.Project_Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
210 |
this.Project_Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
211 |
this.Project_Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
212 |
this.Project_Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
213 |
this.Project_Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
214 |
this.Project_Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
215 |
this.Project_Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
216 |
this.Project_Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
217 |
this.Project_Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
218 |
this.Project_Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
219 |
this.Project_Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
220 |
this.Project_Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
221 |
this.Project_Column15 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
222 |
this.Project_Column16 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
223 |
this.Project_Column17 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
224 |
this.Project_Column18 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
225 |
this.Project_Column19 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
226 |
this.Column100 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
227 |
this.KyouryokuKin_Pro = new System.Windows.Forms.DataGridViewComboBoxColumn(); |
|
228 |
this.Project_Column21 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
229 |
this.Project_Column22 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
230 |
this.Project_Column23 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
231 |
this.Column50 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
232 |
this.Project_Column24 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
233 |
this.Column78 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
234 |
this.Column52 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
235 |
this.Project_Column25 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
236 |
this.Column79 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
237 |
this.Column113 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
238 |
this.Column114 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
239 |
this.Column53 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
240 |
this.Project_Column26 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
241 |
this.Column81 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
242 |
this.Column115 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
243 |
this.Column116 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
244 |
this.Column54 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
245 |
this.Project_Column27 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
246 |
this.Column82 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
247 |
this.Column117 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
248 |
this.Column118 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
249 |
this.Column55 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
250 |
this.Project_Column28 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
251 |
this.Column83 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
252 |
this.Column119 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
253 |
this.Column120 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
254 |
this.Column56 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
255 |
this.Project_Column29 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
256 |
this.Column84 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
257 |
this.Column121 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
258 |
this.Column122 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
259 |
this.Column57 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
260 |
this.Project_Column30 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
261 |
this.Column80 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
262 |
this.Column123 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
263 |
this.Column124 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
264 |
this.Column58 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
265 |
this.Project_Column31 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
266 |
this.Column85 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
267 |
this.Column125 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
268 |
this.Column126 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
269 |
this.Column59 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
270 |
this.Project_Column32 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
271 |
this.Column86 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
272 |
this.Column127 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
273 |
this.Column128 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
274 |
this.Column60 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
275 |
this.Project_Column33 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
276 |
this.Column87 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
277 |
this.Column129 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
278 |
this.Column130 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
279 |
this.Column61 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
280 |
this.Project_Column34 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
281 |
this.Column88 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
282 |
this.Column131 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
283 |
this.Column132 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
284 |
this.Column21 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
285 |
this.Column77 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
286 | 288 |
this.panel1.SuspendLayout(); |
287 | 289 |
this.groupBoxEx1.SuspendLayout(); |
290 |
((System.ComponentModel.ISupportInitialize)(this.dgvProject)).BeginInit(); |
|
288 | 291 |
((System.ComponentModel.ISupportInitialize)(this.dgvCompany)).BeginInit(); |
289 |
((System.ComponentModel.ISupportInitialize)(this.dgvProject)).BeginInit(); |
|
290 | 292 |
this.SuspendLayout(); |
291 | 293 |
// |
292 | 294 |
// btnEnd |
... | ... | |
613 | 615 |
this.label4.TabIndex = 5; |
614 | 616 |
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
615 | 617 |
// |
618 |
// dgvProject |
|
619 |
// |
|
620 |
this.dgvProject.AllowUserToAddRows = false; |
|
621 |
this.dgvProject.AllowUserToDeleteRows = false; |
|
622 |
this.dgvProject.AllowUserToResizeRows = false; |
|
623 |
this.dgvProject.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
|
624 |
| System.Windows.Forms.AnchorStyles.Left) |
|
625 |
| System.Windows.Forms.AnchorStyles.Right))); |
|
626 |
this.dgvProject.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |
|
627 |
this.dgvProject.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
628 |
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
629 |
dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))); |
|
630 |
dataGridViewCellStyle1.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
631 |
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True; |
|
632 |
this.dgvProject.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1; |
|
633 |
this.dgvProject.ColumnHeadersHeight = 45; |
|
634 |
this.dgvProject.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; |
|
635 |
this.dgvProject.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { |
|
636 |
this.Column136, |
|
637 |
this.Column134, |
|
638 |
this.dataGridViewTextBoxColumn1, |
|
639 |
this.Column63, |
|
640 |
this.Column35, |
|
641 |
this.Project_Column1, |
|
642 |
this.Column90, |
|
643 |
this.Column51, |
|
644 |
this.Project_Column2, |
|
645 |
this.Project_Column3, |
|
646 |
this.Project_Column4, |
|
647 |
this.Project_Column5, |
|
648 |
this.Project_Column6, |
|
649 |
this.Column138, |
|
650 |
this.Project_Column7, |
|
651 |
this.Project_Column8, |
|
652 |
this.Project_Column9, |
|
653 |
this.Project_Column10, |
|
654 |
this.Project_Column11, |
|
655 |
this.Project_Column12, |
|
656 |
this.Project_Column13, |
|
657 |
this.Project_Column14, |
|
658 |
this.Project_Column15, |
|
659 |
this.Project_Column16, |
|
660 |
this.Project_Column17, |
|
661 |
this.Project_Column18, |
|
662 |
this.Project_Column19, |
|
663 |
this.Column100, |
|
664 |
this.KyouryokuKin_Pro, |
|
665 |
this.Project_Column21, |
|
666 |
this.Project_Column22, |
|
667 |
this.Project_Column23, |
|
668 |
this.Column50, |
|
669 |
this.Project_Column24, |
|
670 |
this.Column78, |
|
671 |
this.Column52, |
|
672 |
this.Project_Column25, |
|
673 |
this.Column79, |
|
674 |
this.Column113, |
|
675 |
this.Column114, |
|
676 |
this.Column53, |
|
677 |
this.Project_Column26, |
|
678 |
this.Column81, |
|
679 |
this.Column115, |
|
680 |
this.Column116, |
|
681 |
this.Column54, |
|
682 |
this.Project_Column27, |
|
683 |
this.Column82, |
|
684 |
this.Column117, |
|
685 |
this.Column118, |
|
686 |
this.Column55, |
|
687 |
this.Project_Column28, |
|
688 |
this.Column83, |
|
689 |
this.Column119, |
|
690 |
this.Column120, |
|
691 |
this.Column56, |
|
692 |
this.Project_Column29, |
|
693 |
this.Column84, |
|
694 |
this.Column121, |
|
695 |
this.Column122, |
|
696 |
this.Column57, |
|
697 |
this.Project_Column30, |
|
698 |
this.Column80, |
|
699 |
this.Column123, |
|
700 |
this.Column124, |
|
701 |
this.Column58, |
|
702 |
this.Project_Column31, |
|
703 |
this.Column85, |
|
704 |
this.Column125, |
|
705 |
this.Column126, |
|
706 |
this.Column59, |
|
707 |
this.Project_Column32, |
|
708 |
this.Column86, |
|
709 |
this.Column127, |
|
710 |
this.Column128, |
|
711 |
this.Column60, |
|
712 |
this.Project_Column33, |
|
713 |
this.Column87, |
|
714 |
this.Column129, |
|
715 |
this.Column130, |
|
716 |
this.Column61, |
|
717 |
this.Project_Column34, |
|
718 |
this.Column88, |
|
719 |
this.Column131, |
|
720 |
this.Column132, |
|
721 |
this.Column21, |
|
722 |
this.Column77}); |
|
723 |
dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; |
|
724 |
dataGridViewCellStyle31.BackColor = System.Drawing.SystemColors.Window; |
|
725 |
dataGridViewCellStyle31.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
726 |
dataGridViewCellStyle31.ForeColor = System.Drawing.SystemColors.ControlText; |
|
727 |
dataGridViewCellStyle31.SelectionBackColor = System.Drawing.Color.LightSeaGreen; |
|
728 |
dataGridViewCellStyle31.SelectionForeColor = System.Drawing.SystemColors.HighlightText; |
|
729 |
dataGridViewCellStyle31.WrapMode = System.Windows.Forms.DataGridViewTriState.False; |
|
730 |
this.dgvProject.DefaultCellStyle = dataGridViewCellStyle31; |
|
731 |
this.dgvProject.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter; |
|
732 |
this.dgvProject.EnableHeadersVisualStyles = false; |
|
733 |
this.dgvProject.Location = new System.Drawing.Point(30, 141); |
|
734 |
this.dgvProject.Margin = new System.Windows.Forms.Padding(4); |
|
735 |
this.dgvProject.MultiSelect = false; |
|
736 |
this.dgvProject.Name = "dgvProject"; |
|
737 |
this.dgvProject.RowHeadersVisible = false; |
|
738 |
this.dgvProject.RowHeadersWidth = 20; |
|
739 |
this.dgvProject.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; |
|
740 |
this.dgvProject.RowTemplate.Height = 21; |
|
741 |
this.dgvProject.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect; |
|
742 |
this.dgvProject.Size = new System.Drawing.Size(1522, 655); |
|
743 |
this.dgvProject.TabIndex = 3; |
|
744 |
this.dgvProject.Visible = false; |
|
745 |
this.dgvProject.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.DataGridView_CellBeginEdit); |
|
746 |
this.dgvProject.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellDoubleClick); |
|
747 |
this.dgvProject.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellEnter); |
|
748 |
this.dgvProject.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.DataGridView_CellFormatting); |
|
749 |
this.dgvProject.CellValidated += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellValidated); |
|
750 |
this.dgvProject.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellValueChanged); |
|
751 |
this.dgvProject.CurrentCellDirtyStateChanged += new System.EventHandler(this.DataGridView_CurrentCellDirtyStateChanged); |
|
752 |
// |
|
753 |
// Column136 |
|
754 |
// |
|
755 |
this.Column136.HeaderText = "CompanyDispOrder"; |
|
756 |
this.Column136.Name = "Column136"; |
|
757 |
this.Column136.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
758 |
this.Column136.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
759 |
// |
|
760 |
// Column134 |
|
761 |
// |
|
762 |
this.Column134.HeaderText = "ApprovalEndFlg"; |
|
763 |
this.Column134.Name = "Column134"; |
|
764 |
this.Column134.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
765 |
this.Column134.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
766 |
// |
|
767 |
// dataGridViewTextBoxColumn1 |
|
768 |
// |
|
769 |
this.dataGridViewTextBoxColumn1.HeaderText = "業者請求明細更新日時"; |
|
770 |
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1"; |
|
771 |
this.dataGridViewTextBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
772 |
this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
773 |
// |
|
774 |
// Column63 |
|
775 |
// |
|
776 |
this.Column63.HeaderText = "RowState"; |
|
777 |
this.Column63.Name = "Column63"; |
|
778 |
this.Column63.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
779 |
this.Column63.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
780 |
// |
|
781 |
// Column35 |
|
782 |
// |
|
783 |
this.Column35.HeaderText = "可視"; |
|
784 |
this.Column35.Name = "Column35"; |
|
785 |
this.Column35.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
786 |
this.Column35.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
787 |
// |
|
788 |
// Project_Column1 |
|
789 |
// |
|
790 |
this.Project_Column1.HeaderText = "行タイプ"; |
|
791 |
this.Project_Column1.Name = "Project_Column1"; |
|
792 |
this.Project_Column1.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
793 |
this.Project_Column1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
794 |
// |
|
795 |
// Column90 |
|
796 |
// |
|
797 |
this.Column90.HeaderText = "GoukeiSeqNo"; |
|
798 |
this.Column90.Name = "Column90"; |
|
799 |
this.Column90.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
800 |
this.Column90.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
801 |
// |
|
802 |
// Column51 |
|
803 |
// |
|
804 |
this.Column51.HeaderText = "SeqNo"; |
|
805 |
this.Column51.Name = "Column51"; |
|
806 |
this.Column51.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
807 |
this.Column51.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
808 |
// |
|
809 |
// Project_Column2 |
|
810 |
// |
|
811 |
this.Project_Column2.HeaderText = "LineCount"; |
|
812 |
this.Project_Column2.Name = "Project_Column2"; |
|
813 |
this.Project_Column2.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
814 |
this.Project_Column2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
815 |
// |
|
816 |
// Project_Column3 |
|
817 |
// |
|
818 |
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
819 |
this.Project_Column3.DefaultCellStyle = dataGridViewCellStyle2; |
|
820 |
this.Project_Column3.HeaderText = "№"; |
|
821 |
this.Project_Column3.Name = "Project_Column3"; |
|
822 |
this.Project_Column3.ReadOnly = true; |
|
823 |
this.Project_Column3.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
824 |
this.Project_Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
825 |
this.Project_Column3.Width = 35; |
|
826 |
// |
|
827 |
// Project_Column4 |
|
828 |
// |
|
829 |
this.Project_Column4.HeaderText = "現場コード"; |
|
830 |
this.Project_Column4.Name = "Project_Column4"; |
|
831 |
this.Project_Column4.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
832 |
this.Project_Column4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
833 |
this.Project_Column4.Visible = false; |
|
834 |
// |
|
835 |
// Project_Column5 |
|
836 |
// |
|
837 |
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; |
|
838 |
this.Project_Column5.DefaultCellStyle = dataGridViewCellStyle3; |
|
839 |
this.Project_Column5.HeaderText = " 現場名"; |
|
840 |
this.Project_Column5.Name = "Project_Column5"; |
|
841 |
this.Project_Column5.ReadOnly = true; |
|
842 |
this.Project_Column5.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
843 |
this.Project_Column5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
844 |
this.Project_Column5.Width = 180; |
|
845 |
// |
|
846 |
// Project_Column6 |
|
847 |
// |
|
848 |
this.Project_Column6.HeaderText = "業者コード"; |
|
849 |
this.Project_Column6.Name = "Project_Column6"; |
|
850 |
this.Project_Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
851 |
this.Project_Column6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
852 |
this.Project_Column6.Visible = false; |
|
853 |
// |
|
854 |
// Column138 |
|
855 |
// |
|
856 |
this.Column138.HeaderText = "協力会社\r\nコード"; |
|
857 |
this.Column138.Name = "Column138"; |
|
858 |
this.Column138.Visible = false; |
|
859 |
// |
|
860 |
// Project_Column7 |
|
861 |
// |
|
862 |
this.Project_Column7.HeaderText = " 業者名"; |
|
863 |
this.Project_Column7.Name = "Project_Column7"; |
|
864 |
this.Project_Column7.ReadOnly = true; |
|
865 |
this.Project_Column7.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
866 |
this.Project_Column7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
867 |
this.Project_Column7.Width = 140; |
|
868 |
// |
|
869 |
// Project_Column8 |
|
870 |
// |
|
871 |
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
872 |
this.Project_Column8.DefaultCellStyle = dataGridViewCellStyle4; |
|
873 |
this.Project_Column8.HeaderText = "請求書\r\n 金額"; |
|
874 |
this.Project_Column8.Name = "Project_Column8"; |
|
875 |
this.Project_Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
876 |
this.Project_Column8.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
877 |
this.Project_Column8.Width = 125; |
|
878 |
// |
|
879 |
// Project_Column9 |
|
880 |
// |
|
881 |
dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
882 |
this.Project_Column9.DefaultCellStyle = dataGridViewCellStyle5; |
|
883 |
this.Project_Column9.HeaderText = "高速代\r\n駐車代"; |
|
884 |
this.Project_Column9.Name = "Project_Column9"; |
|
885 |
this.Project_Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
886 |
this.Project_Column9.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
887 |
this.Project_Column9.Width = 80; |
|
888 |
// |
|
889 |
// Project_Column10 |
|
890 |
// |
|
891 |
dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
892 |
this.Project_Column10.DefaultCellStyle = dataGridViewCellStyle6; |
|
893 |
this.Project_Column10.HeaderText = "金物代"; |
|
894 |
this.Project_Column10.Name = "Project_Column10"; |
|
895 |
this.Project_Column10.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
896 |
this.Project_Column10.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
897 |
this.Project_Column10.Width = 80; |
|
898 |
// |
|
899 |
// Project_Column11 |
|
900 |
// |
|
901 |
dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
902 |
this.Project_Column11.DefaultCellStyle = dataGridViewCellStyle7; |
|
903 |
this.Project_Column11.HeaderText = "産廃税"; |
|
904 |
this.Project_Column11.Name = "Project_Column11"; |
|
905 |
this.Project_Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
906 |
this.Project_Column11.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
907 |
this.Project_Column11.Width = 80; |
|
908 |
// |
|
909 |
// Project_Column12 |
|
910 |
// |
|
911 |
dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
912 |
this.Project_Column12.DefaultCellStyle = dataGridViewCellStyle8; |
|
913 |
this.Project_Column12.HeaderText = "請求\r\n金額"; |
|
914 |
this.Project_Column12.Name = "Project_Column12"; |
|
915 |
this.Project_Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
916 |
this.Project_Column12.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
917 |
this.Project_Column12.Width = 110; |
|
918 |
// |
|
919 |
// Project_Column13 |
|
920 |
// |
|
921 |
dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
922 |
this.Project_Column13.DefaultCellStyle = dataGridViewCellStyle9; |
|
923 |
this.Project_Column13.HeaderText = "値引\r\n金額"; |
|
924 |
this.Project_Column13.Name = "Project_Column13"; |
|
925 |
this.Project_Column13.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
926 |
this.Project_Column13.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
927 |
this.Project_Column13.Width = 110; |
|
928 |
// |
|
929 |
// Project_Column14 |
|
930 |
// |
|
931 |
dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
932 |
this.Project_Column14.DefaultCellStyle = dataGridViewCellStyle10; |
|
933 |
this.Project_Column14.HeaderText = "相殺\r\n金額"; |
|
934 |
this.Project_Column14.Name = "Project_Column14"; |
|
935 |
this.Project_Column14.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
936 |
this.Project_Column14.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
937 |
this.Project_Column14.Width = 110; |
|
938 |
// |
|
939 |
// Project_Column15 |
|
940 |
// |
|
941 |
dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
942 |
dataGridViewCellStyle11.Format = "#,##0"; |
|
943 |
this.Project_Column15.DefaultCellStyle = dataGridViewCellStyle11; |
|
944 |
this.Project_Column15.HeaderText = "次回\r\n繰越"; |
|
945 |
this.Project_Column15.Name = "Project_Column15"; |
|
946 |
this.Project_Column15.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
947 |
this.Project_Column15.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
948 |
this.Project_Column15.Width = 110; |
|
949 |
// |
|
950 |
// Project_Column16 |
|
951 |
// |
|
952 |
dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
953 |
this.Project_Column16.DefaultCellStyle = dataGridViewCellStyle12; |
|
954 |
this.Project_Column16.HeaderText = "高速代\r\n駐車代"; |
|
955 |
this.Project_Column16.Name = "Project_Column16"; |
|
956 |
this.Project_Column16.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
957 |
this.Project_Column16.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
958 |
this.Project_Column16.Width = 80; |
|
959 |
// |
|
960 |
// Project_Column17 |
|
961 |
// |
|
962 |
dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
963 |
this.Project_Column17.DefaultCellStyle = dataGridViewCellStyle13; |
|
964 |
this.Project_Column17.HeaderText = "金物代"; |
|
965 |
this.Project_Column17.Name = "Project_Column17"; |
|
966 |
this.Project_Column17.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
967 |
this.Project_Column17.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
968 |
this.Project_Column17.Width = 80; |
|
969 |
// |
|
970 |
// Project_Column18 |
|
971 |
// |
|
972 |
dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
973 |
this.Project_Column18.DefaultCellStyle = dataGridViewCellStyle14; |
|
974 |
this.Project_Column18.HeaderText = "産廃税"; |
|
975 |
this.Project_Column18.Name = "Project_Column18"; |
|
976 |
this.Project_Column18.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
977 |
this.Project_Column18.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
978 |
this.Project_Column18.Width = 80; |
|
979 |
// |
|
980 |
// Project_Column19 |
|
981 |
// |
|
982 |
dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
983 |
this.Project_Column19.DefaultCellStyle = dataGridViewCellStyle15; |
|
984 |
this.Project_Column19.HeaderText = "協力金"; |
|
985 |
this.Project_Column19.Name = "Project_Column19"; |
|
986 |
this.Project_Column19.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
987 |
this.Project_Column19.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
988 |
this.Project_Column19.Width = 80; |
|
989 |
// |
|
990 |
// Column100 |
|
991 |
// |
|
992 |
this.Column100.HeaderText = "協力金率"; |
|
993 |
this.Column100.Name = "Column100"; |
|
994 |
this.Column100.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
995 |
this.Column100.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
996 |
// |
|
997 |
// KyouryokuKin_Pro |
|
998 |
// |
|
999 |
dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1000 |
dataGridViewCellStyle16.BackColor = System.Drawing.Color.White; |
|
1001 |
dataGridViewCellStyle16.ForeColor = System.Drawing.Color.Black; |
|
1002 |
this.KyouryokuKin_Pro.DefaultCellStyle = dataGridViewCellStyle16; |
|
1003 |
this.KyouryokuKin_Pro.HeaderText = "協力金\r\n有無"; |
|
1004 |
this.KyouryokuKin_Pro.Name = "KyouryokuKin_Pro"; |
|
1005 |
this.KyouryokuKin_Pro.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1006 |
// |
|
1007 |
// Project_Column21 |
|
1008 |
// |
|
1009 |
dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1010 |
this.Project_Column21.DefaultCellStyle = dataGridViewCellStyle17; |
|
1011 |
this.Project_Column21.HeaderText = "注文書\r\n送付"; |
|
1012 |
this.Project_Column21.Name = "Project_Column21"; |
|
1013 |
this.Project_Column21.ReadOnly = true; |
|
1014 |
this.Project_Column21.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1015 |
this.Project_Column21.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1016 |
// |
|
1017 |
// Project_Column22 |
|
1018 |
// |
|
1019 |
dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1020 |
this.Project_Column22.DefaultCellStyle = dataGridViewCellStyle18; |
|
1021 |
this.Project_Column22.HeaderText = "注文書\r\n到着"; |
|
1022 |
this.Project_Column22.Name = "Project_Column22"; |
|
1023 |
this.Project_Column22.ReadOnly = true; |
|
1024 |
this.Project_Column22.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1025 |
this.Project_Column22.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1026 |
// |
|
1027 |
// Project_Column23 |
|
1028 |
// |
|
1029 |
dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1030 |
this.Project_Column23.DefaultCellStyle = dataGridViewCellStyle19; |
|
1031 |
this.Project_Column23.HeaderText = "予算書"; |
|
1032 |
this.Project_Column23.Name = "Project_Column23"; |
|
1033 |
this.Project_Column23.ReadOnly = true; |
|
1034 |
this.Project_Column23.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1035 |
this.Project_Column23.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1036 |
// |
|
1037 |
// Column50 |
|
1038 |
// |
|
1039 |
this.Column50.HeaderText = "担当者コード"; |
|
1040 |
this.Column50.Name = "Column50"; |
|
1041 |
this.Column50.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1042 |
this.Column50.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1043 |
// |
|
1044 |
// Project_Column24 |
|
1045 |
// |
|
1046 |
dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1047 |
this.Project_Column24.DefaultCellStyle = dataGridViewCellStyle20; |
|
1048 |
this.Project_Column24.HeaderText = "担当者\r\n確認"; |
|
1049 |
this.Project_Column24.Name = "Project_Column24"; |
|
1050 |
this.Project_Column24.ReadOnly = true; |
|
1051 |
this.Project_Column24.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1052 |
this.Project_Column24.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1053 |
// |
|
1054 |
// Column78 |
|
1055 |
// |
|
1056 |
this.Column78.HeaderText = "担当者日付"; |
|
1057 |
this.Column78.Name = "Column78"; |
|
1058 |
this.Column78.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1059 |
this.Column78.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1060 |
// |
|
1061 |
// Column52 |
|
1062 |
// |
|
1063 |
this.Column52.HeaderText = "承認者1コード"; |
|
1064 |
this.Column52.Name = "Column52"; |
|
1065 |
this.Column52.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1066 |
this.Column52.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1067 |
// |
|
1068 |
// Project_Column25 |
|
1069 |
// |
|
1070 |
dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1071 |
this.Project_Column25.DefaultCellStyle = dataGridViewCellStyle21; |
|
1072 |
this.Project_Column25.HeaderText = "承認者1\r\n承認"; |
|
1073 |
this.Project_Column25.Name = "Project_Column25"; |
|
1074 |
this.Project_Column25.ReadOnly = true; |
|
1075 |
this.Project_Column25.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1076 |
this.Project_Column25.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1077 |
// |
|
1078 |
// Column79 |
|
1079 |
// |
|
1080 |
this.Column79.HeaderText = "承認者1 日付"; |
|
1081 |
this.Column79.Name = "Column79"; |
|
1082 |
this.Column79.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1083 |
this.Column79.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1084 |
// |
|
1085 |
// Column113 |
|
1086 |
// |
|
1087 |
this.Column113.HeaderText = "承認者1 承認権限"; |
|
1088 |
this.Column113.Name = "Column113"; |
|
1089 |
this.Column113.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1090 |
this.Column113.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1091 |
// |
|
1092 |
// Column114 |
|
1093 |
// |
|
1094 |
this.Column114.HeaderText = "承認者1 承認順番"; |
|
1095 |
this.Column114.Name = "Column114"; |
|
1096 |
this.Column114.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1097 |
this.Column114.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1098 |
// |
|
1099 |
// Column53 |
|
1100 |
// |
|
1101 |
this.Column53.HeaderText = "承認者2コード"; |
|
1102 |
this.Column53.Name = "Column53"; |
|
1103 |
this.Column53.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1104 |
this.Column53.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1105 |
// |
|
1106 |
// Project_Column26 |
|
1107 |
// |
|
1108 |
dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1109 |
this.Project_Column26.DefaultCellStyle = dataGridViewCellStyle22; |
|
1110 |
this.Project_Column26.HeaderText = "承認者2\r\n承認"; |
|
1111 |
this.Project_Column26.Name = "Project_Column26"; |
|
1112 |
this.Project_Column26.ReadOnly = true; |
|
1113 |
this.Project_Column26.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1114 |
this.Project_Column26.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1115 |
// |
|
1116 |
// Column81 |
|
1117 |
// |
|
1118 |
this.Column81.HeaderText = "承認者2 日付"; |
|
1119 |
this.Column81.Name = "Column81"; |
|
1120 |
this.Column81.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1121 |
this.Column81.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1122 |
// |
|
1123 |
// Column115 |
|
1124 |
// |
|
1125 |
this.Column115.HeaderText = "承認者2 承認権限"; |
|
1126 |
this.Column115.Name = "Column115"; |
|
1127 |
this.Column115.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1128 |
this.Column115.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1129 |
// |
|
1130 |
// Column116 |
|
1131 |
// |
|
1132 |
this.Column116.HeaderText = "承認者2 承認順番"; |
|
1133 |
this.Column116.Name = "Column116"; |
|
1134 |
this.Column116.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1135 |
this.Column116.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1136 |
// |
|
1137 |
// Column54 |
|
1138 |
// |
|
1139 |
this.Column54.HeaderText = "承認者3コード"; |
|
1140 |
this.Column54.Name = "Column54"; |
|
1141 |
this.Column54.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1142 |
this.Column54.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1143 |
// |
|
1144 |
// Project_Column27 |
|
1145 |
// |
|
1146 |
dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1147 |
this.Project_Column27.DefaultCellStyle = dataGridViewCellStyle23; |
|
1148 |
this.Project_Column27.HeaderText = "承認者3\r\n承認"; |
|
1149 |
this.Project_Column27.Name = "Project_Column27"; |
|
1150 |
this.Project_Column27.ReadOnly = true; |
|
1151 |
this.Project_Column27.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1152 |
this.Project_Column27.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1153 |
// |
|
1154 |
// Column82 |
|
1155 |
// |
|
1156 |
this.Column82.HeaderText = "承認者3 日付"; |
|
1157 |
this.Column82.Name = "Column82"; |
|
1158 |
this.Column82.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1159 |
this.Column82.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1160 |
// |
|
1161 |
// Column117 |
|
1162 |
// |
|
1163 |
this.Column117.HeaderText = "承認者3 承認権限"; |
|
1164 |
this.Column117.Name = "Column117"; |
|
1165 |
this.Column117.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1166 |
this.Column117.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1167 |
// |
|
1168 |
// Column118 |
|
1169 |
// |
|
1170 |
this.Column118.HeaderText = "承認者3 承認順番"; |
|
1171 |
this.Column118.Name = "Column118"; |
|
1172 |
this.Column118.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1173 |
this.Column118.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1174 |
// |
|
1175 |
// Column55 |
|
1176 |
// |
|
1177 |
this.Column55.HeaderText = "承認者4コード"; |
|
1178 |
this.Column55.Name = "Column55"; |
|
1179 |
this.Column55.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1180 |
this.Column55.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1181 |
// |
|
1182 |
// Project_Column28 |
|
1183 |
// |
|
1184 |
dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1185 |
this.Project_Column28.DefaultCellStyle = dataGridViewCellStyle24; |
|
1186 |
this.Project_Column28.HeaderText = "承認者4承認"; |
|
1187 |
this.Project_Column28.Name = "Project_Column28"; |
|
1188 |
this.Project_Column28.ReadOnly = true; |
|
1189 |
this.Project_Column28.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1190 |
this.Project_Column28.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1191 |
// |
|
1192 |
// Column83 |
|
1193 |
// |
|
1194 |
this.Column83.HeaderText = "承認者4 日付"; |
|
1195 |
this.Column83.Name = "Column83"; |
|
1196 |
this.Column83.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1197 |
this.Column83.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1198 |
// |
|
1199 |
// Column119 |
|
1200 |
// |
|
1201 |
this.Column119.HeaderText = "承認者4 承認権限"; |
|
1202 |
this.Column119.Name = "Column119"; |
|
1203 |
this.Column119.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1204 |
this.Column119.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1205 |
// |
|
1206 |
// Column120 |
|
1207 |
// |
|
1208 |
this.Column120.HeaderText = "承認者4 承認順番"; |
|
1209 |
this.Column120.Name = "Column120"; |
|
1210 |
this.Column120.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1211 |
this.Column120.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1212 |
// |
|
1213 |
// Column56 |
|
1214 |
// |
|
1215 |
this.Column56.HeaderText = "承認者5コード"; |
|
1216 |
this.Column56.Name = "Column56"; |
|
1217 |
this.Column56.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1218 |
this.Column56.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1219 |
// |
|
1220 |
// Project_Column29 |
|
1221 |
// |
|
1222 |
dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1223 |
this.Project_Column29.DefaultCellStyle = dataGridViewCellStyle25; |
|
1224 |
this.Project_Column29.HeaderText = "承認者5承認"; |
|
1225 |
this.Project_Column29.Name = "Project_Column29"; |
|
1226 |
this.Project_Column29.ReadOnly = true; |
|
1227 |
this.Project_Column29.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1228 |
this.Project_Column29.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1229 |
// |
|
1230 |
// Column84 |
|
1231 |
// |
|
1232 |
this.Column84.HeaderText = "承認者5 日付"; |
|
1233 |
this.Column84.Name = "Column84"; |
|
1234 |
this.Column84.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1235 |
this.Column84.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1236 |
// |
|
1237 |
// Column121 |
|
1238 |
// |
|
1239 |
this.Column121.HeaderText = "承認者5 承認権限"; |
|
1240 |
this.Column121.Name = "Column121"; |
|
1241 |
this.Column121.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1242 |
this.Column121.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1243 |
// |
|
1244 |
// Column122 |
|
1245 |
// |
|
1246 |
this.Column122.HeaderText = "承認者5 承認順番"; |
|
1247 |
this.Column122.Name = "Column122"; |
|
1248 |
this.Column122.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1249 |
this.Column122.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1250 |
// |
|
1251 |
// Column57 |
|
1252 |
// |
|
1253 |
this.Column57.HeaderText = "承認者6コード"; |
|
1254 |
this.Column57.Name = "Column57"; |
|
1255 |
this.Column57.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1256 |
this.Column57.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1257 |
// |
|
1258 |
// Project_Column30 |
|
1259 |
// |
|
1260 |
dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1261 |
this.Project_Column30.DefaultCellStyle = dataGridViewCellStyle26; |
|
1262 |
this.Project_Column30.HeaderText = "承認者6承認"; |
|
1263 |
this.Project_Column30.Name = "Project_Column30"; |
|
1264 |
this.Project_Column30.ReadOnly = true; |
|
1265 |
this.Project_Column30.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1266 |
this.Project_Column30.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1267 |
// |
|
1268 |
// Column80 |
|
1269 |
// |
|
1270 |
this.Column80.HeaderText = "承認者6 日付"; |
|
1271 |
this.Column80.Name = "Column80"; |
|
1272 |
this.Column80.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1273 |
this.Column80.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1274 |
// |
|
1275 |
// Column123 |
|
1276 |
// |
|
1277 |
this.Column123.HeaderText = "承認者6 承認権限"; |
|
1278 |
this.Column123.Name = "Column123"; |
|
1279 |
this.Column123.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1280 |
this.Column123.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1281 |
// |
|
1282 |
// Column124 |
|
1283 |
// |
|
1284 |
this.Column124.HeaderText = "承認者6 承認順番"; |
|
1285 |
this.Column124.Name = "Column124"; |
|
1286 |
this.Column124.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1287 |
this.Column124.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1288 |
// |
|
1289 |
// Column58 |
|
1290 |
// |
|
1291 |
this.Column58.HeaderText = "承認者7コード"; |
|
1292 |
this.Column58.Name = "Column58"; |
|
1293 |
this.Column58.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1294 |
this.Column58.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1295 |
// |
|
1296 |
// Project_Column31 |
|
1297 |
// |
|
1298 |
dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1299 |
this.Project_Column31.DefaultCellStyle = dataGridViewCellStyle27; |
|
1300 |
this.Project_Column31.HeaderText = "承認者7承認"; |
|
1301 |
this.Project_Column31.Name = "Project_Column31"; |
|
1302 |
this.Project_Column31.ReadOnly = true; |
|
1303 |
this.Project_Column31.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1304 |
this.Project_Column31.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1305 |
// |
|
1306 |
// Column85 |
|
1307 |
// |
|
1308 |
this.Column85.HeaderText = "承認者7 日付"; |
|
1309 |
this.Column85.Name = "Column85"; |
|
1310 |
this.Column85.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1311 |
this.Column85.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1312 |
// |
|
1313 |
// Column125 |
|
1314 |
// |
|
1315 |
this.Column125.HeaderText = "承認者7 承認権限"; |
|
1316 |
this.Column125.Name = "Column125"; |
|
1317 |
this.Column125.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1318 |
this.Column125.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1319 |
// |
|
1320 |
// Column126 |
|
1321 |
// |
|
1322 |
this.Column126.HeaderText = "承認者7 承認順番"; |
|
1323 |
this.Column126.Name = "Column126"; |
|
1324 |
this.Column126.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1325 |
this.Column126.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1326 |
// |
|
1327 |
// Column59 |
|
1328 |
// |
|
1329 |
this.Column59.HeaderText = "承認者8コード"; |
|
1330 |
this.Column59.Name = "Column59"; |
|
1331 |
this.Column59.Resizable = System.Windows.Forms.DataGridViewTriState.True; |
|
1332 |
this.Column59.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1333 |
// |
|
1334 |
// Project_Column32 |
|
1335 |
// |
|
1336 |
dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1337 |
this.Project_Column32.DefaultCellStyle = dataGridViewCellStyle28; |
|
1338 |
this.Project_Column32.HeaderText = "承認者8承認"; |
|
1339 |
this.Project_Column32.Name = "Project_Column32"; |
|
1340 |
this.Project_Column32.ReadOnly = true; |
|
1341 |
this.Project_Column32.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1342 |
this.Project_Column32.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1343 |
// |
|
1344 |
// Column86 |
|
1345 |
// |
|
1346 |
this.Column86.HeaderText = "承認者8 日付"; |
|
1347 |
this.Column86.Name = "Column86"; |
|
1348 |
this.Column86.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1349 |
this.Column86.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1350 |
// |
|
1351 |
// Column127 |
|
1352 |
// |
|
1353 |
this.Column127.HeaderText = "承認者8 承認権限"; |
|
1354 |
this.Column127.Name = "Column127"; |
|
1355 |
this.Column127.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1356 |
this.Column127.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1357 |
// |
|
1358 |
// Column128 |
|
1359 |
// |
|
1360 |
this.Column128.HeaderText = "承認者8 承認順番"; |
|
1361 |
this.Column128.Name = "Column128"; |
|
1362 |
this.Column128.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1363 |
this.Column128.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1364 |
// |
|
1365 |
// Column60 |
|
1366 |
// |
|
1367 |
this.Column60.HeaderText = "承認者9コード"; |
|
1368 |
this.Column60.Name = "Column60"; |
|
1369 |
this.Column60.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1370 |
this.Column60.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1371 |
// |
|
1372 |
// Project_Column33 |
|
1373 |
// |
|
1374 |
dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1375 |
this.Project_Column33.DefaultCellStyle = dataGridViewCellStyle29; |
|
1376 |
this.Project_Column33.HeaderText = "承認者9承認"; |
|
1377 |
this.Project_Column33.Name = "Project_Column33"; |
|
1378 |
this.Project_Column33.ReadOnly = true; |
|
1379 |
this.Project_Column33.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1380 |
this.Project_Column33.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1381 |
// |
|
1382 |
// Column87 |
|
1383 |
// |
|
1384 |
this.Column87.HeaderText = "承認者9 日付"; |
|
1385 |
this.Column87.Name = "Column87"; |
|
1386 |
this.Column87.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1387 |
this.Column87.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1388 |
// |
|
1389 |
// Column129 |
|
1390 |
// |
|
1391 |
this.Column129.HeaderText = "承認者9 承認権限"; |
|
1392 |
this.Column129.Name = "Column129"; |
|
1393 |
this.Column129.Resizable = System.Windows.Forms.DataGridViewTriState.True; |
|
1394 |
this.Column129.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1395 |
// |
|
1396 |
// Column130 |
|
1397 |
// |
|
1398 |
this.Column130.HeaderText = "承認者9 承認順番"; |
|
1399 |
this.Column130.Name = "Column130"; |
|
1400 |
this.Column130.Resizable = System.Windows.Forms.DataGridViewTriState.True; |
|
1401 |
this.Column130.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1402 |
// |
|
1403 |
// Column61 |
|
1404 |
// |
|
1405 |
this.Column61.HeaderText = "承認者10コード"; |
|
1406 |
this.Column61.Name = "Column61"; |
|
1407 |
this.Column61.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1408 |
this.Column61.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1409 |
// |
|
1410 |
// Project_Column34 |
|
1411 |
// |
|
1412 |
dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
1413 |
this.Project_Column34.DefaultCellStyle = dataGridViewCellStyle30; |
|
1414 |
this.Project_Column34.HeaderText = "承認者10承認"; |
|
1415 |
this.Project_Column34.Name = "Project_Column34"; |
|
1416 |
this.Project_Column34.ReadOnly = true; |
|
1417 |
this.Project_Column34.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1418 |
this.Project_Column34.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1419 |
// |
|
1420 |
// Column88 |
|
1421 |
// |
|
1422 |
this.Column88.HeaderText = "承認者10 日付"; |
|
1423 |
this.Column88.Name = "Column88"; |
|
1424 |
this.Column88.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1425 |
this.Column88.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1426 |
// |
|
1427 |
// Column131 |
|
1428 |
// |
|
1429 |
this.Column131.HeaderText = "承認者10 承認権限"; |
|
1430 |
this.Column131.Name = "Column131"; |
|
1431 |
this.Column131.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1432 |
this.Column131.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1433 |
// |
|
1434 |
// Column132 |
|
1435 |
// |
|
1436 |
this.Column132.HeaderText = "承認者10 承認順番"; |
|
1437 |
this.Column132.Name = "Column132"; |
|
1438 |
this.Column132.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1439 |
this.Column132.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1440 |
// |
|
1441 |
// Column21 |
|
1442 |
// |
|
1443 |
this.Column21.HeaderText = "備考"; |
|
1444 |
this.Column21.Name = "Column21"; |
|
1445 |
this.Column21.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1446 |
this.Column21.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1447 |
// |
|
1448 |
// Column77 |
|
1449 |
// |
|
1450 |
this.Column77.HeaderText = "消費税率"; |
|
1451 |
this.Column77.Name = "Column77"; |
|
1452 |
this.Column77.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1453 |
this.Column77.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1454 |
this.Column77.Visible = false; |
|
1455 |
// |
|
616 | 1456 |
// dgvCompany |
617 | 1457 |
// |
618 | 1458 |
this.dgvCompany.AllowUserToAddRows = false; |
... | ... | |
623 | 1463 |
| System.Windows.Forms.AnchorStyles.Right))); |
624 | 1464 |
this.dgvCompany.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |
625 | 1465 |
this.dgvCompany.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
626 |
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
627 |
dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
|
|
628 |
dataGridViewCellStyle1.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
629 |
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
|
630 |
this.dgvCompany.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
|
|
1466 |
dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1467 |
dataGridViewCellStyle32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
|
|
1468 |
dataGridViewCellStyle32.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
1469 |
dataGridViewCellStyle32.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
|
1470 |
this.dgvCompany.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle32;
|
|
631 | 1471 |
this.dgvCompany.ColumnHeadersHeight = 45; |
632 | 1472 |
this.dgvCompany.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; |
633 | 1473 |
this.dgvCompany.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { |
... | ... | |
642 | 1482 |
this.Column99, |
643 | 1483 |
this.Column1, |
644 | 1484 |
this.Column24, |
1485 |
this.Column137, |
|
645 | 1486 |
this.Column2, |
646 | 1487 |
this.Column26, |
647 | 1488 |
this.Column3, |
... | ... | |
717 | 1558 |
this.Column112, |
718 | 1559 |
this.Column20, |
719 | 1560 |
this.Column64}); |
720 |
dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
|
721 |
dataGridViewCellStyle27.BackColor = System.Drawing.SystemColors.Window;
|
|
722 |
dataGridViewCellStyle27.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
723 |
dataGridViewCellStyle27.ForeColor = System.Drawing.SystemColors.ControlText;
|
|
724 |
dataGridViewCellStyle27.SelectionBackColor = System.Drawing.Color.LightSeaGreen;
|
|
725 |
dataGridViewCellStyle27.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
|
726 |
dataGridViewCellStyle27.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
|
|
727 |
this.dgvCompany.DefaultCellStyle = dataGridViewCellStyle27;
|
|
1561 |
dataGridViewCellStyle58.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
|
1562 |
dataGridViewCellStyle58.BackColor = System.Drawing.SystemColors.Window;
|
|
1563 |
dataGridViewCellStyle58.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
|
|
1564 |
dataGridViewCellStyle58.ForeColor = System.Drawing.SystemColors.ControlText;
|
|
1565 |
dataGridViewCellStyle58.SelectionBackColor = System.Drawing.Color.LightSeaGreen;
|
|
1566 |
dataGridViewCellStyle58.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
|
1567 |
dataGridViewCellStyle58.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
|
|
1568 |
this.dgvCompany.DefaultCellStyle = dataGridViewCellStyle58;
|
|
728 | 1569 |
this.dgvCompany.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter; |
729 | 1570 |
this.dgvCompany.EnableHeadersVisualStyles = false; |
730 | 1571 |
this.dgvCompany.Location = new System.Drawing.Point(30, 141); |
... | ... | |
738 | 1579 |
this.dgvCompany.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect; |
739 | 1580 |
this.dgvCompany.Size = new System.Drawing.Size(1522, 655); |
740 | 1581 |
this.dgvCompany.TabIndex = 4; |
741 |
this.dgvCompany.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellEnter); |
|
742 | 1582 |
this.dgvCompany.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.DataGridView_CellBeginEdit); |
743 | 1583 |
this.dgvCompany.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellDoubleClick); |
1584 |
this.dgvCompany.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellEnter); |
|
744 | 1585 |
this.dgvCompany.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.DataGridView_CellFormatting); |
745 | 1586 |
this.dgvCompany.CellValidated += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellValidated); |
746 | 1587 |
this.dgvCompany.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellValueChanged); |
... | ... | |
811 | 1652 |
// |
812 | 1653 |
// Column1 |
813 | 1654 |
// |
814 |
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
815 |
this.Column1.DefaultCellStyle = dataGridViewCellStyle2;
|
|
1655 |
dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1656 |
this.Column1.DefaultCellStyle = dataGridViewCellStyle33;
|
|
816 | 1657 |
this.Column1.FillWeight = 110F; |
817 | 1658 |
this.Column1.HeaderText = "№"; |
818 | 1659 |
this.Column1.Name = "Column1"; |
... | ... | |
825 | 1666 |
// |
826 | 1667 |
this.Column24.HeaderText = "業者コード"; |
827 | 1668 |
this.Column24.Name = "Column24"; |
1669 |
this.Column24.ReadOnly = true; |
|
828 | 1670 |
this.Column24.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
829 | 1671 |
this.Column24.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
830 | 1672 |
this.Column24.Visible = false; |
831 | 1673 |
// |
1674 |
// Column137 |
|
1675 |
// |
|
1676 |
this.Column137.HeaderText = "協力会社\r\nコード"; |
|
1677 |
this.Column137.Name = "Column137"; |
|
1678 |
this.Column137.ReadOnly = true; |
|
1679 |
this.Column137.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
|
1680 |
this.Column137.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
|
1681 |
// |
|
832 | 1682 |
// Column2 |
833 | 1683 |
// |
834 | 1684 |
this.Column2.HeaderText = "業者名"; |
... | ... | |
857 | 1707 |
// |
858 | 1708 |
// Column4 |
859 | 1709 |
// |
860 |
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; |
|
861 |
this.Column4.DefaultCellStyle = dataGridViewCellStyle3; |
|
1710 |
dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1711 |
this.Column4.DefaultCellStyle = dataGridViewCellStyle34;
|
|
862 | 1712 |
this.Column4.HeaderText = "請求書\r\n金額"; |
863 | 1713 |
this.Column4.Name = "Column4"; |
864 | 1714 |
this.Column4.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
867 | 1717 |
// |
868 | 1718 |
// Column9 |
869 | 1719 |
// |
870 |
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
871 |
this.Column9.DefaultCellStyle = dataGridViewCellStyle4;
|
|
872 |
this.Column9.HeaderText = "高速代"; |
|
1720 |
dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1721 |
this.Column9.DefaultCellStyle = dataGridViewCellStyle35;
|
|
1722 |
this.Column9.HeaderText = "高速代駐車代";
|
|
873 | 1723 |
this.Column9.Name = "Column9"; |
874 | 1724 |
this.Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
875 | 1725 |
this.Column9.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
... | ... | |
877 | 1727 |
// |
878 | 1728 |
// Column10 |
879 | 1729 |
// |
880 |
dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
881 |
this.Column10.DefaultCellStyle = dataGridViewCellStyle5;
|
|
1730 |
dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1731 |
this.Column10.DefaultCellStyle = dataGridViewCellStyle36;
|
|
882 | 1732 |
this.Column10.HeaderText = "金物代"; |
883 | 1733 |
this.Column10.Name = "Column10"; |
884 | 1734 |
this.Column10.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
887 | 1737 |
// |
888 | 1738 |
// Column11 |
889 | 1739 |
// |
890 |
dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
891 |
this.Column11.DefaultCellStyle = dataGridViewCellStyle6;
|
|
1740 |
dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1741 |
this.Column11.DefaultCellStyle = dataGridViewCellStyle37;
|
|
892 | 1742 |
this.Column11.HeaderText = "産廃税"; |
893 | 1743 |
this.Column11.Name = "Column11"; |
894 | 1744 |
this.Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
897 | 1747 |
// |
898 | 1748 |
// Column5 |
899 | 1749 |
// |
900 |
dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
901 |
this.Column5.DefaultCellStyle = dataGridViewCellStyle7;
|
|
1750 |
dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1751 |
this.Column5.DefaultCellStyle = dataGridViewCellStyle38;
|
|
902 | 1752 |
this.Column5.HeaderText = "請求\r\n金額"; |
903 | 1753 |
this.Column5.Name = "Column5"; |
904 | 1754 |
this.Column5.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
907 | 1757 |
// |
908 | 1758 |
// Column6 |
909 | 1759 |
// |
910 |
dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
911 |
this.Column6.DefaultCellStyle = dataGridViewCellStyle8;
|
|
1760 |
dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1761 |
this.Column6.DefaultCellStyle = dataGridViewCellStyle39;
|
|
912 | 1762 |
this.Column6.HeaderText = "値引\r\n金額"; |
913 | 1763 |
this.Column6.Name = "Column6"; |
914 | 1764 |
this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
917 | 1767 |
// |
918 | 1768 |
// Column7 |
919 | 1769 |
// |
920 |
dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
921 |
this.Column7.DefaultCellStyle = dataGridViewCellStyle9;
|
|
1770 |
dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1771 |
this.Column7.DefaultCellStyle = dataGridViewCellStyle40;
|
|
922 | 1772 |
this.Column7.HeaderText = "相殺\r\n金額"; |
923 | 1773 |
this.Column7.Name = "Column7"; |
924 | 1774 |
this.Column7.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
927 | 1777 |
// |
928 | 1778 |
// Column8 |
929 | 1779 |
// |
930 |
dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
931 |
this.Column8.DefaultCellStyle = dataGridViewCellStyle10;
|
|
1780 |
dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1781 |
this.Column8.DefaultCellStyle = dataGridViewCellStyle41;
|
|
932 | 1782 |
this.Column8.HeaderText = "次回\r\n繰越"; |
933 | 1783 |
this.Column8.Name = "Column8"; |
934 | 1784 |
this.Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
937 | 1787 |
// |
938 | 1788 |
// Column40 |
939 | 1789 |
// |
940 |
dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
941 |
this.Column40.DefaultCellStyle = dataGridViewCellStyle11;
|
|
942 |
this.Column40.HeaderText = "高速代"; |
|
1790 |
dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1791 |
this.Column40.DefaultCellStyle = dataGridViewCellStyle42;
|
|
1792 |
this.Column40.HeaderText = "高速代駐車代";
|
|
943 | 1793 |
this.Column40.Name = "Column40"; |
944 | 1794 |
this.Column40.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
945 | 1795 |
this.Column40.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; |
... | ... | |
947 | 1797 |
// |
948 | 1798 |
// Column41 |
949 | 1799 |
// |
950 |
dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
951 |
this.Column41.DefaultCellStyle = dataGridViewCellStyle12;
|
|
1800 |
dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1801 |
this.Column41.DefaultCellStyle = dataGridViewCellStyle43;
|
|
952 | 1802 |
this.Column41.HeaderText = "金物代"; |
953 | 1803 |
this.Column41.Name = "Column41"; |
954 | 1804 |
this.Column41.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
957 | 1807 |
// |
958 | 1808 |
// Column43 |
959 | 1809 |
// |
960 |
dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
961 |
this.Column43.DefaultCellStyle = dataGridViewCellStyle13;
|
|
1810 |
dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1811 |
this.Column43.DefaultCellStyle = dataGridViewCellStyle44;
|
|
962 | 1812 |
this.Column43.HeaderText = "産廃税"; |
963 | 1813 |
this.Column43.Name = "Column43"; |
964 | 1814 |
this.Column43.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
967 | 1817 |
// |
968 | 1818 |
// Column12 |
969 | 1819 |
// |
970 |
dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
971 |
this.Column12.DefaultCellStyle = dataGridViewCellStyle14;
|
|
1820 |
dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
1821 |
this.Column12.DefaultCellStyle = dataGridViewCellStyle45;
|
|
972 | 1822 |
this.Column12.HeaderText = "協力金"; |
973 | 1823 |
this.Column12.Name = "Column12"; |
974 | 1824 |
this.Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
984 | 1834 |
// |
985 | 1835 |
// KyouryokuKin_Com |
986 | 1836 |
// |
987 |
dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
988 |
dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
|
|
989 |
dataGridViewCellStyle15.ForeColor = System.Drawing.Color.Black;
|
|
990 |
this.KyouryokuKin_Com.DefaultCellStyle = dataGridViewCellStyle15;
|
|
1837 |
dataGridViewCellStyle46.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1838 |
dataGridViewCellStyle46.BackColor = System.Drawing.Color.White;
|
|
1839 |
dataGridViewCellStyle46.ForeColor = System.Drawing.Color.Black;
|
|
1840 |
this.KyouryokuKin_Com.DefaultCellStyle = dataGridViewCellStyle46;
|
|
991 | 1841 |
this.KyouryokuKin_Com.HeaderText = "協力金\r\n有無"; |
992 | 1842 |
this.KyouryokuKin_Com.MaxDropDownItems = 3; |
993 | 1843 |
this.KyouryokuKin_Com.Name = "KyouryokuKin_Com"; |
... | ... | |
995 | 1845 |
// |
996 | 1846 |
// Column14 |
997 | 1847 |
// |
998 |
dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
999 |
this.Column14.DefaultCellStyle = dataGridViewCellStyle16;
|
|
1000 |
this.Column14.HeaderText = "注文書\r\n提出";
|
|
1848 |
dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1849 |
this.Column14.DefaultCellStyle = dataGridViewCellStyle47;
|
|
1850 |
this.Column14.HeaderText = "注文書\r\n送付";
|
|
1001 | 1851 |
this.Column14.Name = "Column14"; |
1002 | 1852 |
this.Column14.ReadOnly = true; |
1003 | 1853 |
this.Column14.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
1005 | 1855 |
// |
1006 | 1856 |
// Column15 |
1007 | 1857 |
// |
1008 |
dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1009 |
this.Column15.DefaultCellStyle = dataGridViewCellStyle17;
|
|
1858 |
dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1859 |
this.Column15.DefaultCellStyle = dataGridViewCellStyle48;
|
|
1010 | 1860 |
this.Column15.HeaderText = "注文書\r\n到着"; |
1011 | 1861 |
this.Column15.Name = "Column15"; |
1012 | 1862 |
this.Column15.ReadOnly = true; |
... | ... | |
1015 | 1865 |
// |
1016 | 1866 |
// Column16 |
1017 | 1867 |
// |
1018 |
dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1019 |
this.Column16.DefaultCellStyle = dataGridViewCellStyle18;
|
|
1868 |
dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1869 |
this.Column16.DefaultCellStyle = dataGridViewCellStyle49;
|
|
1020 | 1870 |
this.Column16.HeaderText = "予算書"; |
1021 | 1871 |
this.Column16.Name = "Column16"; |
1022 | 1872 |
this.Column16.ReadOnly = true; |
... | ... | |
1032 | 1882 |
// |
1033 | 1883 |
// Column17 |
1034 | 1884 |
// |
1035 |
dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1036 |
this.Column17.DefaultCellStyle = dataGridViewCellStyle19;
|
|
1037 |
this.Column17.HeaderText = "担当者\r\n承認";
|
|
1885 |
dataGridViewCellStyle50.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1886 |
this.Column17.DefaultCellStyle = dataGridViewCellStyle50;
|
|
1887 |
this.Column17.HeaderText = "担当者\r\n確認";
|
|
1038 | 1888 |
this.Column17.Name = "Column17"; |
1039 | 1889 |
this.Column17.ReadOnly = true; |
1040 | 1890 |
this.Column17.Resizable = System.Windows.Forms.DataGridViewTriState.False; |
... | ... | |
1056 | 1906 |
// |
1057 | 1907 |
// Column18 |
1058 | 1908 |
// |
1059 |
dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1060 |
this.Column18.DefaultCellStyle = dataGridViewCellStyle20;
|
|
1909 |
dataGridViewCellStyle51.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1910 |
this.Column18.DefaultCellStyle = dataGridViewCellStyle51;
|
|
1061 | 1911 |
this.Column18.HeaderText = "承認者1\r\n承認"; |
1062 | 1912 |
this.Column18.Name = "Column18"; |
1063 | 1913 |
this.Column18.ReadOnly = true; |
... | ... | |
1094 | 1944 |
// |
1095 | 1945 |
// Column19 |
1096 | 1946 |
// |
1097 |
dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1098 |
this.Column19.DefaultCellStyle = dataGridViewCellStyle21;
|
|
1947 |
dataGridViewCellStyle52.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1948 |
this.Column19.DefaultCellStyle = dataGridViewCellStyle52;
|
|
1099 | 1949 |
this.Column19.HeaderText = "承認者2\r\n承認"; |
1100 | 1950 |
this.Column19.Name = "Column19"; |
1101 | 1951 |
this.Column19.ReadOnly = true; |
... | ... | |
1132 | 1982 |
// |
1133 | 1983 |
// Column22 |
1134 | 1984 |
// |
1135 |
dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1136 |
this.Column22.DefaultCellStyle = dataGridViewCellStyle22;
|
|
1985 |
dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
1986 |
this.Column22.DefaultCellStyle = dataGridViewCellStyle53;
|
|
1137 | 1987 |
this.Column22.HeaderText = "承認者3\r\n承認"; |
他の形式にエクスポート: Unified diff