Ejemplo n.º 1
0
 public static DepreciationQuery GetInstance()
 {
     if (dqform == null || dqform.IsDisposed)
     {
         dqform = new DepreciationQuery();
     }
     return(dqform);
 }
Ejemplo n.º 2
0
        private void barButtonItem查询_ItemClick(object sender, ItemClickEventArgs e)
        {
            DepreciationQuery Frm = DepreciationQuery.GetInstance();

            Frm.TopLevel = false;
            Frm.Parent   = this;
            Frm.Show();
            Frm.BringToFront();
        }
Ejemplo n.º 3
0
        private void LineType_Load(object sender, EventArgs e)
        {
            this.WindowState = FormWindowState.Maximized;
            DepreciationQuery Frm = DepreciationQuery.GetInstance();

            Frm.TopLevel = false;
            Frm.Parent   = this;
            Frm.Show();
            Frm.BringToFront();
        }
Ejemplo n.º 4
0
        private void barButtonItem修改_ItemClick(object sender, ItemClickEventArgs e)
        {
            string  yyyymm = "";
            int     id = 0, saletypeid = 0;
            decimal depreciation = 0;

            DepreciationQuery.GetInfo(ref id, ref yyyymm, ref saletypeid, ref depreciation);
            if (id != 0)
            {
                DepreciationUpdate Frm = new DepreciationUpdate();
                Frm.TopLevel = false;
                Frm.Parent   = this;
                Frm.Show();
                Frm.BringToFront();
            }
        }
Ejemplo n.º 5
0
        private void simpleButtonOK_Click(object sender, EventArgs e)
        {
            ConnDB conn = new ConnDB();
            string sql  = "update cost_depreciation set depreciation = ltrim(rtrim('" + textEditDepreciation.Text.ToString() + "'))";

            sql = sql + " where cid = " + textEditID.Text.ToString();
            bool isok = conn.EditDatabase(sql);

            if (isok)
            {
                MessageBox.Show("修改成功!");
                DepreciationQuery.RefreshEX();
                this.Close();
            }
            else
            {
                MessageBox.Show("失败!");
            }
            conn.Close();
        }
Ejemplo n.º 6
0
        private void simpleButton复制_Click(object sender, EventArgs e)
        {
            MessageBoxButtons messButton = MessageBoxButtons.OKCancel;
            DialogResult      dr         = MessageBox.Show("将按最近的月度数据自动新增当前选择月份的数据,确认复制吗?", "复制最近月份数据", messButton);

            if (dr == DialogResult.OK)
            {
                ConnDB   conn = new ConnDB();
                string   strsql, strsql2;
                int      rows;
                bool     isok  = false;
                DateTime dt1   = Convert.ToDateTime(dateTimePicker1.Text);
                DateTime dt2   = System.DateTime.Now;
                int      month = (dt2.Year - dt1.Year) * 12 + (dt2.Month - dt1.Month);
                strsql2 = "select yyyymm from cost_depreciation where yyyymm ='" + dateTimePicker1.Text.ToString() + "'";
                rows    = conn.ReturnRecordCount(strsql2);
                if (rows > 0)
                {
                    MessageBox.Show("该月度折旧费已经存在!");
                }
                else if (month < -1)
                {
                    MessageBox.Show("月份错误!");
                }
                else
                {
                    strsql = "insert into cost_depreciation(yyyymm,sale_type_id,depreciation) select '" + dateTimePicker1.Text + "',sale_type_id,depreciation from cost_depreciation where YYYYMM = (select Max(yyyymm) from cost_depreciation) ";
                    isok   = conn.EditDatabase(strsql);
                    if (isok)
                    {
                        MessageBox.Show("复制成功!");
                        DepreciationQuery.RefreshEX();
                        this.Close();
                    }
                }
                conn.Close();
            }
        }
Ejemplo n.º 7
0
        private void DepreciationUpdate_Load(object sender, EventArgs e)
        {
            string   yyyymm = "";
            int      id = 0, saletypeid = 0;
            decimal  depreciation = 0;
            DateTime dt           = DateTime.Now;
            DateTime startMonth   = dt.AddDays(1 - dt.Day); //本月月初

            this.dateTimePicker1.Value = startMonth;
            DepreciationQuery.GetInfo(ref id, ref yyyymm, ref saletypeid, ref depreciation);
            Common.BasicDataBind("cost_saletype", comboBoxSaleType);
            if (id != 0)
            {
                comboBoxSaleType.SelectedIndex = -1;
                comboBoxSaleType.SelectedValue = saletypeid;
                dateTimePicker1.Text           = yyyymm;
                textEditDepreciation.Text      = depreciation.ToString();
                textEditID.Text = id.ToString();
            }

            dateTimePicker1.Focus();
            SendKeys.Send("{RIGHT} ");
        }
Ejemplo n.º 8
0
        private void simpleButtonOK_Click(object sender, EventArgs e)
        {
            ConnDB conn = new ConnDB();
            string strsql, strsql2;
            int    rows;

            strsql  = "insert into cost_depreciation(yyyymm,sale_type_id,depreciation) values('" + dateTimePicker1.Text.ToString() + "'," + comboBoxSaleType.SelectedValue.ToString() + ",ltrim(rtrim(" + Common.IsNull(textEditDepreciation.Text.ToString()) + ")))";
            strsql2 = "select yyyymm from cost_depreciation where yyyymm ='" + dateTimePicker1.Text.ToString() + "' and sale_type_id = " + comboBoxSaleType.SelectedValue.ToString();
            if (textEditDepreciation.Text.ToString() != "")
            {
                rows = conn.ReturnRecordCount(strsql2);
                if (rows > 0)
                {
                    MessageBox.Show("该折旧费已经存在!");
                }
                else
                {
                    bool isok = conn.EditDatabase(strsql);
                    if (isok)
                    {
                        MessageBox.Show("添加成功!");
                        DepreciationQuery.RefreshEX();
                        this.Close();
                    }
                    else
                    {
                        MessageBox.Show("失败!");
                    }
                }
            }
            else
            {
                MessageBox.Show("折旧费不能为空!");
            }
            conn.Close();
        }
Ejemplo n.º 9
0
 private void barButtonItem刷新_ItemClick(object sender, ItemClickEventArgs e)
 {
     DepreciationQuery.RefreshEX();
 }