プロジェクト

全般

プロフィール

リビジョン 95

堀内7年以上前に追加

発注者マスタフィールド位置過ち訂正

差分を表示:

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

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
trunk/src/ProcessManagement/ProcessManagement/Common/Process/ClsSystemOnceExecute.cs
630 630
                DetailDB.connect(); DetailDB.beginTran();
631 631

  
632 632
                // 工事基本情報データ
633
                strSQL = string.Format("UPDATE CONSTRUCTIONBASEINFO SET CONSTRUCTIONSTATUSFLG = {0},", iCode1);
633
                strSQL = string.Format("UPDATE CONSTRUCTIONBASEINFO A SET CONSTRUCTIONSTATUSFLG = {0},", iCode1);
634 634
                strSQL += string.Format(" NONORDERDATE = TO_DATE('{0}','YYYY/MM/DD')", DateTime.Today.ToShortDateString());
635
                strSQL += string.Format(" WHERE CONSTRUCTIONCODE IN (SELECT A.CONSTRUCTIONCODE FROM CONSTRUCTIONBASEINFO A {0})", strWHERE);
635
                strSQL += strWHERE;
636 636
                if (!BaseDB.ExecuteNonQuery(strSQL, false))
637 637
                {
638 638
                    BaseDB.rollback();
trunk/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOMOrderers.cs
248 248
                strcmd += string.Format(",'{0}'", work.Address3);
249 249
                strcmd += string.Format(",'{0}'", work.PhoneNumber);
250 250
                strcmd += string.Format(",'{0}'", work.FaxNumber);
251
                strcmd += string.Format(",'{0}'", work.MailAddress);
251 252
                strcmd += string.Format(",'{0}'", work.Note);
252
                strcmd += string.Format(",'{0}'", work.MailAddress);
253 253
                strcmd += string.Format(", {0}", work.DeleteFlg);
254 254

  
255 255
                strcmd += ", TO_DATE(TO_CHAR(sysdate,'YYYY/MM/DD HH24:MI:SS'),'YYYY/MM/DD HH24:MI:SS')";
trunk/src/ProcessManagement/ProcessManagement/DB/IOAccess/IOPurchaseOrderDetail.cs
47 47
            UnitPrice,		        // 単価
48 48
            OrdersLinePrice,		// 金額
49 49
            SourceCode,             // 予算作成時工事番号
50
            SourceLineCnt,	        // 注文書作成時台帳行番号
50 51

  
51 52
            EntryDate,
52 53
            UpdateDate,
......
87 88
            strcmd += ", UnitPrice";		        // 単価
88 89
            strcmd += ", OrdersLinePrice";		    // 金額
89 90
            strcmd += ", SourceCode";               // 予算作成時工事番号
91
            strcmd += ", SourceLineCnt";	        // 注文書作成時台帳行番号
90 92

  
91 93
            strcmd += ", TO_CHAR(EntryDate, 'YYYY/MM/DD HH24:MI:ss')";
92 94
            strcmd += ", TO_CHAR(UpdateDate, 'YYYY/MM/DD HH24:MI:ss')";
......
185 187
            {
186 188

  
187 189
                strcmd = "INSERT INTO PurchaseOrderDetail";
188
                strcmd += " (";
189
                strcmd += "  ConstructionCode";	        // 工事コード
190
                strcmd += ", SeqNo";                    // 注文書枝番
191
                strcmd += ", GroupCount";               // グループ番号
192
                strcmd += ", LineCount";                // 行番号
193
                strcmd += ", ComponentCode";            // 構成キー
194
                strcmd += ", ItemCode";		            // 工種キー
195
                strcmd += ", FirstString";              // 工種品名
196
                strcmd += ", SecondString";             // 内容内訳
197
                strcmd += ", UnitCount";		        // 数量
198
                strcmd += ", UnitName";		            // 単位
199
                strcmd += ", UnitPrice";		        // 単価
200
                strcmd += ", OrdersLinePrice";		    // 金額
201
                strcmd += ", SourceCode";               // 予算作成時工事番号
202
                strcmd += ", EntryDate";
203
                strcmd += ", UpdateDate";
204
                strcmd += ")";
205 190

  
206
                strcmd += " VALUES (";
191
                strcmd += "(";
192
                bool bFirst = true;
193
                foreach (var gender in Enum.GetValues(typeof(TableColumn)))
194
                {
195
                    if (!bFirst) strcmd += " ,";
196
                    strcmd += gender.ToString();
197
                    bFirst = false;
198
                }
199
                strcmd += ") VALUES (";
207 200

  
201

  
208 202
                strcmd += string.Format("  {0}", work.ConstructionCode);        // 工事番号
209 203

  
210 204
                strcmd += string.Format(", {0}", work.SeqNo);                   // 注文書枝番
......
219 213
                strcmd += string.Format(", {0}", work.UnitPrice);		        // 単価
220 214
                strcmd += string.Format(", {0}", work.OrdersLinePrice);         // 金額
221 215
                strcmd += string.Format(", {0}", work.SourceCode);              // 予算作成時工事番号
216
                strcmd += string.Format(", {0}", work.SourceLineCnt);	        // 注文書作成時台帳行番号
222 217

  
223 218
                strcmd += ", TO_DATE(TO_CHAR(sysdate,'YYYY/MM/DD HH24:MI:SS'),'YYYY/MM/DD HH24:MI:SS')";
224 219
                strcmd += ", TO_DATE(TO_CHAR(sysdate,'YYYY/MM/DD HH24:MI:SS'),'YYYY/MM/DD HH24:MI:SS')";
......
292 287
                strcmd += string.Format(", UnitPrice = {0}", data.UnitPrice);		                // 単価
293 288
                strcmd += string.Format(", OrdersLinePrice = {0}", data.OrdersLinePrice);		    // 金額
294 289
                strcmd += string.Format(", SourceCode = {0}", data.SourceCode);                     // 予算作成時工事番号
290
                strcmd += string.Format(", SourceLineCnt = {0}", data.SourceLineCnt);	            // 注文書作成時台帳行番号
295 291

  
296 292
                strcmd += ", UpdateDate = TO_DATE(TO_CHAR(sysdate,'YYYY/MM/DD HH24:MI:SS'),'YYYY/MM/DD HH24:MI:SS')";
297 293
                strcmd += AddSQLString;
......
389 385
                    case (int)TableColumn.SourceCode:       // 予算作成時工事番号
390 386
                        strcmd += string.Format(" SourceCode = {0}", ((int)value).ToString());
391 387
                        break;
388
                    case (int)TableColumn.SourceLineCnt:	            // 注文書作成時台帳行番号
389
                        strcmd += string.Format(" SourceLineCnt = {0}", ((int)value).ToString());
390
                        break;
392 391
                }
393 392

  
394 393
                strcmd += ", UpdateDate = TO_DATE(TO_CHAR(sysdate,'YYYY/MM/DD HH24:MI:SS'),'YYYY/MM/DD HH24:MI:SS')";
......
432 431
                wrk.UnitPrice = double.Parse(objwrk[(int)TableColumn.UnitPrice].ToString());		            // 単価
433 432
                wrk.OrdersLinePrice = double.Parse(objwrk[(int)TableColumn.OrdersLinePrice].ToString());		// 金額
434 433
                wrk.SourceCode = int.Parse(objwrk[(int)TableColumn.SourceCode].ToString());                     // 予算作成時工事番号
434
                wrk.SourceLineCnt = int.Parse(objwrk[(int)TableColumn.SourceLineCnt].ToString());	            // 注文書作成時台帳行番号
435 435

  
436 436
                wrk.EntryDate = DateTime.Parse(objwrk[(int)TableColumn.EntryDate].ToString());
437 437
                wrk.UpdateDate = DateTime.Parse(objwrk[(int)TableColumn.UpdateDate].ToString());
trunk/src/ProcessManagement/ProcessManagement/DataModel/PurchaseOrderDetail.cs
27 27
        private double  m_UnitPrice = 0;	                // 単価
28 28
        private double  m_OrdersLinePrice = 0;	            // 金額
29 29
        private double  m_SourceCode = 0;                   // 予算作成時工事番号
30
        private int     m_SourceLineCnt = 0;                // 注文書作成時台帳行番号
30 31

  
31 32
        private DateTime m_EntryDate = DateTime.Now;        // 登録日付
32 33
        private DateTime m_UpdateDate = DateTime.Now;       // 更新日付
......
141 142
            get { return m_SourceCode; }
142 143
            set { m_SourceCode = value; }
143 144
        }
145
        /// <summary>
146
        /// 注文書作成時台帳行番号
147
        /// </summary>
148
        public int SourceLineCnt
149
        {
150
            get { return m_SourceLineCnt; }
151
            set { m_SourceLineCnt = value; }
152
        }
