プロジェクト

全般

プロフィール

リビジョン 225

堀内7年以上前に追加

サブフォーム表示位置変更
見積書割当チェック不具合修正
台帳未作成チェック画面不具合修正
協力会社検索画面履歴増減工事対応
工事基本情報注文書データ複数対応
工事基本情報請求書データ分割対応(途中)

差分を表示:

branches/src/ProcessManagement/ProcessManagement/Common/CommonDefine.cs
738 738
                                                                                {11, "非 受 注"},           // 工事基本情報ラジオボタン:3
739 739
                                                                                {12, "総務入金確認"},       // 工事基本情報ラジオボタン:12
740 740
                                                                                {13, "担当者入金確認完了"}, // 工事基本情報ラジオボタン:13
741
                                                                                //{14, ""},                       // 工事基本情報ラジオボタン:14
742
                                                                                //{15, ""},                       // 工事基本情報ラジオボタン:15
741
                                                                                {14, ""},                       // 工事基本情報ラジオボタン:14
742
                                                                                {15, ""},                       // 工事基本情報ラジオボタン:15
743 743
                                                                                {16, "空家補修工事"},       // 工事基本情報ラジオボタン:16
744 744
                                                                                {17, "Hit'sV工事"},         // 工事基本情報ラジオボタン:17
745 745
                                                                                };
......
1714 1714
            new KeyValuePair<int, int>((int)CommonDefine.TermDateCheckTiming.CheckSchdule3, 1)};
1715 1715
        #endregion
1716 1716

  
1717
        #region 規定値フォーム位置移動
1718
        /// <summary>
1719
        /// 規定値フォーム位置移動
1720
        /// </summary>
1721
        public static int s_DefalutShiftValue = 30;
1722
        #endregion
1717 1723
    }
1718 1724
}
branches/src/ProcessManagement/ProcessManagement/Common/CommonMotions.cs
1702 1702
        /// <param name="chgColor"></param>
1703 1703
        public static void chgBackColor(object objCtrl, bool bPara)
1704 1704
        {
1705
            if (objCtrl.GetType().Equals(typeof(TextBox)) || objCtrl.GetType().Equals(typeof(TextBoxEX)))
1705
            try
1706 1706
            {
1707
                TextBox wrk = (TextBox)objCtrl;
1708
                if (bPara)
1707
                if (objCtrl.GetType().Equals(typeof(TextBox)) || objCtrl.GetType().Equals(typeof(TextBoxEX)))
1709 1708
                {
1710
                    wrk.BackColor = CommonDefine.s_clrNormal;
1709
                    TextBox wrk = (TextBox)objCtrl;
1710
                    if (bPara)
1711
                    {
1712
                        wrk.BackColor = CommonDefine.s_clrNormal;
1713
                    }
1714
                    else
1715
                    {
1716
                        wrk.BackColor = CommonDefine.s_clrError;
1717
                        wrk.Focus();
1718
                    }
1711 1719
                }
1712
                else
1720
                else if (objCtrl.GetType().Equals(typeof(DataGridViewTextBoxCell)))
1713 1721
                {
1714
                    wrk.BackColor = CommonDefine.s_clrError;
1715
                    wrk.Focus();
1722
                    DataGridViewTextBoxCell wrk = (DataGridViewTextBoxCell)objCtrl;
1723
                    if (bPara)
1724
                    {
1725
                        wrk.Style.BackColor = CommonDefine.s_clrNormal;
1726
                    }
1727
                    else
1728
                    {
1729
                        wrk.Style.BackColor = CommonDefine.s_clrError;
1730
                        wrk.Selected = true;
1731
                    }
1716 1732
                }
1717
            }
1718
            else if (objCtrl.GetType().Equals(typeof(DataGridViewTextBoxCell)))
1719
            {
1720
                DataGridViewTextBoxCell wrk = (DataGridViewTextBoxCell)objCtrl;
1721
                if (bPara)
1733
                else if (objCtrl.GetType().Equals(typeof(ComboBoxEX)))
1722 1734
                {
1723
                    wrk.Style.BackColor = CommonDefine.s_clrNormal;
1735
                    ComboBox wrk = (ComboBox)objCtrl;
1736
                    if (bPara)
1737
                    {
1738
                        wrk.BackColor = CommonDefine.s_clrNormal;
1739
                    }
1740
                    else
1741
                    {
1742
                        wrk.BackColor = CommonDefine.s_clrError;
1743
                        wrk.Focus();
1744
                    }
1724 1745
                }
1725
                else
1746
                else if (objCtrl.GetType().Equals(typeof(ComboBox)))
1726 1747
                {
1727
                    wrk.Style.BackColor = CommonDefine.s_clrError;
1728
                    wrk.Selected = true;
1748
                    ComboBox wrk = (ComboBox)objCtrl;
1749
                    if (bPara)
1750
                    {
1751
                        wrk.BackColor = CommonDefine.s_clrNormal;
1752
                    }
1753
                    else
1754
                    {
1755
                        wrk.BackColor = CommonDefine.s_clrError;
1756
                        wrk.Focus();
1757
                    }
1729 1758
                }
1730
            }
1731
            else if (objCtrl.GetType().Equals(typeof(ComboBoxEX)))
1732
            {
1733
                ComboBox wrk = (ComboBox)objCtrl;
1734
                if (bPara)
1759
                else if (objCtrl.GetType().Equals(typeof(ListBox)))
1735 1760
                {
1736
                    wrk.BackColor = CommonDefine.s_clrNormal;
1761
                    ListBox wrk = (ListBox)objCtrl;
1762
                    if (bPara)
1763
                    {
1764
                        wrk.BackColor = CommonDefine.s_clrNormal;
1765
                    }
1766
                    else
1767
                    {
1768
                        wrk.BackColor = CommonDefine.s_clrError;
1769
                        wrk.Focus();
1770
                    }
1737 1771
                }
1738
                else
1772
                else if (objCtrl.GetType().Equals(typeof(Label)))
1739 1773
                {
1740
                    wrk.BackColor = CommonDefine.s_clrError;
1741
                    wrk.Focus();
1774
                    Label wrk = (Label)objCtrl;
1775
                    if (bPara)
1776
                    {
1777
                        wrk.BackColor = CommonDefine.s_clrNormal;
1778
                    }
1779
                    else
1780
                    {
1781
                        wrk.BackColor = CommonDefine.s_clrError;
1782
                    }
1742 1783
                }
1743
            }
1744
            else if (objCtrl.GetType().Equals(typeof(ComboBox)))
1745
            {
1746
                ComboBox wrk = (ComboBox)objCtrl;
1747
                if (bPara)
1784
                else if (objCtrl.GetType().Equals(typeof(NumericUpDown)))
1748 1785
                {
1749
                    wrk.BackColor = CommonDefine.s_clrNormal;
1786
                    NumericUpDown wrk = (NumericUpDown)objCtrl;
1787
                    if (bPara)
1788
                    {
1789
                        wrk.BackColor = CommonDefine.s_clrNormal;
1790
                    }
1791
                    else
1792
                    {
1793
                        wrk.BackColor = CommonDefine.s_clrError;
1794
                    }
1750 1795
                }
1751
                else
1752
                {
1753
                    wrk.BackColor = CommonDefine.s_clrError;
1754
                    wrk.Focus();
1755
                }
1756 1796
            }
1757
            else if (objCtrl.GetType().Equals(typeof(ListBox)))
1797
            catch (Exception ex)
1758 1798
            {
1759
                ListBox wrk = (ListBox)objCtrl;
1760
                if (bPara)
1761
                {
1762
                    wrk.BackColor = CommonDefine.s_clrNormal;
1763
                }
1764
                else
1765
                {
1766
                    wrk.BackColor = CommonDefine.s_clrError;
1767
                    wrk.Focus();
1768
                }
1799
                logger.ErrorFormat("システムエラー:{0}:{1}:{2}", GetMethodName(), GetMethodName(2), ex.Message);
1769 1800
            }
1770
            else if (objCtrl.GetType().Equals(typeof(Label)))
1771
            {
1772
                Label wrk = (Label)objCtrl;
1773
                if (bPara)
1774
                {
1775
                    wrk.BackColor = CommonDefine.s_clrNormal;
1776
                }
1777
                else
1778
                {
1779
                    wrk.BackColor = CommonDefine.s_clrError;
1780
                }
1781
            }
1782
            else if (objCtrl.GetType().Equals(typeof(NumericUpDown)))
1783
            {
1784
                NumericUpDown wrk = (NumericUpDown)objCtrl;
1785
                if (bPara)
1786
                {
1787
                    wrk.BackColor = CommonDefine.s_clrNormal;
1788
                }
1789
                else
1790
                {
1791
                    wrk.BackColor = CommonDefine.s_clrError;
1792
                }
1793
            }
1794 1801
        }
1795 1802

  
1796 1803
        #endregion
