プロジェクト

全般

プロフィール

リビジョン 333

堀内ほぼ7年前に追加

部署移動関連修正

差分を表示:

branches/src/ProcessManagement/ProcessManagement/Common/CommonMotions.cs
23 23
using ProcessManagement.DataModel;
24 24
using ProcessManagement.DB.IOAccess;
25 25
using ProcessManagement.Forms.CustomControls;
26
using ProcessManagement.Forms.DataEntry;
26 27

  
27 28
namespace ProcessManagement.Common
28 29
{
......
2675 2676
                StringBuilder strSQL = new StringBuilder();
2676 2677
                strSQL.Append("SELECT SUM(SAL.SALARY) FROM");
2677 2678
                strSQL.Append(" (SELECT AX.hiduke,");
2678
                strSQL.AppendFormat(" ROUND((AX.salary * {0}) / DATE_FORMAT(LAST_DAY(AX.hiduke), '%d')) AS SALARY,", CommonDefine.s_SalaryCorrection);
2679
                //strSQL.AppendFormat(" ROUND((AX.salary * {0}) / DATE_FORMAT(LAST_DAY(AX.hiduke), '%d')) AS SALARY,", CommonDefine.s_SalaryCorrection);
2680
                strSQL.AppendFormat(" ROUND((AX.salary * {0}) / 30) AS SALARY,", CommonDefine.s_SalaryCorrection);
2679 2681
                strSQL.Append(" MAX(AX.StartD) FROM");
2680 2682
                strSQL.Append(" (SELECT A.d hiduke, B.MonthlySalary salary, B.STARTDATE StartD FROM");
2681 2683

  
......
2764 2766
        }
2765 2767
        #endregion
2766 2768

  
2769
        #region 期間より零れた経過給与を取得する
2770
        /// <summary>
2771
        /// 期間より零れた経過給与を取得する
2772
        /// </summary>
2773
        /// <returns></returns>
2774
        public static int CalcSpilledSalary(IOMPersonInCharge SalDB, int TargetYear, DateTime dtStart, DateTime dtLast, int PersonCode)
2775
        {
2776
            try
2777
            {
2778
                int RetSalary = 0;
2779

  
2780
                StringBuilder strSQL = new StringBuilder();
2781

  
2782
                strSQL.Append("Select");
2783
                strSQL.Append(" Base.ConstructionCode");
2784
                strSQL.Append(", Ledger.ConstructionStart");
2785
                strSQL.Append(", Ledger.ConstructionEnd");
2786
                strSQL.Append(", LDetail.GroupCount");
2787
                strSQL.Append(", LDetail.SalaryFlg");
2788
                strSQL.Append(", LDetail.SalaryDays");
2789
                strSQL.Append(", Salary.SalaryPerson");
2790
                strSQL.Append(", Salary.DaySalary");
2791
                strSQL.Append(", (LDetail.SalaryDays * Salary.DaySalary) As SalVal");
2792
                strSQL.Append(" From");
2793
                strSQL.Append(" constructionbaseinfo As Base");
2794
                strSQL.Append(" Inner Join constructionledger As Ledger");
2795
                strSQL.Append("       On Ledger.ConstructionCode = Base.ConstructionCode");
2796
                strSQL.Append(" Inner Join constructionledgerdetail As LDetail");
2797
                strSQL.Append("       On LDetail.ConstructionCode = Base.ConstructionCode");
2798
                strSQL.AppendFormat(" And LDetail.GroupCount = {0}", (int)FrmConstructionLedger.DataGroup.Payroll);
2799
                strSQL.AppendFormat(" And LDetail.CompanyCode = {0}", PersonCode);
2800
                strSQL.AppendFormat(" And LDetail.SalaryFlg = {0}", (int)CommonDefine.SalaryDevision.DaysInput);
2801
                strSQL.Append(" Inner Join(");
2802
                strSQL.Append("Select");
2803
                strSQL.Append(" B.PersonCode As SalaryPerson");
2804
                strSQL.AppendFormat(", ROUND(B.MonthlySalary* {0} / 30) As DaySalary", CommonDefine.s_SalaryCorrection);
2805
                strSQL.Append(" From");
2806
                strSQL.Append(" PERSONSALARYMASTER As B");
2807
                strSQL.Append(" Where");
2808
                strSQL.AppendFormat(" DATE(B.STARTDATE) <= DATE('{0}')", dtLast.ToShortDateString());
2809
                strSQL.AppendFormat(" AND B.PERSONCODE = {0}", PersonCode);
2810
                strSQL.Append(" Order By B.StartDate DESC limit 1");
2811
                strSQL.Append(") AS Salary");
2812
                strSQL.AppendFormat(" On Salary.SalaryPerson = {0}", PersonCode);
2813
                strSQL.Append(" Where");
2814
                strSQL.AppendFormat(" Base.ConstructionPeriod = {0}", TargetYear);
2815
                strSQL.AppendFormat(" And Base.ConstructionPersonCode = {0}", PersonCode);
2816
                strSQL.Append(" And(");
2817
                strSQL.AppendFormat("DATE('{0}') <= DATE(Ledger.ConstructionStart)", dtStart.ToShortDateString());
2818
                strSQL.AppendFormat(" And DATE(Ledger.ConstructionEnd) <= DATE('{0}')", dtLast.ToShortDateString());
2819
                strSQL.Append(")");
2820

  
2821
                ArrayList ArData = new ArrayList();
2822
                SalDB.ExecuteReader(strSQL.ToString(), ref ArData);
2823

  
2824
                RetSalary = ArData.Cast<object[]>().Sum(x => CommonMotions.cnvInt(x[8]));
2825

  
2826
                return RetSalary;
2827
            }
2828
            catch (Exception ex)
2829
            {
2830
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
2831
                return 0;
2832
            }
2833

  
2834
        }
2835
        #endregion
2836

  
2767 2837
        #region グリッド行退避エリア初期化処理
2768 2838
        /// <summary>
2769 2839
        /// グリッド行退避エリア初期化処理
......
2876 2946
                    strSQL.Append("  Left Join departmentmaster As C1");
2877 2947
                    strSQL.Append("       On C1.DepartmentCode = A1.SalesDepCode");
2878 2948
                    strSQL.AppendFormat(" Where A1.ConstructionPeriod = {0}", nTargetCount);
2949
                    strSQL.Append("       And A1.SalesDepCode != 0");
2879 2950

  
2880 2951
                    strSQL.Append(" Union Select");
2881 2952
                    strSQL.Append(" A2.ConstrDepCode As DEPARTMENTCODE");
......
2888 2959
                    strSQL.Append(" Left Join departmentmaster As C2");
2889 2960
                    strSQL.Append("      On C2.DepartmentCode = A2.ConstrDepCode");
2890 2961
                    strSQL.AppendFormat(" Where A2.ConstructionPeriod = {0}", nTargetCount);
2962
                    strSQL.Append("       And A2.ConstrDepCode != 0");
2891 2963

  
2892 2964
                    strSQL.Append(" Union Select");
2893 2965
                    strSQL.Append(" A3.ConstrSubDepCode As DEPARTMENTCODE");
......
2900 2972
                    strSQL.Append(" Left Join departmentmaster As C3");
2901 2973
                    strSQL.Append("      On C3.DepartmentCode = A3.ConstrSubDepCode");
2902 2974
                    strSQL.AppendFormat(" Where A3.ConstructionPeriod = {0}", nTargetCount);
2975
                    strSQL.Append("       And A3.ConstrSubDepCode != 0");
2903 2976

  
2904 2977
                    strSQL.Append(" Union Select");
2905 2978
                    strSQL.Append(" A4.ConstrInstrDepCode As DEPARTMENTCODE");
......
2912 2985
                    strSQL.Append(" Left Join departmentmaster As C4");
2913 2986
                    strSQL.Append("      On C4.DepartmentCode = A4.ConstrInstrDepCode");
2914 2987
                    strSQL.AppendFormat(" Where A4.ConstructionPeriod = {0}", nTargetCount);
2988
                    strSQL.Append("       And A4.ConstrInstrDepCode != 0");
2915 2989
                    strSQL.Append(") As A");
2916 2990
                }
2917 2991

  
2918
                strSQL.Append(", PERSONINCHARGEMASTER B");
2992
                //strSQL.Append(", PERSONINCHARGEMASTER B");
2919 2993
                strSQL.Append(", CONSTRUCTIONBASEINFO C");
2920 2994
                strSQL.Append(" WHERE");
2921 2995

  
2922 2996
                if (bNowSeason)
2923 2997
                {   // 今期は削除されていないもの
2924
                    strSQL.Append(" A.DELETEFLG = 0");
2925

  
2998
                    //strSQL.Append(" A.DELETEFLG = 0");
2999
                    DateTime dtDefaultEnd = CommonMotions.GetOpeningEndDate(nTargetCount, false);
3000
                    strSQL.AppendFormat(" DATE(A.StartDate) <= DATE('{0}')", dtDefaultEnd.ToShortDateString());
2926 3001
                    // システム管理者以外は部署参照マスタよりデータ取得
2927 3002
                    if (CommonMotions.LoginUserData.PersonCode != CommonDefine.AdminCode)
2928 3003
                    {
......
2933 3008
                    }
2934 3009
                    strSQL.Append(" AND");
2935 3010
                }
