プロジェクト

全般

プロフィール

リビジョン 250

堀内7年以上前に追加

請求まとめ、担当者承認改修
工事予算書入力、自社施工の協力会社削除可能に変更
売上確認集計単位変更

差分を表示:

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

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
branches/src/ProcessManagement/ProcessManagement/Common/Process/ClsApprovalPermission.cs
233 233
            {
234 234
                bool bPetition = false;
235 235
                // 申請データ取得
236
                string strSQL = ApprDB.CreatePrimarykeyString(PersonCode, ApprovalCode, ApprovalDate, OrderNo);
236
                StringBuilder strSQL = new StringBuilder();
237
                strSQL.Append(ApprDB.CreatePrimarykeyString(PersonCode, ApprovalCode, ApprovalDate, OrderNo));
237 238
                List<PersonApproval> PetitionList = new List<PersonApproval>();
238
                if (!ApprDB.SelectAction(strSQL, ref PetitionList)) return bPetition;
239
                if (!ApprDB.SelectAction(strSQL.ToString(), ref PetitionList)) return bPetition;
239 240
                // 申請データが無い場合
240 241
                if (PetitionList.Count != 0) bPetition = true;
241 242

  
......
251 252
                ApprDB.close(); ApprDB = null;
252 253
            }
253 254
        }
255
        public static bool CheckPersonPetition2(int PersonCode, int ApprovalCode, DateTime ApprovalDate, int OrderNo)
256
        {
257
            IOPersonApproval ApprDB = new IOPersonApproval();
258
            try
259
            {
260
                bool bPetition = false;
261
                // 申請データ取得
262
                StringBuilder strSQL = new StringBuilder();
263
                strSQL.AppendFormat(" Where PersonCode = {0}", PersonCode.ToString());
264
                strSQL.AppendFormat(" And ApprovalCode = {0}", ApprovalCode.ToString());
265
                strSQL.AppendFormat(" And DATE(EntryDate) = DATE(STR_TO_DATE('{0}','%Y/%m/%d'))", ApprovalDate.ToShortDateString());
266
                strSQL.AppendFormat(" And OrderNo = {0}", OrderNo.ToString());
267
                List<PersonApproval> PetitionList = new List<PersonApproval>();
268
                if (!ApprDB.SelectAction(strSQL.ToString(), ref PetitionList)) return bPetition;
269
                // 申請データが無い場合
270
                if (PetitionList.Count != 0) bPetition = true;
271

  
272
                return bPetition;
273
            }
274
            catch (Exception ex)
275
            {
276
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
277
                return false;
278
            }
279
            finally
280
            {
281
                ApprDB.close(); ApprDB = null;
282
            }
283
        }
254 284
        #endregion