144 153

  
145 154
        /// <summary>
146 155
        /// 登録日付
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DRConstruction/FrmDRConstruction.designer.cs
30 30
        /// </summary>
31 31
        private void InitializeComponent()
32 32
        {
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
42
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
43
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
44
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
45
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
46
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
47
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
48
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
49
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
50
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
51
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
52
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
53
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
42
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
43
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
44
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
45
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
46
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
47
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
48
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
49
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
50
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
51
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
52
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
53
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
54 54
            this.label1 = new System.Windows.Forms.Label();
55 55
            this.btnDataDelete = new System.Windows.Forms.Button();
56 56
            this.btnDataEntry = new System.Windows.Forms.Button();
......
82 82
            this.btnLineDel = new System.Windows.Forms.Button();
83 83
            this.btnLineAdd = new System.Windows.Forms.Button();
84 84
            this.pnlBase = new System.Windows.Forms.Panel();
85
            this.label20 = new System.Windows.Forms.Label();
86
            this.panel3 = new System.Windows.Forms.Panel();
87
            this.label6 = new System.Windows.Forms.Label();
85 88
            this.btnSubJob = new System.Windows.Forms.Button();
86 89
            this.label39 = new System.Windows.Forms.Label();
87 90
            this.label48 = new System.Windows.Forms.Label();
......
143 146
            this.label13 = new System.Windows.Forms.Label();
144 147
            this.label12 = new System.Windows.Forms.Label();
145 148
            this.label7 = new System.Windows.Forms.Label();
146
            this.label6 = new System.Windows.Forms.Label();
147 149
            this.lblCellTotal = new System.Windows.Forms.Label();
148 150
            this.dgvAllDisplay = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
149 151
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
......
166 168
            this.btnCancel = new System.Windows.Forms.Button();
167 169
            this.btnFirst = new System.Windows.Forms.Button();
168 170
            this.btnFinal = new System.Windows.Forms.Button();
169
            this.panel3 = new System.Windows.Forms.Panel();
170 171
            this.panel1.SuspendLayout();
171 172
            this.pnlApproval.SuspendLayout();
172 173
            this.pnlApprovalButton.SuspendLayout();
173 174
            this.pnlBase.SuspendLayout();
175
            this.panel3.SuspendLayout();
174 176
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEX4)).BeginInit();
175 177
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEX3)).BeginInit();
176 178
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEX2)).BeginInit();
177 179
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEX1)).BeginInit();
178 180
            ((System.ComponentModel.ISupportInitialize)(this.dgvAllDisplay)).BeginInit();
179 181
            this.panel2.SuspendLayout();
180
            this.panel3.SuspendLayout();
181 182
            this.SuspendLayout();
182 183
            // 
183 184
            // label1
......
579 580
            | System.Windows.Forms.AnchorStyles.Right)));
580 581
            this.pnlBase.AutoScroll = true;
581 582
            this.pnlBase.BackColor = System.Drawing.Color.WhiteSmoke;
583
            this.pnlBase.Controls.Add(this.label20);
582 584
            this.pnlBase.Controls.Add(this.panel3);
583 585
            this.pnlBase.Controls.Add(this.label39);
584 586
            this.pnlBase.Controls.Add(this.label48);
......
626 628
            this.pnlBase.Size = new System.Drawing.Size(1320, 490);
627 629
            this.pnlBase.TabIndex = 36;
628 630
            // 
631
            // label20
632
            // 
633
            this.label20.AutoSize = true;
634
            this.label20.ForeColor = System.Drawing.Color.Red;
635
            this.label20.Location = new System.Drawing.Point(612, 854);
636
            this.label20.Name = "label20";
637
            this.label20.Size = new System.Drawing.Size(603, 16);
638
            this.label20.TabIndex = 77;
639
            this.label20.Text = "未巡回の場合は未巡回と記入して下さい。(記入例:未巡回(電話確認)等)";
640
            // 
641
            // panel3
642
            // 
643
            this.panel3.BackColor = System.Drawing.Color.White;
644
            this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
645
            this.panel3.Controls.Add(this.label6);
646
            this.panel3.Controls.Add(this.btnSubJob);
647
            this.panel3.Location = new System.Drawing.Point(53, 10);
648
            this.panel3.Name = "panel3";
649
            this.panel3.Size = new System.Drawing.Size(200, 40);
650
            this.panel3.TabIndex = 76;
651
            // 
652
            // label6
653
            // 
654
            this.label6.BackColor = System.Drawing.Color.White;
655
            this.label6.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
656
            this.label6.Location = new System.Drawing.Point(8, 4);
657
            this.label6.Name = "label6";
658
            this.label6.Size = new System.Drawing.Size(80, 30);
659
            this.label6.TabIndex = 37;
660
            this.label6.Text = "職  種";
661
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
662
            // 
629 663
            // btnSubJob
630 664
            // 
631 665
            this.btnSubJob.BackColor = System.Drawing.Color.SeaGreen;
......
733 767
            | System.Windows.Forms.AnchorStyles.Right)));
734 768
            this.dataGridViewEX4.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
735 769
            this.dataGridViewEX4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
736
            dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
737
            dataGridViewCellStyle22.BackColor = System.Drawing.SystemColors.Control;
738
            dataGridViewCellStyle22.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
739
            dataGridViewCellStyle22.ForeColor = System.Drawing.SystemColors.WindowText;
740
            dataGridViewCellStyle22.SelectionBackColor = System.Drawing.SystemColors.Highlight;
741
            dataGridViewCellStyle22.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
742
            dataGridViewCellStyle22.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
743
            this.dataGridViewEX4.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle22;
770
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
771
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
772
            dataGridViewCellStyle1.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
773
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
774
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
775
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
776
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
777
            this.dataGridViewEX4.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
744 778
            this.dataGridViewEX4.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
745 779
            this.dataGridViewEX4.ColumnHeadersVisible = false;
746 780
            this.dataGridViewEX4.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
767 801
            // 
768 802
            // dataGridViewTextBoxColumn18
769 803
            // 
770
            dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
771
            this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle23;
804
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
805
            this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle2;
772 806
            this.dataGridViewTextBoxColumn18.Frozen = true;
773 807
            this.dataGridViewTextBoxColumn18.HeaderText = "№";
774 808
            this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
......
779 813
            // 
780 814
            // dataGridViewTextBoxColumn19
781 815
            // 
782
            dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
783
            this.dataGridViewTextBoxColumn19.DefaultCellStyle = dataGridViewCellStyle24;
816
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
817
            this.dataGridViewTextBoxColumn19.DefaultCellStyle = dataGridViewCellStyle3;
784 818
            this.dataGridViewTextBoxColumn19.HeaderText = "時間帯固定";
785 819
            this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
786 820
            this.dataGridViewTextBoxColumn19.ReadOnly = true;
......
789 823
            // 
790 824
            // Column9
791 825
            // 
792
            dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
793
            this.Column9.DefaultCellStyle = dataGridViewCellStyle25;
826
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
827
            this.Column9.DefaultCellStyle = dataGridViewCellStyle4;
794 828
            this.Column9.HeaderText = "時間帯";
795 829
            this.Column9.Name = "Column9";
796 830
            this.Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
851 885
            | System.Windows.Forms.AnchorStyles.Right)));
852 886
            this.dataGridViewEX3.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
853 887
            this.dataGridViewEX3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
854
            dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
855
            dataGridViewCellStyle26.BackColor = System.Drawing.SystemColors.Control;
856
            dataGridViewCellStyle26.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
857
            dataGridViewCellStyle26.ForeColor = System.Drawing.SystemColors.WindowText;
858
            dataGridViewCellStyle26.SelectionBackColor = System.Drawing.SystemColors.Highlight;
859
            dataGridViewCellStyle26.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
860
            dataGridViewCellStyle26.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
861
            this.dataGridViewEX3.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle26;
888
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
889
            dataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Control;
890
            dataGridViewCellStyle5.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
891
            dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.WindowText;
892
            dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
893
            dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
894
            dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
895
            this.dataGridViewEX3.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle5;
862 896
            this.dataGridViewEX3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
863 897
            this.dataGridViewEX3.ColumnHeadersVisible = false;
864 898
            this.dataGridViewEX3.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
884 918
            // 
885 919
            // dataGridViewTextBoxColumn15
886 920
            // 
887
            dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
888
            this.dataGridViewTextBoxColumn15.DefaultCellStyle = dataGridViewCellStyle27;
921
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
922
            this.dataGridViewTextBoxColumn15.DefaultCellStyle = dataGridViewCellStyle6;
889 923
            this.dataGridViewTextBoxColumn15.Frozen = true;
890 924
            this.dataGridViewTextBoxColumn15.HeaderText = "№";
