Example #1
0
 public static int intFalg = 0;                   //控件方法状态
 public HY_Bomlist()
 {
     InitializeComponent();
     hybombll = new HY_BomlistBLL();
     hybomdel = new HY_BomDetailsBLL();
     valid    = new HYWJ.HY_System.OperateAndValidate();
 }
Example #2
0
        private LL.Main.HY_System.OperateAndValidate valid; //实例化数据验证类

        #endregion Fields

        #region Constructors

        public HY_Bomlist()
        {
            InitializeComponent();
            hybombll = new HY_BomlistBLL();
            hybomdel = new HY_BomDetailsBLL();
            valid = new LL.Main.HY_System.OperateAndValidate();
        }
Example #3
0
 private void dataGridViewBOM_DoubleClick(object sender, EventArgs e)
 {
     string i = this.dataGridViewBOM[0, this.dataGridViewBOM.CurrentCell.RowIndex].Value.ToString();
     this.tabControlBOM.SelectedTabIndex = 1;
     HY_BLL.HY_BomDetailsBLL hybomdel = new HY_BomDetailsBLL();
     this.dataGridViewBOMDET.AutoGenerateColumns = false;// 关闭自动创建列
     this.dataGridViewBOMDET.DataSource = hybomdel.ExecuteQuerySelect(i);
 }
 private void requistionDate(string sql)
 {
     HY_BLL.HY_BomDetailsBLL hyul = new HY_BomDetailsBLL();
     this.listView1.View = View.Details;
     this.listView1.FullRowSelect = true;
     SqlDataReader sdr = hyul.f_SQLBom(sql);
     while (sdr.Read())
     {
         string st = sdr[1].ToString();
         ListViewItem lv = new ListViewItem(sdr[0].ToString());
         if (st != string.Empty)
         {
             lv.SubItems.Add("已审核");
         }
         else
         {
             lv.SubItems.Add("未审核");
         }
         this.listView1.Items.Add(lv);
     }
 }
        private void btnTO_Click(object sender, EventArgs e)
        {
            string did = this.b_BID.Text.Trim();
            if (did == string.Empty)
            {
                MessageBoxEx.Show("请输入物料单号!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Error);
                this.b_BID.Focus();
                return;
            }
            did = did.Replace("B", "QG");
            HY_BLL.HY_BomDetailsBLL hybom = new HY_BomDetailsBLL();
            string sql = "select b_HDate from HY_BomInfo where b_SKID='" + did + "'";
            SqlDataReader sdr = hybom.f_SQLBom(sql);
            while (sdr.Read())
            {
                if (sdr[0].ToString() == string.Empty)
                {
                    MessageBoxEx.Show("此物料单还未审核,请部门经理审核后再抛单", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }

            HY_BLL.HY_RequisitionInfoBLL hyrepinfobll = new HY_RequisitionInfoBLL();
            string fsql = "select * from HY_RequisitionInfo where r_DID='" + did + "'";
            DataTable f = hyrepinfobll.ExecuteQuery(fsql);
            if (f.Rows.Count > 0)
            {
                MessageBox.Show("此请购单已抛转成采购单无需重复抛单!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Error);
                this.b_BID.Text = "";
            }
            else
            {
                string sql2 = "insert into HY_RequisitionInfo(r_DID,r_CID,r_NameID,r_Name,r_Person,r_Origin,r_Specifications,r_Amount,r_Hot,r_Notes,r_QDate,r_ModClass) select REPLACE(d_SKID,'B','QG'),d_CID,d_PID,d_PName,d_SPerson,d_Model,d_Specifications,d_Amount,d_Heat,d_Notes,'" + DateTime.Now + "',d_ModClass from HY_BomDetails WHERE d_SKID='" + this.b_BID.Text.Trim() + "'";
                int res = hyrepinfobll.com_ExecuteQuery(sql2);
                if (res > 0)
                {
                    MessageBox.Show("恭喜:请购单抛转采购单成功!", "提示", MessageBoxButtons.OK);
                }
            }
        }