branches/src/ProcessManagement/ProcessManagement/Common/CommonVersion.cs
14 14
        /// <summary>
15 15
        /// 本体バージョン
16 16
        /// </summary>
17
        public static int s_SystemVersion = 49;
17
        public static int s_SystemVersion = 50;
18 18

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
branches/src/ProcessManagement/ProcessManagement/Common/Process/ClsExcute.cs
303 303
            /// </summary>
304 304
            SubConstregistApproval,
305 305
            /// <summary>
306
            /// 11:手間支払
306
            /// 98:手間支払
307 307
            /// </summary>
308
            FeePayment,
308
            FeePayment = 98,
309 309
            /// <summary>
310
            /// 12:業者支払
310
            /// 99:業者支払
311 311
            /// </summary>
312
            SubConstrPayment,
312
            SubConstrPayment = 99,
313 313
        }
314 314
        #endregion
315 315

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalPerson/FrmApprovalPerson.cs
546 546
                SetApprovalOrderNo();
547 547

  
548 548
                // ----- ?f?[?^?X?V????
549
                if (!SorceDataUpdate()) return;
549 550

  
550 551
                // ???????b?Z?[?W
551 552
                CommonMotions.EntryEndMessage("?S????\???f?[?^", "?\??");
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalPerson/FrmApprovalPersonAuxiliary.cs
912 912
        {
913 913
            try
914 914
            {
915
                switch (m_ApprovalCode)
916
                {
917
                    case (int)ClsExcute.ApprovalListNo.FeePayment:              // 手間支払承認
918
                    case (int)ClsExcute.ApprovalListNo.SubConstrPayment:        // 業者支払承認
919
                        // 手間・業者支払データ更新・作成処理
920
                        if (!ApprovalFeePayment()) return false;
921
                        break;
922
                    default:
923
                        break;
924
                }
915 925

  
916 926
                return true;
917 927
            }
......
920 930
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
921 931
                return false;
922 932
            }
933
        }
934
        #endregion
935

  
936
        #region 手間・業者支払データ更新・作成処理
937
        /// <summary>
938
        /// 手間・業者支払データ更新・作成処理
939
        /// </summary>
940
        /// <returns></returns>
941
        private bool ApprovalFeePayment()
942
        {
943
            IOPaymentDataDetail PayDetailDB = new IOPaymentDataDetail();
944
            IOPaymentApprovalInfo PayAppDB = new IOPaymentApprovalInfo();
945
            try
946
            {
947
                // 業者請求明細データ更新
948
                if (!PaymentDataDetailUpdate(PayDetailDB))
949
                {
950
                    PayDetailDB.rollback();
951
                    PayAppDB.rollback();
952
                    return false;
953
                }
954
                // 支払承認情報データ作成
955
                if (!PaymentApprovalInfoCreate(PayAppDB))
956
                {
957
                    PayDetailDB.rollback();
958
                    PayAppDB.rollback();
959
                    return false;
960
                }
961

  
962
                return true;
963
            }
964
            catch (System.Exception ex)
965
            {
966
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
967
                return false;
968
            }
923 969
            finally
924 970
            {
971
                PayDetailDB.commit(); PayDetailDB.close(); PayDetailDB = null;
972
                PayAppDB.commit(); PayAppDB.close(); PayAppDB = null;
925 973
            }
926 974
        }
927 975
        #endregion
928 976

  
977
        int nCompanyCode = 0;
978
        int nTargetDate = 0;
979
        int nSeqNo = 0;
980
        int nLineCount = 0;
981
        #region 支払明細データ更新
982
        /// <summary>
983
        /// 支払明細データ更新
984
        /// </summary>
985
        /// <returns></returns>
986
        private bool PaymentDataDetailUpdate(IOPaymentDataDetail PayDetailDB)
987
        {
988
            try
989
            {
990
                StringBuilder strSQL = new StringBuilder();
991

  
992
                strSQL.Append("UPDATE paymentdatadetail SET");
993
                strSQL.AppendFormat(" APPROVALPERSONCODE = {0}", m_PersonCode);         // 承認担当者コード
994
                strSQL.AppendFormat(" ,APPROVALDATE = STR_TO_DATE('{0}','%Y/%m/%d')"
995
                                        , m_OrderDate.ToShortDateString());             // 担当者承認日付
996
                strSQL.Append(" ,APPROVALENDFLG = 1");                                  // 承認完了フラグ
997
                strSQL.Append(PayDetailDB.CreatePrimarykeyString(nCompanyCode, nTargetDate, nSeqNo, nLineCount));
998

  
999
                if (!PayDetailDB.ExecuteNonQuery(strSQL.ToString(), false)) return false;
1000

  
1001
                return true;
1002
            }
1003
            catch (System.Exception ex)
1004
            {
1005
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
1006
                return false;
1007
            }
1008
        }
1009
        #endregion
1010

  
1011
        #region 支払承認情報データ作成
1012
        /// <summary>
1013
        /// 支払承認情報データ作成
1014
        /// </summary>
1015
        /// <returns></returns>
1016
        private bool PaymentApprovalInfoCreate(IOPaymentApprovalInfo PayAppDB)
1017
        {
1018
            try
1019
            {
1020
                List<PaymentApprovalInfo> InfoList = new List<PaymentApprovalInfo>();
1021
                PaymentApprovalInfo InfoRec = new PaymentApprovalInfo();
1022

  
1023
                InfoRec.CompanyCode = nCompanyCode;
1024
                InfoRec.TargetDate = nTargetDate;
1025
                InfoRec.SeqNo = nSeqNo;
1026
                InfoRec.LineCount = nLineCount;
1027
                InfoRec.ApprovalNo = m_ApprovalCode;
1028
                InfoRec.ApprovalPerson = 0;
1029
                InfoRec.ApprovalPersonName = "";
1030
                InfoRec.ApprovalAuthority = 0;
1031
                InfoRec.ApprovalDate = m_OrderDate;
1032
                InfoList.Add(InfoRec);
1033

  
1034
                if (!PayAppDB.InsertAction(InfoList, false)) return false;
1035

  
1036
                return true;
1037
            }
1038
            catch (System.Exception ex)
1039
            {
1040
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
1041
                return false;
1042
            }
1043
        }
1044
        #endregion
1045

  
929 1046
        // ----- 指示連絡コメント処理 ↓↓
930 1047
        #region 指示連絡コメント表示処理
931 1048
        /// <summary>
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.cs
255 255
            /// </summary>
256 256
            BillingStartDate,
257 257
            /// <summary>
258
            /// 52:??????
258
            /// 52:??????????
259 259
            /// </summary>
260
            BillingDate,
260
            BillingComplateDate,
261 261
            /// <summary>
262 262
            /// 53:?J?n?\???
263 263
            /// </summary>
......
315 315
            /// </summary>
316 316
            ConstructionBudgetApproval,
317 317
            /// <summary>
318
            /// 67:???????\????
318
            /// 67:???????\????       --------------------->> ???g?p????
319 319
            /// </summary>
320 320
            PurchaseOrderEntryPetition,
321 321
            /// <summary>
......
335 335
            /// </summary>
336 336
            PurchaseOrderReturnDate,
337 337
            /// <summary>
338
            /// 72:??????????m?F??
338
            /// 72:??????????m?F??     --------------------->> ???g?p????
339 339
            /// </summary>
340 340
            PurchaseOrderReturnCheckDate,
341 341
            /// <summary>
......
351 351
            /// </summary>
352 352
            BillingOutPutDate,
353 353
            /// <summary>
354
            /// 76:???????X??/??n????
354
            /// 76:???????X????
355 355
            /// </summary>
356 356
            BillingSendDate,
357 357
            /// <summary>
......
370 370
            /// 80:?H???????????????
371 371
            /// </summary>
372 372
            LedgerComplateDate,
373
            /// <summary>
374
            /// 81:??????
375
            /// </summary>
376
            BillingDate,
373 377
        }
374 378
        #endregion
375 379

  
......
430 434
                                                                        new KeyValuePair<int, string>(49,"?_??H??????"),
431 435
                                                                        new KeyValuePair<int, string>(50,"???????(???g?b?v)"),
432 436
                                                                        new KeyValuePair<int, string>(51,"?????????J?n??"),
433
                                                                        new KeyValuePair<int, string>(52,"??????"),
437
                                                                        new KeyValuePair<int, string>(52,"??????????"),
434 438
                                                                        new KeyValuePair<int, string>(53,"?J?n?\???"),
435 439
                                                                        new KeyValuePair<int, string>(54,"?c??S??????"),
436 440
                                                                        new KeyValuePair<int, string>(55,"??Z????m?F?\????"),
......
454 458
                                                                        new KeyValuePair<int, string>(73,"???????\????"),
455 459
                                                                        new KeyValuePair<int, string>(74,"???????F??"),
456 460
                                                                        new KeyValuePair<int, string>(75,"????????????"),