2936
                strSQL.Append(" A.DEPARTMENTCODE = B.DEPARTMENTCODE");
2937
                strSQL.Append(" AND B.PERSONCODE = C.CONSTRUCTIONPERSONCODE");
3011
                strSQL.Append(" A.DepartmentCode IN(C.SalesDepCode, C.ConstrDepCode, C.ConstrSubDepCode, C.ConstrInstrDepCode)");
3012
                //strSQL.Append(" A.DEPARTMENTCODE = B.DEPARTMENTCODE");
3013
                //strSQL.Append(" AND B.PERSONCODE = C.CONSTRUCTIONPERSONCODE");
2938 3014
                strSQL.Append(" GROUP BY A.DEPARTMENTCODE, A.DEPARTMENTSTRING, A.DISPLAYORDER");
2939 3015
                strSQL.Append(" ORDER BY A.DISPLAYORDER ASC");
2940 3016
            }
......
2990 3066
                }
2991 3067
                if (!bNowSeason)
2992 3068
                {
2993
                    strSQL.Append(" AND A.DepartmentCode IN(SELECT InDep.DEPARTMENTCODE FROM (");
3069
                    strSQL.Append(" AND B.DepartmentCode IN(SELECT InDep.DEPARTMENTCODE FROM (");
2994 3070
                    strSQL.Append(" Select A1.SalesDepCode As DEPARTMENTCODE From Constructionbaseinfo As A1");
2995 3071
                    strSQL.AppendFormat(" Where A1.{0} = {1}", FieldName, nTargetYear);
2996 3072
                    strSQL.Append(" Union Select A2.ConstrDepCode As DEPARTMENTCODE From Constructionbaseinfo As A2");
branches/src/ProcessManagement/ProcessManagement/Common/CommonVersion.cs
14 14
        /// <summary>
15 15
        /// 本体バージョン
16 16
        /// </summary>
17
        public static int s_SystemVersion = 156;
17
        public static int s_SystemVersion = 163;
18 18

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
branches/src/ProcessManagement/ProcessManagement/Common/Process/ClsExcute.cs
2697 2697
        {
2698 2698
            // 請求印刷選択一覧
2699 2699
            //FrmEntryReqSelOrderer frm = new FrmEntryReqSelOrderer();
2700
            FrmReqEntryList frm = new FrmReqEntryList();
2700
            FrmReqPrintList frm = new FrmReqPrintList();
2701 2701
            try
2702 2702
            {
2703 2703
                // 次起動プロセスが設定されていない場合は終了
branches/src/ProcessManagement/ProcessManagement/Common/Process/ClsSecurityPermission.cs
596 596
                {
597 597
                    strSQL.Append("SELECT DEPARTMENTCODE, DEPARTMENTSTRING, DISPLAYORDER");
598 598
                    strSQL.Append(" FROM DEPARTMENTMASTER");
599
                    strSQL.Append(" WHERE DELETEFLG = 0 ORDER BY DISPLAYORDER");
599
                    strSQL.Append(" ORDER BY DISPLAYORDER");
600 600
                }
601 601
                else
602 602
                {
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOInvoiceData.cs
67 67

  
68 68
        #endregion
69 69

  
70

  
71 70
        #region 請求書データ検索(1件取得)
72 71
        /// <summary>
73 72
        /// 請求書データ検索(複数件取得)
......
107 106
            }
108 107
        }
109 108
        #endregion
109

  
110 110
        #region 請求書データ検索(複数件取得)
111 111
        /// <summary>
112 112
        /// 請求書データ検索(複数件取得)
branches/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOMDepartment.cs
38 38
            DepartmentString,
39 39
            ActionScheduleFlg,
40 40
            StaffAssignFlg,
41
            StartDate,
42
            CompDate,
41 43
            DeleteFlg,
42 44
            EntryDate,
43 45
            UpdateDate,
......
74 76
            strcmd.Append(",DepartmentString");
75 77
            strcmd.Append(",ActionScheduleFlg");
76 78
            strcmd.Append(",StaffAssignFlg");
79
            strcmd.Append(",StartDate");
80
            strcmd.Append(",CompDate");
77 81
            strcmd.Append(",DeleteFlg");
78 82

  
79 83
            strcmd.Append(" ,DATE_FORMAT(EntryDate, '%Y/%m/%d %H:%i:%s')");
......
195 199
                    strcmd.AppendFormat(",'{0}'", work.DepartmentString.ToString());
196 200
                    strcmd.AppendFormat(", {0}", work.ActionScheduleFlg.ToString());
197 201
                    strcmd.AppendFormat(", {0}", work.StaffAssignFlg.ToString());
202
                    strcmd.AppendFormat(", DATE('{0}')", work.StartDate);
203
                    strcmd.AppendFormat(", DATE('{0}')", work.CompDate);
198 204
                    strcmd.AppendFormat(", {0}", work.DeleteFlg.ToString());
199 205

  
200 206
                    strcmd.AppendFormat(", STR_TO_DATE('{0}','%Y/%m/%d %H:%i:%s')", work.EntryDate);
......
238 244
                strcmd.AppendFormat(",DepartmentString = '{0}'", data.DepartmentString.ToString());
239 245
                strcmd.AppendFormat(",ActionScheduleFlg = {0}", data.ActionScheduleFlg.ToString());
240 246
                strcmd.AppendFormat(",StaffAssignFlg = {0}", data.StaffAssignFlg.ToString());
247
                strcmd.AppendFormat(",StartDate = DATE('{0}')", data.StartDate);
248
                strcmd.AppendFormat(",CompDate = DATE('{0}')", data.CompDate);
241 249
                strcmd.AppendFormat(",DeleteFlg = {0}", data.DeleteFlg.ToString());
242 250

  
243 251
                strcmd.Append(", UpdateDate = NOW()");
......
300 308
                {
301 309
                    if (workList.Count == 0) return true;
302 310

  
311
                    // 終了日付フラグ
312
                    workList[0].CompDate = DateTime.Now;
303 313
                    // 削除フラグ
304 314
                    workList[0].DeleteFlg = 1;
305 315
                    // データ更新
......
335 345
                wrk.DepartmentString = objwrk[(int)NameColumn.DepartmentString].ToString();
336 346
                wrk.ActionScheduleFlg = int.Parse(objwrk[(int)NameColumn.ActionScheduleFlg].ToString());
337 347
                wrk.StaffAssignFlg = int.Parse(objwrk[(int)NameColumn.StaffAssignFlg].ToString());
348

  
349
                wrk.StartDate = DateTime.Parse(objwrk[(int)NameColumn.StartDate].ToString());
350
                wrk.CompDate = DateTime.Parse(objwrk[(int)NameColumn.CompDate].ToString());
351

  
338 352
                wrk.DeleteFlg = int.Parse(objwrk[(int)NameColumn.DeleteFlg].ToString());
339 353

  
340 354
                wrk.EntryDate = DateTime.Parse(objwrk[(int)NameColumn.EntryDate].ToString());
......
366 380
                wrk.DepartmentString = string.Empty;
367 381
                wrk.ActionScheduleFlg = 0;
368 382
                wrk.StaffAssignFlg = 0;
383

  
384
                wrk.StartDate= DateTime.Now;
385
                wrk.CompDate = DateTime.MinValue;
386

  
369 387
                wrk.DeleteFlg = 0;
370 388

  
371 389
                wrk.EntryDate = DateTime.Now;
branches/src/ProcessManagement/ProcessManagement/DataModel/DepartmentMaster.cs
16 16
        private string      m_DepartmentString = string.Empty;	// 表示名称
17 17
        private int         m_ActionScheduleFlg = 0;	        // 行動予定表示フラグ
18 18
        private int         m_StaffAssignFlg = 0;               // 人員配置表示フラグ
19
        private DateTime    m_StartDate = DateTime.Now;         // 開始日付
20
        private DateTime    m_CompDate = DateTime.MinValue;     // 終了日付
19 21
        private int         m_DeleteFlg = 0;	                // 削除フラグ
20 22
        private DateTime    m_EntryDate = DateTime.Now;         // 登録日付
21 23
        private DateTime    m_UpdateDate = DateTime.Now;        // 更新日付
......
74 76
            set { m_DeleteFlg = value; }
75 77
        }
76 78
        /// <summary>
79
        /// 開始日付
80
        /// </summary>
81
        public DateTime StartDate
82
        {
83
            get { return m_StartDate; }
84
            set { m_StartDate = value; }
85
        }
86
        /// <summary>
87
        /// 終了日付
88
        /// </summary>
89
        public DateTime CompDate
90
        {
91
            get { return m_CompDate; }
92
            set { m_CompDate = value; }
93
        }
94
        /// <summary>
77 95
        /// 登録日付
78 96
        /// </summary>
79 97
        public DateTime EntryDate
branches/src/ProcessManagement/ProcessManagement/DataModel/PersonExpensesCost.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5

  
6
namespace ProcessManagement.DataModel
7
{
8
    /// <summary>
9
    /// 経費退避クラス(台帳一覧で使用)
10
    /// </summary>
11
    public class PersonExpensesCost
12
    {
13
        #region メンバ変数
14
        /// <summary>
15
        /// 部署コード
16
        /// </summary>
17
        private int m_DepartmentCode = 0;
18
        /// <summary>
19
        /// 担当者コード
20
        /// </summary>
21
        private int m_PersonCode = 0;
22
        /// <summary>
23
        /// 開始日付
24
        /// </summary>
25
        private DateTime m_StartDate = DateTime.MaxValue;
26
        /// <summary>
27
        /// 終了日付
28
        /// </summary>
29
        private DateTime m_CompDate = DateTime.MaxValue;
30
        /// <summary>
31
        /// 経費金額
32
        /// </summary>
33
        private int[] m_CostValue = new int[CostDataOfPerson.DataNoStrArrary.Length];
34
        #endregion
35

  
36
        #region コンストラクタ
37
        public PersonExpensesCost(int DepartmentCode, int PersonCode, DateTime StartDate, DateTime CompDate, int[] CostValue)
38
        {
39
            m_DepartmentCode = DepartmentCode;
40
            m_PersonCode = PersonCode;
41
            m_StartDate = StartDate;
42
            m_CompDate = CompDate;
43
            m_CostValue = CostValue;
44
        }
45
        #endregion
46

  
47
        #region プロパティ
48
        /// <summary>
49
        /// 部署コード
50
        /// </summary>
51
        public int DepartmentCode
52
        {
53
            get { return m_DepartmentCode; }
54
            set { m_DepartmentCode = value; }
55
        }
56
        /// <summary>
57
        /// 担当者コード
58
        /// </summary>
59
        public int PersonCode
60
        {
61
            get { return m_PersonCode; }
62
            set { m_PersonCode = value; }
63
        }
64
        /// <summary>
65
        /// 開始日付
66
        /// </summary>
67
        public DateTime StartDate
68
        {
69
            get { return m_StartDate; }
70
            set { m_StartDate = value; }
71
        }
72
        /// <summary>
73
        /// 終了日付
74
        /// </summary>
75
        public DateTime CompDate
76
        {
77
            get { return m_CompDate; }
78
            set { m_CompDate = value; }
79
        }
80
        /// <summary>
81
        /// 経費金額
82
        /// </summary>
83
        public int[] CostValue
84
        {
85
            get { return m_CostValue; }
86
            set { m_CostValue = value; }
87
        }
88
        #endregion
89
    }
90
}
branches/src/ProcessManagement/ProcessManagement/DataModel/SalaryClass.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5

  
6
namespace ProcessManagement.DataModel
7
{
8
    /// <summary>
9
    /// 給与退避クラス(台帳一覧で使用)
10
    /// </summary>
11
    public class SalaryClass
12
    {
13
        #region メンバ変数
14
        /// <summary>
15
        /// 部署コード
16
        /// </summary>
17
        private int m_DepartmentCode = 0;
18
        /// <summary>
19
        /// 担当者コード
20
        /// </summary>
21
        private int m_PersonCode = 0;
22
        /// <summary>
23
        /// 給与金額
24
        /// </summary>
25
        private int m_SalaryValue = 0;
26
        /// <summary>
27
        /// 開始日付
28
        /// </summary>
29
        private DateTime m_StartDate = DateTime.MaxValue;
30
        /// <summary>
31
        /// 終了日付
32
        /// </summary>
33
        private DateTime m_CompDate = DateTime.MaxValue;
34
        #endregion
35

  
36
        #region コンストラクタ
37
        public SalaryClass(int DepartmentCode, int PersonCode, int SalaryValue, DateTime StartDate, DateTime CompDate)
38
        {
39
            m_DepartmentCode = DepartmentCode;
40
            m_PersonCode = PersonCode;
41
            m_SalaryValue = SalaryValue;
42
            m_StartDate = StartDate;
43
            m_CompDate = CompDate;
44
        }
45
        #endregion
46

  
47
        #region プロパティ
48
        /// <summary>
49
        /// 部署コード
50
        /// </summary>
51
        public int DepartmentCode
52
        {
53
            get { return m_DepartmentCode; }
54
            set { m_DepartmentCode = value; }
55
        }
56
        /// <summary>
57
        /// 担当者コード
58
        /// </summary>
59
        public int PersonCode
60
        {
61
            get { return m_PersonCode; }
62
            set { m_PersonCode = value; }
63
        }
64
        /// <summary>
65
        /// 給与金額
66
        /// </summary>
67
        public int SalaryValue
68
        {
69
            get { return m_SalaryValue; }
70
            set { m_SalaryValue = value; }
71
        }
72
        /// <summary>
73
        /// 開始日付
74
        /// </summary>
75
        public DateTime StartDate
76
        {
77
            get { return m_StartDate; }
78
            set { m_StartDate = value; }
79
        }
80
        /// <summary>
81
        /// 終了日付
82
        /// </summary>
83
        public DateTime CompDate
84
        {
85
            get { return m_CompDate; }
86
            set { m_CompDate = value; }
87
        }
88
        #endregion
89
    }
90
}
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalList/FrmApprovalListAuxiliary.cs
1249 1249
                if (ClsExcute.ProcControlPara[NowPoint].StringSaveParameter.Count > 0)
1250 1250
                {
1251 1251
                    numUDConstPro.Value = CommonMotions.cnvInt(ClsExcute.ProcControlPara[NowPoint].StringSaveParameter[0]);
1252

  
1252
                    SetcmbDepartment();
1253 1253
                    // ?????E?S????
1254 1254
                    if (ClsExcute.ProcControlPara[NowPoint].IntSaveParameter.Count > 0)
1255 1255
                        cmbDepartment.SelectedValue = ClsExcute.ProcControlPara[NowPoint].IntSaveParameter[0];
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstractionList/FrmConstructionListAuxiliary.cs
1488 1488
                if (ClsExcute.ProcControlPara[NowPoint].StringSaveParameter.Count > 0)
1489 1489
                {
1490 1490
                    numUDConstPro.Value = CommonMotions.cnvInt(ClsExcute.ProcControlPara[NowPoint].StringSaveParameter[0]);
1491
                    SetcmbDepartment();
1491 1492
                    // ?S????I???????
1492 1493
                    if (ClsExcute.ProcControlPara[NowPoint].BoolSaveParameter.Count > 0)
1493 1494
                        if (ClsExcute.ProcControlPara[NowPoint].BoolSaveParameter[0]) radioButton2.Checked = true;
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.cs
1399 1399
                // ?????\??
1400 1400
                InitDataLoad();
1401 1401

  
1402
                // ??????N?x???Z?b?g
1403
                SetDepartmentCombbox(false);
1404

  
1402 1405
                // ???b?N????
1403 1406
                LockTheFieldOnTheRadioButton();
1404 1407

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.designer.cs
79 79
            this.txtInput07 = new System.Windows.Forms.TextBox();
80 80
            this.label6 = new System.Windows.Forms.Label();
81 81
            this.label8 = new System.Windows.Forms.Label();
82
            this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
83
            this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
84 82
            this.label4 = new System.Windows.Forms.Label();
85 83
            this.panel2 = new System.Windows.Forms.Panel();
86 84
            this.rdbEstimateType2 = new System.Windows.Forms.RadioButton();
87 85
            this.rdbEstimateType3 = new System.Windows.Forms.RadioButton();
88 86
            this.rdbEstimateType1 = new System.Windows.Forms.RadioButton();
89
            this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
90 87
            this.txtInput08 = new System.Windows.Forms.TextBox();
91 88
            this.btnSerchZip = new System.Windows.Forms.Button();
92 89
            this.label20 = new System.Windows.Forms.Label();
......
119 116
            this.label44 = new System.Windows.Forms.Label();
120 117
            this.label14 = new System.Windows.Forms.Label();
121 118
            this.label5 = new System.Windows.Forms.Label();
122
            this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
123 119
            this.btnOrderer = new System.Windows.Forms.Button();
124
            this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
125 120
            this.txtInput05 = new System.Windows.Forms.TextBox();
126 121
            this.panel4 = new System.Windows.Forms.Panel();
127 122
            this.label106 = new System.Windows.Forms.Label();
......
131 126
            this.label97 = new System.Windows.Forms.Label();
132 127
            this.label39 = new System.Windows.Forms.Label();
133 128
            this.label30 = new System.Windows.Forms.Label();
134
            this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
135 129
            this.label27 = new System.Windows.Forms.Label();
136
            this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
137 130
            this.lblTransferDate = new System.Windows.Forms.Label();
138 131
            this.label36 = new System.Windows.Forms.Label();
139
            this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
140 132
            this.txtInput26 = new System.Windows.Forms.TextBox();
141 133
            this.label10 = new System.Windows.Forms.Label();
142 134
            this.txtInput01 = new System.Windows.Forms.TextBox();
143 135
            this.label33 = new System.Windows.Forms.Label();
144
            this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
145
            this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
146 136
            this.label24 = new System.Windows.Forms.Label();
147
            this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
148 137
            this.label22 = new System.Windows.Forms.Label();
149
            this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
150 138
            this.label12 = new System.Windows.Forms.Label();
151
            this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
152 139
            this.label15 = new System.Windows.Forms.Label();
153 140
            this.label38 = new System.Windows.Forms.Label();
154 141
            this.label68 = new System.Windows.Forms.Label();
......
159 146
            this.label23 = new System.Windows.Forms.Label();
160 147
            this.label70 = new System.Windows.Forms.Label();
161 148
            this.label71 = new System.Windows.Forms.Label();
162
            this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
163
            this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
164
            this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
165 149
            this.label62 = new System.Windows.Forms.Label();
166 150
            this.label72 = new System.Windows.Forms.Label();
167 151
            this.label73 = new System.Windows.Forms.Label();
168 152
            this.label61 = new System.Windows.Forms.Label();
169 153
            this.label55 = new System.Windows.Forms.Label();
170
            this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
171 154
            this.label54 = new System.Windows.Forms.Label();
172
            this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
173 155
            this.label66 = new System.Windows.Forms.Label();
174 156
            this.label56 = new System.Windows.Forms.Label();
175 157
            this.label75 = new System.Windows.Forms.Label();
......
189 171
            this.btnFluctuation = new System.Windows.Forms.Button();
190 172
            this.rdbExistsFluctuation = new System.Windows.Forms.RadioButton();
191 173
            this.rdbNotFluctuation = new System.Windows.Forms.RadioButton();
192
            this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
193
            this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
194
            this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
195 174
            this.label46 = new System.Windows.Forms.Label();
196 175
            this.txtInput32 = new System.Windows.Forms.TextBox();
197 176
            this.label47 = new System.Windows.Forms.Label();
......
200 179
            this.label41 = new System.Windows.Forms.Label();
201 180
            this.label50 = new System.Windows.Forms.Label();
202 181
            this.label88 = new System.Windows.Forms.Label();
203
            this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
204
            this.textBoxEX7 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
205
            this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
206 182
            this.label25 = new System.Windows.Forms.Label();
207
            this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
208 183
            this.label42 = new System.Windows.Forms.Label();
209
            this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
210
            this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
211
            this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
212
            this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
213 184
            this.label81 = new System.Windows.Forms.Label();
214 185
            this.label82 = new System.Windows.Forms.Label();
215 186
            this.label77 = new System.Windows.Forms.Label();
......
218 189
            this.label67 = new System.Windows.Forms.Label();
219 190
            this.label79 = new System.Windows.Forms.Label();
220 191
            this.label31 = new System.Windows.Forms.Label();
221
            this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
222
            this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
223
            this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
224 192
            this.label113 = new System.Windows.Forms.Label();
225 193
            this.label76 = new System.Windows.Forms.Label();
226 194
            this.label112 = new System.Windows.Forms.Label();
......
276 244
            this.label89 = new System.Windows.Forms.Label();
277 245
            this.label129 = new System.Windows.Forms.Label();
278 246
            this.label125 = new System.Windows.Forms.Label();
279
            this.textBoxEX9 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
280
            this.textBoxEX8 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
281
            this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
282 247
            this.label126 = new System.Windows.Forms.Label();
283 248
            this.label87 = new System.Windows.Forms.Label();
284 249
            this.label86 = new System.Windows.Forms.Label();
285 250
            this.label60 = new System.Windows.Forms.Label();
286
            this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
287 251
            this.label127 = new System.Windows.Forms.Label();
288 252
            this.textBox4 = new System.Windows.Forms.TextBox();
289 253
            this.textBox2 = new System.Windows.Forms.TextBox();
......
292 256
            this.label29 = new System.Windows.Forms.Label();
293 257
            this.lblLastUpdate = new System.Windows.Forms.Label();
294 258
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
295
            this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
296
            this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
297 259
            this.btnOtherProc = new System.Windows.Forms.Button();
298 260
            this.lblJointLabel = new System.Windows.Forms.Label();
299 261
            this.btnPA = new System.Windows.Forms.Button();
......
301 263
            this.btnApprovalList = new System.Windows.Forms.Button();
302 264
            this.rdbStatusHikitugiFlg = new System.Windows.Forms.RadioButton();
303 265
            this.lblConstructionCodelabel = new System.Windows.Forms.Label();
266
            this.cmbConstructionYear = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
304 267
            this.label2 = new System.Windows.Forms.Label();
305 268
            this.txtInput33 = new System.Windows.Forms.TextBox();
306 269
            this.label48 = new System.Windows.Forms.Label();
270
            this.cmbConstructionPeriod = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
307 271
            this.label28 = new System.Windows.Forms.Label();
308 272
            this.lblConstructionCode = new System.Windows.Forms.Label();
309 273
            this.label16 = new System.Windows.Forms.Label();
......
327 291
            this.rdbStatus1 = new System.Windows.Forms.RadioButton();
328 292
            this.rdbStatus0 = new System.Windows.Forms.RadioButton();
329 293
            this.label49 = new System.Windows.Forms.Label();
294
            this.comboBoxEX1 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
295
            this.cmbDisplayPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
296
            this.cmbConstructionType = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
297
            this.cmbOrdersDivision = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
298
            this.cmbDisplayOrderers = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
299
            this.txtInput28 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
300
            this.txtInput25 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
301
            this.cmbTransferConstruction = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
302
            this.txtInput27 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
303
            this.txtInput02 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
304
            this.txtInput06 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
305
            this.txtInput12 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
306
            this.txtInput13 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
307
            this.textBoxEX2 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
308
            this.textBoxEX1 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
309
            this.txtInput03 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
310
            this.txtInput38 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
311
            this.txtInput34 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
312
            this.comboBoxEX4 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
313
            this.comboBoxEX3 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
314
            this.cmbDisplayConstrSubPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
315
            this.textBoxEX3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
316
            this.textBoxEX7 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
317
            this.txtInput35 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
318
            this.txtInput04 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
319
            this.textBoxEX5 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
320
            this.textBoxEX4 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
321
            this.txtInput29 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
322
            this.txtInput30 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
323
            this.cmbConstructionInstructor = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
324
            this.comboBoxEX2 = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
325
            this.cmbDisplayConstructionPerson = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
326
            this.textBoxEX9 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
327
            this.textBoxEX8 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
328
            this.textBoxEX6 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
329
            this.txtInput36 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
330 330
            this.BasePanel.SuspendLayout();
331 331
            this.tableLayoutPanel2.SuspendLayout();
332 332
            this.panel10.SuspendLayout();
......
817 817
            this.label8.Text = "工事場所";
818 818
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
819 819
            // 
820
            // comboBoxEX1
821
            // 
822
            this.comboBoxEX1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
823
            this.comboBoxEX1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
824
            this.comboBoxEX1.FormattingEnabled = true;
825
            this.comboBoxEX1.Location = new System.Drawing.Point(129, 724);
826
            this.comboBoxEX1.Name = "comboBoxEX1";
827
            this.comboBoxEX1.Size = new System.Drawing.Size(255, 27);
828
            this.comboBoxEX1.TabIndex = 22;
829
            this.comboBoxEX1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
830
            this.comboBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
831
            // 
832
            // cmbDisplayPerson
833
            // 
834
            this.cmbDisplayPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
835
            this.cmbDisplayPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
836
            this.cmbDisplayPerson.FormattingEnabled = true;
837
            this.cmbDisplayPerson.Location = new System.Drawing.Point(384, 724);
838
            this.cmbDisplayPerson.Name = "cmbDisplayPerson";
839
            this.cmbDisplayPerson.Size = new System.Drawing.Size(255, 27);
840
            this.cmbDisplayPerson.TabIndex = 23;
841
            this.cmbDisplayPerson.SelectedIndexChanged += new System.EventHandler(this.cmbPerson_SelectedIndexChanged);
842
            this.cmbDisplayPerson.TextChanged += new System.EventHandler(this.valueChange);
843
            // 
844 820
            // label4
845 821
            // 
846 822
            this.label4.BackColor = System.Drawing.Color.CornflowerBlue;
......
906 882
            this.rdbEstimateType1.UseVisualStyleBackColor = false;
907 883
            this.rdbEstimateType1.CheckedChanged += new System.EventHandler(this.valueChange);
908 884
            // 
909
            // cmbConstructionType
910
            // 
911
            this.cmbConstructionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
912
            this.cmbConstructionType.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
913
            this.cmbConstructionType.FormattingEnabled = true;
914
            this.cmbConstructionType.Location = new System.Drawing.Point(129, 602);
915
            this.cmbConstructionType.Name = "cmbConstructionType";
916
            this.cmbConstructionType.Size = new System.Drawing.Size(372, 27);
917
            this.cmbConstructionType.TabIndex = 21;
918
            this.cmbConstructionType.SelectedIndexChanged += new System.EventHandler(this.cmbConstructionType_SelectedIndexChanged);
919
            this.cmbConstructionType.TextChanged += new System.EventHandler(this.valueChange);
920
            // 
921 885
            // txtInput08
922 886
            // 
923 887
            this.txtInput08.ImeMode = System.Windows.Forms.ImeMode.Disable;
......
1305 1269
            this.label5.Text = "発 注 者";
1306 1270
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1307 1271
            // 
1308
            // cmbOrdersDivision
1309
            // 
1310
            this.cmbOrdersDivision.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
1311
            | System.Windows.Forms.AnchorStyles.Right)));
1312
            this.cmbOrdersDivision.AutoCompleteCustomSource.AddRange(new string[] {
1313
            "株式会社",
1314
            "有限会社",
1315
            "合名会社",
1316
            "合資会社",
1317
            "合同会社"});
1318
            this.cmbOrdersDivision.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1319
            this.cmbOrdersDivision.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1320
            this.cmbOrdersDivision.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1321
            this.cmbOrdersDivision.FormattingEnabled = true;
1322
            this.cmbOrdersDivision.Location = new System.Drawing.Point(129, 154);
1323
            this.cmbOrdersDivision.Name = "cmbOrdersDivision";
1324
            this.cmbOrdersDivision.Size = new System.Drawing.Size(507, 27);
1325
            this.cmbOrdersDivision.TabIndex = 7;
1326
            this.cmbOrdersDivision.SelectedIndexChanged += new System.EventHandler(this.cmbOrdersDivision_SelectedIndexChanged);
1327
            this.cmbOrdersDivision.TextChanged += new System.EventHandler(this.valueChange);
1328
            // 
1329 1272
            // btnOrderer
1330 1273
            // 
1331 1274
            this.btnOrderer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
......
1341 1284
            this.btnOrderer.Visible = false;
1342 1285
            this.btnOrderer.Click += new System.EventHandler(this.btnOrderer_Click);
1343 1286
            // 
1344
            // cmbDisplayOrderers
1345
            // 
1346
            this.cmbDisplayOrderers.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
1347
            | System.Windows.Forms.AnchorStyles.Right)));
