プロジェクト

全般

プロフィール

リビジョン 310

堀内約7年前に追加

注文書状況確認バグ修正(済フラグ)
資材管理資材選択ウィンドウ選択済み不具合修正
請求まとめ修正中

差分を表示:

branches/src/ProcessManagement/ProcessManagement/Common/CommonVersion.cs
14 14
        /// <summary>
15 15
        /// 本体バージョン
16 16
        /// </summary>
17
        public static int s_SystemVersion = 126;
17
        public static int s_SystemVersion = 127;
18 18

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOBillingDataDetail.cs
122 122
        }
123 123
        #endregion
124 124

  
125
        #region 新規登録
125
        #region 新規登録(1件)
126 126
        /// <summary>
127
        /// 新規登録
127
        /// 新規登録(1件)
128 128
        /// </summary>
129 129
        /// <param name="data"></param>
130 130
        /// <param name="bConnect"></param>
131 131
        /// <returns></returns>
132
        public bool InsertAction(BillingDataDetail work, bool bConnect = true)
133
        {
134
            StringBuilder strcmd = new StringBuilder();
135
            try
136
            {
137

  
138
                strcmd.Clear();
139
                strcmd.Append("INSERT INTO BillingDataDetail");
140

  
141
                strcmd.Append("(");
142
                bool bFirst = true;
143
                foreach (var gender in Enum.GetValues(typeof(NameColumn)))
144
                {
145
                    if (!bFirst) strcmd.Append(" ,");
146
                    strcmd.Append(gender.ToString());
147
                    bFirst = false;
148
                }
149
                strcmd.Append(") VALUES (");
150

  
151
                strcmd.AppendFormat("  {0}", work.CompanyCode.ToString());
152
                strcmd.AppendFormat(", {0}", work.TargetDate.ToString());
153
                strcmd.AppendFormat(", {0}", work.SeqNo.ToString());
154
                strcmd.AppendFormat(", {0}", work.LineCount.ToString());
155
                strcmd.AppendFormat(", {0}", work.ConstructionCode.ToString());
156
                strcmd.AppendFormat(", {0}", work.ConstructionRowCnt.ToString());
157
                strcmd.AppendFormat(", {0}", work.ConstructionColCnt.ToString());
158
                strcmd.AppendFormat(", '{0}'", work.FieldName.ToString());
159
                strcmd.AppendFormat(", {0}", work.BillPrice.ToString());
160
                strcmd.AppendFormat(", {0}", work.HighwPrice.ToString());
161
                strcmd.AppendFormat(", {0}", work.HardwPrice.ToString());
162
                strcmd.AppendFormat(", {0}", work.IndsWasteTax.ToString());
163
                strcmd.AppendFormat(", '{0}'", work.Note.ToString());
164

  
165
                strcmd.Append(", NOW()");
166
                strcmd.Append(", NOW()");
167
                strcmd.Append(")");
168

  
169
                if (!ExecuteNonQuery(strcmd.ToString(), bConnect)) return false;
170

  
171
                return true;
172
            }
173
            catch (Exception ex)
174
            {
175
                logger.ErrorFormat("システムエラー::{0}:{1}:{2}", CommonMotions.GetMethodName(2), ex.Message, strcmd.ToString());
176
                return false;
177
            }
178
        }
179
        #endregion
180

  
181
        #region 新規登録(複数)
182
        /// <summary>
183
        /// 新規登録(複数)
184
        /// </summary>
185
        /// <param name="data"></param>
186
        /// <param name="bConnect"></param>
187
        /// <returns></returns>
132 188
        public bool InsertAction(List<BillingDataDetail> data, bool bConnect = true)
133 189
        {
134 190
            StringBuilder strcmd = new StringBuilder();
135 191
            try
136 192
            {
137 193

  
194
                strcmd.Clear();
195
                strcmd.Append("INSERT INTO BillingDataDetail");
196

  
197
                strcmd.Append("(");
198
                bool bFirst = true;
199
                foreach (var gender in Enum.GetValues(typeof(NameColumn)))
200
                {
201
                    if (!bFirst) strcmd.Append(" ,");
202
                    strcmd.Append(gender.ToString());
203
                    bFirst = false;
204
                }
205
                strcmd.Append(") VALUES");
206

  
207
                bool bDataFirst = true;
138 208
                foreach (BillingDataDetail work in data)
139 209
                {
140
                    strcmd.Clear();
141
                    strcmd.Append("INSERT INTO BillingDataDetail");
210
                    if (bDataFirst) strcmd.Append(" (");
211
                    else strcmd.Append(", (");
142 212

  
143
                    strcmd.Append("(");
144
                    bool bFirst = true;
145
                    foreach (var gender in Enum.GetValues(typeof(NameColumn)))
146
                    {
147
                        if (!bFirst) strcmd.Append(" ,");
148
                        strcmd.Append(gender.ToString());
149
                        bFirst = false;
150
                    }
151
                    strcmd.Append(") VALUES (");
152

  
153 213
                    strcmd.AppendFormat("  {0}", work.CompanyCode.ToString());
154 214
                    strcmd.AppendFormat(", {0}", work.TargetDate.ToString());
155 215
                    strcmd.AppendFormat(", {0}", work.SeqNo.ToString());
......
168 228
                    strcmd.Append(", NOW()");
169 229
                    strcmd.Append(")");
170 230

  
171
                    if (!ExecuteNonQuery(strcmd.ToString(), bConnect)) return false;
231
                    bDataFirst = false;
172 232
                }
233

  
234
                if (!ExecuteNonQuery(strcmd.ToString(), bConnect)) return false;
235

  
173 236
                return true;
174 237
            }
175 238
            catch (Exception ex)
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOPaymentDataDetail.cs
128 128
        }
129 129
        #endregion
130 130

  
131
        #region 新規登録
131
        #region 新規登録(1件)
132 132
        /// <summary>
133
        /// 新規登録
133
        /// 新規登録(1件)
134 134
        /// </summary>
135 135
        /// <param name="data"></param>
136 136
        /// <param name="bConnect"></param>
137 137
        /// <returns></returns>
138
        public bool InsertAction(PaymentDataDetail work, bool bConnect = true)
139
        {
140
            StringBuilder strcmd = new StringBuilder();
141
            try
142
            {
143

  
144
                strcmd.Clear();
145
                strcmd.Append("INSERT INTO PaymentDataDetail");
146

  
147
                strcmd.Append(" VALUES (");
148

  
149
                strcmd.AppendFormat("  {0}", work.CompanyCode.ToString());
150
                strcmd.AppendFormat(", {0}", work.TargetDate.ToString());
151
                strcmd.AppendFormat(", {0}", work.SeqNo.ToString());
152
                strcmd.AppendFormat(", {0}", work.LineCount.ToString());
153
                strcmd.AppendFormat(", {0}", work.BillPrice.ToString());
154

  
155
                strcmd.AppendFormat(", {0}", work.DiscountPrice.ToString());
156
                strcmd.AppendFormat(", {0}", work.OffsetPrice.ToString());
157
                strcmd.AppendFormat(", {0}", work.NextCoPrice.ToString());
158
                strcmd.AppendFormat(", {0}", work.HighwPrice.ToString());
159
                strcmd.AppendFormat(", {0}", work.HardwPrice.ToString());
160
                strcmd.AppendFormat(", {0}", work.IndsWasteTax.ToString());
161
                strcmd.AppendFormat(", {0}", work.CnstrPrice.ToString());
162
                strcmd.AppendFormat(", {0}", work.CnstrPriceExist.ToString());
163
                strcmd.AppendFormat(", {0}", work.ApprovalPersonCode.ToString());
164
                strcmd.AppendFormat(", STR_TO_DATE('{0}','%Y/%m/%d')", work.ApprovalDate.ToShortDateString());
165
                strcmd.AppendFormat(", {0}", work.ApprovalEndFlg.ToString());
166

  
167
                strcmd.Append(", NOW()");
168
                strcmd.Append(", NOW()");
169
                strcmd.Append(")");
170

  
171
                if (!ExecuteNonQuery(strcmd.ToString(), bConnect)) return false;
172

  
173
                return true;
174
            }
175
            catch (Exception ex)
176
            {
177
                logger.ErrorFormat("システムエラー::{0}:{1}:{2}", CommonMotions.GetMethodName(2), ex.Message, strcmd.ToString());
178
                return false;
179
            }
180
        }
181
        #endregion
182

  
183
        #region 新規登録(複数)
184
        /// <summary>
185
        /// 新規登録(複数)
186
        /// </summary>
187
        /// <param name="data"></param>
188
        /// <param name="bConnect"></param>
189
        /// <returns></returns>
138 190
        public bool InsertAction(List<PaymentDataDetail> data, bool bConnect = true)