457
                                                                        new KeyValuePair<int, string>(76,"???????X??/??n????")};
461
                                                                        new KeyValuePair<int, string>(76,"???????X????"),
462
                                                                        new KeyValuePair<int, string>(77,"?H?????S??????"),
463
                                                                        new KeyValuePair<int, string>(78,"?w????????"),
464
                                                                        new KeyValuePair<int, string>(79,"?H?????S????R?[?h"),
465
                                                                        new KeyValuePair<int, string>(80,"?H???????????????"),
466
                                                                        new KeyValuePair<int, string>(81,"??????")};
458 467
        #endregion
459 468

  
460 469
        #region ?R???{?{?b?N?X?f?[?^?J????
......
617 626
                        {false, false, true,  false, false, false, true,  true,  true,  true,  true,  false, false, false, false, false,  true,  true},     // 49:?_??H??????
618 627
                        {true,  true,  true,  true,  true,  true,  true,  true,  true,  true,  true,  false, false, false, false, false,  true,  true},     // 50:???????(???g?b?v)
619 628
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 51:?????????J?n??
620
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 52:??????
629
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 52:??????????
621 630
                        {false, false, true,  false, true,  true,  true,  true,  true,  true,  true,  false, false, false, false, false,  true,  true},     // 53:?J?n?\???
622 631
                        {true,  true,  true,  true,  true,  true,  true,  true,  true,  true,  true,  false, false, false, false, false,  true,  true},     // 54:?c??S??????
623 632
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 55:??Z????m?F?\????
......
641 650
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 73:???????\????
642 651
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 74:???????F??
643 652
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 75:????????????
644
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 76:???????X??/??n????
653
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 76:???????X????
645 654
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 77:?H?????S??????
646 655
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 78:?w????????
647 656
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 79:?H?????S????R?[?h
648 657
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 80:?H???????????????
658
                        {false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},     // 81:??????
649 659
        };
650 660
        //?@0:???????|1:?????o?|2:????C?H???|3:?? ?? ???|4:??|5:???????p
651 661
        //?|6:?{?H?????|7:?{?H?J?n?|8:?{?H?????|9:?????????|10:?????????|11:???
......
714 724
                        { false, false, true,  false, true,  true,  true,  true,  false, false, false, false, false, false, false, false,  true,  true},    // 49:?_??H??????
715 725
                        { true,  true,  false, true,  true,  false, false, false, false, false, false, false, false, false, false, false, false, false},    // 50:?H??????g?b?v??
716 726
                        { false, false, false, false, false, false, false, false, false, true,  false, false, false, false, false, false, false, false},    // 51:?????????J?n??
717
                        { false, false, false, false, false, false, false, false, false, false, true,  false, false, false, false, false, false, false},    // 52:??????
727
                        { false, false, false, false, false, false, false, false, false, false, true,  false, false, false, false, false, false, false},    // 52:??????????
718 728
                        { true,   true,  true,  true,  true, false, false, false, false, false, false, false, false, false, false, false,  true,  true},    // 53:?J?n?\???
719 729
 
720 730
                        { true,  false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},    // 54:?c??S??????
......
739 749
                        { false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},    // 73:???????\????
740 750
                        { false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},    // 74:???????F??
741 751
                        { false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},    // 75:????????????
742
                        { false, false, false, false, false, false, false, false, false, true,  false, false, false, false, false, false, false, false},    // 76:???????X??/??n????
752
                        { false, false, false, false, false, false, false, false, false, true,  false, false, false, false, false, false, false, false},    // 76:???????X????
743 753
                        { true,  true,  true,  true,  true,  true,  true,  false, false, false, false, false, false, false, false, false,  true,  true},    // 77:?H?????S??????
744 754
                        { true,  true,  true,  true,  true,  true,  true,  false, false, false, false, false, false, false, false, false,  true,  true},    // 78:?w????????
745 755
                        { true,  true,  true,  true,  true,  true,  true,  false, false, false, false, false, false, false, false, false,  true,  true},    // 79:?H?????S????R?[?h
746 756
                        { false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},    // 80:?H???????????????
757
                        { false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},    // 81:??????
747 758

  
748 759
                        { true,  false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},    // ?y??I?z+ 1:?????t???O
749 760
                        { true,  false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false},    // ?y??I?z+ 2:?????t???O ?????g?p
......
1219 1230
        }
1220 1231
        #endregion
1221 1232

  
1222
        #region ?H?????z?????O???b?h?_?u???N???b?N
1233
        #region ?????H?????z?O???b?h?_?u???N???b?N
1223 1234
        /// <summary>
1224 1235
        /// ?H?????z?????O???b?h?_?u???N???b?N
1225 1236
        /// </summary>
......
1231 1242
        }
1232 1243
        #endregion
1233 1244

  
1245
        #region ?????????O???b?h?_?u???N???b?N
1246
        /// <summary>
1247
        /// ?????????O???b?h?_?u???N???b?N
1248
        /// </summary>
1249
        /// <param name="sender"></param>
1250
        /// <param name="e"></param>
1251
        private void dgvPurchaseOrder_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
1252
        {
1253
            PurchaseOrderExecute();
1254
        }
1255
        #endregion
1256

  
1234 1257
        #region ?H?????z?????s?I???{?^??
1235 1258
        /// <summary>
1236 1259
        /// ?H?????z?????s?I???{?^??
......
1344 1367
                CreateProcessContextMenu(m_SubForm);
1345 1368
                // *-----* ????????{?^????? *-----*
1346 1369

  
1370
                // ?\????u????
1371
                if (m_SubForm)
1372
                {
1373
                    this.StartPosition = FormStartPosition.CenterParent;
1374
                    this.Top += CommonDefine.s_DefalutShiftValue;
1375
                    this.Left += CommonDefine.s_DefalutShiftValue;
1376
                }
1377

  
1347 1378
                // ?????t?H?[?J?X
1348 1379
                this.ActiveControl = m_DspCtrl[(int)DspCnt.ConstructionPeriod];
1349 1380

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.designer.cs
29 29
        private void InitializeComponent()
