プロジェクト

全般

プロフィール

リビジョン 438

堀内約6年前に追加

CommonMotions.cs:部署マスタデータ取得SQL修正
ClsExcute.cs:工事情報新規起動時フラグ追加
発注者マスタ:法人格位置定義追加
工事一覧:工事情報新規起動時フラグ追加
工事情報:期・年度切り替えが部修正・新規起動フラグ追加・部署コンボ取得修正
一覧系:部署マスタデータ取得修正
積算予算書:確認処理切り替えバグ修正
積算見積入力:確認処理切り替えバグ修正
売上一覧:対象データは請求確認のものに変更
部署マスタメンテ:部署別経費入力時バグ修正・製品版表示個所修正
担当者マスタメンテ:製品版表示個所修正
工事情報承認状態確認画面:製品版表示個所修正
工事情報登録時状態同期画面:表示修正
メニュー:工事情報新規作成時フラグ追加・完了工事タブ金額計算を請求データへ変更

差分を表示:

trunk/src/ProcessManagement/ProcessManagement/Common/CommonMotions.cs
3617 3617
        /// 部署コンボボックスデータ取得SQL作成
3618 3618
        /// </summary>
3619 3619
        /// <param name="strSQL"></param>
3620
        public static void CreateDepCombBoxSQL(ref StringBuilder strSQL, int nTargetCount, bool bInput = false)
3620
        public static void CreateDepCombBoxSQL(ref StringBuilder strSQL, int nTargetCount, bool bCompBase = true)