139 191
        {
140 192
            StringBuilder strcmd = new StringBuilder();
141 193
            try
142 194
            {
143 195

  
196
                strcmd.Clear();
197
                strcmd.Append("INSERT INTO PaymentDataDetail");
198

  
199
                strcmd.Append("(");
200
                bool bFirst = true;
201
                foreach (var gender in Enum.GetValues(typeof(NameColumn)))
202
                {
203
                    if (!bFirst) strcmd.Append(" ,");
204
                    strcmd.Append(gender.ToString());
205
                    bFirst = false;
206
                }
207
                strcmd.Append(") VALUES");
208

  
209
                bool bDataFirst = true;
144 210
                foreach (PaymentDataDetail work in data)
145 211
                {
146
                    strcmd.Clear();
147
                    strcmd.Append("INSERT INTO PaymentDataDetail");
212
                    if (bDataFirst) strcmd.Append(" (");
213
                    else strcmd.Append(", (");
148 214

  
149
                    strcmd.Append(" VALUES (");
150

  
151 215
                    strcmd.AppendFormat("  {0}", work.CompanyCode.ToString());
152 216
                    strcmd.AppendFormat(", {0}", work.TargetDate.ToString());
153 217
                    strcmd.AppendFormat(", {0}", work.SeqNo.ToString());
......
170 234
                    strcmd.Append(", NOW()");
171 235
                    strcmd.Append(")");
172 236

  
173
                    if (!ExecuteNonQuery(strcmd.ToString(), bConnect)) return false;
237
                    bDataFirst = false;
174 238
                }
239

  
240
                if (!ExecuteNonQuery(strcmd.ToString(), bConnect)) return false;
241

  
175 242
                return true;
176 243
            }
177 244
            catch (Exception ex)
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/MaterialReserveEntry/FrmMateResEntAux.cs
961 961
                    nItemCode = CommonMotions.cnvInt(CurRow.Cells[(int)DispColumn.MaterialItemCode].Value);
962 962
                    if (nKindCode == 0) continue;
963 963
                    if (nItemCode == 0) continue;
964
                    if (CurRow.Cells[(int)DispColumn.MaterialCount].ReadOnly) continue;
964 965
                    MaterialItemMaster CurRec = new MaterialItemMaster();
965 966
                    CurRec.MaterialKindCode = nKindCode;
966 967
                    CurRec.MaterialItemCode = nItemCode;
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/MaterialReserveEntry/FrmMaterialReserveEntry.cs
389 389

  
390 390
                // 値のチェック(同じ場合は変更フラグをONにしない)
391 391
                if (m_CheckCol != e.ColumnIndex || m_CheckRow != e.RowIndex) return;
392
                int CurVal = CommonMotions.cnvInt(CurRow.Cells[e.ColumnIndex].Value);
393
                if (CommonMotions.cnvInt(m_BeforeValue) == CurVal) return;
392
                switch (e.ColumnIndex)
393
                {
394
                    case (int)DispColumn.MaterialCount:
395
                        int nCurVal = CommonMotions.cnvInt(CurRow.Cells[e.ColumnIndex].Value);
396
                        if (CommonMotions.cnvInt(m_BeforeValue) == nCurVal) return;
397
                        break;
398
                    case (int)DispColumn.RepayPlanDate:
399
                        string sCurVal = CommonMotions.cnvString(CurRow.Cells[e.ColumnIndex].Value);
400
                        if (CommonMotions.cnvString(m_BeforeValue) == sCurVal.ToString()) return;
401
                        // 返却予定日の処理
402
                        if (e.ColumnIndex == (int)DispColumn.RepayPlanDate) FormatRepayPlanDate(e);
403
                        break;
404
                }
394 405

  
395
                // 返却予定日の処理
396
                if (e.ColumnIndex == (int)DispColumn.RepayPlanDate) FormatRepayPlanDate(e);
397 406

  
398 407
                // 値が変わればツールチップを変更する
399 408
                CurRow.Cells[e.ColumnIndex].ToolTipText = CommonMotions.cnvString(CurRow.Cells[e.ColumnIndex].Value);
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/PurchaseOrderStatus/FrmPurchaseOrderStatusAuxiliary.cs
363 363
        /// </summary>
364 364
        /// <param name="AllCount"></param>
365 365
        /// <param name="PrintCount"></param>
366
        private void GetPrintCount(int TargetCode, ref int AllCount, ref int PrintCount)
366
        private void GetPrintCount(int TargetCode, int OrderNo, ref int AllCount, ref int PrintCount)
367 367
        {
368 368
            IOPurchaseOrder OrderDB = new IOPurchaseOrder();
369 369
            try
370 370
            {
371 371
                StringBuilder strSQL = new StringBuilder();
372 372
                strSQL.Append("SELECT * FROM");
373
                strSQL.AppendFormat(" (SELECT COUNT(*) FROM PURCHASEORDER A1 WHERE CONSTRUCTIONCODE = {0}) A,", TargetCode);
374
                strSQL.AppendFormat(" (SELECT COUNT(*) FROM PURCHASEORDER B1 WHERE CONSTRUCTIONCODE = {0}", TargetCode);
375
                strSQL.AppendFormat(" AND DATE(PRINTOUTDATE) != STR_TO_DATE('{0}', '%Y/%m/%d')) B", DateTime.MinValue.ToShortDateString());
373
                strSQL.Append(" (SELECT COUNT(*) FROM PURCHASEORDER A1, processapprovaldetail A2");
374
                strSQL.AppendFormat(" WHERE A1.CONSTRUCTIONCODE = {0}", TargetCode);
375
                strSQL.Append(" And A2.CONSTRUCTIONCODE = A1.CONSTRUCTIONCODE");
376
                strSQL.AppendFormat(" And A2.ApprovalCode = {0}", (int)ClsExcute.ApprovalListNo.PurchaseOrderEntryApproval);
377
                strSQL.AppendFormat(" And A2.OrderNo = {0}", OrderNo);
378
                strSQL.Append(" And A2.LinkCode = A1.SeqNo) A");
379
                strSQL.Append(", (SELECT COUNT(*) FROM PURCHASEORDER B1, processapprovaldetail B2");
380
                strSQL.AppendFormat(" WHERE B1.CONSTRUCTIONCODE = {0}", TargetCode);
381
                strSQL.AppendFormat(" AND DATE (PRINTOUTDATE) != STR_TO_DATE('{0}', '%Y/%m/%d')", DateTime.MinValue.ToShortDateString());
382
                strSQL.Append(" And B2.CONSTRUCTIONCODE = B1.CONSTRUCTIONCODE");
383
                strSQL.AppendFormat(" And B2.ApprovalCode = {0}", (int)ClsExcute.ApprovalListNo.PurchaseOrderEntryApproval);
384
                strSQL.AppendFormat(" And B2.OrderNo = {0}", OrderNo);
385
                strSQL.Append(" And B2.LinkCode = B1.SeqNo) B");
386

  
376 387
                ArrayList arList = new ArrayList();
377 388
                if (!OrderDB.ExecuteReader(strSQL.ToString(), ref arList)) return;
378 389

  
......
449 460

  
450 461
                    ConstrCode = CommonMotions.cnvInt(objwrk[(int)GetData.CONSTRUCTIONCODE]);
451 462

  
463
                    OrderNo = CommonMotions.cnvInt(objwrk[(int)GetData.ORDERNO]);
452 464
                    // ????t???O
453 465
                    int AllCount = 0;
454 466
                    int PrintCount = 0;
455
                    GetPrintCount(ConstrCode, ref AllCount, ref PrintCount);
467
                    GetPrintCount(ConstrCode, OrderNo, ref AllCount, ref PrintCount);
456 468
                    if (AllCount != 0 && AllCount == PrintCount) FlgString = "??";
457 469

  
458
                    OrderNo = CommonMotions.cnvInt(objwrk[(int)GetData.ORDERNO]);
459 470
                    strConstrName = CommonMotions.cnvString(objwrk[(int)GetData.CONSTRUCTIONNAME]);
460 471
                    if (OrderNo > 1) strConstrName = string.Format("{0} [{1}???]", strConstrName, OrderNo);
461 472
                    dgv.Rows.Add((ino++)
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestSummaryList/FrmRequestSummaryList.cs
322 322
        /// ?s????????
323 323
        /// </summary>
324 324
        private const string s_UnknownString = "?s??";
325

  
326
        /// <summary>
327
        /// ?x????????b?Z?[?W
328
        /// </summary>
329
        string s_strOverComment = "?y?x?????z????z";
330
        
325 331
        #endregion
326 332

  
327 333
        #region ???
......
706 712
        /// <param name="e"></param>
707 713
        private void DataGridView_CellValueChanged(object sender, DataGridViewCellEventArgs e)
708 714
        {
715
            if (e.ColumnIndex < 0 || e.RowIndex < 0) return;
709 716
            DataGridView dgv = (DataGridView)sender;
710
            DataGridViewRow CurRow = dgv.CurrentRow;
717
            DataGridViewRow CurRow = dgv.Rows[e.RowIndex];
711 718

  
712 719
            // ??U?Z????l??X?C?x???g????????
713 720
            dgv.CellValueChanged -= DataGridView_CellValueChanged;
......
723 730
                        break;
724 731
                    default:
725 732
                        if (m_CheckCol != e.ColumnIndex || m_CheckRow != e.RowIndex) return;
726
                        CurVal = CommonMotions.cnvInt(dgv[e.ColumnIndex, e.RowIndex].Value);
733
                        CurVal = CommonMotions.cnvInt(CurRow.Cells[e.ColumnIndex].Value);
727 734
                        break;
728 735
                }
729 736
                // ?l??`?F?b?N?i?????????X?t???O??ON???????j
730 737
                if (CommonMotions.cnvInt(m_BeforeValue) == CurVal) return;
731 738

  
732 739
                // ??X?t???O
733
                CurRow.Cells[(int)DispColumn.RowState].Value = DataRowState.Modified;
740
                if (DataRowState.Unchanged == (DataRowState)CurRow.Cells[(int)DispColumn.RowState].Value)
741
                    CurRow.Cells[(int)DispColumn.RowState].Value = DataRowState.Modified;
734 742

  
743
                // ???v???????????????????s????
735 744
                if (dgv.Rows.Cast<DataGridViewRow>().Where(x => CommonMotions.cnvInt(x.Cells[(int)DispColumn.RowType].Value) == (int)RowsTypeDef.???v)
736 745
                                                        .ToArray()
737 746
                                                        .Count() == 0) return;
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestSummaryList/FrmRequestSummaryList.designer.cs
1
namespace ProcessManagement.Forms.DataEntry
1
using ProcessManagement.Common;
2
using ProcessManagement.DB.IOAccess;
3
using ProcessManagement.DataModel;
4
using ProcessManagement.DB.Core;
5
using ProcessManagement.Forms.CustomControls;
6
using ProcessManagement.Forms.ControlsAction;
7

  
8
namespace ProcessManagement.Forms.DataEntry
2 9
{
3 10
    partial class FrmRequestSummaryList
4 11
    {
......
127 134
            this.cmbTargetMonth = new System.Windows.Forms.ComboBox();
128 135
            this.label3 = new System.Windows.Forms.Label();
129 136
            this.dgvCompany = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
130
            this.Column135 = new System.Windows.Forms.DataGridViewTextBoxColumn();
131
            this.Column133 = new System.Windows.Forms.DataGridViewTextBoxColumn();
132
            this.Column71 = new System.Windows.Forms.DataGridViewTextBoxColumn();
133
            this.Column62 = new System.Windows.Forms.DataGridViewTextBoxColumn();
134
            this.Column23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
135
            this.Column33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
136
            this.Column89 = new System.Windows.Forms.DataGridViewTextBoxColumn();
137
            this.Column34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
138
            this.Column99 = new System.Windows.Forms.DataGridViewTextBoxColumn();
139
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
140
            this.Column24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
141
            this.Column137 = new System.Windows.Forms.DataGridViewTextBoxColumn();
142
            this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
143
            this.Column26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
144
            this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
145
            this.Column143 = new System.Windows.Forms.DataGridViewTextBoxColumn();
146
            this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
147
            this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
148
            this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
149
            this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
150
            this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
151
            this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
152
            this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
153
            this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
154
            this.Column40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
155
            this.Column41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
156
            this.Column43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
157
            this.Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
158
            this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
159
            this.KyouryokuKin_Com = new System.Windows.Forms.DataGridViewComboBoxColumn();
160
            this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
161
            this.Column15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
162
            this.Column16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
163
            this.Column36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
164
            this.Column17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
165
            this.Column66 = new System.Windows.Forms.DataGridViewTextBoxColumn();
166
            this.Column155 = new System.Windows.Forms.DataGridViewTextBoxColumn();
167
            this.Column37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
168
            this.Column18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
169
            this.Column65 = new System.Windows.Forms.DataGridViewTextBoxColumn();
170
            this.Column91 = new System.Windows.Forms.DataGridViewTextBoxColumn();
171
            this.Column92 = new System.Windows.Forms.DataGridViewTextBoxColumn();
172
            this.Column38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
173
            this.Column19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
174
            this.Column67 = new System.Windows.Forms.DataGridViewTextBoxColumn();
175
            this.Column93 = new System.Windows.Forms.DataGridViewTextBoxColumn();
176
            this.Column94 = new System.Windows.Forms.DataGridViewTextBoxColumn();
177
            this.Column39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
178
            this.Column22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
179
            this.Column68 = new System.Windows.Forms.DataGridViewTextBoxColumn();
180
            this.Column95 = new System.Windows.Forms.DataGridViewTextBoxColumn();
181
            this.Column96 = new System.Windows.Forms.DataGridViewTextBoxColumn();
182
            this.Column42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
183
            this.Column25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
184
            this.Column69 = new System.Windows.Forms.DataGridViewTextBoxColumn();
185
            this.Column97 = new System.Windows.Forms.DataGridViewTextBoxColumn();
186
            this.Column98 = new System.Windows.Forms.DataGridViewTextBoxColumn();
187
            this.Column44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
188
            this.Column27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
189
            this.Column70 = new System.Windows.Forms.DataGridViewTextBoxColumn();
190
            this.Column101 = new System.Windows.Forms.DataGridViewTextBoxColumn();
191
            this.Column102 = new System.Windows.Forms.DataGridViewTextBoxColumn();
192
            this.Column45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
193
            this.Column28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
194
            this.Column72 = new System.Windows.Forms.DataGridViewTextBoxColumn();
195
            this.Column103 = new System.Windows.Forms.DataGridViewTextBoxColumn();
196
            this.Column104 = new System.Windows.Forms.DataGridViewTextBoxColumn();
197
            this.Column46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
198
            this.Column29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
199
            this.Column73 = new System.Windows.Forms.DataGridViewTextBoxColumn();
200
            this.Column105 = new System.Windows.Forms.DataGridViewTextBoxColumn();
201
            this.Column106 = new System.Windows.Forms.DataGridViewTextBoxColumn();
202
            this.Column47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
203
            this.Column30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
204
            this.Column74 = new System.Windows.Forms.DataGridViewTextBoxColumn();
205
            this.Column107 = new System.Windows.Forms.DataGridViewTextBoxColumn();
206
            this.Column108 = new System.Windows.Forms.DataGridViewTextBoxColumn();
207
            this.Column48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
208
            this.Column31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
209
            this.Column75 = new System.Windows.Forms.DataGridViewTextBoxColumn();
210
            this.Column109 = new System.Windows.Forms.DataGridViewTextBoxColumn();
211
            this.Column110 = new System.Windows.Forms.DataGridViewTextBoxColumn();
212
            this.Column49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
213
            this.Column32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
214
            this.Column76 = new System.Windows.Forms.DataGridViewTextBoxColumn();
215
            this.Column111 = new System.Windows.Forms.DataGridViewTextBoxColumn();
216
            this.Column112 = new System.Windows.Forms.DataGridViewTextBoxColumn();
217
            this.Column20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
218
            this.Column64 = new System.Windows.Forms.DataGridViewTextBoxColumn();
219
            this.Column139 = new System.Windows.Forms.DataGridViewTextBoxColumn();
220
            this.Column140 = new System.Windows.Forms.DataGridViewTextBoxColumn();
221
            this.Column145 = new System.Windows.Forms.DataGridViewTextBoxColumn();
222
            this.Column147 = new System.Windows.Forms.DataGridViewTextBoxColumn();
223
            this.Column149 = new System.Windows.Forms.DataGridViewTextBoxColumn();
224
            this.Column150 = new System.Windows.Forms.DataGridViewTextBoxColumn();
225
            this.Column151 = new System.Windows.Forms.DataGridViewTextBoxColumn();
226
            this.Column152 = new System.Windows.Forms.DataGridViewTextBoxColumn();
227
            this.Column153 = new System.Windows.Forms.DataGridViewTextBoxColumn();
228
            this.Column154 = new System.Windows.Forms.DataGridViewTextBoxColumn();
137
            this.dgvCompany001 = new System.Windows.Forms.DataGridViewTextBoxColumn();
138
            this.dgvCompany002 = new System.Windows.Forms.DataGridViewTextBoxColumn();
139
            this.dgvCompany003 = new System.Windows.Forms.DataGridViewTextBoxColumn();
140
            this.dgvCompany004 = new System.Windows.Forms.DataGridViewTextBoxColumn();
141
            this.dgvCompany005 = new System.Windows.Forms.DataGridViewTextBoxColumn();
142
            this.dgvCompany006 = new System.Windows.Forms.DataGridViewTextBoxColumn();
143
            this.dgvCompany007 = new System.Windows.Forms.DataGridViewTextBoxColumn();
144
            this.dgvCompany008 = new System.Windows.Forms.DataGridViewTextBoxColumn();
145
            this.dgvCompany009 = new System.Windows.Forms.DataGridViewTextBoxColumn();
146
            this.dgvCompany010 = new System.Windows.Forms.DataGridViewTextBoxColumn();
147
            this.dgvCompany011 = new System.Windows.Forms.DataGridViewTextBoxColumn();
148
            this.dgvCompany012 = new System.Windows.Forms.DataGridViewTextBoxColumn();
149
            this.dgvCompany013 = new System.Windows.Forms.DataGridViewTextBoxColumn();
150
            this.dgvCompany014 = new System.Windows.Forms.DataGridViewTextBoxColumn();
151
            this.dgvCompany015 = new System.Windows.Forms.DataGridViewTextBoxColumn();
152
            this.dgvCompany016 = new System.Windows.Forms.DataGridViewTextBoxColumn();
153
            this.dgvCompany017 = new System.Windows.Forms.DataGridViewTextBoxColumn();
154
            this.dgvCompany018 = new System.Windows.Forms.DataGridViewTextBoxColumn();
155
            this.dgvCompany019 = new System.Windows.Forms.DataGridViewTextBoxColumn();
156
            this.dgvCompany020 = new System.Windows.Forms.DataGridViewTextBoxColumn();
157
            this.dgvCompany021 = new System.Windows.Forms.DataGridViewTextBoxColumn();
158
            this.dgvCompany022 = new System.Windows.Forms.DataGridViewTextBoxColumn();
159
            this.dgvCompany023 = new System.Windows.Forms.DataGridViewTextBoxColumn();
160
            this.dgvCompany024 = new System.Windows.Forms.DataGridViewTextBoxColumn();
161
            this.dgvCompany025 = new System.Windows.Forms.DataGridViewTextBoxColumn();
162
            this.dgvCompany026 = new System.Windows.Forms.DataGridViewTextBoxColumn();
163
            this.dgvCompany027 = new System.Windows.Forms.DataGridViewTextBoxColumn();
164
            this.dgvCompany028 = new System.Windows.Forms.DataGridViewTextBoxColumn();
165
            this.dgvCompany029 = new System.Windows.Forms.DataGridViewTextBoxColumn();
166
            this.dgvCompany030 = new System.Windows.Forms.DataGridViewComboBoxColumn();
167
            this.dgvCompany031 = new System.Windows.Forms.DataGridViewTextBoxColumn();
168
            this.dgvCompany032 = new System.Windows.Forms.DataGridViewTextBoxColumn();
169
            this.dgvCompany033 = new System.Windows.Forms.DataGridViewTextBoxColumn();
170
            this.dgvCompany034 = new System.Windows.Forms.DataGridViewTextBoxColumn();
171
            this.dgvCompany035 = new System.Windows.Forms.DataGridViewTextBoxColumn();
172
            this.dgvCompany036 = new System.Windows.Forms.DataGridViewTextBoxColumn();
173
            this.dgvCompany037 = new System.Windows.Forms.DataGridViewTextBoxColumn();
174
            this.dgvCompany038 = new System.Windows.Forms.DataGridViewTextBoxColumn();
175
            this.dgvCompany039 = new System.Windows.Forms.DataGridViewTextBoxColumn();
176
            this.dgvCompany040 = new System.Windows.Forms.DataGridViewTextBoxColumn();
177
            this.dgvCompany041 = new System.Windows.Forms.DataGridViewTextBoxColumn();
178
            this.dgvCompany042 = new System.Windows.Forms.DataGridViewTextBoxColumn();
179
            this.dgvCompany043 = new System.Windows.Forms.DataGridViewTextBoxColumn();
180
            this.dgvCompany044 = new System.Windows.Forms.DataGridViewTextBoxColumn();
181
            this.dgvCompany045 = new System.Windows.Forms.DataGridViewTextBoxColumn();
182
            this.dgvCompany046 = new System.Windows.Forms.DataGridViewTextBoxColumn();
183
            this.dgvCompany047 = new System.Windows.Forms.DataGridViewTextBoxColumn();
184
            this.dgvCompany048 = new System.Windows.Forms.DataGridViewTextBoxColumn();
185
            this.dgvCompany049 = new System.Windows.Forms.DataGridViewTextBoxColumn();
186
            this.dgvCompany050 = new System.Windows.Forms.DataGridViewTextBoxColumn();
187
            this.dgvCompany051 = new System.Windows.Forms.DataGridViewTextBoxColumn();
188
            this.dgvCompany052 = new System.Windows.Forms.DataGridViewTextBoxColumn();
189
            this.dgvCompany053 = new System.Windows.Forms.DataGridViewTextBoxColumn();
190
            this.dgvCompany054 = new System.Windows.Forms.DataGridViewTextBoxColumn();
191
            this.dgvCompany055 = new System.Windows.Forms.DataGridViewTextBoxColumn();
192
            this.dgvCompany056 = new System.Windows.Forms.DataGridViewTextBoxColumn();
193
            this.dgvCompany057 = new System.Windows.Forms.DataGridViewTextBoxColumn();
194
            this.dgvCompany058 = new System.Windows.Forms.DataGridViewTextBoxColumn();
195
            this.dgvCompany059 = new System.Windows.Forms.DataGridViewTextBoxColumn();
196
            this.dgvCompany060 = new System.Windows.Forms.DataGridViewTextBoxColumn();
197
            this.dgvCompany061 = new System.Windows.Forms.DataGridViewTextBoxColumn();
198
            this.dgvCompany062 = new System.Windows.Forms.DataGridViewTextBoxColumn();
199
            this.dgvCompany063 = new System.Windows.Forms.DataGridViewTextBoxColumn();
200
            this.dgvCompany064 = new System.Windows.Forms.DataGridViewTextBoxColumn();
201
            this.dgvCompany065 = new System.Windows.Forms.DataGridViewTextBoxColumn();
202
            this.dgvCompany066 = new System.Windows.Forms.DataGridViewTextBoxColumn();
203
            this.dgvCompany067 = new System.Windows.Forms.DataGridViewTextBoxColumn();
204
            this.dgvCompany068 = new System.Windows.Forms.DataGridViewTextBoxColumn();
205
            this.dgvCompany069 = new System.Windows.Forms.DataGridViewTextBoxColumn();
206
            this.dgvCompany070 = new System.Windows.Forms.DataGridViewTextBoxColumn();
207
            this.dgvCompany071 = new System.Windows.Forms.DataGridViewTextBoxColumn();
208
            this.dgvCompany072 = new System.Windows.Forms.DataGridViewTextBoxColumn();
209
            this.dgvCompany073 = new System.Windows.Forms.DataGridViewTextBoxColumn();
210
            this.dgvCompany074 = new System.Windows.Forms.DataGridViewTextBoxColumn();
211
            this.dgvCompany075 = new System.Windows.Forms.DataGridViewTextBoxColumn();
212
            this.dgvCompany076 = new System.Windows.Forms.DataGridViewTextBoxColumn();
213
            this.dgvCompany077 = new System.Windows.Forms.DataGridViewTextBoxColumn();
214
            this.dgvCompany078 = new System.Windows.Forms.DataGridViewTextBoxColumn();
215
            this.dgvCompany079 = new System.Windows.Forms.DataGridViewTextBoxColumn();
216
            this.dgvCompany080 = new System.Windows.Forms.DataGridViewTextBoxColumn();
217
            this.dgvCompany081 = new System.Windows.Forms.DataGridViewTextBoxColumn();
218
            this.dgvCompany082 = new System.Windows.Forms.DataGridViewTextBoxColumn();
219
            this.dgvCompany083 = new System.Windows.Forms.DataGridViewTextBoxColumn();
220
            this.dgvCompany084 = new System.Windows.Forms.DataGridViewTextBoxColumn();
221
            this.dgvCompany085 = new System.Windows.Forms.DataGridViewTextBoxColumn();
222
            this.dgvCompany086 = new System.Windows.Forms.DataGridViewTextBoxColumn();
223
            this.dgvCompany087 = new System.Windows.Forms.DataGridViewTextBoxColumn();
224
            this.dgvCompany088 = new System.Windows.Forms.DataGridViewTextBoxColumn();
225
            this.dgvCompany089 = new System.Windows.Forms.DataGridViewTextBoxColumn();
226
            this.dgvCompany090 = new System.Windows.Forms.DataGridViewTextBoxColumn();
227
            this.dgvCompany091 = new System.Windows.Forms.DataGridViewTextBoxColumn();
228
            this.dgvCompany092 = new System.Windows.Forms.DataGridViewTextBoxColumn();
229
            this.dgvCompany093 = new System.Windows.Forms.DataGridViewTextBoxColumn();
230
            this.dgvCompany094 = new System.Windows.Forms.DataGridViewTextBoxColumn();
231
            this.dgvCompany095 = new System.Windows.Forms.DataGridViewTextBoxColumn();
232
            this.dgvCompany096 = new System.Windows.Forms.DataGridViewTextBoxColumn();
233
            this.dgvCompany097 = new System.Windows.Forms.DataGridViewTextBoxColumn();
234
            this.dgvCompany098 = new System.Windows.Forms.DataGridViewTextBoxColumn();
235
            this.dgvCompany099 = new System.Windows.Forms.DataGridViewTextBoxColumn();
229 236
            this.dgvProject = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
230
            this.Column136 = new System.Windows.Forms.DataGridViewTextBoxColumn();
231
            this.Column134 = new System.Windows.Forms.DataGridViewTextBoxColumn();
232
            this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
233
            this.Column63 = new System.Windows.Forms.DataGridViewTextBoxColumn();
234
            this.Column35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
235
            this.Project_Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
236
            this.Column90 = new System.Windows.Forms.DataGridViewTextBoxColumn();
237
            this.Column51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
238
            this.Project_Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
239
            this.Project_Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
240
            this.Project_Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
241
            this.Project_Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
242
            this.Project_Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
243
            this.Column138 = new System.Windows.Forms.DataGridViewTextBoxColumn();
244
            this.Project_Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
245
            this.Column144 = new System.Windows.Forms.DataGridViewTextBoxColumn();
246
            this.Project_Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
247
            this.Project_Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
248
            this.Project_Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
249
            this.Project_Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
250
            this.Project_Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
251
            this.Project_Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
252
            this.Project_Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
253
            this.Project_Column15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
254
            this.Project_Column16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
255
            this.Project_Column17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
256
            this.Project_Column18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
257
            this.Project_Column19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
258
            this.Column100 = new System.Windows.Forms.DataGridViewTextBoxColumn();
259
            this.KyouryokuKin_Pro = new System.Windows.Forms.DataGridViewComboBoxColumn();
260
            this.Project_Column21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
261
            this.Project_Column22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
262
            this.Project_Column23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
263
            this.Column50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
264
            this.Project_Column24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
265
            this.Column78 = new System.Windows.Forms.DataGridViewTextBoxColumn();
266
            this.Column156 = new System.Windows.Forms.DataGridViewTextBoxColumn();
267
            this.Column52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
268
            this.Project_Column25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
269
            this.Column79 = new System.Windows.Forms.DataGridViewTextBoxColumn();
270
            this.Column113 = new System.Windows.Forms.DataGridViewTextBoxColumn();
271
            this.Column114 = new System.Windows.Forms.DataGridViewTextBoxColumn();
272
            this.Column53 = new System.Windows.Forms.DataGridViewTextBoxColumn();
273
            this.Project_Column26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
274
            this.Column81 = new System.Windows.Forms.DataGridViewTextBoxColumn();
275
            this.Column115 = new System.Windows.Forms.DataGridViewTextBoxColumn();
276
            this.Column116 = new System.Windows.Forms.DataGridViewTextBoxColumn();
277
            this.Column54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
278
            this.Project_Column27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
279
            this.Column82 = new System.Windows.Forms.DataGridViewTextBoxColumn();
280
            this.Column117 = new System.Windows.Forms.DataGridViewTextBoxColumn();
281
            this.Column118 = new System.Windows.Forms.DataGridViewTextBoxColumn();
282
            this.Column55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
283
            this.Project_Column28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
284
            this.Column83 = new System.Windows.Forms.DataGridViewTextBoxColumn();
285
            this.Column119 = new System.Windows.Forms.DataGridViewTextBoxColumn();
286
            this.Column120 = new System.Windows.Forms.DataGridViewTextBoxColumn();
287
            this.Column56 = new System.Windows.Forms.DataGridViewTextBoxColumn();
288
            this.Project_Column29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
289
            this.Column84 = new System.Windows.Forms.DataGridViewTextBoxColumn();
290
            this.Column121 = new System.Windows.Forms.DataGridViewTextBoxColumn();
291
            this.Column122 = new System.Windows.Forms.DataGridViewTextBoxColumn();
292
            this.Column57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
293
            this.Project_Column30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
294
            this.Column80 = new System.Windows.Forms.DataGridViewTextBoxColumn();
295
            this.Column123 = new System.Windows.Forms.DataGridViewTextBoxColumn();
296
            this.Column124 = new System.Windows.Forms.DataGridViewTextBoxColumn();
297
            this.Column58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
298
            this.Project_Column31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
299
            this.Column85 = new System.Windows.Forms.DataGridViewTextBoxColumn();
300
            this.Column125 = new System.Windows.Forms.DataGridViewTextBoxColumn();
301
            this.Column126 = new System.Windows.Forms.DataGridViewTextBoxColumn();
302
            this.Column59 = new System.Windows.Forms.DataGridViewTextBoxColumn();
303
            this.Project_Column32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
304
            this.Column86 = new System.Windows.Forms.DataGridViewTextBoxColumn();
305
            this.Column127 = new System.Windows.Forms.DataGridViewTextBoxColumn();
306
            this.Column128 = new System.Windows.Forms.DataGridViewTextBoxColumn();
307
            this.Column60 = new System.Windows.Forms.DataGridViewTextBoxColumn();
308
            this.Project_Column33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
309
            this.Column87 = new System.Windows.Forms.DataGridViewTextBoxColumn();
310
            this.Column129 = new System.Windows.Forms.DataGridViewTextBoxColumn();
311
            this.Column130 = new System.Windows.Forms.DataGridViewTextBoxColumn();
312
            this.Column61 = new System.Windows.Forms.DataGridViewTextBoxColumn();
313
            this.Project_Column34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
314
            this.Column88 = new System.Windows.Forms.DataGridViewTextBoxColumn();
315
            this.Column131 = new System.Windows.Forms.DataGridViewTextBoxColumn();
316
            this.Column132 = new System.Windows.Forms.DataGridViewTextBoxColumn();
317
            this.Column21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
318
            this.Column77 = new System.Windows.Forms.DataGridViewTextBoxColumn();
319
            this.Column141 = new System.Windows.Forms.DataGridViewTextBoxColumn();
320
            this.Column142 = new System.Windows.Forms.DataGridViewTextBoxColumn();
321
            this.Column146 = new System.Windows.Forms.DataGridViewTextBoxColumn();
322
            this.Column148 = new System.Windows.Forms.DataGridViewTextBoxColumn();
323
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
324
            this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
325
            this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
326
            this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
327
            this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
328
            this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
237
            this.dgvProject001 = new System.Windows.Forms.DataGridViewTextBoxColumn();
238
            this.dgvProject002 = new System.Windows.Forms.DataGridViewTextBoxColumn();
239
            this.dgvProject003 = new System.Windows.Forms.DataGridViewTextBoxColumn();
240
            this.dgvProject004 = new System.Windows.Forms.DataGridViewTextBoxColumn();
241
            this.dgvProject005 = new System.Windows.Forms.DataGridViewTextBoxColumn();
242
            this.dgvProject006 = new System.Windows.Forms.DataGridViewTextBoxColumn();
243
            this.dgvProject007 = new System.Windows.Forms.DataGridViewTextBoxColumn();
244
            this.dgvProject008 = new System.Windows.Forms.DataGridViewTextBoxColumn();
245
            this.dgvProject009 = new System.Windows.Forms.DataGridViewTextBoxColumn();
246
            this.dgvProject010 = new System.Windows.Forms.DataGridViewTextBoxColumn();
247
            this.dgvProject011 = new System.Windows.Forms.DataGridViewTextBoxColumn();
248
            this.dgvProject012 = new System.Windows.Forms.DataGridViewTextBoxColumn();
249
            this.dgvProject013 = new System.Windows.Forms.DataGridViewTextBoxColumn();
250
            this.dgvProject014 = new System.Windows.Forms.DataGridViewTextBoxColumn();
251
            this.dgvProject015 = new System.Windows.Forms.DataGridViewTextBoxColumn();
252
            this.dgvProject016 = new System.Windows.Forms.DataGridViewTextBoxColumn();
253
            this.dgvProject017 = new System.Windows.Forms.DataGridViewTextBoxColumn();
254
            this.dgvProject018 = new System.Windows.Forms.DataGridViewTextBoxColumn();
255
            this.dgvProject019 = new System.Windows.Forms.DataGridViewTextBoxColumn();
256
            this.dgvProject020 = new System.Windows.Forms.DataGridViewTextBoxColumn();
257
            this.dgvProject021 = new System.Windows.Forms.DataGridViewTextBoxColumn();
258
            this.dgvProject022 = new System.Windows.Forms.DataGridViewTextBoxColumn();
259
            this.dgvProject023 = new System.Windows.Forms.DataGridViewTextBoxColumn();
260
            this.dgvProject024 = new System.Windows.Forms.DataGridViewTextBoxColumn();
261
            this.dgvProject025 = new System.Windows.Forms.DataGridViewTextBoxColumn();
262
            this.dgvProject026 = new System.Windows.Forms.DataGridViewTextBoxColumn();
263
            this.dgvProject027 = new System.Windows.Forms.DataGridViewTextBoxColumn();
264
            this.dgvProject028 = new System.Windows.Forms.DataGridViewTextBoxColumn();
265
            this.dgvProject029 = new System.Windows.Forms.DataGridViewTextBoxColumn();
266
            this.dgvProject030 = new System.Windows.Forms.DataGridViewComboBoxColumn();
267
            this.dgvProject031 = new System.Windows.Forms.DataGridViewTextBoxColumn();
268
            this.dgvProject032 = new System.Windows.Forms.DataGridViewTextBoxColumn();
269
            this.dgvProject033 = new System.Windows.Forms.DataGridViewTextBoxColumn();
270
            this.dgvProject034 = new System.Windows.Forms.DataGridViewTextBoxColumn();
271
            this.dgvProject035 = new System.Windows.Forms.DataGridViewTextBoxColumn();
272
            this.dgvProject036 = new System.Windows.Forms.DataGridViewTextBoxColumn();
273
            this.dgvProject037 = new System.Windows.Forms.DataGridViewTextBoxColumn();
274
            this.dgvProject038 = new System.Windows.Forms.DataGridViewTextBoxColumn();
275
            this.dgvProject039 = new System.Windows.Forms.DataGridViewTextBoxColumn();
276
            this.dgvProject040 = new System.Windows.Forms.DataGridViewTextBoxColumn();
277
            this.dgvProject041 = new System.Windows.Forms.DataGridViewTextBoxColumn();
278
            this.dgvProject042 = new System.Windows.Forms.DataGridViewTextBoxColumn();
279
            this.dgvProject043 = new System.Windows.Forms.DataGridViewTextBoxColumn();
280
            this.dgvProject044 = new System.Windows.Forms.DataGridViewTextBoxColumn();
281
            this.dgvProject045 = new System.Windows.Forms.DataGridViewTextBoxColumn();
282
            this.dgvProject046 = new System.Windows.Forms.DataGridViewTextBoxColumn();
283
            this.dgvProject047 = new System.Windows.Forms.DataGridViewTextBoxColumn();
284
            this.dgvProject048 = new System.Windows.Forms.DataGridViewTextBoxColumn();
285
            this.dgvProject049 = new System.Windows.Forms.DataGridViewTextBoxColumn();
286
            this.dgvProject050 = new System.Windows.Forms.DataGridViewTextBoxColumn();
287
            this.dgvProject051 = new System.Windows.Forms.DataGridViewTextBoxColumn();
288
            this.dgvProject052 = new System.Windows.Forms.DataGridViewTextBoxColumn();
289
            this.dgvProject053 = new System.Windows.Forms.DataGridViewTextBoxColumn();
290
            this.dgvProject054 = new System.Windows.Forms.DataGridViewTextBoxColumn();
291
            this.dgvProject055 = new System.Windows.Forms.DataGridViewTextBoxColumn();
292
            this.dgvProject056 = new System.Windows.Forms.DataGridViewTextBoxColumn();
293
            this.dgvProject057 = new System.Windows.Forms.DataGridViewTextBoxColumn();
294
            this.dgvProject058 = new System.Windows.Forms.DataGridViewTextBoxColumn();
295
            this.dgvProject059 = new System.Windows.Forms.DataGridViewTextBoxColumn();
296
            this.dgvProject060 = new System.Windows.Forms.DataGridViewTextBoxColumn();
297
            this.dgvProject061 = new System.Windows.Forms.DataGridViewTextBoxColumn();
298
            this.dgvProject062 = new System.Windows.Forms.DataGridViewTextBoxColumn();
299
            this.dgvProject063 = new System.Windows.Forms.DataGridViewTextBoxColumn();
300
            this.dgvProject064 = new System.Windows.Forms.DataGridViewTextBoxColumn();
301
            this.dgvProject065 = new System.Windows.Forms.DataGridViewTextBoxColumn();
302
            this.dgvProject066 = new System.Windows.Forms.DataGridViewTextBoxColumn();
303
            this.dgvProject067 = new System.Windows.Forms.DataGridViewTextBoxColumn();
304
            this.dgvProject068 = new System.Windows.Forms.DataGridViewTextBoxColumn();
305
            this.dgvProject069 = new System.Windows.Forms.DataGridViewTextBoxColumn();
306
            this.dgvProject070 = new System.Windows.Forms.DataGridViewTextBoxColumn();
307
            this.dgvProject071 = new System.Windows.Forms.DataGridViewTextBoxColumn();
308
            this.dgvProject072 = new System.Windows.Forms.DataGridViewTextBoxColumn();
309
            this.dgvProject073 = new System.Windows.Forms.DataGridViewTextBoxColumn();
310
            this.dgvProject074 = new System.Windows.Forms.DataGridViewTextBoxColumn();
311
            this.dgvProject075 = new System.Windows.Forms.DataGridViewTextBoxColumn();
312
            this.dgvProject076 = new System.Windows.Forms.DataGridViewTextBoxColumn();
313
            this.dgvProject077 = new System.Windows.Forms.DataGridViewTextBoxColumn();
314
            this.dgvProject078 = new System.Windows.Forms.DataGridViewTextBoxColumn();
315
            this.dgvProject079 = new System.Windows.Forms.DataGridViewTextBoxColumn();
316
            this.dgvProject080 = new System.Windows.Forms.DataGridViewTextBoxColumn();
317
            this.dgvProject081 = new System.Windows.Forms.DataGridViewTextBoxColumn();
318
            this.dgvProject082 = new System.Windows.Forms.DataGridViewTextBoxColumn();
319
            this.dgvProject083 = new System.Windows.Forms.DataGridViewTextBoxColumn();
320
            this.dgvProject084 = new System.Windows.Forms.DataGridViewTextBoxColumn();
321
            this.dgvProject085 = new System.Windows.Forms.DataGridViewTextBoxColumn();
322
            this.dgvProject086 = new System.Windows.Forms.DataGridViewTextBoxColumn();
323
            this.dgvProject087 = new System.Windows.Forms.DataGridViewTextBoxColumn();
324
            this.dgvProject088 = new System.Windows.Forms.DataGridViewTextBoxColumn();
325
            this.dgvProject089 = new System.Windows.Forms.DataGridViewTextBoxColumn();
326
            this.dgvProject090 = new System.Windows.Forms.DataGridViewTextBoxColumn();
327
            this.dgvProject091 = new System.Windows.Forms.DataGridViewTextBoxColumn();
328
            this.dgvProject092 = new System.Windows.Forms.DataGridViewTextBoxColumn();
329
            this.dgvProject093 = new System.Windows.Forms.DataGridViewTextBoxColumn();
330
            this.dgvProject094 = new System.Windows.Forms.DataGridViewTextBoxColumn();
331
            this.dgvProject095 = new System.Windows.Forms.DataGridViewTextBoxColumn();
332
            this.dgvProject096 = new System.Windows.Forms.DataGridViewTextBoxColumn();
333
            this.dgvProject097 = new System.Windows.Forms.DataGridViewTextBoxColumn();
334
            this.dgvProject098 = new System.Windows.Forms.DataGridViewTextBoxColumn();
335
            this.dgvProject099 = new System.Windows.Forms.DataGridViewTextBoxColumn();
329 336
            this.panel1.SuspendLayout();
330 337
            this.groupBoxEx1.SuspendLayout();
331 338
            this.pnlApproval.SuspendLayout();
......
899 906
            this.dgvCompany.ColumnHeadersHeight = 45;
900 907
            this.dgvCompany.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
901 908
            this.dgvCompany.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
902
            this.Column135,
903
            this.Column133,
904
            this.Column71,
905
            this.Column62,
906
            this.Column23,
907
            this.Column33,
908
            this.Column89,
909
            this.Column34,
910
            this.Column99,
911
            this.Column1,
912
            this.Column24,
913
            this.Column137,
914
            this.Column2,
915
            this.Column26,
916
            this.Column3,
917
            this.Column143,
918
            this.Column4,
919
            this.Column9,
920
            this.Column10,
921
            this.Column11,
922
            this.Column5,
923
            this.Column6,
924
            this.Column7,
925
            this.Column8,
926
            this.Column40,
927
            this.Column41,
928
            this.Column43,
929
            this.Column12,
930
            this.Column13,
931
            this.KyouryokuKin_Com,
932
            this.Column14,
933
            this.Column15,
934
            this.Column16,
935
            this.Column36,
936
            this.Column17,
937
            this.Column66,
938
            this.Column155,
939
            this.Column37,
940
            this.Column18,
941
            this.Column65,
942
            this.Column91,
943
            this.Column92,
944
            this.Column38,
945
            this.Column19,
946
            this.Column67,
947
            this.Column93,
948
            this.Column94,
949
            this.Column39,
950
            this.Column22,
951
            this.Column68,
952
            this.Column95,
953
            this.Column96,
954
            this.Column42,
955
            this.Column25,
956
            this.Column69,
957
            this.Column97,
958
            this.Column98,
959
            this.Column44,
960
            this.Column27,
961
            this.Column70,
962
            this.Column101,
963
            this.Column102,
964
            this.Column45,
965
            this.Column28,
966
            this.Column72,
967
            this.Column103,
968
            this.Column104,
969
            this.Column46,
970
            this.Column29,
971
            this.Column73,
972
            this.Column105,
973
            this.Column106,
974
            this.Column47,
975
            this.Column30,
976
            this.Column74,
977
            this.Column107,
978
            this.Column108,
979
            this.Column48,
980
            this.Column31,
981
            this.Column75,
982
            this.Column109,
983
            this.Column110,
984
            this.Column49,
985
            this.Column32,
986
            this.Column76,
987
            this.Column111,
988
            this.Column112,
989
            this.Column20,
990
            this.Column64,
991
            this.Column139,
992
            this.Column140,
993
            this.Column145,
994
            this.Column147,
995
            this.Column149,
996
            this.Column150,
997
            this.Column151,
998
            this.Column152,
999
            this.Column153,
1000
            this.Column154});
909
            this.dgvCompany001,
910
            this.dgvCompany002,
911
            this.dgvCompany003,
912
            this.dgvCompany004,
913
            this.dgvCompany005,
914
            this.dgvCompany006,
915
            this.dgvCompany007,
916
            this.dgvCompany008,
917
            this.dgvCompany009,
918
            this.dgvCompany010,
919
            this.dgvCompany011,
920
            this.dgvCompany012,
921
            this.dgvCompany013,
922
            this.dgvCompany014,
923
            this.dgvCompany015,
924
            this.dgvCompany016,
925
            this.dgvCompany017,
926
            this.dgvCompany018,
927
            this.dgvCompany019,
928
            this.dgvCompany020,
929
            this.dgvCompany021,
930
            this.dgvCompany022,
931
            this.dgvCompany023,
932
            this.dgvCompany024,
933
            this.dgvCompany025,
934
            this.dgvCompany026,
935
            this.dgvCompany027,
936
            this.dgvCompany028,
937
            this.dgvCompany029,
938
            this.dgvCompany030,
939
            this.dgvCompany031,
940
            this.dgvCompany032,
941
            this.dgvCompany033,
942
            this.dgvCompany034,
943
            this.dgvCompany035,
944
            this.dgvCompany036,
945
            this.dgvCompany037,
946
            this.dgvCompany038,
947
            this.dgvCompany039,
948
            this.dgvCompany040,
949
            this.dgvCompany041,
950
            this.dgvCompany042,
951
            this.dgvCompany043,
952
            this.dgvCompany044,
953
            this.dgvCompany045,
954
            this.dgvCompany046,
955
            this.dgvCompany047,
956
            this.dgvCompany048,
957
            this.dgvCompany049,
958
            this.dgvCompany050,
959
            this.dgvCompany051,
960
            this.dgvCompany052,
961
            this.dgvCompany053,
962
            this.dgvCompany054,
963
            this.dgvCompany055,
964
            this.dgvCompany056,
965
            this.dgvCompany057,
966
            this.dgvCompany058,
967
            this.dgvCompany059,
968
            this.dgvCompany060,
969
            this.dgvCompany061,
970
            this.dgvCompany062,
971
            this.dgvCompany063,
972
            this.dgvCompany064,
973
            this.dgvCompany065,
974
            this.dgvCompany066,
975
            this.dgvCompany067,
976
            this.dgvCompany068,
977
            this.dgvCompany069,
978
            this.dgvCompany070,
979
            this.dgvCompany071,
980
            this.dgvCompany072,
981
            this.dgvCompany073,
982
            this.dgvCompany074,
983
            this.dgvCompany075,
984
            this.dgvCompany076,
985
            this.dgvCompany077,
986
            this.dgvCompany078,
987
            this.dgvCompany079,
988
            this.dgvCompany080,
989
            this.dgvCompany081,
990
            this.dgvCompany082,
991
            this.dgvCompany083,
992
            this.dgvCompany084,
993
            this.dgvCompany085,
994
            this.dgvCompany086,
995
            this.dgvCompany087,
996
            this.dgvCompany088,
997
            this.dgvCompany089,
998
            this.dgvCompany090,
999
            this.dgvCompany091,
1000
            this.dgvCompany092,
1001
            this.dgvCompany093,
1002
            this.dgvCompany094,
1003
            this.dgvCompany095,
1004
            this.dgvCompany096,
1005
            this.dgvCompany097,
1006
            this.dgvCompany098,
1007
            this.dgvCompany099});
1001 1008
            dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1002 1009
            dataGridViewCellStyle27.BackColor = System.Drawing.SystemColors.Window;
1003 1010
            dataGridViewCellStyle27.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
......
1027 1034
            this.dgvCompany.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellValueChanged);
1028 1035
            this.dgvCompany.CurrentCellDirtyStateChanged += new System.EventHandler(this.DataGridView_CurrentCellDirtyStateChanged);
1029 1036
            // 
1030
            // Column135
1037
            // dgvCompany001
1031 1038
            // 
1032
            this.Column135.HeaderText = "CompanyDispOrder";
1033
            this.Column135.Name = "Column135";
1034
            this.Column135.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1035
            this.Column135.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1039
            this.dgvCompany001.HeaderText = "CompanyDispOrder";
1040
            this.dgvCompany001.Name = "dgvCompany001";
1041
            this.dgvCompany001.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1042
            this.dgvCompany001.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1036 1043
            // 
1037
            // Column133
1044
            // dgvCompany002
1038 1045
            // 
1039
            this.Column133.HeaderText = "ApprovalEndFlg";
1040
            this.Column133.Name = "Column133";
1041
            this.Column133.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1042
            this.Column133.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1046
            this.dgvCompany002.HeaderText = "ApprovalEndFlg";
1047
            this.dgvCompany002.Name = "dgvCompany002";
1048
            this.dgvCompany002.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1049
            this.dgvCompany002.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1043 1050
            // 
1044
            // Column71
1051
            // dgvCompany003
1045 1052
            // 
1046
            this.Column71.HeaderText = "業者請求明細更新日時";
1047
            this.Column71.Name = "Column71";
1048
            this.Column71.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1049
            this.Column71.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1053
            this.dgvCompany003.HeaderText = "業者請求明細更新日時";
1054
            this.dgvCompany003.Name = "dgvCompany003";
1055
            this.dgvCompany003.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1056
            this.dgvCompany003.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1050 1057
            // 
1051
            // Column62
1058
            // dgvCompany004
1052 1059
            // 
1053
            this.Column62.HeaderText = "RowState";
1054
            this.Column62.Name = "Column62";
1055
            this.Column62.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1056
            this.Column62.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1060
            this.dgvCompany004.HeaderText = "RowState";
1061
            this.dgvCompany004.Name = "dgvCompany004";
1062
            this.dgvCompany004.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1063
            this.dgvCompany004.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1057 1064
            // 
1058
            // Column23
1065
            // dgvCompany005
1059 1066
            // 
1060
            this.Column23.HeaderText = "可視";
1061
            this.Column23.Name = "Column23";
1062
            this.Column23.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1063
            this.Column23.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1067
            this.dgvCompany005.HeaderText = "可視";
1068
            this.dgvCompany005.Name = "dgvCompany005";
1069
            this.dgvCompany005.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1070
            this.dgvCompany005.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1064 1071
            // 
1065
            // Column33
1072
            // dgvCompany006
1066 1073
            // 
1067
            this.Column33.HeaderText = "行タイプ";
1068
            this.Column33.Name = "Column33";
1069
            this.Column33.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1070
            this.Column33.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1074
            this.dgvCompany006.HeaderText = "行タイプ";
1075
            this.dgvCompany006.Name = "dgvCompany006";
1076
            this.dgvCompany006.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1077
            this.dgvCompany006.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1071 1078
            // 
1072
            // Column89
1079
            // dgvCompany007
1073 1080
            // 
1074
            this.Column89.HeaderText = "GoukeiSeqNo";
1075
            this.Column89.Name = "Column89";
1076
            this.Column89.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1077
            this.Column89.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1081
            this.dgvCompany007.HeaderText = "GoukeiSeqNo";
1082
            this.dgvCompany007.Name = "dgvCompany007";
1083
            this.dgvCompany007.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1084
            this.dgvCompany007.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1078 1085
            // 
1079
            // Column34
1086
            // dgvCompany008
1080 1087
            // 
1081
            this.Column34.HeaderText = "SeqNo";
1082
            this.Column34.Name = "Column34";
1083
            this.Column34.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1084
            this.Column34.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1088
            this.dgvCompany008.HeaderText = "SeqNo";
1089
            this.dgvCompany008.Name = "dgvCompany008";
1090
            this.dgvCompany008.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1091
            this.dgvCompany008.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1085 1092
            // 
1086
            // Column99
1093
            // dgvCompany009
1087 1094
            // 
1088
            this.Column99.HeaderText = "LineCount";
1089
            this.Column99.Name = "Column99";
1090
            this.Column99.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1091
            this.Column99.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1095
            this.dgvCompany009.HeaderText = "LineCount";
1096
            this.dgvCompany009.Name = "dgvCompany009";
1097
            this.dgvCompany009.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1098
            this.dgvCompany009.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1092 1099
            // 
1093
            // Column1
1100
            // dgvCompany010
1094 1101
            // 
1095 1102
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1096
            this.Column1.DefaultCellStyle = dataGridViewCellStyle2;
1097
            this.Column1.FillWeight = 110F;
1098
            this.Column1.HeaderText = "№";
1099
            this.Column1.Name = "Column1";
1100
            this.Column1.ReadOnly = true;
1101
            this.Column1.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1102
            this.Column1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1103
            this.Column1.Width = 35;
1103
            this.dgvCompany010.DefaultCellStyle = dataGridViewCellStyle2;
1104
            this.dgvCompany010.FillWeight = 110F;
1105
            this.dgvCompany010.HeaderText = "№";
1106
            this.dgvCompany010.Name = "dgvCompany010";
1107
            this.dgvCompany010.ReadOnly = true;
1108
            this.dgvCompany010.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1109
            this.dgvCompany010.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1110
            this.dgvCompany010.Width = 35;
1104 1111
            // 
1105
            // Column24
1112
            // dgvCompany011
1106 1113
            // 
1107
            this.Column24.HeaderText = "業者コード";
1108
            this.Column24.Name = "Column24";
1109
            this.Column24.ReadOnly = true;
1110
            this.Column24.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1111
            this.Column24.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1114
            this.dgvCompany011.HeaderText = "業者コード";
1115
            this.dgvCompany011.Name = "dgvCompany011";
1116
            this.dgvCompany011.ReadOnly = true;
1117
            this.dgvCompany011.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1118
            this.dgvCompany011.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1112 1119
            // 
1113
            // Column137
1120
            // dgvCompany012
1114 1121
            // 
1115
            this.Column137.HeaderText = "協力会社\r\nコード";
1116
            this.Column137.Name = "Column137";
1117
            this.Column137.ReadOnly = true;
1118
            this.Column137.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1119
            this.Column137.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1122
            this.dgvCompany012.HeaderText = "協力会社\r\nコード";
1123
            this.dgvCompany012.Name = "dgvCompany012";
1124
            this.dgvCompany012.ReadOnly = true;
1125
            this.dgvCompany012.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1126
            this.dgvCompany012.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1120 1127
            // 
1121
            // Column2
1128
            // dgvCompany013
1122 1129
            // 
1123
            this.Column2.HeaderText = "業者名";
1124
            this.Column2.Name = "Column2";
1125
            this.Column2.ReadOnly = true;
1126
            this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1127
            this.Column2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1128
            this.Column2.Width = 140;
1130
            this.dgvCompany013.HeaderText = "業者名";
1131
            this.dgvCompany013.Name = "dgvCompany013";
1132
            this.dgvCompany013.ReadOnly = true;
1133
            this.dgvCompany013.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1134
            this.dgvCompany013.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1135
            this.dgvCompany013.Width = 140;
1129 1136
            // 
1130
            // Column26
1137
            // dgvCompany014
1131 1138
            // 
1132
            this.Column26.HeaderText = "現場コード";
1133
            this.Column26.Name = "Column26";
1134
            this.Column26.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1135
            this.Column26.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1139
            this.dgvCompany014.HeaderText = "現場コード";
1140
            this.dgvCompany014.Name = "dgvCompany014";
1141
            this.dgvCompany014.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1142
            this.dgvCompany014.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1136 1143
            // 
1137
            // Column3
1144
            // dgvCompany015
1138 1145
            // 
1139
            this.Column3.HeaderText = "現場名";
1140
            this.Column3.Name = "Column3";
1141
            this.Column3.ReadOnly = true;
1142
            this.Column3.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1143
            this.Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1144
            this.Column3.Width = 180;
1146
            this.dgvCompany015.HeaderText = "現場名";
1147
            this.dgvCompany015.Name = "dgvCompany015";
1148
            this.dgvCompany015.ReadOnly = true;
1149
            this.dgvCompany015.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1150
            this.dgvCompany015.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1151
            this.dgvCompany015.Width = 180;
1145 1152
            // 
1146
            // Column143
1153
            // dgvCompany016
1147 1154
            // 
1148
            this.Column143.HeaderText = "請求明細";
1149
            this.Column143.Name = "Column143";
1150
            this.Column143.ReadOnly = true;
1151
            this.Column143.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1152
            this.Column143.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1153
            this.Column143.Width = 180;
1155
            this.dgvCompany016.HeaderText = "請求明細";
1156
            this.dgvCompany016.Name = "dgvCompany016";
1157
            this.dgvCompany016.ReadOnly = true;
1158
            this.dgvCompany016.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1159
            this.dgvCompany016.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1160
            this.dgvCompany016.Width = 180;
1154 1161
            // 
1155
            // Column4
1162
            // dgvCompany017
1156 1163
            // 
1157 1164
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1158
            this.Column4.DefaultCellStyle = dataGridViewCellStyle3;
1159
            this.Column4.HeaderText = "請求書\r\n金額";
1160
            this.Column4.Name = "Column4";
1161
            this.Column4.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1162
            this.Column4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1163
            this.Column4.Width = 125;
1165
            this.dgvCompany017.DefaultCellStyle = dataGridViewCellStyle3;
1166
            this.dgvCompany017.HeaderText = "請求書\r\n金額";
1167
            this.dgvCompany017.Name = "dgvCompany017";
1168
            this.dgvCompany017.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1169
            this.dgvCompany017.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1170
            this.dgvCompany017.Width = 125;
1164 1171
            // 
1165
            // Column9
1172
            // dgvCompany018
1166 1173
            // 
1167 1174
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1168
            this.Column9.DefaultCellStyle = dataGridViewCellStyle4;
1169
            this.Column9.HeaderText = "高速代駐車代";
1170
            this.Column9.Name = "Column9";
1171
            this.Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1172
            this.Column9.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1173
            this.Column9.Width = 80;
1175
            this.dgvCompany018.DefaultCellStyle = dataGridViewCellStyle4;
1176
            this.dgvCompany018.HeaderText = "高速代駐車代";
1177
            this.dgvCompany018.Name = "dgvCompany018";
1178
            this.dgvCompany018.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1179
            this.dgvCompany018.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1180
            this.dgvCompany018.Width = 80;
1174 1181
            // 
1175
            // Column10
1182
            // dgvCompany019
1176 1183
            // 
1177 1184
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1178
            this.Column10.DefaultCellStyle = dataGridViewCellStyle5;
1179
            this.Column10.HeaderText = "金物代";
1180
            this.Column10.Name = "Column10";
1181
            this.Column10.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1182
            this.Column10.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1183
            this.Column10.Width = 80;
1185
            this.dgvCompany019.DefaultCellStyle = dataGridViewCellStyle5;
1186
            this.dgvCompany019.HeaderText = "金物代";
1187
            this.dgvCompany019.Name = "dgvCompany019";
1188
            this.dgvCompany019.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1189
            this.dgvCompany019.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1190
            this.dgvCompany019.Width = 80;
1184 1191
            // 
1185
            // Column11
1192
            // dgvCompany020
1186 1193
            // 
1187 1194
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1188
            this.Column11.DefaultCellStyle = dataGridViewCellStyle6;
1189
            this.Column11.HeaderText = "産廃税";
1190
            this.Column11.Name = "Column11";
1191
            this.Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1192
            this.Column11.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1193
            this.Column11.Width = 80;
1195
            this.dgvCompany020.DefaultCellStyle = dataGridViewCellStyle6;
1196
            this.dgvCompany020.HeaderText = "産廃税";
1197
            this.dgvCompany020.Name = "dgvCompany020";
1198
            this.dgvCompany020.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1199
            this.dgvCompany020.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1200
            this.dgvCompany020.Width = 80;
1194 1201
            // 
1195
            // Column5
1202
            // dgvCompany021
1196 1203
            // 
1197 1204
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1198
            this.Column5.DefaultCellStyle = dataGridViewCellStyle7;
1199
            this.Column5.HeaderText = "請求\r\n金額";
1200
            this.Column5.Name = "Column5";
1201
            this.Column5.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1202
            this.Column5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1203
            this.Column5.Width = 110;
1205
            this.dgvCompany021.DefaultCellStyle = dataGridViewCellStyle7;
1206
            this.dgvCompany021.HeaderText = "請求\r\n金額";
1207
            this.dgvCompany021.Name = "dgvCompany021";
1208
            this.dgvCompany021.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1209
            this.dgvCompany021.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1210
            this.dgvCompany021.Width = 110;
1204 1211
            // 
1205
            // Column6
1212
            // dgvCompany022
1206 1213
            // 
1207 1214
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1208
            this.Column6.DefaultCellStyle = dataGridViewCellStyle8;
1209
            this.Column6.HeaderText = "値引\r\n金額";
1210
            this.Column6.Name = "Column6";
1211
            this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1212
            this.Column6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1213
            this.Column6.Width = 110;
1215
            this.dgvCompany022.DefaultCellStyle = dataGridViewCellStyle8;
1216
            this.dgvCompany022.HeaderText = "値引\r\n金額";
1217
            this.dgvCompany022.Name = "dgvCompany022";
1218
            this.dgvCompany022.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1219
            this.dgvCompany022.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1220
            this.dgvCompany022.Width = 110;
1214 1221
            // 
1215
            // Column7
1222
            // dgvCompany023
1216 1223
            // 
1217 1224
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1218
            this.Column7.DefaultCellStyle = dataGridViewCellStyle9;
1219
            this.Column7.HeaderText = "相殺\r\n金額";
1220
            this.Column7.Name = "Column7";
1221
            this.Column7.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1222
            this.Column7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1223
            this.Column7.Width = 110;
1225
            this.dgvCompany023.DefaultCellStyle = dataGridViewCellStyle9;
1226
            this.dgvCompany023.HeaderText = "相殺\r\n金額";
1227
            this.dgvCompany023.Name = "dgvCompany023";
1228
            this.dgvCompany023.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1229
            this.dgvCompany023.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1230
            this.dgvCompany023.Width = 110;
1224 1231
            // 
1225
            // Column8
1232
            // dgvCompany024
1226 1233
            // 
1227 1234
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1228
            this.Column8.DefaultCellStyle = dataGridViewCellStyle10;
1229
            this.Column8.HeaderText = "次回\r\n繰越";
1230
            this.Column8.Name = "Column8";
1231
            this.Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1232
            this.Column8.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1233
            this.Column8.Width = 110;
1235
            this.dgvCompany024.DefaultCellStyle = dataGridViewCellStyle10;
1236
            this.dgvCompany024.HeaderText = "次回\r\n繰越";
1237
            this.dgvCompany024.Name = "dgvCompany024";
1238
            this.dgvCompany024.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1239
            this.dgvCompany024.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1240
            this.dgvCompany024.Width = 110;
1234 1241
            // 
1235
            // Column40
1242
            // dgvCompany025
1236 1243
            // 
1237 1244
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1238
            this.Column40.DefaultCellStyle = dataGridViewCellStyle11;
1239
            this.Column40.HeaderText = "高速代駐車代";
1240
            this.Column40.Name = "Column40";
1241
            this.Column40.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1242
            this.Column40.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1243
            this.Column40.Width = 80;
1245
            this.dgvCompany025.DefaultCellStyle = dataGridViewCellStyle11;
1246
            this.dgvCompany025.HeaderText = "高速代駐車代";
1247
            this.dgvCompany025.Name = "dgvCompany025";
1248
            this.dgvCompany025.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1249
            this.dgvCompany025.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1250
            this.dgvCompany025.Width = 80;
1244 1251
            // 
1245
            // Column41
1252
            // dgvCompany026
1246 1253
            // 
1247 1254
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1248
            this.Column41.DefaultCellStyle = dataGridViewCellStyle12;
1249
            this.Column41.HeaderText = "金物代";
1250
            this.Column41.Name = "Column41";
1251
            this.Column41.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1252
            this.Column41.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1253
            this.Column41.Width = 80;
1255
            this.dgvCompany026.DefaultCellStyle = dataGridViewCellStyle12;
1256
            this.dgvCompany026.HeaderText = "金物代";
1257
            this.dgvCompany026.Name = "dgvCompany026";
1258
            this.dgvCompany026.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1259
            this.dgvCompany026.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1260
            this.dgvCompany026.Width = 80;
1254 1261
            // 
1255
            // Column43
1262
            // dgvCompany027
1256 1263
            // 
1257 1264
            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1258
            this.Column43.DefaultCellStyle = dataGridViewCellStyle13;
1259
            this.Column43.HeaderText = "産廃税";
1260
            this.Column43.Name = "Column43";
1261
            this.Column43.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1262
            this.Column43.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1263
            this.Column43.Width = 80;
1265
            this.dgvCompany027.DefaultCellStyle = dataGridViewCellStyle13;
1266
            this.dgvCompany027.HeaderText = "産廃税";
1267
            this.dgvCompany027.Name = "dgvCompany027";
1268
            this.dgvCompany027.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1269
            this.dgvCompany027.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1270
            this.dgvCompany027.Width = 80;
1264 1271
            // 
1265
            // Column12
1272
            // dgvCompany028
1266 1273
            // 
1267 1274
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1268
            this.Column12.DefaultCellStyle = dataGridViewCellStyle14;
1269
            this.Column12.HeaderText = "協力金";
1270
            this.Column12.Name = "Column12";
1271
            this.Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1272
            this.Column12.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1273
            this.Column12.Width = 80;
1275
            this.dgvCompany028.DefaultCellStyle = dataGridViewCellStyle14;
1276
            this.dgvCompany028.HeaderText = "協力金";
1277
            this.dgvCompany028.Name = "dgvCompany028";
1278
            this.dgvCompany028.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1279
            this.dgvCompany028.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1280
            this.dgvCompany028.Width = 80;
1274 1281
            // 
1275
            // Column13
1282
            // dgvCompany029
1276 1283
            // 
1277
            this.Column13.HeaderText = "協力金率";
1278
            this.Column13.Name = "Column13";
1279
            this.Column13.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1280
            this.Column13.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1284
            this.dgvCompany029.HeaderText = "協力金率";
1285
            this.dgvCompany029.Name = "dgvCompany029";
1286
            this.dgvCompany029.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1287
            this.dgvCompany029.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1281 1288
            // 
1282
            // KyouryokuKin_Com
1289
            // dgvCompany030
1283 1290
            // 
1284 1291
            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1285 1292
            dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
1286 1293
            dataGridViewCellStyle15.ForeColor = System.Drawing.Color.Black;
1287
            this.KyouryokuKin_Com.DefaultCellStyle = dataGridViewCellStyle15;
1288
            this.KyouryokuKin_Com.HeaderText = "協力金\r\n有無";
1289
            this.KyouryokuKin_Com.MaxDropDownItems = 3;
1290
            this.KyouryokuKin_Com.Name = "KyouryokuKin_Com";
1291
            this.KyouryokuKin_Com.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1294
            this.dgvCompany030.DefaultCellStyle = dataGridViewCellStyle15;
1295
            this.dgvCompany030.HeaderText = "協力金\r\n有無";
1296
            this.dgvCompany030.MaxDropDownItems = 3;
1297
            this.dgvCompany030.Name = "dgvCompany030";
1298
            this.dgvCompany030.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1292 1299
            // 
1293
            // Column14
1300
            // dgvCompany031
1294 1301
            // 
1295 1302
            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1296
            this.Column14.DefaultCellStyle = dataGridViewCellStyle16;
1297
            this.Column14.HeaderText = "注文書\r\n送付";
1298
            this.Column14.Name = "Column14";
1299
            this.Column14.ReadOnly = true;
1300
            this.Column14.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1301
            this.Column14.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1303
            this.dgvCompany031.DefaultCellStyle = dataGridViewCellStyle16;
1304
            this.dgvCompany031.HeaderText = "注文書\r\n送付";
1305
            this.dgvCompany031.Name = "dgvCompany031";
1306
            this.dgvCompany031.ReadOnly = true;
1307
            this.dgvCompany031.Resizable = System.Windows.Forms.DataGridViewTriState.False;
1308
            this.dgvCompany031.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
1302 1309
            // 
1303
            // Column15
1310
            // dgvCompany032
1304 1311
            // 
1305 1312
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1306
            this.Column15.DefaultCellStyle = dataGridViewCellStyle17;
1307
            this.Column15.HeaderText = "注文書\r\n到着";
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

他の形式にエクスポート: Unified diff