255 285

  
256 286
        #region 最終承認確認(工事承認)
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOPersonApproval.cs
452 452
            {
453 453
                strWork = string.Format(" Where {0}PersonCode = {1}", APara, PersonCode.ToString());
454 454
                strWork += string.Format(" And {0}ApprovalCode = {1}", APara, ApprovalCode.ToString());
455
                strWork += string.Format(" And {0}OrderDate = STR_TO_DATE('{1}','%Y/%m/%d')", APara, OrderDate.ToShortDateString());
455
                strWork += string.Format(" And DATE({0}OrderDate) = DATE(STR_TO_DATE('{1}','%Y/%m/%d'))", APara, OrderDate.ToShortDateString());
456 456
                if (OrderNo != 0)
457 457
                    strWork += string.Format(" And {0}OrderNo = {1}", APara, OrderNo.ToString());
458 458
                if (SeqNo != 0)
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalPerson/FrmApprovalPersonAuxiliary.cs
1045 1045
            {
1046 1046
                PayAppDB.connect(); PayAppDB.beginTran();
1047 1047

  
1048
                ArrayList arData = null;
1049
                if (m_ArrayParam.Count > 0)
1050
                {   // 請求まとめ画面よりの起動はパラメータセット
1051
                    arData = m_ArrayParam[0];
1052
                }
1053
                else
1054
                {   // 承認時はメニューの起動はデータを作る
1055
                    arData = new ArrayList();
1056
                    SearchPayAppInfo(ref arData);
1057
                }
1058

  
1048 1059
                bool bSuccess = true;
1049
                ArrayList arData = m_ArrayParam[0];
1050 1060
                // 手間・業者支払承認情報取得
1051 1061
                for (int i = 0; i < arData.Count; i++)
1052 1062
                {
......
1057 1067
                    // 支払承認情報データ検索
1058 1068
                    strSQL.Append(PayAppDB.CreatePrimarykeyString(PaIWork.CompanyCode, PaIWork.TargetDate, PaIWork.SeqNo, PaIWork.LineCount, PaIWork.ApprovalNo));
1059 1069
                    List<PaymentApprovalInfo> PayAppList = new List<PaymentApprovalInfo>();
1060
                    if (!PayAppDB.SelectAction(strSQL.ToString(), ref PayAppList)) return false;
1070
                    if (!PayAppDB.SelectAction(strSQL.ToString(), ref PayAppList, false)) return false;
1061 1071
                    bool bExist = true;
1062 1072
                    if (PayAppList.Count == 0) bExist = false;
1063 1073

  
1064 1074
                    if (bExist)
1065 1075
                    {   // データがあれば承認日付を変更する
1066
                        strSQL.Clear();
1067 1076
                        PayAppList[0].ApprovalDate = DateTime.Now.Date;
1068 1077
                        if (!PayAppDB.UpdateAction(strSQL.ToString(), PayAppList[0], false))
1069 1078
                        {
......
1129 1138
            }
1130 1139
        }
1131 1140
        #endregion
1141

  
1142
        #region 起動パラメタが無い場合に支払承認情報データパラメタを作成する
1143
        /// <summary>
1144
        /// 起動パラメタが無い場合に支払承認情報データパラメタを作成する
1145
        /// </summary>
1146
        /// <returns></returns>
1147
        private void SearchPayAppInfo(ref ArrayList ArrList)
1148
        {
1149
            IOPaymentApprovalInfo InfoDB = new IOPaymentApprovalInfo();
1150
            try
1151
            {
1152
                StringBuilder strSQL = new StringBuilder();
1153
                strSQL.Append("Select");
1154
                strSQL.Append(" B.COMPANYCODE");
1155
                strSQL.Append(", B.TARGETDATE");
1156
                strSQL.Append(", B.SEQNO");
1157
                strSQL.Append(", B.LINECOUNT");
1158
                strSQL.Append(", B.APPROVALNO");
1159
                strSQL.Append(", B.APPROVALPERSON");
1160
                strSQL.Append(", B.APPROVALPERSONNAME");
1161
                strSQL.Append(", B.APPROVALAUTHORITY");
1162
                strSQL.Append(", DATE_FORMAT(B.APPROVALDATE, '%Y/%m/%d')");
1163
                strSQL.Append(" From personapproval As C");
1164
                strSQL.Append(", paymentdatadetail As A");
1165
                strSQL.Append(" LEFT JOIN paymentapprovalinfo As B");
1166
                strSQL.Append(" ON B.COMPANYCODE = A.COMPANYCODE");
1167
                strSQL.Append(" And B.TARGETDATE = A.TARGETDATE");
1168
                strSQL.Append(" And B.SEQNO = A.SEQNO");
1169
                strSQL.Append(" And B.LINECOUNT = A.LINECOUNT");
1170
                strSQL.AppendFormat(" And B.APPROVALPERSON = {0}", CommonMotions.LoginUserData.PersonCode);
1171
                strSQL.Append(" Where");
1172
                strSQL.AppendFormat(" C.PersonCode = {0}", m_PersonCode);
1173
                strSQL.AppendFormat(" And C.ApprovalCode = {0}", m_ApprovalCode);
1174
                strSQL.AppendFormat(" And DATE(C.OrderDate) = STR_TO_DATE('{0}', '%Y/%m/%d')", m_OrderDate.ToShortDateString());
1175
                strSQL.AppendFormat(" And C.OrderNo = {0}",CommonDefine.s_Default_OrderNo);
1176
                strSQL.Append(" And C.SeqNo = 1");
1177
                strSQL.Append(" And A.APPROVALPERSONCODE = C.PersonCode");
1178
                strSQL.Append(" And DATE(A.APPROVALDATE) = DATE(C.EntryDate)");
1179
                strSQL.Append(" And A.APPROVALENDFLG = 1");
1180
                ArrayList DataList = new ArrayList();
1181
                if (!InfoDB.ExecuteReader(strSQL.ToString(), ref DataList)) return;
1182
                
1183
                ArrList.Clear();
1184
                PaymentApprovalInfo InfoRec = new PaymentApprovalInfo();
1185
                foreach (object[] objRec in DataList)
1186
                {
1187
                    InfoRec.CompanyCode = CommonMotions.cnvInt(objRec[0]);
1188
                    if (InfoRec.CompanyCode == 0) continue;
1189
                    InfoRec.TargetDate = CommonMotions.cnvInt(objRec[1]);
1190
                    InfoRec.SeqNo = CommonMotions.cnvInt(objRec[2]);
1191
                    InfoRec.LineCount = CommonMotions.cnvInt(objRec[3]);
1192
                    InfoRec.ApprovalNo = CommonMotions.cnvInt(objRec[4]);
1193
                    InfoRec.ApprovalPerson = CommonMotions.cnvInt(objRec[5]);
1194
                    InfoRec.ApprovalPersonName = CommonMotions.cnvString(objRec[6]);
1195
                    InfoRec.ApprovalAuthority = CommonMotions.cnvInt(objRec[7]);
1196
                    InfoRec.ApprovalDate = CommonMotions.cnvDate(objRec[8]);
1197
                    ArrList.Add(InfoRec);
1198
                }
1199

  
1200
                // 承認者データが取得できない場合は承認者新規追加を行う
1201
                if (ArrList.Count == 0)
1202
                {   // 対象データがあれば追加する
1203
                    if (AddApprovalPerson(ref InfoRec)) ArrList.Add(InfoRec);
1204
                }
1205
            }
1206
            catch (System.Exception ex)
1207
            {
1208
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
1209
            }
1210
            finally
1211
            {
1212
                InfoDB.close(); InfoDB = null;
1213
            }
1214
        }
1132 1215
        #endregion
1133 1216

  
1217
        #region 支払承認情報データに承認者がいない場合は追加する
1218
        /// <summary>
1219
        /// 支払承認情報データに承認者がいない場合は追加する
1220
        /// </summary>
1221
        /// <param name="InfoDB"></param>
1222
        /// <param name="ArrList"></param>
1223
        private bool AddApprovalPerson(ref PaymentApprovalInfo InfoRec)
1224
        {
1225
            IOPaymentApprovalInfo InfoDB = new IOPaymentApprovalInfo();
1226
            try
1227
            {
1228
                StringBuilder strSQL = new StringBuilder();
1229
                CreateAppPersonSQL(ref strSQL);
1230

  
1231
                ArrayList GetData = new ArrayList();
1232
                if (!InfoDB.ExecuteReader(strSQL.ToString(), ref GetData)) return false;
1233
                if (GetData.Count == 0) return false;
1234

  
1235
                InfoDB.connect(); InfoDB.beginTran();
1236
                int ino = 0;
1237
                PaymentApprovalInfo GetRec = new PaymentApprovalInfo();
1238
                bool bExists = false;
1239
                foreach (object[] objRec in GetData)
1240
                {
1241
                    ++ino;
1242
                    GetRec.CompanyCode = CommonMotions.cnvInt(objRec[0]);
1243
                    GetRec.TargetDate = CommonMotions.cnvInt(objRec[1]);
1244
                    GetRec.SeqNo = CommonMotions.cnvInt(objRec[2]);
1245
                    GetRec.LineCount = CommonMotions.cnvInt(objRec[3]);
1246
                    GetRec.ApprovalNo = CommonMotions.cnvInt(objRec[4]);
1247
                    GetRec.ApprovalPerson = CommonMotions.cnvInt(objRec[5]);
1248
                    GetRec.ApprovalPersonName = CommonMotions.cnvString(objRec[6]);
1249
                    if (GetRec.ApprovalPerson != CommonMotions.LoginUserData.PersonCode)
1250
                    {   // 対象以外は承認順序を更新する
1251
                        if (!UpDatePaymentApprovalInfoApprovalNo(InfoDB, GetRec, ino))
1252
                        {
1253
                            InfoDB.rollback();
1254
                            break;
1255
                        }
1256
                        continue;
1257
                    }
1258
                    // 新規データ退避
1259
                    InfoRec.CompanyCode = GetRec.CompanyCode;
1260
                    InfoRec.TargetDate = GetRec.TargetDate;
1261
                    InfoRec.SeqNo = GetRec.SeqNo;
1262
                    InfoRec.LineCount = GetRec.LineCount;
1263
                    InfoRec.ApprovalNo = ino;
1264
                    InfoRec.ApprovalPerson = GetRec.ApprovalPerson;
1265
                    InfoRec.ApprovalPersonName = GetRec.ApprovalPersonName;
1266
                    bExists = true;
1267
                }
1268
                return bExists;
1269
            }
1270
            catch (System.Exception ex)
1271
            {
1272
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
1273
                return false;
1274
            }
1275
            finally
1276
            {
1277
                InfoDB.commit(); InfoDB.close(); InfoDB = null;
1278
            }
1279
        }
1280
        #endregion
1281

  
1282
        #region 承認者データ取得SQL作成
1283
        /// <summary>
1284
        /// 承認者データ取得SQL作成
1285
        /// </summary>
1286
        private void CreateAppPersonSQL(ref StringBuilder strSQL)
1287
        {
1288
            try
1289
            {
1290
                strSQL.Append("Select");
1291
                //strSQL.Append("AppM.DisplayOrder");
1292
                //strSQL.Append(", AppM.ApprovalPerson");
1293
                //strSQL.Append(", AppPersonM.SealPrintName");
1294
                //strSQL.Append(", AppM.ApprovalAuthority");
1295

  
1296
                strSQL.Append(" payDataDetail.COMPANYCODE");
1297
                strSQL.Append(", payDataDetail.TARGETDATE");
1298
                strSQL.Append(", payDataDetail.SEQNO");
1299
                strSQL.Append(", payDataDetail.LINECOUNT");
1300

  
1301
                strSQL.Append(", payAppInfo.APPROVALNO");
1302
                strSQL.Append(", ifnull(payAppInfo.APPROVALPERSON, AppM.ApprovalPerson) As AppPersonCode");
1303
                strSQL.Append(", ifnull(payAppInfo.APPROVALPERSONNAME, AppPersonM.SealPrintName) As AppPersonName");
1304
                strSQL.Append(", ifnull(payAppInfo.APPROVALAUTHORITY, AppM.ApprovalAuthority) As ApprovalAuthority");
1305
                strSQL.Append(", ifnull(DATE_FORMAT(payAppInfo.APPROVALDATE, '%Y/%m/%d'), '2001/01/01') As  APPROVALDATE");
1306
                strSQL.Append(" From");
1307
                strSQL.Append(" personapproval As PersonApp");
1308

  
1309
                strSQL.Append(" LEFT JOIN personinchargemaster As PersonM ON PersonM.PersonCode = PersonApp.PersonCode");
1310

  
1311
                strSQL.Append(" LEFT JOIN approvalmaster As AppM");
1312
                strSQL.Append(" ON AppM.ApprovalCode = PersonApp.ApprovalCode");
1313
                strSQL.Append(" And AppM.DepartmentCode = PersonM.DepartmentCode");
1314

  
1315
                strSQL.Append(" LEFT JOIN personinchargemaster As AppPersonM ON AppPersonM.PersonCode = AppM.ApprovalPerson");
1316

  
1317
                strSQL.Append(" LEFT JOIN paymentdatadetail As payDataDetail");
1318
                strSQL.Append(" ON payDataDetail.APPROVALPERSONCODE = PersonApp.PersonCode");
1319
                strSQL.Append(" And DATE (payDataDetail.APPROVALDATE) = DATE (PersonApp.EntryDate)");
1320
                strSQL.Append(" And payDataDetail.APPROVALENDFLG = 1");
1321

  
1322
                strSQL.Append(" LEFT JOIN paymentapprovalinfo As payAppInfo");
1323
                strSQL.Append(" ON payAppInfo.COMPANYCODE = payDataDetail.COMPANYCODE");
1324
                strSQL.Append(" And payAppInfo.TARGETDATE = payDataDetail.TARGETDATE");
1325
                strSQL.Append(" And payAppInfo.SEQNO = payDataDetail.SEQNO");
1326
                strSQL.Append(" And payAppInfo.LINECOUNT = payDataDetail.LINECOUNT");
1327
                strSQL.Append(" And payAppInfo.APPROVALPERSON = AppM.ApprovalPerson");
1328

  
1329
                strSQL.Append(" Where");
1330
                strSQL.AppendFormat(" PersonApp.PersonCode = {0}", m_PersonCode);
1331
                strSQL.AppendFormat(" And PersonApp.ApprovalCode = {0}", m_ApprovalCode);
1332
                strSQL.Append(" And DATE (PersonApp.OrderDate) = STR_TO_DATE('2017/07/01', '%Y/%m/%d')");
1333
                strSQL.Append(" And PersonApp.OrderNo = 1");
1334
                strSQL.Append(" And PersonApp.SeqNo = 1");
1335
                strSQL.Append(" ORDER BY AppM.DisplayOrder desc");
1336

  
1337
            }
1338
            catch (System.Exception ex)
1339
            {
1340
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
1341
            }
1342
        }
1343
        #endregion
1344

  
1345
        #region 支払承認情報データの承認順序を更新する
1346
        /// <summary>
1347
        /// 支払承認情報データの承認順序を更新する
1348
        /// </summary>
1349
        /// <param name="InfoDB"></param>
1350
        /// <param name="GetRec"></param>
1351
        /// <returns></returns>
1352
        private bool UpDatePaymentApprovalInfoApprovalNo(IOPaymentApprovalInfo InfoDB,
1353
                                                            PaymentApprovalInfo GetRec,
1354
                                                            int ino)
1355
        {
1356
            try
1357
            {
1358
                StringBuilder strSQL = new StringBuilder();
1359

  
1360
                strSQL.Append("Update paymentapprovalinfo");
1361
                strSQL.AppendFormat(" Set APPROVALNO = {0}", ino);
1362
                strSQL.AppendFormat(" Where CompanyCode = {0}", GetRec.CompanyCode);
1363
                strSQL.AppendFormat(" And TargetDate = {0}", GetRec.TargetDate);
1364
                strSQL.AppendFormat(" And SeqNo = {0}", GetRec.SeqNo);
1365
                strSQL.AppendFormat(" And LineCount = {0}", GetRec.LineCount);
1366
                strSQL.AppendFormat(" And ApprovalNo = {0}", GetRec.ApprovalNo);
1367
                
1368
                if (!InfoDB.ExecuteNonQuery(strSQL.ToString(), false)) return false;
1369

  
1370
                return true;
1371
            }
1372
            catch (System.Exception ex)
1373
            {
1374
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
1375
                return false;
1376
            }
1377
        }
1378
        #endregion
1379

  
1380
        #endregion
1381

  
1134 1382
        #region ---------->> 指示連絡コメント処理
1135 1383
        #region 指示連絡コメント表示処理
1136 1384
        /// <summary>
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBudget/FrmConstructionBudget.cs
921 921
                if (CurCell.ColumnIndex != (int)GridColumn.CompanyName) return;
922 922
                
923 923
                DataGridViewRow CurRow = dgv.CurrentRow;
924
                // ????????E?O?????????????
924
                // ????????E?O????E????{?H??????????
925 925
                int GroupNo = CommonMotions.cnvInt(CurRow.Cells[(int)GridColumn.GroupCount].Value);
926 926
                if (GroupNo != (int)FrmConstructionBudget.DataGroup.CommonTempCosts
927
                    && GroupNo != (int)FrmConstructionBudget.DataGroup.OutSourceCosts) return;
927
                    && GroupNo != (int)FrmConstructionBudget.DataGroup.OutSourceCosts
928
                    && GroupNo != (int)FrmConstructionBudget.DataGroup.MyConstruction) return;
928 929
                
929 930
                // ??????R?[?h?E??????N???A????
930 931
                CurRow.Cells[(int)(int)GridColumn.CompanyType].Value = 0;
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestSummaryList/FrmRequestSummaryList.cs
576 576
            // ?R???{?{?b?N?X?Z?b?g
577 577
            LoadTargetMonth(ref m_Payday);
578 578

  
579
            // ?R???{?{?b?N?X?Z?b?g
580
            SetcmbDepartment();
581
            SetcmbPersons();
582

  
583
            // ?R???{?{?b?N?X?????\??
584
            InitCombBox();
585

  
586 579
            // ???[?U???????
587 580
            ClsSecurityPermission.SetUserType(m_UserInfo);
588 581

  
......
630 623
                int DepartmentCode = CommonMotions.LoginUserData.DepartmentCode;
631 624
                // ?????????\???????????????m?F????
632 625
                bool Pettition = false;
633
                //bool Pettition = ClsApprovalPermission.CheckPersonPetition(m_PersonCode, ApprovalCode, m_CreateDate, m_SeqNo);
626
                if ((m_PaInfo is PaymentApprovalInfo))
627
                {
628
                    Pettition = ClsApprovalPermission.CheckPersonPetition2(m_PaInfo.ApprovalPerson, ApprovalCode, m_PaInfo.ApprovalDate, (int)CommonDefine.s_Default_OrderNo);
629
                }
634 630
                // ???O?C????????F??????m?F????
635 631
                bool Approvaler = ClsApprovalPermission.CheckUserForApprover(ApprovalCode, DepartmentCode);
636 632
                // ?\????????O?C????????F????????F?{?^????\??????
......
3609 3605
        }
3610 3606
        #endregion
3611 3607

  
3612
        #region ?????R???{?{?b?N?X??X
3613
        /// <summary>
3614
        /// ?????R???{?{?b?N?X??X
3615
        /// </summary>
3616
        /// <param name="sender"></param>
3617
        /// <param name="e"></param>
3618
        private void cmbDepartment_TextChanged(object sender, EventArgs e)
3619
        {
3620
            if (m_initDataLoad) return;
3621

  
3622
            // ?S????R???{?{?b?N?X??X
3623
            SetcmbPersons();
3624

  
3625
            // ?f?[?^?\??
3626
            DispGridData();
3627
        }
3628
        #endregion
3629

  
3630
        #region ?S????R???{?{?b?N?X??X
3631
        /// <summary>
3632
        /// ?S?????X
3633
        /// </summary>
3634
        /// <param name="sender"></param>
3635
        /// <param name="e"></param>
3636
        private void cmbConstructionPerson_TextChanged(object sender, EventArgs e)
3637
        {
3638
            if (m_initDataLoad) return;
3639

  
3640
            // ?S????I?????????I????????
3641
            SetPerosonToDepartment();
3642

  
3643
            // ?f?[?^?\??
3644
            DispGridData();
3645
        }
3646
        #endregion
3647

  
3648
        #region ?c??E?H???S????????
3649
        /// <summary>
3650
        /// ?c??E?H???S????????
3651
        /// </summary>
3652
        /// <param name="sender"></param>
3653
        /// <param name="e"></param>
3654
        private void radioButton_CheckedChanged(object sender, EventArgs e)
3655
        {
3656
            if (m_initDataLoad) return;
3657

  
3658
            // ?f?[?^?\??
3659
            DispGridData();
3660
        }
3661
        #endregion
3662 3608
    }