3621 3621
        {
3622 3622
            try
3623 3623
            {
......
3714 3714

  
3715 3715
                if (bNowSeason)
3716 3716
                {   // 対象が今期の場合
3717
                    if (!bInput) strSQL.Append(", CONSTRUCTIONBASEINFO C");
3717
                    if (!bCompBase) strSQL.Append(", CONSTRUCTIONBASEINFO C");
3718 3718
                    strSQL.Append(" WHERE");
3719 3719

  
3720 3720
                    // 削除されていないもの
......
3722 3722
                    DateTime dtDefaultEnd = CommonMotions.GetOpeningEndDate(nTargetCount, false);
3723 3723

  
3724 3724
                    strSQL.AppendFormat(" And DATE(A.StartDate) <= DATE('{0}')", dtDefaultEnd.ToShortDateString());
3725
                    if (!bInput) strSQL.Append(" And C.ConstrDepCode = A.DepartmentCode");
3725
                    if (!bCompBase) strSQL.Append(" And C.ConstrDepCode = A.DepartmentCode");
3726 3726
                    // 開始日が今日より小さい
3727 3727
                    strSQL.AppendFormat(" And DATE(A.StartDate) <= DATE('{0}')", DateTime.Today.ToShortDateString());
3728 3728

  
......
3763 3763
        /// </summary>
3764 3764
        /// <param name="strSQL"></param>
3765 3765
        /// <param name="nTargetYear"></param>
3766
        public static void CreateManCombBoxSQL(ref StringBuilder strSQL, int nTargetYear, int nDepCode = 0)
3766
        public static void CreateManCombBoxSQL(ref StringBuilder strSQL, int nTargetYear, int nDepCode = 0, bool bNewDataFlg = false)
3767 3767
        {
3768 3768
            try
3769 3769
            {
......
3782 3782
                strSQL.AppendFormat(" AND(DATE('{0}') <= DATE(B.CompDate)", dtDefaultStart.ToShortDateString());
3783 3783
                strSQL.AppendFormat(" OR DATE('{0}') = DATE(B.CompDate)))", DateTime.MinValue.ToShortDateString());
3784 3784

  
3785
                // 新規のデータは削除者を表示しない
3786
                if(bNewDataFlg)
3787
                {
3788
                    strSQL.AppendFormat(" And A.DELETEFLG = {0}", (int)CommonDefine.DataDeleteDef.Exists);
3789
                }
3785 3790
                // 開始日が今日より小さい
3786 3791
                strSQL.AppendFormat(" And DATE(A.StartDate) <= DATE('{0}')", DateTime.Today.ToShortDateString());
3787 3792

  
trunk/src/ProcessManagement/ProcessManagement/Common/Process/ClsExcute.cs
986 986

  
987 987
                // パラメータセット
988 988
                frm.ConstructionCode = CurrentPara.IntExecParameter[0];
989
                
989 990
                // コピーデータ作成フラグセット
990 991
                if (CurrentPara.BoolExecParameter.Count > 0)
991 992
                    frm.ConstructionCopy = CurrentPara.BoolExecParameter[0];
992 993

  
994
                // 新規データ作成フラグセット
995
                if (CurrentPara.BoolExecParameter.Count > 1)
996
                    frm.bNewData = CurrentPara.BoolExecParameter[1];
997

  
993 998
                // フォーム表示
994 999
                frm.ShowDialog();
995 1000
            }
trunk/src/ProcessManagement/ProcessManagement/DataModel/OrderersMaster.cs
10 10
    /// </summary>
11 11
    public class OrderersMaster
12 12
    {
13

  
14
        #region 定数
15
        /// 法人格名称位置
16
        public enum CorporateStatusPointDef
17
        {
18
            /// <summary>
19
            /// 0:無
20
            /// </summary>
21
            None = 0,
22
            /// <summary>
23
            /// 1:前
24
            /// </summary>
25
            Front,
26
            /// <summary>
27
            /// 2:後
28
            /// </summary>
29
            Rear
30
        }
31
        #endregion
32

  
33
        #region メンバ変数
34

  
13 35
        /// <summary>
14 36
        /// 変更時は発注者登録申請データ(CostomerRegist)と連動させること
15 37
        /// </summary>
16
        #region メンバ変数
38

  
17 39
        private int         m_OrderCotegory = 0;	            // 発注者区分
18 40
        private int         m_OrderersCode = 0;	                // 発注者コード
19 41
        private int         m_DisplayOrder = 0;	                // 表示順
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstractionList/FrmConstructionList.cs
171 171
        private void btnDataEntry_Click(object sender, EventArgs e)
172 172
        {
173 173
            // ?e?????N??
174
            SubProcessExecute();
174
            SubProcessExecute(0, 0, true);
175 175

  
176 176
            // ?????\??
177 177
            //InitDataLoad();
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstractionList/FrmConstructionListAuxiliary.cs
171 171
        /// ?H???????N??????v???Z?X?I??????
172 172
        /// </summary>
173 173
        /// <param name="para_ConstructionCode"></param>
174
        private void SubProcessExecute(int para_ConstructionCode = 0, int para_OrderNo = 0)
174
        private void SubProcessExecute(int para_ConstructionCode = 0, int para_OrderNo = 0, bool bNewDataFlg = false)
175 175
        {
176 176
            try
177 177
            {
......
219 219
                    default:
220 220
                        break;
221 221
                }
222
                // ?V?K?f?[?^??????t???O????
223
                if (bNewDataFlg)
224
                {
225
                    // ?????t???O??R?s?[?f?[?^????g?p?????????_?~?[????
226
                    ClsExcute.ProcControlPara[NowPoint].BoolExecParameter.Add(false);
227
                    // ?????V?K?f?[?^???t???O???Z?b?g????
228
                    ClsExcute.ProcControlPara[NowPoint].BoolExecParameter.Add(bNewDataFlg);
229
                }
222 230
            }
223 231
            catch (Exception ex)
224 232
            {
......
2243 2251
        }
2244 2252
        #endregion
2245 2253

  
2254
        #region ?????}?X?^???H??????H???S?????????r?????????
2255
        /// <summary>
2256
        /// ?????}?X?^???H??????H???S?????????r?????????
2257
        /// </summary>
2258
        /// <returns></returns>
2259
        private bool SetCompDepartment4Base()
2260
        {
2261
            try
2262
            {
2263
                bool bCompBase = false;
2264
                if (m_ExecuteFlg == (int)ClsExcute.ProcessExecuteNo.ConstructionBaseInfo)
2265
                    // ?H????????
2266
                    bCompBase = true;
2267
                else if (m_ExecuteFlg == (int)ClsExcute.ProcessExecuteNo.EstimateInput)
2268
                    // ??Z?????????
2269
                    bCompBase = true;
2270
                else if (m_ExecuteFlg == (int)ClsExcute.ProcessExecuteNo.EstimatePrint)
2271
                    // ??Z????????
2272
                    bCompBase = true;
2273
                else if (m_ExecuteFlg == (int)ClsExcute.ProcessExecuteNo.EstimateBudget)
2274
                    // ??Z?\?Z??????
2275
                    bCompBase = true;
2276
                else if (m_ExecuteFlg == (int)ClsExcute.ProcessExecuteNo.ConstructionBudget)
2277
                    // ?H???\?Z??????
2278
                    bCompBase = false;
2279
                else if (m_ExecuteFlg == (int)ClsExcute.ProcessExecuteNo.PurchaseOrderEntry)
2280
                    // ??????????
2281
                    bCompBase = false;
2282
                else if (m_ExecuteFlg == (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint)
2283
                    // ?????????
2284
                    bCompBase = false;
2285
                else if (m_ExecuteFlg == (int)ClsExcute.ProcessExecuteNo.SafetyPatrol)
2286
                    // ???S?p?g???[???\??
2287
                    bCompBase = true;
2288

  
2289
                return bCompBase;
2290
            }
2291
            catch (Exception ex)
2292
            {
2293
                logger.ErrorFormat("?V?X?e???G???[?F{0}?F{1}", CommonMotions.GetMethodName(), ex.Message);
2294
                return false;
2295
            }
2296
        }
2297
        #endregion
2298

  
2246 2299
        #region ?????R???{?{?b?N?X???Z?b?g????
2247 2300
        /// <summary>
2248 2301
        /// ?????R???{?{?b?N?X????????Z?b?g????
......
2255 2308
                int nBeforeCode = CommonMotions.cnvInt(cmbDepartment.SelectedValue);
2256 2309

  
2257 2310
                int nTargetCount = (int)numUDConstPro.Value;
2311

  
2312
                // ?????}?X?^???H??????H???S?????????r?????????
2313
                bool bCompBase = SetCompDepartment4Base();
2314

  
2258 2315
                // ?????}?X?^??????????
2259 2316
                StringBuilder strSQL = new StringBuilder();
2260
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount);
2317
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount, bCompBase);
2261 2318

  
2262 2319
                // ?????}?X?^???
2263 2320
                ArrayList arList = new ArrayList();
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfo.cs
886 886
        private bool m_ConstructionCopy = false;
887 887

  
888 888
        /// <summary>
889
        /// ?f?[?^?V?K???t???O
890
        /// </summary>
891
        private bool m_bNewData = false;
892
        
893
        /// <summary>
889 894
        /// ???????t???O
890 895
        /// </summary>
891 896
        private bool bInitFlg = true;
......
956 961
            set { m_EditLock = value; }
957 962
        }
958 963

  
964
        /// <summary>
965
        /// ?f?[?^?V?K???t???O
966
        /// </summary>
967
        public bool bNewData
968
        {
969
            get { return m_bNewData; }
970
            set { m_bNewData = value; }
971
        }
972

  
959 973
        // *-----* ?????????? *-----*
960 974
        /// <summary>
961 975
        /// ?T?u?t?H?[???t???O
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfoAuxiliary.cs
1189 1189
                {
1190 1190
                    // ?V?K?f?[?^?\??
1191 1191
                    DisplayNewData();
1192

  
1193 1192
                    return true;
1194 1193
                }
1195 1194
                
......
2211 2210
            {
2212 2211
                int nTarget = 0;
2213 2212

  
2214
                if (m_DspCtrl[(int)DspCnt.ConstructionPeriod].Visible)
2213
                if (CommonMotions.BasePeriodYear())
2215 2214
                {
2216 2215
                    // ?H????
2217 2216
                    nTarget = CommonMotions.cnvInt(m_DspCtrl[(int)DspCnt.ConstructionPeriod].Text);
......
2255 2254
                // ?S????}?X?^??????????
2256 2255
                StringBuilder strSQL = new StringBuilder();
2257 2256
                int nTargetCount = GetTargetYear();
2258
                CommonMotions.CreateManCombBoxSQL(ref strSQL, nTargetCount, DepartmentCode);
2257
                CommonMotions.CreateManCombBoxSQL(ref strSQL, nTargetCount, DepartmentCode, m_bNewData);
2259 2258

  
2260 2259
                // ?S????}?X?^???
2261 2260
                ArrayList workList = new ArrayList();
......
2410 2409
                // ?S????}?X?^??????????
2411 2410
                int nTargetCount = GetTargetYear();
2412 2411
                StringBuilder strSQL = new StringBuilder();
2413
                CommonMotions.CreateManCombBoxSQL(ref strSQL, nTargetCount, 0);
2412
                CommonMotions.CreateManCombBoxSQL(ref strSQL, nTargetCount, 0, m_bNewData);
2414 2413

  
2415 2414
                // ?S????}?X?^???
2416 2415
                ArrayList workList = new ArrayList();
......
2510 2509
                // ?S????}?X?^??????????
2511 2510
                int nTargetCount = GetTargetYear();
2512 2511
                StringBuilder strSQL = new StringBuilder();
2513
                CommonMotions.CreateManCombBoxSQL(ref strSQL, nTargetCount, TransferCode);
2512
                CommonMotions.CreateManCombBoxSQL(ref strSQL, nTargetCount, TransferCode, m_bNewData);
2514 2513

  
2515 2514
                // ?S????}?X?^???
2516 2515
                ArrayList workList = new ArrayList();
......
2551 2550
        /// ?????R???{?{?b?N?X?f?[?^???r?p?k??
2552 2551
        /// </summary>
2553 2552
        /// <param name="strSQL"></param>
2554
        public static void CreateDepCombBoxSQL(ref StringBuilder strSQL, int nTargetCount)
2553
        public static void CreateDepCombBoxSQL(ref StringBuilder strSQL, int nTargetCount, bool bNewDataFlg = false)
2555 2554
        {
2556 2555
            try
2557 2556
            {
......
2649 2648
                {   // ???????????
2650 2649
                    strSQL.Append(" WHERE");
2651 2650

  
2652
                    // ???????????????
2653
                    strSQL.AppendFormat(" A.DELETEFLG = {0}", (int)CommonDefine.DataDeleteDef.Exists);
2654 2651
                    DateTime dtDefaultEnd = CommonMotions.GetOpeningEndDate(nTargetCount, false);
2652
                    strSQL.AppendFormat(" DATE(A.StartDate) <= DATE('{0}')", dtDefaultEnd.ToShortDateString());
2655 2653

  
2656
                    strSQL.AppendFormat(" And DATE(A.StartDate) <= DATE('{0}')", dtDefaultEnd.ToShortDateString());
2654
                    // ?V?K??f?[?^??????\???????
2655
                    if (bNewDataFlg)
2656
                    {
2657
                        // ???????????????
2658
                        strSQL.AppendFormat(" And A.DELETEFLG = {0}", (int)CommonDefine.DataDeleteDef.Exists);
2659
                    }
2657 2660
                }
2658 2661
                else
2659 2662
                {   // ??????????
......
2689 2692
                // ?????}?X?^??????????
2690 2693
                int nPeriod = GetTargetYear();
2691 2694
                StringBuilder strSQL = new StringBuilder();
2692
                CreateDepCombBoxSQL(ref strSQL, nPeriod);
2695
                CreateDepCombBoxSQL(ref strSQL, nPeriod, m_bNewData);
2693 2696

  
2694 2697
                ArrayList dmList = new ArrayList();
2695 2698
                // ?????}?X?^???
......
3657 3660
        }
3658 3661
        #endregion
3659 3662

  
3660
        #region ?????????X?e?[?^?X??X????????
3663
        #region ?????H????X?e?[?^?X??X????????
3661 3664
        /// <summary>
3662
        /// ?????????X?e?[?^?X??X????????
3665
        /// ?????H????X?e?[?^?X??X????????
3663 3666
        /// </summary>
3664 3667
        /// <returns></returns>
3665 3668
        private bool SyncFluctuationData(IOConstructionBaseInfo cbiDB, int nStatus)
......
3686 3689

  
3687 3690
                // ?????f?[?^?I??
3688 3691
                frm.ConstructionCode = m_ConstructionCode;
3692
                // ???????N????????`?F?b?N???s??
3693
                if (!frm.ChkExec) return true;
3694

  
3689 3695
                DialogResult drRwt = frm.ShowDialog();
3690 3696
                if (drRwt == DialogResult.Cancel) return true;
3691 3697

  
......
5571 5577
                    SetProductRadioButton(rdbStatus6, rdbStatus7);      // ?{?H????
5572 5578
                    SetProductRadioButton(rdbStatus4, rdbStatus9);      // ????????
5573 5579
                    SetProductRadioButton(rdbStatus6, rdbStatus10);     // ?????m?F
5580

  
5581
                    // ???F?m?F?{?^??
5582
                    btnApprovalList.Text = "?m?@?F?@??@??";
5574 5583
                    break;
5575 5584
                default:
5576 5585
                    break;
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedgerList/FrmConstructionLedgerListAuxiliary.cs
1634 1634
                int nTargetCount = (int)numUDConstPro.Value;
1635 1635
                // ?????}?X?^??????????
1636 1636
                StringBuilder strSQL = new StringBuilder();
1637
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount);
1637
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount, false);
1638 1638

  
1639 1639
                // ?????}?X?^???
1640 1640
                ArrayList arList = new ArrayList();
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/CopyTargetList/FrmCopyTargetList.designer.cs
36 36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
37 37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
38 38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
39 40
            this.btnDataSelect = new System.Windows.Forms.Button();
40 41
            this.btnEnd = new System.Windows.Forms.Button();
41 42
            this.label1 = new System.Windows.Forms.Label();
......
356 357
            // 
357 358
            // Column5
358 359
            // 
359
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
360
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
360 361
            this.Column5.DefaultCellStyle = dataGridViewCellStyle7;
361 362
            this.Column5.Frozen = true;
362 363
            this.Column5.HeaderText = "営業担当者";
......
368 369
            // 
369 370
            // Column6
370 371
            // 
371
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
372
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
372 373
            this.Column6.DefaultCellStyle = dataGridViewCellStyle8;
373 374
            this.Column6.Frozen = true;
374 375
            this.Column6.HeaderText = "工事担当者";
......
380 381
            // 
381 382
            // Column7
382 383
            // 
384
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
385
            this.Column7.DefaultCellStyle = dataGridViewCellStyle9;
383 386
            this.Column7.Frozen = true;
384 387
            this.Column7.HeaderText = "施工状態";
385 388
            this.Column7.Name = "Column7";
......
428 431
        private ProcessManagement.Forms.CustomControls.GroupBoxEx groupBox1;
429 432
        private ProcessManagement.Forms.CustomControls.DataGridViewEX dgvMaster;
430 433
        private System.Windows.Forms.Button btnDataUpDate;
431
        private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
432
        private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
433
        private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
434
        private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
435
        private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
436
        private System.Windows.Forms.DataGridViewTextBoxColumn Column6;
437
        private System.Windows.Forms.DataGridViewTextBoxColumn Column7;
438 434
        private System.Windows.Forms.Label label3;
439 435
        private System.Windows.Forms.RadioButton radioButton2;
440 436
        private System.Windows.Forms.RadioButton radioButton1;
......
445 441
        private System.Windows.Forms.ComboBox cmbConstructionPerson;
446 442
        private System.Windows.Forms.ComboBox cmbDepartment;
447 443
        private System.Windows.Forms.Label label2;
444
        private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
445
        private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
446
        private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
447
        private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
448
        private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
449
        private System.Windows.Forms.DataGridViewTextBoxColumn Column6;
450
        private System.Windows.Forms.DataGridViewTextBoxColumn Column7;
448 451
    }
449 452
}
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/CopyTargetList/FrmCopyTargetListAuxiliary.cs
306 306
        {
307 307
            try
308 308
            {
309
                string strRet = string.Empty;
309
                StringBuilder strRet = new StringBuilder();
310 310

  
311 311
                int DepartmentCode = GetDepartmentCode();
312
                if (DepartmentCode == 0) return strRet;
312
                if (DepartmentCode == 0) return string.Empty;
313 313

  
314
                strRet += string.Format(" AND (D.DEPARTMENTCODE = {0})", DepartmentCode);
314
                if (radioButton1.Checked)
315
                    strRet.AppendFormat(" AND (A.SalesDepCode = {0})", DepartmentCode);
316
                else
317
                    strRet.AppendFormat(" AND (A.ConstrDepCode = {0} Or A.ConstrSubDepCode ={0} Or A.ConstrInstrDepCode = {0})", DepartmentCode);
315 318

  
316
                return strRet;
319
                return strRet.ToString();
317 320
            }
318 321
            catch (Exception ex)
319 322
            {
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/CostomerRegist/FrmCostomerRegistAuxiliary.cs
1245 1245
                cmbDivision.SelectedValue = OrderRec.OrderCotegory;
1246 1246
                m_dispControl[(int)DispCtrl.CorporateStatusName].Text = OrderRec.CorporateStatusName;
1247 1247

  
1248
                if (OrderRec.CorporateStatusPoint == 0) rdbPoint1.Checked = true;
1249
                else if (OrderRec.CorporateStatusPoint == 1) rdbPoint2.Checked = true;
1250
                else if (OrderRec.CorporateStatusPoint == 2) rdbPoint3.Checked = true;
1248
                if (OrderRec.CorporateStatusPoint == (int)OrderersMaster.CorporateStatusPointDef.None) rdbPoint1.Checked = true;
1249
                else if (OrderRec.CorporateStatusPoint == (int)OrderersMaster.CorporateStatusPointDef.Front) rdbPoint2.Checked = true;
1250
                else if (OrderRec.CorporateStatusPoint == (int)OrderersMaster.CorporateStatusPointDef.Rear) rdbPoint3.Checked = true;
1251 1251

  
1252 1252
                if (OrderRec.OrderFlg == 0) radioButton1.Checked = true;
1253 1253
                else radioButton2.Checked = true;
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DRList/FrmDRListAuxiliary.cs
925 925
                int nTargetCount = (int)numUDConstPro.Value;
926 926
                // ?????}?X?^??????????
927 927
                StringBuilder strSQL = new StringBuilder();
928
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount);
928
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount, false);
929 929

  
930 930
                // ?????}?X?^???
931 931
                ArrayList arList = new ArrayList();
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DRWork/FrmDRWorkAuxiliary.cs
1002 1002

  
1003 1003
                // 部署マスタを検索する
1004 1004
                StringBuilder strSQL = new StringBuilder();
1005
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount);
1005
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount, false);
1006 1006

  
1007 1007
                // 部署マスタ読込
1008 1008
                ArrayList arList = new ArrayList();
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DepartmentCost/FrmDepartmentCostAux.cs
855 855
                int nTargetCount = (int)numUDConstPro.Value;
856 856
                // ?????}?X?^??????????
857 857
                StringBuilder strSQL = new StringBuilder();
858
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount, true);
858
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount, false);
859 859

  
860 860
                // ?????}?X?^???