891 925
            this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
......
1005 1039
            | System.Windows.Forms.AnchorStyles.Right)));
1006 1040
            this.dataGridViewEX2.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1007 1041
            this.dataGridViewEX2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1008
            dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1009
            dataGridViewCellStyle28.BackColor = System.Drawing.SystemColors.Control;
1010
            dataGridViewCellStyle28.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1011
            dataGridViewCellStyle28.ForeColor = System.Drawing.SystemColors.WindowText;
1012
            dataGridViewCellStyle28.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1013
            dataGridViewCellStyle28.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1014
            dataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1015
            this.dataGridViewEX2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle28;
1042
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1043
            dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Control;
1044
            dataGridViewCellStyle7.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1045
            dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.WindowText;
1046
            dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1047
            dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1048
            dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1049
            this.dataGridViewEX2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
1016 1050
            this.dataGridViewEX2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
1017 1051
            this.dataGridViewEX2.ColumnHeadersVisible = false;
1018 1052
            this.dataGridViewEX2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
1041 1075
            // 
1042 1076
            // dataGridViewTextBoxColumn9
1043 1077
            // 
1044
            dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1045
            this.dataGridViewTextBoxColumn9.DefaultCellStyle = dataGridViewCellStyle29;
1078
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1079
            this.dataGridViewTextBoxColumn9.DefaultCellStyle = dataGridViewCellStyle8;
1046 1080
            this.dataGridViewTextBoxColumn9.Frozen = true;
1047 1081
            this.dataGridViewTextBoxColumn9.HeaderText = "№";
1048 1082
            this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
......
1061 1095
            // 
1062 1096
            // dataGridViewTextBoxColumn11
1063 1097
            // 
1064
            dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1065
            this.dataGridViewTextBoxColumn11.DefaultCellStyle = dataGridViewCellStyle30;
1098
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1099
            this.dataGridViewTextBoxColumn11.DefaultCellStyle = dataGridViewCellStyle9;
1066 1100
            this.dataGridViewTextBoxColumn11.HeaderText = "数量";
1067 1101
            this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
1068 1102
            this.dataGridViewTextBoxColumn11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1212 1246
            | System.Windows.Forms.AnchorStyles.Right)));
1213 1247
            this.dataGridViewEX1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1214 1248
            this.dataGridViewEX1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1215
            dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1216
            dataGridViewCellStyle31.BackColor = System.Drawing.SystemColors.Control;
1217
            dataGridViewCellStyle31.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1218
            dataGridViewCellStyle31.ForeColor = System.Drawing.SystemColors.WindowText;
1219
            dataGridViewCellStyle31.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1220
            dataGridViewCellStyle31.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1221
            dataGridViewCellStyle31.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1222
            this.dataGridViewEX1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle31;
1249
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1250
            dataGridViewCellStyle10.BackColor = System.Drawing.SystemColors.Control;
1251
            dataGridViewCellStyle10.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1252
            dataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.WindowText;
1253
            dataGridViewCellStyle10.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1254
            dataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1255
            dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1256
            this.dataGridViewEX1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle10;
1223 1257
            this.dataGridViewEX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
1224 1258
            this.dataGridViewEX1.ColumnHeadersVisible = false;
1225 1259
            this.dataGridViewEX1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
1250 1284
            // 
1251 1285
            // dataGridViewTextBoxColumn1
1252 1286
            // 
1253
            dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1254
            this.dataGridViewTextBoxColumn1.DefaultCellStyle = dataGridViewCellStyle32;
1287
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1288
            this.dataGridViewTextBoxColumn1.DefaultCellStyle = dataGridViewCellStyle11;
1255 1289
            this.dataGridViewTextBoxColumn1.Frozen = true;
1256 1290
            this.dataGridViewTextBoxColumn1.HeaderText = "№";
1257 1291
            this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
......
1294 1328
            // 
1295 1329
            // dataGridViewTextBoxColumn6
1296 1330
            // 
1297
            dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1298
            this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle33;
1331
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1332
            this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle12;
1299 1333
            this.dataGridViewTextBoxColumn6.HeaderText = "開始";
1300 1334
            this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
1301 1335
            this.dataGridViewTextBoxColumn6.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1304 1338
            // 
1305 1339
            // dataGridViewTextBoxColumn7
1306 1340
            // 
1307
            dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1308
            this.dataGridViewTextBoxColumn7.DefaultCellStyle = dataGridViewCellStyle34;
1341
            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1342
            this.dataGridViewTextBoxColumn7.DefaultCellStyle = dataGridViewCellStyle13;
1309 1343
            this.dataGridViewTextBoxColumn7.HeaderText = "";
1310 1344
            this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
1311 1345
            this.dataGridViewTextBoxColumn7.ReadOnly = true;
......
1315 1349
            // 
1316 1350
            // dataGridViewTextBoxColumn8
1317 1351
            // 
1318
            dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1319
            this.dataGridViewTextBoxColumn8.DefaultCellStyle = dataGridViewCellStyle35;
1352
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1353
            this.dataGridViewTextBoxColumn8.DefaultCellStyle = dataGridViewCellStyle14;
1320 1354
            this.dataGridViewTextBoxColumn8.HeaderText = "終了";
1321 1355
            this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
1322 1356
            this.dataGridViewTextBoxColumn8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1429 1463
            this.label7.Text = "業 者 名";
1430 1464
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1431 1465
            // 
1432
            // label6
1433
            // 
1434
            this.label6.BackColor = System.Drawing.Color.White;
1435
            this.label6.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
1436
            this.label6.Location = new System.Drawing.Point(8, 4);
1437
            this.label6.Name = "label6";
1438
            this.label6.Size = new System.Drawing.Size(80, 30);
1439
            this.label6.TabIndex = 37;
1440
            this.label6.Text = "職  種";
1441
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1442
            // 
1443 1466
            // lblCellTotal
1444 1467
            // 
1445 1468
            this.lblCellTotal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
......
1462 1485
            | System.Windows.Forms.AnchorStyles.Right)));
1463 1486
            this.dgvAllDisplay.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1464 1487
            this.dgvAllDisplay.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1465
            dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1466
            dataGridViewCellStyle36.BackColor = System.Drawing.SystemColors.Control;
1467
            dataGridViewCellStyle36.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1468
            dataGridViewCellStyle36.ForeColor = System.Drawing.SystemColors.WindowText;
1469
            dataGridViewCellStyle36.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1470
            dataGridViewCellStyle36.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1471
            dataGridViewCellStyle36.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1472
            this.dgvAllDisplay.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle36;
1488
            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1489
            dataGridViewCellStyle15.BackColor = System.Drawing.SystemColors.Control;
1490
            dataGridViewCellStyle15.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1491
            dataGridViewCellStyle15.ForeColor = System.Drawing.SystemColors.WindowText;
1492
            dataGridViewCellStyle15.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1493
            dataGridViewCellStyle15.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1494
            dataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1495
            this.dgvAllDisplay.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle15;
1473 1496
            this.dgvAllDisplay.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
1474 1497
            this.dgvAllDisplay.ColumnHeadersVisible = false;
1475 1498
            this.dgvAllDisplay.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
1502 1525
            // 
1503 1526
            // Column1
1504 1527
            // 
1505
            dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1506
            this.Column1.DefaultCellStyle = dataGridViewCellStyle37;
1528
            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1529
            this.Column1.DefaultCellStyle = dataGridViewCellStyle16;
1507 1530
            this.Column1.Frozen = true;
1508 1531
            this.Column1.HeaderText = "№";
1509 1532
            this.Column1.Name = "Column1";
......
1523 1546
            // 
1524 1547
            // Column2
1525 1548
            // 
1526
            dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1527
            this.Column2.DefaultCellStyle = dataGridViewCellStyle38;
1549
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1550
            this.Column2.DefaultCellStyle = dataGridViewCellStyle17;
1528 1551
            this.Column2.Frozen = true;
1529 1552
            this.Column2.HeaderText = "職種名称";
1530 1553
            this.Column2.Name = "Column2";
......
1544 1567
            // 
1545 1568
            // Column3
1546 1569
            // 
1547
            dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1548
            this.Column3.DefaultCellStyle = dataGridViewCellStyle39;
1570
            dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1571
            this.Column3.DefaultCellStyle = dataGridViewCellStyle18;
1549 1572
            this.Column3.Frozen = true;
1550 1573
            this.Column3.HeaderText = "業者名";
1551 1574
            this.Column3.Name = "Column3";
......
1556 1579
            // 
1557 1580
            // Column4
1558 1581
            // 
1559
            dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1560
            this.Column4.DefaultCellStyle = dataGridViewCellStyle40;
1582
            dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1583
            this.Column4.DefaultCellStyle = dataGridViewCellStyle19;