3663 3609
}
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestSummaryList/FrmRequestSummaryList.designer.cs
28 28
        /// </summary>
29 29
        private void InitializeComponent()
30 30
        {
31
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle59 = new System.Windows.Forms.DataGridViewCellStyle();
32
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle85 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle60 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle61 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle62 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle63 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle64 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle65 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle66 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle67 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle68 = new System.Windows.Forms.DataGridViewCellStyle();
42
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle69 = new System.Windows.Forms.DataGridViewCellStyle();
43
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle70 = new System.Windows.Forms.DataGridViewCellStyle();
44
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle71 = new System.Windows.Forms.DataGridViewCellStyle();
45
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle72 = new System.Windows.Forms.DataGridViewCellStyle();
46
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle73 = new System.Windows.Forms.DataGridViewCellStyle();
47
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle74 = new System.Windows.Forms.DataGridViewCellStyle();
48
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle75 = new System.Windows.Forms.DataGridViewCellStyle();
49
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle76 = new System.Windows.Forms.DataGridViewCellStyle();
50
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle77 = new System.Windows.Forms.DataGridViewCellStyle();
51
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle78 = new System.Windows.Forms.DataGridViewCellStyle();
52
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle79 = new System.Windows.Forms.DataGridViewCellStyle();
53
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle80 = new System.Windows.Forms.DataGridViewCellStyle();
54
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle81 = new System.Windows.Forms.DataGridViewCellStyle();
55
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle82 = new System.Windows.Forms.DataGridViewCellStyle();
56
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle83 = new System.Windows.Forms.DataGridViewCellStyle();
57
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle84 = new System.Windows.Forms.DataGridViewCellStyle();
58
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle86 = new System.Windows.Forms.DataGridViewCellStyle();
59
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle116 = new System.Windows.Forms.DataGridViewCellStyle();
60
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle87 = new System.Windows.Forms.DataGridViewCellStyle();
61
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle88 = new System.Windows.Forms.DataGridViewCellStyle();
62
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle89 = new System.Windows.Forms.DataGridViewCellStyle();
63
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle90 = new System.Windows.Forms.DataGridViewCellStyle();
64
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle91 = new System.Windows.Forms.DataGridViewCellStyle();
65
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle92 = new System.Windows.Forms.DataGridViewCellStyle();
66
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle93 = new System.Windows.Forms.DataGridViewCellStyle();
67
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle94 = new System.Windows.Forms.DataGridViewCellStyle();
68
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle95 = new System.Windows.Forms.DataGridViewCellStyle();
69
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle96 = new System.Windows.Forms.DataGridViewCellStyle();
70
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle97 = new System.Windows.Forms.DataGridViewCellStyle();
71
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle98 = new System.Windows.Forms.DataGridViewCellStyle();
72
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle99 = new System.Windows.Forms.DataGridViewCellStyle();
73
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle100 = new System.Windows.Forms.DataGridViewCellStyle();
74
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle101 = new System.Windows.Forms.DataGridViewCellStyle();
75
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle102 = new System.Windows.Forms.DataGridViewCellStyle();
76
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle103 = new System.Windows.Forms.DataGridViewCellStyle();
77
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle104 = new System.Windows.Forms.DataGridViewCellStyle();
78
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle105 = new System.Windows.Forms.DataGridViewCellStyle();
79
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle106 = new System.Windows.Forms.DataGridViewCellStyle();
80
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle107 = new System.Windows.Forms.DataGridViewCellStyle();
81
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle108 = new System.Windows.Forms.DataGridViewCellStyle();
82
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle109 = new System.Windows.Forms.DataGridViewCellStyle();
83
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle110 = new System.Windows.Forms.DataGridViewCellStyle();
84
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle111 = new System.Windows.Forms.DataGridViewCellStyle();
85
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle112 = new System.Windows.Forms.DataGridViewCellStyle();
86
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle113 = new System.Windows.Forms.DataGridViewCellStyle();
87
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle114 = new System.Windows.Forms.DataGridViewCellStyle();
88
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle115 = new System.Windows.Forms.DataGridViewCellStyle();
31
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
32
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
42
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
43
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
44
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
45
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
46
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
47
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
48
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
49
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
50
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
51
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
52
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
53
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
54
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
55
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
56
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
57
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
58
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
59
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle();
60
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
61
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
62
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
63
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
64
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
65
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
66
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
67
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
68
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
69
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
70
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
71
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
72
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
73
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
74
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
75
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
76
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
77
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
78
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
79
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
80
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
81
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
82
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
83
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
84
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
85
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle54 = new System.Windows.Forms.DataGridViewCellStyle();
86
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle55 = new System.Windows.Forms.DataGridViewCellStyle();
87
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle56 = new System.Windows.Forms.DataGridViewCellStyle();
88
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle57 = new System.Windows.Forms.DataGridViewCellStyle();
89 89
            this.btnEnd = new System.Windows.Forms.Button();
90 90
            this.label1 = new System.Windows.Forms.Label();
91 91
            this.btnDataEntry = new System.Windows.Forms.Button();
......
103 103
            this.CombinedOrderLabel1 = new System.Windows.Forms.Label();
104 104
            this.CombinedOrderLabel2 = new System.Windows.Forms.Label();
105 105
            this.groupBoxEx1 = new ProcessManagement.Forms.CustomControls.GroupBoxEx();
106
            this.label12 = new System.Windows.Forms.Label();
107
            this.cmbConstructionPerson = new System.Windows.Forms.ComboBox();
108
            this.cmbDepartment = new System.Windows.Forms.ComboBox();
109
            this.label11 = new System.Windows.Forms.Label();
106
            this.pnlApprovalButton = new System.Windows.Forms.Panel();
107
            this.btnOnApproval = new System.Windows.Forms.Button();
108
            this.btnNotApproval = new System.Windows.Forms.Button();
109
            this.btnOnHold = new System.Windows.Forms.Button();
110 110
            this.pnlApproval = new System.Windows.Forms.Panel();
111 111
            this.lblApprovalCount = new System.Windows.Forms.Label();
112 112
            this.btnPetition = new System.Windows.Forms.Button();
113 113
            this.btnApproval = new System.Windows.Forms.Button();
114
            this.pnlApprovalButton = new System.Windows.Forms.Panel();
115
            this.btnOnApproval = new System.Windows.Forms.Button();
116
            this.btnNotApproval = new System.Windows.Forms.Button();
117
            this.btnOnHold = new System.Windows.Forms.Button();
118 114
            this.lblPaymentDate = new System.Windows.Forms.Label();
119 115
            this.label5 = new System.Windows.Forms.Label();
120 116
            this.label2 = new System.Windows.Forms.Label();
......
305 301
            this.Column142 = new System.Windows.Forms.DataGridViewTextBoxColumn();
306 302
            this.panel1.SuspendLayout();
307 303
            this.groupBoxEx1.SuspendLayout();
304
            this.pnlApprovalButton.SuspendLayout();
308 305
            this.pnlApproval.SuspendLayout();
309
            this.pnlApprovalButton.SuspendLayout();
310 306
            ((System.ComponentModel.ISupportInitialize)(this.dgvCompany)).BeginInit();
311 307
            ((System.ComponentModel.ISupportInitialize)(this.dgvProject)).BeginInit();
312 308
            this.SuspendLayout();
......
316 312
            this.btnEnd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
317 313
            this.btnEnd.BackColor = System.Drawing.Color.Blue;
318 314
            this.btnEnd.ForeColor = System.Drawing.Color.White;
319
            this.btnEnd.Location = new System.Drawing.Point(1210, 651);
315
            this.btnEnd.Location = new System.Drawing.Point(1210, 661);
320 316
            this.btnEnd.Margin = new System.Windows.Forms.Padding(4);
321 317
            this.btnEnd.Name = "btnEnd";
322 318
            this.btnEnd.Size = new System.Drawing.Size(120, 30);
......
347 343
            this.btnDataEntry.BackColor = System.Drawing.Color.Green;
348 344
            this.btnDataEntry.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
349 345
            this.btnDataEntry.ForeColor = System.Drawing.Color.White;
350
            this.btnDataEntry.Location = new System.Drawing.Point(1082, 651);
346
            this.btnDataEntry.Location = new System.Drawing.Point(1082, 661);
351 347
            this.btnDataEntry.Margin = new System.Windows.Forms.Padding(4);
352 348
            this.btnDataEntry.Name = "btnDataEntry";
353 349
            this.btnDataEntry.Size = new System.Drawing.Size(120, 30);
......
362 358
            this.btnDeleteProject.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
363 359
            this.btnDeleteProject.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
364 360
            this.btnDeleteProject.ForeColor = System.Drawing.Color.Black;
365
            this.btnDeleteProject.Location = new System.Drawing.Point(778, 651);
361
            this.btnDeleteProject.Location = new System.Drawing.Point(778, 661);
366 362
            this.btnDeleteProject.Margin = new System.Windows.Forms.Padding(4);
367 363
            this.btnDeleteProject.Name = "btnDeleteProject";
368 364
            this.btnDeleteProject.Size = new System.Drawing.Size(120, 30);
......
377 373
            this.btnDeleteCompany.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
378 374
            this.btnDeleteCompany.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
379 375
            this.btnDeleteCompany.ForeColor = System.Drawing.Color.Black;
380
            this.btnDeleteCompany.Location = new System.Drawing.Point(522, 651);
376
            this.btnDeleteCompany.Location = new System.Drawing.Point(522, 661);
381 377
            this.btnDeleteCompany.Margin = new System.Windows.Forms.Padding(4);
382 378
            this.btnDeleteCompany.Name = "btnDeleteCompany";
383 379
            this.btnDeleteCompany.Size = new System.Drawing.Size(120, 30);
......
392 388
            this.btnAddCompany.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
393 389
            this.btnAddCompany.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
394 390
            this.btnAddCompany.ForeColor = System.Drawing.Color.Black;
395
            this.btnAddCompany.Location = new System.Drawing.Point(394, 651);
391
            this.btnAddCompany.Location = new System.Drawing.Point(394, 661);
396 392
            this.btnAddCompany.Margin = new System.Windows.Forms.Padding(4);
397 393
            this.btnAddCompany.Name = "btnAddCompany";
398 394
            this.btnAddCompany.Size = new System.Drawing.Size(120, 30);
......
407 403
            this.btnAddProject.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
408 404
            this.btnAddProject.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
409 405
            this.btnAddProject.ForeColor = System.Drawing.Color.Black;
410
            this.btnAddProject.Location = new System.Drawing.Point(650, 651);
406
            this.btnAddProject.Location = new System.Drawing.Point(650, 661);
411 407
            this.btnAddProject.Margin = new System.Windows.Forms.Padding(4);
412 408
            this.btnAddProject.Name = "btnAddProject";
413 409
            this.btnAddProject.Size = new System.Drawing.Size(120, 30);
......
532 528
            this.groupBoxEx1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
533 529
            this.groupBoxEx1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
534 530
            this.groupBoxEx1.BorderColor = System.Drawing.Color.Gray;
535
            this.groupBoxEx1.Controls.Add(this.label12);
536
            this.groupBoxEx1.Controls.Add(this.cmbConstructionPerson);
537
            this.groupBoxEx1.Controls.Add(this.cmbDepartment);
538
            this.groupBoxEx1.Controls.Add(this.label11);
539 531
            this.groupBoxEx1.Controls.Add(this.pnlApproval);
540 532
            this.groupBoxEx1.Controls.Add(this.pnlApprovalButton);
541 533
            this.groupBoxEx1.Controls.Add(this.lblPaymentDate);
......
551 543
            this.groupBoxEx1.Margin = new System.Windows.Forms.Padding(4);
552 544
            this.groupBoxEx1.Name = "groupBoxEx1";
553 545
            this.groupBoxEx1.Padding = new System.Windows.Forms.Padding(4);
554
            this.groupBoxEx1.Size = new System.Drawing.Size(1320, 68);
546
            this.groupBoxEx1.Size = new System.Drawing.Size(1320, 40);
555 547
            this.groupBoxEx1.TabIndex = 2;
556 548
            this.groupBoxEx1.TabStop = false;
557 549
            // 
558
            // label12
550
            // pnlApprovalButton
559 551
            // 
560
            this.label12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
561
            this.label12.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
562
            this.label12.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
563
            this.label12.ForeColor = System.Drawing.Color.Black;
564
            this.label12.Location = new System.Drawing.Point(343, 36);
565
            this.label12.Name = "label12";
566
            this.label12.Size = new System.Drawing.Size(120, 25);
567
            this.label12.TabIndex = 37;
568
            this.label12.Text = "担 当 者";
569
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
552
            this.pnlApprovalButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
553
            this.pnlApprovalButton.AutoSize = true;
554
            this.pnlApprovalButton.BackColor = System.Drawing.Color.White;
555
            this.pnlApprovalButton.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
556
            this.pnlApprovalButton.Controls.Add(this.btnOnApproval);
557
            this.pnlApprovalButton.Controls.Add(this.btnNotApproval);
558
            this.pnlApprovalButton.Controls.Add(this.btnOnHold);
559
            this.pnlApprovalButton.Location = new System.Drawing.Point(1043, 2);
560
            this.pnlApprovalButton.Name = "pnlApprovalButton";
561
            this.pnlApprovalButton.Size = new System.Drawing.Size(262, 34);
562
            this.pnlApprovalButton.TabIndex = 34;
563
            this.pnlApprovalButton.Visible = false;
570 564
            // 
571
            // cmbConstructionPerson
565
            // btnOnApproval
572 566
            // 
573
            this.cmbConstructionPerson.BackColor = System.Drawing.Color.White;
574
            this.cmbConstructionPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
575
            this.cmbConstructionPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
576
            this.cmbConstructionPerson.FormattingEnabled = true;
577
            this.cmbConstructionPerson.Location = new System.Drawing.Point(471, 37);
578
            this.cmbConstructionPerson.Name = "cmbConstructionPerson";
579
            this.cmbConstructionPerson.Size = new System.Drawing.Size(200, 23);
580
            this.cmbConstructionPerson.TabIndex = 36;
581
            this.cmbConstructionPerson.TextChanged += new System.EventHandler(this.cmbConstructionPerson_TextChanged);
567
            this.btnOnApproval.BackColor = System.Drawing.Color.MediumSpringGreen;
568
            this.btnOnApproval.ForeColor = System.Drawing.SystemColors.ControlText;
569
            this.btnOnApproval.Location = new System.Drawing.Point(5, 3);
570
            this.btnOnApproval.Name = "btnOnApproval";
571
            this.btnOnApproval.Size = new System.Drawing.Size(83, 24);
572
            this.btnOnApproval.TabIndex = 34;
573
            this.btnOnApproval.TabStop = false;
574
            this.btnOnApproval.Text = "承認";
575
            this.btnOnApproval.UseVisualStyleBackColor = false;
576
            this.btnOnApproval.Click += new System.EventHandler(this.btnOnApproval_Click);
582 577
            // 
583
            // cmbDepartment
578
            // btnNotApproval
584 579
            // 
585
            this.cmbDepartment.BackColor = System.Drawing.Color.White;
586
            this.cmbDepartment.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
587
            this.cmbDepartment.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
588
            this.cmbDepartment.FormattingEnabled = true;
589
            this.cmbDepartment.Location = new System.Drawing.Point(127, 37);
590
            this.cmbDepartment.Name = "cmbDepartment";
591
            this.cmbDepartment.Size = new System.Drawing.Size(200, 23);
592
            this.cmbDepartment.TabIndex = 35;
593
            this.cmbDepartment.TextChanged += new System.EventHandler(this.cmbDepartment_TextChanged);
580
            this.btnNotApproval.BackColor = System.Drawing.Color.Red;
581
            this.btnNotApproval.ForeColor = System.Drawing.SystemColors.ControlText;
582
            this.btnNotApproval.Location = new System.Drawing.Point(171, 3);
583
            this.btnNotApproval.Name = "btnNotApproval";
584
            this.btnNotApproval.Size = new System.Drawing.Size(83, 24);
585
            this.btnNotApproval.TabIndex = 35;
586
            this.btnNotApproval.TabStop = false;
587
            this.btnNotApproval.Text = "不承認";
588
            this.btnNotApproval.UseVisualStyleBackColor = false;
589
            this.btnNotApproval.Click += new System.EventHandler(this.btnNotApproval_Click);
594 590
            // 
595
            // label11
591
            // btnOnHold
596 592
            // 
597
            this.label11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
598
            this.label11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
599
            this.label11.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
600
            this.label11.ForeColor = System.Drawing.Color.Black;
601
            this.label11.Location = new System.Drawing.Point(5, 36);
602
            this.label11.Name = "label11";
603
            this.label11.Size = new System.Drawing.Size(114, 25);
604
            this.label11.TabIndex = 38;
605
            this.label11.Text = "部  署";
606
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
593
            this.btnOnHold.BackColor = System.Drawing.Color.Yellow;
594
            this.btnOnHold.ForeColor = System.Drawing.SystemColors.ControlText;
595
            this.btnOnHold.Location = new System.Drawing.Point(88, 3);
596
            this.btnOnHold.Name = "btnOnHold";
597
            this.btnOnHold.Size = new System.Drawing.Size(83, 24);
598
            this.btnOnHold.TabIndex = 36;
599
            this.btnOnHold.TabStop = false;
600
            this.btnOnHold.Text = "保留";
601
            this.btnOnHold.UseVisualStyleBackColor = false;
602
            this.btnOnHold.Click += new System.EventHandler(this.btnOnHold_Click);
607 603
            // 
608 604
            // pnlApproval
609 605
            // 
......
659 655
            this.btnApproval.UseVisualStyleBackColor = false;
660 656
            this.btnApproval.Click += new System.EventHandler(this.btnApproval_Click);
661 657
            // 
662
            // pnlApprovalButton
663
            // 
664
            this.pnlApprovalButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
665
            this.pnlApprovalButton.AutoSize = true;
666
            this.pnlApprovalButton.BackColor = System.Drawing.Color.White;
667
            this.pnlApprovalButton.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
668
            this.pnlApprovalButton.Controls.Add(this.btnOnApproval);
669
            this.pnlApprovalButton.Controls.Add(this.btnNotApproval);
670
            this.pnlApprovalButton.Controls.Add(this.btnOnHold);
671
            this.pnlApprovalButton.Location = new System.Drawing.Point(1043, 2);
672
            this.pnlApprovalButton.Name = "pnlApprovalButton";
673
            this.pnlApprovalButton.Size = new System.Drawing.Size(262, 34);
674
            this.pnlApprovalButton.TabIndex = 34;
675
            this.pnlApprovalButton.Visible = false;
676
            // 
677
            // btnOnApproval
678
            // 
679
            this.btnOnApproval.BackColor = System.Drawing.Color.MediumSpringGreen;
680
            this.btnOnApproval.Location = new System.Drawing.Point(5, 3);
681
            this.btnOnApproval.Name = "btnOnApproval";
682
            this.btnOnApproval.Size = new System.Drawing.Size(83, 24);
683
            this.btnOnApproval.TabIndex = 34;
684
            this.btnOnApproval.TabStop = false;
685
            this.btnOnApproval.Text = "承認";
686
            this.btnOnApproval.UseVisualStyleBackColor = false;
687
            this.btnOnApproval.Click += new System.EventHandler(this.btnOnApproval_Click);
688
            // 
689
            // btnNotApproval
690
            // 
691
            this.btnNotApproval.BackColor = System.Drawing.Color.Red;
692
            this.btnNotApproval.Location = new System.Drawing.Point(171, 3);
693
            this.btnNotApproval.Name = "btnNotApproval";
694
            this.btnNotApproval.Size = new System.Drawing.Size(83, 24);
695
            this.btnNotApproval.TabIndex = 35;
696
            this.btnNotApproval.TabStop = false;
697
            this.btnNotApproval.Text = "不承認";
698
            this.btnNotApproval.UseVisualStyleBackColor = false;
699
            this.btnNotApproval.Click += new System.EventHandler(this.btnNotApproval_Click);
700
            // 
701
            // btnOnHold
702
            // 
703
            this.btnOnHold.BackColor = System.Drawing.Color.Yellow;
704
            this.btnOnHold.Location = new System.Drawing.Point(88, 3);
705
            this.btnOnHold.Name = "btnOnHold";
706
            this.btnOnHold.Size = new System.Drawing.Size(83, 24);
707
            this.btnOnHold.TabIndex = 36;
708
            this.btnOnHold.TabStop = false;
709
            this.btnOnHold.Text = "保留";
710
            this.btnOnHold.UseVisualStyleBackColor = false;
711
            this.btnOnHold.Click += new System.EventHandler(this.btnOnHold_Click);
712
            // 
713 658
            // lblPaymentDate
714 659
            // 
715 660
            this.lblPaymentDate.BackColor = System.Drawing.Color.White;
......
836 781
            | System.Windows.Forms.AnchorStyles.Right)));