861 861
                ArrayList arList = new ArrayList();
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/EstimateBudget/FrmEstimateBudget.cs
675 675
                // ?\???N???A
676 676
                ClearDisplay();
677 677

  
678
                // ?\???E???F?\??????
679
                ClsCommonApproval.CtrlConstrAppPanel((int)ClsExcute.ApprovalListNo.EstimateBudgetApproval
680
                                                        , m_ConstructionCode
681
                                                        , 1
682
                                                        , m_ApplPnlList);
683

  
678 684
                // ?w?b?_?[??\??
679 685
                if (!DispHeader()) return;
680 686

  
......
700 706
                CreateProcessContextMenu(m_SubForm);
701 707
                // *-----* ????????{?^????? *-----*
702 708

  
703
                // ?\???E???F?\??????
704
                ClsCommonApproval.CtrlConstrAppPanel((int)ClsExcute.ApprovalListNo.EstimateBudgetApproval
705
                                                        , m_ConstructionCode
706
                                                        , 1
707
                                                        , m_ApplPnlList);
708

  
709 709
                // ??X?t???OOFF
710 710
                m_bChengeAns = false;
711 711
            }
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/EstimateBudget/FrmEstimateBudgetAuxiliary.cs
3468 3468
            FrmApprovalScreen frm = new FrmApprovalScreen();
3469 3469
            try
