プロジェクト

全般

プロフィール

リビジョン 386

堀内6年以上前に追加

メニュータイトル修正
承認時掲示板メッセージバグ修正

差分を表示:

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

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
trunk/src/ProcessManagement/ProcessManagement/Common/Process/ClsCommonApproval.cs
147 147
        /// 案件の承認申請・承認をする(工事承認)
148 148
        /// </summary>
149 149
        /// <returns>成功:true 失敗:false</returns>
150
        public static bool CreatePetitionApproval(ProcessApproval Rec)
150
        public static bool MakeApprovalRowData(ProcessApproval Rec, object[] MsgObj)
151 151
        {
152 152
            IOProcessApproval ApprDB = new IOProcessApproval();
153 153
            try
154 154
            {
155
                string strSQL = ApprDB.CreatePrimarykeyString(Rec.ConstructionCode, Rec.ApprovalCode, Rec.OrderNo, Rec.SeqNo);
156
                List<ProcessApproval> DataList = new List<ProcessApproval>();
157
                // データがあるかをチェックする
158
                if (!ApprDB.SelectAction(strSQL, ref DataList)) return false;
155
                StringBuilder strSQL = new StringBuilder();
156
                // 申請レコードのチェック
157
                strSQL.Append(ApprDB.CreatePrimarykeyString(Rec.ConstructionCode, Rec.ApprovalCode, Rec.OrderNo));
158
                strSQL.AppendFormat(" And SeqNo in (1, {0})", Rec.SeqNo);
159
                List<ProcessApproval> FirstList = new List<ProcessApproval>();
160
                if (!ApprDB.SelectAction(strSQL.ToString(), ref FirstList)) return false;
159 161

  
160
                // データ追加時
161
                if (DataList.Count == 0)
162
                if (Rec.ApprovalStatus != (int)CommonDefine.ApprovalStatus.Petition)
162 163
                {
163
                    if (!ApprDB.InsertAction(Rec)) return false;
164
                    return true;
164
                    // 承認時に申請データが無ければ処理しない
165
                    bool bExists = false;
166
                    foreach (ProcessApproval CurRec in FirstList)
167
                    {
168
                        // 申請データはSeqNoが1
169
                        if (CurRec.SeqNo == 1)
170
                        {
171
                            bExists = true;
172
                            break;
173
                        }
174
                    }
175
                    if (!bExists) return false;
165 176
                }
166 177

  
167
                // データ更新時
168
                if (!ApprDB.UpdateAction(strSQL, Rec)) return false;
178
                bool bUpdate = false;
179
                foreach (ProcessApproval CurRec in FirstList)
180
                {
181
                    // 承認データがあるかをチェックする
182
                    if (CurRec.SeqNo == Rec.SeqNo)
183
                    {
184
                        bUpdate = true;
185
                        break;
186
                    }
187
                }
169 188

  
189
                ApprDB.connect(); ApprDB.beginTran();
190
                // 承認時データが無ければ追加、あれば更新
191
                if (!bUpdate)
192
                {
193
                    // データ追加時
194
                    if (!ApprDB.InsertAction(Rec, false)) return false;
195
                }
196
                else
197
                {
198
                    strSQL.Clear();
199
                    strSQL.Append(ApprDB.CreatePrimarykeyString(Rec.ConstructionCode, Rec.ApprovalCode, Rec.OrderNo, Rec.SeqNo));
200
                    // データ更新時
201
                    if (!ApprDB.UpdateAction(strSQL.ToString(), Rec, false)) return false;
202
                }
203

  
204
                // 掲示板メッセージ作成
205
                if (!MessageBoardEntry(MsgObj))
206
                {
207
                    ApprDB.rollback();
208
                    return false;
209
                }
210

  
211
                ApprDB.commit();
212

  
170 213
                return true;
171 214
            }
172 215
            catch (Exception ex)
......
1402 1445
        }
1403 1446
        #endregion
1404 1447
        #endregion << ---------- プロセス画面承認パネル制御
1448

  
1449
        #region << ---------- メッセージデータ作成
1450
        public enum MsgObjOrder
1451
        {
1452
            /// <summary>
1453
            /// 工事番号
1454
            /// </summary>
1455
            ConstructionCode = 0,
1456
            /// <summary>
1457
            /// 承認番号
1458
            /// </summary>
1459
            ApprovalCode,
1460
            /// <summary>
1461
            /// 受付番号
1462
            /// </summary>
1463
            OrderNo,
1464
            /// <summary>
1465
            /// 承認状態フラグ
1466
            /// </summary>
1467
            StatusFlg,
1468
            /// <summary>
1469
            /// 工事名称
1470
            /// </summary>
1471
            ConstructionName,
1472
        }
1473

  
1474
        #region メッセージデータ作成
1475
        /// <summary>
1476
        /// メッセージデータ作成
1477
        /// </summary>
1478
        public static bool MessageBoardEntry(object[] MsgObj)
1479
        {
1480
            IOMessageBoardData mbdDB = new IOMessageBoardData();
1481
            IOMessageBoardTerget mbtDB = new IOMessageBoardTerget();
1482
            IOMessageBrowsingHistory mbhDB = new IOMessageBrowsingHistory();
1483
            IORecordKey RecDB = new IORecordKey();
1484
            try
1485
            {
1486
                int ConstructionCode = CommonMotions.cnvInt(MsgObj[(int)MsgObjOrder.ConstructionCode]);
1487
                int ApprovalCode = CommonMotions.cnvInt(MsgObj[(int)MsgObjOrder.ApprovalCode]);
1488
                int OrderNo = CommonMotions.cnvInt(MsgObj[(int)MsgObjOrder.OrderNo]);
1489
                int StatusFlg = CommonMotions.cnvInt(MsgObj[(int)MsgObjOrder.StatusFlg]);
1490
                string ConstructionName = CommonMotions.cnvString(MsgObj[(int)MsgObjOrder.ConstructionName]);
1491

  
1492
                // 対象者リストのセット
1493
                List<KeyValuePair<int, string>> ToData = new List<KeyValuePair<int, string>>();
1494
                if (!SetReceiverList(MsgObj, ref ToData)) return false;
1495

  
1496
                MessageBoardData data = new MessageBoardData();
1497

  
1498
                // ----- メッセージデータ書込み
1499
                // キーコードセット
1500
                data.RecordNumber = IOMessageBoardData.GetNewRecordNumber(mbdDB, mbtDB, mbhDB, RecDB,
1501
                                                                            (int)RecordKey.KeyNoDef.MessageKey);
1502
                data.BranchNumber = 0;
1503
                string strWhere = mbdDB.CreatePrimarykeyString(data.RecordNumber, data.BranchNumber);
1504

  
1505
                // 送信者セット(承認者)
1506
                data.FromCode = CommonMotions.LoginUserData.PersonCode;
1507
                data.FromName = CommonMotions.LoginUserData.PersonName;
1508

  
1509
                string ConstrName = ConstructionName;
1510

  
1511
                StringBuilder strMsg = new StringBuilder();
1512
                strMsg.AppendFormat("『{0}』 【{1}】 承認申請", ConstrName, ClsExcute.AppovalList[ApprovalCode]);
1513
                if (ApprovalCode == (int)ClsExcute.ApprovalListNo.PurchaseOrderEntryApproval
1514
                    || ApprovalCode == (int)ClsExcute.ApprovalListNo.OrderRequestApproval)
1515
                {
1516
                    //  4:注文書承認 Or 5:請求承認の場合回数追加
1517
                    strMsg.AppendFormat(" {0}回目", ConstrName, OrderNo);
1518
                }
1519
                strMsg.Append(" 工事案件承認申請の件");
1520
                data.MessageTitle = strMsg.ToString();
1521

  
1522
                strMsg.Clear();
1523
                strMsg.AppendFormat(" 工事番号:{0}\r\n", ConstructionCode);
1524
                strMsg.AppendFormat(" 工事名称:{0}\r\n", ConstrName);
1525
                if (ApprovalCode == (int)ClsExcute.ApprovalListNo.PurchaseOrderEntryApproval
1526
                    || ApprovalCode == (int)ClsExcute.ApprovalListNo.OrderRequestApproval)
1527
                {
1528
                    //  4:注文書承認 Or 5:請求承認の場合回数追加
1529
                    strMsg.AppendFormat(" 申請受付:{0}回目\r\n", OrderNo);
1530
                }
1531
                strMsg.AppendFormat(" 『{0}』の申請を【{1}】とします。\r\n", ClsExcute.AppovalList[ApprovalCode]
1532
                                                                        , CommonDefine.ApprovalStatusString[StatusFlg]);
1533
                strMsg.Append(" 連絡・指示コメント欄を確認の上対応してください。\r\n");
1534
                strMsg.Append(" よろしくお願いします。");
1535
                data.MessageContent = strMsg.ToString();
1536

  
1537
                // リンク情報
1538
                data.LinkType = (int)MessageBoardData.LinkTypeDef.ProcessApproval;
1539
                data.LinkMessage = string.Format("工事番号:{0} 工事名称:{1}", ConstructionCode, ConstrName);
1540
                data.LinkCode = string.Format("{0}:{1}:{2}", ConstructionCode, ApprovalCode, OrderNo);
1541

  
1542
                // メッセージ色セット
1543
                Color ClrBack = CommonDefine.ApprovalBackStatusColor[StatusFlg];
1544
                Color ClrFore = CommonDefine.ApprovalForeStatusColor[StatusFlg];
1545
                data.MessageColor = String.Format("0x{0:X2}{1:X2}{2:X2}", ClrFore.R, ClrFore.G, ClrFore.B);
1546
                data.BackColor = String.Format("0x{0:X2}{1:X2}{2:X2}", ClrBack.R, ClrBack.G, ClrBack.B);
1547

  
1548
                data.WritingDate = DateTime.Now;
1549
                data.PersonCode = CommonMotions.LoginUserData.PersonCode;
1550
                data.ShareFlag = 1;
1551
                data.MessageFlag = (int)MessageBoardData.MessageFlgDef.Normal;
1552

  
1553
                // データ登録
1554
                if (!mbdDB.InsertAction(data)) return false;
1555

  
1556
                // ----- 対象者書込み
1557
                MessageBoardTerget wrkTer = new MessageBoardTerget();
1558
                int cnt = 1;
1559
                foreach (KeyValuePair<int, string> CurDat in ToData)
1560
                {
1561
                    // キーコードセット
1562
                    wrkTer.RecordNumber = data.RecordNumber;
1563
                    wrkTer.BranchNumber = data.BranchNumber;
1564
                    wrkTer.SeqNum = cnt++;
1565
                    wrkTer.ToCode = CurDat.Key;
1566
                    wrkTer.ToName = CurDat.Value;
1567

  
1568
                    // データ登録
1569
                    if (!mbtDB.InsertAction(wrkTer)) return false;
1570
                }
1571

  
1572
                return true;
1573
            }
1574
            catch (Exception ex)
1575
            {
1576
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
1577
                return false;
1578
            }
1579
            finally
1580
            {
1581
                mbdDB.close(); mbdDB = null;
1582
                mbtDB.close(); mbtDB = null;
1583
                mbhDB.close(); mbhDB = null;
1584
                RecDB.close(); RecDB = null;
1585
            }
1586
        }