837 782
            this.dgvCompany.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
838 783
            this.dgvCompany.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
839
            dataGridViewCellStyle59.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
840
            dataGridViewCellStyle59.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
841
            dataGridViewCellStyle59.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
842
            dataGridViewCellStyle59.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
843
            this.dgvCompany.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle59;
784
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
785
            dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
786
            dataGridViewCellStyle1.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
787
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
788
            this.dgvCompany.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
844 789
            this.dgvCompany.ColumnHeadersHeight = 45;
845 790
            this.dgvCompany.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
846 791
            this.dgvCompany.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
933 878
            this.Column64,
934 879
            this.Column139,
935 880
            this.Column140});
936
            dataGridViewCellStyle85.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
937
            dataGridViewCellStyle85.BackColor = System.Drawing.SystemColors.Window;
938
            dataGridViewCellStyle85.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
939
            dataGridViewCellStyle85.ForeColor = System.Drawing.SystemColors.ControlText;
940
            dataGridViewCellStyle85.SelectionBackColor = System.Drawing.Color.LightSeaGreen;
941
            dataGridViewCellStyle85.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
942
            dataGridViewCellStyle85.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
943
            this.dgvCompany.DefaultCellStyle = dataGridViewCellStyle85;
881
            dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
882
            dataGridViewCellStyle27.BackColor = System.Drawing.SystemColors.Window;