1561 1584
            this.Column4.HeaderText = "当日";
1562 1585
            this.Column4.Name = "Column4";
1563 1586
            this.Column4.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1566 1589
            // 
1567 1590
            // Column5
1568 1591
            // 
1569
            dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1570
            this.Column5.DefaultCellStyle = dataGridViewCellStyle41;
1592
            dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1593
            this.Column5.DefaultCellStyle = dataGridViewCellStyle20;
1571 1594
            this.Column5.HeaderText = "累計";
1572 1595
            this.Column5.Name = "Column5";
1573 1596
            this.Column5.ReadOnly = true;
......
1593 1616
            // 
1594 1617
            // Column8
1595 1618
            // 
1596
            dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1597
            this.Column8.DefaultCellStyle = dataGridViewCellStyle42;
1619
            dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1620
            this.Column8.DefaultCellStyle = dataGridViewCellStyle21;
1598 1621
            this.Column8.HeaderText = "人員";
1599 1622
            this.Column8.Name = "Column8";
1600 1623
            this.Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1732 1755
            this.btnFinal.UseVisualStyleBackColor = false;
1733 1756
            this.btnFinal.Click += new System.EventHandler(this.btnFinal_Click);
1734 1757
            // 
1735
            // panel3
1736
            // 
1737
            this.panel3.BackColor = System.Drawing.Color.White;
1738
            this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1739
            this.panel3.Controls.Add(this.label6);
1740
            this.panel3.Controls.Add(this.btnSubJob);
1741
            this.panel3.Location = new System.Drawing.Point(53, 10);
1742
            this.panel3.Name = "panel3";
1743
            this.panel3.Size = new System.Drawing.Size(200, 40);
1744
            this.panel3.TabIndex = 76;
1745
            // 
1746 1758
            // FrmDRConstruction
1747 1759
            // 
1748 1760
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
......
1782 1794
            this.pnlApprovalButton.ResumeLayout(false);
1783 1795
            this.pnlBase.ResumeLayout(false);
1784 1796
            this.pnlBase.PerformLayout();
1797
            this.panel3.ResumeLayout(false);
1785 1798
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEX4)).EndInit();
1786 1799
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEX3)).EndInit();
1787 1800
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEX2)).EndInit();
1788 1801
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEX1)).EndInit();
1789 1802
            ((System.ComponentModel.ISupportInitialize)(this.dgvAllDisplay)).EndInit();
1790 1803
            this.panel2.ResumeLayout(false);
1791
            this.panel3.ResumeLayout(false);
1792 1804
            this.ResumeLayout(false);
1793 1805

  
1794 1806
        }
......
1911 1923
        private System.Windows.Forms.Button btnFinal;
1912 1924
        private System.Windows.Forms.Button btnSubJob;
1913 1925
        private System.Windows.Forms.Panel panel3;
1926
        private System.Windows.Forms.Label label20;
1914 1927
    }
1915 1928
}
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DRConstruction/FrmDRConstructionAuxiliary.cs
883 883
                ArrayList arList = new ArrayList();
884 884
                if (!DetailDB.ExecuteReader(strSQL, ref arList) || arList.Count == 0)
885 885
                {
886
                    // データ無は空行を表示する
887
                    dgv.Rows.Add(s_MinRowCountGrid[(int)DataGridDefine.Detail]);
888
                    // 合計表示
889
                    lblGrid1Total1.Text = "0.0";
890
                    double work = GetTotalHeadCount();
891
                    if (work==0)
892
                        lblGrid1Total2.Text = work.ToString("#,#.#");
893
                    else
894
                        lblGrid1Total2.Text = work.ToString("#,0.0");
895
                    lblGrid1Total3.Text = "0.0";
896
                    return;
886
                    if (!MaxDateCheck(ref arList))
887
                    {
888
                        // データ無は空行を表示する
889
                        dgv.Rows.Add(s_MinRowCountGrid[(int)DataGridDefine.Detail]);
890
                        // 合計表示
891
                        lblGrid1Total1.Text = "0.0";
892
                        double work = GetTotalHeadCount();
893
                        if (work == 0)
894
                            lblGrid1Total2.Text = work.ToString("#,#.#");
895
                        else
896
                            lblGrid1Total2.Text = work.ToString("#,0.0");
897
                        lblGrid1Total3.Text = "0.0";
898
                        return;
899
                    }
897 900
                }
898 901

  
899 902
                // グリッド表示
......
961 964
        }
962 965
        #endregion
963 966

  
967
        #region 現在指定日がデータの最終日より大きいかをチェックする
968
        /// <summary>
969
        /// 現在指定日がデータの最終日より大きいかをチェックする
970
        /// </summary>
971
        /// <returns></returns>
972
        private bool MaxDateCheck(ref ArrayList DispList)
973
        {
974
            IODailyDataDetail DetailDB = new IODailyDataDetail();
975
            try
976
            {
977
                DateTime MaxDate = GetFPNDataDate((int)ReadData.Final);
978
                if (MaxDate > dTPCreateDate.Value) return false;
979

  
980
                // 明細データ取得
981
                string strSQL = "SELECT A.JOBCATEGORYCODE";
982
                strSQL += ", B.JOBCATEGORYNAME";
983
                strSQL += ", A.COMPANYCODE";
984
                strSQL += ", C.COMPANYNAME";
985
                strSQL += ", A.NEXTDAYHEADCOUNT";
986
                strSQL += ", (A.TOTALHEADCOUNT + A.NEXTDAYHEADCOUNT)";
987
                strSQL += ", A.NEXTDAYWORK";
988
                strSQL += ", A.NEXTDAYWORK";
989
                strSQL += ", 0";
990
                strSQL += " FROM DAILYDATADETAIL A";
991
                strSQL += " LEFT JOIN SUBCONTRACTORJOBCATEGORY B ON A.JOBCATEGORYCODE = B.JOBCATEGORYCODE";
992
                strSQL += " LEFT JOIN SUBCONTRACTORMASTER C ON A.COMPANYCODE = C.COMPANYCODE";
993
                strSQL += DetailDB.CreatePrimarykeyString(m_PersonCode, MaxDate, m_ConstructionCode, 0);
994
                strSQL += " ORDER BY A.SEQNO";
995
                if (!DetailDB.ExecuteReader(strSQL, ref DispList) || DispList.Count == 0) return false;
996

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

  
964 1011
        #region 作業内容グリッドの合計を計算する
965 1012
        /// <summary>
966 1013
        /// 作業内容グリッドの合計を計算する
......
1856 1903
                bAns = DailyDataCheck();
1857 1904
                bRet &= bAns;
1858 1905

  
1906
                bool[] bDailyDataField = new bool[4];
1907
                Array.Clear(bDailyDataField, 0, bDailyDataField.Length);
1908
                CommonMotions.chgBackColor(m_DgvArray[4].Rows[0].Cells[(int)DispGridColumn5.ContentsText], true);
1909
                CommonMotions.chgBackColor(m_DgvArray[4].Rows[3].Cells[(int)DispGridColumn5.ContentsText], true);
1910
                CommonMotions.chgBackColor(m_DgvArray[4].Rows[6].Cells[(int)DispGridColumn5.ContentsText], true);
1911
                CommonMotions.chgBackColor(m_DgvArray[4].Rows[9].Cells[(int)DispGridColumn5.ContentsText], true);
1912

  
1859 1913
                foreach (DataGridView dgv in m_DgvArray)
1860 1914
                {
1915
                    ErrorRow = 0;
1861 1916
                    // 明細チェック
1862 1917
                    foreach (DataGridViewRow wrkRow in dgv.Rows)
1863 1918
                    {
......
1869 1924
                        else if (dgv == m_DgvArray[(int)DataGridDefine.Vehicles])
1870 1925
                        {
1871 1926
                            bAns = DailyDataVehiclesCheck(wrkRow, ref ErrorRow);
1927
                            if (ErrorRow != 0) dgvAllDisplay.FirstDisplayedScrollingRowIndex = ErrorRow;
1872 1928
                        }
1873 1929
                        else if (dgv == m_DgvArray[(int)DataGridDefine.Materials])
1874 1930
                        {
......
1880 1936
                        }
1881 1937
                        else if (dgv == m_DgvArray[(int)DataGridDefine.Field])
1882 1938
                        {
1883
                            bAns = DailyDataFieldCheck(wrkRow, ref ErrorRow);
1939
                            bAns = DailyDataFieldCheck(wrkRow, ref ErrorRow, ref bDailyDataField);
1884 1940
                        }
1885 1941
                        bRet &= bAns;
1886 1942
                    }
1943
                    // 最後のエラー行へ移動する
1944
                    if (ErrorRow != 0) dgv.FirstDisplayedScrollingRowIndex = ErrorRow;
1887 1945
                }
1946

  
1888 1947
                if (!bRet)
1889 1948
                {
1890 1949
                    MessageBox.Show("入力エラーがあります、確認してください。", "データ確認", MessageBoxButtons.OK, MessageBoxIcon.Warning);
1891 1950
                    return false;
1892 1951
                }
1893 1952

  
1894
                // 最後のエラー行へ移動する
1895
                dgvAllDisplay.FirstDisplayedScrollingRowIndex = ErrorRow;
1953
                int fieldcnt = 0;
1954
                for (int i = 0; i < bDailyDataField.Length; i++)
1955
                {
1956
                    if (bDailyDataField[i]) fieldcnt++;
1957
                }
1958
                if (fieldcnt < 4)
1959
                {
1960
                    dataGridViewEX4.Focus();
1961
                    CommonMotions.chgBackColor(m_DgvArray[4].Rows[0].Cells[(int)DispGridColumn5.ContentsText], false);
1962
                    CommonMotions.chgBackColor(m_DgvArray[4].Rows[3].Cells[(int)DispGridColumn5.ContentsText], false);
1963
                    CommonMotions.chgBackColor(m_DgvArray[4].Rows[6].Cells[(int)DispGridColumn5.ContentsText], false);
1964
                    CommonMotions.chgBackColor(m_DgvArray[4].Rows[9].Cells[(int)DispGridColumn5.ContentsText], false);
1896 1965

  
1966
                    MessageBox.Show("現場巡回は必須入力です、確認してください。", "データ確認", MessageBoxButtons.OK, MessageBoxIcon.Warning);
1967
                    return false;
1968
                }
1969
                
1970
                
1897 1971
                return true;
1898 1972
            }
1899 1973
            catch (System.Exception ex)
......
2036 2110
                        bAns = false;
2037 2111
                    }
