プロジェクト

全般

プロフィール

リビジョン 264

堀内7年以上前に追加

資材管理、秘書からの連絡メッセージ画面遷移修正
工事情報オブジェクトnull不具合対応
工事詳細台帳一覧・部署台帳一覧割当給与修正
交通費入力上長変更時不具合修正
売上グラフ、部署別追加

差分を表示:

branches/src/DataCheckExcute/DataCheckExcute/Common/Process/ClsSystemOnceExecute.cs
348 348
                WriteData.MessageTitle = CheckRec.SendTitle;                                                // 伝言タイトル
349 349

  
350 350
                // リンク情報
351
                WriteData.LinkType = (int)CommonDefine.LinkType.ConstructionInfo;
351
                WriteData.LinkType = (int)CommonDefine.LinkType.MaterialInfo;
352 352
                WriteData.LinkMessage = string.Format("工事番号:{0} 工事名称:{1}"
353 353
                                                                            , CommonMotions.cnvStringCodeFromInt(wrkRec.ConstructionCode, "-", 8)
354 354
                                                                            , DetailString);
branches/src/ProcessManagement/ProcessManagement/Common/CommonDefine.cs
295 295
            /// 工事情報
296 296
            /// </summary>
297 297
            ConstructionInfo,
298
            /// <summary>
299
            /// 資材管理
300
            /// </summary>
301
            MaterialInfo,
298 302
        }
299 303
        #endregion
300 304

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

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
branches/src/ProcessManagement/ProcessManagement/Common/Office/UsedExcel.cs
165 165
                ExcelBookClose();
166 166
                if (xlsApp == null) return;
167 167

  
168
                xlsApp.GetType().InvokeMember("Quit", BindingFlags.InvokeMethod, null, xlsApp, null);
168
                xlsApp.GetType().InvokeMember("Quit"
169
                                                , BindingFlags.InvokeMethod
170
                                                , null
171
                                                , xlsApp
172
                                                , null);
169 173
                CommonMotions.ReleaseCom(ref xlsApp);
170 174

  
171 175
            }
branches/src/ProcessManagement/ProcessManagement/Common/Process/ClsSystemOnceExecute.cs
298 298
        }
299 299
        #endregion
300 300

  
301
        #region 秘書からのメッセージ作成
301
        #region 秘書からのメッセージ作成(資材管理メッセージ)
302 302
        /// <summary>
303
        /// 秘書からのメッセージ作成
303
        /// 秘書からのメッセージ作成(資材管理メッセージ)
304 304
        /// </summary>
305 305
        private bool MakeSecretaryMassageData(IOMessageBoardData mbdDB,
306 306
                                        IOMessageBoardTerget mbtDB,
......
343 343
                WriteData.MessageTitle = CheckRec.SendTitle;                                                // 伝言タイトル
344 344

  
345 345
                // リンク情報
346
                WriteData.LinkType = (int)CommonDefine.LinkType.ConstructionInfo;
346
                WriteData.LinkType = (int)CommonDefine.LinkType.MaterialInfo;
347 347
                WriteData.LinkMessage = string.Format("工事番号:{0} 工事名称:{1}"
348 348
                                                                            , CommonMotions.cnvStringCodeFromInt(wrkRec.ConstructionCode, "-", 8)
349 349
                                                                            , DetailString);
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalScreen/FrmApprovalScreen.cs
86 86
        Point[] s_ButtonPosition = new Point[] { new Point(6, 58), new Point(258, 58), new Point(510, 58) };
87 87
        #endregion
88 88

  
89
        #region ?R?????gToolTip??????
89
        #region ?R?????gToolTip???s??????
90 90
        /// <summary>
91
        /// ?R?????gToolTip??????
91
        /// ?R?????gToolTip???s??????
92 92
        /// </summary>
93 93
        private int s_CommentToolTipLength = 30;
94 94
        #endregion
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfoAuxiliary.cs
4532 4532
                // ?t?B?[???h???b?N
4533 4533
                for (int i = 0; i < m_DspCtrl.Length; i++)
4534 4534
                {
4535
                    if (m_DspCtrl[i] == null) continue;
4536

  
4535 4537
                    // ???????????{?^??
4536 4538
                    if (!m_DspCtrl[i].GetType().Equals(typeof(TextBox))
4537 4539
                        && !m_DspCtrl[i].GetType().Equals(typeof(TextBoxEX))
4538 4540
                        && !m_DspCtrl[i].GetType().Equals(typeof(ComboBox))
4539 4541
                        && !m_DspCtrl[i].GetType().Equals(typeof(ComboBoxEX)))
4540 4542
                        continue;
4541

  
4543
                    
4542 4544
                    // ?????Enable????
4543 4545
                    m_DspCtrl[i].Enabled = false;
4544 4546
                }
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedgerList/CreateLedgerSQL.cs
285 285
        /// 工事詳細台帳より振分給与金額・粗利益を取得する
286 286
        /// </summary>
287 287
        public static void ProfitGeneral(IOConstructionLedger LedgerDB, int ConstructionPeriod,
288
                                            int DepartmentCode, int PersonCode, ref int OnSalary)
288
                                            int DepartmentCode, int PersonCode, ref int OnSalary,
289
                                            bool bExec = true)
289 290
        {
290 291
            try
291 292
            {
......
294 295

  
295 296
                // 振分給与金額取得
296 297
                StringBuilder strSQL = new StringBuilder();
297
                //strSQL.Append("SELECT SUM(C.EXECUTIONAMOUNT) FROM");
298
                strSQL.Append("SELECT SUM(C2.PaymentAmount) FROM");
298
                strSQL.Append("SELECT");
299
                strSQL.Append(" SUM(C.EXECUTIONAMOUNT)");
300
                strSQL.Append(",SUM(C2.PAYMENTAMOUNT)");
301
                strSQL.Append(" FROM");
299 302
                strSQL.Append(" CONSTRUCTIONLEDGER P");
300 303
                strSQL.Append(", CONSTRUCTIONBASEINFO B");
301 304
                strSQL.Append(", CONSTRUCTIONLEDGERDETAIL C");
302
                strSQL.Append(" LEFT JOIN constructionledgerexcute C2");
305

  
306
                strSQL.Append(" LEFT JOIN");
307
                strSQL.Append(" (Select");
308
                strSQL.Append(" CC2.ConstructionCode AS ConstructionCode");
309
                strSQL.Append(", CC2.GroupCount AS GroupCount");
310
                strSQL.Append(", CC2.LineCount AS LineCount");
311
                strSQL.Append(", SUM(CC2.PaymentAmount) AS PaymentAmount");
312
                strSQL.Append(" From constructionledgerexcute AS CC2");
313
                strSQL.Append(" Group By CC2.ConstructionCode, CC2.GroupCount, CC2.LineCount");
314
                strSQL.Append(" ) AS C2");
303 315
                strSQL.Append(" ON C2.ConstructionCode = C.ConstructionCode");
304 316
                strSQL.Append(" And C2.GroupCount = C.GroupCount");
305 317
                strSQL.Append(" And C2.LineCount = C.LineCount");
318

  
306 319
                strSQL.Append(", PERSONINCHARGEMASTER D");
307 320
                // 振分無では無い
308 321
                strSQL.Append(" WHERE P.CONSTRUCTIONCODE IN (SELECT A.CONSTRUCTIONCODE FROM CONSTRUCTIONLEDGERDETAIL A");
......
330 343
                ArrayList arList = new ArrayList();
331 344
                if (!LedgerDB.ExecuteReader(strSQL.ToString(), ref arList)) return;
332 345
                object[] objSalary = (object[])arList[0];
333
                OnSalary = CommonMotions.cnvInt(objSalary[0]);
346
                if (bExec)
347
                    OnSalary = CommonMotions.cnvInt(objSalary[0]);
348
                else
349
                    OnSalary = CommonMotions.cnvInt(objSalary[1]);
334 350
            }
335 351
            catch (Exception ex)
336 352
            {
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedgerList/FrmConstructionLedgerListAuxiliary.cs
625 625
        /// <summary>
626 626
        /// ???S????^?w????????^????????
627 627
        /// </summary>
628
        private int SetAuxiliaryCost()
628
        private int SetAuxiliaryCost(IOConstructionLedger LedgerDB)
629 629
        {
630 630
            try
631 631
            {
632 632
                // ?????R?[?h??
633 633
                int DepartmentCode = GetDepartmentCode();
634
                int PersonCode = CommonMotions.cnvInt(cmbConstructionPerson.SelectedValue);
634 635

  
635 636
                int[] CostValue = new int[2];
636 637
                // ?\???G???A?N???A
......
656 657
                }
657 658

  
658 659
                // ?S?????U??
659
                int ConstrCost = CommonMotions.cnvInt(lblTotalValue.Text);
660
                int ConstrCost = 0;
661
                int PayrollCost = CommonMotions.cnvInt(lblPayroll.Text);
662
                // ?U?????^???z?E?????v???z?E?e???v???z??
663
                CreateLedgerSQL.ProfitGeneral(LedgerDB, (int)numUDConstPro.Value, DepartmentCode, PersonCode, ref ConstrCost, false);
664
                ConstrCost -= PayrollCost;
660 665
                // ?s??
661 666
                RowCnt = dgv.Rows.Add(1);
662 667
                // ?o????
......
935 940

  
936 941
                // ------ ?U?????^??\??????
937 942
                int Auxiliary = 0;
938
                Auxiliary = SetAuxiliaryCost();
943
                Auxiliary = SetAuxiliaryCost(LedgerDB);
939 944

  
940 945
                // ProgressBar??l???X????
941 946
                prgber.Value++;
......
1049 1054
                int NotOrder = CommonDefine.ProjectsStatus.First(x => x.Value.Equals("?? ?? ??")).Key;
1050 1055
                // ----- ?r?p?k??
1051 1056
                // ????????f?[?^????
1052
                strSQL.Append(" SELECT A.CONSTRUCTIONCODE, A.CREATORCODE, C.PERSONNAME, B.DETAILSTRING, A.ORDERSDECISIONPRICE, A.COMPANYEXPENSES,");
1053
                strSQL.Append(" A.DEPARTMENTEXPENSES, A.SALESEXPENSES, A.TOTALPAYMENT, A.GROSSPROFIT, A.ALLOWANCE, A.NETPROFIT, A.COMPLATEFLG,");
1054
                strSQL.Append(" E.DISPLAYORDER, C.DISPLAYORDER, C.DEPARTMENTCODE, E.DepartmentString, D.CONSTRUCTIONSTATUSFLG");
1057
                strSQL.Append(" SELECT");
1058
                strSQL.Append(" A.CONSTRUCTIONCODE");
1059
                strSQL.Append(", A.CREATORCODE");
1060
                strSQL.Append(", C.PERSONNAME");
1061
                strSQL.Append(", B.DETAILSTRING");
1062
                strSQL.Append(", A.ORDERSDECISIONPRICE");
1063
                strSQL.Append(", A.COMPANYEXPENSES");
1064
                strSQL.Append(", A.DEPARTMENTEXPENSES");
1065
                strSQL.Append(", A.SALESEXPENSES");
1066
                strSQL.Append(", A.TOTALPAYMENT");
1067
                strSQL.Append(", A.GROSSPROFIT");
1068
                strSQL.Append(", A.ALLOWANCE");
1069
                strSQL.Append(", A.NETPROFIT");
1070
                strSQL.Append(", A.COMPLATEFLG");
1071
                strSQL.Append(", E.DISPLAYORDER");
1072
                strSQL.Append(", C.DISPLAYORDER");
1073
                strSQL.Append(", C.DEPARTMENTCODE");
1074
                strSQL.Append(", E.DepartmentString");
1075
                strSQL.Append(", D.CONSTRUCTIONSTATUSFLG");
1055 1076
                strSQL.Append(" FROM CONSTRUCTIONLEDGER A, CONSTRUCTIONBASEINFODETAIL B, PERSONINCHARGEMASTER C, CONSTRUCTIONBASEINFO D,");
1056 1077
                strSQL.Append(" DEPARTMENTMASTER E");
1057 1078
                strSQL.Append(" WHERE A.CONSTRUCTIONCODE = D.CONSTRUCTIONCODE");
1058 1079
                strSQL.AppendFormat(" AND D.TyingFlg != {0}", (int)CommonDefine.BaseInfoTyingFlg.Tying);
1059
                strSQL.AppendFormat(" AND (A.CONSTRUCTIONCODE = B.CONSTRUCTIONCODE AND B.DETAILNO = {0})", (int)ConstructionBaseInfoDetail.DetailDataNo.ConstructionName);
1080
                strSQL.Append(" AND (A.CONSTRUCTIONCODE = B.CONSTRUCTIONCODE");
1081
                strSQL.AppendFormat(" AND B.DETAILNO = {0})", (int)ConstructionBaseInfoDetail.DetailDataNo.ConstructionName);
1060 1082
                strSQL.AppendFormat(" AND A.CONSTRUCTIONPERIOD = {0}", numUDConstPro.Value);
1061 1083
                strSQL.Append(" AND D.CONSTRUCTIONPERSONCODE = C.PERSONCODE");
1062 1084
                strSQL.Append(" AND C.DEPARTMENTCODE = E.DEPARTMENTCODE");
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DepExpenssList/FrmDepExpenssListAuxiliary.cs
303 303
                    }
304 304

  
305 305
                    // ?U?????^???z?E?????v???z?E?e???v???z??
306
                    CreateLedgerSQL.ProfitGeneral(LedgerDB, (int)numUDConstPro.Value, DepartmentCode, 0, ref OnSalary);
306
                    CreateLedgerSQL.ProfitGeneral(LedgerDB, (int)numUDConstPro.Value, DepartmentCode, 0, ref OnSalary, false);
307 307
                }
308 308
                else
309 309
                {
......
338 338
                    }
339 339

  
340 340
                    // ?U?????^???z?E?????v???z?E?e???v???z??
341
                    CreateLedgerSQL.ProfitGeneral(LedgerDB, (int)numUDConstPro.Value, DepartmentCode, PersonCode, ref OnSalary);
341
                    CreateLedgerSQL.ProfitGeneral(LedgerDB, (int)numUDConstPro.Value, DepartmentCode, PersonCode, ref OnSalary, false);
342 342
                }