30 30
        {
31 31
            this.components = new System.ComponentModel.Container();
32
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
42
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
32 43
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
33 44
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
34 45
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
35 46
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
36 47
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
38 48
            this.label1 = new System.Windows.Forms.Label();
39 49
            this.btnDataDelete = new System.Windows.Forms.Button();
40 50
            this.btnDataEntry = new System.Windows.Forms.Button();
......
52 62
            this.txtInput07 = new System.Windows.Forms.TextBox();
53 63
            this.label6 = new System.Windows.Forms.Label();
54 64
            this.label8 = new System.Windows.Forms.Label();
55
            this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
56
            this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
57 65
            this.label4 = new System.Windows.Forms.Label();
58 66
            this.panel2 = new System.Windows.Forms.Panel();
59 67
            this.rdbEstimateType2 = new System.Windows.Forms.RadioButton();
60 68
            this.rdbEstimateType3 = new System.Windows.Forms.RadioButton();
61 69
            this.rdbEstimateType1 = new System.Windows.Forms.RadioButton();
62
            this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
63 70
            this.txtInput08 = new System.Windows.Forms.TextBox();
64 71
            this.btnSerchZip = new System.Windows.Forms.Button();
65 72
            this.label20 = new System.Windows.Forms.Label();
......
92 99
            this.label44 = new System.Windows.Forms.Label();
93 100
            this.label14 = new System.Windows.Forms.Label();
94 101
            this.label5 = new System.Windows.Forms.Label();
95
            this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
96 102
            this.btnOrderer = new System.Windows.Forms.Button();
97
            this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
98 103
            this.txtInput05 = new System.Windows.Forms.TextBox();
99 104
            this.panel4 = new System.Windows.Forms.Panel();
100 105
            this.btnChangePrice = new System.Windows.Forms.Button();
......
104 109
            this.label97 = new System.Windows.Forms.Label();
105 110
            this.label39 = new System.Windows.Forms.Label();
106 111
            this.label30 = new System.Windows.Forms.Label();
107
            this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
108 112
            this.label27 = new System.Windows.Forms.Label();
109
            this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
110 113
            this.lblTransferDate = new System.Windows.Forms.Label();
111 114
            this.label36 = new System.Windows.Forms.Label();
112
            this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
113 115
            this.txtInput26 = new System.Windows.Forms.TextBox();
114 116
            this.label10 = new System.Windows.Forms.Label();
115 117
            this.txtInput01 = new System.Windows.Forms.TextBox();
116 118
            this.label33 = new System.Windows.Forms.Label();
117
            this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
118
            this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
119 119
            this.label24 = new System.Windows.Forms.Label();
120
            this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
121 120
            this.label22 = new System.Windows.Forms.Label();
122
            this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
123 121
            this.label12 = new System.Windows.Forms.Label();
124
            this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
125 122
            this.label15 = new System.Windows.Forms.Label();
126 123
            this.label38 = new System.Windows.Forms.Label();
127 124
            this.label68 = new System.Windows.Forms.Label();
......
132 129
            this.label23 = new System.Windows.Forms.Label();
133 130
            this.label70 = new System.Windows.Forms.Label();
134 131
            this.label71 = new System.Windows.Forms.Label();
135
            this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
136
            this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
137
            this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
138 132
            this.label62 = new System.Windows.Forms.Label();
139 133
            this.label72 = new System.Windows.Forms.Label();
140 134
            this.label73 = new System.Windows.Forms.Label();
141 135
            this.label61 = new System.Windows.Forms.Label();
142 136
            this.label55 = new System.Windows.Forms.Label();
143
            this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
144 137
            this.label54 = new System.Windows.Forms.Label();
145
            this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
146 138
            this.label66 = new System.Windows.Forms.Label();
147 139
            this.label56 = new System.Windows.Forms.Label();
148 140
            this.label75 = new System.Windows.Forms.Label();
......
161 153
            this.btnFluctuation = new System.Windows.Forms.Button();
162 154
            this.rdbExistsFluctuation = new System.Windows.Forms.RadioButton();
163 155
            this.rdbNotFluctuation = new System.Windows.Forms.RadioButton();
164
            this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
165
            this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
166
            this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
167 156
            this.label46 = new System.Windows.Forms.Label();
168 157
            this.txtInput32 = new System.Windows.Forms.TextBox();
169 158
            this.label47 = new System.Windows.Forms.Label();
......
171 160
            this.txtInput31 = new System.Windows.Forms.TextBox();
172 161
            this.label41 = new System.Windows.Forms.Label();
173 162
            this.label50 = new System.Windows.Forms.Label();
174
            this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
175
            this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
176 163
            this.label25 = new System.Windows.Forms.Label();
177
            this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
178 164
            this.label42 = new System.Windows.Forms.Label();
179
            this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
180
            this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
181
            this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
182
            this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
183 165
            this.label81 = new System.Windows.Forms.Label();
184 166
            this.label82 = new System.Windows.Forms.Label();
185 167
            this.label77 = new System.Windows.Forms.Label();
......
188 170
            this.label67 = new System.Windows.Forms.Label();
189 171
            this.label79 = new System.Windows.Forms.Label();
190 172
            this.label31 = new System.Windows.Forms.Label();
191
            this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
192
            this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
193
            this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
194 173
            this.label113 = new System.Windows.Forms.Label();
195 174
            this.label76 = new System.Windows.Forms.Label();
196 175
            this.label112 = new System.Windows.Forms.Label();
......
198 177
            this.label40 = new System.Windows.Forms.Label();
199 178
            this.panel8 = new System.Windows.Forms.Panel();
200 179
            this.label118 = new System.Windows.Forms.Label();
180
            this.label120 = new System.Windows.Forms.Label();
201 181
            this.label117 = new System.Windows.Forms.Label();
202 182
            this.lblLinkTotal4 = new System.Windows.Forms.Label();
203 183
            this.lblLinkTotal3 = new System.Windows.Forms.Label();
......
206 186
            this.label116 = new System.Windows.Forms.Label();
207 187
            this.btnLink = new System.Windows.Forms.Button();
208 188
            this.label74 = new System.Windows.Forms.Label();
189
            this.dgvPurchaseOrder = new System.Windows.Forms.DataGridView();
190
            this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
191
            this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
192
            this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
193
            this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
209 194
            this.dgvLink = new System.Windows.Forms.DataGridView();
210 195
            this.Column0 = new System.Windows.Forms.DataGridViewTextBoxColumn();
211 196
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
......
217 202
            this.label85 = new System.Windows.Forms.Label();
218 203
            this.label84 = new System.Windows.Forms.Label();
219 204
            this.label83 = new System.Windows.Forms.Label();
220
            this.label111 = new System.Windows.Forms.Label();
221 205
            this.label103 = new System.Windows.Forms.Label();
222
            this.label104 = new System.Windows.Forms.Label();
223
            this.label110 = new System.Windows.Forms.Label();
224 206
            this.label102 = new System.Windows.Forms.Label();
207
            this.label119 = new System.Windows.Forms.Label();
225 208
            this.label108 = new System.Windows.Forms.Label();
226 209
            this.label52 = new System.Windows.Forms.Label();
227 210
            this.label109 = new System.Windows.Forms.Label();
211
            this.label121 = new System.Windows.Forms.Label();
228 212
            this.label43 = new System.Windows.Forms.Label();
229 213
            this.label45 = new System.Windows.Forms.Label();
230
            this.textBoxEX10 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
231
            this.textBoxEX9 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
232
            this.textBoxEX8 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
233 214
            this.label59 = new System.Windows.Forms.Label();
234 215
            this.panel9 = new System.Windows.Forms.Panel();
216
            this.label111 = new System.Windows.Forms.Label();
217
            this.label110 = new System.Windows.Forms.Label();
218
            this.label104 = new System.Windows.Forms.Label();
219
            this.label94 = new System.Windows.Forms.Label();
235 220
            this.label98 = new System.Windows.Forms.Label();
221
            this.textBox3 = new System.Windows.Forms.TextBox();
236 222
            this.textBox2 = new System.Windows.Forms.TextBox();
237 223
            this.label96 = new System.Windows.Forms.Label();
238 224
            this.label95 = new System.Windows.Forms.Label();
239 225
            this.label93 = new System.Windows.Forms.Label();
240 226
            this.label92 = new System.Windows.Forms.Label();
227
            this.label123 = new System.Windows.Forms.Label();
228
            this.label122 = new System.Windows.Forms.Label();
241 229
            this.label107 = new System.Windows.Forms.Label();
242 230
            this.label106 = new System.Windows.Forms.Label();
243 231
            this.label105 = new System.Windows.Forms.Label();
244
            this.label94 = new System.Windows.Forms.Label();
245 232
            this.label91 = new System.Windows.Forms.Label();
246 233
            this.label88 = new System.Windows.Forms.Label();
247 234
            this.label90 = new System.Windows.Forms.Label();
......
249 236
            this.label87 = new System.Windows.Forms.Label();
250 237
            this.label60 = new System.Windows.Forms.Label();
251 238
            this.label86 = new System.Windows.Forms.Label();
252
            this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
253
            this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
254
            this.txtInput37 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
255 239
            this.label2 = new System.Windows.Forms.Label();
256 240
            this.rdbStatusHikitugiFlg = new System.Windows.Forms.RadioButton();
257 241
            this.lblConstructionCodelabel = new System.Windows.Forms.Label();
......
282 266
            this.label29 = new System.Windows.Forms.Label();
283 267
            this.lblLastUpdate = new System.Windows.Forms.Label();
284 268
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
285
            this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
286
            this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
287 269
            this.btnApprovalList = new System.Windows.Forms.Button();
288 270
            this.btnOtherProc = new System.Windows.Forms.Button();
289 271
            this.lblJointLabel = new System.Windows.Forms.Label();
272
            this.label124 = new System.Windows.Forms.Label();
273
            this.label125 = new System.Windows.Forms.Label();
274
            this.label126 = new System.Windows.Forms.Label();
275
            this.label127 = new System.Windows.Forms.Label();
276
            this.label128 = new System.Windows.Forms.Label();
277
            this.dgvBillingDate = new System.Windows.Forms.DataGridView();
278
            this.BillingGridColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
279
            this.BillingGridColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
280
            this.BillingGridColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
281
            this.BillingGridColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
282
            this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
283
            this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
284
            this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
285
            this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
286
            this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
287
            this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
288
            this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
289
            this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
290
            this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
291
            this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
292
            this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
293
            this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
294
            this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
295
            this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
296
            this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
297
            this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
298
            this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
299
            this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
300
            this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
301
            this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
302
            this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
303
            this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
304
            this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
305
            this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
306
            this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
307
            this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
308
            this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
309
            this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
310
            this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
311
            this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
312
            this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
313
            this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
314
            this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
315
            this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
316
            this.label129 = new System.Windows.Forms.Label();
317
            this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
290 318
            this.BasePanel.SuspendLayout();
291 319
            this.tableLayoutPanel2.SuspendLayout();
320
            this.panel10.SuspendLayout();
292 321
            this.panel1.SuspendLayout();
293 322
            this.panel2.SuspendLayout();
294 323
            this.panel3.SuspendLayout();
......
297 326
            this.panel7.SuspendLayout();
298 327
            this.pnlFluctuation.SuspendLayout();
299 328
            this.panel8.SuspendLayout();
329
            ((System.ComponentModel.ISupportInitialize)(this.dgvPurchaseOrder)).BeginInit();
300 330
            ((System.ComponentModel.ISupportInitialize)(this.dgvLink)).BeginInit();
301 331
            this.panel9.SuspendLayout();
302 332
            this.panel5.SuspendLayout();
333
            ((System.ComponentModel.ISupportInitialize)(this.dgvBillingDate)).BeginInit();
303 334
            this.SuspendLayout();
304 335
            // 
305 336
            // label1
......
415 446
            | System.Windows.Forms.AnchorStyles.Right)));