2038 2112
                }
2113
                if (!bRet) ErrorRow = wrkRow.Index;
2114
                
2039 2115
                // 背景色変更
2040 2116
                CommonMotions.chgBackColor(wrkRow.Cells[(int)DispGridColumn1.NextdayHeadCount], bAns);
2041 2117
                bRet &= bAns;
......
2122 2198
                CommonMotions.chgBackColor(wrkRow.Cells[(int)DispGridColumn2.EndWorkingTime], bAns);
2123 2199
                bRet &= bAns;
2124 2200

  
2201
                if (!bRet) ErrorRow = wrkRow.Index;
2125 2202
                return bRet;
2126 2203
            }
2127 2204
            catch (System.Exception ex)
......
2191 2268
                CommonMotions.chgBackColor(wrkRow.Cells[(int)DispGridColumn3.QualityControl], bAns);
2192 2269
                bRet &= bAns;
2193 2270

  
2271
                if (!bRet) ErrorRow = wrkRow.Index;
2194 2272
                return bRet;
2195 2273
            }
2196 2274
            catch (System.Exception ex)
......
2233 2311
                CommonMotions.chgBackColor(wrkRow.Cells[(int)DispGridColumn4.ContentsText], bAns);
2234 2312
                bRet &= bAns;
2235 2313

  
2314
                if (!bRet) ErrorRow = wrkRow.Index;
2236 2315
                return bRet;
2237 2316
            }
2238 2317
            catch (System.Exception ex)
......
2248 2327
        /// 日報データ(現場巡回)チェック
2249 2328
        /// </summary>
2250 2329
        /// <returns></returns>
2251
        private bool DailyDataFieldCheck(DataGridViewRow wrkRow, ref int ErrorRow)
2330
        private bool DailyDataFieldCheck(DataGridViewRow wrkRow, ref int ErrorRow, ref bool[] bDailyDataField)