343 343
                // ???Z
344 344
                wrkArray[(int)DBGetData.TotalPayment] += CostValue2.Sum();      // ???x???z+?w???i
......
1258 1258
        }
1259 1259
        #endregion
1260 1260

  
1261

  
1262
        #region ?w?b?_?[??o????^??\??????
1263
        /// <summary>
1264
        /// ?w?b?_?[??o????^??\??????
1265
        /// </summary>
1266
        private void SetPayrollHeader(int OnSalary, int TotalSalary, int[] CostValue, DateTime DspSTDate, DateTime DspEdDate)
1267
        {
1268
            try
1269
            {
1270
                // ----- ?\??????
1271
                // ?U?????^???z?\??
1272
                lblCalcValue1.Text = OnSalary.ToString("#,0");
1273

  
1274
                // ???^???\??
1275
                lblPayroll.Text = TotalSalary.ToString("#,0");
1276

  
1277
                // ???^???z?v?Z?E?\??
1278
                int TotalValue = OnSalary - TotalSalary;
1279
                lblTotalValue.Text = TotalValue.ToString("#,0");
1280
                lblCalcValue3.Text = TotalValue.ToString("#,0");
1281

  
1282
                // ???S??????v???z?\??
1283
                lblCalcValue2.Text = CostValue[0].ToString("#,0");
1284

  
1285
                // ?w???????v???z?\??
1286
                lblTotalValue2.Text = CostValue[1].ToString("#,0");
1287

  
1288
                // ?S???O???v?v?Z
1289
                int CalcTotal1 = CostValue[0] + CostValue[1];
1290
                lblTotalCalcValue1.Text = CalcTotal1.ToString("#,0");
1291
                lblTotalCalcValue2.Text = CalcTotal1.ToString("#,0");
1292

  
1293
                // ?l????v
1294
                int CalcTotal = TotalValue + CalcTotal1;
1295
                lblTotalCalcValue.Text = CalcTotal.ToString("#,0");
1296

  
1297
                // ???^?v?Z?J?n???E?I????
1298
                lblStartDate.Text = DspSTDate.ToShortDateString();
1299
                lblEndDate.Text = DspEdDate.ToShortDateString();
1300
            }
1301
            catch (Exception ex)
1302
            {
1303
                logger.ErrorFormat("?V?X?e???G???[?F{0}?F{1}", CommonMotions.GetMethodName(), ex.Message);
1304
            }
1305
        }
1306
        #endregion
1307

  
1261 1308
        #region ????m?F????\??????
1262 1309
        /// <summary>