416 447
            this.panel10.BackColor = System.Drawing.Color.Moccasin;
417 448
            this.panel10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
449
            this.panel10.Controls.Add(this.dgvBillingDate);
450
            this.panel10.Controls.Add(this.label124);
451
            this.panel10.Controls.Add(this.label125);
452
            this.panel10.Controls.Add(this.label126);
453
            this.panel10.Controls.Add(this.label127);
454
            this.panel10.Controls.Add(this.label128);
418 455
            this.panel10.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
419 456
            this.panel10.Location = new System.Drawing.Point(666, 2113);
420 457
            this.panel10.Name = "panel10";
......
591 628
            this.label8.Text = "工事場所";
592 629
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
593 630
            // 
594
            // comboBoxEX1
595
            // 
596
            this.comboBoxEX1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
597
            this.comboBoxEX1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
598
            this.comboBoxEX1.FormattingEnabled = true;
599
            this.comboBoxEX1.Location = new System.Drawing.Point(129, 724);
600
            this.comboBoxEX1.Name = "comboBoxEX1";
601
            this.comboBoxEX1.Size = new System.Drawing.Size(255, 27);
602
            this.comboBoxEX1.TabIndex = 22;
603
            this.comboBoxEX1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
604
            this.comboBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
605
            // 
606
            // cmbDisplayPerson
607
            // 
608
            this.cmbDisplayPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
609
            this.cmbDisplayPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
610
            this.cmbDisplayPerson.FormattingEnabled = true;
611
            this.cmbDisplayPerson.Location = new System.Drawing.Point(384, 724);
612
            this.cmbDisplayPerson.Name = "cmbDisplayPerson";
613
            this.cmbDisplayPerson.Size = new System.Drawing.Size(255, 27);
614
            this.cmbDisplayPerson.TabIndex = 23;
615
            this.cmbDisplayPerson.TextChanged += new System.EventHandler(this.valueChange);
616
            // 
617 631
            // label4
618 632
            // 
619 633
            this.label4.BackColor = System.Drawing.Color.CornflowerBlue;
......
679 693
            this.rdbEstimateType1.UseVisualStyleBackColor = false;
680 694
            this.rdbEstimateType1.CheckedChanged += new System.EventHandler(this.valueChange);
681 695
            // 
682
            // cmbConstructionType
683
            // 
684
            this.cmbConstructionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
685
            this.cmbConstructionType.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
686
            this.cmbConstructionType.FormattingEnabled = true;
687
            this.cmbConstructionType.Location = new System.Drawing.Point(129, 602);
688
            this.cmbConstructionType.Name = "cmbConstructionType";
689
            this.cmbConstructionType.Size = new System.Drawing.Size(372, 27);
690
            this.cmbConstructionType.TabIndex = 21;
691
            this.cmbConstructionType.SelectedIndexChanged += new System.EventHandler(this.cmbConstructionType_SelectedIndexChanged);
692
            this.cmbConstructionType.TextChanged += new System.EventHandler(this.valueChange);
693
            // 
694 696
            // txtInput08
695 697
            // 
696 698
            this.txtInput08.ImeMode = System.Windows.Forms.ImeMode.Disable;
......
1078 1080
            this.label5.Text = "発 注 者";
1079 1081
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1080 1082
            // 
1081
            // cmbOrdersDivision
1082
            // 
1083
            this.cmbOrdersDivision.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
1084
            | System.Windows.Forms.AnchorStyles.Right)));
1085
            this.cmbOrdersDivision.AutoCompleteCustomSource.AddRange(new string[] {
1086
            "株式会社",
1087
            "有限会社",
1088
            "合名会社",
1089
            "合資会社",
1090
            "合同会社"});
1091
            this.cmbOrdersDivision.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1092
            this.cmbOrdersDivision.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1093
            this.cmbOrdersDivision.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1094
            this.cmbOrdersDivision.FormattingEnabled = true;
1095
            this.cmbOrdersDivision.Location = new System.Drawing.Point(129, 154);
1096
            this.cmbOrdersDivision.Name = "cmbOrdersDivision";
1097
            this.cmbOrdersDivision.Size = new System.Drawing.Size(507, 27);
1098
            this.cmbOrdersDivision.TabIndex = 7;
1099
            this.cmbOrdersDivision.SelectedIndexChanged += new System.EventHandler(this.cmbOrdersDivision_SelectedIndexChanged);
1100
            this.cmbOrdersDivision.TextChanged += new System.EventHandler(this.valueChange);
1101
            // 
1102 1083
            // btnOrderer
1103 1084
            // 
1104 1085
            this.btnOrderer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
......
1114 1095
            this.btnOrderer.Visible = false;
1115 1096
            this.btnOrderer.Click += new System.EventHandler(this.btnOrderer_Click);
1116 1097
            // 
1117
            // cmbDisplayOrderers
1118
            // 
1119
            this.cmbDisplayOrderers.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
1120
            | System.Windows.Forms.AnchorStyles.Right)));
1121
            this.cmbDisplayOrderers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1122
            this.cmbDisplayOrderers.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1123
            this.cmbDisplayOrderers.FormattingEnabled = true;
1124
            this.cmbDisplayOrderers.Location = new System.Drawing.Point(129, 184);
1125
            this.cmbDisplayOrderers.Name = "cmbDisplayOrderers";
1126
            this.cmbDisplayOrderers.Size = new System.Drawing.Size(376, 27);
1127
            this.cmbDisplayOrderers.TabIndex = 8;
1128
            this.cmbDisplayOrderers.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayOrderers_SelectedIndexChanged);
1129
            this.cmbDisplayOrderers.TextChanged += new System.EventHandler(this.valueChange);
1130
            // 
1131 1098
            // txtInput05
1132 1099
            // 
1133 1100
            this.txtInput05.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
......
1294 1261
            this.label30.Text = "税込\r\n受注決定金額";
1295 1262
            this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1296 1263
            // 
1297
            // txtInput28
1298
            // 
1299
            this.txtInput28.BackColor = System.Drawing.Color.White;
1300
            this.txtInput28.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1301
            this.txtInput28.ForeColor = System.Drawing.Color.Black;
1302
            this.txtInput28.ImeMode = System.Windows.Forms.ImeMode.Disable;
1303
            this.txtInput28.Location = new System.Drawing.Point(128, 104);
1304
            this.txtInput28.MaxLength = 10;
1305
            this.txtInput28.Name = "txtInput28";
1306
            this.txtInput28.Size = new System.Drawing.Size(274, 34);
1307
            this.txtInput28.TabIndex = 28;
1308
            this.txtInput28.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1309
            this.txtInput28.TextChanged += new System.EventHandler(this.valueChange);
1310
            this.txtInput28.Validated += new System.EventHandler(this.txtInput25_Validated);
1311
            // 
1312 1264
            // label27
1313 1265
            // 
1314 1266
            this.label27.BackColor = System.Drawing.Color.MidnightBlue;
......
1322 1274
            this.label27.Text = "税別\r\n受注決定金額";
1323 1275
            this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1324 1276
            // 
1325
            // txtInput25
1326
            // 
1327
            this.txtInput25.BackColor = System.Drawing.Color.White;
1328
            this.txtInput25.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1329
            this.txtInput25.ForeColor = System.Drawing.Color.Black;
1330
            this.txtInput25.ImeMode = System.Windows.Forms.ImeMode.Disable;
1331
            this.txtInput25.Location = new System.Drawing.Point(128, 64);
1332
            this.txtInput25.MaxLength = 10;
1333
            this.txtInput25.Name = "txtInput25";
1334
            this.txtInput25.Size = new System.Drawing.Size(274, 34);
1335
            this.txtInput25.TabIndex = 27;
1336
            this.txtInput25.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1337
            this.txtInput25.TextChanged += new System.EventHandler(this.valueChange);
1338
            this.txtInput25.Validated += new System.EventHandler(this.txtInput25_Validated);
1339
            // 
1340 1277
            // lblTransferDate
1341 1278
            // 
1342 1279
            this.lblTransferDate.BackColor = System.Drawing.SystemColors.Window;
......
1359 1296
            this.label36.Text = "部署引継日";
1360 1297
            this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1361 1298
            // 
1362
            // cmbTransferConstruction
1363
            // 
1364
            this.cmbTransferConstruction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1365
            this.cmbTransferConstruction.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1366
            this.cmbTransferConstruction.FormattingEnabled = true;
1367
            this.cmbTransferConstruction.Location = new System.Drawing.Point(128, 843);
1368
            this.cmbTransferConstruction.Name = "cmbTransferConstruction";
