Esempio n. 1
0
        /* Статус Not Ok (не всё хорошо, открываем форму для внесения пометок) */
        private void btn_NotOk_Click(object sender, EventArgs e)
        {
            IndexingDetails id = new IndexingDetails(ProductId, ASIN, SKU, ProductName, this, Date);

            id.Show();

            this.Visible = false;
        }
Esempio n. 2
0
        /* Показать Notes для выбранного дня */
        private void showHistoryToolStripMenuItem_Click(object sender, EventArgs e)
        {
            int row = dataGridView1.CurrentCell.RowIndex;
            int col = dataGridView1.CurrentCell.ColumnIndex;

            if (dataGridView1.Rows[row].Cells[col].Value != null && dataGridView1.Rows[row].Cells[col].Value.ToString().Equals("Not Ok"))
            {
                int    proId    = int.Parse(dataGridView1.Rows[row].Cells[0].Value.ToString());
                string asin     = dataGridView1.Rows[row].Cells[2].Value.ToString();
                string prodName = dataGridView1.Rows[row].Cells[1].Value.ToString();
                string sku      = dataGridView1.Rows[row].Cells[3].Value.ToString();
                string dt       = dataGridView1.Columns[col].HeaderText;


                using (IndexingDetails indStatus = new IndexingDetails(proId, asin, sku, prodName, this, getDT(dt)))
                {
                    indStatus.ShowDialog();
                }
            }
        }