1263 1310
        /// ????m?F????\??????
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/MaterialReserveEntry/FrmMaterialReserveEntry.cs
732 732
            {
733 733
                if (ConstructionCode == 0) return;
734 734

  
735
                if (!IoMri.ExecuteReader(string.Format("select DATE_FORMAT(ProcessDate, '%Y/%m/%d') from MaterialRecordInfo where ConstructionCode = {0} and RECKIND = 0 group by ProcessDate order by ProcessDate desc", ConstructionCode), ref arData)) return;
735
                StringBuilder strSQL = new StringBuilder();
736
                strSQL.Append("select DATE_FORMAT(ProcessDate, '%Y/%m/%d') from MaterialRecordInfo");
737
                strSQL.AppendFormat(" where ConstructionCode = {0}", ConstructionCode);
738
                strSQL.Append(" and RECKIND = 0");
739
                strSQL.Append(" group by ProcessDate");
740
                strSQL.Append(" order by ProcessDate desc");
736 741

  
742
                if (!IoMri.ExecuteReader(strSQL.ToString(), ref arData)) return;
743

  
737 744
                DataList = new List<KeyValuePair<string, string>>();
738 745
                if (arData.Count == 0)
739 746
                {
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/MaterialReserveEntry/FrmMaterialReserveEntry.designer.cs
30 30
        /// </summary>
31 31
        private void InitializeComponent()
32 32
        {
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
41 41
            this.label1 = new System.Windows.Forms.Label();
42 42
            this.label2 = new System.Windows.Forms.Label();
43 43
            this.label3 = new System.Windows.Forms.Label();
......
154 154
            // 
155 155
            // btnDataEntry
156 156
            // 
157
            this.btnDataEntry.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
158
            this.btnDataEntry.ForeColor = System.Drawing.Color.Black;
157
            this.btnDataEntry.BackColor = System.Drawing.Color.Green;
158
            this.btnDataEntry.ForeColor = System.Drawing.Color.White;
159 159
            this.btnDataEntry.Location = new System.Drawing.Point(913, 390);
160 160
            this.btnDataEntry.Name = "btnDataEntry";
161 161
            this.btnDataEntry.Size = new System.Drawing.Size(120, 30);
......
166 166
            // 
167 167
            // button6
168 168
            // 
169
            this.button6.BackColor = System.Drawing.Color.Red;
169
            this.button6.BackColor = System.Drawing.Color.SpringGreen;
170 170
            this.button6.ForeColor = System.Drawing.Color.Black;
171 171
            this.button6.Location = new System.Drawing.Point(8, 390);
172 172
            this.button6.Name = "button6";
173
            this.button6.Size = new System.Drawing.Size(120, 30);
173
            this.button6.Size = new System.Drawing.Size(160, 30);
174 174
            this.button6.TabIndex = 8;
175
            this.button6.Text = "その他画面へ";
175
            this.button6.Text = "他の画面へ";
176 176
            this.button6.UseVisualStyleBackColor = false;
177 177
            this.button6.Click += new System.EventHandler(this.btnOtherProc_Click);
178 178
            // 
......
231 231
            this.dgvMaster.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCellsExceptHeaders;
232 232
            this.dgvMaster.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
233 233
            this.dgvMaster.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
234
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
235
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
236
            dataGridViewCellStyle1.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
237
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
238
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
239
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
240
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
241
            this.dgvMaster.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
234
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
235
            dataGridViewCellStyle17.BackColor = System.Drawing.SystemColors.Control;
236
            dataGridViewCellStyle17.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
237
            dataGridViewCellStyle17.ForeColor = System.Drawing.SystemColors.WindowText;
238
            dataGridViewCellStyle17.SelectionBackColor = System.Drawing.SystemColors.Highlight;
239
            dataGridViewCellStyle17.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
240
            dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
241
            this.dgvMaster.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle17;
242 242
            this.dgvMaster.ColumnHeadersHeight = 27;
243 243
            this.dgvMaster.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
244 244
            this.Column13,
......
257 257
            this.dgvMaster.Location = new System.Drawing.Point(6, 6);
258 258
            this.dgvMaster.MultiSelect = false;
259 259
            this.dgvMaster.Name = "dgvMaster";
260
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
261
            dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Control;
262
            dataGridViewCellStyle8.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
263
            dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.WindowText;
264
            dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
265
            dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
266
            dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
267
            this.dgvMaster.RowHeadersDefaultCellStyle = dataGridViewCellStyle8;
260
            dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
261
            dataGridViewCellStyle24.BackColor = System.Drawing.SystemColors.Control;
262
            dataGridViewCellStyle24.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
263
            dataGridViewCellStyle24.ForeColor = System.Drawing.SystemColors.WindowText;
264
            dataGridViewCellStyle24.SelectionBackColor = System.Drawing.SystemColors.Highlight;
265
            dataGridViewCellStyle24.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
266
            dataGridViewCellStyle24.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
267
            this.dgvMaster.RowHeadersDefaultCellStyle = dataGridViewCellStyle24;
268 268
            this.dgvMaster.RowHeadersVisible = false;
269 269
            this.dgvMaster.RowHeadersWidth = 24;
270 270
            this.dgvMaster.Size = new System.Drawing.Size(1137, 229);
......
282 282
            // 
283 283
            // Column1
284 284
            // 
285
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
286
            dataGridViewCellStyle2.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
287
            this.Column1.DefaultCellStyle = dataGridViewCellStyle2;
285
            dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
286
            dataGridViewCellStyle18.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
287
            this.Column1.DefaultCellStyle = dataGridViewCellStyle18;
288 288
            this.Column1.HeaderText = "№";
289 289
            this.Column1.Name = "Column1";
290 290
            this.Column1.ReadOnly = true;
......
301 301
            // 
302 302
            // Column2
303 303
            // 
304
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
305
            dataGridViewCellStyle3.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
306
            dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
307
            dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
308
            this.Column2.DefaultCellStyle = dataGridViewCellStyle3;
304
            dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
305
            dataGridViewCellStyle19.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
306
            dataGridViewCellStyle19.ForeColor = System.Drawing.SystemColors.WindowText;
307
            dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
308
            this.Column2.DefaultCellStyle = dataGridViewCellStyle19;
309 309
            this.Column2.HeaderText = "種類";
310 310
            this.Column2.Name = "Column2";
311 311
            this.Column2.ReadOnly = true;
......
330 330
            // 
331 331
            // Column3
332 332
            // 
333
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
334
            dataGridViewCellStyle4.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
335
            this.Column3.DefaultCellStyle = dataGridViewCellStyle4;
333
            dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
334
            dataGridViewCellStyle20.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
335
            this.Column3.DefaultCellStyle = dataGridViewCellStyle20;
336 336
            this.Column3.HeaderText = "品目";
337 337
            this.Column3.Name = "Column3";
338 338
            this.Column3.ReadOnly = true;
......
350 350
            // 
351 351
            // Column4
352 352
            // 
353
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
354
            dataGridViewCellStyle5.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
355
            dataGridViewCellStyle5.Format = "#,0";
356
            this.Column4.DefaultCellStyle = dataGridViewCellStyle5;
353
            dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
354
            dataGridViewCellStyle21.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
355
            dataGridViewCellStyle21.Format = "#,0";
356
            this.Column4.DefaultCellStyle = dataGridViewCellStyle21;
357 357
            this.Column4.HeaderText = "貸出可能数";
358 358
            this.Column4.Name = "Column4";
359 359
            this.Column4.ReadOnly = true;
......
362 362
            // 
363 363
            // Column5
364 364
            // 
365
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
366
            dataGridViewCellStyle6.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
367
            dataGridViewCellStyle6.Format = "#,0";
368
            this.Column5.DefaultCellStyle = dataGridViewCellStyle6;
365
            dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
366
            dataGridViewCellStyle22.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
367
            dataGridViewCellStyle22.Format = "#,0";
368
            this.Column5.DefaultCellStyle = dataGridViewCellStyle22;
369 369
            this.Column5.HeaderText = "貸出数";
370 370
            this.Column5.Name = "Column5";
371 371
            this.Column5.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
380 380
            // 
381 381
            // Column6
382 382
            // 
383
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
384
            dataGridViewCellStyle7.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
385
            dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.WindowText;
386
            dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
387
            this.Column6.DefaultCellStyle = dataGridViewCellStyle7;
383
            dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
384
            dataGridViewCellStyle23.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
385
            dataGridViewCellStyle23.ForeColor = System.Drawing.SystemColors.WindowText;
386
            dataGridViewCellStyle23.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
387
            this.Column6.DefaultCellStyle = dataGridViewCellStyle23;
388 388
            this.Column6.HeaderText = "返却予定日";
389 389
            this.Column6.Name = "Column6";
390 390
            this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False;
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/MaterialReturnEntry/FrmMaterialReturnEntry.cs
985 985
                sql.AppendLine("        ,ifnull(Mri.MaterialCount,0) as MaterialCount ");
986 986
                sql.AppendLine("        ,ifnull(Mri.CommentText,'') as CommentText ");
987 987
                sql.AppendLine("        ,Cmi.CompleteFlg ");
988
                sql.AppendFormat("from ConstructionMaterialInfo as Cmi left join MaterialRecordInfo as Mri on Cmi.CONSTRUCTIONCODE = Mri.CONSTRUCTIONCODE and Cmi.MATERIALITEMCODE = Mri.MATERIALITEMCODE and Mri.RECKIND = 1 and ProcessDate = DATE_FORMAT('{0}','%Y/%m/%d') ", lblRepaydate.Text);
989
                sql.AppendLine("									 left join (MaterialItemMaster as Mim left join MaterialKindMaster as Mkm on Mim.MaterialKindCode = Mkm.MaterialKindCode) on Cmi.MaterialItemCode = Mim.MaterialItemCode  ");
990
                sql.AppendFormat("where Cmi.ConstructionCode = {0} ",ConstructionCode);
991
                sql.AppendLine("order by Mkm.DisplayOrder ,Mim.DisplayOrder ");
988
                sql.AppendLine(" from ConstructionMaterialInfo as Cmi");
989
                sql.AppendLine(" left join MaterialRecordInfo as Mri");
990
                sql.AppendLine(" on Cmi.CONSTRUCTIONCODE = Mri.CONSTRUCTIONCODE");
991
                sql.AppendLine(" and Cmi.MATERIALITEMCODE = Mri.MATERIALITEMCODE");
992
                sql.AppendLine(" and Mri.RECKIND = 1");
993
                sql.AppendFormat(" and ProcessDate = DATE_FORMAT('{0}','%Y/%m/%d') ", lblRepaydate.Text);
992 994

  
995
                //sql.AppendFormat(" from ConstructionMaterialInfo as Cmi left join MaterialRecordInfo as Mri on Cmi.CONSTRUCTIONCODE = Mri.CONSTRUCTIONCODE and Cmi.MATERIALITEMCODE = Mri.MATERIALITEMCODE and Mri.RECKIND = 1 and ProcessDate = DATE_FORMAT('{0}','%Y/%m/%d') ", lblRepaydate.Text);
996

  
997
                sql.AppendLine("	left join (MaterialItemMaster as Mim");
998
                sql.AppendLine("	left join MaterialKindMaster as Mkm");
999
                sql.AppendLine("	on Mim.MaterialKindCode = Mkm.MaterialKindCode)");
1000
                sql.AppendLine("	on Cmi.MaterialItemCode = Mim.MaterialItemCode  ");
1001
                //sql.AppendLine("									 left join (MaterialItemMaster as Mim left join MaterialKindMaster as Mkm on Mim.MaterialKindCode = Mkm.MaterialKindCode) on Cmi.MaterialItemCode = Mim.MaterialItemCode  ");
1002
                sql.AppendFormat(" where Cmi.ConstructionCode = {0} ", ConstructionCode);
1003
                sql.AppendLine(" order by Mkm.DisplayOrder ,Mim.DisplayOrder ");
1004

  
993 1005
                // データ取得
994 1006
                if (!IoCmi.ExecuteReader(sql.ToString(), ref arData)) return false;
995 1007

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/MaterialReturnEntry/FrmMaterialReturnEntry.designer.cs
30 30
        /// </summary>
31 31
        private void InitializeComponent()
32 32
        {
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
41 41
            this.label1 = new System.Windows.Forms.Label();
42 42
            this.label2 = new System.Windows.Forms.Label();
43 43
            this.label3 = new System.Windows.Forms.Label();
......
153 153
            // 
154 154
            // btnDataEntry
155 155
            // 
156
            this.btnDataEntry.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
157
            this.btnDataEntry.ForeColor = System.Drawing.Color.Black;
156
            this.btnDataEntry.BackColor = System.Drawing.Color.Green;
157
            this.btnDataEntry.ForeColor = System.Drawing.Color.White;
158 158
            this.btnDataEntry.Location = new System.Drawing.Point(906, 386);
159 159
            this.btnDataEntry.Name = "btnDataEntry";
160 160
            this.btnDataEntry.Size = new System.Drawing.Size(120, 30);
......
176 176
            // 
177 177
            // button3
178 178
            // 
179
            this.button3.BackColor = System.Drawing.Color.Aqua;
179
            this.button3.BackColor = System.Drawing.Color.SpringGreen;
180 180
            this.button3.ForeColor = System.Drawing.Color.Black;
181 181
            this.button3.Location = new System.Drawing.Point(14, 386);
182 182
            this.button3.Name = "button3";
183
            this.button3.Size = new System.Drawing.Size(120, 30);
183
            this.button3.Size = new System.Drawing.Size(160, 30);
184 184
            this.button3.TabIndex = 8;
185
            this.button3.Text = "その他画面へ";
185
            this.button3.Text = "他の画面へ";
186 186
            this.button3.UseVisualStyleBackColor = false;
187 187
            this.button3.Click += new System.EventHandler(this.btnOtherProc_Click);
188 188
            // 
......
218 218
            this.dgvMaster.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCellsExceptHeaders;
219 219
            this.dgvMaster.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
220 220
            this.dgvMaster.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
221
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
222
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
223
            dataGridViewCellStyle1.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
224
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
225
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
226
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
227
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
228
            this.dgvMaster.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
221
            dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
222
            dataGridViewCellStyle25.BackColor = System.Drawing.SystemColors.Control;
223
            dataGridViewCellStyle25.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
224
            dataGridViewCellStyle25.ForeColor = System.Drawing.SystemColors.WindowText;
225
            dataGridViewCellStyle25.SelectionBackColor = System.Drawing.SystemColors.Highlight;
226
            dataGridViewCellStyle25.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
227
            dataGridViewCellStyle25.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
228
            this.dgvMaster.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle25;
229 229
            this.dgvMaster.ColumnHeadersHeight = 27;
230 230
            this.dgvMaster.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
231 231
            this.Column1,
......
244 244
            this.dgvMaster.Location = new System.Drawing.Point(6, 6);
245 245
            this.dgvMaster.MultiSelect = false;
246 246
            this.dgvMaster.Name = "dgvMaster";
247
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
248
            dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Control;
249
            dataGridViewCellStyle8.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
250
            dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.WindowText;
251
            dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
252
            dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
253
            dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
254
            this.dgvMaster.RowHeadersDefaultCellStyle = dataGridViewCellStyle8;
247
            dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
248
            dataGridViewCellStyle32.BackColor = System.Drawing.SystemColors.Control;
249
            dataGridViewCellStyle32.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
250
            dataGridViewCellStyle32.ForeColor = System.Drawing.SystemColors.WindowText;
251
            dataGridViewCellStyle32.SelectionBackColor = System.Drawing.SystemColors.Highlight;
252
            dataGridViewCellStyle32.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
253
            dataGridViewCellStyle32.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
254
            this.dgvMaster.RowHeadersDefaultCellStyle = dataGridViewCellStyle32;
255 255
            this.dgvMaster.RowHeadersVisible = false;
256 256
            this.dgvMaster.RowHeadersWidth = 24;
257 257
            this.dgvMaster.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
......
261 261
            // 
262 262
            // Column1
263 263
            // 
264
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
265
            dataGridViewCellStyle2.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
266
            this.Column1.DefaultCellStyle = dataGridViewCellStyle2;
264
            dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
265
            dataGridViewCellStyle26.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
266
            this.Column1.DefaultCellStyle = dataGridViewCellStyle26;
267 267
            this.Column1.HeaderText = "№";
268 268
            this.Column1.Name = "Column1";
269 269
            this.Column1.ReadOnly = true;
......
279 279
            // 
280 280
            // Column2
281 281
            // 
282
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
283
            dataGridViewCellStyle3.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
284
            this.Column2.DefaultCellStyle = dataGridViewCellStyle3;
282
            dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
283
            dataGridViewCellStyle27.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
284
            this.Column2.DefaultCellStyle = dataGridViewCellStyle27;
285 285
            this.Column2.HeaderText = "種類";
286 286
            this.Column2.Name = "Column2";
287 287
            this.Column2.ReadOnly = true;
......
317 317
            // 
318 318
            // Column4
319 319
            // 
320
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
321
            dataGridViewCellStyle4.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
322
            dataGridViewCellStyle4.Format = "#,0";
323
            this.Column4.DefaultCellStyle = dataGridViewCellStyle4;
320
            dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
321
            dataGridViewCellStyle28.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
322
            dataGridViewCellStyle28.Format = "#,0";
323
            this.Column4.DefaultCellStyle = dataGridViewCellStyle28;
324 324
            this.Column4.HeaderText = "貸出数";
325 325
            this.Column4.Name = "Column4";
326 326
            this.Column4.ReadOnly = true;
......
329 329
            // 
330 330
            // Column5
331 331
            // 
332
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
333
            dataGridViewCellStyle5.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
334
            dataGridViewCellStyle5.Format = "#,0";
335
            this.Column5.DefaultCellStyle = dataGridViewCellStyle5;
332
            dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
333
            dataGridViewCellStyle29.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
334
            dataGridViewCellStyle29.Format = "#,0";
335
            this.Column5.DefaultCellStyle = dataGridViewCellStyle29;
336 336
            this.Column5.HeaderText = "返却済";
337 337
            this.Column5.Name = "Column5";
338 338
            this.Column5.ReadOnly = true;
......
341 341
            // 
342 342
            // Column6
343 343
            // 
344
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
345
            dataGridViewCellStyle6.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
346
            this.Column6.DefaultCellStyle = dataGridViewCellStyle6;
344
            dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
345
            dataGridViewCellStyle30.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
346
            this.Column6.DefaultCellStyle = dataGridViewCellStyle30;
347 347
            this.Column6.HeaderText = "返却数";
348 348
            this.Column6.Name = "Column6";
349 349
            this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
351 351
            // 
352 352
            // Column13
353 353
            // 
354
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
355
            dataGridViewCellStyle7.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
356
            this.Column13.DefaultCellStyle = dataGridViewCellStyle7;
354
            dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
355
            dataGridViewCellStyle31.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
356
            this.Column13.DefaultCellStyle = dataGridViewCellStyle31;
357 357
            this.Column13.HeaderText = "破棄数";
358 358
            this.Column13.Name = "Column13";
359 359
            this.Column13.Resizable = System.Windows.Forms.DataGridViewTriState.False;
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/TAndPCosts/FrmTAndPCosts.cs
960 960
            }
961 961
            else
962 962
            {
963
                // コンボボックス初期表示
964
                InitCombBox();
963
                // データを表示する
964
                SetGridData();
965 965
            }
966
            m_bChengeAns = false;
966 967
        }
967 968
        #endregion
968 969

  
branches/src/ProcessManagement/ProcessManagement/Forms/SubForms/FrmMessageBoardReader.cs
268 268
        /// <param name="e"></param>
269 269
        private void linklblValue_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
270 270
        {
271
            int NowPoint = 0;
272
            int iConstructionCode = 0;
273

  
271 274
            switch (CommonMotions.cnvInt(lblLinkType.Text))
272 275
            {
273 276
                // 工事情報リンク
......
276 279
                    ClsExcute.ClearProcess();
277 280

  
278 281
                    // 次起動プロセスセット
279
                    int NowPoint = ClsExcute.NextProcess((int)ClsExcute.ProcessExecuteNo.ConstructionBaseInfo);
280
                    int iConstructionCode = CommonMotions.cnvIntFromStringCode(lblLinkCode.Text, "-");
282
                    NowPoint = ClsExcute.NextProcess((int)ClsExcute.ProcessExecuteNo.ConstructionBaseInfo);
283
                    iConstructionCode = CommonMotions.cnvIntFromStringCode(lblLinkCode.Text, "-");
281 284
                    if (iConstructionCode == 0) return;
282 285
                    // 選択工事番号セット
283 286
                    ClsExcute.ProcControlPara[NowPoint].IntExecParameter.Add(iConstructionCode);
......
286 289
                    this.Close();
287 290
                    break;
288 291

  
292
                // 資材管理リンク
293
                case (int)CommonDefine.LinkType.MaterialInfo:
294
                    // リンク情報参照後はメニューに戻るため前の情報を破棄する
295
                    ClsExcute.ClearProcess();
296

  
297
                    // 次起動プロセスセット
298
                    NowPoint = ClsExcute.NextProcess((int)ClsExcute.ProcessExecuteNo.MaterialReturnEntry);
299
                    iConstructionCode = CommonMotions.cnvIntFromStringCode(lblLinkCode.Text, "-");
300
                    if (iConstructionCode == 0) return;
301
                    // 選択工事番号セット
302
                    ClsExcute.ProcControlPara[NowPoint].IntExecParameter.Add(iConstructionCode);
303

  
304
                    m_EndButton = DialogResult.OK;
305
                    this.Close();
306
                    break;
307

  
289 308
                default:
290 309
                    break;
291 310
            }
branches/src/ProcessManagement/ProcessManagement/Forms/SubForms/FrmMessageBoardReader.designer.cs
241 241
            this.lblComent.ForeColor = System.Drawing.Color.Red;
242 242
            this.lblComent.Location = new System.Drawing.Point(190, 344);
243 243
            this.lblComent.Name = "lblComent";
244
            this.lblComent.Size = new System.Drawing.Size(496, 25);
244
            this.lblComent.Size = new System.Drawing.Size(560, 25);
245 245
            this.lblComent.TabIndex = 21;
246
            this.lblComent.Text = "※上記の該当工事名をクリックすると工事情報へ飛びます。";
246
            this.lblComent.Text = "※上記の該当工事名をクリックすると工事情報・関連画面へ飛びます。";
247 247
            this.lblComent.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
248 248
            this.lblComent.Visible = false;
249 249
            // 
branches/src/ProcessManagement/ProcessManagement/Forms/SubForms/FrmRequestPrint.cs
1764 1764
                        lAmount += ReqData.TaxAmount;
1765 1765
                        lAmount += ReqData.UnpaidAmount;
1766 1766

  
1767
                        ExcelPrnData.AddPrintData("D", trow, lAmount.ToString("#,0"));       // 請求金額
1767
                        ExcelPrnData.AddPrintData("D", trow, lAmount.ToString("#,0"));                                  // 請求金額
1768 1768

  
1769 1769
                        ExcelPrnData.AddPrintData("E", trow, ReqData.Note);                                             // 備考
1770 1770
                        ExcelPrnData.ExcelCellSet(m_UsedExcel);
branches/src/ProcessManagement/ProcessManagement/Forms/ZMenu/FrmMenu.Designer.cs
224 224
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
225 225
            System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
226 226
            System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series();
227
            System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series();
228
            System.Windows.Forms.DataVisualization.Charting.Series series6 = new System.Windows.Forms.DataVisualization.Charting.Series();
229
            System.Windows.Forms.DataVisualization.Charting.Series series7 = new System.Windows.Forms.DataVisualization.Charting.Series();
227 230
            this.lblTitle = new System.Windows.Forms.Label();
228 231
            this.btnEnd = new System.Windows.Forms.Button();
229 232
            this.tabMenu = new System.Windows.Forms.TabControl();
......
520 523
            this.StaffFixColumn05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
521 524
            this.StaffFixColumn06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
522 525
            this.tabPage14 = new System.Windows.Forms.TabPage();
526
            this.cmbDepartment = new System.Windows.Forms.ComboBox();
527
            this.label16 = new System.Windows.Forms.Label();
523 528
            this.label36 = new System.Windows.Forms.Label();
524 529
            this.SalseGraphNum = new System.Windows.Forms.NumericUpDown();
525 530
            this.label37 = new System.Windows.Forms.Label();
......
4750 4755
            // tabPage14
4751 4756
            // 
4752 4757
            this.tabPage14.BackColor = System.Drawing.Color.Black;
4758
            this.tabPage14.Controls.Add(this.cmbDepartment);
4759
            this.tabPage14.Controls.Add(this.label16);
4753 4760
            this.tabPage14.Controls.Add(this.label36);
4754 4761
            this.tabPage14.Controls.Add(this.SalseGraphNum);
4755 4762
            this.tabPage14.Controls.Add(this.label37);
......
4766 4773
            this.tabPage14.TabIndex = 10;
4767 4774
            this.tabPage14.Text = "売上グラフ";
4768 4775
            // 
4776
            // cmbDepartment
4777
            // 
4778
            this.cmbDepartment.BackColor = System.Drawing.Color.White;
4779
            this.cmbDepartment.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
4780
            this.cmbDepartment.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
4781
            this.cmbDepartment.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
4782
            this.cmbDepartment.FormattingEnabled = true;
4783
            this.cmbDepartment.Location = new System.Drawing.Point(874, 480);
4784
            this.cmbDepartment.Name = "cmbDepartment";
4785
            this.cmbDepartment.Size = new System.Drawing.Size(200, 24);
4786
            this.cmbDepartment.TabIndex = 62;
4787
            this.cmbDepartment.SelectedIndexChanged += new System.EventHandler(this.cmbDepartment_SelectedIndexChanged);
4788
            // 
4789
            // label16
4790
            // 
4791
            this.label16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
4792
            this.label16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
4793
            this.label16.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
4794
            this.label16.ForeColor = System.Drawing.Color.Black;
4795
            this.label16.Location = new System.Drawing.Point(746, 480);
4796
            this.label16.Name = "label16";
4797
            this.label16.Size = new System.Drawing.Size(120, 25);
4798
            this.label16.TabIndex = 63;
4799
            this.label16.Text = "部  署";
4800
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
4801
            // 
4769 4802
            // label36
4770 4803
            // 
4771 4804
            this.label36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
......
4840 4873
            series1.ChartArea = "ChartArea1";
4841 4874
            series1.Color = System.Drawing.Color.Lime;
4842 4875
            series1.Legend = "Legend1";
4843
            series1.Name = "売上";
4876
            series1.Name = "受注金額";
4844 4877
            series2.ChartArea = "ChartArea1";
4845 4878
            series2.Color = System.Drawing.Color.Yellow;
4846 4879
            series2.Legend = "Legend1";
4847
            series2.Name = "販管・部署経費";
4880
            series2.Name = "売上金額";
4848 4881
            series3.ChartArea = "ChartArea1";
4849 4882
            series3.Color = System.Drawing.Color.Cyan;
4850 4883
            series3.Legend = "Legend1";
4851
            series3.Name = "粗利益";
4884
            series3.Name = "会社経費";
4852 4885
            series4.ChartArea = "ChartArea1";
4853 4886
            series4.Color = System.Drawing.Color.Blue;
4854 4887
            series4.Legend = "Legend1";
4855
            series4.Name = "純利益(損益)";
4888
            series4.Name = "部署経費";
4889
            series5.ChartArea = "ChartArea1";
4890
            series5.Color = System.Drawing.Color.SkyBlue;
4891
            series5.Legend = "Legend1";
4892
            series5.Name = "営業経費";
4893
            series6.ChartArea = "ChartArea1";
4894
            series6.Color = System.Drawing.Color.NavajoWhite;
4895
            series6.Legend = "Legend1";
4896
            series6.Name = "粗利益";
4897
            series7.ChartArea = "ChartArea1";
4898
            series7.Color = System.Drawing.Color.Orange;
4899
            series7.Legend = "Legend1";
4900
            series7.Name = "純利益(損益)";
4856 4901
            this.chartSalesGraph.Series.Add(series1);
4857 4902
            this.chartSalesGraph.Series.Add(series2);
4858 4903
            this.chartSalesGraph.Series.Add(series3);
4859 4904
            this.chartSalesGraph.Series.Add(series4);
4905
            this.chartSalesGraph.Series.Add(series5);
4906
            this.chartSalesGraph.Series.Add(series6);
4907
            this.chartSalesGraph.Series.Add(series7);
4860 4908
            this.chartSalesGraph.Size = new System.Drawing.Size(1190, 444);
4861 4909
            this.chartSalesGraph.TabIndex = 0;
4862 4910
            this.chartSalesGraph.Text = "売上グラフ";
......
5458 5506
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5459 5507
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5460 5508
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5461
            this.tblLayoutConstruction.Size = new System.Drawing.Size(1160, 1224);
5509
            this.tblLayoutConstruction.Size = new System.Drawing.Size(1126, 1224);
5462 5510
            this.tblLayoutConstruction.TabIndex = 15;
5463 5511
            // 
5464 5512
            // lblConstrLine01
......
5468 5516
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstrLine01, 10);
5469 5517
            this.lblConstrLine01.Location = new System.Drawing.Point(3, 267);
5470 5518
            this.lblConstrLine01.Name = "lblConstrLine01";
5471
            this.lblConstrLine01.Size = new System.Drawing.Size(1154, 6);
5519
            this.lblConstrLine01.Size = new System.Drawing.Size(1120, 6);
5472 5520
            this.lblConstrLine01.TabIndex = 15;
5473 5521
            // 
5474 5522
            // btnConstruction0000
5475 5523
            // 
5476 5524
            this.btnConstruction0000.Dock = System.Windows.Forms.DockStyle.Fill;
5477
            this.btnConstruction0000.Location = new System.Drawing.Point(108, 39);
5525
            this.btnConstruction0000.Location = new System.Drawing.Point(105, 39);
5478 5526
            this.btnConstruction0000.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5479 5527
            this.btnConstruction0000.Name = "btnConstruction0000";
5480
            this.btnConstruction0000.Size = new System.Drawing.Size(189, 30);
5528
            this.btnConstruction0000.Size = new System.Drawing.Size(183, 30);
5481 5529
            this.btnConstruction0000.TabIndex = 15;
5482 5530
            this.btnConstruction0000.Text = "各工事詳細台帳閲覧";
5483 5531
            this.btnConstruction0000.UseVisualStyleBackColor = true;
......
5490 5538
            | System.Windows.Forms.AnchorStyles.Right)));