883
            dataGridViewCellStyle27.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
884
            dataGridViewCellStyle27.ForeColor = System.Drawing.SystemColors.ControlText;
885
            dataGridViewCellStyle27.SelectionBackColor = System.Drawing.Color.LightSeaGreen;
886
            dataGridViewCellStyle27.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
887
            dataGridViewCellStyle27.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
888
            this.dgvCompany.DefaultCellStyle = dataGridViewCellStyle27;
944 889
            this.dgvCompany.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
945 890
            this.dgvCompany.EnableHeadersVisualStyles = false;
946
            this.dgvCompany.Location = new System.Drawing.Point(10, 110);
891
            this.dgvCompany.Location = new System.Drawing.Point(10, 82);
947 892
            this.dgvCompany.Margin = new System.Windows.Forms.Padding(0);
948 893
            this.dgvCompany.MultiSelect = false;
949 894
            this.dgvCompany.Name = "dgvCompany";
......
952 897
            this.dgvCompany.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
953 898
            this.dgvCompany.RowTemplate.Height = 21;
954 899
            this.dgvCompany.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
955
            this.dgvCompany.Size = new System.Drawing.Size(1320, 534);
900
            this.dgvCompany.Size = new System.Drawing.Size(1320, 570);
956 901
            this.dgvCompany.TabIndex = 4;