1348
            this.cmbDisplayOrderers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1349
            this.cmbDisplayOrderers.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1350
            this.cmbDisplayOrderers.FormattingEnabled = true;
1351
            this.cmbDisplayOrderers.Location = new System.Drawing.Point(129, 184);
1352
            this.cmbDisplayOrderers.Name = "cmbDisplayOrderers";
1353
            this.cmbDisplayOrderers.Size = new System.Drawing.Size(376, 27);
1354
            this.cmbDisplayOrderers.TabIndex = 8;
1355
            this.cmbDisplayOrderers.SelectedIndexChanged += new System.EventHandler(this.cmbDisplayOrderers_SelectedIndexChanged);
1356
            this.cmbDisplayOrderers.TextChanged += new System.EventHandler(this.valueChange);
1357
            // 
1358 1287
            // txtInput05
1359 1288
            // 
1360 1289
            this.txtInput05.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
......
1519 1448
            this.label30.Text = "税込\r\n受注決定金額";
1520 1449
            this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1521 1450
            // 
1522
            // txtInput28
1523
            // 
1524
            this.txtInput28.BackColor = System.Drawing.Color.White;
1525
            this.txtInput28.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1526
            this.txtInput28.ForeColor = System.Drawing.Color.Black;
1527
            this.txtInput28.ImeMode = System.Windows.Forms.ImeMode.Disable;