1587
        #endregion
1588

  
1589
        #region 対象者リストのセット
1590
        /// <summary>
1591
        /// 対象者リストのセット
1592
        /// </summary>
1593
        private static bool SetReceiverList(object[] MsgObj, ref List<KeyValuePair<int, string>> ToData)
1594
        {
1595
            IOProcessApproval ApprDB = new IOProcessApproval();
1596
            IOMApproval mAppDB = new IOMApproval();
1597
            try
1598
            {
1599
                int ConstructionCode = CommonMotions.cnvInt(MsgObj[(int)MsgObjOrder.ConstructionCode]);
1600
                int ApprovalCode = CommonMotions.cnvInt(MsgObj[(int)MsgObjOrder.ApprovalCode]);
1601
                int OrderNo = CommonMotions.cnvInt(MsgObj[(int)MsgObjOrder.OrderNo]);
1602
                int CurDepCode = ClsCommonApproval.GetFromConstrAndAppTheDep(ConstructionCode, ApprovalCode, OrderNo);
1603

  
1604
                StringBuilder strSQL = new StringBuilder();
1605
                strSQL.Append("SELECT A.ApprovalPerson, B.PersonName FROM ApprovalMaster As A");
1606
                strSQL.Append("      Inner Join personinchargemaster As B On B.PersonCode = A.ApprovalPerson");
1607
                strSQL.AppendFormat(" Where A.ApprovalCode = {0}", ApprovalCode);
1608
                strSQL.AppendFormat(" And A.DepartmentCode = {0}", CurDepCode);
1609
                strSQL.Append(" Order By A.DISPLAYORDER");
1610
                ArrayList arrayList = new ArrayList();
1611
                if (!mAppDB.ExecuteReader(strSQL.ToString(), ref arrayList)) return false;
1612

  
1613
                foreach (object[] CurObj in arrayList)
1614
                {
1615
                    // 承認者は追加しない
1616
                    int ApprovalPerson = CommonMotions.cnvInt(CurObj[0]);
1617
                    if (ApprovalPerson == CommonMotions.LoginUserData.PersonCode) continue;
1618

  
1619
                    string ApprovalName = CommonMotions.cnvString(CurObj[1]);
1620
                    ToData.Add(new KeyValuePair<int, string>(ApprovalPerson, ApprovalName));
1621
                }
1622

  
1623
                // 申請者を取得する
1624
                strSQL.Clear();
1625
                strSQL.Append("SELECT A.PersonCode, B.PersonName FROM processapproval As A");
1626
                strSQL.Append("      Inner Join personinchargemaster As B On B.PersonCode = A.PersonCode");
1627
                strSQL.AppendFormat(" Where A.ConstructionCode = {0}", ConstructionCode);
1628
                strSQL.AppendFormat(" And A.ApprovalCode = {0}", ApprovalCode);
1629
                strSQL.AppendFormat(" And A.OrderNo = {0}", OrderNo);
1630
                strSQL.Append("       And A.SeqNo = 1");
1631
                ArrayList arrayL = new ArrayList();
1632
                if (!ApprDB.ExecuteReader(strSQL.ToString(), ref arrayL)) return false;
1633
                if (arrayL.Count < 1) return false;
1634

  
1635
                // 申請者がログイン者の場合は処理終了
1636
                object[] CurRec = (object[])arrayL[0];
1637
                int PetitionCode = CommonMotions.cnvInt(CurRec[0]);
1638
                if (PetitionCode == CommonMotions.LoginUserData.PersonCode) return true;
1639

  
1640
                // 申請者が既に登録されていれば取得しない
1641
                bool bIns = true;
1642
                foreach (KeyValuePair<int, string> Tardat in ToData)
1643
                {
1644
                    if (Tardat.Key == PetitionCode)
1645
                    {
1646
                        bIns = false;
1647
                        break;
1648
                    }
1649
                }
1650

  
1651
                // 申請者をセットする
1652
                if (bIns)
1653
                {
1654
                    string PetitionName = CommonMotions.cnvString(CurRec[1]);
1655
                    ToData.Insert(0, new KeyValuePair<int, string>(PetitionCode, PetitionName));
1656
                }
1657

  
1658
                return true;
1659
            }
1660
            catch (Exception ex)
1661
            {
1662
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
1663
                return false;
1664
            }
1665
            finally
1666
            {
1667
                ApprDB.close(); ApprDB = null;
1668
                mAppDB.close(); mAppDB = null;
1669
            }
1670
        }
1671
        #endregion
1672
        #endregion
1405 1673
    }
1406 1674
}
trunk/src/ProcessManagement/ProcessManagement/Common/Process/ClsSystemOnceExecute.cs
107 107
                if (!(ProcessFlg = SetNewPayrollCheck())) return;
108 108

  
109 109
                // 工事詳細台帳の給与を加算する
110
                if (!(ProcessFlg = CalculateDaysSalary(m_lastsessionDate))) return;
110
                //if (!(ProcessFlg = CalculateDaysSalary(m_lastsessionDate))) return;
111 111

  
112 112
            }
113 113
            catch (Exception ex)
......
302 302
        /// </summary>
303 303
        private bool MakeSecretaryMassageData(IOMessageBoardData mbdDB,
304 304
                                        IOMessageBoardTerget mbtDB,
305
                                        IOMessageBrowsingHistory mbhDB ,
305
                                        IOMessageBrowsingHistory mbhDB,
306 306
                                        IORecordKey RecDB,
307 307
                                        IOConstructionBaseInfoDetail cbiDB,
308 308
                                        MaterialRecordInfo wrkRec, TermMaster CheckRec, DateTime CriteriaDate)
......
994 994
                // 工事基本情報明細データ
995 995
                string strMsg = string.Format(s_NonOrderComment, s_NonOrderDay);
996 996
                string strOrgMsg = string.Empty;
997
                ConstructionBaseInfoDetail WorkRec = new ConstructionBaseInfoDetail();
997 998
                foreach (object[] objRec in arList)