1369
            this.cmbTransferConstruction.Size = new System.Drawing.Size(300, 27);
1370
            this.cmbTransferConstruction.TabIndex = 39;
1371
            this.cmbTransferConstruction.SelectedIndexChanged += new System.EventHandler(this.cmbTransferConstruction_SelectedIndexChanged);
1372
            this.cmbTransferConstruction.TextChanged += new System.EventHandler(this.valueChange);
1373
            // 
1374 1299
            // txtInput26
1375 1300
            // 
1376 1301
            this.txtInput26.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
......
1421 1346
            this.label33.Text = "見積提出期限";
1422 1347
            this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1423 1348
            // 
1424
            // txtInput27
1425
            // 
1426
            this.txtInput27.ImeMode = System.Windows.Forms.ImeMode.Disable;
1427
            this.txtInput27.Location = new System.Drawing.Point(128, 33);
1428
            this.txtInput27.MaxLength = 10;
1429
            this.txtInput27.Name = "txtInput27";
1430
            this.txtInput27.Size = new System.Drawing.Size(120, 26);
1431
            this.txtInput27.TabIndex = 26;
1432
            this.txtInput27.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1433
            this.txtInput27.TextChanged += new System.EventHandler(this.valueChange);
1434
            // 
1435
            // txtInput02
1436
            // 
1437
            this.txtInput02.ImeMode = System.Windows.Forms.ImeMode.Disable;
1438
            this.txtInput02.Location = new System.Drawing.Point(128, 182);
1439
            this.txtInput02.MaxLength = 10;
1440
            this.txtInput02.Name = "txtInput02";
1441
            this.txtInput02.Size = new System.Drawing.Size(120, 26);
1442
            this.txtInput02.TabIndex = 29;
1443
            this.txtInput02.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1444
            this.txtInput02.TextChanged += new System.EventHandler(this.valueChange);
1445
            this.txtInput02.Validated += new System.EventHandler(this.txtInput02_TextChanged);
1446
            // 
1447 1349
            // label24
1448 1350
            // 
1449 1351
            this.label24.BackColor = System.Drawing.Color.LightBlue;
......
1456 1358
            this.label24.Text = "見積提出日";
1457 1359
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1458 1360
            // 
1459
            // txtInput06
1460
            // 
1461
            this.txtInput06.ImeMode = System.Windows.Forms.ImeMode.Disable;
1462
            this.txtInput06.Location = new System.Drawing.Point(128, 212);
1463
            this.txtInput06.MaxLength = 10;
1464
            this.txtInput06.Name = "txtInput06";
1465
            this.txtInput06.Size = new System.Drawing.Size(120, 26);
1466
            this.txtInput06.TabIndex = 30;
1467
            this.txtInput06.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1468
            this.txtInput06.TextChanged += new System.EventHandler(this.valueChange);
1469
            this.txtInput06.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1470
            // 
1471 1361
            // label22
1472 1362
            // 
1473 1363
            this.label22.BackColor = System.Drawing.Color.LightBlue;
......
1480 1370
            this.label22.Text = "見積有効期限";
1481 1371
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1482 1372
            // 
1483
            // txtInput12
1484
            // 
1485
            this.txtInput12.ImeMode = System.Windows.Forms.ImeMode.Disable;
1486
            this.txtInput12.Location = new System.Drawing.Point(128, 302);
1487
            this.txtInput12.MaxLength = 10;
1488
            this.txtInput12.Name = "txtInput12";
1489
            this.txtInput12.Size = new System.Drawing.Size(120, 26);
1490
            this.txtInput12.TabIndex = 31;
1491
            this.txtInput12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1492
            this.txtInput12.TextChanged += new System.EventHandler(this.valueChange);
1493
            this.txtInput12.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1494
            // 
1495 1373
            // label12
1496 1374
            // 
1497 1375
            this.label12.BackColor = System.Drawing.Color.LightBlue;
......
1504 1382
            this.label12.Text = "工事期間 開始";
1505 1383
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1506 1384
            // 
1507
            // txtInput13
1508
            // 
1509
            this.txtInput13.ImeMode = System.Windows.Forms.ImeMode.Disable;
1510
            this.txtInput13.Location = new System.Drawing.Point(128, 332);
1511
            this.txtInput13.MaxLength = 10;
1512
            this.txtInput13.Name = "txtInput13";
1513
            this.txtInput13.Size = new System.Drawing.Size(120, 26);
1514
            this.txtInput13.TabIndex = 32;
1515
            this.txtInput13.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1516
            this.txtInput13.TextChanged += new System.EventHandler(this.valueChange);
1517
            this.txtInput13.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1518
            // 
1519 1385
            // label15
1520 1386
            // 
1521 1387
            this.label15.BackColor = System.Drawing.Color.LightBlue;
......
1638 1504
            this.label71.Text = "非受注日";
1639 1505
            this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1640 1506
            // 
1641
            // textBoxEX2
1642
            // 
1643
            this.textBoxEX2.ImeMode = System.Windows.Forms.ImeMode.Disable;
1644
            this.textBoxEX2.Location = new System.Drawing.Point(128, 562);
1645
            this.textBoxEX2.MaxLength = 10;
1646
            this.textBoxEX2.Name = "textBoxEX2";
1647
            this.textBoxEX2.Size = new System.Drawing.Size(120, 26);
1648
            this.textBoxEX2.TabIndex = 35;
1649
            this.textBoxEX2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1650
            this.textBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
1651
            this.textBoxEX2.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1652
            // 
1653
            // textBoxEX1
1654
            // 
1655
            this.textBoxEX1.ImeMode = System.Windows.Forms.ImeMode.Disable;
1656
            this.textBoxEX1.Location = new System.Drawing.Point(128, 502);
1657
            this.textBoxEX1.MaxLength = 10;
1658
            this.textBoxEX1.Name = "textBoxEX1";
1659
            this.textBoxEX1.Size = new System.Drawing.Size(120, 26);
1660
            this.textBoxEX1.TabIndex = 33;
1661
            this.textBoxEX1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1662
            this.textBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
1663
            this.textBoxEX1.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1664
            // 
1665
            // txtInput03
1666
            // 
1667
            this.txtInput03.ImeMode = System.Windows.Forms.ImeMode.Disable;
1668
            this.txtInput03.Location = new System.Drawing.Point(128, 532);
1669
            this.txtInput03.MaxLength = 10;
1670
            this.txtInput03.Name = "txtInput03";
1671
            this.txtInput03.Size = new System.Drawing.Size(120, 26);
1672
            this.txtInput03.TabIndex = 34;
1673
            this.txtInput03.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1674
            this.txtInput03.TextChanged += new System.EventHandler(this.valueChange);
1675
            this.txtInput03.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1676
            // 
1677 1507
            // label62
1678 1508
            // 
1679 1509
            this.label62.BackColor = System.Drawing.Color.Black;
......
1739 1569
            this.label55.Text = "※「施工開始予定日」はおおよその工事開始日(現場着手時期)を\r\n「受注日」入力時に入力して下さい";
1740 1570
            this.label55.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
1741 1571
            // 
1742
            // txtInput38
1743
            // 
1744
            this.txtInput38.ImeMode = System.Windows.Forms.ImeMode.Disable;
1745
            this.txtInput38.Location = new System.Drawing.Point(128, 632);
1746
            this.txtInput38.MaxLength = 10;
1747
            this.txtInput38.Name = "txtInput38";
1748
            this.txtInput38.Size = new System.Drawing.Size(120, 26);
1749
            this.txtInput38.TabIndex = 36;
1750
            this.txtInput38.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1751
            this.txtInput38.TextChanged += new System.EventHandler(this.valueChange);
1752
            this.txtInput38.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1753
            // 
1754 1572
            // label54
1755 1573
            // 
1756 1574
            this.label54.BackColor = System.Drawing.Color.LightBlue;
......
1764 1582
            this.label54.Text = "受注時施工完了予定日";
1765 1583
            this.label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1766 1584
            // 
1767
            // txtInput34
1768
            // 
1769
            this.txtInput34.ImeMode = System.Windows.Forms.ImeMode.Disable;
1770
            this.txtInput34.Location = new System.Drawing.Point(128, 662);
1771
            this.txtInput34.MaxLength = 10;
1772
            this.txtInput34.Name = "txtInput34";
1773
            this.txtInput34.Size = new System.Drawing.Size(120, 26);
1774
            this.txtInput34.TabIndex = 37;
1775
            this.txtInput34.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1776
            this.txtInput34.TextChanged += new System.EventHandler(this.valueChange);
1777
            this.txtInput34.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1778
            // 
1779 1585
            // label66
1780 1586
            // 
1781 1587
            this.label66.BackColor = System.Drawing.Color.Black;
......
2034 1840
            this.rdbNotFluctuation.UseVisualStyleBackColor = true;