1528
            this.txtInput28.Location = new System.Drawing.Point(128, 104);
1529
            this.txtInput28.MaxLength = 10;
1530
            this.txtInput28.Name = "txtInput28";
1531
            this.txtInput28.Size = new System.Drawing.Size(274, 34);
1532
            this.txtInput28.TabIndex = 28;
1533
            this.txtInput28.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1534
            this.txtInput28.TextChanged += new System.EventHandler(this.valueChange);
1535
            this.txtInput28.Validated += new System.EventHandler(this.txtInput25_Validated);
1536
            // 
1537 1451
            // label27
1538 1452
            // 
1539 1453
            this.label27.BackColor = System.Drawing.Color.MidnightBlue;
......
1547 1461
            this.label27.Text = "税別\r\n受注決定金額";
1548 1462
            this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1549 1463
            // 
1550
            // txtInput25
1551
            // 
1552
            this.txtInput25.BackColor = System.Drawing.Color.White;
1553
            this.txtInput25.Font = new System.Drawing.Font("MS 明朝", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1554
            this.txtInput25.ForeColor = System.Drawing.Color.Black;
1555
            this.txtInput25.ImeMode = System.Windows.Forms.ImeMode.Disable;
1556
            this.txtInput25.Location = new System.Drawing.Point(128, 64);
1557
            this.txtInput25.MaxLength = 10;
1558
            this.txtInput25.Name = "txtInput25";
1559
            this.txtInput25.Size = new System.Drawing.Size(274, 34);
1560
            this.txtInput25.TabIndex = 27;
1561
            this.txtInput25.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1562
            this.txtInput25.TextChanged += new System.EventHandler(this.valueChange);
1563
            this.txtInput25.Validated += new System.EventHandler(this.txtInput25_Validated);
1564
            // 
1565 1464
            // lblTransferDate
1566 1465
            // 
1567 1466
            this.lblTransferDate.BackColor = System.Drawing.SystemColors.Window;
......
1584 1483
            this.label36.Text = "部署引継日";
1585 1484
            this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1586 1485
            // 
1587
            // cmbTransferConstruction
1588
            // 
1589
            this.cmbTransferConstruction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
1590
            this.cmbTransferConstruction.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1591
            this.cmbTransferConstruction.FormattingEnabled = true;
1592
            this.cmbTransferConstruction.Location = new System.Drawing.Point(128, 843);
1593
            this.cmbTransferConstruction.Name = "cmbTransferConstruction";
1594
            this.cmbTransferConstruction.Size = new System.Drawing.Size(300, 27);
1595
            this.cmbTransferConstruction.TabIndex = 39;
1596
            this.cmbTransferConstruction.SelectedIndexChanged += new System.EventHandler(this.cmbTransferConstruction_SelectedIndexChanged);
1597
            this.cmbTransferConstruction.TextChanged += new System.EventHandler(this.valueChange);
1598
            // 
1599 1486
            // txtInput26
1600 1487
            // 
1601 1488
            this.txtInput26.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
......
1646 1533
            this.label33.Text = "見積提出期限";
1647 1534
            this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1648 1535
            // 
1649
            // txtInput27
1650
            // 
1651
            this.txtInput27.ImeMode = System.Windows.Forms.ImeMode.Disable;
1652
            this.txtInput27.Location = new System.Drawing.Point(128, 33);
1653
            this.txtInput27.MaxLength = 10;
1654
            this.txtInput27.Name = "txtInput27";
1655
            this.txtInput27.Size = new System.Drawing.Size(120, 26);
1656
            this.txtInput27.TabIndex = 26;
1657
            this.txtInput27.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1658
            this.txtInput27.TextChanged += new System.EventHandler(this.valueChange);
1659
            this.txtInput27.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1660
            // 
1661
            // txtInput02
1662
            // 
1663
            this.txtInput02.ImeMode = System.Windows.Forms.ImeMode.Disable;
1664
            this.txtInput02.Location = new System.Drawing.Point(128, 182);
1665
            this.txtInput02.MaxLength = 10;
1666
            this.txtInput02.Name = "txtInput02";
1667
            this.txtInput02.Size = new System.Drawing.Size(120, 26);
1668
            this.txtInput02.TabIndex = 29;
1669
            this.txtInput02.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1670
            this.txtInput02.TextChanged += new System.EventHandler(this.valueChange);
1671
            this.txtInput02.Validated += new System.EventHandler(this.txtInput02_TextChanged);
1672
            // 
1673 1536
            // label24
1674 1537
            // 
1675 1538
            this.label24.BackColor = System.Drawing.Color.LightBlue;
......
1682 1545
            this.label24.Text = "見積提出日";
1683 1546
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1684 1547
            // 
1685
            // txtInput06
1686
            // 
1687
            this.txtInput06.ImeMode = System.Windows.Forms.ImeMode.Disable;
1688
            this.txtInput06.Location = new System.Drawing.Point(128, 212);
1689
            this.txtInput06.MaxLength = 10;
1690
            this.txtInput06.Name = "txtInput06";
1691
            this.txtInput06.Size = new System.Drawing.Size(120, 26);
1692
            this.txtInput06.TabIndex = 30;
1693
            this.txtInput06.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1694
            this.txtInput06.TextChanged += new System.EventHandler(this.valueChange);
1695
            this.txtInput06.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1696
            // 
1697 1548
            // label22
1698 1549
            // 
1699 1550
            this.label22.BackColor = System.Drawing.Color.LightBlue;
......
1706 1557
            this.label22.Text = "見積有効期限";
1707 1558
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1708 1559
            // 
1709
            // txtInput12
1710
            // 
1711
            this.txtInput12.ImeMode = System.Windows.Forms.ImeMode.Disable;
1712
            this.txtInput12.Location = new System.Drawing.Point(128, 302);
1713
            this.txtInput12.MaxLength = 10;
1714
            this.txtInput12.Name = "txtInput12";
1715
            this.txtInput12.Size = new System.Drawing.Size(120, 26);
1716
            this.txtInput12.TabIndex = 31;
1717
            this.txtInput12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1718
            this.txtInput12.TextChanged += new System.EventHandler(this.valueChange);
1719
            this.txtInput12.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1720
            // 
1721 1560
            // label12
1722 1561
            // 
1723 1562
            this.label12.BackColor = System.Drawing.Color.LightBlue;
......
1730 1569
            this.label12.Text = "工事期間 開始";
1731 1570
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1732 1571
            // 
1733
            // txtInput13
1734
            // 
1735
            this.txtInput13.ImeMode = System.Windows.Forms.ImeMode.Disable;
1736
            this.txtInput13.Location = new System.Drawing.Point(128, 332);
1737
            this.txtInput13.MaxLength = 10;
1738
            this.txtInput13.Name = "txtInput13";
1739
            this.txtInput13.Size = new System.Drawing.Size(120, 26);
1740
            this.txtInput13.TabIndex = 32;
1741
            this.txtInput13.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1742
            this.txtInput13.TextChanged += new System.EventHandler(this.valueChange);
1743
            this.txtInput13.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1744
            // 
1745 1572
            // label15
1746 1573
            // 
1747 1574
            this.label15.BackColor = System.Drawing.Color.LightBlue;
......
1864 1691
            this.label71.Text = "非受注日";
1865 1692
            this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1866 1693
            // 
1867
            // textBoxEX2
1868
            // 
1869
            this.textBoxEX2.ImeMode = System.Windows.Forms.ImeMode.Disable;
1870
            this.textBoxEX2.Location = new System.Drawing.Point(128, 562);
1871
            this.textBoxEX2.MaxLength = 10;
1872
            this.textBoxEX2.Name = "textBoxEX2";
1873
            this.textBoxEX2.Size = new System.Drawing.Size(120, 26);
1874
            this.textBoxEX2.TabIndex = 35;
1875
            this.textBoxEX2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1876
            this.textBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
1877
            this.textBoxEX2.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1878
            // 
1879
            // textBoxEX1
1880
            // 
1881
            this.textBoxEX1.ImeMode = System.Windows.Forms.ImeMode.Disable;
1882
            this.textBoxEX1.Location = new System.Drawing.Point(128, 502);
1883
            this.textBoxEX1.MaxLength = 10;
1884
            this.textBoxEX1.Name = "textBoxEX1";
1885
            this.textBoxEX1.Size = new System.Drawing.Size(120, 26);
1886
            this.textBoxEX1.TabIndex = 33;
1887
            this.textBoxEX1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1888
            this.textBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
1889
            this.textBoxEX1.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1890
            // 
1891
            // txtInput03
1892
            // 
1893
            this.txtInput03.ImeMode = System.Windows.Forms.ImeMode.Disable;
1894
            this.txtInput03.Location = new System.Drawing.Point(128, 532);
1895
            this.txtInput03.MaxLength = 10;
1896
            this.txtInput03.Name = "txtInput03";
1897
            this.txtInput03.Size = new System.Drawing.Size(120, 26);
1898
            this.txtInput03.TabIndex = 34;
1899
            this.txtInput03.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1900
            this.txtInput03.TextChanged += new System.EventHandler(this.valueChange);
1901
            this.txtInput03.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1902
            // 
1903 1694
            // label62
1904 1695
            // 
1905 1696
            this.label62.BackColor = System.Drawing.Color.Black;
......
1965 1756
            this.label55.Text = "※「施工開始予定日」はおおよその工事開始日(現場着手時期)を\r\n「受注日」入力時に入力して下さい";
1966 1757
            this.label55.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
1967 1758
            // 
1968
            // txtInput38
1969
            // 
1970
            this.txtInput38.ImeMode = System.Windows.Forms.ImeMode.Disable;
1971
            this.txtInput38.Location = new System.Drawing.Point(128, 632);
1972
            this.txtInput38.MaxLength = 10;
1973
            this.txtInput38.Name = "txtInput38";
1974
            this.txtInput38.Size = new System.Drawing.Size(120, 26);
1975
            this.txtInput38.TabIndex = 36;
1976
            this.txtInput38.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
1977
            this.txtInput38.TextChanged += new System.EventHandler(this.valueChange);
1978
            this.txtInput38.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
1979
            // 
1980 1759
            // label54
1981 1760
            // 
1982 1761
            this.label54.BackColor = System.Drawing.Color.LightBlue;
......
1990 1769
            this.label54.Text = "受注時施工完了予定日";
1991 1770
            this.label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1992 1771
            // 
1993
            // txtInput34
1994
            // 
1995
            this.txtInput34.ImeMode = System.Windows.Forms.ImeMode.Disable;
1996
            this.txtInput34.Location = new System.Drawing.Point(128, 662);
1997
            this.txtInput34.MaxLength = 10;
1998
            this.txtInput34.Name = "txtInput34";
1999
            this.txtInput34.Size = new System.Drawing.Size(120, 26);
2000
            this.txtInput34.TabIndex = 37;
2001
            this.txtInput34.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2002
            this.txtInput34.TextChanged += new System.EventHandler(this.valueChange);
2003
            this.txtInput34.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2004
            // 
2005 1772
            // label66
2006 1773
            // 
2007 1774
            this.label66.BackColor = System.Drawing.Color.Black;
......
2279 2046
            this.rdbNotFluctuation.UseVisualStyleBackColor = true;
2280 2047
            this.rdbNotFluctuation.CheckedChanged += new System.EventHandler(this.rdbFluctuation_CheckedChanged);
2281 2048
            // 
2282
            // comboBoxEX4
2283
            // 
2284
            this.comboBoxEX4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2285
            this.comboBoxEX4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2286
            this.comboBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2287
            this.comboBoxEX4.FormattingEnabled = true;
2288
            this.comboBoxEX4.Location = new System.Drawing.Point(129, 93);
2289
            this.comboBoxEX4.Name = "comboBoxEX4";
2290
            this.comboBoxEX4.Size = new System.Drawing.Size(255, 27);
2291
            this.comboBoxEX4.TabIndex = 44;
2292
            this.comboBoxEX4.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2293
            // 
2294
            // comboBoxEX3
2295
            // 
2296
            this.comboBoxEX3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2297
            this.comboBoxEX3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2298
            this.comboBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2299
            this.comboBoxEX3.FormattingEnabled = true;
2300
            this.comboBoxEX3.Location = new System.Drawing.Point(129, 63);
2301
            this.comboBoxEX3.Name = "comboBoxEX3";
2302
            this.comboBoxEX3.Size = new System.Drawing.Size(255, 27);
2303
            this.comboBoxEX3.TabIndex = 42;
2304
            this.comboBoxEX3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2305
            // 
2306
            // cmbDisplayConstrSubPerson
2307
            // 
2308
            this.cmbDisplayConstrSubPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2309
            this.cmbDisplayConstrSubPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2310
            this.cmbDisplayConstrSubPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2311
            this.cmbDisplayConstrSubPerson.FormattingEnabled = true;
2312
            this.cmbDisplayConstrSubPerson.Location = new System.Drawing.Point(384, 63);
2313
            this.cmbDisplayConstrSubPerson.Name = "cmbDisplayConstrSubPerson";
2314
            this.cmbDisplayConstrSubPerson.Size = new System.Drawing.Size(255, 27);
2315
            this.cmbDisplayConstrSubPerson.TabIndex = 43;
2316
            this.cmbDisplayConstrSubPerson.SelectedIndexChanged += new System.EventHandler(this.cmbPerson_SelectedIndexChanged);
2317
            // 
2318 2049
            // label46
2319 2050
            // 
2320 2051
            this.label46.BackColor = System.Drawing.Color.Black;
......
2419 2150
            this.label88.Text = "検査予定日";
2420 2151
            this.label88.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2421 2152
            // 
2422
            // textBoxEX3
2423
            // 
2424
            this.textBoxEX3.Enabled = false;
2425
            this.textBoxEX3.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2426
            this.textBoxEX3.ImeMode = System.Windows.Forms.ImeMode.Disable;
2427
            this.textBoxEX3.Location = new System.Drawing.Point(129, 273);
2428
            this.textBoxEX3.MaxLength = 10;
2429
            this.textBoxEX3.Name = "textBoxEX3";
2430
            this.textBoxEX3.Size = new System.Drawing.Size(120, 26);
2431
            this.textBoxEX3.TabIndex = 50;
2432
            this.textBoxEX3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2433
            this.textBoxEX3.TextChanged += new System.EventHandler(this.valueChange);
2434
            this.textBoxEX3.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2435
            // 
2436
            // textBoxEX7
2437
            // 
2438
            this.textBoxEX7.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2439
            this.textBoxEX7.ImeMode = System.Windows.Forms.ImeMode.Disable;
2440
            this.textBoxEX7.Location = new System.Drawing.Point(129, 363);
2441
            this.textBoxEX7.MaxLength = 10;
2442
            this.textBoxEX7.Name = "textBoxEX7";
2443
            this.textBoxEX7.Size = new System.Drawing.Size(120, 26);
2444
            this.textBoxEX7.TabIndex = 53;
2445
            this.textBoxEX7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2446
            this.textBoxEX7.TextChanged += new System.EventHandler(this.valueChange);
2447
            this.textBoxEX7.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2448
            // 
2449
            // txtInput35
2450
            // 
2451
            this.txtInput35.Enabled = false;
2452
            this.txtInput35.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2453
            this.txtInput35.ImeMode = System.Windows.Forms.ImeMode.Disable;
2454
            this.txtInput35.Location = new System.Drawing.Point(129, 303);
2455
            this.txtInput35.MaxLength = 10;
2456
            this.txtInput35.Name = "txtInput35";
2457
            this.txtInput35.Size = new System.Drawing.Size(120, 26);
2458
            this.txtInput35.TabIndex = 51;
2459
            this.txtInput35.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2460
            this.txtInput35.TextChanged += new System.EventHandler(this.valueChange);
2461
            this.txtInput35.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2462
            // 
2463 2153
            // label25
2464 2154
            // 
2465 2155
            this.label25.BackColor = System.Drawing.Color.LightGreen;
......
2473 2163
            this.label25.Text = "施工完了日";
2474 2164
            this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2475 2165
            // 
2476
            // txtInput04
2477
            // 
2478
            this.txtInput04.Enabled = false;
2479
            this.txtInput04.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2480
            this.txtInput04.ImeMode = System.Windows.Forms.ImeMode.Disable;
2481
            this.txtInput04.Location = new System.Drawing.Point(129, 333);
2482
            this.txtInput04.MaxLength = 10;
2483
            this.txtInput04.Name = "txtInput04";
2484
            this.txtInput04.Size = new System.Drawing.Size(120, 26);
2485
            this.txtInput04.TabIndex = 52;
2486
            this.txtInput04.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2487
            this.txtInput04.TextChanged += new System.EventHandler(this.valueChange);
2488
            this.txtInput04.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2489
            // 
2490 2166
            // label42
2491 2167
            // 
2492 2168
            this.label42.BackColor = System.Drawing.Color.Black;
......
2499 2175
            this.label42.Text = "※「着工」・「完成」は契約書に基づき記入して下さい\r\n(当社、発給の契約書・施工計画書に記載されます)";
2500 2176
            this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2501 2177
            // 
2502
            // textBoxEX5
2503
            // 
2504
            this.textBoxEX5.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2505
            this.textBoxEX5.ImeMode = System.Windows.Forms.ImeMode.Disable;
2506
            this.textBoxEX5.Location = new System.Drawing.Point(393, 183);
2507
            this.textBoxEX5.MaxLength = 10;
2508
            this.textBoxEX5.Name = "textBoxEX5";
2509
            this.textBoxEX5.Size = new System.Drawing.Size(120, 26);
2510
            this.textBoxEX5.TabIndex = 49;
2511
            this.textBoxEX5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2512
            this.textBoxEX5.TextChanged += new System.EventHandler(this.valueChange);
2513
            this.textBoxEX5.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2514
            // 
2515
            // textBoxEX4
2516
            // 
2517
            this.textBoxEX4.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2518
            this.textBoxEX4.ImeMode = System.Windows.Forms.ImeMode.Disable;
2519
            this.textBoxEX4.Location = new System.Drawing.Point(393, 153);
2520
            this.textBoxEX4.MaxLength = 10;
2521
            this.textBoxEX4.Name = "textBoxEX4";
2522
            this.textBoxEX4.Size = new System.Drawing.Size(120, 26);
2523
            this.textBoxEX4.TabIndex = 47;
2524
            this.textBoxEX4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2525
            this.textBoxEX4.TextChanged += new System.EventHandler(this.valueChange);
2526
            this.textBoxEX4.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2527
            // 
2528
            // txtInput29
2529
            // 
2530
            this.txtInput29.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2531
            this.txtInput29.ImeMode = System.Windows.Forms.ImeMode.Disable;
2532
            this.txtInput29.Location = new System.Drawing.Point(189, 153);
2533
            this.txtInput29.MaxLength = 10;
2534
            this.txtInput29.Name = "txtInput29";
2535
            this.txtInput29.Size = new System.Drawing.Size(120, 26);
2536
            this.txtInput29.TabIndex = 46;
2537
            this.txtInput29.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2538
            this.txtInput29.TextChanged += new System.EventHandler(this.valueChange);
2539
            this.txtInput29.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2540
            // 
2541
            // txtInput30
2542
            // 
2543
            this.txtInput30.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold);