3470 3470
            {
3471
                bool bDispMsg = true;
3472
                // 積算予算データが同じものかのチェック
3473
                if (!CheckBudgetData())
3474
                {
3475
                    if (MessageBox.Show("表示内容で登録されていません、更新しますか?", "登録確認"
3476
                                        , MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) return false;
3477
                    m_bChengeAns = true;
3478
                    bDispMsg = false;
3479
                }
3480

  
3481
                // データ変更有時はデータ登録
3482
                if (m_bChengeAns)
3483
                {
3484
                    if (!DataEntryProcess(bDispMsg)) return false;
3485
                }
3486

  
3471 3487
                if (MessageBox.Show("確認処理を行います、確認後は変更できません。\r\nよろしいですか?", "処理確認"
3472 3488
                                    , MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) return false;
3473 3489

  
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/EstimateInput/FrmEstimateInput.cs
1245 1245
            //?R???g???[???I?u?W?F?N?g??
1246 1246
            SetDisplayObject();
1247 1247

  
1248
            // ?\???E???F?\??????
1249
            ClsCommonApproval.CtrlConstrAppPanel((int)ClsExcute.ApprovalListNo.EstimateApproval
1250
                                                    , m_ConstructionCode
1251
                                                    , CommonDefine.s_Default_OrderNo
1252
                                                    , m_ApplPnlList);
1253

  
1248 1254
            // ?????\??
1249 1255
            if (!InitDataLoad()) return;
1250 1256

  
......
1267 1273
            CreateProcessContextMenu(m_SubForm);
1268 1274
            // *-----* ????????{?^????? *-----*
1269 1275

  
1270
            // ?\???E???F?\??????
1271
            ClsCommonApproval.CtrlConstrAppPanel((int)ClsExcute.ApprovalListNo.EstimateApproval
1272
                                                    , m_ConstructionCode
1273
                                                    , CommonDefine.s_Default_OrderNo
1274
                                                    , m_ApplPnlList);
1275

  
1276 1276
            // 2?????[?h??e??????F??A???????\???????
1277 1277
            if (m_DualModeFlg)
1278 1278
            {
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/EstimateInput/FrmEstimateInputAuxiliary.cs
6651 6651
        private bool OneApprovalProcess()
6652 6652
        {
6653 6653
            FrmApprovalScreen frm = new FrmApprovalScreen();
6654
            IOEstimateData EstimateDB = new IOEstimateData();
6654 6655
            try
6655 6656
            {
6657
                // 積算予算データが無い場合は登録する
6658
                StringBuilder strSQL = new StringBuilder();
6659
                strSQL.Append(EstimateDB.CreatePrimarykeyString(m_ConstructionCode));
6660
                EstimateData DataRec = new EstimateData();
6661
                if (!EstimateDB.SelectAction(strSQL.ToString(), ref DataRec)) m_bChengeAns = true;
6662

  
6663
                // データ変更有時はデータ登録
6664
                if (m_bChengeAns) if (!DataEntryProcess()) return false;
6665

  
6656 6666
                if (MessageBox.Show("確認処理を行います、確認後は変更できません。\r\nよろしいですか?", "処理確認"
6657 6667
                                    , MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) return false;
6658 6668

  
......
6686 6696
            {
6687 6697
                // 画面を閉じる
6688 6698
                frm.Close(); frm.Dispose(); frm = null;
6699
                EstimateDB.close(); EstimateDB = null;
6689 6700
            }
6690 6701
        }
6691 6702
        #endregion
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/ConstrMATLList/FrmConstrMATLListAuxiliary.cs
286 286
                StringBuilder strRet = new StringBuilder();
287 287

  
288 288
                int DepartmentCode = GetDepartmentCode();
289
                if (DepartmentCode == 0) return strRet.ToString();
290
                    
291
                strRet.AppendFormat(" AND (C.DEPARTMENTCODE = {0} OR D.DEPARTMENTCODE = {0})", DepartmentCode);
289
                if (DepartmentCode == 0) return string.Empty;
292 290

  
291
                if (radioButton1.Checked)
292
                    strRet.AppendFormat(" AND (A.SalesDepCode = {0})", DepartmentCode);
293
                else
294
                    strRet.AppendFormat(" AND (A.ConstrDepCode = {0} Or A.ConstrSubDepCode ={0} Or A.ConstrInstrDepCode = {0})", DepartmentCode);
295

  
293 296
                return strRet.ToString();
294 297
            }
295 298
            catch (Exception ex)
......
461 464
                    }
462 465

  
463 466
                    // ???????I???????????
464
                    //strSQL.Append(GetDepartmentString());
467
                    strSQL.Append(GetDepartmentString());
465 468

  
466 469
                    // ?S??????I???????????
467 470
                    strSQL.Append(GetPersonString());
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/PurchaseOrderStatus/FrmPurchaseOrderStatusAuxiliary.cs
1034 1034
                int nTargetCount = (int)numUDConstPro.Value;
1035 1035
                // ?????}?X?^??????????
1036 1036
                StringBuilder strSQL = new StringBuilder();
1037
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount);
1037
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount, false);
1038 1038

  
1039 1039
                // ?????}?X?^???
1040 1040
                ArrayList arList = new ArrayList();
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ReqApprovalStatus/FrmReqApprovalStatusAuxiliary.cs
931 931
                int nTargetCount = (int)numUDConstPro.Value;
932 932
                // ?????}?X?^??????????
933 933
                StringBuilder strSQL = new StringBuilder();
934
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount);
934
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount, false);
935 935

  
936 936
                // ?????}?X?^???
937 937
                ArrayList arList = new ArrayList();
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ReqbillingStatus/FrmReqBillingStatusAuxiliary.cs
1038 1038
                int nTargetCount = (int)numUDConstPro.Value;
1039 1039
                // ?????}?X?^??????????
1040 1040
                StringBuilder strSQL = new StringBuilder();
1041
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount);
1041
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount, false);
1042 1042

  
1043 1043
                // ?????}?X?^???
1044 1044
                ArrayList arList = new ArrayList();
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestInputList/FrmReqInputListAuxiliary.cs
27 27
    partial class FrmReqInputList
28 28
    {
29 29
        #region ??
30
       
30

  
31 31
        #region ?????`
32 32
        /// <summary>
33 33
        /// ?????`
......
54 54
            RequestValue,
55 55
            OrderValue,
56 56
        }
57
    #endregion
57
        #endregion
58 58

  
59
    #endregion
59
        #endregion
60 60

  
61
    #region ???
62
    #endregion
61
        #region ???
62
        #endregion
63 63

  
64
    #region ?v???p?e?B
65
    #endregion
64
        #region ?v???p?e?B
65
        #endregion
66 66

  
67
    #region ?R???g???[???C?x???g???????
68
    /// <summary>
69
    /// ?R???g???[???C?x???g???????
70
    /// </summary>
71
    /// <param name="EventCon"></param>
72
    private void SetControlEvent()
67
        #region ?R???g???[???C?x???g???????
68
        /// <summary>
69
        /// ?R???g???[???C?x???g???????
70
        /// </summary>
71
        /// <param name="EventCon"></param>
72
        private void SetControlEvent()