2252 2331
        {
2253 2332
            try
2254 2333
            {
2255
                return true;
2334
                bool bRet = true;
2335
                bool bAns = true;
2336
                int rowcnt = wrkRow.Index;
2337

  
2338
                string strtime = CommonMotions.cnvString(wrkRow.Cells[(int)DispGridColumn5.PatrolTime].Value);
2339
                string strcomment = CommonMotions.cnvString(wrkRow.Cells[(int)DispGridColumn5.ContentsText].Value);
2340

  
2341
                CommonMotions.chgBackColor(wrkRow.Cells[(int)DispGridColumn5.PatrolTime], bAns);
2342
                CommonMotions.chgBackColor(wrkRow.Cells[(int)DispGridColumn5.ContentsText], bAns);
2343

  
2344
                if (strtime.Length == 0 && strcomment.Length == 0) return true;
2345

  
2346
                if (strtime.Length != 0)
2347
                {
2348
                    // 巡回時間チェック
2349
                    bAns = CommonMotions.chkDate(strtime);
2350
                    // 背景色変更
2351
                    CommonMotions.chgBackColor(wrkRow.Cells[(int)DispGridColumn5.PatrolTime], bAns);
2352
                    bRet &= bAns;
2353
                }
2354

  
2355
                // 巡回状況チェック
2356
                bAns = CommonMotions.chkStringLength(strcomment, 200, true);
2357
                // 背景色変更
2358
                CommonMotions.chgBackColor(wrkRow.Cells[(int)DispGridColumn5.ContentsText], bAns);
2359
                bRet &= bAns;
2360

  
2361
                if (0 <= rowcnt && rowcnt < 3)
2362
                {
2363
                    if (strcomment.Length != 0) bDailyDataField[0] = true;
2364
                }
2365
                else if (3 <= rowcnt && rowcnt < 6)
2366
                {
2367
                    if (strcomment.Length != 0) bDailyDataField[1] = true;
2368
                }
2369
                else if (6 <= rowcnt && rowcnt < 9)
2370
                {
2371
                    if (strcomment.Length != 0) bDailyDataField[2] = true;
2372
                }
2373
                else if (9 <= rowcnt && rowcnt < 12)
2374
                {
2375
                    if (strcomment.Length != 0) bDailyDataField[3] = true;
2376
                }
2377

  
2378
                return bRet;
2256 2379
            }
2257 2380
            catch (System.Exception ex)
2258 2381
            {
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/PurchaseOrderEntry/FrmOrderEntryListAuxiliary.cs
197 197
                strSQL += " LEFT JOIN CONSTRUCTIONBASEINFODETAIL B ON B.CONSTRUCTIONCODE = A.SOURCECODE";
198 198
                strSQL += string.Format(" AND B.DETAILNO = {0}", (int)ConstructionBaseInfoDetail.DetailDataNo.ConstructionName);
199 199

  
200
                strSQL += " LEFT JOIN PURCHASEORDERDETAIL E ON E.CONSTRUCTIONCODE = A.SOURCECODE";
200
                strSQL += " LEFT JOIN PURCHASEORDERDETAIL E ON E.CONSTRUCTIONCODE = A.SOURCECODE AND (E.SOURCELINECNT = A.LINECOUNT OR E.SOURCELINECNT = 0)";
201 201

  
202
                strSQL += " LEFT JOIN PURCHASEORDER F ON F.CONSTRUCTIONCODE = E.CONSTRUCTIONCODE AND F.COMPANYCODE = A.COMPANYCODE AND F.ORDERPRICE like A.EXECUTIONAMOUNT";
202
                strSQL += " LEFT JOIN PURCHASEORDER F ON F.CONSTRUCTIONCODE = E.CONSTRUCTIONCODE AND F.COMPANYCODE = A.COMPANYCODE";
203 203

  
204 204
                strSQL += " LEFT JOIN PROCESSAPPROVALDETAIL G ON G.CONSTRUCTIONCODE = F.CONSTRUCTIONCODE AND G.APPROVALCODE = 4 AND G.LINKCODE = F.SEQNO";
205 205

  
......
511 511
                {
512 512
                    object[] ObjRec = (object[])m_OrderFrm.DetailList[ix];
513 513

  
514
                    foreach (DataGridViewRow ChkRow in dgv.Rows)
515
                    {
516
                        // 画面上でデータを探す
517
                        if (CommonMotions.cnvInt(ObjRec[(int)ReadDBColumn.SourceCode])
518
                            != CommonMotions.cnvInt(ChkRow.Cells[(int)GridColumn.SourceCode].Value)) continue;
514
                    DataGridViewRow ChkRow = dgv.Rows[ix];
519 515

  
520
                        if (CommonMotions.cnvInt(ObjRec[(int)ReadDBColumn.CompanyCode])
521
                            != CommonMotions.cnvInt(ChkRow.Cells[(int)GridColumn.CompanyCode].Value)) continue;
516
                    if (CommonMotions.cnvInt(ObjRec[(int)ReadDBColumn.CompanyCode])
517
                        != CommonMotions.cnvInt(ChkRow.Cells[(int)GridColumn.CompanyCode].Value)) continue;
522 518

  
523
                        // 作成対象外のチェック
524
                        if (!CommonMotions.chkCellBlank(ChkRow.Cells[(int)GridColumn.NotCreate].Value))
525
                        {
526
                            if ((bool)ChkRow.Cells[(int)GridColumn.NotCreate].Value)
527
                            {
528
                                // 内部データ削除(親フォームのプロパティを編集する)
529
                                m_OrderFrm.DetailList.RemoveAt(ix);
530
                                break;
531
                            }
532
                        }
519
                    // 作成対象外のチェック 内部データ削除(親フォームのプロパティを編集する)
520
                    if (CommonMotions.chkCellBlank(ChkRow.Cells[(int)GridColumn.NotCreate].Value))
521
                    {
522
                        m_OrderFrm.DetailList.RemoveAt(ix);
523
                        continue;
524
                    }
525
                    if ((bool)ChkRow.Cells[(int)GridColumn.NotCreate].Value)
526
                    {
527
                        m_OrderFrm.DetailList.RemoveAt(ix);
528
                        continue;
529
                    }
533 530

  
534
                        // 選択フラグのチェック
535
                        if (!CommonMotions.chkCellBlank(ChkRow.Cells[(int)GridColumn.SelectExec].Value))
536
                        {
537
                            if (!(bool)ChkRow.Cells[(int)GridColumn.SelectExec].Value)
538
                            {
539
                                // 内部データ削除(親フォームのプロパティを編集する)
540
                                m_OrderFrm.DetailList.RemoveAt(ix);
541
                                break;
542
                            }
543
                        }
544
                        break;
531
                    // 選択フラグのチェック
532
                    if (CommonMotions.chkCellBlank(ChkRow.Cells[(int)GridColumn.SelectExec].Value))
533
                    {
534
                        m_OrderFrm.DetailList.RemoveAt(ix);
535
                        continue;
545 536
                    }
537
                    if (!(bool)ChkRow.Cells[(int)GridColumn.SelectExec].Value)
538
                    {
539
                        // 内部データ削除(親フォームのプロパティを編集する)
540
                        m_OrderFrm.DetailList.RemoveAt(ix);
541
                        continue;
542
                    }
546 543
                }
547 544
            }
548 545
            catch (Exception ex)
trunk/src/ProcessManagement/ProcessManagement/Forms/DataEntry/PurchaseOrderEntry/FrmPurchaseOrderEntry.Designer.cs
28 28
        /// </summary>
29 29
        private void InitializeComponent()
30 30
        {
31
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
32
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
31
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
32
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
38
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
39
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
40
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
41
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
42 42
            this.label1 = new System.Windows.Forms.Label();
43 43
            this.panel1 = new System.Windows.Forms.Panel();
44 44
            this.btnInputImage = new System.Windows.Forms.Button();
......
73 73
            this.btnEnd = new System.Windows.Forms.Button();
74 74
            this.tabPage1 = new System.Windows.Forms.TabPage();
75 75
            this.panel3 = new System.Windows.Forms.Panel();
76
            this.lbl001 = new System.Windows.Forms.Label();
77
            this.lbl003 = new System.Windows.Forms.Label();
78
            this.label18 = new System.Windows.Forms.Label();
79
            this.txtBoxS001 = new System.Windows.Forms.TextBox();
80
            this.lbl002 = new System.Windows.Forms.Label();
81
            this.label15 = new System.Windows.Forms.Label();
82
            this.TabCollections = new System.Windows.Forms.TabControl();
83
            this.btnOtherProc = new System.Windows.Forms.Button();
84
            this.btnPageDelete = new System.Windows.Forms.Button();
85
            this.btnChangeCompany = new System.Windows.Forms.Button();
86 76
            this.groupBox3 = new ProcessManagement.Forms.CustomControls.GroupBoxEx();
87 77
            this.label40 = new System.Windows.Forms.Label();
88 78
            this.txtBoxR013 = new System.Windows.Forms.TextBox();
......
130 120
            this.label19 = new System.Windows.Forms.Label();
131 121
            this.label6 = new System.Windows.Forms.Label();
132 122
            this.label22 = new System.Windows.Forms.Label();
123
            this.lbl001 = new System.Windows.Forms.Label();
124
            this.lbl003 = new System.Windows.Forms.Label();
125
            this.label18 = new System.Windows.Forms.Label();
126
            this.txtBoxS001 = new System.Windows.Forms.TextBox();
127
            this.lbl002 = new System.Windows.Forms.Label();
133 128
            this.groupBox4 = new ProcessManagement.Forms.CustomControls.GroupBoxEx();
134 129
            this.dgvTerms = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
135 130
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
......
142 137
            this.btnDispDown = new System.Windows.Forms.Button();
143 138
            this.btnDispUp = new System.Windows.Forms.Button();
144 139
            this.dgvAllDisplay = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
140
            this.label15 = new System.Windows.Forms.Label();
141
            this.TabCollections = new System.Windows.Forms.TabControl();
142
            this.btnOtherProc = new System.Windows.Forms.Button();
143
            this.btnPageDelete = new System.Windows.Forms.Button();
144
            this.btnChangeCompany = new System.Windows.Forms.Button();
145 145
            this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
146 146
            this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
147 147
            this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
......
158 158
            this.pnlApprovalButton.SuspendLayout();
159 159
            this.tabPage1.SuspendLayout();
160 160
            this.panel3.SuspendLayout();
161
            this.TabCollections.SuspendLayout();
162 161
            this.groupBox3.SuspendLayout();
163 162
            this.groupBox2.SuspendLayout();
164 163
            this.groupBox5.SuspendLayout();
......
166 165
            ((System.ComponentModel.ISupportInitialize)(this.dgvTerms)).BeginInit();
167 166
            this.groupBox1.SuspendLayout();
168 167
            ((System.ComponentModel.ISupportInitialize)(this.dgvAllDisplay)).BeginInit();
168
            this.TabCollections.SuspendLayout();
169 169
            this.SuspendLayout();
170 170
            // 
171 171
            // label1
......
607 607
            this.panel3.TabIndex = 0;
608 608
            this.panel3.Scroll += new System.Windows.Forms.ScrollEventHandler(this.BasePanel_Scroll);
609 609
            // 
610
            // lbl001
611
            // 
612
            this.lbl001.BackColor = System.Drawing.Color.White;
613
            this.lbl001.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
614
            this.lbl001.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
615
            this.lbl001.Location = new System.Drawing.Point(8, 8);
616
            this.lbl001.Name = "lbl001";
617
            this.lbl001.Size = new System.Drawing.Size(166, 22);
618
            this.lbl001.TabIndex = 73;
619
            this.lbl001.Text = "2016999901-001";
620
            this.lbl001.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
621
            // 
622
            // lbl003
623
            // 
624
            this.lbl003.BackColor = System.Drawing.Color.White;
625
            this.lbl003.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
626
            this.lbl003.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
627
            this.lbl003.Location = new System.Drawing.Point(874, 8);
628
            this.lbl003.Name = "lbl003";
629
            this.lbl003.Size = new System.Drawing.Size(170, 22);
630
            this.lbl003.TabIndex = 72;
631
            this.lbl003.Text = "\\999,999,999-";
632
            this.lbl003.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
633
            // 
634
            // label18
635
            // 
636
            this.label18.BackColor = System.Drawing.Color.SandyBrown;
637
            this.label18.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
638
            this.label18.Location = new System.Drawing.Point(696, 7);
639
            this.label18.Name = "label18";
640
            this.label18.Size = new System.Drawing.Size(170, 25);
641
            this.label18.TabIndex = 71;
642
            this.label18.Text = "台帳発注金額(税別)";
643
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
644
            // 
645
            // txtBoxS001
646
            // 
647
            this.txtBoxS001.Location = new System.Drawing.Point(1180, 8);
648
            this.txtBoxS001.Name = "txtBoxS001";
649
            this.txtBoxS001.Size = new System.Drawing.Size(114, 23);
650
            this.txtBoxS001.TabIndex = 66;
651
            // 
652
            // lbl002
653
            // 
654
            this.lbl002.BackColor = System.Drawing.Color.White;
655
            this.lbl002.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
656
            this.lbl002.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
657
            this.lbl002.Location = new System.Drawing.Point(182, 8);
658
            this.lbl002.Name = "lbl002";
659
            this.lbl002.Size = new System.Drawing.Size(500, 22);
660
            this.lbl002.TabIndex = 70;
661
            this.lbl002.Text = "協力会社名称";
662
            this.lbl002.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
663
            // 
664
            // label15
665
            // 
666
            this.label15.BackColor = System.Drawing.Color.Cyan;
667
            this.label15.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
668
            this.label15.Location = new System.Drawing.Point(1052, 7);
669
            this.label15.Name = "label15";
670
            this.label15.Size = new System.Drawing.Size(120, 25);
671
            this.label15.TabIndex = 69;
672
            this.label15.Text = "発注書作成日";
673
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
674
            // 
675
            // TabCollections
676
            // 
677
            this.TabCollections.Alignment = System.Windows.Forms.TabAlignment.Bottom;
678
            this.TabCollections.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
679
            | System.Windows.Forms.AnchorStyles.Left) 
680
            | System.Windows.Forms.AnchorStyles.Right)));