957 902
            this.dgvCompany.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.DataGridView_CellBeginEdit);
958 903
            this.dgvCompany.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellEnter);
......
1026 971
            // 
1027 972
            // Column1
1028 973
            // 
1029
            dataGridViewCellStyle60.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1030
            this.Column1.DefaultCellStyle = dataGridViewCellStyle60;
974
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
975
            this.Column1.DefaultCellStyle = dataGridViewCellStyle2;
1031 976
            this.Column1.FillWeight = 110F;
1032 977
            this.Column1.HeaderText = "№";
1033 978
            this.Column1.Name = "Column1";
......
1081 1026
            // 
1082 1027
            // Column4
1083 1028
            // 
1084
            dataGridViewCellStyle61.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1085
            this.Column4.DefaultCellStyle = dataGridViewCellStyle61;
1029
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1030
            this.Column4.DefaultCellStyle = dataGridViewCellStyle3;
1086 1031
            this.Column4.HeaderText = "請求書\r\n金額";
1087 1032
            this.Column4.Name = "Column4";
1088 1033
            this.Column4.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1091 1036
            // 
1092 1037
            // Column9
1093 1038
            // 
1094
            dataGridViewCellStyle62.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1095
            this.Column9.DefaultCellStyle = dataGridViewCellStyle62;
1039
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1040
            this.Column9.DefaultCellStyle = dataGridViewCellStyle4;
1096 1041
            this.Column9.HeaderText = "高速代駐車代";
1097 1042
            this.Column9.Name = "Column9";
1098 1043
            this.Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1101 1046
            // 
1102 1047
            // Column10
1103 1048
            // 
1104
            dataGridViewCellStyle63.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1105
            this.Column10.DefaultCellStyle = dataGridViewCellStyle63;
1049
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1050
            this.Column10.DefaultCellStyle = dataGridViewCellStyle5;
1106 1051
            this.Column10.HeaderText = "金物代";
1107 1052
            this.Column10.Name = "Column10";
1108 1053
            this.Column10.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1111 1056
            // 
1112 1057
            // Column11
1113 1058
            // 
1114
            dataGridViewCellStyle64.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1115
            this.Column11.DefaultCellStyle = dataGridViewCellStyle64;
1059
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1060
            this.Column11.DefaultCellStyle = dataGridViewCellStyle6;
1116 1061
            this.Column11.HeaderText = "産廃税";
1117 1062
            this.Column11.Name = "Column11";
1118 1063
            this.Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1121 1066
            // 
1122 1067
            // Column5
1123 1068
            // 
1124
            dataGridViewCellStyle65.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1125
            this.Column5.DefaultCellStyle = dataGridViewCellStyle65;
1069
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1070
            this.Column5.DefaultCellStyle = dataGridViewCellStyle7;
1126 1071
            this.Column5.HeaderText = "請求\r\n金額";
1127 1072
            this.Column5.Name = "Column5";
1128 1073
            this.Column5.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1131 1076
            // 
1132 1077
            // Column6
1133 1078
            // 
1134
            dataGridViewCellStyle66.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1135
            this.Column6.DefaultCellStyle = dataGridViewCellStyle66;
1079
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1080
            this.Column6.DefaultCellStyle = dataGridViewCellStyle8;
1136 1081
            this.Column6.HeaderText = "値引\r\n金額";
1137 1082
            this.Column6.Name = "Column6";
1138 1083
            this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1141 1086
            // 
1142 1087
            // Column7
1143 1088
            // 
1144
            dataGridViewCellStyle67.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1145
            this.Column7.DefaultCellStyle = dataGridViewCellStyle67;
1089
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1090
            this.Column7.DefaultCellStyle = dataGridViewCellStyle9;
1146 1091
            this.Column7.HeaderText = "相殺\r\n金額";
1147 1092
            this.Column7.Name = "Column7";
1148 1093
            this.Column7.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1151 1096
            // 
1152 1097
            // Column8
1153 1098
            // 
1154
            dataGridViewCellStyle68.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1155
            this.Column8.DefaultCellStyle = dataGridViewCellStyle68;
1099
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1100
            this.Column8.DefaultCellStyle = dataGridViewCellStyle10;
1156 1101
            this.Column8.HeaderText = "次回\r\n繰越";
1157 1102
            this.Column8.Name = "Column8";
1158 1103
            this.Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1161 1106
            // 
1162 1107
            // Column40
1163 1108
            // 
1164
            dataGridViewCellStyle69.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1165
            this.Column40.DefaultCellStyle = dataGridViewCellStyle69;
1109
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1110
            this.Column40.DefaultCellStyle = dataGridViewCellStyle11;
1166 1111
            this.Column40.HeaderText = "高速代駐車代";
1167 1112
            this.Column40.Name = "Column40";
1168 1113
            this.Column40.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1171 1116
            // 
1172 1117
            // Column41
1173 1118
            // 
1174
            dataGridViewCellStyle70.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1175
            this.Column41.DefaultCellStyle = dataGridViewCellStyle70;
1119
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1120
            this.Column41.DefaultCellStyle = dataGridViewCellStyle12;
1176 1121
            this.Column41.HeaderText = "金物代";
1177 1122
            this.Column41.Name = "Column41";
1178 1123
            this.Column41.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1181 1126
            // 
1182 1127
            // Column43
1183 1128
            // 
1184
            dataGridViewCellStyle71.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1185
            this.Column43.DefaultCellStyle = dataGridViewCellStyle71;
1129
            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1130
            this.Column43.DefaultCellStyle = dataGridViewCellStyle13;
1186 1131
            this.Column43.HeaderText = "産廃税";
1187 1132
            this.Column43.Name = "Column43";
1188 1133
            this.Column43.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1191 1136
            // 
1192 1137
            // Column12
1193 1138
            // 
1194
            dataGridViewCellStyle72.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1195
            this.Column12.DefaultCellStyle = dataGridViewCellStyle72;
1139
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1140
            this.Column12.DefaultCellStyle = dataGridViewCellStyle14;
1196 1141
            this.Column12.HeaderText = "協力金";
1197 1142
            this.Column12.Name = "Column12";
1198 1143
            this.Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1208 1153
            // 
1209 1154
            // KyouryokuKin_Com
1210 1155
            // 
1211
            dataGridViewCellStyle73.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1212
            dataGridViewCellStyle73.BackColor = System.Drawing.Color.White;
1213
            dataGridViewCellStyle73.ForeColor = System.Drawing.Color.Black;
1214
            this.KyouryokuKin_Com.DefaultCellStyle = dataGridViewCellStyle73;
1156
            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1157
            dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
1158
            dataGridViewCellStyle15.ForeColor = System.Drawing.Color.Black;
1159
            this.KyouryokuKin_Com.DefaultCellStyle = dataGridViewCellStyle15;
1215 1160
            this.KyouryokuKin_Com.HeaderText = "協力金\r\n有無";
1216 1161
            this.KyouryokuKin_Com.MaxDropDownItems = 3;
1217 1162
            this.KyouryokuKin_Com.Name = "KyouryokuKin_Com";
......
1219 1164
            // 
1220 1165
            // Column14
1221 1166
            // 
1222
            dataGridViewCellStyle74.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1223
            this.Column14.DefaultCellStyle = dataGridViewCellStyle74;
1167
            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1168
            this.Column14.DefaultCellStyle = dataGridViewCellStyle16;
1224 1169
            this.Column14.HeaderText = "注文書\r\n送付";
1225 1170
            this.Column14.Name = "Column14";
1226 1171
            this.Column14.ReadOnly = true;
......
1229 1174
            // 
1230 1175
            // Column15
1231 1176
            // 
1232
            dataGridViewCellStyle75.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1233
            this.Column15.DefaultCellStyle = dataGridViewCellStyle75;
1177
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1178
            this.Column15.DefaultCellStyle = dataGridViewCellStyle17;
1234 1179
            this.Column15.HeaderText = "注文書\r\n到着";
1235 1180
            this.Column15.Name = "Column15";
1236 1181
            this.Column15.ReadOnly = true;
......
1239 1184
            // 
1240 1185
            // Column16
1241 1186
            // 
1242
            dataGridViewCellStyle76.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1243
            this.Column16.DefaultCellStyle = dataGridViewCellStyle76;
1187
            dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1188
            this.Column16.DefaultCellStyle = dataGridViewCellStyle18;
1244 1189
            this.Column16.HeaderText = "予算書";
1245 1190
            this.Column16.Name = "Column16";
1246 1191
            this.Column16.ReadOnly = true;
......
1256 1201
            // 
1257 1202
            // Column17
1258 1203
            // 
1259
            dataGridViewCellStyle77.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1260
            this.Column17.DefaultCellStyle = dataGridViewCellStyle77;
1204
            dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1205
            this.Column17.DefaultCellStyle = dataGridViewCellStyle19;
1261 1206
            this.Column17.HeaderText = "担当者\r\n確認";
1262 1207
            this.Column17.Name = "Column17";
1263 1208
            this.Column17.ReadOnly = true;
......
1280 1225
            // 
1281 1226
            // Column18
1282 1227
            // 
1283
            dataGridViewCellStyle78.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1284
            this.Column18.DefaultCellStyle = dataGridViewCellStyle78;