2035 1841
            this.rdbNotFluctuation.CheckedChanged += new System.EventHandler(this.rdbFluctuation_CheckedChanged);
2036 1842
            // 
2037
            // comboBoxEX4
2038
            // 
2039
            this.comboBoxEX4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2040
            this.comboBoxEX4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2041
            this.comboBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2042
            this.comboBoxEX4.FormattingEnabled = true;
2043
            this.comboBoxEX4.Location = new System.Drawing.Point(129, 93);
2044
            this.comboBoxEX4.Name = "comboBoxEX4";
2045
            this.comboBoxEX4.Size = new System.Drawing.Size(255, 27);
2046
            this.comboBoxEX4.TabIndex = 44;
2047
            this.comboBoxEX4.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2048
            // 
2049
            // comboBoxEX3
2050
            // 
2051
            this.comboBoxEX3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2052
            this.comboBoxEX3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2053
            this.comboBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2054
            this.comboBoxEX3.FormattingEnabled = true;
2055
            this.comboBoxEX3.Location = new System.Drawing.Point(129, 63);
2056
            this.comboBoxEX3.Name = "comboBoxEX3";
2057
            this.comboBoxEX3.Size = new System.Drawing.Size(255, 27);
2058
            this.comboBoxEX3.TabIndex = 42;
2059
            this.comboBoxEX3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2060
            // 
2061
            // cmbDisplayConstrSubPerson
2062
            // 
2063
            this.cmbDisplayConstrSubPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2064
            this.cmbDisplayConstrSubPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2065
            this.cmbDisplayConstrSubPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2066
            this.cmbDisplayConstrSubPerson.FormattingEnabled = true;
2067
            this.cmbDisplayConstrSubPerson.Location = new System.Drawing.Point(384, 63);
2068
            this.cmbDisplayConstrSubPerson.Name = "cmbDisplayConstrSubPerson";
2069
            this.cmbDisplayConstrSubPerson.Size = new System.Drawing.Size(255, 27);
2070
            this.cmbDisplayConstrSubPerson.TabIndex = 43;
2071
            // 
2072 1843
            // label46
2073 1844
            // 
2074 1845
            this.label46.BackColor = System.Drawing.Color.Black;
......
2160 1931
            this.label50.Text = "施工開始日";
2161 1932
            this.label50.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2162 1933
            // 
2163
            // textBoxEX3
2164
            // 
2165
            this.textBoxEX3.Enabled = false;
2166
            this.textBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2167
            this.textBoxEX3.ImeMode = System.Windows.Forms.ImeMode.Disable;
2168
            this.textBoxEX3.Location = new System.Drawing.Point(129, 273);
2169
            this.textBoxEX3.MaxLength = 10;
2170
            this.textBoxEX3.Name = "textBoxEX3";
2171
            this.textBoxEX3.Size = new System.Drawing.Size(120, 26);
2172
            this.textBoxEX3.TabIndex = 50;
2173
            this.textBoxEX3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2174
            this.textBoxEX3.TextChanged += new System.EventHandler(this.valueChange);
2175
            this.textBoxEX3.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2176
            // 
2177
            // txtInput35
2178
            // 
2179
            this.txtInput35.Enabled = false;
2180
            this.txtInput35.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2181
            this.txtInput35.ImeMode = System.Windows.Forms.ImeMode.Disable;
2182
            this.txtInput35.Location = new System.Drawing.Point(129, 303);
2183
            this.txtInput35.MaxLength = 10;
2184
            this.txtInput35.Name = "txtInput35";
2185
            this.txtInput35.Size = new System.Drawing.Size(120, 26);
2186
            this.txtInput35.TabIndex = 51;
2187
            this.txtInput35.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2188
            this.txtInput35.TextChanged += new System.EventHandler(this.valueChange);
2189
            this.txtInput35.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2190
            // 
2191 1934
            // label25
2192 1935
            // 
2193 1936
            this.label25.BackColor = System.Drawing.Color.LightGreen;
......
2200 1943
            this.label25.Text = "施工完了日";
2201 1944
            this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2202 1945
            // 
2203
            // txtInput04
2204
            // 
2205
            this.txtInput04.Enabled = false;
2206
            this.txtInput04.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2207
            this.txtInput04.ImeMode = System.Windows.Forms.ImeMode.Disable;
2208
            this.txtInput04.Location = new System.Drawing.Point(129, 333);
2209
            this.txtInput04.MaxLength = 10;
2210
            this.txtInput04.Name = "txtInput04";
2211
            this.txtInput04.Size = new System.Drawing.Size(120, 26);
2212
            this.txtInput04.TabIndex = 52;
2213
            this.txtInput04.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2214
            this.txtInput04.TextChanged += new System.EventHandler(this.valueChange);
2215
            this.txtInput04.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2216
            // 
2217 1946
            // label42
2218 1947
            // 
2219 1948
            this.label42.BackColor = System.Drawing.Color.Black;
......
2226 1955
            this.label42.Text = "※「着工」・「完成」は契約書に基づき記入して下さい\r\n(当社、発給の契約書・施工計画書に記載されます)";
2227 1956
            this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2228 1957
            // 
2229
            // textBoxEX5
2230
            // 
2231
            this.textBoxEX5.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2232
            this.textBoxEX5.ImeMode = System.Windows.Forms.ImeMode.Disable;
2233
            this.textBoxEX5.Location = new System.Drawing.Point(362, 183);
2234
            this.textBoxEX5.MaxLength = 10;
2235
            this.textBoxEX5.Name = "textBoxEX5";
2236
            this.textBoxEX5.Size = new System.Drawing.Size(120, 26);
2237
            this.textBoxEX5.TabIndex = 49;
2238
            this.textBoxEX5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2239
            this.textBoxEX5.TextChanged += new System.EventHandler(this.valueChange);
2240
            this.textBoxEX5.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2241
            // 
2242
            // textBoxEX4
2243
            // 
2244
            this.textBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2245
            this.textBoxEX4.ImeMode = System.Windows.Forms.ImeMode.Disable;
2246
            this.textBoxEX4.Location = new System.Drawing.Point(362, 153);
2247
            this.textBoxEX4.MaxLength = 10;
2248
            this.textBoxEX4.Name = "textBoxEX4";
2249
            this.textBoxEX4.Size = new System.Drawing.Size(120, 26);
2250
            this.textBoxEX4.TabIndex = 47;
2251
            this.textBoxEX4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2252
            this.textBoxEX4.TextChanged += new System.EventHandler(this.valueChange);
2253
            this.textBoxEX4.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2254
            // 
2255
            // txtInput29
2256
            // 
2257
            this.txtInput29.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2258
            this.txtInput29.ImeMode = System.Windows.Forms.ImeMode.Disable;
2259
            this.txtInput29.Location = new System.Drawing.Point(161, 153);
2260
            this.txtInput29.MaxLength = 10;
2261
            this.txtInput29.Name = "txtInput29";
2262
            this.txtInput29.Size = new System.Drawing.Size(120, 26);
2263
            this.txtInput29.TabIndex = 46;
2264
            this.txtInput29.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2265
            this.txtInput29.TextChanged += new System.EventHandler(this.valueChange);
2266
            this.txtInput29.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2267
            // 
2268
            // txtInput30
2269
            // 
2270
            this.txtInput30.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2271
            this.txtInput30.ImeMode = System.Windows.Forms.ImeMode.Disable;
2272
            this.txtInput30.Location = new System.Drawing.Point(161, 183);
2273
            this.txtInput30.MaxLength = 10;
2274
            this.txtInput30.Name = "txtInput30";
2275
            this.txtInput30.Size = new System.Drawing.Size(120, 26);
2276
            this.txtInput30.TabIndex = 48;
2277
            this.txtInput30.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2278
            this.txtInput30.TextChanged += new System.EventHandler(this.valueChange);
2279
            this.txtInput30.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2280
            // 
2281 1958
            // label81
2282 1959
            // 
2283 1960
            this.label81.BackColor = System.Drawing.Color.LightGreen;
......
2374 2051
            this.label31.Text = "工事指導";
2375 2052
            this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2376 2053
            // 
2377
            // cmbConstructionInstructor
2378
            // 
2379
            this.cmbConstructionInstructor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2380
            this.cmbConstructionInstructor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2381
            this.cmbConstructionInstructor.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2382
            this.cmbConstructionInstructor.FormattingEnabled = true;
2383
            this.cmbConstructionInstructor.Location = new System.Drawing.Point(384, 93);
2384
            this.cmbConstructionInstructor.Name = "cmbConstructionInstructor";
2385
            this.cmbConstructionInstructor.Size = new System.Drawing.Size(255, 27);
2386
            this.cmbConstructionInstructor.TabIndex = 45;
2387
            this.cmbConstructionInstructor.TextChanged += new System.EventHandler(this.valueChange);
2388
            // 
2389
            // comboBoxEX2