73 73
        {
74 74
            try
75 75
            {
......
282 282
        {
283 283
            try
284 284
            {
285
                string strRet = string.Empty;
285
                StringBuilder strRet = new StringBuilder();
286 286

  
287 287
                int DepartmentCode = GetDepartmentCode();
288
                if (DepartmentCode == 0) return strRet;
289
                    
290
                strRet += string.Format(" AND (C.DEPARTMENTCODE = {0} OR D.DEPARTMENTCODE = {0})", DepartmentCode);
288
                if (DepartmentCode == 0) return string.Empty;
291 289

  
292
                return strRet;
290
                if (radioButton1.Checked)
291
                    strRet.AppendFormat(" AND (A.SalesDepCode = {0})", DepartmentCode);
292
                else
293
                    strRet.AppendFormat(" AND (A.ConstrDepCode = {0} Or A.ConstrSubDepCode ={0} Or A.ConstrInstrDepCode = {0})", DepartmentCode);
294

  
295
                return strRet.ToString();
293 296
            }
294 297
            catch (Exception ex)
295 298
            {
......
317 320
                int Status2 = CommonDefine.ProjectsStatus.First(x => x.Value.Equals("??@?@??")).Key;
318 321
                int Status3 = CommonDefine.ProjectsStatus.First(x => x.Value.Equals("?? ?? ??")).Key;
319 322

  
320
                string[] strLJoin = new string[]{ " LEFT JOIN", " INNER JOIN" };
323
                string[] strLJoin = new string[] { " LEFT JOIN", " INNER JOIN" };
321 324

  
322 325
                strSQL.Append("SELECT * FROM (");
323 326
                for (int i = 0; i < 2; i++)
......
370 373
                        strSQL.AppendFormat("      WHERE CA.CONSTRUCTIONPERIOD = {0}) C ON A.CONSTRUCTIONCODE = C.CONSTRUCTIONCODE", numUDConstPro.Value);
371 374
                    else
372 375
                        strSQL.AppendFormat("      WHERE CA.ConstructionYear = {0}) C ON A.CONSTRUCTIONCODE = C.CONSTRUCTIONCODE", numUDConstPro.Value);
373
                        
376

  
374 377
                    strSQL.Append(" LEFT JOIN (SELECT DA.CONSTRUCTIONCODE, DA.CONSTRUCTIONPERSONCODE PERSONCODE, DB.PERSONNAME PERSONNAME,");
375 378
                    strSQL.Append("                   ChgDB.DEPARTMENTCODE DEPARTMENTCODE, ChgDB.DepartmentName DEPARTMENTNAME,");
376 379
                    strSQL.Append("                   DB.DISPLAYORDER MANDISPORDER, DC.DISPLAYORDER DEPDISPORDER");
......
400 403
                    strSQL.Append(" Inner Join constructionledger As JB On JB.ConstructionCode = JA.REQCONSTRUCTIONCODE");
401 404
                    strSQL.Append(" Group By JA.REQCONSTRUCTIONCODE) AS J");
402 405
                    strSQL.Append(" ON J.ReqCode = A.CONSTRUCTIONCODE");
403
            
406

  
404 407
                    if (CommonMotions.BasePeriodYear())
405 408
                        strSQL.AppendFormat(" WHERE A.CONSTRUCTIONPERIOD = {0}", numUDConstPro.Value);
406 409
                    else
......
414 417
                    strSQL.AppendFormat(" AND B.DETAILNO = {0}", (int)ConstructionBaseInfoDetail.DataNoDef.ConstructionName);
415 418

  
416 419
                    strSQL.AppendFormat(" AND A.CONSTRUCTIONSTATUSFLG != {0}", Status3);
417
                    if (i == 0) {
420
                    if (i == 0)
421
                    {
418 422
                        switch (m_ExecuteSubFlg)
419 423
                        {
420 424
                            case (int)ConstructionBaseInfo.BillingSplitFlgDef.AllOnBilling:
......
894 898
                loc2.X = label2.Location.X;
895 899
                radioButton1.Location = loc1;
896 900
                radioButton2.Location = loc2;
897
                
901

  
898 902
                Point loc3 = label3.Location;
899 903
                loc3.X = loc1.X + radioButton1.Width + 10;
900 904
                label3.Location = loc3;
901
                
905

  
902 906
                Point loc4 = cmbConstructionPerson.Location;
903 907
                loc4.X = label3.Location.X + label3.Width + 10;
904 908
                cmbConstructionPerson.Location = loc4;
......
947 951
                int nTargetCount = (int)numUDConstPro.Value;
948 952
                // ?????}?X?^??????????
949 953
                StringBuilder strSQL = new StringBuilder();
950
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount);
954
                CommonMotions.CreateDepCombBoxSQL(ref strSQL, nTargetCount, false);
951 955

  
952 956
                // ?????}?X?^???
953 957
                ArrayList arList = new ArrayList();
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/SalesConfirm/FrmSalesConfirmAuxiliary.cs
647 647
                int SelPerson = CommonMotions.cnvInt(comboBox3.SelectedValue);
648 648
                int SelDivision = CommonMotions.cnvInt(comboBox4.SelectedValue);
649 649
                int SelOrderer = CommonMotions.cnvInt(comboBox5.SelectedValue);
650
                int nNotStatus = CommonDefine.ProjectsStatus.First(x => x.Value.Equals("?? ?? ??")).Key;
650
                int nEndStatus = CommonDefine.ProjectsStatus.First(x => x.Value.Equals("?????m?F")).Key;
651 651

  
652 652
                sql.Append("select");
653 653

  
......
708 708
                else
709 709
                    sql.AppendFormat(" AND C1.ConstructionYear = {0}", numericUpDown2.Value);
710 710

  
711
                sql.AppendFormat(" AND C1.ConstructionStatusFlg != {0}", nNotStatus);
711
                sql.AppendFormat(" AND C1.ConstructionStatusFlg = {0}", nEndStatus);
712 712

  
713 713
                if (SelMonth != 0) sql.AppendFormat(" AND A1.REQUESTMONTH = {0}", SelMonth);
714 714
                if (SelDepartment != 0) sql.AppendFormat(" AND E1.DepartmentCode = {0}", SelDepartment);
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/SafetyPatrol/SafetyPatrolAuxiliary.cs
62 62
            {
63 63
                m_EventLock = true;
64 64

  
65
                // ???F?\????????
66
                DispApprovalControl();
67

  
65 68
                // ?w?b?_?[?Z?b?g
66 69
                if (!SetHeaderData()) return;
67 70
                // ????w?b?_?\??????
68 71
                SetDetailHeaderData(bInit);
69 72
                // ?O???b?h?\??
70 73
                SetGridData();
71

  
72
                // ???F?\????????
73
                DispApprovalControl();
74 74
                
75 75
                m_EventLock = false;
76 76
                m_DataChangeFlg = false;
trunk/src/ProcessManagement/ProcessManagement/Forms/Master/Department/FrmDepartment.cs
500 500
        /// <param name="e"></param>
501 501
        private void dgvExpenses_CellValidated(object sender, DataGridViewCellEventArgs e)
502 502
        {
503
            DataGridViewTextBoxCell wrkTxt = (DataGridViewTextBoxCell)dgvExpenses[e.ColumnIndex, e.RowIndex];
503
            DataGridViewTextBoxCell wrkTxt = (DataGridViewTextBoxCell)dgvExpenses[2, e.RowIndex];
504
            // 経費名が表示されていなければクリア
505
            if (CommonMotions.cnvString(dgvExpenses[1, e.RowIndex].Value).Length < 1)
506
            {
507
                wrkTxt.Value = string.Empty;
508
                return;
509
            }
504 510

  
505 511
            if (wrkTxt.ReadOnly) return;
506 512
            wrkTxt.Value = CommonMotions.cnvDouble(wrkTxt.Value).ToString("0.00");
trunk/src/ProcessManagement/ProcessManagement/Forms/Master/Department/FrmDepartmentAux.cs
194 194
                switch (ProductDefine.ProductType)
195 195
                {
196 196
                    case (int)ProductDefine.ProductTypeDef.Originals:
197
                        // 通常
197
                        // ----- オリジナル
198 198
                        // 行動予定表示
199 199
                        InitActionScheduleDspCombBox();
200 200
                        // 人員配置表示
201 201
                        InitStaffAssignDspCombBox();
202 202
                        break;
203 203
                    case (int)ProductDefine.ProductTypeDef.MassProductionType1:
204
                        // 製品版
204
                        // ----- 製品版
205
                        // 行動予定表示
205 206
                        label3.Visible = false;
206 207
                        cmbActionScheduleDsp.Visible = false;
208
                        cmbActionScheduleDsp.SelectedValue = (int)DepartmentMaster.ActionScheduleFlgDef.NotDisplay;
209
                        // 人員配置表示
207 210
                        label4.Visible = false;
208 211
                        cmbStaStaffAssignDsp.Visible = false;
209
                        cmbActionScheduleDsp.SelectedValue = (int)DepartmentMaster.ActionScheduleFlgDef.NotDisplay;
210
                        cmbStaStaffAssignDsp.SelectedValue = (int)DepartmentMaster.StaffAssignFlgDef.NotDisplay;
212
                        cmbStaStaffAssignDsp.SelectedValue = (int)DepartmentMaster.StaffAssignFlgDef.OnDisplay;
213
                        // 新規作成
214
                        btnDataLineEntry.Visible = false;
215
                        // 削除
216
                        btnDataDelete.Visible = false;
217
                        // UpDown
218
                        btnDispUp.Visible = false;
219
                        btnDispDown.Visible = false;
211 220
                        break;
212 221
                    default:
213 222
                        break;
trunk/src/ProcessManagement/ProcessManagement/Forms/Master/Orderer/FrmOrderers.cs
921 921
                work.DisplayOrder = 0;
922 922

  
923 923
                // 法人格名称位置
924
                if (rdbPoint1.Checked == true) work.CorporateStatusPoint = 0;
925
                else if (rdbPoint2.Checked == true) work.CorporateStatusPoint = 1;
926
                else if (rdbPoint3.Checked == true) work.CorporateStatusPoint = 2;
924
                if (rdbPoint1.Checked == true) work.CorporateStatusPoint = (int)OrderersMaster.CorporateStatusPointDef.None;
925
                else if (rdbPoint2.Checked == true) work.CorporateStatusPoint = (int)OrderersMaster.CorporateStatusPointDef.Front;
926
                else if (rdbPoint3.Checked == true) work.CorporateStatusPoint = (int)OrderersMaster.CorporateStatusPointDef.Rear;
927 927

  
928 928
                if (radioButton1.Checked == true) work.OrderFlg = 0;
929 929
                else if (radioButton2.Checked == true) work.OrderFlg = 1;
930 930

  
931 931
                // 法人格名称
932
                if (work.CorporateStatusPoint != 0)
932
                if (work.CorporateStatusPoint != (int)OrderersMaster.CorporateStatusPointDef.None)
933 933
                    if (m_dispControl[(int)DispCtrl.CorporateStatusName].Text.Length != 0)
934 934
                        work.CorporateStatusName = m_dispControl[(int)DispCtrl.CorporateStatusName].Text;
935 935

  
......
1158 1158

  
1159 1159
                m_dispControl[(int)DispCtrl.CorporateStatusName].Text = odList.CorporateStatusName.ToString();      // 法人格名称
1160 1160

  
1161
                if (odList.CorporateStatusPoint == 0) rdbPoint1.Checked = true;
1162
                else if (odList.CorporateStatusPoint == 1) rdbPoint2.Checked = true;
1163
                else if (odList.CorporateStatusPoint == 2) rdbPoint3.Checked = true;
1161
                if (odList.CorporateStatusPoint == (int)OrderersMaster.CorporateStatusPointDef.None) rdbPoint1.Checked = true;
1162
                else if (odList.CorporateStatusPoint == (int)OrderersMaster.CorporateStatusPointDef.Front) rdbPoint2.Checked = true;
1163
                else if (odList.CorporateStatusPoint == (int)OrderersMaster.CorporateStatusPointDef.Rear) rdbPoint3.Checked = true;
1164 1164

  
1165 1165
                if (odList.OrderFlg == 0) radioButton1.Checked = true;
1166 1166
                else if (odList.OrderFlg == 1) radioButton2.Checked = true;
......
1180 1180
                m_dispControl[(int)DispCtrl.MailAddress].Text = odList.MailAddress.ToString();
1181 1181
                m_dispControl[(int)DispCtrl.Note].Text = odList.Note.ToString();
1182 1182

  
1183
                cmbChangeOrdersDivision.SelectedValue = odList.OrderCotegory;
1183
                //cmbChangeOrdersDivision.SelectedValue = odList.OrderCotegory;
1184 1184

  
1185 1185
                if (odList.DeleteFlg != (int)CommonDefine.DataDeleteDef.Exists)
1186 1186
                {
trunk/src/ProcessManagement/ProcessManagement/Forms/Master/PersonInCharge/FrmPersonInCharge.cs
337 337
            // 固定ラベルコントロール初期処理
338 338
            InitFixControl();
339 339

  
340
            // 初期時スタイル設定
341
            SetInitStyle();
342

  
340 343
            // 初期表示
341 344
            DispGridData();
342 345

  
trunk/src/ProcessManagement/ProcessManagement/Forms/Master/PersonInCharge/FrmPersonInCharge.designer.cs
28 28
        /// </summary>
29 29
        private void InitializeComponent()
30 30
        {
31
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
32
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
42
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
43
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
44
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
31
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
32
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
42
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
43
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
44
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
45 45
            this.btnDataEntry = new System.Windows.Forms.Button();
46 46
            this.btnEnd = new System.Windows.Forms.Button();
47 47
            this.label1 = new System.Windows.Forms.Label();
......
60 60
            this.label8 = new System.Windows.Forms.Label();
61 61
            this.txtInput2 = new System.Windows.Forms.TextBox();
62 62
            this.label9 = new System.Windows.Forms.Label();
63
            this.txtInput3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
64 63
            this.txtInput4 = new System.Windows.Forms.TextBox();
65 64
            this.label2 = new System.Windows.Forms.Label();
66 65
            this.label7 = new System.Windows.Forms.Label();
......
76 75
            this.label13 = new System.Windows.Forms.Label();
77 76
            this.label14 = new System.Windows.Forms.Label();
78 77
            this.label16 = new System.Windows.Forms.Label();
79
            this.cmbDepartment = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
80 78
            this.txtInput5 = new System.Windows.Forms.TextBox();
81 79
            this.txtInput8 = new System.Windows.Forms.TextBox();
82 80
            this.txtInput9 = new System.Windows.Forms.TextBox();
83
            this.cmbLedgerFlg = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
84
            this.label17 = new System.Windows.Forms.Label();
85
            this.cmbSecManage = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
81
            this.label12 = new System.Windows.Forms.Label();
82
            this.btnRefDepDel = new System.Windows.Forms.Button();
83
            this.btnRefDepAdd = new System.Windows.Forms.Button();
84
            this.BtnDepartMentAdd = new System.Windows.Forms.Button();
85
            this.BtnDepartMentDel = new System.Windows.Forms.Button();
86
            this.txtInput13 = new System.Windows.Forms.TextBox();
87
            this.label24 = new System.Windows.Forms.Label();
88
            this.lblSecRange = new System.Windows.Forms.Label();
89
            this.label4 = new System.Windows.Forms.Label();
86 90
            this.label18 = new System.Windows.Forms.Label();
87 91
            this.lblSecRank = new System.Windows.Forms.Label();
88
            this.lblSecRange = new System.Windows.Forms.Label();
89
            this.label4 = new System.Windows.Forms.Label();
92
            this.label17 = new System.Windows.Forms.Label();
90 93
            this.label21 = new System.Windows.Forms.Label();
91 94
            this.txtInput11 = new System.Windows.Forms.TextBox();
92 95
            this.label22 = new System.Windows.Forms.Label();
93
            this.label12 = new System.Windows.Forms.Label();
94 96
            this.label15 = new System.Windows.Forms.Label();
95 97
            this.txtInput12 = new System.Windows.Forms.TextBox();
96 98
            this.label23 = new System.Windows.Forms.Label();
99
            this.lblSecurtyManegement = new System.Windows.Forms.Label();
100
            this.rdbMode2 = new System.Windows.Forms.RadioButton();
101
            this.rdbMode1 = new System.Windows.Forms.RadioButton();
102
            this.panel2 = new System.Windows.Forms.Panel();
103
            this.label19 = new System.Windows.Forms.Label();
104
            this.panel3 = new System.Windows.Forms.Panel();
105
            this.btnChrgToEmp = new System.Windows.Forms.Button();
106
            this.btnEmpToChrg = new System.Windows.Forms.Button();
107
            this.label20 = new System.Windows.Forms.Label();
108
            this.txtInput3 = new ProcessManagement.Forms.CustomControls.TextBoxEX();
109
            this.cmbDepartment = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
110
            this.cmbLedgerFlg = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
97 111
            this.dgvSalary = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
98 112
            this.SalaryColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
99 113
            this.SalaryColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
......
102 116
            this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
103 117
            this.TextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
104 118
            this.cmbRefDepartment = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
105
            this.btnRefDepDel = new System.Windows.Forms.Button();
106
            this.btnRefDepAdd = new System.Windows.Forms.Button();
107 119
            this.dgvAssignment = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
108 120
            this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
109 121
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
110 122
            this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
111
            this.BtnDepartMentAdd = new System.Windows.Forms.Button();
112
            this.BtnDepartMentDel = new System.Windows.Forms.Button();
113
            this.txtInput13 = new System.Windows.Forms.TextBox();
114
            this.label24 = new System.Windows.Forms.Label();
115
            this.lblSecurtyManegement = new System.Windows.Forms.Label();
116
            this.rdbMode2 = new System.Windows.Forms.RadioButton();
117
            this.rdbMode1 = new System.Windows.Forms.RadioButton();
118
            this.panel2 = new System.Windows.Forms.Panel();
119
            this.label19 = new System.Windows.Forms.Label();
120
            this.panel3 = new System.Windows.Forms.Panel();
121
            this.btnChrgToEmp = new System.Windows.Forms.Button();
122
            this.btnEmpToChrg = new System.Windows.Forms.Button();
123
            this.label20 = new System.Windows.Forms.Label();
123
            this.cmbSecManage = new ProcessManagement.Forms.CustomControls.ComboBoxEX();
124 124
            this.dgvMaster = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
125 125
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
126 126
            this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
......
131 131
            this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
132 132
            this.panel1.SuspendLayout();
133 133
            this.tableLayoutPanel1.SuspendLayout();
134
            this.panel2.SuspendLayout();
135
            this.panel3.SuspendLayout();
134 136
            ((System.ComponentModel.ISupportInitialize)(this.dgvSalary)).BeginInit();
135 137
            ((System.ComponentModel.ISupportInitialize)(this.dgvRefDepartment)).BeginInit();
136 138
            ((System.ComponentModel.ISupportInitialize)(this.dgvAssignment)).BeginInit();
137
            this.panel2.SuspendLayout();
138
            this.panel3.SuspendLayout();
139 139
            ((System.ComponentModel.ISupportInitialize)(this.dgvMaster)).BeginInit();
140 140
            this.SuspendLayout();
141 141
            // 
......
296 296
            this.tableLayoutPanel1.Controls.Add(this.txtInput8, 1, 16);
297 297
            this.tableLayoutPanel1.Controls.Add(this.txtInput9, 1, 17);
298 298
            this.tableLayoutPanel1.Controls.Add(this.cmbLedgerFlg, 1, 18);
299
            this.tableLayoutPanel1.Controls.Add(this.label17, 0, 19);
300
            this.tableLayoutPanel1.Controls.Add(this.cmbSecManage, 1, 19);
301
            this.tableLayoutPanel1.Controls.Add(this.label18, 0, 20);
302
            this.tableLayoutPanel1.Controls.Add(this.lblSecRank, 1, 20);
303
            this.tableLayoutPanel1.Controls.Add(this.lblSecRange, 1, 21);
304
            this.tableLayoutPanel1.Controls.Add(this.label4, 0, 21);
305
            this.tableLayoutPanel1.Controls.Add(this.label21, 0, 22);
306
            this.tableLayoutPanel1.Controls.Add(this.txtInput11, 1, 22);
307
            this.tableLayoutPanel1.Controls.Add(this.label22, 2, 22);
308 299
            this.tableLayoutPanel1.Controls.Add(this.label12, 0, 24);
309
            this.tableLayoutPanel1.Controls.Add(this.label15, 0, 23);
310
            this.tableLayoutPanel1.Controls.Add(this.txtInput12, 1, 23);
311
            this.tableLayoutPanel1.Controls.Add(this.label23, 2, 23);
312 300
            this.tableLayoutPanel1.Controls.Add(this.dgvSalary, 1, 7);
313 301
            this.tableLayoutPanel1.Controls.Add(this.dgvRefDepartment, 1, 24);
314 302
            this.tableLayoutPanel1.Controls.Add(this.cmbRefDepartment, 1, 27);
......
319 307
            this.tableLayoutPanel1.Controls.Add(this.BtnDepartMentDel, 3, 11);
320 308
            this.tableLayoutPanel1.Controls.Add(this.txtInput13, 1, 11);
321 309
            this.tableLayoutPanel1.Controls.Add(this.label24, 0, 11);
310
            this.tableLayoutPanel1.Controls.Add(this.lblSecRange, 1, 23);
311
            this.tableLayoutPanel1.Controls.Add(this.label4, 0, 23);
312
            this.tableLayoutPanel1.Controls.Add(this.label18, 0, 22);
313
            this.tableLayoutPanel1.Controls.Add(this.lblSecRank, 1, 22);
314
            this.tableLayoutPanel1.Controls.Add(this.label17, 0, 21);
315
            this.tableLayoutPanel1.Controls.Add(this.cmbSecManage, 1, 21);
316
            this.tableLayoutPanel1.Controls.Add(this.label21, 0, 19);
317
            this.tableLayoutPanel1.Controls.Add(this.txtInput11, 1, 19);
318
            this.tableLayoutPanel1.Controls.Add(this.label22, 2, 19);
319
            this.tableLayoutPanel1.Controls.Add(this.label15, 0, 20);
320
            this.tableLayoutPanel1.Controls.Add(this.txtInput12, 1, 20);
321
            this.tableLayoutPanel1.Controls.Add(this.label23, 2, 20);
322 322
            this.tableLayoutPanel1.Location = new System.Drawing.Point(1, 1);
323 323
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
324 324
            this.tableLayoutPanel1.RowCount = 29;
......
442 442
            this.label9.Text = "就業終了日";
443 443
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
444 444
            // 
445
            // txtInput3
446
            // 
447
            this.txtInput3.Anchor = System.Windows.Forms.AnchorStyles.Left;
448
            this.txtInput3.ImeMode = System.Windows.Forms.ImeMode.Disable;
449
            this.txtInput3.Location = new System.Drawing.Point(148, 111);
450
            this.txtInput3.MaxLength = 11;
451
            this.txtInput3.Name = "txtInput3";
452
            this.txtInput3.Size = new System.Drawing.Size(139, 23);
453
            this.txtInput3.TabIndex = 3;
454
            this.txtInput3.TextChanged += new System.EventHandler(this.txtInput_TextChanged);
455
            this.txtInput3.Validated += new System.EventHandler(this.txtInput_Validated);
456
            // 
457 445
            // txtInput4
458 446
            // 
459 447
            this.txtInput4.Anchor = System.Windows.Forms.AnchorStyles.Left;
......
652 640
            this.label16.Text = "台帳計算対象";
653 641
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
654 642
            // 
655
            // cmbDepartment
656
            // 
657
            this.cmbDepartment.Anchor = System.Windows.Forms.AnchorStyles.Left;
658
            this.tableLayoutPanel1.SetColumnSpan(this.cmbDepartment, 3);
659
            this.cmbDepartment.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
660
            this.cmbDepartment.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
661
            this.cmbDepartment.FormattingEnabled = true;
662
            this.cmbDepartment.Location = new System.Drawing.Point(148, 362);
663
            this.cmbDepartment.Name = "cmbDepartment";
664
            this.cmbDepartment.Size = new System.Drawing.Size(429, 24);
665
            this.cmbDepartment.TabIndex = 8;
666
            this.cmbDepartment.TextChanged += new System.EventHandler(this.valueChange);
667
            // 
668 643
            // txtInput5
669 644
            // 
670 645
            this.txtInput5.Anchor = System.Windows.Forms.AnchorStyles.Left;
......
700 675
            this.txtInput9.TabIndex = 12;
701 676
            this.txtInput9.TextChanged += new System.EventHandler(this.valueChange);
702 677
            // 
703
            // cmbLedgerFlg
678
            // label12
704 679
            // 
705
            this.cmbLedgerFlg.Anchor = System.Windows.Forms.AnchorStyles.Left;
706
            this.cmbLedgerFlg.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
707
            this.cmbLedgerFlg.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
708
            this.cmbLedgerFlg.FormattingEnabled = true;
709
            this.cmbLedgerFlg.Location = new System.Drawing.Point(148, 647);
710
            this.cmbLedgerFlg.Name = "cmbLedgerFlg";
711
            this.cmbLedgerFlg.Size = new System.Drawing.Size(139, 24);
712
            this.cmbLedgerFlg.TabIndex = 13;
713
            this.cmbLedgerFlg.TextChanged += new System.EventHandler(this.valueChange);
680
            this.label12.Anchor = System.Windows.Forms.AnchorStyles.Left;
681
            this.label12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
682
            this.label12.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
683
            this.label12.ForeColor = System.Drawing.Color.Black;
684
            this.label12.Location = new System.Drawing.Point(3, 855);
685
            this.label12.Name = "label12";
686
            this.label12.Size = new System.Drawing.Size(139, 25);
687
            this.label12.TabIndex = 30;
688
            this.label12.Text = "参照部署";
689
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
714 690
            // 
715
            // label17
691
            // btnRefDepDel
716 692
            // 
717
            this.label17.Anchor = System.Windows.Forms.AnchorStyles.Left;
718
            this.label17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
719
            this.label17.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
720
            this.label17.ForeColor = System.Drawing.Color.Black;
721
            this.label17.Location = new System.Drawing.Point(3, 680);
722
            this.label17.Name = "label17";
723
            this.label17.Size = new System.Drawing.Size(139, 25);
724
            this.label17.TabIndex = 30;
725
            this.label17.Text = "機密区分";
726
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
693
            this.btnRefDepDel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
694
            | System.Windows.Forms.AnchorStyles.Left) 
695
            | System.Windows.Forms.AnchorStyles.Right)));
696
            this.btnRefDepDel.BackColor = System.Drawing.Color.Red;
697
            this.btnRefDepDel.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
698
            this.btnRefDepDel.ForeColor = System.Drawing.Color.White;
699
            this.btnRefDepDel.Location = new System.Drawing.Point(438, 998);
700
            this.btnRefDepDel.Name = "btnRefDepDel";
701
            this.btnRefDepDel.Size = new System.Drawing.Size(139, 29);
702
            this.btnRefDepDel.TabIndex = 33;
703
            this.btnRefDepDel.TabStop = false;
704
            this.btnRefDepDel.Text = "参照部署削除";
705
            this.btnRefDepDel.UseVisualStyleBackColor = false;
706
            this.btnRefDepDel.Click += new System.EventHandler(this.btnRefDepDel_Click);
727 707
            // 
728
            // cmbSecManage
708
            // btnRefDepAdd
729 709
            // 
730
            this.cmbSecManage.Anchor = System.Windows.Forms.AnchorStyles.Left;
731
            this.tableLayoutPanel1.SetColumnSpan(this.cmbSecManage, 2);
732
            this.cmbSecManage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
733
            this.cmbSecManage.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
734
            this.cmbSecManage.FormattingEnabled = true;
735
            this.cmbSecManage.Location = new System.Drawing.Point(148, 682);
736
            this.cmbSecManage.Name = "cmbSecManage";
737
            this.cmbSecManage.Size = new System.Drawing.Size(284, 24);
738
            this.cmbSecManage.TabIndex = 14;
739
            this.cmbSecManage.SelectedValueChanged += new System.EventHandler(this.cmbSecManage_SelectedValueChanged);
740
            this.cmbSecManage.TextChanged += new System.EventHandler(this.valueChange);
710
            this.btnRefDepAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
711
            | System.Windows.Forms.AnchorStyles.Left) 
712
            | System.Windows.Forms.AnchorStyles.Right)));
713
            this.btnRefDepAdd.BackColor = System.Drawing.Color.Green;
714
            this.btnRefDepAdd.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
715
            this.btnRefDepAdd.ForeColor = System.Drawing.Color.White;
716
            this.btnRefDepAdd.Location = new System.Drawing.Point(293, 998);
717
            this.btnRefDepAdd.Name = "btnRefDepAdd";
718
            this.btnRefDepAdd.Size = new System.Drawing.Size(139, 29);
719
            this.btnRefDepAdd.TabIndex = 32;
720
            this.btnRefDepAdd.TabStop = false;
721
            this.btnRefDepAdd.Text = "参照部署追加";
722
            this.btnRefDepAdd.UseVisualStyleBackColor = false;
723
            this.btnRefDepAdd.Click += new System.EventHandler(this.btnRefDepAdd_Click);
741 724
            // 
742
            // label18
725
            // BtnDepartMentAdd
743 726
            // 
744
            this.label18.Anchor = System.Windows.Forms.AnchorStyles.Left;
745
            this.label18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
746
            this.label18.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
747
            this.label18.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
748
            this.label18.ForeColor = System.Drawing.Color.Black;
749
            this.label18.Location = new System.Drawing.Point(3, 715);
750
            this.label18.Name = "label18";
751
            this.label18.Size = new System.Drawing.Size(139, 25);
752
            this.label18.TabIndex = 30;
753
            this.label18.Text = "セキュリティ区分";
754
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
727
            this.BtnDepartMentAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
728
            | System.Windows.Forms.AnchorStyles.Left) 
729
            | System.Windows.Forms.AnchorStyles.Right)));
