プロジェクト

全般

プロフィール

リビジョン 236

堀内7年以上前に追加

検索一覧営業年度時バグ修正
請求まとめ、担当者選択コンボ追加

差分を表示:

branches/src/ProcessManagement/ProcessManagement/Common/CommonMotions.cs
368 368
        }
369 369
        #endregion
370 370

  
371
        #region 対象日より営業期・工事年度を取得する(実装途中)
372
        /// <summary>
373
        /// 対象日より営業期・工事年度を取得する(実装途中)
374
        /// </summary>
375
        /// <param name="NowDay"></param>
376
        /// <returns></returns>
377
        public static int ConvDate2YearOrPeriod(DateTime NowDay)
378
        {
379
            int nRetVal = 0;
380
            // 初期値セット
381
            if (m_systemMaster.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
382
                nRetVal = m_systemMaster.BusinessPeriod;
383
            else
384
                nRetVal = m_systemMaster.ConstructionYear;
385
            try
386
            {
387

  
388

  
389
                return nRetVal;
390
            }
391
            catch (Exception ex)
392
            {
393
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
394
                return nRetVal;
395
            }
396
        }
397
        #endregion
398

  
371 399
        #region データ変換メソッド
372 400
        #region 西暦を和暦に変換する
373 401
        /// <summary>
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalList/FrmApprovalListAuxiliary.cs
573 573
                int iYear = 0;
574 574
                int month = 0;
575 575
                int day = 0;
576
                bool bPeriod = true;
576
                bool bPeriod = false;
577 577
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
578 578
                {   // ?c???
579 579
                    iYear = CommonMotions.PeriodCountToYear(CommonMotions.cnvInt(numUDConstPro.Value));
580 580
                    bPeriod = true;
581 581
                }
582
                else
583
                {   // ?H???N?x
584
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
585
                }
582 586
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
583 587
                dtStart = new DateTime(iYear, month, day);
584 588
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // ?I????{1?N?|1??
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstractionList/FrmConstructionListAuxiliary.cs
1208 1208
        {
1209 1209
            try
1210 1210
            {
1211
                // ?V?Z?L?????e?B?f?[?^??????????m?F????
1212
                if (CommonMotions.LoginUserData.SecCode == 0)
1213
                {
1214
                    InitCombBox_OLD();
1215
                }
1216
                else
1217
                {
1218
                    InitCombBox_NEW();
1219
                }
1220
            }
1221
            catch (Exception ex)
1222
            {
1223
                logger.ErrorFormat("?V?X?e???G???[?F{0}?F{1}", CommonMotions.GetMethodName(), ex.Message);
1224
            }
1225
        }
1226
        #endregion
1227

  
1228
        #region ?R???{?{?b?N?X?????\???i???j
1229
        /// <summary>
1230
        /// ?R???{?{?b?N?X?????\???i???j
1231
        /// </summary>
1232
        private void InitCombBox_OLD()
1233
        {
1234
            try
1235
            {
1236
                // ?V?X?e????????????f?[?^?A?N?Z?X???????????
1237
                if (CommonMotions.LoginUserData.SecurityManagement == CommonDefine.AdminSecurityManagement
1238
                || CommonMotions.LoginUserData.SecurityManagement == CommonDefine.SystemManageDiv[(int)CommonDefine.SysManaDivNo.PresidentAuthority].Key
1239
                || CommonMotions.LoginUserData.SecurityManagement == CommonDefine.SystemManageDiv[(int)CommonDefine.SysManaDivNo.SupervisorAuthority].Key
1240
                || CommonMotions.LoginUserData.DepartmentCode == CommonDefine.s_GeneralAffairsDevision)
1241
                {
1242
                    // ?V?X?e???????
1243
                    // ????@???????
1244
                    // ?????@???????
1245
                    // ?????????????S???????
1246

  
1247
                    // ?????E?S????R???{?\??
1248
                    DispAllCombBoxControl(true);
1249
                }
1250
                else if (CommonMotions.LoginUserData.SecurityManagement == CommonDefine.SystemManageDiv[(int)CommonDefine.SysManaDivNo.SuperiorAuthority].Key)
1251
                {
1252
                    // ??????
1253
                    // ?????R???{??\??
1254
                    NonDispDepCombBox();
1255
                }
1256
                else if (CommonMotions.LoginUserData.SecurityManagement == CommonDefine.SystemManageDiv[(int)CommonDefine.SysManaDivNo.UserAuthority].Key)
1257
                {
1258
                    // ???g?p??i???????A?N?Z?X??\?j
1259
                    // ?????E?S????R???{??\??
1260
                    DispAllCombBoxControl(false);
1261
                }
1262
            }
1263
            catch (Exception ex)
1264
            {
1265
                logger.ErrorFormat("?V?X?e???G???[?F{0}?F{1}", CommonMotions.GetMethodName(), ex.Message);
1266
            }
1267
        }
1268
        #endregion
1269

  
1270
        #region ?R???{?{?b?N?X?????\???i?V?j
1271
        /// <summary>
1272
        /// ?R???{?{?b?N?X?????\???i?V?j
1273
        /// </summary>
1274
        private void InitCombBox_NEW()
1275
        {
1276
            try
1277
            {
1278 1211
                int AllPath = (int)CommonDefine.SecurityRangePos.AllPath;           // ?S????
1279 1212
                int Multiple = (int)CommonDefine.SecurityRangePos.Multiple;         // ????????
1280 1213
                int Only = (int)CommonDefine.SecurityRangePos.Only;                 // ?????????
......
1528 1461
                int iYear = 0;
1529 1462
                int month = 0;
1530 1463
                int day = 0;
1531
                bool bPeriod = true;
1464
                bool bPeriod = false;
1532 1465
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
1533 1466
                {   // ?c???
1534 1467
                    iYear = CommonMotions.PeriodCountToYear(CommonMotions.cnvInt(numUDConstPro.Value));
1535 1468
                    bPeriod = true;
1536 1469
                }
1470
                else
1471
                {   // ?H???N?x
1472
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
1473
                }
1537 1474
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
1538 1475
                dtStart = new DateTime(iYear, month, day);
1539 1476
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // ?I????{1?N?|1??
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionJoin/FrmConstructionJoinAuxiliary.cs
437 437
                int iYear = 0;
438 438
                int month = 0;
439 439
                int day = 0;
440
                bool bPeriod = true;
440
                bool bPeriod = false;
441 441
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
442 442
                {   // 営業期
443 443
                    iYear = CommonMotions.PeriodCountToYear(CommonMotions.cnvInt(numUDConstPro.Value));
444 444
                    bPeriod = true;
445 445
                }
446
                else
447
                {   // 工事年度
448
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
449
                }
446 450
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
447 451
                dtStart = new DateTime(iYear, month, day);
448 452
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // 終了は+1年-1日
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedger/FrmConstructionLedgerAuxiliary.cs
8479 8479
                int iYear = 0;
8480 8480
                int month = 0;
8481 8481
                int day = 0;
8482
                bool bPeriod = true;
8482
                bool bPeriod = false;
8483 8483
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
8484 8484
                {   // 営業期
8485 8485
                    iYear = CommonMotions.PeriodCountToYear(C16);
8486 8486
                    bPeriod = true;
8487 8487
                }
8488
                else
8489
                {   // 工事年度
8490
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
8491
                }
8488 8492
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
8489 8493
                dtStart = new DateTime(iYear, month, day);
8490 8494
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // 終了は+1年-1日
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedgerList/FrmConstructionLedgerListAuxiliary.cs
523 523
                int iYear = 0;
524 524
                int month = 0;
525 525
                int day = 0;
526
                bool bPeriod = true;
526
                bool bPeriod = false;
527 527
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
528 528
                {   // ?c???
529 529
                    iYear = CommonMotions.PeriodCountToYear(CommonMotions.cnvInt(numUDConstPro.Value));
530 530
                    bPeriod = true;
531 531
                }
532
                else
533
                {   // ?H???N?x
534
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
535
                }
532 536
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
533 537
                dtStart = new DateTime(iYear, month, day);
534 538
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // ?I????{1?N?|1??
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DRList/FrmDRListAuxiliary.cs
1094 1094
                int iYear = 0;
1095 1095
                int month = 0;
1096 1096
                int day = 0;
1097
                bool bPeriod = true;
1097
                bool bPeriod = false;
1098 1098
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
1099 1099
                {   // ?c???
1100 1100
                    iYear = CommonMotions.PeriodCountToYear(CommonMotions.cnvInt(numUDConstPro.Value));
1101 1101
                    bPeriod = true;
1102 1102
                }
1103
                else
1104
                {   // ?H???N?x
1105
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
1106
                }
1103 1107
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
1104 1108
                dtStart = new DateTime(iYear, month, day);
1105 1109
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // ?I????{1?N?|1??
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DepExpenssList/FrmDepExpenssListAuxiliary.cs
748 748
                int iYear = 0;
749 749
                int month = 0;
750 750
                int day = 0;
751
                bool bPeriod = true;
751
                bool bPeriod = false;
752 752
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
753 753
                {   // ?c???
754 754
                    iYear = CommonMotions.PeriodCountToYear(CommonMotions.cnvInt(numUDConstPro.Value));
755 755
                    bPeriod = true;
756 756
                }
757
                else
758
                {   // ?H???N?x
759
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
760
                }
757 761
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
758 762
                dtStart = new DateTime(iYear, month, day);
759 763
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // ?I????{1?N?|1??
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/ConstrMATLList/FrmConstrMATLListAuxiliary.cs
1102 1102
                int iYear = 0;
1103 1103
                int month = 0;
1104 1104
                int day = 0;
1105
                bool bPeriod = true;
1105
                bool bPeriod = false;
1106 1106
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
1107 1107
                {   // ?c???
1108 1108
                    iYear = CommonMotions.PeriodCountToYear(CommonMotions.cnvInt(numUDConstPro.Value));
1109 1109
                    bPeriod = true;
1110 1110
                }
1111
                else
1112
                {   // ?H???N?x
1113
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
1114
                }
1111 1115
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
1112 1116
                dtStart = new DateTime(iYear, month, day);
1113 1117
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // ?I????{1?N?|1??
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/PriceOfBudget/FrmPriceOfBudgetAuxiliary.cs
603 603
                int iYear = 0;
604 604
                int month = 0;
605 605
                int day = 0;
606
                bool bPeriod = true;
606
                bool bPeriod = false;
607 607
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
608 608
                {   // ?c???
609 609
                    iYear = CommonMotions.PeriodCountToYear(CommonMotions.cnvInt(numUDConstPro.Value));
610 610
                    bPeriod = true;
611 611
                }
612
                else
613
                {   // ?H???N?x
614
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
615
                }
612 616
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
613 617
                dtStart = new DateTime(iYear, month, day);
614 618
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // ?I????{1?N?|1??
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/PurchaseOrderStatus/FrmPurchaseOrderStatusAuxiliary.cs
1129 1129
                int iYear = 0;
1130 1130
                int month = 0;
1131 1131
                int day = 0;
1132
                bool bPeriod = true;
1132
                bool bPeriod = false;
1133 1133
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
1134 1134
                {   // ?c???
1135 1135
                    iYear = CommonMotions.PeriodCountToYear(CommonMotions.cnvInt(numUDConstPro.Value));
1136 1136
                    bPeriod = true;
1137 1137
                }
1138
                else
1139
                {   // ?H???N?x
1140
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
1141
                }
1138 1142
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
1139 1143
                dtStart = new DateTime(iYear, month, day);
1140 1144
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // ?I????{1?N?|1??
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ReqbillingStatus/FrmReqBillingStatusAuxiliary.cs
1093 1093
                int iYear = 0;
1094 1094
                int month = 0;
1095 1095
                int day = 0;
1096
                bool bPeriod = true;
1096
                bool bPeriod = false;
1097 1097
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
1098 1098
                {   // ?c???
1099 1099
                    iYear = CommonMotions.PeriodCountToYear(CommonMotions.cnvInt(numUDConstPro.Value));
1100 1100
                    bPeriod = true;
1101 1101
                }
1102
                else
1103
                {   // ?H???N?x
1104
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
1105
                }
1102 1106
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
1103 1107
                dtStart = new DateTime(iYear, month, day);
1104 1108
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // ?I????{1?N?|1??
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/ConstrReqList/FrmConstrReqListAuxiliary.cs
1014 1014
                int iYear = 0;
1015 1015
                int month = 0;
1016 1016
                int day = 0;
1017
                bool bPeriod = true;
1017
                bool bPeriod = false;
1018 1018
                if (CommonMotions.SystemMasterData.ConstructionNoBase == (int)CommonDefine.SystemConstructionNoBase.BusinessPeriod)
1019 1019
                {   // ?c???
1020 1020
                    iYear = CommonMotions.PeriodCountToYear(CommonMotions.cnvInt(numUDConstPro.Value));
1021 1021
                    bPeriod = true;
1022 1022
                }
1023
                else
1024
                {   // ?H???N?x
1025
                    iYear = CommonMotions.SystemMasterData.ConstructionYear;
1026
                }
1023 1027
                CommonMotions.GetBeginningMonthDay(bPeriod, ref month, ref day);
1024 1028
                dtStart = new DateTime(iYear, month, day);
1025 1029
                dtEnd = dtStart.AddYears(1).AddDays(-1);     // ?I????{1?N?|1??
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestSummaryList/FrmRequestSummaryList.cs
532 532
            // ?R???{?{?b?N?X?Z?b?g
533 533
            LoadTargetMonth(ref m_Payday);
534 534

  
535
            // ?R???{?{?b?N?X?Z?b?g
536
            SetcmbDepartment();
537
            SetcmbPersons();
538

  
539
            // ?R???{?{?b?N?X?????\??
540
            InitCombBox();
541

  
535 542
            // ???[?U???????
536 543
            ClsSecurityPermission.SetUserType(m_UserInfo);
537 544

  
......
776 783
            PaIList = new List<PaymentApprovalInfo>();
777 784
            try
778 785
            {
779
                string sSql = string.Format(" where CompanyCode = {0} and TargetDate = {1} and SeqNo = {2} and LineCount = {3} order by ApprovalNo", CompanyCode, m_Select_TargetDate, SeqNo, LineCuont);
780
                if (!IoPai.SelectAction(sSql, ref PaIList)) return false;
786
                StringBuilder sSql = new StringBuilder();
787
                sSql.AppendFormat(" where CompanyCode = {0}", CompanyCode);
788
                sSql.AppendFormat(" and TargetDate = {0}", m_Select_TargetDate);
789
                sSql.AppendFormat(" and SeqNo = {0}", SeqNo);
790
                sSql.AppendFormat(" and LineCount = {0}", LineCuont);
791
                sSql.Append(" order by ApprovalNo");
792
                if (!IoPai.SelectAction(sSql.ToString(), ref PaIList)) return false;
781 793

  
782 794
                return true;
783 795

  
......
3830 3842
            NotApprovalProcess();
3831 3843
        }
3832 3844
        #endregion
3845

  
3846
        #region ?????R???{?{?b?N?X??X
3847
        /// <summary>
3848
        /// ?????R???{?{?b?N?X??X
3849
        /// </summary>
3850
        /// <param name="sender"></param>
3851
        /// <param name="e"></param>
3852
        private void cmbDepartment_TextChanged(object sender, EventArgs e)
3853
        {
3854
            if (m_initDataLoad) return;
3855

  
3856
            // ?S????R???{?{?b?N?X??X
3857
            SetcmbPersons();
3858

  
3859
            // ?f?[?^?\??
3860
            DispGridData();
3861
        }
3862
        #endregion
3863

  
3864
        #region ?S????R???{?{?b?N?X??X
3865
        /// <summary>
3866
        /// ?S?????X
3867
        /// </summary>
3868
        /// <param name="sender"></param>
3869
        /// <param name="e"></param>
3870
        private void cmbConstructionPerson_TextChanged(object sender, EventArgs e)
3871
        {
3872
            if (m_initDataLoad) return;
3873

  
3874
            // ?S????I?????????I????????
3875
            SetPerosonToDepartment();
3876

  
3877
            // ?f?[?^?\??
3878
            DispGridData();
3879
        }
3880
        #endregion
3881

  
3882
        #region ?c??E?H???S????????
3883
        /// <summary>
3884
        /// ?c??E?H???S????????
3885
        /// </summary>
3886
        /// <param name="sender"></param>
3887
        /// <param name="e"></param>
3888
        private void radioButton_CheckedChanged(object sender, EventArgs e)
3889
        {
3890
            if (m_initDataLoad) return;
3891

  
3892
            // ?f?[?^?\??
3893
            DispGridData();
3894
        }
3895
        #endregion
3833 3896
    }
3834 3897
}
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 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();
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();
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 110
            this.pnlApproval = new System.Windows.Forms.Panel();
107 111
            this.lblApprovalCount = new System.Windows.Forms.Label();
108 112
            this.btnPetition = new System.Windows.Forms.Button();
......
527 531
            | System.Windows.Forms.AnchorStyles.Right)));