998 999
                {
1000
                    int nConstrCode = CommonMotions.cnvInt(objRec[0]);
1001
                    strSQL.Clear();
1002
                    strSQL.Append(DetailDB.CreatePrimarykeyString(nConstrCode
1003
                                                                , (int)ConstructionBaseInfoDetail.DataNoDef.OrdersDecisionComment));
1004
                    bool bExists = DetailDB.SelectAction(strSQL.ToString(), ref WorkRec, false);
1005

  
999 1006
                    strOrgMsg = string.Empty;
1000 1007
                    strOrgMsg = CommonMotions.cnvString(objRec[1]);
1001
                    if (strOrgMsg.Length != 0)
1008
                    if (bExists)
1002 1009
                    {
1003 1010
                        strOrgMsg += "\n";
1004 1011
                        strOrgMsg += strMsg;
1005 1012
                        if (strOrgMsg.Length > 120) strOrgMsg = strOrgMsg.Substring(0, 120);
1006
                        if (!DetailDB.UpdateFeild(CommonMotions.cnvInt(objRec[0])
1013
                        if (!DetailDB.UpdateFeild(nConstrCode
1007 1014
                                                    , (int)ConstructionBaseInfoDetail.DataNoDef.OrdersDecisionComment
1008 1015
                                                    , (int)IOConstructionBaseInfoDetail.TableColumn.DETAILSTRING
1009 1016
                                                    , strOrgMsg
......
1017 1024
                    }
1018 1025
                    else
1019 1026
                    {
1020
                        if (!CreateBaseInfoDetail(DetailDB, CommonMotions.cnvInt(objRec[0]), strMsg))
1027
                        if (!CreateBaseInfoDetail(DetailDB, nConstrCode, strMsg))
1021 1028
                        {
1022 1029
                            BaseDB.rollback();
1023 1030
                            DetailDB.rollback();
......
1190 1197

  
1191 1198
                StringBuilder strSQL = new StringBuilder();
1192 1199
                // 営業期更新
1193
                strSQL.Append(" Where DATE(NOW()) = DATE (BusinessCompDate)");
1200
                strSQL.Append(" Where DATE(DATE_ADD(NOW(),INTERVAL -1 DAY)) = DATE (BusinessCompDate)");
1194 1201
                List<SystemMaster> SystemList = new List<SystemMaster>();
1195 1202
                SystemDB.SelectAction(strSQL.ToString(), ref SystemList, false);
1196 1203
                if (SystemList.Count > 0)
......
1219 1226

  
1220 1227
                // 工事年度更新
1221 1228
                strSQL.Clear();
1222
                strSQL.Append(" Where DATE(NOW()) = DATE (ConstrCompDate)");
1229
                strSQL.Append(" Where DATE(DATE_ADD(NOW(),INTERVAL -1 DAY)) = DATE (ConstrCompDate)");
1223 1230
                SystemList.Clear();
1224 1231
                SystemDB.SelectAction(strSQL.ToString(), ref SystemList, false);
1225 1232
                if (SystemList.Count > 0)
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalScreen/FrmApprovalScreen.cs
457 457
        {
458 458
            try
459 459
            {
460
                // ???F???f?[?^??`?F?b?N
461
                if (!CheckAppData()) return;
462

  
463 460
                // ???F???`?F?b?N
464 461
                if (!CheckUserAppStat()) return;
465 462

  
......
604 601

  
605 602
                // ----- ??Z????E??Z?\?Z???????\?????s??
606 603
                SimultaneousRequestEstimatePetition(ref Rec);
607
                
604

  
608 605
                // ----- ???????\???????f?[?^????????
609 606
                if (m_ApprovalCode == (int)ClsExcute.ApprovalListNo.PurchaseOrderEntryApproval)
610 607
                {
......
614 611
                // ?\?????f?[?^???t??????Z?b?g????
615 612
                SetApprovalOrderNo();
616 613

  
617
                // ----- ???F?????b?Z?[?W?????
618
                List<KeyValuePair<int, string>> ToData = new List<KeyValuePair<int, string>>();
619
                // ????i?\????j?Z?b?g
620
                SetReceiverList((int)CommonDefine.ApprovalStatus.Petition, ref ToData);
621
                // ???b?Z?[?W?????
622
                MessageBoardEntry((int)CommonDefine.ApprovalStatus.Petition, ToData);
623 614

  
624 615
                // ???????b?Z?[?W
625 616
                CommonMotions.EntryEndMessage("?H???\???f?[?^", "?\??");
......
674 665
                    return;
675 666
                }
676 667

  
677
                // ----- ???F?????b?Z?[?W?????
678
                List<KeyValuePair<int, string>> ToData = new List<KeyValuePair<int, string>>();
679
                // ????i?\????j?Z?b?g
680
                SetReceiverList((int)CommonDefine.ApprovalStatus.Petition, ref ToData);
681
                // ???b?Z?[?W?????
682
                MessageBoardEntry((int)CommonDefine.ApprovalStatus.Petition, ToData);
683

  
684 668
                // ???????b?Z?[?W
685 669
                CommonMotions.EntryEndMessage("?H???\???f?[?^??\??", "??\??");
686 670

  
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalScreen/FrmApprovalScreenAuxiliary.cs
253 253
        {
254 254
            try
255 255
            {
256
                if (!ClsCommonApproval.CreatePetitionApproval(Rec))
256
                int ObjCnt = Enum.GetNames(typeof(ClsCommonApproval.MsgObjOrder)).Length;
257
                object[] ParaObj = new object[ObjCnt];
258
                ParaObj[(int)ClsCommonApproval.MsgObjOrder.ConstructionCode] = m_ConstructionCode;                  // 工事番号
259
                ParaObj[(int)ClsCommonApproval.MsgObjOrder.ApprovalCode] = m_ApprovalCode;                          // 承認番号
260
                ParaObj[(int)ClsCommonApproval.MsgObjOrder.OrderNo] = m_OrderNo;                                    // 受付番号
261
                ParaObj[(int)ClsCommonApproval.MsgObjOrder.StatusFlg] = Rec.ApprovalStatus;                         // 承認状態フラグ
262
                ParaObj[(int)ClsCommonApproval.MsgObjOrder.ConstructionName] = m_ConstrBaseDetailRec.DetailString;  // 工事名称
263
                if (!ClsCommonApproval.MakeApprovalRowData(Rec, ParaObj))
257 264
                {
258
                    MessageBox.Show("承認申請に失敗しました。", "申請エラー", MessageBoxButtons.OK, MessageBoxIcon.Error);
265
                    MessageBox.Show("申請に失敗しました。", "申請エラー", MessageBoxButtons.OK, MessageBoxIcon.Error);
259 266
                    return false;
260 267
                }
261 268

  
262
                // 申請者と最初の承認者が同じ場合は申請時に承認する
263
                if (m_dispLabelControl[(int)DispHeader.PetitionName].Text.Equals(m_dispLabelControl[(int)DispHeader.ApprovalName].Text))
269
                // 申請者と最初の承認者が違う場合は申請時に承認しない
270
                if (!m_dispLabelControl[(int)DispHeader.PetitionName].Text.Equals(m_dispLabelControl[(int)DispHeader.ApprovalName].Text))
271
                    return true;
272

  
273
                // ----- 申請者と最初の承認者が同じ場合は申請時に承認する
274
                // 申請・承認レコード更新
275
                if (!ApprovalDataUpDate((int)CommonDefine.ApprovalStatus.Approval))
264 276
                {
265
                    // 申請・承認レコード更新
266
                    if (!ApprovalDataUpDate((int)CommonDefine.ApprovalStatus.Approval))
267
                    {
268
                        MessageBox.Show("承認に失敗しました。", "承認エラー", MessageBoxButtons.OK, MessageBoxIcon.Error);
269
                        return false;
270
                    }
277
                    MessageBox.Show("承認に失敗しました。", "承認エラー", MessageBoxButtons.OK, MessageBoxIcon.Error);
278
                    return false;
271 279
                }
280

  
272 281
                return true;
273 282
            }
274 283
            catch (Exception ex)
......
298 307
                CreateApprovalData(ref Rec, statusCode);
299 308

  
300 309
                // 承認レコード更新
301
                if (!ClsCommonApproval.CreatePetitionApproval(Rec)) return false;
310
                int ObjCnt = Enum.GetNames(typeof(ClsCommonApproval.MsgObjOrder)).Length;
311
                object[] ParaObj = new object[ObjCnt];
312
                ParaObj[(int)ClsCommonApproval.MsgObjOrder.ConstructionCode] = m_ConstructionCode;                  // 工事番号
313
                ParaObj[(int)ClsCommonApproval.MsgObjOrder.ApprovalCode] = m_ApprovalCode;                          // 承認番号
314
                ParaObj[(int)ClsCommonApproval.MsgObjOrder.OrderNo] = m_OrderNo;                                    // 受付番号
315
                ParaObj[(int)ClsCommonApproval.MsgObjOrder.StatusFlg] = Rec.ApprovalStatus;                         // 承認状態フラグ
316
                ParaObj[(int)ClsCommonApproval.MsgObjOrder.ConstructionName] = m_ConstrBaseDetailRec.DetailString;  // 工事名称
317
                if (!ClsCommonApproval.MakeApprovalRowData(Rec, ParaObj)) return false;
302 318

  
303 319
                // 積算予算書承認時は積算見積書も承認する
304 320
                int Code2 = ClsExcute.AppovalList.First(x => x.Value.Equals("積算予算書承認")).Key;
......
339 355
                        break;
340 356
                }
341 357

  
342
                // ----- 承認時メッセージを作る
343
                List<KeyValuePair<int, string>> ToData = new List<KeyValuePair<int, string>>();
344
                // 対象者セット
345
                SetReceiverList(statusCode, ref ToData);
346
                // メッセージを作る
347
                MessageBoardEntry(statusCode, ToData);
348

  
349 358
                return true;
350 359
            }
351 360
            catch (Exception ex)
......
356 365
        }
357 366
        #endregion
358 367

  
359
        #region 対象者リストのセット
360
        /// <summary>
361
        /// 対象者リストのセット
362
        /// </summary>
363
        private void SetReceiverList(int statusCode, ref List<KeyValuePair<int, string>> ToData)
364
        {
365
            IOProcessApproval ApprDB = new IOProcessApproval();
366
            try
367
            {
368
                List<KeyValuePair<int, string>> wrkList = new List<KeyValuePair<int, string>>();
369
                for (int i = 0; i < m_ApprovalList.Count; i++)
370
                {
371
                    // 承認者は追加しない
372
                    if (m_ApprovalList[i].ApprovalPerson == CommonMotions.LoginUserData.PersonCode)
373
                        continue;
374

  
375
                    ToData.Add(new KeyValuePair<int, string>(m_ApprovalList[i].ApprovalPerson
376
                                                                , m_ApprovalerNameList[i]));
377
                }
378

  
379
                // 申請者を取得する
380
                StringBuilder strSQL = new StringBuilder();
381
                strSQL.Append(ApprDB.CreatePrimarykeyString(m_ConstructionCode, m_ApprovalCode, m_OrderNo));
382
                strSQL.Append(" And SeqNo = 1");
383
                ProcessApproval Rec = new ProcessApproval();
384
                if (!ApprDB.SelectAction(strSQL.ToString(), ref Rec)) return;
385

  
386
                // 申請者がログイン者の場合は処理終了
387
                if (Rec.PersonCode == CommonMotions.LoginUserData.PersonCode) return;
388

  
389
                // 申請者が既に登録されていれば取得しない
390
                bool bIns = true;
391
                foreach (KeyValuePair<int, string> Tardat in ToData)
392
                {
393
                    if (Tardat.Key == Rec.PersonCode)
394
                    {
395
                        bIns = false;
396
                        break;
397
                    }
398
                }
399

  
400
                // 申請者をセットする
401
                if (bIns)
402
                {
403
                    ToData.Insert(0, new KeyValuePair<int, string>(CommonMotions.LoginUserData.PersonCode
404
                                                                , CommonMotions.LoginUserData.PersonName));
405
                }
406
            }
407
            catch (Exception ex)
408
            {
409
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
410
            }
411
            finally
412
            {
413
                ApprDB.close(); ApprDB = null;
414
            }
415
        }
416
        #endregion
417

  
418 368
        #region 承認レコードデータ作成
419 369
        /// <summary>
420 370
        /// 承認レコードデータ作成
......
707 657
            {
708 658
                // 工事基本情報取得
709 659
                StringBuilder strSQL = new StringBuilder();
710
                strSQL.AppendFormat(cbiDB.CreatePrimarykeyString( m_ConstructionCode));
660
                strSQL.AppendFormat(cbiDB.CreatePrimarykeyString(m_ConstructionCode));
711 661
                if (!cbiDB.SelectAction(strSQL.ToString(), ref m_ConstrBaseRec)) return false;
712 662

  
713 663
                // 工事基本情報明細取得
......
1147 1097
                // ----- 積算見積・積算予算は同時に申請を行う
1148 1098
                int Code1 = ClsExcute.AppovalList.First(x => x.Value.Equals("積算見積書承認")).Key;
1149 1099
                int Code2 = ClsExcute.AppovalList.First(x => x.Value.Equals("積算予算書承認")).Key;
1100
                int nCommentCode = -1;
1150 1101
                if (Rec.ApprovalCode == Code1)              // 積算見積書の申請時は積算予算書も申請する
1151 1102
                {
1152 1103
                    // 積算予算データが存在した場合
......
1157 1108
                        CreateApprovalData(ref Rec, (int)CommonDefine.ApprovalStatus.Petition);
1158 1109
                        Rec.SeqNo = 1;                                                  // 枝番
1159 1110
                        Rec.ApprovalLimitDates = CommonMotions.cnvDate(m_dispLabelControl[(int)DispHeader.PetitionHopeDates].Text);
1160
                        // 申請データの作成
1161
                        if (!DataUpdate(Rec)) return;
1162
                        // コメントデータ登録
1163
                        EntryComment(Code2);
1111
                        nCommentCode = Code2;
1164 1112
                    }
1165 1113
                }
1166 1114
                else if (Rec.ApprovalCode == Code2)         // 積算予算書の申請時は積算見積書も申請する
......
1170 1118
                    CreateApprovalData(ref Rec, (int)CommonDefine.ApprovalStatus.Petition);
1171 1119
                    Rec.SeqNo = 1;                                                  // 枝番
1172 1120
                    Rec.ApprovalLimitDates = CommonMotions.cnvDate(m_dispLabelControl[(int)DispHeader.PetitionHopeDates].Text);
1173
                    // 申請データの作成
1174
                    if (!DataUpdate(Rec)) return;
1175
                    // コメントデータ登録
1176
                    EntryComment(Code1);
1121
                    nCommentCode = Code1;
1177 1122
                }
1123
                else
1124
                {
1125
                    return;
1126
                }
1127

  
1128
                // 申請データの作成
1129
                if (!DataUpdate(Rec)) return;
1130
                // コメントデータ登録
1131
                EntryComment(nCommentCode);
1178 1132
            }
1179 1133
            catch (Exception ex)
1180 1134
            {
......
1401 1355
        }
1402 1356
        #endregion
1403 1357

  
1404
        #region 承認対象データのチェック
1405
        /// <summary>
1406
        /// 承認対象データのチェック
1407
        /// </summary>
1408
        /// <returns></returns>
1409
        private bool CheckAppData()
1410
        {
1411
            try
1412
            {
1413
                // 承認機能によってデータチェックを行う
1414
                switch (m_ApprovalCode)
1415
                {
1416
                    case (int)ClsExcute.ApprovalListNo.ConstructionBudgetApproval:
1417
                        // 工事予算承認
1418
                        if (!FrmConstructionBudget.CheckAppPriceValue(m_ConstructionCode))
1419
                        {
1420
                            MessageBox.Show("対象データにエラーがあります、\r\n承認対象データより承認を行ってください。","承認エラー");
1421
                            return false;
1422
                        }
1423
                        break;
1424
                    default:
1425
                        break;
1426
                }
1427

  
1428
                return true;
1429
            }
1430
            catch (Exception ex)
1431
            {
1432
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
1433
                return false;
1434
            }
1435
        }
1436
        #endregion
1437

  
1438
        #region メッセージデータ作成
1439
        /// <summary>
1440
        /// メッセージデータ作成
1441
        /// </summary>
1442
        /// <returns></returns>
1443
        private bool MessageBoardEntry(int nStatusFlg, List<KeyValuePair<int, string>> ToData)
1444
        {
1445
            IOMessageBoardData mbdDB = new IOMessageBoardData();
1446
            IOMessageBoardTerget mbtDB = new IOMessageBoardTerget();
1447
            IOMessageBrowsingHistory mbhDB = new IOMessageBrowsingHistory();
1448
            IORecordKey RecDB = new IORecordKey();
1449
            try
1450
            {
1451
                MessageBoardData data = new MessageBoardData();
1452

  
1453
                // ----- メッセージデータ書込み
1454
                // キーコードセット
1455
                data.RecordNumber = IOMessageBoardData.GetNewRecordNumber(mbdDB, mbtDB, mbhDB, RecDB,
1456
                                                                            (int)RecordKey.KeyNoDef.MessageKey);
1457
                data.BranchNumber = 0;
1458
                string strWhere = mbdDB.CreatePrimarykeyString(data.RecordNumber, data.BranchNumber);
1459

  
1460
                // 送信者セット(承認者)
1461
                data.FromCode = CommonMotions.LoginUserData.PersonCode;
1462
                data.FromName = CommonMotions.LoginUserData.PersonName;
1463

  
1464
                string ConstrName = m_ConstrBaseDetailRec.DetailString;
1465

  
1466
                StringBuilder strMsg = new StringBuilder();
1467
                strMsg.AppendFormat("『{0}』 【{1}】 承認申請", ConstrName, ClsExcute.AppovalList[m_ApprovalCode]);
1468
                if (m_ApprovalCode == (int)ClsExcute.ApprovalListNo.PurchaseOrderEntryApproval
1469
                    || m_ApprovalCode == (int)ClsExcute.ApprovalListNo.OrderRequestApproval)
1470
                {
1471
                    //  4:注文書承認 Or 5:請求承認の場合回数追加
1472
                    strMsg.AppendFormat(" {0}回目", ConstrName, m_OrderNo);
1473
                }
1474
                strMsg.Append(" 工事案件承認申請の件");
1475
                data.MessageTitle = strMsg.ToString();
1476

  
1477
                strMsg.Clear();
1478
                strMsg.AppendFormat(" 工事番号:{0}\r\n", m_ConstructionCode);
1479
                strMsg.AppendFormat(" 工事名称:{0}\r\n", ConstrName);
1480
                if (m_ApprovalCode == (int)ClsExcute.ApprovalListNo.PurchaseOrderEntryApproval
1481
                    || m_ApprovalCode == (int)ClsExcute.ApprovalListNo.OrderRequestApproval)
1482
                {
1483
                    //  4:注文書承認 Or 5:請求承認の場合回数追加
1484
                    strMsg.AppendFormat(" 申請受付:{0}回目\r\n", m_OrderNo);
1485
                }
1486
                strMsg.AppendFormat(" 『{0}』の申請を【{1}】とします。\r\n", ClsExcute.AppovalList[m_ApprovalCode]
1487
                                                                        , CommonDefine.ApprovalStatusString[nStatusFlg]);
1488
                strMsg.Append(" 連絡・指示コメント欄を確認の上対応してください。\r\n");
1489
                strMsg.Append(" よろしくお願いします。");
1490
                data.MessageContent = strMsg.ToString();
1491

  
1492
                // リンク情報
1493
                data.LinkType = (int)MessageBoardData.LinkTypeDef.ProcessApproval;
1494
                data.LinkMessage = string.Format("工事番号:{0} 工事名称:{1}", m_ConstructionCode, ConstrName);
1495
                data.LinkCode = string.Format("{0}:{1}:{2}", m_ConstructionCode, m_ApprovalCode, m_OrderNo);
1496

  
1497
                // メッセージ色セット
1498
                Color ClrBack = CommonDefine.ApprovalBackStatusColor[nStatusFlg];
1499
                Color ClrFore = CommonDefine.ApprovalForeStatusColor[nStatusFlg];
1500
                data.MessageColor = String.Format("0x{0:X2}{1:X2}{2:X2}", ClrFore.R, ClrFore.G, ClrFore.B);
1501
                data.BackColor = String.Format("0x{0:X2}{1:X2}{2:X2}", ClrBack.R, ClrBack.G, ClrBack.B);
1502

  
1503
                data.WritingDate = DateTime.Now;
1504
                data.PersonCode = CommonMotions.LoginUserData.PersonCode;
1505
                data.ShareFlag = 1;
1506
                data.MessageFlag = (int)MessageBoardData.MessageFlgDef.Normal;
1507

  
1508
                // データ登録
1509
                if (!mbdDB.InsertAction(data)) return false;
1510

  
1511
                // ----- 対象者書込み
1512
                MessageBoardTerget wrkTer = new MessageBoardTerget();
1513
                int cnt = 1;
1514
                foreach (KeyValuePair<int, string> CurDat in ToData)
1515
                {
1516
                    // キーコードセット
1517
                    wrkTer.RecordNumber = data.RecordNumber;
1518
                    wrkTer.BranchNumber = data.BranchNumber;
1519
                    wrkTer.SeqNum = cnt++;
1520
                    wrkTer.ToCode = CurDat.Key;
1521
                    wrkTer.ToName = CurDat.Value;
1522

  
1523
                    // データ登録
1524
                    if (!mbtDB.InsertAction(wrkTer)) return false;
1525
                }
1526

  
1527
                return true;
1528
            }
1529
            catch (Exception ex)
1530
            {
1531
                logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message);
1532
                return false;
1533
            }
1534
            finally
1535
            {
1536
                mbdDB.close(); mbdDB = null;
1537
                mbtDB.close(); mbtDB = null;
1538
                mbhDB.close(); mbhDB = null;
1539
                RecDB.close(); RecDB = null;
1540
            }
1541
        }
1542
        #endregion
1543

  
1544 1358
        #region ---------->> 指示連絡コメント処理
1545 1359
        #region 指示連絡コメント表示処理
1546 1360
        /// <summary>
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBudget/FrmConstructionBudgetAuxiliary.cs
3832 3832
                if (MessageBox.Show("工事予算書データを更新します、よろしいですか?", "登録確認"
3833 3833
                                    , MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) return false;
3834 3834

  
3835

  
3836 3835
                // データ接続
3837 3836
                BudgetDB.connect(); BudgetDB.beginTran();
3838 3837
                DetailDB.connect(); DetailDB.beginTran();
......
4777 4776
                        CurRow.Cells[nExecCount].Style.BackColor = CommonDefine.s_clrError;
4778 4777
                        diffValue = true;
4779 4778
                        ErrorRowl = CurRow.Index;
4780

  
4781 4779
                    }
4782 4780
                }
4783 4781
                // 最後のエラー行へ移動する
......
4788 4786
                {
4789 4787
                    if (pnlApproval.Visible)
4790 4788
                    {
4791
                        DialogResult drRet = MessageBox.Show("発注希望金額と実行金額に差異があります、申請しますか?"
4789
                        MessageBox.Show("発注希望金額と実行金額に差異があります、申請出来ません。"
4792 4790
                                        , "申請チェック"
4793
                                        , MessageBoxButtons.OKCancel
4791
                                        , MessageBoxButtons.OK
4794 4792
                                        , MessageBoxIcon.Error);
4795 4793

  
4796
                        if (drRet == DialogResult.Cancel) return false;
4794
                        return false;
4797 4795
                    }
4798 4796
                    else
4799 4797
                    {
......
4832 4830
        /// 希望金額・実行金額チェック
4833 4831
        /// </summary>
4834 4832
        /// <returns></returns>
4835
        public static bool CheckAppPriceValue(int ConstrCode)
4833
        private bool CheckApplicationPriceValue(int ConstrCode)
4836 4834
        {
4837 4835
            IOConstructionBudgetDetail DetalDB = new IOConstructionBudgetDetail();
4838 4836
            try
trunk/src/ProcessManagement/ProcessManagement/Forms/ZMenu/FrmMenu.Designer.cs
2892 2892
            this.label59.Name = "label59";
2893 2893
            this.label59.Size = new System.Drawing.Size(500, 20);
2894 2894
            this.label59.TabIndex = 40;
2895
            this.label59.Text = "増 減 工 事 状 況 一 覧";
2895
            this.label59.Text = "増  減  工  事  状  況  一  覧";
2896 2896
            this.label59.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
2897 2897
            // 
2898 2898
            // dgvFluctuationProjects
......
3184 3184
            this.label13.Name = "label13";
3185 3185
            this.label13.Size = new System.Drawing.Size(500, 20);
3186 3186
            this.label13.TabIndex = 38;
3187
            this.label13.Text = "ボ  ツ  案  件  状  況  一  覧";
3187
            this.label13.Text = "非  受  注  案  件  状  況  一  覧";
3188 3188
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
3189 3189
            // 
3190 3190
            // dgvNonOrders
......
5072 5072
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5073 5073
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5074 5074
            this.tblLayoutConstruction.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
5075
            this.tblLayoutConstruction.Size = new System.Drawing.Size(1153, 1224);
5075
            this.tblLayoutConstruction.Size = new System.Drawing.Size(1136, 1224);
5076 5076
            this.tblLayoutConstruction.TabIndex = 15;
5077 5077
            // 
5078 5078
            // lblConstrLine01
......
5082 5082
            this.tblLayoutConstruction.SetColumnSpan(this.lblConstrLine01, 10);
5083 5083
            this.lblConstrLine01.Location = new System.Drawing.Point(3, 267);
5084 5084
            this.lblConstrLine01.Name = "lblConstrLine01";
5085
            this.lblConstrLine01.Size = new System.Drawing.Size(1147, 6);
5085
            this.lblConstrLine01.Size = new System.Drawing.Size(1130, 6);
5086 5086
            this.lblConstrLine01.TabIndex = 15;
5087 5087
            // 
5088 5088
            // btnConstruction0000
5089 5089
            // 
5090 5090
            this.btnConstruction0000.Dock = System.Windows.Forms.DockStyle.Fill;
5091
            this.btnConstruction0000.Location = new System.Drawing.Point(107, 39);
5091
            this.btnConstruction0000.Location = new System.Drawing.Point(106, 39);
5092 5092
            this.btnConstruction0000.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5093 5093
            this.btnConstruction0000.Name = "btnConstruction0000";
5094
            this.btnConstruction0000.Size = new System.Drawing.Size(188, 30);
5094
            this.btnConstruction0000.Size = new System.Drawing.Size(185, 30);
5095 5095
            this.btnConstruction0000.TabIndex = 15;
5096 5096
            this.btnConstruction0000.Text = "各工事詳細台帳閲覧";
5097 5097
            this.btnConstruction0000.UseVisualStyleBackColor = true;
......
5104 5104
            | System.Windows.Forms.AnchorStyles.Right)));
5105 5105
            this.lblConstrTitle01.AutoSize = true;
5106 5106
            this.lblConstrTitle01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5107
            this.lblConstrTitle01.Location = new System.Drawing.Point(106, 0);
5107
            this.lblConstrTitle01.Location = new System.Drawing.Point(105, 0);
5108 5108
            this.lblConstrTitle01.Name = "lblConstrTitle01";
5109
            this.lblConstrTitle01.Size = new System.Drawing.Size(190, 36);
5109
            this.lblConstrTitle01.Size = new System.Drawing.Size(187, 36);
5110 5110
            this.lblConstrTitle01.TabIndex = 15;
5111 5111
            this.lblConstrTitle01.Text = "日次(施工)管理";
5112 5112
            this.lblConstrTitle01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5120 5120
            this.lblConstr00.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5121 5121
            this.lblConstr00.Location = new System.Drawing.Point(3, 36);
5122 5122
            this.lblConstr00.Name = "lblConstr00";
5123
            this.lblConstr00.Size = new System.Drawing.Size(97, 36);
5123
            this.lblConstr00.Size = new System.Drawing.Size(96, 36);
5124 5124
            this.lblConstr00.TabIndex = 15;
5125 5125
            this.lblConstr00.Text = "毎日";
5126 5126
            this.lblConstr00.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5128 5128
            // btnConstruction0001
5129 5129
            // 
5130 5130
            this.btnConstruction0001.Dock = System.Windows.Forms.DockStyle.Fill;
5131
            this.btnConstruction0001.Location = new System.Drawing.Point(320, 39);
5131
            this.btnConstruction0001.Location = new System.Drawing.Point(316, 39);
5132 5132
            this.btnConstruction0001.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5133 5133
            this.btnConstruction0001.Name = "btnConstruction0001";
5134
            this.btnConstruction0001.Size = new System.Drawing.Size(188, 30);
5134
            this.btnConstruction0001.Size = new System.Drawing.Size(185, 30);
5135 5135
            this.btnConstruction0001.TabIndex = 15;
5136 5136
            this.btnConstruction0001.Text = "各工事日報";
5137 5137
            this.btnConstruction0001.UseVisualStyleBackColor = true;
......
5140 5140
            // btnConstruction0002
5141 5141
            // 
5142 5142
            this.btnConstruction0002.Dock = System.Windows.Forms.DockStyle.Fill;
5143
            this.btnConstruction0002.Location = new System.Drawing.Point(533, 39);
5143
            this.btnConstruction0002.Location = new System.Drawing.Point(526, 39);
5144 5144
            this.btnConstruction0002.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5145 5145
            this.btnConstruction0002.Name = "btnConstruction0002";
5146
            this.btnConstruction0002.Size = new System.Drawing.Size(188, 30);
5146
            this.btnConstruction0002.Size = new System.Drawing.Size(185, 30);
5147 5147
            this.btnConstruction0002.TabIndex = 15;
5148 5148
            this.btnConstruction0002.Text = "各工事打合わせ議事録";
5149 5149
            this.btnConstruction0002.UseVisualStyleBackColor = true;
......
5152 5152
            // btnConstruction0003
5153 5153
            // 
5154 5154
            this.btnConstruction0003.Dock = System.Windows.Forms.DockStyle.Fill;
5155
            this.btnConstruction0003.Location = new System.Drawing.Point(746, 39);
5155
            this.btnConstruction0003.Location = new System.Drawing.Point(736, 39);
5156 5156
            this.btnConstruction0003.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5157 5157
            this.btnConstruction0003.Name = "btnConstruction0003";
5158
            this.btnConstruction0003.Size = new System.Drawing.Size(188, 30);
5158
            this.btnConstruction0003.Size = new System.Drawing.Size(185, 30);
5159 5159
            this.btnConstruction0003.TabIndex = 15;
5160 5160
            this.btnConstruction0003.Text = "各工事交通費・購入品入力";
5161 5161
            this.btnConstruction0003.UseVisualStyleBackColor = true;
......
5164 5164
            // btnConstruction0004
5165 5165
            // 
5166 5166
            this.btnConstruction0004.Dock = System.Windows.Forms.DockStyle.Fill;
5167
            this.btnConstruction0004.Location = new System.Drawing.Point(959, 39);
5167
            this.btnConstruction0004.Location = new System.Drawing.Point(946, 39);
5168 5168
            this.btnConstruction0004.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5169 5169
            this.btnConstruction0004.Name = "btnConstruction0004";
5170
            this.btnConstruction0004.Size = new System.Drawing.Size(190, 30);
5170
            this.btnConstruction0004.Size = new System.Drawing.Size(186, 30);
5171 5171
            this.btnConstruction0004.TabIndex = 15;
5172 5172
            this.btnConstruction0004.Text = "出勤管理";
5173 5173
            this.btnConstruction0004.UseVisualStyleBackColor = true;
......
5176 5176
            // btnConstruction0100
5177 5177
            // 
5178 5178
            this.btnConstruction0100.Dock = System.Windows.Forms.DockStyle.Fill;
5179
            this.btnConstruction0100.Location = new System.Drawing.Point(107, 111);
5179
            this.btnConstruction0100.Location = new System.Drawing.Point(106, 111);
5180 5180
            this.btnConstruction0100.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5181 5181
            this.btnConstruction0100.Name = "btnConstruction0100";
5182
            this.btnConstruction0100.Size = new System.Drawing.Size(188, 30);
5182
            this.btnConstruction0100.Size = new System.Drawing.Size(185, 30);
5183 5183
            this.btnConstruction0100.TabIndex = 15;
5184 5184
            this.btnConstruction0100.Text = "行動予定入力";
5185 5185
            this.btnConstruction0100.UseVisualStyleBackColor = true;
......
5188 5188
            // btnConstruction0101
5189 5189
            // 
5190 5190
            this.btnConstruction0101.Dock = System.Windows.Forms.DockStyle.Fill;
5191
            this.btnConstruction0101.Location = new System.Drawing.Point(320, 111);
5191
            this.btnConstruction0101.Location = new System.Drawing.Point(316, 111);
5192 5192
            this.btnConstruction0101.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5193 5193
            this.btnConstruction0101.Name = "btnConstruction0101";
5194
            this.btnConstruction0101.Size = new System.Drawing.Size(188, 30);
5194
            this.btnConstruction0101.Size = new System.Drawing.Size(185, 30);
5195 5195
            this.btnConstruction0101.TabIndex = 15;
5196 5196
            this.btnConstruction0101.Text = "車両予約";
5197 5197
            this.btnConstruction0101.UseVisualStyleBackColor = true;
......
5206 5206
            this.lblConstr01.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5207 5207
            this.lblConstr01.Location = new System.Drawing.Point(3, 108);
5208 5208
            this.lblConstr01.Name = "lblConstr01";
5209
            this.lblConstr01.Size = new System.Drawing.Size(97, 36);
5209
            this.lblConstr01.Size = new System.Drawing.Size(96, 36);
5210 5210
            this.lblConstr01.TabIndex = 15;
5211 5211
            this.lblConstr01.Text = "毎日";
5212 5212
            this.lblConstr01.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5214 5214
            // btnConstruction0102
5215 5215
            // 
5216 5216
            this.btnConstruction0102.Dock = System.Windows.Forms.DockStyle.Fill;
5217
            this.btnConstruction0102.Location = new System.Drawing.Point(533, 111);
5217
            this.btnConstruction0102.Location = new System.Drawing.Point(526, 111);
5218 5218
            this.btnConstruction0102.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5219 5219
            this.btnConstruction0102.Name = "btnConstruction0102";
5220
            this.btnConstruction0102.Size = new System.Drawing.Size(188, 30);
5220
            this.btnConstruction0102.Size = new System.Drawing.Size(185, 30);
5221 5221
            this.btnConstruction0102.TabIndex = 15;
5222 5222
            this.btnConstruction0102.UseVisualStyleBackColor = true;
5223 5223
            this.btnConstruction0102.Click += new System.EventHandler(this.btnConstruction_Click);
......
5225 5225
            // btnConstruction0103
5226 5226
            // 
5227 5227
            this.btnConstruction0103.Dock = System.Windows.Forms.DockStyle.Fill;
5228
            this.btnConstruction0103.Location = new System.Drawing.Point(746, 111);
5228
            this.btnConstruction0103.Location = new System.Drawing.Point(736, 111);
5229 5229
            this.btnConstruction0103.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5230 5230
            this.btnConstruction0103.Name = "btnConstruction0103";
5231
            this.btnConstruction0103.Size = new System.Drawing.Size(188, 30);
5231
            this.btnConstruction0103.Size = new System.Drawing.Size(185, 30);
5232 5232
            this.btnConstruction0103.TabIndex = 15;
5233 5233
            this.btnConstruction0103.UseVisualStyleBackColor = true;
5234 5234
            this.btnConstruction0103.Click += new System.EventHandler(this.btnConstruction_Click);
......
5236 5236
            // btnConstruction0104
5237 5237
            // 
5238 5238
            this.btnConstruction0104.Dock = System.Windows.Forms.DockStyle.Fill;
5239
            this.btnConstruction0104.Location = new System.Drawing.Point(959, 111);
5239
            this.btnConstruction0104.Location = new System.Drawing.Point(946, 111);
5240 5240
            this.btnConstruction0104.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5241 5241
            this.btnConstruction0104.Name = "btnConstruction0104";
5242
            this.btnConstruction0104.Size = new System.Drawing.Size(190, 30);
5242
            this.btnConstruction0104.Size = new System.Drawing.Size(186, 30);
5243 5243
            this.btnConstruction0104.TabIndex = 15;
5244 5244
            this.btnConstruction0104.UseVisualStyleBackColor = true;
5245 5245
            this.btnConstruction0104.Click += new System.EventHandler(this.btnConstruction_Click);
......
5253 5253
            this.lblConstr02.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5254 5254
            this.lblConstr02.Location = new System.Drawing.Point(3, 180);
5255 5255
            this.lblConstr02.Name = "lblConstr02";
5256
            this.lblConstr02.Size = new System.Drawing.Size(97, 36);
5256
            this.lblConstr02.Size = new System.Drawing.Size(96, 36);
5257 5257
            this.lblConstr02.TabIndex = 15;
5258 5258
            this.lblConstr02.Text = "毎回";
5259 5259
            this.lblConstr02.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5261 5261
            // btnConstruction0200
5262 5262
            // 
5263 5263
            this.btnConstruction0200.Dock = System.Windows.Forms.DockStyle.Fill;
5264
            this.btnConstruction0200.Location = new System.Drawing.Point(107, 183);
5264
            this.btnConstruction0200.Location = new System.Drawing.Point(106, 183);
5265 5265
            this.btnConstruction0200.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5266 5266
            this.btnConstruction0200.Name = "btnConstruction0200";
5267
            this.btnConstruction0200.Size = new System.Drawing.Size(188, 30);
5267
            this.btnConstruction0200.Size = new System.Drawing.Size(185, 30);
5268 5268
            this.btnConstruction0200.TabIndex = 15;
5269 5269
            this.btnConstruction0200.Text = "資材一覧";
5270 5270
            this.btnConstruction0200.UseVisualStyleBackColor = true;
......
5273 5273
            // btnConstruction0201
5274 5274
            // 
5275 5275
            this.btnConstruction0201.Dock = System.Windows.Forms.DockStyle.Fill;
5276
            this.btnConstruction0201.Location = new System.Drawing.Point(320, 183);
5276
            this.btnConstruction0201.Location = new System.Drawing.Point(316, 183);
5277 5277
            this.btnConstruction0201.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5278 5278
            this.btnConstruction0201.Name = "btnConstruction0201";
5279
            this.btnConstruction0201.Size = new System.Drawing.Size(188, 30);
5279
            this.btnConstruction0201.Size = new System.Drawing.Size(185, 30);
5280 5280
            this.btnConstruction0201.TabIndex = 15;
5281 5281
            this.btnConstruction0201.Text = "資材貸出";
5282 5282
            this.btnConstruction0201.UseVisualStyleBackColor = true;
......
5285 5285
            // btnConstruction0202
5286 5286
            // 
5287 5287
            this.btnConstruction0202.Dock = System.Windows.Forms.DockStyle.Fill;
5288
            this.btnConstruction0202.Location = new System.Drawing.Point(533, 183);
5288
            this.btnConstruction0202.Location = new System.Drawing.Point(526, 183);
5289 5289
            this.btnConstruction0202.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5290 5290
            this.btnConstruction0202.Name = "btnConstruction0202";
5291
            this.btnConstruction0202.Size = new System.Drawing.Size(188, 30);
5291
            this.btnConstruction0202.Size = new System.Drawing.Size(185, 30);
5292 5292
            this.btnConstruction0202.TabIndex = 15;
5293 5293
            this.btnConstruction0202.Text = "資材返却";
5294 5294
            this.btnConstruction0202.UseVisualStyleBackColor = true;
......
5297 5297
            // btnConstruction0203
5298 5298
            // 
5299 5299
            this.btnConstruction0203.Dock = System.Windows.Forms.DockStyle.Fill;
5300
            this.btnConstruction0203.Location = new System.Drawing.Point(746, 183);
5300
            this.btnConstruction0203.Location = new System.Drawing.Point(736, 183);
5301 5301
            this.btnConstruction0203.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5302 5302
            this.btnConstruction0203.Name = "btnConstruction0203";
5303
            this.btnConstruction0203.Size = new System.Drawing.Size(188, 30);
5303
            this.btnConstruction0203.Size = new System.Drawing.Size(185, 30);
5304 5304
            this.btnConstruction0203.TabIndex = 15;
5305 5305
            this.btnConstruction0203.UseVisualStyleBackColor = true;
5306 5306
            this.btnConstruction0203.Click += new System.EventHandler(this.btnConstruction_Click);
......
5308 5308
            // btnConstruction0204
5309 5309
            // 
5310 5310
            this.btnConstruction0204.Dock = System.Windows.Forms.DockStyle.Fill;
5311
            this.btnConstruction0204.Location = new System.Drawing.Point(959, 183);
5311
            this.btnConstruction0204.Location = new System.Drawing.Point(946, 183);
5312 5312
            this.btnConstruction0204.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5313 5313
            this.btnConstruction0204.Name = "btnConstruction0204";
5314
            this.btnConstruction0204.Size = new System.Drawing.Size(190, 30);
5314
            this.btnConstruction0204.Size = new System.Drawing.Size(186, 30);
5315 5315
            this.btnConstruction0204.TabIndex = 15;
5316 5316
            this.btnConstruction0204.UseVisualStyleBackColor = true;
5317 5317
            this.btnConstruction0204.Click += new System.EventHandler(this.btnConstruction_Click);
......
5325 5325
            this.lblConstr03.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5326 5326
            this.lblConstr03.Location = new System.Drawing.Point(3, 324);
5327 5327
            this.lblConstr03.Name = "lblConstr03";
5328
            this.lblConstr03.Size = new System.Drawing.Size(97, 36);
5328
            this.lblConstr03.Size = new System.Drawing.Size(96, 36);
5329 5329
            this.lblConstr03.TabIndex = 15;
5330 5330
            this.lblConstr03.Text = "着工前";
5331 5331
            this.lblConstr03.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5337 5337
            | System.Windows.Forms.AnchorStyles.Right)));
5338 5338
            this.lblConstrTitle02.AutoSize = true;
5339 5339
            this.lblConstrTitle02.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5340
            this.lblConstrTitle02.Location = new System.Drawing.Point(106, 288);
5340
            this.lblConstrTitle02.Location = new System.Drawing.Point(105, 288);
5341 5341
            this.lblConstrTitle02.Name = "lblConstrTitle02";
5342
            this.lblConstrTitle02.Size = new System.Drawing.Size(190, 36);
5342
            this.lblConstrTitle02.Size = new System.Drawing.Size(187, 36);
5343 5343
            this.lblConstrTitle02.TabIndex = 15;
5344 5344
            this.lblConstrTitle02.Text = "書類管理";
5345 5345
            this.lblConstrTitle02.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5347 5347
            // btnConstruction0300
5348 5348
            // 
5349 5349
            this.btnConstruction0300.Dock = System.Windows.Forms.DockStyle.Fill;
5350
            this.btnConstruction0300.Location = new System.Drawing.Point(107, 327);
5350
            this.btnConstruction0300.Location = new System.Drawing.Point(106, 327);
5351 5351
            this.btnConstruction0300.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5352 5352
            this.btnConstruction0300.Name = "btnConstruction0300";
5353
            this.btnConstruction0300.Size = new System.Drawing.Size(188, 30);
5353
            this.btnConstruction0300.Size = new System.Drawing.Size(185, 30);
5354 5354
            this.btnConstruction0300.TabIndex = 15;
5355 5355
            this.btnConstruction0300.Text = "工事予算書作成";
5356 5356
            this.btnConstruction0300.UseVisualStyleBackColor = true;
......
5359 5359
            // btnConstruction0301
5360 5360
            // 
5361 5361
            this.btnConstruction0301.Dock = System.Windows.Forms.DockStyle.Fill;
5362
            this.btnConstruction0301.Location = new System.Drawing.Point(320, 327);
5362
            this.btnConstruction0301.Location = new System.Drawing.Point(316, 327);
5363 5363
            this.btnConstruction0301.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5364 5364
            this.btnConstruction0301.Name = "btnConstruction0301";
5365
            this.btnConstruction0301.Size = new System.Drawing.Size(188, 30);
5365
            this.btnConstruction0301.Size = new System.Drawing.Size(185, 30);
5366 5366
            this.btnConstruction0301.TabIndex = 15;
5367 5367
            this.btnConstruction0301.Text = "工事予算書承認";
5368 5368
            this.btnConstruction0301.UseVisualStyleBackColor = true;
......
5371 5371
            // btnConstruction0302
5372 5372
            // 
5373 5373
            this.btnConstruction0302.Dock = System.Windows.Forms.DockStyle.Fill;
5374
            this.btnConstruction0302.Location = new System.Drawing.Point(533, 327);
5374
            this.btnConstruction0302.Location = new System.Drawing.Point(526, 327);
5375 5375
            this.btnConstruction0302.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5376 5376
            this.btnConstruction0302.Name = "btnConstruction0302";
5377
            this.btnConstruction0302.Size = new System.Drawing.Size(188, 30);
5377
            this.btnConstruction0302.Size = new System.Drawing.Size(185, 30);
5378 5378
            this.btnConstruction0302.TabIndex = 15;
5379 5379
            this.btnConstruction0302.UseVisualStyleBackColor = true;
5380 5380
            this.btnConstruction0302.Click += new System.EventHandler(this.btnConstruction_Click);
......
5382 5382
            // btnConstruction0303
5383 5383
            // 
5384 5384
            this.btnConstruction0303.Dock = System.Windows.Forms.DockStyle.Fill;
5385
            this.btnConstruction0303.Location = new System.Drawing.Point(746, 327);
5385
            this.btnConstruction0303.Location = new System.Drawing.Point(736, 327);
5386 5386
            this.btnConstruction0303.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5387 5387
            this.btnConstruction0303.Name = "btnConstruction0303";
5388
            this.btnConstruction0303.Size = new System.Drawing.Size(188, 30);
5388
            this.btnConstruction0303.Size = new System.Drawing.Size(185, 30);
5389 5389
            this.btnConstruction0303.TabIndex = 15;
5390 5390
            this.btnConstruction0303.UseVisualStyleBackColor = true;
5391 5391
            this.btnConstruction0303.Click += new System.EventHandler(this.btnConstruction_Click);
......
5393 5393
            // btnConstruction0304
5394 5394
            // 
5395 5395
            this.btnConstruction0304.Dock = System.Windows.Forms.DockStyle.Fill;
5396
            this.btnConstruction0304.Location = new System.Drawing.Point(959, 327);
5396
            this.btnConstruction0304.Location = new System.Drawing.Point(946, 327);
5397 5397
            this.btnConstruction0304.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5398 5398
            this.btnConstruction0304.Name = "btnConstruction0304";
5399
            this.btnConstruction0304.Size = new System.Drawing.Size(190, 30);
5399
            this.btnConstruction0304.Size = new System.Drawing.Size(186, 30);
5400 5400
            this.btnConstruction0304.TabIndex = 15;
5401 5401
            this.btnConstruction0304.UseVisualStyleBackColor = true;
5402 5402
            this.btnConstruction0304.Click += new System.EventHandler(this.btnConstruction_Click);
......
5410 5410
            this.lblConstr04.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5411 5411
            this.lblConstr04.Location = new System.Drawing.Point(3, 396);
5412 5412
            this.lblConstr04.Name = "lblConstr04";
5413
            this.lblConstr04.Size = new System.Drawing.Size(97, 36);
5413
            this.lblConstr04.Size = new System.Drawing.Size(96, 36);
5414 5414
            this.lblConstr04.TabIndex = 15;
5415 5415
            this.lblConstr04.Text = "着工前";
5416 5416
            this.lblConstr04.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5418 5418
            // btnConstruction0400
5419 5419
            // 
5420 5420
            this.btnConstruction0400.Dock = System.Windows.Forms.DockStyle.Fill;
5421
            this.btnConstruction0400.Location = new System.Drawing.Point(107, 399);
5421
            this.btnConstruction0400.Location = new System.Drawing.Point(106, 399);
5422 5422
            this.btnConstruction0400.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5423 5423
            this.btnConstruction0400.Name = "btnConstruction0400";
5424
            this.btnConstruction0400.Size = new System.Drawing.Size(188, 30);
5424
            this.btnConstruction0400.Size = new System.Drawing.Size(185, 30);
5425 5425
            this.btnConstruction0400.TabIndex = 15;
5426 5426
            this.btnConstruction0400.Text = "注文書作成";
5427 5427
            this.btnConstruction0400.UseVisualStyleBackColor = true;
......
5430 5430
            // btnConstruction0401
5431 5431
            // 
5432 5432
            this.btnConstruction0401.Dock = System.Windows.Forms.DockStyle.Fill;
5433
            this.btnConstruction0401.Location = new System.Drawing.Point(320, 399);
5433
            this.btnConstruction0401.Location = new System.Drawing.Point(316, 399);
5434 5434
            this.btnConstruction0401.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5435 5435
            this.btnConstruction0401.Name = "btnConstruction0401";
5436
            this.btnConstruction0401.Size = new System.Drawing.Size(188, 30);
5436
            this.btnConstruction0401.Size = new System.Drawing.Size(185, 30);
5437 5437
            this.btnConstruction0401.TabIndex = 15;
5438 5438
            this.btnConstruction0401.Text = "注文書承認";
5439 5439
            this.btnConstruction0401.UseVisualStyleBackColor = true;
......
5442 5442
            // btnConstruction0402
5443 5443
            // 
5444 5444
            this.btnConstruction0402.Dock = System.Windows.Forms.DockStyle.Fill;
5445
            this.btnConstruction0402.Location = new System.Drawing.Point(533, 399);
5445
            this.btnConstruction0402.Location = new System.Drawing.Point(526, 399);
5446 5446
            this.btnConstruction0402.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5447 5447
            this.btnConstruction0402.Name = "btnConstruction0402";
5448
            this.btnConstruction0402.Size = new System.Drawing.Size(188, 30);
5448
            this.btnConstruction0402.Size = new System.Drawing.Size(185, 30);
5449 5449
            this.btnConstruction0402.TabIndex = 15;
5450 5450
            this.btnConstruction0402.Text = "注文書状況確認";
5451 5451
            this.btnConstruction0402.UseVisualStyleBackColor = true;
......
5454 5454
            // btnConstruction0403
5455 5455
            // 
5456 5456
            this.btnConstruction0403.Dock = System.Windows.Forms.DockStyle.Fill;
5457
            this.btnConstruction0403.Location = new System.Drawing.Point(746, 399);
5457
            this.btnConstruction0403.Location = new System.Drawing.Point(736, 399);
5458 5458
            this.btnConstruction0403.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5459 5459
            this.btnConstruction0403.Name = "btnConstruction0403";
5460
            this.btnConstruction0403.Size = new System.Drawing.Size(188, 30);
5460
            this.btnConstruction0403.Size = new System.Drawing.Size(185, 30);
5461 5461
            this.btnConstruction0403.TabIndex = 15;
5462 5462
            this.btnConstruction0403.UseVisualStyleBackColor = true;
5463 5463
            this.btnConstruction0403.Click += new System.EventHandler(this.btnConstruction_Click);
......
5465 5465
            // btnConstruction0404
5466 5466
            // 
5467 5467
            this.btnConstruction0404.Dock = System.Windows.Forms.DockStyle.Fill;
5468
            this.btnConstruction0404.Location = new System.Drawing.Point(959, 399);
5468
            this.btnConstruction0404.Location = new System.Drawing.Point(946, 399);
5469 5469
            this.btnConstruction0404.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5470 5470
            this.btnConstruction0404.Name = "btnConstruction0404";
5471
            this.btnConstruction0404.Size = new System.Drawing.Size(190, 30);
5471
            this.btnConstruction0404.Size = new System.Drawing.Size(186, 30);
5472 5472
            this.btnConstruction0404.TabIndex = 15;
5473 5473
            this.btnConstruction0404.UseVisualStyleBackColor = true;
5474 5474
            this.btnConstruction0404.Click += new System.EventHandler(this.btnConstruction_Click);
......
5482 5482
            this.lblConstr05.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5483 5483
            this.lblConstr05.Location = new System.Drawing.Point(3, 468);
5484 5484
            this.lblConstr05.Name = "lblConstr05";
5485
            this.lblConstr05.Size = new System.Drawing.Size(97, 36);
5485
            this.lblConstr05.Size = new System.Drawing.Size(96, 36);
5486 5486
            this.lblConstr05.TabIndex = 15;
5487 5487
            this.lblConstr05.Text = "着工前";
5488 5488
            this.lblConstr05.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5490 5490
            // btnConstruction0500
5491 5491
            // 
5492 5492
            this.btnConstruction0500.Dock = System.Windows.Forms.DockStyle.Fill;
5493
            this.btnConstruction0500.Location = new System.Drawing.Point(107, 471);
5493
            this.btnConstruction0500.Location = new System.Drawing.Point(106, 471);
5494 5494
            this.btnConstruction0500.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5495 5495
            this.btnConstruction0500.Name = "btnConstruction0500";
5496
            this.btnConstruction0500.Size = new System.Drawing.Size(188, 30);
5496
            this.btnConstruction0500.Size = new System.Drawing.Size(185, 30);
5497 5497
            this.btnConstruction0500.TabIndex = 15;
5498 5498
            this.btnConstruction0500.Text = "工程表作成・印刷";
5499 5499
            this.btnConstruction0500.UseVisualStyleBackColor = true;
......
5502 5502
            // btnConstruction0501
5503 5503
            // 
5504 5504
            this.btnConstruction0501.Dock = System.Windows.Forms.DockStyle.Fill;
5505
            this.btnConstruction0501.Location = new System.Drawing.Point(320, 471);
5505
            this.btnConstruction0501.Location = new System.Drawing.Point(316, 471);
5506 5506
            this.btnConstruction0501.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5507 5507
            this.btnConstruction0501.Name = "btnConstruction0501";
5508
            this.btnConstruction0501.Size = new System.Drawing.Size(188, 30);
5508
            this.btnConstruction0501.Size = new System.Drawing.Size(185, 30);
5509 5509
            this.btnConstruction0501.TabIndex = 15;
5510 5510
            this.btnConstruction0501.Text = "施工計画書作成・印刷";
5511 5511
            this.btnConstruction0501.UseVisualStyleBackColor = true;
......
5514 5514
            // btnConstruction0502
5515 5515
            // 
5516 5516
            this.btnConstruction0502.Dock = System.Windows.Forms.DockStyle.Fill;
5517
            this.btnConstruction0502.Location = new System.Drawing.Point(533, 471);
5517
            this.btnConstruction0502.Location = new System.Drawing.Point(526, 471);
5518 5518
            this.btnConstruction0502.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5519 5519
            this.btnConstruction0502.Name = "btnConstruction0502";
5520
            this.btnConstruction0502.Size = new System.Drawing.Size(188, 30);
5520
            this.btnConstruction0502.Size = new System.Drawing.Size(185, 30);
5521 5521
            this.btnConstruction0502.TabIndex = 15;
5522 5522
            this.btnConstruction0502.Text = "施工体制台帳作成・印刷";
5523 5523
            this.btnConstruction0502.UseVisualStyleBackColor = true;
......
5526 5526
            // btnConstruction0503
5527 5527
            // 
5528 5528
            this.btnConstruction0503.Dock = System.Windows.Forms.DockStyle.Fill;
5529
            this.btnConstruction0503.Location = new System.Drawing.Point(746, 471);
5529
            this.btnConstruction0503.Location = new System.Drawing.Point(736, 471);
5530 5530
            this.btnConstruction0503.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5531 5531
            this.btnConstruction0503.Name = "btnConstruction0503";
5532
            this.btnConstruction0503.Size = new System.Drawing.Size(188, 30);
5532
            this.btnConstruction0503.Size = new System.Drawing.Size(185, 30);
5533 5533
            this.btnConstruction0503.TabIndex = 15;
5534 5534
            this.btnConstruction0503.UseVisualStyleBackColor = true;
5535 5535
            this.btnConstruction0503.Click += new System.EventHandler(this.btnConstruction_Click);
......
5537 5537
            // btnConstruction0504
5538 5538
            // 
5539 5539
            this.btnConstruction0504.Dock = System.Windows.Forms.DockStyle.Fill;
5540
            this.btnConstruction0504.Location = new System.Drawing.Point(959, 471);
5540
            this.btnConstruction0504.Location = new System.Drawing.Point(946, 471);
5541 5541
            this.btnConstruction0504.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5542 5542
            this.btnConstruction0504.Name = "btnConstruction0504";
5543
            this.btnConstruction0504.Size = new System.Drawing.Size(190, 30);
5543
            this.btnConstruction0504.Size = new System.Drawing.Size(186, 30);
5544 5544
            this.btnConstruction0504.TabIndex = 15;
5545 5545
            this.btnConstruction0504.UseVisualStyleBackColor = true;
5546 5546
            this.btnConstruction0504.Click += new System.EventHandler(this.btnConstruction_Click);
......
5554 5554
            this.lblConstr06.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5555 5555
            this.lblConstr06.Location = new System.Drawing.Point(3, 540);
5556 5556
            this.lblConstr06.Name = "lblConstr06";
5557
            this.lblConstr06.Size = new System.Drawing.Size(97, 36);
5557
            this.lblConstr06.Size = new System.Drawing.Size(96, 36);
5558 5558
            this.lblConstr06.TabIndex = 15;
5559 5559
            this.lblConstr06.Text = "着工前・中";
5560 5560
            this.lblConstr06.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5562 5562
            // btnConstruction0600
5563 5563
            // 
5564 5564
            this.btnConstruction0600.Dock = System.Windows.Forms.DockStyle.Fill;
5565
            this.btnConstruction0600.Location = new System.Drawing.Point(107, 543);
5565
            this.btnConstruction0600.Location = new System.Drawing.Point(106, 543);
5566 5566
            this.btnConstruction0600.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5567 5567
            this.btnConstruction0600.Name = "btnConstruction0600";
5568
            this.btnConstruction0600.Size = new System.Drawing.Size(188, 30);
5568
            this.btnConstruction0600.Size = new System.Drawing.Size(185, 30);
5569 5569
            this.btnConstruction0600.TabIndex = 15;
5570 5570
            this.btnConstruction0600.Text = "工事施工図承諾願い";
5571 5571
            this.btnConstruction0600.UseVisualStyleBackColor = true;
......
5574 5574
            // btnConstruction0601
5575 5575
            // 
5576 5576
            this.btnConstruction0601.Dock = System.Windows.Forms.DockStyle.Fill;
5577
            this.btnConstruction0601.Location = new System.Drawing.Point(320, 543);
5577
            this.btnConstruction0601.Location = new System.Drawing.Point(316, 543);
5578 5578
            this.btnConstruction0601.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5579 5579
            this.btnConstruction0601.Name = "btnConstruction0601";
5580
            this.btnConstruction0601.Size = new System.Drawing.Size(188, 30);
5580
            this.btnConstruction0601.Size = new System.Drawing.Size(185, 30);
5581 5581
            this.btnConstruction0601.TabIndex = 15;
5582 5582
            this.btnConstruction0601.Text = "工事使用材料承諾願い";
5583 5583
            this.btnConstruction0601.UseVisualStyleBackColor = true;
......
5586 5586
            // btnConstruction0602
5587 5587
            // 
5588 5588
            this.btnConstruction0602.Dock = System.Windows.Forms.DockStyle.Fill;
5589
            this.btnConstruction0602.Location = new System.Drawing.Point(533, 543);
5589
            this.btnConstruction0602.Location = new System.Drawing.Point(526, 543);
5590 5590
            this.btnConstruction0602.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5591 5591
            this.btnConstruction0602.Name = "btnConstruction0602";
5592
            this.btnConstruction0602.Size = new System.Drawing.Size(188, 30);
5592
            this.btnConstruction0602.Size = new System.Drawing.Size(185, 30);
5593 5593
            this.btnConstruction0602.TabIndex = 15;
5594 5594
            this.btnConstruction0602.Text = "安全パトロール申請";
5595 5595
            this.btnConstruction0602.UseVisualStyleBackColor = true;
......
5598 5598
            // btnConstruction0603
5599 5599
            // 
5600 5600
            this.btnConstruction0603.Dock = System.Windows.Forms.DockStyle.Fill;
5601
            this.btnConstruction0603.Location = new System.Drawing.Point(746, 543);
5601
            this.btnConstruction0603.Location = new System.Drawing.Point(736, 543);
5602 5602
            this.btnConstruction0603.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5603 5603
            this.btnConstruction0603.Name = "btnConstruction0603";
5604
            this.btnConstruction0603.Size = new System.Drawing.Size(188, 30);
5604
            this.btnConstruction0603.Size = new System.Drawing.Size(185, 30);
5605 5605
            this.btnConstruction0603.TabIndex = 15;
5606 5606
            this.btnConstruction0603.Text = "社内検査申請";
5607 5607
            this.btnConstruction0603.UseVisualStyleBackColor = true;
......
5610 5610
            // btnConstruction0604
5611 5611
            // 
5612 5612
            this.btnConstruction0604.Dock = System.Windows.Forms.DockStyle.Fill;
5613
            this.btnConstruction0604.Location = new System.Drawing.Point(959, 543);
5613
            this.btnConstruction0604.Location = new System.Drawing.Point(946, 543);
5614 5614
            this.btnConstruction0604.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5615 5615
            this.btnConstruction0604.Name = "btnConstruction0604";
5616
            this.btnConstruction0604.Size = new System.Drawing.Size(190, 30);
5616
            this.btnConstruction0604.Size = new System.Drawing.Size(186, 30);
5617 5617
            this.btnConstruction0604.TabIndex = 15;
5618 5618
            this.btnConstruction0604.UseVisualStyleBackColor = true;
5619 5619
            this.btnConstruction0604.Click += new System.EventHandler(this.btnConstruction_Click);
......
5621 5621
            // btnConstruction0700
5622 5622
            // 
5623 5623
            this.btnConstruction0700.Dock = System.Windows.Forms.DockStyle.Fill;
5624
            this.btnConstruction0700.Location = new System.Drawing.Point(107, 615);
5624
            this.btnConstruction0700.Location = new System.Drawing.Point(106, 615);
5625 5625
            this.btnConstruction0700.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5626 5626
            this.btnConstruction0700.Name = "btnConstruction0700";
5627
            this.btnConstruction0700.Size = new System.Drawing.Size(188, 30);
5627
            this.btnConstruction0700.Size = new System.Drawing.Size(185, 30);
5628 5628
            this.btnConstruction0700.TabIndex = 15;
5629 5629
            this.btnConstruction0700.UseVisualStyleBackColor = true;
5630 5630
            this.btnConstruction0700.Click += new System.EventHandler(this.btnConstruction_Click);
......
5632 5632
            // btnConstruction0701
5633 5633
            // 
5634 5634
            this.btnConstruction0701.Dock = System.Windows.Forms.DockStyle.Fill;
5635
            this.btnConstruction0701.Location = new System.Drawing.Point(320, 615);
5635
            this.btnConstruction0701.Location = new System.Drawing.Point(316, 615);
5636 5636
            this.btnConstruction0701.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5637 5637
            this.btnConstruction0701.Name = "btnConstruction0701";
5638
            this.btnConstruction0701.Size = new System.Drawing.Size(188, 30);
5638
            this.btnConstruction0701.Size = new System.Drawing.Size(185, 30);
5639 5639
            this.btnConstruction0701.TabIndex = 15;
5640 5640
            this.btnConstruction0701.UseVisualStyleBackColor = true;
5641 5641
            this.btnConstruction0701.Click += new System.EventHandler(this.btnConstruction_Click);
......
5643 5643
            // btnConstruction0702
5644 5644
            // 
5645 5645
            this.btnConstruction0702.Dock = System.Windows.Forms.DockStyle.Fill;
5646
            this.btnConstruction0702.Location = new System.Drawing.Point(533, 615);
5646
            this.btnConstruction0702.Location = new System.Drawing.Point(526, 615);
5647 5647
            this.btnConstruction0702.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5648 5648
            this.btnConstruction0702.Name = "btnConstruction0702";
5649
            this.btnConstruction0702.Size = new System.Drawing.Size(188, 30);
5649
            this.btnConstruction0702.Size = new System.Drawing.Size(185, 30);
5650 5650
            this.btnConstruction0702.TabIndex = 15;
5651 5651
            this.btnConstruction0702.UseVisualStyleBackColor = true;
5652 5652
            this.btnConstruction0702.Click += new System.EventHandler(this.btnConstruction_Click);
......
5654 5654
            // btnConstruction0703
5655 5655
            // 
5656 5656
            this.btnConstruction0703.Dock = System.Windows.Forms.DockStyle.Fill;
5657
            this.btnConstruction0703.Location = new System.Drawing.Point(746, 615);
5657
            this.btnConstruction0703.Location = new System.Drawing.Point(736, 615);
5658 5658
            this.btnConstruction0703.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5659 5659
            this.btnConstruction0703.Name = "btnConstruction0703";
5660
            this.btnConstruction0703.Size = new System.Drawing.Size(188, 30);
5660
            this.btnConstruction0703.Size = new System.Drawing.Size(185, 30);
5661 5661
            this.btnConstruction0703.TabIndex = 15;
5662 5662
            this.btnConstruction0703.UseVisualStyleBackColor = true;
5663 5663
            this.btnConstruction0703.Click += new System.EventHandler(this.btnConstruction_Click);
......
5665 5665
            // btnConstruction0704
5666 5666
            // 
5667 5667
            this.btnConstruction0704.Dock = System.Windows.Forms.DockStyle.Fill;
5668
            this.btnConstruction0704.Location = new System.Drawing.Point(959, 615);
5668
            this.btnConstruction0704.Location = new System.Drawing.Point(946, 615);
5669 5669
            this.btnConstruction0704.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5670 5670
            this.btnConstruction0704.Name = "btnConstruction0704";
5671
            this.btnConstruction0704.Size = new System.Drawing.Size(190, 30);
5671
            this.btnConstruction0704.Size = new System.Drawing.Size(186, 30);
5672 5672
            this.btnConstruction0704.TabIndex = 15;
5673 5673
            this.btnConstruction0704.UseVisualStyleBackColor = true;
5674 5674
            this.btnConstruction0704.Click += new System.EventHandler(this.btnConstruction_Click);
......
5682 5682
            this.lblConstr08.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
5683 5683
            this.lblConstr08.Location = new System.Drawing.Point(3, 684);
5684 5684
            this.lblConstr08.Name = "lblConstr08";
5685
            this.lblConstr08.Size = new System.Drawing.Size(97, 36);
5685
            this.lblConstr08.Size = new System.Drawing.Size(96, 36);
5686 5686
            this.lblConstr08.TabIndex = 15;
5687 5687
            this.lblConstr08.Text = "着工中\r\n・完了後";
5688 5688
            this.lblConstr08.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
......
5690 5690
            // btnConstruction0800
5691 5691
            // 
5692 5692
            this.btnConstruction0800.Dock = System.Windows.Forms.DockStyle.Fill;
5693
            this.btnConstruction0800.Location = new System.Drawing.Point(107, 687);
5693
            this.btnConstruction0800.Location = new System.Drawing.Point(106, 687);
5694 5694
            this.btnConstruction0800.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
5695 5695
            this.btnConstruction0800.Name = "btnConstruction0800";
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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