5491 5539
            this.lblConstrTitle01.AutoSize = true;
5492 5540
            this.lblConstrTitle01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5493
            this.lblConstrTitle01.Location = new System.Drawing.Point(107, 0);
5541
            this.lblConstrTitle01.Location = new System.Drawing.Point(104, 0);
5494 5542
            this.lblConstrTitle01.Name = "lblConstrTitle01";
5495
            this.lblConstrTitle01.Size = new System.Drawing.Size(191, 36);
5543
            this.lblConstrTitle01.Size = new System.Drawing.Size(185, 36);
5496 5544
            this.lblConstrTitle01.TabIndex = 15;
5497 5545
            this.lblConstrTitle01.Text = "日次(施工)管理";
5498 5546
            this.lblConstrTitle01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5506 5554
            this.lblConstr00.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5507 5555
            this.lblConstr00.Location = new System.Drawing.Point(3, 36);
5508 5556
            this.lblConstr00.Name = "lblConstr00";
5509
            this.lblConstr00.Size = new System.Drawing.Size(98, 36);
5557
            this.lblConstr00.Size = new System.Drawing.Size(95, 36);
5510 5558
            this.lblConstr00.TabIndex = 15;
5511 5559
            this.lblConstr00.Text = "毎日";
5512 5560
            this.lblConstr00.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5514 5562
            // btnConstruction0001
