private void simpleButtonOK_Click(object sender, EventArgs e)
        {
            ConnDB conn = new ConnDB();
            string strsql, strsql2;
            int    rows;

            strsql  = "insert into cost_product_quantity(cdate,type,product_quantity) values('" + dateEditDate.Text.ToString() + "',1," + textEditQuantity.Text.ToString().Trim() + ")";
            strsql2 = "select cdate from cost_product_quantity where cdate ='" + dateEditDate.Text.ToString() + "' and type = 1";
            if (textEditQuantity.Text.ToString() != "")
            {
                rows = conn.ReturnRecordCount(strsql2);
                if (rows > 0)
                {
                    MessageBox.Show("此日期记录已经存在!");
                }
                else
                {
                    bool isok = conn.EditDatabase(strsql);
                    if (isok)
                    {
                        MessageBox.Show("添加成功!");
                        ProductQuantityQuery.RefreshEX();
                        this.Close();
                    }
                }
            }
            else
            {
                MessageBox.Show("台数不能为空!");
            }
            conn.Close();
        }
示例#2
0
 public static ProductQuantityQuery GetInstance()
 {
     if (ehqform == null || ehqform.IsDisposed)
     {
         ehqform = new ProductQuantityQuery();
     }
     return(ehqform);
 }
示例#3
0
        private void barButtonItem查询_ItemClick(object sender, ItemClickEventArgs e)
        {
            ProductQuantityQuery Frm = ProductQuantityQuery.GetInstance();

            Frm.TopLevel = false;
            Frm.Parent   = this;
            Frm.Show();
            Frm.BringToFront();
        }
示例#4
0
        private void ProductQuantity_Load(object sender, EventArgs e)
        {
            this.WindowState = FormWindowState.Maximized;
            ProductQuantityQuery Frm = ProductQuantityQuery.GetInstance();

            Frm.TopLevel = false;
            Frm.Parent   = this;
            Frm.Show();
            Frm.BringToFront();
        }
示例#5
0
 private void barButtonItem刷新_ItemClick(object sender, ItemClickEventArgs e)
 {
     ProductQuantityQuery.RefreshEX();
 }