528 532
            this.groupBoxEx1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
529 533
            this.groupBoxEx1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
530
            this.groupBoxEx1.BorderColor = System.Drawing.Color.Black;
534
            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);
531 539
            this.groupBoxEx1.Controls.Add(this.pnlApproval);
532 540
            this.groupBoxEx1.Controls.Add(this.pnlApprovalButton);
533 541
            this.groupBoxEx1.Controls.Add(this.lblPaymentDate);
......
543 551
            this.groupBoxEx1.Margin = new System.Windows.Forms.Padding(4);
544 552
            this.groupBoxEx1.Name = "groupBoxEx1";
545 553
            this.groupBoxEx1.Padding = new System.Windows.Forms.Padding(4);
546
            this.groupBoxEx1.Size = new System.Drawing.Size(1320, 40);
554
            this.groupBoxEx1.Size = new System.Drawing.Size(1320, 68);
547 555
            this.groupBoxEx1.TabIndex = 2;
548 556
            this.groupBoxEx1.TabStop = false;
549 557
            // 
558
            // label12
559
            // 
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;
570
            // 
571
            // cmbConstructionPerson
572
            // 
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);
582
            // 
583
            // cmbDepartment
584
            // 
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);
594
            // 
595
            // label11
596
            // 
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;
607
            // 