681
            this.TabCollections.Controls.Add(this.tabPage1);
682
            this.TabCollections.Location = new System.Drawing.Point(7, 150);
683
            this.TabCollections.Name = "TabCollections";
684
            this.TabCollections.SelectedIndex = 0;
685
            this.TabCollections.Size = new System.Drawing.Size(1330, 502);
686
            this.TabCollections.TabIndex = 56;
687
            // 
688
            // btnOtherProc
689
            // 
690
            this.btnOtherProc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
691
            this.btnOtherProc.BackColor = System.Drawing.Color.SpringGreen;
692
            this.btnOtherProc.Location = new System.Drawing.Point(7, 656);
693
            this.btnOtherProc.Name = "btnOtherProc";
694
            this.btnOtherProc.Size = new System.Drawing.Size(160, 30);
695
            this.btnOtherProc.TabIndex = 95;
696
            this.btnOtherProc.TabStop = false;
697
            this.btnOtherProc.Text = "他の画面へ";
698
            this.btnOtherProc.UseVisualStyleBackColor = false;
699
            this.btnOtherProc.Click += new System.EventHandler(this.btnOtherProc_Click);
700
            // 
701
            // btnPageDelete
702
            // 
703
            this.btnPageDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
704
            this.btnPageDelete.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
705
            this.btnPageDelete.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
706
            this.btnPageDelete.ForeColor = System.Drawing.Color.Black;
707
            this.btnPageDelete.Location = new System.Drawing.Point(812, 656);
708
            this.btnPageDelete.Name = "btnPageDelete";
709
            this.btnPageDelete.Size = new System.Drawing.Size(120, 30);
710
            this.btnPageDelete.TabIndex = 96;
711
            this.btnPageDelete.Text = "ページ削除";
712
            this.btnPageDelete.UseVisualStyleBackColor = false;
713
            this.btnPageDelete.Click += new System.EventHandler(this.btnPageDelete_Click);
714
            // 
715
            // btnChangeCompany
716
            // 
717
            this.btnChangeCompany.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
718
            this.btnChangeCompany.BackColor = System.Drawing.Color.DeepSkyBlue;
719
            this.btnChangeCompany.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
720
            this.btnChangeCompany.ForeColor = System.Drawing.Color.Black;
721
            this.btnChangeCompany.Location = new System.Drawing.Point(686, 655);
722
            this.btnChangeCompany.Name = "btnChangeCompany";
723
            this.btnChangeCompany.Size = new System.Drawing.Size(120, 30);
724
            this.btnChangeCompany.TabIndex = 97;
725
            this.btnChangeCompany.Text = "発注先変更";
726
            this.btnChangeCompany.UseVisualStyleBackColor = false;
727
            this.btnChangeCompany.Click += new System.EventHandler(this.btnChangeCompany_Click);
728
            // 
729 610
            // groupBox3
730 611
            // 
731 612
            this.groupBox3.BackColor = System.Drawing.Color.White;
......
1287 1168
            this.label22.Text = "人";
1288 1169
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1289 1170
            // 
1171
            // lbl001
1172
            // 
1173
            this.lbl001.BackColor = System.Drawing.Color.White;
1174
            this.lbl001.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1175
            this.lbl001.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1176
            this.lbl001.Location = new System.Drawing.Point(8, 8);
1177
            this.lbl001.Name = "lbl001";
1178
            this.lbl001.Size = new System.Drawing.Size(166, 22);
1179
            this.lbl001.TabIndex = 73;
1180
            this.lbl001.Text = "2016999901-001";
1181
            this.lbl001.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
1182
            // 
1183
            // lbl003
1184
            // 
1185
            this.lbl003.BackColor = System.Drawing.Color.White;
1186
            this.lbl003.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1187
            this.lbl003.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1188
            this.lbl003.Location = new System.Drawing.Point(874, 8);
1189
            this.lbl003.Name = "lbl003";
1190
            this.lbl003.Size = new System.Drawing.Size(170, 22);
1191
            this.lbl003.TabIndex = 72;
1192
            this.lbl003.Text = "\\999,999,999-";
1193
            this.lbl003.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
1194
            // 
1195
            // label18
1196
            // 
1197
            this.label18.BackColor = System.Drawing.Color.SandyBrown;
1198
            this.label18.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1199
            this.label18.Location = new System.Drawing.Point(696, 7);
1200
            this.label18.Name = "label18";
1201
            this.label18.Size = new System.Drawing.Size(170, 25);
1202
            this.label18.TabIndex = 71;
1203
            this.label18.Text = "台帳発注金額(税別)";
1204
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1205
            // 
1206
            // txtBoxS001
1207
            // 
1208
            this.txtBoxS001.Location = new System.Drawing.Point(1180, 8);
1209
            this.txtBoxS001.Name = "txtBoxS001";
1210
            this.txtBoxS001.Size = new System.Drawing.Size(114, 23);
1211
            this.txtBoxS001.TabIndex = 66;
1212
            // 
1213
            // lbl002
1214
            // 
1215
            this.lbl002.BackColor = System.Drawing.Color.White;
1216
            this.lbl002.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1217
            this.lbl002.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1218
            this.lbl002.Location = new System.Drawing.Point(182, 8);
1219
            this.lbl002.Name = "lbl002";
1220
            this.lbl002.Size = new System.Drawing.Size(500, 22);
1221
            this.lbl002.TabIndex = 70;
1222
            this.lbl002.Text = "協力会社名称";
1223
            this.lbl002.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
1224
            // 
1290 1225
            // groupBox4
1291 1226
            // 
1292 1227
            this.groupBox4.BackColor = System.Drawing.Color.White;
......
1307 1242
            this.dgvTerms.AllowUserToResizeRows = false;
1308 1243
            this.dgvTerms.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1309 1244
            this.dgvTerms.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1310
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1311
            dataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Control;
1312
            dataGridViewCellStyle12.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1313
            dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.WindowText;
1314
            dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1315
            dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1316
            dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1317
            this.dgvTerms.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle12;
1245
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1246
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
1247
            dataGridViewCellStyle1.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1248
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
1249
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1250
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1251
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1252
            this.dgvTerms.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
1318 1253
            this.dgvTerms.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
1319 1254
            this.dgvTerms.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
1320 1255
            this.dataGridViewTextBoxColumn2,
......
1332 1267
            // 
1333 1268
            // dataGridViewTextBoxColumn2
1334 1269
            // 
1335
            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1336
            this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle13;
1270
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1271
            this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle2;
1337 1272
            this.dataGridViewTextBoxColumn2.Frozen = true;
1338 1273
            this.dataGridViewTextBoxColumn2.HeaderText = "№";
1339 1274
            this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
......
1344 1279
            // 
1345 1280
            // dataGridViewTextBoxColumn12
1346 1281
            // 
1347
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1348
            this.dataGridViewTextBoxColumn12.DefaultCellStyle = dataGridViewCellStyle14;
1282
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1283
            this.dataGridViewTextBoxColumn12.DefaultCellStyle = dataGridViewCellStyle3;
1349 1284
            this.dataGridViewTextBoxColumn12.HeaderText = "条   件";
1350 1285
            this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
1351 1286
            this.dataGridViewTextBoxColumn12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1444 1379
            this.dgvAllDisplay.AllowUserToResizeRows = false;
1445 1380
            this.dgvAllDisplay.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
1446 1381
            this.dgvAllDisplay.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1447
            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1448
            dataGridViewCellStyle15.BackColor = System.Drawing.SystemColors.Control;
1449
            dataGridViewCellStyle15.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1450
            dataGridViewCellStyle15.ForeColor = System.Drawing.SystemColors.WindowText;
1451
            dataGridViewCellStyle15.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1452
            dataGridViewCellStyle15.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1453
            dataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1454
            this.dgvAllDisplay.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle15;
1382
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1383
            dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
1384
            dataGridViewCellStyle4.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1385
            dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
1386
            dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
1387
            dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
1388
            dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
1389
            this.dgvAllDisplay.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4;
1455 1390
            this.dgvAllDisplay.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
1456 1391
            this.dgvAllDisplay.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
1457 1392
            this.dataGridViewTextBoxColumn1,
......
1475 1410
            this.dgvAllDisplay.Size = new System.Drawing.Size(1230, 214);