730
            this.BtnDepartMentAdd.BackColor = System.Drawing.Color.Green;
731
            this.BtnDepartMentAdd.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
732
            this.BtnDepartMentAdd.ForeColor = System.Drawing.Color.White;
733
            this.BtnDepartMentAdd.Location = new System.Drawing.Point(293, 393);
734
            this.BtnDepartMentAdd.Name = "BtnDepartMentAdd";
735
            this.BtnDepartMentAdd.Size = new System.Drawing.Size(139, 29);
736
            this.BtnDepartMentAdd.TabIndex = 32;
737
            this.BtnDepartMentAdd.TabStop = false;
738
            this.BtnDepartMentAdd.Text = "配属追加";
739
            this.BtnDepartMentAdd.UseVisualStyleBackColor = false;
740
            this.BtnDepartMentAdd.Click += new System.EventHandler(this.BtnDepartMentAdd_Click);
755 741
            // 
756
            // lblSecRank
742
            // BtnDepartMentDel
757 743
            // 
758
            this.lblSecRank.Anchor = System.Windows.Forms.AnchorStyles.Left;
759
            this.lblSecRank.BackColor = System.Drawing.SystemColors.Window;
760
            this.tableLayoutPanel1.SetColumnSpan(this.lblSecRank, 2);
761
            this.lblSecRank.Location = new System.Drawing.Point(148, 716);