5515 5563
            // 
5516 5564
            this.btnConstruction0001.Dock = System.Windows.Forms.DockStyle.Fill;
5517
            this.btnConstruction0001.Location = new System.Drawing.Point(322, 39);
5565
            this.btnConstruction0001.Location = new System.Drawing.Point(312, 39);
5518 5566
            this.btnConstruction0001.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5519 5567
            this.btnConstruction0001.Name = "btnConstruction0001";
5520
            this.btnConstruction0001.Size = new System.Drawing.Size(189, 30);
5568
            this.btnConstruction0001.Size = new System.Drawing.Size(183, 30);
5521 5569
            this.btnConstruction0001.TabIndex = 15;
5522 5570
            this.btnConstruction0001.Text = "各工事日報";
5523 5571
            this.btnConstruction0001.UseVisualStyleBackColor = true;
......
5526 5574
            // btnConstruction0002
5527 5575
            // 
5528 5576
            this.btnConstruction0002.Dock = System.Windows.Forms.DockStyle.Fill;
5529
            this.btnConstruction0002.Location = new System.Drawing.Point(536, 39);
5577
            this.btnConstruction0002.Location = new System.Drawing.Point(519, 39);
5530 5578
            this.btnConstruction0002.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5531 5579
            this.btnConstruction0002.Name = "btnConstruction0002";
5532
            this.btnConstruction0002.Size = new System.Drawing.Size(189, 30);
5580
            this.btnConstruction0002.Size = new System.Drawing.Size(183, 30);
5533 5581
            this.btnConstruction0002.TabIndex = 15;
5534 5582
            this.btnConstruction0002.Text = "各工事打合わせ議事録";
5535 5583
            this.btnConstruction0002.UseVisualStyleBackColor = true;
......
5538 5586
            // btnConstruction0003
5539 5587
            // 
5540 5588
            this.btnConstruction0003.Dock = System.Windows.Forms.DockStyle.Fill;
5541
            this.btnConstruction0003.Location = new System.Drawing.Point(750, 39);
5589
            this.btnConstruction0003.Location = new System.Drawing.Point(726, 39);
5542 5590
            this.btnConstruction0003.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5543 5591
            this.btnConstruction0003.Name = "btnConstruction0003";
5544
            this.btnConstruction0003.Size = new System.Drawing.Size(189, 30);