550 608
            // pnlApproval
551 609
            // 
552 610
            this.pnlApproval.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
......
658 716
            this.lblPaymentDate.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
659 717
            this.lblPaymentDate.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
660 718
            this.lblPaymentDate.ForeColor = System.Drawing.Color.Black;
661
            this.lblPaymentDate.Location = new System.Drawing.Point(425, 5);
719
            this.lblPaymentDate.Location = new System.Drawing.Point(471, 5);
662 720
            this.lblPaymentDate.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
663 721
            this.lblPaymentDate.Name = "lblPaymentDate";
664 722
            this.lblPaymentDate.Size = new System.Drawing.Size(120, 25);
......
672 730
            this.label5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
673 731
            this.label5.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
674 732
            this.label5.ForeColor = System.Drawing.Color.Black;
675
            this.label5.Location = new System.Drawing.Point(303, 5);
733
            this.label5.Location = new System.Drawing.Point(343, 5);
676 734
            this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
677 735
            this.label5.Name = "label5";
678
            this.label5.Size = new System.Drawing.Size(114, 25);
736
            this.label5.Size = new System.Drawing.Size(120, 25);
679 737
            this.label5.TabIndex = 2;
680 738
            this.label5.Text = "支払日";
681 739
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
686 744
            this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
687 745
            this.label2.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
688 746
            this.label2.ForeColor = System.Drawing.Color.Black;
689
            this.label2.Location = new System.Drawing.Point(561, 5);
747
            this.label2.Location = new System.Drawing.Point(607, 5);
690 748
            this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
691 749
            this.label2.Name = "label2";
692
            this.label2.Size = new System.Drawing.Size(114, 25);
750
            this.label2.Size = new System.Drawing.Size(120, 25);
693 751
            this.label2.TabIndex = 4;
694 752
            this.label2.Text = "表示形式";
695 753
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
700 758
            this.rdbProject.BackColor = System.Drawing.Color.White;
701 759
            this.rdbProject.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
702 760
            this.rdbProject.ForeColor = System.Drawing.Color.Black;
703
            this.rdbProject.Location = new System.Drawing.Point(813, 8);
761
            this.rdbProject.Location = new System.Drawing.Point(861, 8);
704 762
            this.rdbProject.Margin = new System.Windows.Forms.Padding(4);
705 763
            this.rdbProject.Name = "rdbProject";
706 764
            this.rdbProject.Size = new System.Drawing.Size(77, 20);
......
716 774
            this.rdbCompany.Checked = true;
717 775
            this.rdbCompany.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
718 776
            this.rdbCompany.ForeColor = System.Drawing.Color.Black;
719
            this.rdbCompany.Location = new System.Drawing.Point(703, 8);
777
            this.rdbCompany.Location = new System.Drawing.Point(751, 8);
720 778
            this.rdbCompany.Margin = new System.Windows.Forms.Padding(4);
721 779
            this.rdbCompany.Name = "rdbCompany";
722 780
            this.rdbCompany.Size = new System.Drawing.Size(77, 20);
......
732 790
            this.cmbTargetMonth.BackColor = System.Drawing.Color.White;
733 791
            this.cmbTargetMonth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
734 792
            this.cmbTargetMonth.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
735
            this.cmbTargetMonth.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