762
            this.lblSecRank.Name = "lblSecRank";
763
            this.lblSecRank.Size = new System.Drawing.Size(284, 23);
764
            this.lblSecRank.TabIndex = 15;
765
            this.lblSecRank.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
744
            this.BtnDepartMentDel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
745
            | System.Windows.Forms.AnchorStyles.Left) 
746
            | System.Windows.Forms.AnchorStyles.Right)));
747
            this.BtnDepartMentDel.BackColor = System.Drawing.Color.Red;
748
            this.BtnDepartMentDel.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
749
            this.BtnDepartMentDel.ForeColor = System.Drawing.Color.White;
750
            this.BtnDepartMentDel.Location = new System.Drawing.Point(438, 393);
751
            this.BtnDepartMentDel.Name = "BtnDepartMentDel";
752
            this.BtnDepartMentDel.Size = new System.Drawing.Size(139, 29);
753
            this.BtnDepartMentDel.TabIndex = 33;
754
            this.BtnDepartMentDel.TabStop = false;
755
            this.BtnDepartMentDel.Text = "配属履歴削除";
756
            this.BtnDepartMentDel.UseVisualStyleBackColor = false;
757
            this.BtnDepartMentDel.Click += new System.EventHandler(this.BtnDepartMentDel_Click);
766 758
            // 