5592
            this.btnConstruction0003.Size = new System.Drawing.Size(183, 30);
5545 5593
            this.btnConstruction0003.TabIndex = 15;
5546 5594
            this.btnConstruction0003.Text = "各工事交通費・購入品入力";
5547 5595
            this.btnConstruction0003.UseVisualStyleBackColor = true;
......
5550 5598
            // btnConstruction0004
5551 5599
            // 
5552 5600
            this.btnConstruction0004.Dock = System.Windows.Forms.DockStyle.Fill;
5553
            this.btnConstruction0004.Location = new System.Drawing.Point(964, 39);
5601
            this.btnConstruction0004.Location = new System.Drawing.Point(933, 39);
5554 5602
            this.btnConstruction0004.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5555 5603
            this.btnConstruction0004.Name = "btnConstruction0004";
5556
            this.btnConstruction0004.Size = new System.Drawing.Size(192, 30);
5604
            this.btnConstruction0004.Size = new System.Drawing.Size(189, 30);
5557 5605
            this.btnConstruction0004.TabIndex = 15;
5558 5606
            this.btnConstruction0004.Text = "出勤管理";
5559 5607
            this.btnConstruction0004.UseVisualStyleBackColor = true;
......
5562 5610
            // btnConstruction0100
5563 5611
            // 
5564 5612
            this.btnConstruction0100.Dock = System.Windows.Forms.DockStyle.Fill;
5565
            this.btnConstruction0100.Location = new System.Drawing.Point(108, 111);
5613
            this.btnConstruction0100.Location = new System.Drawing.Point(105, 111);
5566 5614
            this.btnConstruction0100.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5567 5615
            this.btnConstruction0100.Name = "btnConstruction0100";
5568
            this.btnConstruction0100.Size = new System.Drawing.Size(189, 30);
5616
            this.btnConstruction0100.Size = new System.Drawing.Size(183, 30);
5569 5617
            this.btnConstruction0100.TabIndex = 15;
5570 5618
            this.btnConstruction0100.Text = "行動予定入力";
5571 5619
            this.btnConstruction0100.UseVisualStyleBackColor = true;
......
5574 5622
            // btnConstruction0101
5575 5623
            // 
5576 5624
            this.btnConstruction0101.Dock = System.Windows.Forms.DockStyle.Fill;
5577
            this.btnConstruction0101.Location = new System.Drawing.Point(322, 111);
5625
            this.btnConstruction0101.Location = new System.Drawing.Point(312, 111);
5578 5626
            this.btnConstruction0101.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5579 5627
            this.btnConstruction0101.Name = "btnConstruction0101";
5580
            this.btnConstruction0101.Size = new System.Drawing.Size(189, 30);
5628
            this.btnConstruction0101.Size = new System.Drawing.Size(183, 30);
5581 5629
            this.btnConstruction0101.TabIndex = 15;
5582 5630
            this.btnConstruction0101.Text = "車両予約";
5583 5631
            this.btnConstruction0101.UseVisualStyleBackColor = true;
......
5592 5640
            this.lblConstr01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5593 5641
            this.lblConstr01.Location = new System.Drawing.Point(3, 108);
5594 5642
            this.lblConstr01.Name = "lblConstr01";
5595
            this.lblConstr01.Size = new System.Drawing.Size(98, 36);
5643
            this.lblConstr01.Size = new System.Drawing.Size(95, 36);
5596 5644
            this.lblConstr01.TabIndex = 15;
5597 5645
            this.lblConstr01.Text = "毎日";
5598 5646
            this.lblConstr01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5600 5648
            // btnConstruction0102
5601 5649
            // 
5602 5650
            this.btnConstruction0102.Dock = System.Windows.Forms.DockStyle.Fill;
5603
            this.btnConstruction0102.Location = new System.Drawing.Point(536, 111);
5651
            this.btnConstruction0102.Location = new System.Drawing.Point(519, 111);
5604 5652
            this.btnConstruction0102.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5605 5653
            this.btnConstruction0102.Name = "btnConstruction0102";
5606
            this.btnConstruction0102.Size = new System.Drawing.Size(189, 30);
5654
            this.btnConstruction0102.Size = new System.Drawing.Size(183, 30);
5607 5655
            this.btnConstruction0102.TabIndex = 15;
5608 5656
            this.btnConstruction0102.UseVisualStyleBackColor = true;
5609 5657
            this.btnConstruction0102.Click += new System.EventHandler(this.btnConstruction_Click);
......
5611 5659
            // btnConstruction0103
5612 5660
            // 
5613 5661
            this.btnConstruction0103.Dock = System.Windows.Forms.DockStyle.Fill;
5614
            this.btnConstruction0103.Location = new System.Drawing.Point(750, 111);
5662
            this.btnConstruction0103.Location = new System.Drawing.Point(726, 111);
5615 5663
            this.btnConstruction0103.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5616 5664
            this.btnConstruction0103.Name = "btnConstruction0103";
5617
            this.btnConstruction0103.Size = new System.Drawing.Size(189, 30);
5665
            this.btnConstruction0103.Size = new System.Drawing.Size(183, 30);
5618 5666
            this.btnConstruction0103.TabIndex = 15;
5619 5667
            this.btnConstruction0103.UseVisualStyleBackColor = true;
5620 5668
            this.btnConstruction0103.Click += new System.EventHandler(this.btnConstruction_Click);
......
5622 5670
            // btnConstruction0104
5623 5671
            // 
5624 5672
            this.btnConstruction0104.Dock = System.Windows.Forms.DockStyle.Fill;
5625
            this.btnConstruction0104.Location = new System.Drawing.Point(964, 111);
5673
            this.btnConstruction0104.Location = new System.Drawing.Point(933, 111);
5626 5674
            this.btnConstruction0104.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5627 5675
            this.btnConstruction0104.Name = "btnConstruction0104";
5628
            this.btnConstruction0104.Size = new System.Drawing.Size(192, 30);
5676
            this.btnConstruction0104.Size = new System.Drawing.Size(189, 30);
5629 5677
            this.btnConstruction0104.TabIndex = 15;
5630 5678
            this.btnConstruction0104.UseVisualStyleBackColor = true;
5631 5679
            this.btnConstruction0104.Click += new System.EventHandler(this.btnConstruction_Click);
......
5639 5687
            this.lblConstr02.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5640 5688
            this.lblConstr02.Location = new System.Drawing.Point(3, 180);
5641 5689
            this.lblConstr02.Name = "lblConstr02";
5642
            this.lblConstr02.Size = new System.Drawing.Size(98, 36);
5690
            this.lblConstr02.Size = new System.Drawing.Size(95, 36);
5643 5691
            this.lblConstr02.TabIndex = 15;
5644 5692
            this.lblConstr02.Text = "毎回";
5645 5693
            this.lblConstr02.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5647 5695
            // btnConstruction0200
5648 5696
            // 
5649 5697
            this.btnConstruction0200.Dock = System.Windows.Forms.DockStyle.Fill;
5650
            this.btnConstruction0200.Location = new System.Drawing.Point(108, 183);
5698
            this.btnConstruction0200.Location = new System.Drawing.Point(105, 183);
5651 5699
            this.btnConstruction0200.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5652 5700
            this.btnConstruction0200.Name = "btnConstruction0200";
5653
            this.btnConstruction0200.Size = new System.Drawing.Size(189, 30);
5701
            this.btnConstruction0200.Size = new System.Drawing.Size(183, 30);
5654 5702
            this.btnConstruction0200.TabIndex = 15;
5655 5703
            this.btnConstruction0200.Text = "資材一覧";
5656 5704
            this.btnConstruction0200.UseVisualStyleBackColor = true;
......
5659 5707
            // btnConstruction0201
5660 5708
            // 
5661 5709
            this.btnConstruction0201.Dock = System.Windows.Forms.DockStyle.Fill;
5662
            this.btnConstruction0201.Location = new System.Drawing.Point(322, 183);
5710
            this.btnConstruction0201.Location = new System.Drawing.Point(312, 183);
5663 5711
            this.btnConstruction0201.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5664 5712
            this.btnConstruction0201.Name = "btnConstruction0201";
5665
            this.btnConstruction0201.Size = new System.Drawing.Size(189, 30);
5713
            this.btnConstruction0201.Size = new System.Drawing.Size(183, 30);
5666 5714
            this.btnConstruction0201.TabIndex = 15;
5667 5715
            this.btnConstruction0201.Text = "資材貸出";
5668 5716
            this.btnConstruction0201.UseVisualStyleBackColor = true;
......
5671 5719
            // btnConstruction0202
5672 5720
            // 
5673 5721
            this.btnConstruction0202.Dock = System.Windows.Forms.DockStyle.Fill;
5674
            this.btnConstruction0202.Location = new System.Drawing.Point(536, 183);
5722
            this.btnConstruction0202.Location = new System.Drawing.Point(519, 183);
5675 5723
            this.btnConstruction0202.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5676 5724
            this.btnConstruction0202.Name = "btnConstruction0202";
5677
            this.btnConstruction0202.Size = new System.Drawing.Size(189, 30);
5725
            this.btnConstruction0202.Size = new System.Drawing.Size(183, 30);
5678 5726
            this.btnConstruction0202.TabIndex = 15;
5679 5727
            this.btnConstruction0202.Text = "資材返却";
5680 5728
            this.btnConstruction0202.UseVisualStyleBackColor = true;
......
5683 5731
            // btnConstruction0203
5684 5732
            // 
5685 5733
            this.btnConstruction0203.Dock = System.Windows.Forms.DockStyle.Fill;
5686
            this.btnConstruction0203.Location = new System.Drawing.Point(750, 183);
5734
            this.btnConstruction0203.Location = new System.Drawing.Point(726, 183);
5687 5735
            this.btnConstruction0203.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5688 5736
            this.btnConstruction0203.Name = "btnConstruction0203";
5689
            this.btnConstruction0203.Size = new System.Drawing.Size(189, 30);
5737
            this.btnConstruction0203.Size = new System.Drawing.Size(183, 30);
5690 5738
            this.btnConstruction0203.TabIndex = 15;
5691 5739
            this.btnConstruction0203.UseVisualStyleBackColor = true;
5692 5740
            this.btnConstruction0203.Click += new System.EventHandler(this.btnConstruction_Click);