793
            this.cmbTargetMonth.Font = new System.Drawing.Font("Century", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
736 794
            this.cmbTargetMonth.FormattingEnabled = true;
737 795
            this.cmbTargetMonth.Location = new System.Drawing.Point(127, 6);
738 796
            this.cmbTargetMonth.Margin = new System.Windows.Forms.Padding(4);
739 797
            this.cmbTargetMonth.Name = "cmbTargetMonth";
740
            this.cmbTargetMonth.Size = new System.Drawing.Size(160, 28);
798
            this.cmbTargetMonth.Size = new System.Drawing.Size(160, 26);
741 799
            this.cmbTargetMonth.TabIndex = 1;
742 800
            this.cmbTargetMonth.SelectedIndexChanged += new System.EventHandler(this.cmbTargetMonth_SelectedIndexChanged);
743 801
            // 
......
752 810
            this.label3.Name = "label3";
753 811
            this.label3.Size = new System.Drawing.Size(114, 25);
754 812
            this.label3.TabIndex = 0;
755
            this.label3.Text = "対月";
813
            this.label3.Text = "対月";
756 814
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
757 815
            // 
758 816
            // label4
......
761 819
            this.label4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
762 820
            this.label4.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
763 821
            this.label4.ForeColor = System.Drawing.Color.Black;
764
            this.label4.Location = new System.Drawing.Point(683, 4);
822
            this.label4.Location = new System.Drawing.Point(735, 4);
765 823
            this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
766 824
            this.label4.Name = "label4";
767 825
            this.label4.Size = new System.Drawing.Size(227, 27);
......
778 836
            | System.Windows.Forms.AnchorStyles.Right)));
779 837
            this.dgvCompany.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
780 838
            this.dgvCompany.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
781
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
782
            dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
783
            dataGridViewCellStyle1.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
784
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
785
            this.dgvCompany.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
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;
786 844
            this.dgvCompany.ColumnHeadersHeight = 45;
787 845
            this.dgvCompany.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
788 846
            this.dgvCompany.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
875 933
            this.Column64,
876 934
            this.Column139,
877 935
            this.Column140});
878
            dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
879
            dataGridViewCellStyle27.BackColor = System.Drawing.SystemColors.Window;
880
            dataGridViewCellStyle27.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
881
            dataGridViewCellStyle27.ForeColor = System.Drawing.SystemColors.ControlText;
882
            dataGridViewCellStyle27.SelectionBackColor = System.Drawing.Color.LightSeaGreen;
883
            dataGridViewCellStyle27.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
884
            dataGridViewCellStyle27.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
885
            this.dgvCompany.DefaultCellStyle = dataGridViewCellStyle27;
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;
886 944
            this.dgvCompany.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
887 945
            this.dgvCompany.EnableHeadersVisualStyles = false;
888
            this.dgvCompany.Location = new System.Drawing.Point(10, 88);
946
            this.dgvCompany.Location = new System.Drawing.Point(10, 110);
889 947
            this.dgvCompany.Margin = new System.Windows.Forms.Padding(0);
890 948
            this.dgvCompany.MultiSelect = false;
891 949
            this.dgvCompany.Name = "dgvCompany";
......
894 952
            this.dgvCompany.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
895 953
            this.dgvCompany.RowTemplate.Height = 21;
896 954
            this.dgvCompany.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
897
            this.dgvCompany.Size = new System.Drawing.Size(1320, 555);
955
            this.dgvCompany.Size = new System.Drawing.Size(1320, 534);
898 956
            this.dgvCompany.TabIndex = 4;
899 957
            this.dgvCompany.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.DataGridView_CellBeginEdit);
900 958
            this.dgvCompany.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellDoubleClick);
......
969 1027
            // 
970 1028
            // Column1
971 1029
            // 
972
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
973
            this.Column1.DefaultCellStyle = dataGridViewCellStyle2;
1030
            dataGridViewCellStyle60.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1031
            this.Column1.DefaultCellStyle = dataGridViewCellStyle60;
974 1032
            this.Column1.FillWeight = 110F;
975 1033
            this.Column1.HeaderText = "№";
976 1034
            this.Column1.Name = "Column1";
......
1024 1082
            // 
1025 1083
            // Column4
1026 1084
            // 
1027
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1028
            this.Column4.DefaultCellStyle = dataGridViewCellStyle3;
1085
            dataGridViewCellStyle61.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1086
            this.Column4.DefaultCellStyle = dataGridViewCellStyle61;
1029 1087
            this.Column4.HeaderText = "請求書\r\n金額";
1030 1088
            this.Column4.Name = "Column4";
1031 1089
            this.Column4.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1034 1092
            // 
1035 1093
            // Column9
1036 1094
            // 
1037
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1038
            this.Column9.DefaultCellStyle = dataGridViewCellStyle4;
1095
            dataGridViewCellStyle62.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1096
            this.Column9.DefaultCellStyle = dataGridViewCellStyle62;
1039 1097
            this.Column9.HeaderText = "高速代駐車代";
1040 1098
            this.Column9.Name = "Column9";
1041 1099
            this.Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1044 1102
            // 
1045 1103
            // Column10
1046 1104
            // 
1047
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1048
            this.Column10.DefaultCellStyle = dataGridViewCellStyle5;
1105
            dataGridViewCellStyle63.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1106
            this.Column10.DefaultCellStyle = dataGridViewCellStyle63;
1049 1107
            this.Column10.HeaderText = "金物代";
1050 1108
            this.Column10.Name = "Column10";
1051 1109
            this.Column10.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1054 1112
            // 
1055 1113
            // Column11
1056 1114
            // 
1057
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1058
            this.Column11.DefaultCellStyle = dataGridViewCellStyle6;
1115
            dataGridViewCellStyle64.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1116
            this.Column11.DefaultCellStyle = dataGridViewCellStyle64;
1059 1117
            this.Column11.HeaderText = "産廃税";
1060 1118
            this.Column11.Name = "Column11";
1061 1119
            this.Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1064 1122
            // 
1065 1123
            // Column5
1066 1124
            // 
1067
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1068
            this.Column5.DefaultCellStyle = dataGridViewCellStyle7;
1125
            dataGridViewCellStyle65.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1126
            this.Column5.DefaultCellStyle = dataGridViewCellStyle65;
1069 1127
            this.Column5.HeaderText = "請求\r\n金額";
1070 1128
            this.Column5.Name = "Column5";
1071 1129
            this.Column5.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1074 1132
            // 
1075 1133
            // Column6
1076 1134
            // 
1077
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1078
            this.Column6.DefaultCellStyle = dataGridViewCellStyle8;
1135
            dataGridViewCellStyle66.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1136
            this.Column6.DefaultCellStyle = dataGridViewCellStyle66;
1079 1137
            this.Column6.HeaderText = "値引\r\n金額";
1080 1138
            this.Column6.Name = "Column6";
1081 1139
            this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1084 1142
            // 
1085 1143
            // Column7
1086 1144
            // 
1087
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1088
            this.Column7.DefaultCellStyle = dataGridViewCellStyle9;
1145
            dataGridViewCellStyle67.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1146
            this.Column7.DefaultCellStyle = dataGridViewCellStyle67;
1089 1147
            this.Column7.HeaderText = "相殺\r\n金額";
1090 1148
            this.Column7.Name = "Column7";
1091 1149
            this.Column7.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1094 1152
            // 
1095 1153
            // Column8
1096 1154
            // 
1097
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1098
            this.Column8.DefaultCellStyle = dataGridViewCellStyle10;