759
            // txtInput13
760
            // 
761
            this.txtInput13.Anchor = System.Windows.Forms.AnchorStyles.Left;
762
            this.txtInput13.ImeMode = System.Windows.Forms.ImeMode.Disable;
763
            this.txtInput13.Location = new System.Drawing.Point(148, 396);
764
            this.txtInput13.MaxLength = 11;
765
            this.txtInput13.Name = "txtInput13";
766
            this.txtInput13.Size = new System.Drawing.Size(139, 23);
767
            this.txtInput13.TabIndex = 9;
768
            this.txtInput13.TextChanged += new System.EventHandler(this.txtInput_TextChanged);
769
            this.txtInput13.Validated += new System.EventHandler(this.txtInput_Validated);
770
            // 
771
            // label24
772
            // 
773
            this.label24.Anchor = System.Windows.Forms.AnchorStyles.Left;
774
            this.label24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
775
            this.label24.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
776
            this.label24.ForeColor = System.Drawing.Color.Black;
777
            this.label24.Location = new System.Drawing.Point(3, 395);
778
            this.label24.Name = "label24";
779
            this.label24.Size = new System.Drawing.Size(139, 25);
780
            this.label24.TabIndex = 30;
781
            this.label24.Text = "配属年月日";
782
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
783
            // 
767 784
            // lblSecRange
768 785
            // 
769 786
            this.lblSecRange.Anchor = System.Windows.Forms.AnchorStyles.Left;
770 787
            this.lblSecRange.BackColor = System.Drawing.SystemColors.Window;
771 788
            this.tableLayoutPanel1.SetColumnSpan(this.lblSecRange, 2);
772
            this.lblSecRange.Location = new System.Drawing.Point(148, 751);
789
            this.lblSecRange.Location = new System.Drawing.Point(148, 821);
773 790
            this.lblSecRange.Name = "lblSecRange";
774 791
            this.lblSecRange.Size = new System.Drawing.Size(284, 23);
775
            this.lblSecRange.TabIndex = 16;
792
            this.lblSecRange.TabIndex = 18;
776 793
            this.lblSecRange.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
777 794
            // 
778 795
            // label4
......
782 799
            this.label4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
783 800
            this.label4.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
784 801
            this.label4.ForeColor = System.Drawing.Color.Black;
785
            this.label4.Location = new System.Drawing.Point(3, 750);
802
            this.label4.Location = new System.Drawing.Point(3, 820);
786 803
            this.label4.Name = "label4";
787 804
            this.label4.Size = new System.Drawing.Size(139, 25);
788 805
            this.label4.TabIndex = 30;
789 806
            this.label4.Text = "セキュリティ範囲";
790 807
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
791 808
            // 
809
            // label18
810
            // 
811
            this.label18.Anchor = System.Windows.Forms.AnchorStyles.Left;
812
            this.label18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
813
            this.label18.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
814
            this.label18.Font = new System.Drawing.Font("MS 明朝", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
815
            this.label18.ForeColor = System.Drawing.Color.Black;
816
            this.label18.Location = new System.Drawing.Point(3, 785);
817
            this.label18.Name = "label18";
818
            this.label18.Size = new System.Drawing.Size(139, 25);
819
            this.label18.TabIndex = 30;
820
            this.label18.Text = "セキュリティ区分";
821
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
822
            // 
823
            // lblSecRank
824
            // 
825
            this.lblSecRank.Anchor = System.Windows.Forms.AnchorStyles.Left;
826
            this.lblSecRank.BackColor = System.Drawing.SystemColors.Window;
827
            this.tableLayoutPanel1.SetColumnSpan(this.lblSecRank, 2);
828
            this.lblSecRank.Location = new System.Drawing.Point(148, 786);
829
            this.lblSecRank.Name = "lblSecRank";
830
            this.lblSecRank.Size = new System.Drawing.Size(284, 23);
831
            this.lblSecRank.TabIndex = 17;
832
            this.lblSecRank.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
833
            // 
834
            // label17
835
            // 
836
            this.label17.Anchor = System.Windows.Forms.AnchorStyles.Left;
837
            this.label17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
838
            this.label17.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
839
            this.label17.ForeColor = System.Drawing.Color.Black;
840
            this.label17.Location = new System.Drawing.Point(3, 750);
841
            this.label17.Name = "label17";
842
            this.label17.Size = new System.Drawing.Size(139, 25);
843
            this.label17.TabIndex = 30;
844
            this.label17.Text = "機密区分";
845
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
846
            // 
792 847
            // label21
793 848
            // 
794 849
            this.label21.Anchor = System.Windows.Forms.AnchorStyles.Left;
......
796 851
            this.label21.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
797 852
            this.label21.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
798 853
            this.label21.ForeColor = System.Drawing.Color.Black;
799
            this.label21.Location = new System.Drawing.Point(3, 785);
854
            this.label21.Location = new System.Drawing.Point(3, 680);
800 855
            this.label21.Name = "label21";
801 856
            this.label21.Size = new System.Drawing.Size(139, 25);
802 857
            this.label21.TabIndex = 30;
......
807 862
            // 
808 863
            this.txtInput11.Anchor = System.Windows.Forms.AnchorStyles.Left;
809 864
            this.txtInput11.ImeMode = System.Windows.Forms.ImeMode.Disable;
810
            this.txtInput11.Location = new System.Drawing.Point(148, 786);
865
            this.txtInput11.Location = new System.Drawing.Point(148, 681);
811 866
            this.txtInput11.MaxLength = 11;
812 867
            this.txtInput11.Name = "txtInput11";
813 868
            this.txtInput11.Size = new System.Drawing.Size(139, 23);
814
            this.txtInput11.TabIndex = 17;
869
            this.txtInput11.TabIndex = 14;
815 870
            this.txtInput11.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
816 871
            this.txtInput11.Validated += new System.EventHandler(this.txtInputDecimal_Validated);
817 872
            // 
......
822 877
            this.label22.BackColor = System.Drawing.Color.Black;
823 878
            this.label22.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
824 879
            this.label22.ForeColor = System.Drawing.Color.White;
825
            this.label22.Location = new System.Drawing.Point(293, 789);
880
            this.label22.Location = new System.Drawing.Point(293, 684);
826 881
            this.label22.Name = "label22";
827 882
            this.label22.Size = new System.Drawing.Size(110, 16);
828 883
            this.label22.TabIndex = 30;
829 884
            this.label22.Text = "Km(片道)";
830 885
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
831 886
            // 
832
            // label12
833
            // 
834
            this.label12.Anchor = System.Windows.Forms.AnchorStyles.Left;
835
            this.label12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
836
            this.label12.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
837
            this.label12.ForeColor = System.Drawing.Color.Black;
838
            this.label12.Location = new System.Drawing.Point(3, 855);
839
            this.label12.Name = "label12";
840
            this.label12.Size = new System.Drawing.Size(139, 25);
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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