1476 1411
            this.dgvAllDisplay.TabIndex = 1;
1477 1412
            // 
1413
            // label15
1414
            // 
1415
            this.label15.BackColor = System.Drawing.Color.Cyan;
1416
            this.label15.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
1417
            this.label15.Location = new System.Drawing.Point(1052, 7);
1418
            this.label15.Name = "label15";
1419
            this.label15.Size = new System.Drawing.Size(120, 25);
1420
            this.label15.TabIndex = 69;
1421
            this.label15.Text = "発注書作成日";
1422
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1423
            // 
1424
            // TabCollections
1425
            // 
1426
            this.TabCollections.Alignment = System.Windows.Forms.TabAlignment.Bottom;
1427
            this.TabCollections.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
1428
            | System.Windows.Forms.AnchorStyles.Left) 
1429
            | System.Windows.Forms.AnchorStyles.Right)));
1430
            this.TabCollections.Controls.Add(this.tabPage1);
1431
            this.TabCollections.Location = new System.Drawing.Point(7, 150);
1432
            this.TabCollections.Name = "TabCollections";
1433
            this.TabCollections.SelectedIndex = 0;
1434
            this.TabCollections.Size = new System.Drawing.Size(1330, 502);
1435
            this.TabCollections.TabIndex = 56;
1436
            // 
1437
            // btnOtherProc
1438
            // 
1439
            this.btnOtherProc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
1440
            this.btnOtherProc.BackColor = System.Drawing.Color.SpringGreen;
1441
            this.btnOtherProc.Location = new System.Drawing.Point(7, 656);
1442
            this.btnOtherProc.Name = "btnOtherProc";
1443
            this.btnOtherProc.Size = new System.Drawing.Size(160, 30);
1444
            this.btnOtherProc.TabIndex = 95;
1445
            this.btnOtherProc.TabStop = false;
1446
            this.btnOtherProc.Text = "他の画面へ";
1447
            this.btnOtherProc.UseVisualStyleBackColor = false;
1448
            this.btnOtherProc.Click += new System.EventHandler(this.btnOtherProc_Click);
1449
            // 
1450
            // btnPageDelete
1451
            // 
1452
            this.btnPageDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
1453
            this.btnPageDelete.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
1454
            this.btnPageDelete.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1455
            this.btnPageDelete.ForeColor = System.Drawing.Color.Black;
1456
            this.btnPageDelete.Location = new System.Drawing.Point(812, 656);
1457
            this.btnPageDelete.Name = "btnPageDelete";
1458
            this.btnPageDelete.Size = new System.Drawing.Size(120, 30);
1459
            this.btnPageDelete.TabIndex = 96;
1460
            this.btnPageDelete.Text = "ページ削除";
1461
            this.btnPageDelete.UseVisualStyleBackColor = false;
1462
            this.btnPageDelete.Click += new System.EventHandler(this.btnPageDelete_Click);
1463
            // 
1464
            // btnChangeCompany
1465
            // 
1466
            this.btnChangeCompany.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
1467
            this.btnChangeCompany.BackColor = System.Drawing.Color.DeepSkyBlue;
1468
            this.btnChangeCompany.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
1469
            this.btnChangeCompany.ForeColor = System.Drawing.Color.Black;
1470
            this.btnChangeCompany.Location = new System.Drawing.Point(686, 655);
1471
            this.btnChangeCompany.Name = "btnChangeCompany";
1472
            this.btnChangeCompany.Size = new System.Drawing.Size(120, 30);
1473
            this.btnChangeCompany.TabIndex = 97;
1474
            this.btnChangeCompany.Text = "発注先変更";
1475
            this.btnChangeCompany.UseVisualStyleBackColor = false;
1476
            this.btnChangeCompany.Click += new System.EventHandler(this.btnChangeCompany_Click);
1477
            // 
1478 1478
            // dataGridViewTextBoxColumn1
1479 1479
            // 
1480
            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1481
            this.dataGridViewTextBoxColumn1.DefaultCellStyle = dataGridViewCellStyle16;
1480
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1481
            this.dataGridViewTextBoxColumn1.DefaultCellStyle = dataGridViewCellStyle5;
1482 1482
            this.dataGridViewTextBoxColumn1.Frozen = true;
1483 1483
            this.dataGridViewTextBoxColumn1.HeaderText = "№";
1484 1484
            this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
......
1516 1516
            // 
1517 1517
            // Column5
1518 1518
            // 
1519
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1520
            this.Column5.DefaultCellStyle = dataGridViewCellStyle17;
1519
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1520
            this.Column5.DefaultCellStyle = dataGridViewCellStyle6;
1521 1521
            this.Column5.Frozen = true;
1522 1522
            this.Column5.HeaderText = "工 種・品 名";
1523 1523
            this.Column5.Name = "Column5";
......
1527 1527
            // 
1528 1528
            // Column6
1529 1529
            // 
1530
            dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1531
            this.Column6.DefaultCellStyle = dataGridViewCellStyle18;
1530
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
1531
            this.Column6.DefaultCellStyle = dataGridViewCellStyle7;
1532 1532
            this.Column6.Frozen = true;
1533 1533
            this.Column6.HeaderText = "内 容 内 訳";
1534 1534
            this.Column6.Name = "Column6";
......
1538 1538
            // 
1539 1539
            // Column7
1540 1540
            // 
1541
            dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1542
            dataGridViewCellStyle19.Format = "N0";
1543
            dataGridViewCellStyle19.NullValue = null;
1544
            this.Column7.DefaultCellStyle = dataGridViewCellStyle19;
1541
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1542
            dataGridViewCellStyle8.Format = "N0";
1543
            dataGridViewCellStyle8.NullValue = null;
1544
            this.Column7.DefaultCellStyle = dataGridViewCellStyle8;
1545
            this.Column7.Frozen = true;
1545 1546
            this.Column7.HeaderText = "数 量";
1546 1547
            this.Column7.Name = "Column7";
1547 1548
            this.Column7.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1550 1551
            // 
1551 1552
            // Column8
1552 1553
            // 
1553
            dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1554
            this.Column8.DefaultCellStyle = dataGridViewCellStyle20;
1554
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
1555
            this.Column8.DefaultCellStyle = dataGridViewCellStyle9;
1556
            this.Column8.Frozen = true;
1555 1557
            this.Column8.HeaderText = "単 位";
1556 1558
            this.Column8.Name = "Column8";
1557 1559
            this.Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1560 1562
            // 
1561 1563
            // Column11
1562 1564
            // 
1563
            dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1564
            this.Column11.DefaultCellStyle = dataGridViewCellStyle21;
1565
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1566
            this.Column11.DefaultCellStyle = dataGridViewCellStyle10;
1567
            this.Column11.Frozen = true;
1565 1568
            this.Column11.HeaderText = "単 価";
1566 1569
            this.Column11.Name = "Column11";
1567 1570
            this.Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1570 1573
            // 
1571 1574
            // Column12
1572 1575
            // 
1573
            dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1574
            this.Column12.DefaultCellStyle = dataGridViewCellStyle22;
1576
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
1577
            this.Column12.DefaultCellStyle = dataGridViewCellStyle11;
1578
            this.Column12.Frozen = true;
1575 1579
            this.Column12.HeaderText = "金 額";
1576 1580
            this.Column12.Name = "Column12";
1577 1581
            this.Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
......
1612 1616
            this.tabPage1.ResumeLayout(false);
1613 1617
            this.panel3.ResumeLayout(false);
1614 1618
            this.panel3.PerformLayout();
1615
            this.TabCollections.ResumeLayout(false);
1616 1619
            this.groupBox3.ResumeLayout(false);
1617 1620
            this.groupBox3.PerformLayout();
1618 1621
            this.groupBox2.ResumeLayout(false);
......
1624 1627
            this.groupBox1.ResumeLayout(false);
1625 1628
            this.groupBox1.PerformLayout();
1626 1629
            ((System.ComponentModel.ISupportInitialize)(this.dgvAllDisplay)).EndInit();
1630
            this.TabCollections.ResumeLayout(false);
1627 1631
            this.ResumeLayout(false);
1628 1632

  
1629 1633
        }
......
1724 1728
        private System.Windows.Forms.Label label15;
1725 1729
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
1726 1730
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
1731
        private CustomControls.GroupBoxEx groupBox5;
1732
        private System.Windows.Forms.TextBox textBox3;
1733
        private System.Windows.Forms.Label label20;
1734
        private System.Windows.Forms.Label label19;
1735
        private System.Windows.Forms.Label label22;
1736
        private System.Windows.Forms.ComboBox comboBox1;
1737
        private System.Windows.Forms.ComboBox comboBox2;
... 差分の行数が表示可能な上限を超えました。超過分は表示しません。

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