1155
            dataGridViewCellStyle68.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1156
            this.Column8.DefaultCellStyle = dataGridViewCellStyle68;
1099 1157
            this.Column8.HeaderText = "次回\r\n繰越";
1100 1158
            this.Column8.Name = "Column8";
1101 1159
            this.Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1104 1162
            // 
1105 1163
            // Column40
1106 1164
            // 
1107
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1108
            this.Column40.DefaultCellStyle = dataGridViewCellStyle11;
1165
            dataGridViewCellStyle69.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1166
            this.Column40.DefaultCellStyle = dataGridViewCellStyle69;
1109 1167
            this.Column40.HeaderText = "高速代駐車代";
1110 1168
            this.Column40.Name = "Column40";
1111 1169
            this.Column40.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1114 1172
            // 
1115 1173
            // Column41
1116 1174
            // 
1117
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1118
            this.Column41.DefaultCellStyle = dataGridViewCellStyle12;
1175
            dataGridViewCellStyle70.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1176
            this.Column41.DefaultCellStyle = dataGridViewCellStyle70;
1119 1177
            this.Column41.HeaderText = "金物代";
1120 1178
            this.Column41.Name = "Column41";
1121 1179
            this.Column41.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1124 1182
            // 
1125 1183
            // Column43
1126 1184
            // 
1127
            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1128
            this.Column43.DefaultCellStyle = dataGridViewCellStyle13;
1185
            dataGridViewCellStyle71.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1186
            this.Column43.DefaultCellStyle = dataGridViewCellStyle71;
1129 1187
            this.Column43.HeaderText = "産廃税";
1130 1188
            this.Column43.Name = "Column43";
1131 1189
            this.Column43.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1134 1192
            // 
1135 1193
            // Column12
1136 1194
            // 
1137
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1138
            this.Column12.DefaultCellStyle = dataGridViewCellStyle14;
1195
            dataGridViewCellStyle72.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1196
            this.Column12.DefaultCellStyle = dataGridViewCellStyle72;
1139 1197
            this.Column12.HeaderText = "協力金";
1140 1198
            this.Column12.Name = "Column12";
1141 1199
            this.Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1151 1209
            // 
1152 1210
            // KyouryokuKin_Com
1153 1211
            // 
1154
            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1155
            dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
1156
            dataGridViewCellStyle15.ForeColor = System.Drawing.Color.Black;
1157
            this.KyouryokuKin_Com.DefaultCellStyle = dataGridViewCellStyle15;
1212
            dataGridViewCellStyle73.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1213
            dataGridViewCellStyle73.BackColor = System.Drawing.Color.White;
1214
            dataGridViewCellStyle73.ForeColor = System.Drawing.Color.Black;
1215
            this.KyouryokuKin_Com.DefaultCellStyle = dataGridViewCellStyle73;
1158 1216
            this.KyouryokuKin_Com.HeaderText = "協力金\r\n有無";
1159 1217
            this.KyouryokuKin_Com.MaxDropDownItems = 3;
1160 1218
            this.KyouryokuKin_Com.Name = "KyouryokuKin_Com";
......
1162 1220
            // 
1163 1221
            // Column14
1164 1222
            // 
1165
            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1166
            this.Column14.DefaultCellStyle = dataGridViewCellStyle16;
1223
            dataGridViewCellStyle74.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1224
            this.Column14.DefaultCellStyle = dataGridViewCellStyle74;
1167 1225
            this.Column14.HeaderText = "注文書\r\n送付";
1168 1226
            this.Column14.Name = "Column14";
1169 1227
            this.Column14.ReadOnly = true;
......
1172 1230
            // 
1173 1231
            // Column15
1174 1232
            // 
1175
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1176
            this.Column15.DefaultCellStyle = dataGridViewCellStyle17;
1233
            dataGridViewCellStyle75.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1234
            this.Column15.DefaultCellStyle = dataGridViewCellStyle75;
1177 1235
            this.Column15.HeaderText = "注文書\r\n到着";
1178 1236
            this.Column15.Name = "Column15";
1179 1237
            this.Column15.ReadOnly = true;
......
1182 1240
            // 
1183 1241
            // Column16
1184 1242
            // 
1185
            dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1186
            this.Column16.DefaultCellStyle = dataGridViewCellStyle18;
1243
            dataGridViewCellStyle76.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1244
            this.Column16.DefaultCellStyle = dataGridViewCellStyle76;
1187 1245
            this.Column16.HeaderText = "予算書";
1188 1246
            this.Column16.Name = "Column16";
1189 1247
            this.Column16.ReadOnly = true;
......
1199 1257
            // 
1200 1258
            // Column17
1201 1259
            // 
1202
            dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1203
            this.Column17.DefaultCellStyle = dataGridViewCellStyle19;
1260
            dataGridViewCellStyle77.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1261
            this.Column17.DefaultCellStyle = dataGridViewCellStyle77;
1204 1262
            this.Column17.HeaderText = "担当者\r\n確認";
1205 1263
            this.Column17.Name = "Column17";
1206 1264
            this.Column17.ReadOnly = true;
......
1223 1281
            // 
1224 1282
            // Column18
1225 1283
            // 
1226
            dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1227
            this.Column18.DefaultCellStyle = dataGridViewCellStyle20;
1284
            dataGridViewCellStyle78.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1285
            this.Column18.DefaultCellStyle = dataGridViewCellStyle78;
1228 1286
            this.Column18.HeaderText = "承認者1\r\n承認";
1229 1287
            this.Column18.Name = "Column18";
1230 1288
            this.Column18.ReadOnly = true;
......
1261 1319
            // 
1262 1320
            // Column19
1263 1321
            // 
1264
            dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1265
            this.Column19.DefaultCellStyle = dataGridViewCellStyle21;
1322
            dataGridViewCellStyle79.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1323
            this.Column19.DefaultCellStyle = dataGridViewCellStyle79;
1266 1324
            this.Column19.HeaderText = "承認者2\r\n承認";
1267 1325
            this.Column19.Name = "Column19";
1268 1326
            this.Column19.ReadOnly = true;
......
1299 1357
            // 
1300 1358
            // Column22
1301 1359
            // 
1302
            dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1303
            this.Column22.DefaultCellStyle = dataGridViewCellStyle22;
1360
            dataGridViewCellStyle80.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1361
            this.Column22.DefaultCellStyle = dataGridViewCellStyle80;
1304 1362
            this.Column22.HeaderText = "承認者3\r\n承認";
1305 1363
            this.Column22.Name = "Column22";
1306 1364
            this.Column22.ReadOnly = true;
......
1337 1395
            // 
1338 1396
            // Column25
1339 1397
            // 
1340
            dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1341
            this.Column25.DefaultCellStyle = dataGridViewCellStyle23;
1398
            dataGridViewCellStyle81.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1399
            this.Column25.DefaultCellStyle = dataGridViewCellStyle81;
1342 1400
            this.Column25.HeaderText = "承認者4承認";
1343 1401
            this.Column25.Name = "Column25";
1344 1402
            this.Column25.ReadOnly = true;
......
1375 1433
            // 
1376 1434
            // Column27
1377 1435
            // 
1378
            dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1379
            this.Column27.DefaultCellStyle = dataGridViewCellStyle24;