2544
            this.txtInput30.ImeMode = System.Windows.Forms.ImeMode.Disable;
2545
            this.txtInput30.Location = new System.Drawing.Point(189, 183);
2546
            this.txtInput30.MaxLength = 10;
2547
            this.txtInput30.Name = "txtInput30";
2548
            this.txtInput30.Size = new System.Drawing.Size(120, 26);
2549
            this.txtInput30.TabIndex = 48;
2550
            this.txtInput30.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
2551
            this.txtInput30.TextChanged += new System.EventHandler(this.valueChange);
2552
            this.txtInput30.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
2553
            // 
2554 2178
            // label81
2555 2179
            // 
2556 2180
            this.label81.BackColor = System.Drawing.Color.LightGreen;
......
2648 2272
            this.label31.Text = "工事指導";
2649 2273
            this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2650 2274
            // 
2651
            // cmbConstructionInstructor
2652
            // 
2653
            this.cmbConstructionInstructor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2654
            this.cmbConstructionInstructor.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2655
            this.cmbConstructionInstructor.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2656
            this.cmbConstructionInstructor.FormattingEnabled = true;
2657
            this.cmbConstructionInstructor.Location = new System.Drawing.Point(384, 93);
2658
            this.cmbConstructionInstructor.Name = "cmbConstructionInstructor";
