示例#1
0
        private void txtPoundBillNumber_Click(object sender, EventArgs e)
        {
            FormOnepoundTable from = new FormOnepoundTable(txtNumbering.Text, false);

            from.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            if (from.ShowDialog() != System.Windows.Forms.DialogResult.OK)
            {
                return;
            }
            txtFishMealId.Text      = from._fish.FishMealId;
            txtPoundBillNumber.Text = from._fish.Code;
            txtNetWeight.Text       = from._fish.Competition;
        }
示例#2
0
 //单击
 private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
 {
     if (e.ColumnIndex < 0 || e.RowIndex < 0)
     {
         return;
     }
     if (dataGridView1.Rows[e.RowIndex].Cells["Numbering"].Value != null)
     {
         _list.Numbering = dataGridView1.Rows[e.RowIndex].Cells["Numbering"].Value.ToString();
         if (dataGridView1.Columns[e.ColumnIndex].Name.Equals("xssqBool", StringComparison.OrdinalIgnoreCase) == true)
         {
             if (Authority.ProcessControText("销售申请单") == true)
             {
                 FormSalesRequisition Sales = new FormSalesRequisition(_list.Numbering);
                 Sales.ShowDialog();
             }
         }
         if (dataGridView1.Columns[e.ColumnIndex].Name.Equals("xshtBool", StringComparison.OrdinalIgnoreCase) == true)
         {
             if (Authority.ProcessControText("现货销售合同") == true)
             {
                 FormSalesRContract SalesRCont = new FormSalesRContract(_list.Numbering);
                 SalesRCont.ShowDialog();
             }
         }
         if (dataGridView1.Columns[e.ColumnIndex].Name.Equals("fksqBool", StringComparison.OrdinalIgnoreCase) == true)
         {
             if (Authority.ProcessControText("付款申请单") == true)
             {
                 FormPaymentTabie PaymentTabie = new FormPaymentTabie(_list.Numbering, "X");
                 PaymentTabie.ShowDialog();
             }
         }
         if (dataGridView1.Columns[e.ColumnIndex].Name.Equals("thdBool", StringComparison.OrdinalIgnoreCase) == true)
         {
             if (Authority.ProcessControText("提货单") == true)
             {
                 FormBillofladingTable BillofladingTable = new FormBillofladingTable(_list.Numbering);
                 BillofladingTable.ShowDialog();
             }
         }
         if (dataGridView1.Columns[e.ColumnIndex].Name.Equals("bdbool", StringComparison.OrdinalIgnoreCase) == true)
         {
             if (Authority.ProcessControText("磅单") == true)
             {
                 FormOnepoundTable BillofladingTable = new FormOnepoundTable(_list.Numbering, false);
                 BillofladingTable.ShowDialog();
             }
         }
         if (dataGridView1.Columns[e.ColumnIndex].Name.Equals("hwfkBool", StringComparison.OrdinalIgnoreCase) == true)
         {
             if (Authority.ProcessControText("货物反馈单") == true)
             {
                 FormCargoFeedbackSheetTable CargoFeedbackSheetTable = new FormCargoFeedbackSheetTable(_list.Numbering);
                 CargoFeedbackSheetTable.ShowDialog();
             }
         }
         if (dataGridView1.Columns[e.ColumnIndex].Name.Equals("wtfkBool", StringComparison.OrdinalIgnoreCase) == true)
         {
             if (Authority.ProcessControText("公司问题反馈单") == true)
             {
                 FormTheproblemsheetTable Theproblemsheet = new FormTheproblemsheetTable(_list.Numbering);
                 Theproblemsheet.ShowDialog();
             }
         }
         if (dataGridView1.Columns[e.ColumnIndex].Name.Equals("skjlBool", StringComparison.OrdinalIgnoreCase) == true)
         {
             if (Authority.ProcessControText("收款记录单") == true)
             {
                 FormReceiptRecordtable ReceiptRecordtable = new FormReceiptRecordtable(_list.Numbering);
                 ReceiptRecordtable.ShowDialog();
             }
         }
         if (dataGridView1.Columns[e.ColumnIndex].Name.Equals("effect", StringComparison.OrdinalIgnoreCase) == true)
         {
             boolget = true;
         }
         else
         {
             boolget = false;
         }
     }
 }