1228
            dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1229
            this.Column18.DefaultCellStyle = dataGridViewCellStyle20;
1285 1230
            this.Column18.HeaderText = "承認者1\r\n承認";
1286 1231
            this.Column18.Name = "Column18";
1287 1232
            this.Column18.ReadOnly = true;
......
1318 1263
            // 
1319 1264
            // Column19
1320 1265
            // 
1321
            dataGridViewCellStyle79.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1322
            this.Column19.DefaultCellStyle = dataGridViewCellStyle79;
1266
            dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1267
            this.Column19.DefaultCellStyle = dataGridViewCellStyle21;
1323 1268
            this.Column19.HeaderText = "承認者2\r\n承認";
1324 1269
            this.Column19.Name = "Column19";
1325 1270
            this.Column19.ReadOnly = true;
......
1356 1301
            // 
1357 1302
            // Column22
1358 1303
            // 
1359
            dataGridViewCellStyle80.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1360
            this.Column22.DefaultCellStyle = dataGridViewCellStyle80;
1304
            dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1305
            this.Column22.DefaultCellStyle = dataGridViewCellStyle22;
1361 1306
            this.Column22.HeaderText = "承認者3\r\n承認";
1362 1307
            this.Column22.Name = "Column22";
1363 1308
            this.Column22.ReadOnly = true;
......
1394 1339
            // 
1395 1340
            // Column25
1396 1341
            // 
1397
            dataGridViewCellStyle81.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1398
            this.Column25.DefaultCellStyle = dataGridViewCellStyle81;
1342
            dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1343
            this.Column25.DefaultCellStyle = dataGridViewCellStyle23;
1399 1344
            this.Column25.HeaderText = "承認者4承認";
1400 1345
            this.Column25.Name = "Column25";
1401 1346
            this.Column25.ReadOnly = true;
......
1432 1377
            // 
1433 1378
            // Column27
1434 1379
            // 
1435
            dataGridViewCellStyle82.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1436
            this.Column27.DefaultCellStyle = dataGridViewCellStyle82;
1380
            dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1381
            this.Column27.DefaultCellStyle = dataGridViewCellStyle24;
1437 1382
            this.Column27.HeaderText = "承認者5承認";
1438 1383
            this.Column27.Name = "Column27";
1439 1384
            this.Column27.ReadOnly = true;
......
1470 1415
            // 
1471 1416
            // Column28
1472 1417
            // 
1473
            dataGridViewCellStyle83.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1474
            this.Column28.DefaultCellStyle = dataGridViewCellStyle83;
1418
            dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1419
            this.Column28.DefaultCellStyle = dataGridViewCellStyle25;
1475 1420
            this.Column28.HeaderText = "承認者6承認";
1476 1421
            this.Column28.Name = "Column28";
1477 1422
            this.Column28.ReadOnly = true;
......
1644 1589
            // 
1645 1590
            // Column20
1646 1591
            // 
1647
            dataGridViewCellStyle84.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1648
            this.Column20.DefaultCellStyle = dataGridViewCellStyle84;
1592
            dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1593
            this.Column20.DefaultCellStyle = dataGridViewCellStyle26;
1649 1594
            this.Column20.HeaderText = "備考";
1650 1595
            this.Column20.Name = "Column20";
1651 1596
            this.Column20.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1686 1631
            | System.Windows.Forms.AnchorStyles.Right)));
1687 1632
            this.dgvProject.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1688 1633
            this.dgvProject.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1689
            dataGridViewCellStyle86.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1690
            dataGridViewCellStyle86.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
1691
            dataGridViewCellStyle86.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1692
            dataGridViewCellStyle86.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1693
            this.dgvProject.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle86;
1634
            dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1635
            dataGridViewCellStyle28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
1636
            dataGridViewCellStyle28.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1637
            dataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1638
            this.dgvProject.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle28;
1694 1639
            this.dgvProject.ColumnHeadersHeight = 45;
1695 1640
            this.dgvProject.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
1696 1641
            this.dgvProject.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
1783 1728
            this.Column77,
1784 1729
            this.Column141,
1785 1730
            this.Column142});
1786
            dataGridViewCellStyle116.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1787
            dataGridViewCellStyle116.BackColor = System.Drawing.SystemColors.Window;
1788
            dataGridViewCellStyle116.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1789
            dataGridViewCellStyle116.ForeColor = System.Drawing.SystemColors.ControlText;
1790
            dataGridViewCellStyle116.SelectionBackColor = System.Drawing.Color.LightSeaGreen;
1791
            dataGridViewCellStyle116.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1792
            dataGridViewCellStyle116.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
1793
            this.dgvProject.DefaultCellStyle = dataGridViewCellStyle116;
1731
            dataGridViewCellStyle58.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1732
            dataGridViewCellStyle58.BackColor = System.Drawing.SystemColors.Window;
1733
            dataGridViewCellStyle58.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1734
            dataGridViewCellStyle58.ForeColor = System.Drawing.SystemColors.ControlText;
1735
            dataGridViewCellStyle58.SelectionBackColor = System.Drawing.Color.LightSeaGreen;
1736
            dataGridViewCellStyle58.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1737
            dataGridViewCellStyle58.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
1738
            this.dgvProject.DefaultCellStyle = dataGridViewCellStyle58;
1794 1739
            this.dgvProject.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
1795 1740
            this.dgvProject.EnableHeadersVisualStyles = false;
1796
            this.dgvProject.Location = new System.Drawing.Point(10, 110);
1741
            this.dgvProject.Location = new System.Drawing.Point(10, 82);
1797 1742
            this.dgvProject.Margin = new System.Windows.Forms.Padding(4);
1798 1743
            this.dgvProject.MultiSelect = false;
1799 1744
            this.dgvProject.Name = "dgvProject";
......
1802 1747
            this.dgvProject.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
1803 1748
            this.dgvProject.RowTemplate.Height = 21;
1804 1749
            this.dgvProject.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
1805
            this.dgvProject.Size = new System.Drawing.Size(1320, 534);
1750
            this.dgvProject.Size = new System.Drawing.Size(1320, 570);
1806 1751
            this.dgvProject.TabIndex = 3;
1807 1752
            this.dgvProject.Visible = false;
1808 1753
            this.dgvProject.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.DataGridView_CellBeginEdit);
......
1877 1822
            // 
1878 1823
            // Project_Column3
1879 1824
            // 
1880
            dataGridViewCellStyle87.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1881
            this.Project_Column3.DefaultCellStyle = dataGridViewCellStyle87;
1825
            dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1826
            this.Project_Column3.DefaultCellStyle = dataGridViewCellStyle29;
1882 1827
            this.Project_Column3.HeaderText = "№";
1883 1828
            this.Project_Column3.Name = "Project_Column3";
1884 1829
            this.Project_Column3.ReadOnly = true;
......
1896 1841
            // 
1897 1842
            // Project_Column5
1898 1843
            // 
1899
            dataGridViewCellStyle88.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1900
            this.Project_Column5.DefaultCellStyle = dataGridViewCellStyle88;
1844
            dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1845
            this.Project_Column5.DefaultCellStyle = dataGridViewCellStyle30;
1901 1846
            this.Project_Column5.HeaderText = "現場名";
1902 1847
            this.Project_Column5.Name = "Project_Column5";
1903 1848
            this.Project_Column5.ReadOnly = true;
......
1930 1875
            // 
1931 1876
            // Project_Column8
1932 1877
            // 
1933
            dataGridViewCellStyle89.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1934
            this.Project_Column8.DefaultCellStyle = dataGridViewCellStyle89;
1878
            dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1879
            this.Project_Column8.DefaultCellStyle = dataGridViewCellStyle31;
1935 1880
            this.Project_Column8.HeaderText = "請求書\r\n 金額";
1936 1881
            this.Project_Column8.Name = "Project_Column8";
1937 1882
            this.Project_Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1940 1885
            // 
1941 1886
            // Project_Column9
1942 1887
            // 
1943
            dataGridViewCellStyle90.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1944
            this.Project_Column9.DefaultCellStyle = dataGridViewCellStyle90;
1888
            dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1889
            this.Project_Column9.DefaultCellStyle = dataGridViewCellStyle32;
1945 1890
            this.Project_Column9.HeaderText = "高速代\r\n駐車代";
1946 1891
            this.Project_Column9.Name = "Project_Column9";
1947 1892
            this.Project_Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1950 1895
            // 
1951 1896
            // Project_Column10
1952 1897
            // 
1953
            dataGridViewCellStyle91.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1954
            this.Project_Column10.DefaultCellStyle = dataGridViewCellStyle91;
1898
            dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1899
            this.Project_Column10.DefaultCellStyle = dataGridViewCellStyle33;
1955 1900
            this.Project_Column10.HeaderText = "金物代";
1956 1901
            this.Project_Column10.Name = "Project_Column10";
1957 1902
            this.Project_Column10.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1960 1905
            // 
1961 1906
            // Project_Column11
1962 1907
            // 
1963
            dataGridViewCellStyle92.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1964
            this.Project_Column11.DefaultCellStyle = dataGridViewCellStyle92;
1908
            dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1909
            this.Project_Column11.DefaultCellStyle = dataGridViewCellStyle34;
1965 1910
            this.Project_Column11.HeaderText = "産廃税";
1966 1911
            this.Project_Column11.Name = "Project_Column11";
1967 1912
            this.Project_Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1970 1915
            // 
1971 1916
            // Project_Column12
1972 1917
            // 