2659
            this.cmbConstructionInstructor.Size = new System.Drawing.Size(255, 27);
2660
            this.cmbConstructionInstructor.TabIndex = 45;
2661
            this.cmbConstructionInstructor.SelectedIndexChanged += new System.EventHandler(this.cmbPerson_SelectedIndexChanged);
2662
            this.cmbConstructionInstructor.TextChanged += new System.EventHandler(this.valueChange);
2663
            // 
2664
            // comboBoxEX2
2665
            // 
2666
            this.comboBoxEX2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2667
            this.comboBoxEX2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2668
            this.comboBoxEX2.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2669
            this.comboBoxEX2.FormattingEnabled = true;
2670
            this.comboBoxEX2.Location = new System.Drawing.Point(129, 33);
2671
            this.comboBoxEX2.Name = "comboBoxEX2";
2672
            this.comboBoxEX2.Size = new System.Drawing.Size(255, 27);
2673
            this.comboBoxEX2.TabIndex = 40;
2674
            this.comboBoxEX2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
2675
            this.comboBoxEX2.TextChanged += new System.EventHandler(this.valueChange);
2676
            // 
2677
            // cmbDisplayConstructionPerson
2678
            // 
2679
            this.cmbDisplayConstructionPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
2680
            this.cmbDisplayConstructionPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