1436
            dataGridViewCellStyle82.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1437
            this.Column27.DefaultCellStyle = dataGridViewCellStyle82;
1380 1438
            this.Column27.HeaderText = "承認者5承認";
1381 1439
            this.Column27.Name = "Column27";
1382 1440
            this.Column27.ReadOnly = true;
......
1413 1471
            // 
1414 1472
            // Column28
1415 1473
            // 
1416
            dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1417
            this.Column28.DefaultCellStyle = dataGridViewCellStyle25;
1474
            dataGridViewCellStyle83.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1475
            this.Column28.DefaultCellStyle = dataGridViewCellStyle83;
1418 1476
            this.Column28.HeaderText = "承認者6承認";
1419 1477
            this.Column28.Name = "Column28";
1420 1478
            this.Column28.ReadOnly = true;
......
1587 1645
            // 
1588 1646
            // Column20
1589 1647
            // 
1590
            dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1591
            this.Column20.DefaultCellStyle = dataGridViewCellStyle26;
1648
            dataGridViewCellStyle84.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1649
            this.Column20.DefaultCellStyle = dataGridViewCellStyle84;
1592 1650
            this.Column20.HeaderText = "備考";
1593 1651
            this.Column20.Name = "Column20";
1594 1652
            this.Column20.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1629 1687
            | System.Windows.Forms.AnchorStyles.Right)));
1630 1688
            this.dgvProject.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1631 1689
            this.dgvProject.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1632
            dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1633
            dataGridViewCellStyle28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
1634
            dataGridViewCellStyle28.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1635
            dataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1636
            this.dgvProject.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle28;
1690
            dataGridViewCellStyle86.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1691
            dataGridViewCellStyle86.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
1692
            dataGridViewCellStyle86.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1693
            dataGridViewCellStyle86.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1694
            this.dgvProject.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle86;
1637 1695
            this.dgvProject.ColumnHeadersHeight = 45;
1638 1696
            this.dgvProject.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
1639 1697
            this.dgvProject.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
1726 1784
            this.Column77,
1727 1785
            this.Column141,
1728 1786
            this.Column142});
1729
            dataGridViewCellStyle58.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1730
            dataGridViewCellStyle58.BackColor = System.Drawing.SystemColors.Window;
1731
            dataGridViewCellStyle58.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1732
            dataGridViewCellStyle58.ForeColor = System.Drawing.SystemColors.ControlText;
1733
            dataGridViewCellStyle58.SelectionBackColor = System.Drawing.Color.LightSeaGreen;
1734
            dataGridViewCellStyle58.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1735
            dataGridViewCellStyle58.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
1736
            this.dgvProject.DefaultCellStyle = dataGridViewCellStyle58;
1787
            dataGridViewCellStyle116.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1788
            dataGridViewCellStyle116.BackColor = System.Drawing.SystemColors.Window;
1789
            dataGridViewCellStyle116.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1790
            dataGridViewCellStyle116.ForeColor = System.Drawing.SystemColors.ControlText;
1791
            dataGridViewCellStyle116.SelectionBackColor = System.Drawing.Color.LightSeaGreen;
1792
            dataGridViewCellStyle116.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1793
            dataGridViewCellStyle116.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
1794
            this.dgvProject.DefaultCellStyle = dataGridViewCellStyle116;
1737 1795
            this.dgvProject.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
1738 1796
            this.dgvProject.EnableHeadersVisualStyles = false;
1739
            this.dgvProject.Location = new System.Drawing.Point(10, 88);
1797
            this.dgvProject.Location = new System.Drawing.Point(10, 110);
1740 1798
            this.dgvProject.Margin = new System.Windows.Forms.Padding(4);
1741 1799
            this.dgvProject.MultiSelect = false;
1742 1800
            this.dgvProject.Name = "dgvProject";
......
1745 1803
            this.dgvProject.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
1746 1804
            this.dgvProject.RowTemplate.Height = 21;
1747 1805
            this.dgvProject.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
1748
            this.dgvProject.Size = new System.Drawing.Size(1320, 555);
1806
            this.dgvProject.Size = new System.Drawing.Size(1320, 534);
1749 1807
            this.dgvProject.TabIndex = 3;
1750 1808
            this.dgvProject.Visible = false;
1751 1809
            this.dgvProject.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.DataGridView_CellBeginEdit);
......
1821 1879
            // 
1822 1880
            // Project_Column3
1823 1881
            // 
1824
            dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1825
            this.Project_Column3.DefaultCellStyle = dataGridViewCellStyle29;
1882
            dataGridViewCellStyle87.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1883
            this.Project_Column3.DefaultCellStyle = dataGridViewCellStyle87;
1826 1884
            this.Project_Column3.HeaderText = "№";
1827 1885
            this.Project_Column3.Name = "Project_Column3";
1828 1886
            this.Project_Column3.ReadOnly = true;
......
1840 1898
            // 
1841 1899
            // Project_Column5
1842 1900
            // 
1843
            dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1844
            this.Project_Column5.DefaultCellStyle = dataGridViewCellStyle30;
1901
            dataGridViewCellStyle88.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1902
            this.Project_Column5.DefaultCellStyle = dataGridViewCellStyle88;
1845 1903
            this.Project_Column5.HeaderText = "現場名";
1846 1904
            this.Project_Column5.Name = "Project_Column5";
1847 1905
            this.Project_Column5.ReadOnly = true;
......
1874 1932
            // 
1875 1933
            // Project_Column8
1876 1934
            // 
1877
            dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1878
            this.Project_Column8.DefaultCellStyle = dataGridViewCellStyle31;
1935
            dataGridViewCellStyle89.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1936
            this.Project_Column8.DefaultCellStyle = dataGridViewCellStyle89;
1879 1937
            this.Project_Column8.HeaderText = "請求書\r\n 金額";
1880 1938
            this.Project_Column8.Name = "Project_Column8";
1881 1939
            this.Project_Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1884 1942
            // 
1885 1943
            // Project_Column9
1886 1944
            // 
1887
            dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1888
            this.Project_Column9.DefaultCellStyle = dataGridViewCellStyle32;
1945
            dataGridViewCellStyle90.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1946
            this.Project_Column9.DefaultCellStyle = dataGridViewCellStyle90;
1889 1947
            this.Project_Column9.HeaderText = "高速代\r\n駐車代";
1890 1948
            this.Project_Column9.Name = "Project_Column9";
1891 1949
            this.Project_Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1894 1952
            // 
1895 1953
            // Project_Column10
1896 1954
            // 
1897
            dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1898
            this.Project_Column10.DefaultCellStyle = dataGridViewCellStyle33;
1955
            dataGridViewCellStyle91.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1956
            this.Project_Column10.DefaultCellStyle = dataGridViewCellStyle91;
1899 1957
            this.Project_Column10.HeaderText = "金物代";
1900 1958
            this.Project_Column10.Name = "Project_Column10";
1901 1959
            this.Project_Column10.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1904 1962
            // 
1905 1963
            // Project_Column11
1906 1964
            // 
1907
            dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1908
            this.Project_Column11.DefaultCellStyle = dataGridViewCellStyle34;
1965
            dataGridViewCellStyle92.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1966
            this.Project_Column11.DefaultCellStyle = dataGridViewCellStyle92;
1909 1967
            this.Project_Column11.HeaderText = "産廃税";
1910 1968
            this.Project_Column11.Name = "Project_Column11";