2390
            // 
2391
            this.comboBoxEX2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2392
            this.comboBoxEX2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2393
            this.comboBoxEX2.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2394
            this.comboBoxEX2.FormattingEnabled = true;
2395
            this.comboBoxEX2.Location = new System.Drawing.Point(129, 33);
2396
            this.comboBoxEX2.Name = "comboBoxEX2";
2397
            this.comboBoxEX2.Size = new System.Drawing.Size(255, 27);
2398
            this.comboBoxEX2.TabIndex = 40;
2399
            this.comboBoxEX2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2400
            this.comboBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
2401
            // 
2402
            // cmbDisplayConstructionPerson
2403
            // 
2404
            this.cmbDisplayConstructionPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2405
            this.cmbDisplayConstructionPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2406
            this.cmbDisplayConstructionPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2407
            this.cmbDisplayConstructionPerson.FormattingEnabled = true;
2408
            this.cmbDisplayConstructionPerson.Location = new System.Drawing.Point(384, 33);
2409
            this.cmbDisplayConstructionPerson.Name = "cmbDisplayConstructionPerson";
2410
            this.cmbDisplayConstructionPerson.Size = new System.Drawing.Size(255, 27);
2411
            this.cmbDisplayConstructionPerson.TabIndex = 41;
2412
            this.cmbDisplayConstructionPerson.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayConstructionPerson_SelectedIndexChanged);
2413
            this.cmbDisplayConstructionPerson.TextChanged += new System.EventHandler(this.valueChange);
2414
            // 
2415 2054
            // label113
2416 2055
            // 
2417 2056
            this.label113.BackColor = System.Drawing.Color.LightGreen;
......
2477 2116
            this.panel8.BackColor = System.Drawing.Color.LawnGreen;
2478 2117
            this.panel8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2479 2118
            this.panel8.Controls.Add(this.label118);
2119
            this.panel8.Controls.Add(this.label120);
2480 2120
            this.panel8.Controls.Add(this.label117);
2481 2121
            this.panel8.Controls.Add(this.lblLinkTotal4);
2482 2122
            this.panel8.Controls.Add(this.lblLinkTotal3);
......
2485 2125
            this.panel8.Controls.Add(this.label116);
2486 2126
            this.panel8.Controls.Add(this.btnLink);
2487 2127
            this.panel8.Controls.Add(this.label74);
2128
            this.panel8.Controls.Add(this.dgvPurchaseOrder);
2488 2129
            this.panel8.Controls.Add(this.dgvLink);
2489 2130
            this.panel8.Controls.Add(this.label85);
2490 2131
            this.panel8.Controls.Add(this.label84);
2491 2132
            this.panel8.Controls.Add(this.label83);
2492
            this.panel8.Controls.Add(this.label111);
2493 2133
            this.panel8.Controls.Add(this.label103);
2494
            this.panel8.Controls.Add(this.label104);
2495
            this.panel8.Controls.Add(this.label110);
2496 2134
            this.panel8.Controls.Add(this.label102);
2135
            this.panel8.Controls.Add(this.label119);
2497 2136
            this.panel8.Controls.Add(this.label108);
2498 2137
            this.panel8.Controls.Add(this.label52);
2499 2138
            this.panel8.Controls.Add(this.label109);
2139
            this.panel8.Controls.Add(this.label121);
2500 2140
            this.panel8.Controls.Add(this.label43);
2501 2141
            this.panel8.Controls.Add(this.label45);
2502
            this.panel8.Controls.Add(this.textBoxEX10);
2503
            this.panel8.Controls.Add(this.textBoxEX9);
2504
            this.panel8.Controls.Add(this.textBoxEX8);
2505 2142
            this.panel8.Location = new System.Drawing.Point(666, 1073);
2506 2143
            this.panel8.Name = "panel8";
2507 2144
            this.panel8.Size = new System.Drawing.Size(651, 994);
......
2511 2148
            // 
2512 2149
            this.label118.BackColor = System.Drawing.Color.White;
2513 2150
            this.label118.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2514
            this.label118.Location = new System.Drawing.Point(128, 475);
2151
            this.label118.Location = new System.Drawing.Point(128, 641);
2515 2152
            this.label118.Name = "label118";
2516 2153
            this.label118.Size = new System.Drawing.Size(120, 26);
2517 2154
            this.label118.TabIndex = 192;
2518 2155
            this.label118.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2519 2156
            // 
2157
            // label120
2158
            // 
2159
            this.label120.BackColor = System.Drawing.Color.PaleGreen;
2160
            this.label120.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2161
            this.label120.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2162
            this.label120.Location = new System.Drawing.Point(2, 601);
2163
            this.label120.Name = "label120";
2164
            this.label120.Size = new System.Drawing.Size(120, 30);
2165
            this.label120.TabIndex = 191;
2166
            this.label120.Text = "工事詳細台帳";
2167
            this.label120.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2168
            // 
2520 2169
            // label117
2521 2170
            // 
2522 2171
            this.label117.BackColor = System.Drawing.Color.PaleGreen;
2523 2172
            this.label117.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2524
            this.label117.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2525
            this.label117.Location = new System.Drawing.Point(1, 473);
2173
            this.label117.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2174
            this.label117.Location = new System.Drawing.Point(1, 639);
2526 2175
            this.label117.Name = "label117";
2527 2176
            this.label117.Size = new System.Drawing.Size(120, 30);
2528 2177
            this.label117.TabIndex = 191;
2529
            this.label117.Text = "工事詳細台帳\r\n入力完了日";
2178
            this.label117.Text = "入力完了日";
2530 2179
            this.label117.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2531 2180
            // 
2532 2181
            // lblLinkTotal4
......
2535 2184
            this.lblLinkTotal4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
2536 2185
            this.lblLinkTotal4.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
2537 2186
            this.lblLinkTotal4.ForeColor = System.Drawing.Color.Black;
2538
            this.lblLinkTotal4.Location = new System.Drawing.Point(501, 421);
2187
            this.lblLinkTotal4.Location = new System.Drawing.Point(501, 533);
2539 2188
            this.lblLinkTotal4.Name = "lblLinkTotal4";
2540 2189
            this.lblLinkTotal4.Size = new System.Drawing.Size(120, 22);
2541 2190
            this.lblLinkTotal4.TabIndex = 189;
......
2547 2196
            this.lblLinkTotal3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
2548 2197
            this.lblLinkTotal3.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
2549 2198
            this.lblLinkTotal3.ForeColor = System.Drawing.Color.Black;
2550
            this.lblLinkTotal3.Location = new System.Drawing.Point(381, 421);
2199
            this.lblLinkTotal3.Location = new System.Drawing.Point(381, 533);
2551 2200
            this.lblLinkTotal3.Name = "lblLinkTotal3";
2552 2201
            this.lblLinkTotal3.Size = new System.Drawing.Size(120, 22);
2553 2202
            this.lblLinkTotal3.TabIndex = 188;
......
2559 2208
            this.lblLinkTotal2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
2560 2209
            this.lblLinkTotal2.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
2561 2210
            this.lblLinkTotal2.ForeColor = System.Drawing.Color.Black;
2562
            this.lblLinkTotal2.Location = new System.Drawing.Point(261, 421);
2211
            this.lblLinkTotal2.Location = new System.Drawing.Point(261, 533);
2563 2212
            this.lblLinkTotal2.Name = "lblLinkTotal2";
2564 2213
            this.lblLinkTotal2.Size = new System.Drawing.Size(120, 22);
2565 2214
            this.lblLinkTotal2.TabIndex = 187;
......
2571 2220
            this.lblLinkTotal1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
2572 2221
            this.lblLinkTotal1.Font = new System.Drawing.Font("Century", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
2573 2222
            this.lblLinkTotal1.ForeColor = System.Drawing.Color.Black;
2574
            this.lblLinkTotal1.Location = new System.Drawing.Point(141, 421);
2223
            this.lblLinkTotal1.Location = new System.Drawing.Point(141, 533);
2575 2224
            this.lblLinkTotal1.Name = "lblLinkTotal1";
2576 2225
            this.lblLinkTotal1.Size = new System.Drawing.Size(120, 22);
2577 2226
            this.lblLinkTotal1.TabIndex = 186;
......
2583 2232
            this.label116.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
2584 2233
            this.label116.Font = new System.Drawing.Font("MS P明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2585 2234
            this.label116.ForeColor = System.Drawing.Color.Black;
2586
            this.label116.Location = new System.Drawing.Point(1, 421);
2235
            this.label116.Location = new System.Drawing.Point(1, 533);
2587 2236
            this.label116.Name = "label116";
2588 2237
            this.label116.Size = new System.Drawing.Size(140, 22);
2589 2238
            this.label116.TabIndex = 185;
......
2595 2244
            this.btnLink.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
2596 2245
            this.btnLink.BackColor = System.Drawing.Color.Tan;
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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