2681
            this.cmbDisplayConstructionPerson.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
2682
            this.cmbDisplayConstructionPerson.FormattingEnabled = true;
2683
            this.cmbDisplayConstructionPerson.Location = new System.Drawing.Point(384, 33);
2684
            this.cmbDisplayConstructionPerson.Name = "cmbDisplayConstructionPerson";
2685
            this.cmbDisplayConstructionPerson.Size = new System.Drawing.Size(255, 27);
2686
            this.cmbDisplayConstructionPerson.TabIndex = 41;
2687
            this.cmbDisplayConstructionPerson.SelectedIndexChanged += new System.EventHandler(this.CmbConstructionPerson_SelectedIndexChanged);
2688
            this.cmbDisplayConstructionPerson.TextChanged += new System.EventHandler(this.valueChange);
2689
            // 
2690 2275
            // label113
2691 2276
            // 
2692 2277
            this.label113.BackColor = System.Drawing.Color.LightGreen;
......
3337 2922
            this.BillingGridColumn2,
3338 2923
            this.BillingGridColumn3,
3339 2924
            this.BillingGridColumn4});
2925
            this.dgvBillingDate.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
3340 2926
            this.dgvBillingDate.EnableHeadersVisualStyles = false;
3341 2927
            this.dgvBillingDate.Location = new System.Drawing.Point(129, 91);
3342 2928
            this.dgvBillingDate.Name = "dgvBillingDate";
......
3453 3039
            this.label125.Text = "請求書郵送日";
3454 3040
            this.label125.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3455 3041
            // 
3456
            // textBoxEX9
3457
            // 
3458
            this.textBoxEX9.ImeMode = System.Windows.Forms.ImeMode.Disable;
3459
            this.textBoxEX9.Location = new System.Drawing.Point(129, 317);
3460
            this.textBoxEX9.MaxLength = 10;
3461
            this.textBoxEX9.Name = "textBoxEX9";
3462
            this.textBoxEX9.Size = new System.Drawing.Size(120, 26);
3463
            this.textBoxEX9.TabIndex = 63;
3464
            this.textBoxEX9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3465
            this.textBoxEX9.TextChanged += new System.EventHandler(this.valueChange);
3466
            this.textBoxEX9.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3467
            // 
3468
            // textBoxEX8
3469
            // 
3470
            this.textBoxEX8.ImeMode = System.Windows.Forms.ImeMode.Disable;
3471
            this.textBoxEX8.Location = new System.Drawing.Point(129, 287);
3472
            this.textBoxEX8.MaxLength = 10;
3473
            this.textBoxEX8.Name = "textBoxEX8";
3474
            this.textBoxEX8.Size = new System.Drawing.Size(120, 26);
3475
            this.textBoxEX8.TabIndex = 62;
3476
            this.textBoxEX8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3477
            this.textBoxEX8.TextChanged += new System.EventHandler(this.valueChange);
3478
            this.textBoxEX8.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3479
            // 
3480
            // textBoxEX6
3481
            // 
3482
            this.textBoxEX6.ImeMode = System.Windows.Forms.ImeMode.Disable;
3483
            this.textBoxEX6.Location = new System.Drawing.Point(129, 257);