1911 1969
            this.Project_Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1914 1972
            // 
1915 1973
            // Project_Column12
1916 1974
            // 
1917
            dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1918
            this.Project_Column12.DefaultCellStyle = dataGridViewCellStyle35;
1975
            dataGridViewCellStyle93.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1976
            this.Project_Column12.DefaultCellStyle = dataGridViewCellStyle93;
1919 1977
            this.Project_Column12.HeaderText = "請求\r\n金額";
1920 1978
            this.Project_Column12.Name = "Project_Column12";
1921 1979
            this.Project_Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1924 1982
            // 
1925 1983
            // Project_Column13
1926 1984
            // 
1927
            dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1928
            this.Project_Column13.DefaultCellStyle = dataGridViewCellStyle36;
1985
            dataGridViewCellStyle94.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1986
            this.Project_Column13.DefaultCellStyle = dataGridViewCellStyle94;
1929 1987
            this.Project_Column13.HeaderText = "値引\r\n金額";
1930 1988
            this.Project_Column13.Name = "Project_Column13";
1931 1989
            this.Project_Column13.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1934 1992
            // 
1935 1993
            // Project_Column14
1936 1994
            // 
1937
            dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1938
            this.Project_Column14.DefaultCellStyle = dataGridViewCellStyle37;
1995
            dataGridViewCellStyle95.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1996
            this.Project_Column14.DefaultCellStyle = dataGridViewCellStyle95;
1939 1997
            this.Project_Column14.HeaderText = "相殺\r\n金額";
1940 1998
            this.Project_Column14.Name = "Project_Column14";
1941 1999
            this.Project_Column14.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1944 2002
            // 
1945 2003
            // Project_Column15
1946 2004
            // 
1947
            dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1948
            dataGridViewCellStyle38.Format = "#,##0";
1949
            this.Project_Column15.DefaultCellStyle = dataGridViewCellStyle38;
2005
            dataGridViewCellStyle96.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
2006
            dataGridViewCellStyle96.Format = "#,##0";
2007
            this.Project_Column15.DefaultCellStyle = dataGridViewCellStyle96;
1950 2008
            this.Project_Column15.HeaderText = "次回\r\n繰越";
1951 2009
            this.Project_Column15.Name = "Project_Column15";
1952 2010
            this.Project_Column15.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1955 2013
            // 
1956 2014
            // Project_Column16
1957 2015
            // 
1958
            dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1959
            this.Project_Column16.DefaultCellStyle = dataGridViewCellStyle39;
2016
            dataGridViewCellStyle97.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
2017
            this.Project_Column16.DefaultCellStyle = dataGridViewCellStyle97;
1960 2018
            this.Project_Column16.HeaderText = "高速代\r\n駐車代";
1961 2019
            this.Project_Column16.Name = "Project_Column16";
1962 2020
            this.Project_Column16.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1965 2023
            // 
1966 2024
            // Project_Column17
1967 2025
            // 
1968
            dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1969
            this.Project_Column17.DefaultCellStyle = dataGridViewCellStyle40;
2026
            dataGridViewCellStyle98.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
2027
            this.Project_Column17.DefaultCellStyle = dataGridViewCellStyle98;
1970 2028
            this.Project_Column17.HeaderText = "金物代";
1971 2029
            this.Project_Column17.Name = "Project_Column17";
1972 2030
            this.Project_Column17.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1975 2033
            // 
1976 2034
            // Project_Column18
1977 2035
            // 
1978
            dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1979
            this.Project_Column18.DefaultCellStyle = dataGridViewCellStyle41;
2036
            dataGridViewCellStyle99.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
2037
            this.Project_Column18.DefaultCellStyle = dataGridViewCellStyle99;
1980 2038
            this.Project_Column18.HeaderText = "産廃税";
1981 2039
            this.Project_Column18.Name = "Project_Column18";
1982 2040
            this.Project_Column18.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1985 2043
            // 
1986 2044
            // Project_Column19
1987 2045
            // 
1988
            dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1989
            this.Project_Column19.DefaultCellStyle = dataGridViewCellStyle42;
2046
            dataGridViewCellStyle100.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
2047
            this.Project_Column19.DefaultCellStyle = dataGridViewCellStyle100;
1990 2048
            this.Project_Column19.HeaderText = "協力金";
1991 2049
            this.Project_Column19.Name = "Project_Column19";
1992 2050
            this.Project_Column19.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
2002 2060
            // 
2003 2061
            // KyouryokuKin_Pro
2004 2062
            // 
2005
            dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2006
            dataGridViewCellStyle43.BackColor = System.Drawing.Color.White;
2007
            dataGridViewCellStyle43.ForeColor = System.Drawing.Color.Black;
2008
            this.KyouryokuKin_Pro.DefaultCellStyle = dataGridViewCellStyle43;
2063
            dataGridViewCellStyle101.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2064
            dataGridViewCellStyle101.BackColor = System.Drawing.Color.White;
2065
            dataGridViewCellStyle101.ForeColor = System.Drawing.Color.Black;
2066
            this.KyouryokuKin_Pro.DefaultCellStyle = dataGridViewCellStyle101;
2009 2067
            this.KyouryokuKin_Pro.HeaderText = "協力金\r\n有無";
2010 2068
            this.KyouryokuKin_Pro.Name = "KyouryokuKin_Pro";
2011 2069
            this.KyouryokuKin_Pro.Resizable = System.Windows.Forms.DataGridViewTriState.False;
2012 2070
            // 
2013 2071
            // Project_Column21
2014 2072
            // 
2015
            dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2016
            this.Project_Column21.DefaultCellStyle = dataGridViewCellStyle44;
2073
            dataGridViewCellStyle102.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2074
            this.Project_Column21.DefaultCellStyle = dataGridViewCellStyle102;
2017 2075
            this.Project_Column21.HeaderText = "注文書\r\n送付";
2018 2076
            this.Project_Column21.Name = "Project_Column21";
2019 2077
            this.Project_Column21.ReadOnly = true;
......
2022 2080
            // 
2023 2081
            // Project_Column22
2024 2082
            // 
2025
            dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2026
            this.Project_Column22.DefaultCellStyle = dataGridViewCellStyle45;
2083
            dataGridViewCellStyle103.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2084
            this.Project_Column22.DefaultCellStyle = dataGridViewCellStyle103;
2027 2085
            this.Project_Column22.HeaderText = "注文書\r\n到着";
2028 2086
            this.Project_Column22.Name = "Project_Column22";
2029 2087
            this.Project_Column22.ReadOnly = true;
......
2032 2090
            // 
2033 2091
            // Project_Column23
2034 2092
            // 
2035
            dataGridViewCellStyle46.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2036
            this.Project_Column23.DefaultCellStyle = dataGridViewCellStyle46;
2093
            dataGridViewCellStyle104.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2094
            this.Project_Column23.DefaultCellStyle = dataGridViewCellStyle104;
2037 2095
            this.Project_Column23.HeaderText = "予算書";
2038 2096
            this.Project_Column23.Name = "Project_Column23";
2039 2097
            this.Project_Column23.ReadOnly = true;
......
2049 2107
            // 
2050 2108
            // Project_Column24
2051 2109
            // 
2052
            dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2053
            this.Project_Column24.DefaultCellStyle = dataGridViewCellStyle47;