1973
            dataGridViewCellStyle93.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1974
            this.Project_Column12.DefaultCellStyle = dataGridViewCellStyle93;
1918
            dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1919
            this.Project_Column12.DefaultCellStyle = dataGridViewCellStyle35;
1975 1920
            this.Project_Column12.HeaderText = "請求\r\n金額";
1976 1921
            this.Project_Column12.Name = "Project_Column12";
1977 1922
            this.Project_Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1980 1925
            // 
1981 1926
            // Project_Column13
1982 1927
            // 
1983
            dataGridViewCellStyle94.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1984
            this.Project_Column13.DefaultCellStyle = dataGridViewCellStyle94;
1928
            dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1929
            this.Project_Column13.DefaultCellStyle = dataGridViewCellStyle36;
1985 1930
            this.Project_Column13.HeaderText = "値引\r\n金額";
1986 1931
            this.Project_Column13.Name = "Project_Column13";
1987 1932
            this.Project_Column13.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1990 1935
            // 
1991 1936
            // Project_Column14
1992 1937
            // 
1993
            dataGridViewCellStyle95.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1994
            this.Project_Column14.DefaultCellStyle = dataGridViewCellStyle95;
1938
            dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1939
            this.Project_Column14.DefaultCellStyle = dataGridViewCellStyle37;
1995 1940
            this.Project_Column14.HeaderText = "相殺\r\n金額";
1996 1941
            this.Project_Column14.Name = "Project_Column14";
1997 1942
            this.Project_Column14.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
2000 1945
            // 
2001 1946
            // Project_Column15
2002 1947
            // 
2003
            dataGridViewCellStyle96.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
2004
            dataGridViewCellStyle96.Format = "#,##0";
2005
            this.Project_Column15.DefaultCellStyle = dataGridViewCellStyle96;
1948
            dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1949
            dataGridViewCellStyle38.Format = "#,##0";
1950
            this.Project_Column15.DefaultCellStyle = dataGridViewCellStyle38;
2006 1951
            this.Project_Column15.HeaderText = "次回\r\n繰越";
2007 1952
            this.Project_Column15.Name = "Project_Column15";
2008 1953
            this.Project_Column15.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
2011 1956
            // 
2012 1957
            // Project_Column16
2013 1958
            // 
2014
            dataGridViewCellStyle97.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
2015
            this.Project_Column16.DefaultCellStyle = dataGridViewCellStyle97;
1959
            dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1960
            this.Project_Column16.DefaultCellStyle = dataGridViewCellStyle39;
2016 1961
            this.Project_Column16.HeaderText = "高速代\r\n駐車代";
2017 1962
            this.Project_Column16.Name = "Project_Column16";
2018 1963
            this.Project_Column16.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
2021 1966
            // 
2022 1967
            // Project_Column17
2023 1968
            // 
2024
            dataGridViewCellStyle98.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
2025
            this.Project_Column17.DefaultCellStyle = dataGridViewCellStyle98;
1969
            dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1970
            this.Project_Column17.DefaultCellStyle = dataGridViewCellStyle40;
2026 1971
            this.Project_Column17.HeaderText = "金物代";
2027 1972
            this.Project_Column17.Name = "Project_Column17";
2028 1973
            this.Project_Column17.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
2031 1976
            // 
2032 1977
            // Project_Column18
2033 1978
            // 
2034
            dataGridViewCellStyle99.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
2035
            this.Project_Column18.DefaultCellStyle = dataGridViewCellStyle99;
1979
            dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1980
            this.Project_Column18.DefaultCellStyle = dataGridViewCellStyle41;
2036 1981
            this.Project_Column18.HeaderText = "産廃税";
2037 1982
            this.Project_Column18.Name = "Project_Column18";
2038 1983
            this.Project_Column18.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
2041 1986
            // 
2042 1987
            // Project_Column19
2043 1988
            // 
2044
            dataGridViewCellStyle100.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
2045
            this.Project_Column19.DefaultCellStyle = dataGridViewCellStyle100;
1989
            dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1990
            this.Project_Column19.DefaultCellStyle = dataGridViewCellStyle42;
2046 1991
            this.Project_Column19.HeaderText = "協力金";
2047 1992
            this.Project_Column19.Name = "Project_Column19";
2048 1993
            this.Project_Column19.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
2058 2003
            // 
2059 2004
            // KyouryokuKin_Pro
2060 2005
            // 
2061
            dataGridViewCellStyle101.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2062
            dataGridViewCellStyle101.BackColor = System.Drawing.Color.White;
2063
            dataGridViewCellStyle101.ForeColor = System.Drawing.Color.Black;
2064
            this.KyouryokuKin_Pro.DefaultCellStyle = dataGridViewCellStyle101;
2006
            dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2007
            dataGridViewCellStyle43.BackColor = System.Drawing.Color.White;
2008
            dataGridViewCellStyle43.ForeColor = System.Drawing.Color.Black;
2009
            this.KyouryokuKin_Pro.DefaultCellStyle = dataGridViewCellStyle43;
2065 2010
            this.KyouryokuKin_Pro.HeaderText = "協力金\r\n有無";
2066 2011
            this.KyouryokuKin_Pro.Name = "KyouryokuKin_Pro";
2067 2012
            this.KyouryokuKin_Pro.Resizable = System.Windows.Forms.DataGridViewTriState.False;
2068 2013
            // 
2069 2014
            // Project_Column21
2070 2015
            // 
2071
            dataGridViewCellStyle102.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2072
            this.Project_Column21.DefaultCellStyle = dataGridViewCellStyle102;
2016
            dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2017
            this.Project_Column21.DefaultCellStyle = dataGridViewCellStyle44;
2073 2018
            this.Project_Column21.HeaderText = "注文書\r\n送付";
2074 2019
            this.Project_Column21.Name = "Project_Column21";
2075 2020
            this.Project_Column21.ReadOnly = true;
......
2078 2023
            // 
2079 2024
            // Project_Column22
2080 2025
            // 
2081
            dataGridViewCellStyle103.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2082
            this.Project_Column22.DefaultCellStyle = dataGridViewCellStyle103;
2026
            dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2027
            this.Project_Column22.DefaultCellStyle = dataGridViewCellStyle45;
2083 2028
            this.Project_Column22.HeaderText = "注文書\r\n到着";
2084 2029
            this.Project_Column22.Name = "Project_Column22";
2085 2030
            this.Project_Column22.ReadOnly = true;
......
2088 2033
            // 
2089 2034
            // Project_Column23
2090 2035
            // 
2091
            dataGridViewCellStyle104.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2092
            this.Project_Column23.DefaultCellStyle = dataGridViewCellStyle104;
2036
            dataGridViewCellStyle46.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2037
            this.Project_Column23.DefaultCellStyle = dataGridViewCellStyle46;
2093 2038
            this.Project_Column23.HeaderText = "予算書";
2094 2039
            this.Project_Column23.Name = "Project_Column23";
2095 2040
            this.Project_Column23.ReadOnly = true;
......
2105 2050
            // 
2106 2051
            // Project_Column24
2107 2052
            // 
2108
            dataGridViewCellStyle105.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2109
            this.Project_Column24.DefaultCellStyle = dataGridViewCellStyle105;
2053
            dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2054
            this.Project_Column24.DefaultCellStyle = dataGridViewCellStyle47;
2110 2055
            this.Project_Column24.HeaderText = "担当者\r\n確認";
2111 2056
            this.Project_Column24.Name = "Project_Column24";
2112 2057
            this.Project_Column24.ReadOnly = true;
......
2129 2074
            // 
2130 2075
            // Project_Column25
2131 2076
            // 
2132
            dataGridViewCellStyle106.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2133
            this.Project_Column25.DefaultCellStyle = dataGridViewCellStyle106;
2077
            dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2078
            this.Project_Column25.DefaultCellStyle = dataGridViewCellStyle48;
2134 2079
            this.Project_Column25.HeaderText = "承認者1\r\n承認";
2135 2080
            this.Project_Column25.Name = "Project_Column25";
2136 2081
            this.Project_Column25.ReadOnly = true;
......
2167 2112
            // 
2168 2113
            // Project_Column26
2169 2114
            // 
2170
            dataGridViewCellStyle107.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2171
            this.Project_Column26.DefaultCellStyle = dataGridViewCellStyle107;
2115
            dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2116
            this.Project_Column26.DefaultCellStyle = dataGridViewCellStyle49;
2172 2117
            this.Project_Column26.HeaderText = "承認者2\r\n承認";
2173 2118
            this.Project_Column26.Name = "Project_Column26";
2174 2119
            this.Project_Column26.ReadOnly = true;
......
2205 2150
            // 
2206 2151
            // Project_Column27
2207 2152
            // 
2208
            dataGridViewCellStyle108.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2209
            this.Project_Column27.DefaultCellStyle = dataGridViewCellStyle108;
2153
            dataGridViewCellStyle50.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2154
            this.Project_Column27.DefaultCellStyle = dataGridViewCellStyle50;
2210 2155
            this.Project_Column27.HeaderText = "承認者3\r\n承認";
2211 2156
            this.Project_Column27.Name = "Project_Column27";
2212 2157
            this.Project_Column27.ReadOnly = true;
......
2243 2188
            // 
2244 2189
            // Project_Column28
2245 2190
            // 
2246
            dataGridViewCellStyle109.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2247
            this.Project_Column28.DefaultCellStyle = dataGridViewCellStyle109;
2191
            dataGridViewCellStyle51.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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