3484
            this.textBoxEX6.MaxLength = 10;
3485
            this.textBoxEX6.Name = "textBoxEX6";
3486
            this.textBoxEX6.Size = new System.Drawing.Size(120, 26);
3487
            this.textBoxEX6.TabIndex = 61;
3488
            this.textBoxEX6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3489
            this.textBoxEX6.TextChanged += new System.EventHandler(this.valueChange);
3490
            this.textBoxEX6.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3491
            // 
3492 3042
            // label126
3493 3043
            // 
3494 3044
            this.label126.BackColor = System.Drawing.Color.Moccasin;
......
3536 3086
            this.label60.Text = "請求準備開始日";
3537 3087
            this.label60.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3538 3088
            // 
3539
            // txtInput36
3540
            // 
3541
            this.txtInput36.ImeMode = System.Windows.Forms.ImeMode.Disable;
3542
            this.txtInput36.Location = new System.Drawing.Point(129, 49);
3543
            this.txtInput36.MaxLength = 10;
3544
            this.txtInput36.Name = "txtInput36";
3545
            this.txtInput36.Size = new System.Drawing.Size(120, 26);
3546
            this.txtInput36.TabIndex = 60;
3547
            this.txtInput36.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
3548
            this.txtInput36.TextChanged += new System.EventHandler(this.valueChange);
3549
            this.txtInput36.Validated += new System.EventHandler(this.txtInputDate_TextChanged);
3550
            // 
3551 3089
            // label127
3552 3090
            // 
3553 3091
            this.label127.BackColor = System.Drawing.Color.Moccasin;
......
3640 3178
            this.lblLastUpdate.Text = "2015年12月31日";
3641 3179
            this.lblLastUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3642 3180
            // 
3643
            // cmbConstructionYear
3644
            // 
3645
            this.cmbConstructionYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3646
            this.cmbConstructionYear.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3647
            this.cmbConstructionYear.FormattingEnabled = true;
3648
            this.cmbConstructionYear.Location = new System.Drawing.Point(639, 4);
3649
            this.cmbConstructionYear.Name = "cmbConstructionYear";
3650
            this.cmbConstructionYear.Size = new System.Drawing.Size(134, 24);
3651
            this.cmbConstructionYear.TabIndex = 0;
3652
            this.toolTip1.SetToolTip(this.cmbConstructionYear, "工事の着工開始年度を入力してください");
3653
            this.cmbConstructionYear.Visible = false;
3654
            // 
3655
            // cmbConstructionPeriod
3656
            // 
3657
            this.cmbConstructionPeriod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3658
            this.cmbConstructionPeriod.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3659
            this.cmbConstructionPeriod.FormattingEnabled = true;
3660
            this.cmbConstructionPeriod.Location = new System.Drawing.Point(385, 4);
3661
            this.cmbConstructionPeriod.Name = "cmbConstructionPeriod";
3662
            this.cmbConstructionPeriod.Size = new System.Drawing.Size(115, 24);
3663
            this.cmbConstructionPeriod.TabIndex = 1;
3664
            this.toolTip1.SetToolTip(this.cmbConstructionPeriod, "売り上げ計上を行う営業期を入力してください");
3665
            // 
3666 3181
            // btnOtherProc
3667 3182
            // 
3668 3183
            this.btnOtherProc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
......
3770 3285
            this.lblConstructionCodelabel.Text = "工事コード";
3771 3286
            this.lblConstructionCodelabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3772 3287
            // 
3288
            // cmbConstructionYear
3289
            // 
3290
            this.cmbConstructionYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3291
            this.cmbConstructionYear.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3292
            this.cmbConstructionYear.FormattingEnabled = true;
3293
            this.cmbConstructionYear.Location = new System.Drawing.Point(639, 4);
3294
            this.cmbConstructionYear.Name = "cmbConstructionYear";
3295
            this.cmbConstructionYear.Size = new System.Drawing.Size(134, 24);
3296
            this.cmbConstructionYear.TabIndex = 0;
3297
            this.toolTip1.SetToolTip(this.cmbConstructionYear, "工事の着工開始年度を入力してください");
3298
            this.cmbConstructionYear.Visible = false;
3299
            // 
3773 3300
            // label2
3774 3301
            // 
3775 3302
            this.label2.BackColor = System.Drawing.Color.RoyalBlue;
......
3808 3335
            this.label48.Text = "工事名称";
3809 3336
            this.label48.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3810 3337
            // 
3338
            // cmbConstructionPeriod
3339
            // 
3340
            this.cmbConstructionPeriod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3341
            this.cmbConstructionPeriod.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3342
            this.cmbConstructionPeriod.FormattingEnabled = true;
3343
            this.cmbConstructionPeriod.Location = new System.Drawing.Point(385, 4);
3344
            this.cmbConstructionPeriod.Name = "cmbConstructionPeriod";
3345
            this.cmbConstructionPeriod.Size = new System.Drawing.Size(115, 24);
3346
            this.cmbConstructionPeriod.TabIndex = 1;
3347
            this.toolTip1.SetToolTip(this.cmbConstructionPeriod, "売り上げ計上を行う営業期を入力してください");
3348
            // 
3811 3349
            // label28
3812 3350
            // 
3813 3351
            this.label28.BackColor = System.Drawing.Color.RoyalBlue;
......
4177 3715
            this.label49.Text = "※工事名称は下記の工事名称の項目と連動して記入されます";
4178 3716
            this.label49.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
4179 3717
            // 
3718
            // comboBoxEX1
3719
            // 
3720
            this.comboBoxEX1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3721
            this.comboBoxEX1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3722
            this.comboBoxEX1.FormattingEnabled = true;
3723
            this.comboBoxEX1.Location = new System.Drawing.Point(129, 724);
3724
            this.comboBoxEX1.Name = "comboBoxEX1";
3725
            this.comboBoxEX1.Size = new System.Drawing.Size(255, 27);
3726
            this.comboBoxEX1.TabIndex = 22;
3727
            this.comboBoxEX1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEX1_SelectedIndexChanged);
3728
            this.comboBoxEX1.TextChanged += new System.EventHandler(this.valueChange);
3729
            // 
3730
            // cmbDisplayPerson
3731
            // 
3732
            this.cmbDisplayPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3733
            this.cmbDisplayPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3734
            this.cmbDisplayPerson.FormattingEnabled = true;
3735
            this.cmbDisplayPerson.Location = new System.Drawing.Point(384, 724);
3736
            this.cmbDisplayPerson.Name = "cmbDisplayPerson";
3737
            this.cmbDisplayPerson.Size = new System.Drawing.Size(255, 27);
3738
            this.cmbDisplayPerson.TabIndex = 23;
3739
            this.cmbDisplayPerson.SelectedIndexChanged += new System.EventHandler(this.cmbPerson_SelectedIndexChanged);
3740
            this.cmbDisplayPerson.TextChanged += new System.EventHandler(this.valueChange);
3741
            // 
3742
            // cmbConstructionType
3743
            // 
3744
            this.cmbConstructionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3745
            this.cmbConstructionType.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3746
            this.cmbConstructionType.FormattingEnabled = true;
3747
            this.cmbConstructionType.Location = new System.Drawing.Point(129, 602);
3748
            this.cmbConstructionType.Name = "cmbConstructionType";
3749
            this.cmbConstructionType.Size = new System.Drawing.Size(372, 27);
3750
            this.cmbConstructionType.TabIndex = 21;
3751
            this.cmbConstructionType.SelectedIndexChanged += new System.EventHandler(this.cmbConstructionType_SelectedIndexChanged);
3752
            this.cmbConstructionType.TextChanged += new System.EventHandler(this.valueChange);
3753
            // 
3754
            // cmbOrdersDivision
3755
            // 
3756
            this.cmbOrdersDivision.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
3757
            | System.Windows.Forms.AnchorStyles.Right)));
3758
            this.cmbOrdersDivision.AutoCompleteCustomSource.AddRange(new string[] {
3759
            "株式会社",
3760
            "有限会社",
3761
            "合名会社",
3762
            "合資会社",
3763
            "合同会社"});
3764
            this.cmbOrdersDivision.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3765
            this.cmbOrdersDivision.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3766
            this.cmbOrdersDivision.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
3767
            this.cmbOrdersDivision.FormattingEnabled = true;
3768
            this.cmbOrdersDivision.Location = new System.Drawing.Point(129, 154);
3769
            this.cmbOrdersDivision.Name = "cmbOrdersDivision";
3770
            this.cmbOrdersDivision.Size = new System.Drawing.Size(507, 27);
3771
            this.cmbOrdersDivision.TabIndex = 7;
3772
            this.cmbOrdersDivision.SelectedIndexChanged += new System.EventHandler(this.cmbOrdersDivision_SelectedIndexChanged);
3773
            this.cmbOrdersDivision.TextChanged += new System.EventHandler(this.valueChange);
3774
            // 
3775
            // cmbDisplayOrderers
3776
            // 
3777
            this.cmbDisplayOrderers.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
3778
            | System.Windows.Forms.AnchorStyles.Right)));
3779
            this.cmbDisplayOrderers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
3780
            this.cmbDisplayOrderers.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
3781
            this.cmbDisplayOrderers.FormattingEnabled = true;
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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