......
5694 5742
            // btnConstruction0204
5695 5743
            // 
5696 5744
            this.btnConstruction0204.Dock = System.Windows.Forms.DockStyle.Fill;
5697
            this.btnConstruction0204.Location = new System.Drawing.Point(964, 183);
5745
            this.btnConstruction0204.Location = new System.Drawing.Point(933, 183);
5698 5746
            this.btnConstruction0204.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5699 5747
            this.btnConstruction0204.Name = "btnConstruction0204";
5700
            this.btnConstruction0204.Size = new System.Drawing.Size(192, 30);
5748
            this.btnConstruction0204.Size = new System.Drawing.Size(189, 30);
5701 5749
            this.btnConstruction0204.TabIndex = 15;
5702 5750
            this.btnConstruction0204.UseVisualStyleBackColor = true;
5703 5751
            this.btnConstruction0204.Click += new System.EventHandler(this.btnConstruction_Click);
......
5711 5759
            this.lblConstr03.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5712 5760
            this.lblConstr03.Location = new System.Drawing.Point(3, 324);
5713 5761
            this.lblConstr03.Name = "lblConstr03";
5714
            this.lblConstr03.Size = new System.Drawing.Size(98, 36);
5762
            this.lblConstr03.Size = new System.Drawing.Size(95, 36);
5715 5763
            this.lblConstr03.TabIndex = 15;
5716 5764
            this.lblConstr03.Text = "着工前";
5717 5765
            this.lblConstr03.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5723 5771
            | System.Windows.Forms.AnchorStyles.Right)));
5724 5772
            this.lblConstrTitle02.AutoSize = true;
5725 5773
            this.lblConstrTitle02.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5726
            this.lblConstrTitle02.Location = new System.Drawing.Point(107, 288);
5774
            this.lblConstrTitle02.Location = new System.Drawing.Point(104, 288);
5727 5775
            this.lblConstrTitle02.Name = "lblConstrTitle02";
5728
            this.lblConstrTitle02.Size = new System.Drawing.Size(191, 36);
5776
            this.lblConstrTitle02.Size = new System.Drawing.Size(185, 36);
5729 5777
            this.lblConstrTitle02.TabIndex = 15;
5730 5778
            this.lblConstrTitle02.Text = "書類管理";
5731 5779
            this.lblConstrTitle02.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5733 5781
            // btnConstruction0300
5734 5782
            // 
5735 5783
            this.btnConstruction0300.Dock = System.Windows.Forms.DockStyle.Fill;
5736
            this.btnConstruction0300.Location = new System.Drawing.Point(108, 327);
5784
            this.btnConstruction0300.Location = new System.Drawing.Point(105, 327);
5737 5785
            this.btnConstruction0300.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5738 5786
            this.btnConstruction0300.Name = "btnConstruction0300";
5739
            this.btnConstruction0300.Size = new System.Drawing.Size(189, 30);
5787
            this.btnConstruction0300.Size = new System.Drawing.Size(183, 30);
5740 5788
            this.btnConstruction0300.TabIndex = 15;
5741 5789
            this.btnConstruction0300.Text = "工事予算書作成";
5742 5790
            this.btnConstruction0300.UseVisualStyleBackColor = true;
......
5745 5793
            // btnConstruction0301
5746 5794
            // 
5747 5795
            this.btnConstruction0301.Dock = System.Windows.Forms.DockStyle.Fill;
5748
            this.btnConstruction0301.Location = new System.Drawing.Point(322, 327);
5796
            this.btnConstruction0301.Location = new System.Drawing.Point(312, 327);
5749 5797
            this.btnConstruction0301.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5750 5798
            this.btnConstruction0301.Name = "btnConstruction0301";
5751
            this.btnConstruction0301.Size = new System.Drawing.Size(189, 30);
5799
            this.btnConstruction0301.Size = new System.Drawing.Size(183, 30);
5752 5800
            this.btnConstruction0301.TabIndex = 15;
5753 5801
            this.btnConstruction0301.Text = "工事予算書承認";
5754 5802
            this.btnConstruction0301.UseVisualStyleBackColor = true;
......
5757 5805
            // btnConstruction0302
5758 5806
            // 
5759 5807
            this.btnConstruction0302.Dock = System.Windows.Forms.DockStyle.Fill;
5760
            this.btnConstruction0302.Location = new System.Drawing.Point(536, 327);
5808
            this.btnConstruction0302.Location = new System.Drawing.Point(519, 327);
5761 5809
            this.btnConstruction0302.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5762 5810
            this.btnConstruction0302.Name = "btnConstruction0302";
5763
            this.btnConstruction0302.Size = new System.Drawing.Size(189, 30);
5811
            this.btnConstruction0302.Size = new System.Drawing.Size(183, 30);
5764 5812
            this.btnConstruction0302.TabIndex = 15;
5765 5813
            this.btnConstruction0302.UseVisualStyleBackColor = true;
5766 5814
            this.btnConstruction0302.Click += new System.EventHandler(this.btnConstruction_Click);
......
5768 5816
            // btnConstruction0303
5769 5817
            // 
5770 5818
            this.btnConstruction0303.Dock = System.Windows.Forms.DockStyle.Fill;
5771
            this.btnConstruction0303.Location = new System.Drawing.Point(750, 327);
5819
            this.btnConstruction0303.Location = new System.Drawing.Point(726, 327);
5772 5820
            this.btnConstruction0303.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5773 5821
            this.btnConstruction0303.Name = "btnConstruction0303";
5774
            this.btnConstruction0303.Size = new System.Drawing.Size(189, 30);
5822
            this.btnConstruction0303.Size = new System.Drawing.Size(183, 30);
5775 5823
            this.btnConstruction0303.TabIndex = 15;
5776 5824
            this.btnConstruction0303.UseVisualStyleBackColor = true;
5777 5825
            this.btnConstruction0303.Click += new System.EventHandler(this.btnConstruction_Click);
......
5779 5827
            // btnConstruction0304
5780 5828
            // 
5781 5829
            this.btnConstruction0304.Dock = System.Windows.Forms.DockStyle.Fill;
5782
            this.btnConstruction0304.Location = new System.Drawing.Point(964, 327);
5830
            this.btnConstruction0304.Location = new System.Drawing.Point(933, 327);
5783 5831
            this.btnConstruction0304.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5784 5832
            this.btnConstruction0304.Name = "btnConstruction0304";
5785
            this.btnConstruction0304.Size = new System.Drawing.Size(192, 30);
5833
            this.btnConstruction0304.Size = new System.Drawing.Size(189, 30);
5786 5834
            this.btnConstruction0304.TabIndex = 15;
5787 5835
            this.btnConstruction0304.UseVisualStyleBackColor = true;
5788 5836
            this.btnConstruction0304.Click += new System.EventHandler(this.btnConstruction_Click);
......
5796 5844
            this.lblConstr04.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5797 5845
            this.lblConstr04.Location = new System.Drawing.Point(3, 396);
5798 5846
            this.lblConstr04.Name = "lblConstr04";
5799
            this.lblConstr04.Size = new System.Drawing.Size(98, 36);
5847
            this.lblConstr04.Size = new System.Drawing.Size(95, 36);
5800 5848
            this.lblConstr04.TabIndex = 15;
5801 5849
            this.lblConstr04.Text = "着工前";
5802 5850
            this.lblConstr04.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5804 5852
            // btnConstruction0400
5805 5853
            // 
5806 5854
            this.btnConstruction0400.Dock = System.Windows.Forms.DockStyle.Fill;
5807
            this.btnConstruction0400.Location = new System.Drawing.Point(108, 399);
5855
            this.btnConstruction0400.Location = new System.Drawing.Point(105, 399);
5808 5856
            this.btnConstruction0400.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5809 5857
            this.btnConstruction0400.Name = "btnConstruction0400";
5810
            this.btnConstruction0400.Size = new System.Drawing.Size(189, 30);
5858
            this.btnConstruction0400.Size = new System.Drawing.Size(183, 30);
5811 5859
            this.btnConstruction0400.TabIndex = 15;
5812 5860
            this.btnConstruction0400.Text = "注文書作成";
5813 5861
            this.btnConstruction0400.UseVisualStyleBackColor = true;
......
5816 5864
            // btnConstruction0401
5817 5865
            // 
5818 5866
            this.btnConstruction0401.Dock = System.Windows.Forms.DockStyle.Fill;
5819
            this.btnConstruction0401.Location = new System.Drawing.Point(322, 399);
5867
            this.btnConstruction0401.Location = new System.Drawing.Point(312, 399);
5820 5868
            this.btnConstruction0401.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5821 5869
            this.btnConstruction0401.Name = "btnConstruction0401";
5822
            this.btnConstruction0401.Size = new System.Drawing.Size(189, 30);
5870
            this.btnConstruction0401.Size = new System.Drawing.Size(183, 30);
5823 5871
            this.btnConstruction0401.TabIndex = 15;
5824 5872
            this.btnConstruction0401.Text = "注文書承認";
5825 5873
            this.btnConstruction0401.UseVisualStyleBackColor = true;
......
5828 5876
            // btnConstruction0402
5829 5877
            // 
5830 5878
            this.btnConstruction0402.Dock = System.Windows.Forms.DockStyle.Fill;
5831
            this.btnConstruction0402.Location = new System.Drawing.Point(536, 399);
5879
            this.btnConstruction0402.Location = new System.Drawing.Point(519, 399);
5832 5880
            this.btnConstruction0402.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5833 5881
            this.btnConstruction0402.Name = "btnConstruction0402";
5834
            this.btnConstruction0402.Size = new System.Drawing.Size(189, 30);
5882
            this.btnConstruction0402.Size = new System.Drawing.Size(183, 30);
5835 5883
            this.btnConstruction0402.TabIndex = 15;
5836 5884
            this.btnConstruction0402.Text = "注文書状況確認";
5837 5885
            this.btnConstruction0402.UseVisualStyleBackColor = true;
......
5840 5888
            // btnConstruction0403
5841 5889
            // 
5842 5890
            this.btnConstruction0403.Dock = System.Windows.Forms.DockStyle.Fill;
5843
            this.btnConstruction0403.Location = new System.Drawing.Point(750, 399);
5891
            this.btnConstruction0403.Location = new System.Drawing.Point(726, 399);