2110
            dataGridViewCellStyle105.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2111
            this.Project_Column24.DefaultCellStyle = dataGridViewCellStyle105;
2054 2112
            this.Project_Column24.HeaderText = "担当者\r\n確認";
2055 2113
            this.Project_Column24.Name = "Project_Column24";
2056 2114
            this.Project_Column24.ReadOnly = true;
......
2073 2131
            // 
2074 2132
            // Project_Column25
2075 2133
            // 
2076
            dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2077
            this.Project_Column25.DefaultCellStyle = dataGridViewCellStyle48;
2134
            dataGridViewCellStyle106.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2135
            this.Project_Column25.DefaultCellStyle = dataGridViewCellStyle106;
2078 2136
            this.Project_Column25.HeaderText = "承認者1\r\n承認";
2079 2137
            this.Project_Column25.Name = "Project_Column25";
2080 2138
            this.Project_Column25.ReadOnly = true;
......
2111 2169
            // 
2112 2170
            // Project_Column26
2113 2171
            // 
2114
            dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2115
            this.Project_Column26.DefaultCellStyle = dataGridViewCellStyle49;
2172
            dataGridViewCellStyle107.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2173
            this.Project_Column26.DefaultCellStyle = dataGridViewCellStyle107;
2116 2174
            this.Project_Column26.HeaderText = "承認者2\r\n承認";
2117 2175
            this.Project_Column26.Name = "Project_Column26";
2118 2176
            this.Project_Column26.ReadOnly = true;
......
2149 2207
            // 
2150 2208
            // Project_Column27
2151 2209
            // 
2152
            dataGridViewCellStyle50.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2153
            this.Project_Column27.DefaultCellStyle = dataGridViewCellStyle50;
2210
            dataGridViewCellStyle108.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2211
            this.Project_Column27.DefaultCellStyle = dataGridViewCellStyle108;
2154 2212
            this.Project_Column27.HeaderText = "承認者3\r\n承認";
2155 2213
            this.Project_Column27.Name = "Project_Column27";
2156 2214
            this.Project_Column27.ReadOnly = true;
......
2187 2245
            // 
2188 2246
            // Project_Column28
2189 2247
            // 
2190
            dataGridViewCellStyle51.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2191
            this.Project_Column28.DefaultCellStyle = dataGridViewCellStyle51;
2248
            dataGridViewCellStyle109.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2249
            this.Project_Column28.DefaultCellStyle = dataGridViewCellStyle109;
2192 2250
            this.Project_Column28.HeaderText = "承認者4承認";
2193 2251
            this.Project_Column28.Name = "Project_Column28";
2194 2252
            this.Project_Column28.ReadOnly = true;
......
2225 2283
            // 
2226 2284
            // Project_Column29
2227 2285
            // 
2228
            dataGridViewCellStyle52.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2229
            this.Project_Column29.DefaultCellStyle = dataGridViewCellStyle52;
2286
            dataGridViewCellStyle110.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2287
            this.Project_Column29.DefaultCellStyle = dataGridViewCellStyle110;
2230 2288
            this.Project_Column29.HeaderText = "承認者5承認";
2231 2289
            this.Project_Column29.Name = "Project_Column29";
2232 2290
            this.Project_Column29.ReadOnly = true;
......
2263 2321
            // 
2264 2322
            // Project_Column30
2265 2323
            // 
2266
            dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2267
            this.Project_Column30.DefaultCellStyle = dataGridViewCellStyle53;
2324
            dataGridViewCellStyle111.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2325
            this.Project_Column30.DefaultCellStyle = dataGridViewCellStyle111;
2268 2326
            this.Project_Column30.HeaderText = "承認者6承認";
2269 2327
            this.Project_Column30.Name = "Project_Column30";
2270 2328
            this.Project_Column30.ReadOnly = true;
......
2301 2359
            // 
2302 2360
            // Project_Column31
2303 2361
            // 
2304
            dataGridViewCellStyle54.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2305
            this.Project_Column31.DefaultCellStyle = dataGridViewCellStyle54;
2362
            dataGridViewCellStyle112.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2363
            this.Project_Column31.DefaultCellStyle = dataGridViewCellStyle112;
2306 2364
            this.Project_Column31.HeaderText = "承認者7承認";
2307 2365
            this.Project_Column31.Name = "Project_Column31";
2308 2366
            this.Project_Column31.ReadOnly = true;
......
2339 2397
            // 
2340 2398
            // Project_Column32
2341 2399
            // 
2342
            dataGridViewCellStyle55.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2343
            this.Project_Column32.DefaultCellStyle = dataGridViewCellStyle55;
2400
            dataGridViewCellStyle113.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2401
            this.Project_Column32.DefaultCellStyle = dataGridViewCellStyle113;
2344 2402
            this.Project_Column32.HeaderText = "承認者8承認";
2345 2403
            this.Project_Column32.Name = "Project_Column32";
2346 2404
            this.Project_Column32.ReadOnly = true;
......
2377 2435
            // 
2378 2436
            // Project_Column33
2379 2437
            // 
2380
            dataGridViewCellStyle56.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2381
            this.Project_Column33.DefaultCellStyle = dataGridViewCellStyle56;
2438
            dataGridViewCellStyle114.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2439
            this.Project_Column33.DefaultCellStyle = dataGridViewCellStyle114;
2382 2440
            this.Project_Column33.HeaderText = "承認者9承認";
2383 2441
            this.Project_Column33.Name = "Project_Column33";
2384 2442
            this.Project_Column33.ReadOnly = true;
......
2415 2473
            // 
2416 2474
            // Project_Column34
2417 2475
            // 
2418
            dataGridViewCellStyle57.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2419
            this.Project_Column34.DefaultCellStyle = dataGridViewCellStyle57;
2476
            dataGridViewCellStyle115.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
2477
            this.Project_Column34.DefaultCellStyle = dataGridViewCellStyle115;
2420 2478
            this.Project_Column34.HeaderText = "承認者10承認";
2421 2479
            this.Project_Column34.Name = "Project_Column34";
2422 2480
            this.Project_Column34.ReadOnly = true;
......
2733 2791
        private System.Windows.Forms.Button btnOnApproval;
2734 2792
        private System.Windows.Forms.Button btnNotApproval;
2735 2793
        private System.Windows.Forms.Button btnOnHold;
2794
        private System.Windows.Forms.Label label12;
2795
        private System.Windows.Forms.ComboBox cmbConstructionPerson;
2796
        private System.Windows.Forms.ComboBox cmbDepartment;
2797
        private System.Windows.Forms.Label label11;
2736 2798
    }
2737 2799
}
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestSummaryList/FrmRequestSummaryListAuxiliary.cs
339 339
                string selectValue = currentYearMonth.ToString("yyyyMM");
340 340

  
341 341
                // ???o
342
                string sql = string.Format("select Bd.TargetDate from BillingData as Bd left join SubContractorMaster as Scm on Bd.CompanyCode = Scm.CompanyCode and Scm.Labourkind = {0} group by Bd.TargetDate order by Bd.TargetDate desc", m_Labourkind);
342
                StringBuilder sql = new StringBuilder();
343
                sql.Append("select Bd.TargetDate from BillingData as Bd ");
344
                sql.Append("left join SubContractorMaster as Scm on Bd.CompanyCode = Scm.CompanyCode ");
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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