5844 5892
            this.btnConstruction0403.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5845 5893
            this.btnConstruction0403.Name = "btnConstruction0403";
5846
            this.btnConstruction0403.Size = new System.Drawing.Size(189, 30);
5894
            this.btnConstruction0403.Size = new System.Drawing.Size(183, 30);
5847 5895
            this.btnConstruction0403.TabIndex = 15;
5848 5896
            this.btnConstruction0403.UseVisualStyleBackColor = true;
5849 5897
            this.btnConstruction0403.Click += new System.EventHandler(this.btnConstruction_Click);
......
5851 5899
            // btnConstruction0404
5852 5900
            // 
5853 5901
            this.btnConstruction0404.Dock = System.Windows.Forms.DockStyle.Fill;
5854
            this.btnConstruction0404.Location = new System.Drawing.Point(964, 399);
5902
            this.btnConstruction0404.Location = new System.Drawing.Point(933, 399);
5855 5903
            this.btnConstruction0404.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5856 5904
            this.btnConstruction0404.Name = "btnConstruction0404";
5857
            this.btnConstruction0404.Size = new System.Drawing.Size(192, 30);
5905
            this.btnConstruction0404.Size = new System.Drawing.Size(189, 30);
5858 5906
            this.btnConstruction0404.TabIndex = 15;
5859 5907
            this.btnConstruction0404.UseVisualStyleBackColor = true;
5860 5908
            this.btnConstruction0404.Click += new System.EventHandler(this.btnConstruction_Click);
......
5868 5916
            this.lblConstr05.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5869 5917
            this.lblConstr05.Location = new System.Drawing.Point(3, 468);
5870 5918
            this.lblConstr05.Name = "lblConstr05";
5871
            this.lblConstr05.Size = new System.Drawing.Size(98, 36);
5919
            this.lblConstr05.Size = new System.Drawing.Size(95, 36);
5872 5920
            this.lblConstr05.TabIndex = 15;
5873 5921
            this.lblConstr05.Text = "着工前";
5874 5922
            this.lblConstr05.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5876 5924
            // btnConstruction0500
5877 5925
            // 
5878 5926
            this.btnConstruction0500.Dock = System.Windows.Forms.DockStyle.Fill;
5879
            this.btnConstruction0500.Location = new System.Drawing.Point(108, 471);
5927
            this.btnConstruction0500.Location = new System.Drawing.Point(105, 471);
5880 5928
            this.btnConstruction0500.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5881 5929
            this.btnConstruction0500.Name = "btnConstruction0500";
5882
            this.btnConstruction0500.Size = new System.Drawing.Size(189, 30);
5930
            this.btnConstruction0500.Size = new System.Drawing.Size(183, 30);
5883 5931
            this.btnConstruction0500.TabIndex = 15;
5884 5932
            this.btnConstruction0500.Text = "工程表作成・印刷";
5885 5933
            this.btnConstruction0500.UseVisualStyleBackColor = true;
......
5888 5936
            // btnConstruction0501
5889 5937
            // 
5890 5938
            this.btnConstruction0501.Dock = System.Windows.Forms.DockStyle.Fill;
5891
            this.btnConstruction0501.Location = new System.Drawing.Point(322, 471);
5939
            this.btnConstruction0501.Location = new System.Drawing.Point(312, 471);
5892 5940
            this.btnConstruction0501.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5893 5941
            this.btnConstruction0501.Name = "btnConstruction0501";
5894
            this.btnConstruction0501.Size = new System.Drawing.Size(189, 30);
5942
            this.btnConstruction0501.Size = new System.Drawing.Size(183, 30);
5895 5943
            this.btnConstruction0501.TabIndex = 15;
5896 5944
            this.btnConstruction0501.Text = "施工計画書作成・印刷";
5897 5945
            this.btnConstruction0501.UseVisualStyleBackColor = true;
......
5900 5948
            // btnConstruction0502
5901 5949
            // 
5902 5950
            this.btnConstruction0502.Dock = System.Windows.Forms.DockStyle.Fill;
5903
            this.btnConstruction0502.Location = new System.Drawing.Point(536, 471);
5951
            this.btnConstruction0502.Location = new System.Drawing.Point(519, 471);
5904 5952
            this.btnConstruction0502.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5905 5953
            this.btnConstruction0502.Name = "btnConstruction0502";
5906
            this.btnConstruction0502.Size = new System.Drawing.Size(189, 30);
5954
            this.btnConstruction0502.Size = new System.Drawing.Size(183, 30);
5907 5955
            this.btnConstruction0502.TabIndex = 15;
5908 5956
            this.btnConstruction0502.Text = "施工体制台帳作成・印刷";
5909 5957
            this.btnConstruction0502.UseVisualStyleBackColor = true;
......
5912 5960
            // btnConstruction0503
5913 5961
            // 
5914 5962
            this.btnConstruction0503.Dock = System.Windows.Forms.DockStyle.Fill;
5915
            this.btnConstruction0503.Location = new System.Drawing.Point(750, 471);
5963
            this.btnConstruction0503.Location = new System.Drawing.Point(726, 471);
5916 5964
            this.btnConstruction0503.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5917 5965
            this.btnConstruction0503.Name = "btnConstruction0503";
5918
            this.btnConstruction0503.Size = new System.Drawing.Size(189, 30);
5966
            this.btnConstruction0503.Size = new System.Drawing.Size(183, 30);
5919 5967
            this.btnConstruction0503.TabIndex = 15;
5920 5968
            this.btnConstruction0503.UseVisualStyleBackColor = true;
5921 5969
            this.btnConstruction0503.Click += new System.EventHandler(this.btnConstruction_Click);
......
5923 5971
            // btnConstruction0504
5924 5972
            // 
5925 5973
            this.btnConstruction0504.Dock = System.Windows.Forms.DockStyle.Fill;
5926
            this.btnConstruction0504.Location = new System.Drawing.Point(964, 471);
5974
            this.btnConstruction0504.Location = new System.Drawing.Point(933, 471);
5927 5975
            this.btnConstruction0504.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5928 5976
            this.btnConstruction0504.Name = "btnConstruction0504";
5929
            this.btnConstruction0504.Size = new System.Drawing.Size(192, 30);
5977
            this.btnConstruction0504.Size = new System.Drawing.Size(189, 30);
5930 5978
            this.btnConstruction0504.TabIndex = 15;
5931 5979
            this.btnConstruction0504.UseVisualStyleBackColor = true;
5932 5980
            this.btnConstruction0504.Click += new System.EventHandler(this.btnConstruction_Click);
......
5940 5988
            this.lblConstr06.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5941 5989
            this.lblConstr06.Location = new System.Drawing.Point(3, 540);
5942 5990
            this.lblConstr06.Name = "lblConstr06";
5943
            this.lblConstr06.Size = new System.Drawing.Size(98, 36);
5991
            this.lblConstr06.Size = new System.Drawing.Size(95, 36);
5944 5992
            this.lblConstr06.TabIndex = 15;
5945 5993
            this.lblConstr06.Text = "着工前・中";
5946 5994
            this.lblConstr06.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5948 5996
            // btnConstruction0600
5949 5997
            // 
5950 5998
            this.btnConstruction0600.Dock = System.Windows.Forms.DockStyle.Fill;
5951
            this.btnConstruction0600.Location = new System.Drawing.Point(108, 543);
5999
            this.btnConstruction0600.Location = new System.Drawing.Point(105, 543);
5952 6000
            this.btnConstruction0600.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5953 6001
            this.btnConstruction0600.Name = "btnConstruction0600";
5954
            this.btnConstruction0600.Size = new System.Drawing.Size(189, 30);
6002
            this.btnConstruction0600.Size = new System.Drawing.Size(183, 30);
5955 6003
            this.btnConstruction0600.TabIndex = 15;
5956 6004
            this.btnConstruction0600.Text = "工事施工図承諾願い";
5957 6005
            this.btnConstruction0600.UseVisualStyleBackColor = true;
......
5960 6008
            // btnConstruction0601
5961 6009
            // 
5962 6010
            this.btnConstruction0601.Dock = System.Windows.Forms.DockStyle.Fill;
5963
            this.btnConstruction0601.Location = new System.Drawing.Point(322, 543);
6011
            this.btnConstruction0601.Location = new System.Drawing.Point(312, 543);
5964 6012
            this.btnConstruction0601.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5965 6013
            this.btnConstruction0601.Name = "btnConstruction0601";
5966
            this.btnConstruction0601.Size = new System.Drawing.Size(189, 30);
6014
            this.btnConstruction0601.Size = new System.Drawing.Size(183, 30);
5967 6015
            this.btnConstruction0601.TabIndex = 15;
5968 6016
            this.btnConstruction0601.Text = "工事使用材料承諾願い";
5969 6017
            this.btnConstruction0601.UseVisualStyleBackColor = true;
......
5972 6020
            // btnConstruction0602
5973 6021
            // 
5974 6022
            this.btnConstruction0602.Dock = System.Windows.Forms.DockStyle.Fill;
5975
            this.btnConstruction0602.Location = new System.Drawing.Point(536, 543);
6023
            this.btnConstruction0602.Location = new System.Drawing.Point(519, 543);
5976 6024
            this.btnConstruction0602.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5977 6025
            this.btnConstruction0602.Name = "btnConstruction0602";
5978
            this.btnConstruction0602.Size = new System.Drawing.Size(189, 30);
6026
            this.btnConstruction0602.Size = new System.Drawing.Size(183, 30);
5979 6027
            this.btnConstruction0602.TabIndex = 15;
5980 6028
            this.btnConstruction0602.Text = "安全パトロール申請";
5981 6029
            this.btnConstruction0602.UseVisualStyleBackColor = true;
......
5984 6032
            // btnConstruction0603
5985 6033
            // 
5986 6034
            this.btnConstruction0603.Dock = System.Windows.Forms.DockStyle.Fill;
5987
            this.btnConstruction0603.Location = new System.Drawing.Point(750, 543);
6035
            this.btnConstruction0603.Location = new System.Drawing.Point(726, 543);
5988 6036
            this.btnConstruction0603.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5989 6037
            this.btnConstruction0603.Name = "btnConstruction0603";
5990
            this.btnConstruction0603.Size = new System.Drawing.Size(189, 30);
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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