Exemple #1
0
 private void ShowInfo()
 {
     ZhangWei.BLL.BackSale_Detail   bll   = new ZhangWei.BLL.BackSale_Detail();
     ZhangWei.Model.BackSale_Detail model = bll.GetModel();
     this.txtBackSale_ID.Text = model.BackSale_ID.ToString();
     this.txtProduct_ID.Text  = model.Product_ID.ToString();
     this.txtQuantity.Text    = model.Quantity.ToString();
     this.txtPrice.Text       = model.Price.ToString();
 }
Exemple #2
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtBackSale_ID.Text))
            {
                strErr += "BackSale_ID格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtProduct_ID.Text))
            {
                strErr += "Product_ID格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtQuantity.Text))
            {
                strErr += "Quantity格式错误!\\n";
            }
            if (!PageValidate.IsDecimal(txtPrice.Text))
            {
                strErr += "Price格式错误!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int     BackSale_ID = int.Parse(this.txtBackSale_ID.Text);
            int     Product_ID  = int.Parse(this.txtProduct_ID.Text);
            int     Quantity    = int.Parse(this.txtQuantity.Text);
            decimal Price       = decimal.Parse(this.txtPrice.Text);


            ZhangWei.Model.BackSale_Detail model = new ZhangWei.Model.BackSale_Detail();
            model.BackSale_ID = BackSale_ID;
            model.Product_ID  = Product_ID;
            model.Quantity    = Quantity;
            model.Price       = Price;

            ZhangWei.BLL.BackSale_Detail bll = new ZhangWei.BLL.BackSale_Detail();
            bll.Update(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "list.aspx");
        }
Exemple #3
0
 protected void Button2_Click(object sender, EventArgs e)
 {
     if (HiddenField1.Value == "")
     {
         Maticsoft.Common.MessageBox.Show(this, "请添加商品");
         return;
     }
     else
     {
         Model.BackSale ml_bs = new ZhangWei.Model.BackSale();
         ml_bs.BackDate      = Convert.ToDateTime(TextBox1.Text);
         ml_bs.Dept_ID       = Convert.ToInt32(DropDownList1.SelectedValue);
         ml_bs.Employee_ID   = Convert.ToInt32(DropDownList2.SelectedValue);
         ml_bs.StoreHouse_ID = Convert.ToInt32(DropDownList3.SelectedValue);
         ml_bs.Remark        = TextBox2.Text;
         ml_bs.Account       = DropDownList4.SelectedValue;
         ml_bs.Address       = TextBox3.Text;
         ml_bs.GatheringWay  = DropDownList6.SelectedValue;
         ml_bs.Customer      = Convert.ToInt32(DropDownList5.SelectedValue);//客户
         Int32    back_id = new BLL.BackSale().Add(ml_bs);
         string   Ids     = HiddenField1.Value.Replace(" ", "").Replace("\r\n", "");
         string   Qtys    = HiddenField2.Value.Replace(" ", "").Replace("\r\n", "");
         string   Prices  = HiddenField3.Value.Replace(" ", "").Replace("\r\n", "");
         string[] ArrIds  = Ids.Split(new char[] { '|' });
         string[] ArrQty  = Qtys.Split(new char[] { '|' });
         string[] ArrPri  = Prices.Split(new char[] { '|' });
         for (int i = 0; i < ArrIds.Length - 1; i++)
         {
             Model.BackSale_Detail ml_bd = new ZhangWei.Model.BackSale_Detail();
             BLL.BackSale_Detail   bl_bd = new ZhangWei.BLL.BackSale_Detail();
             ml_bd.BackSale_ID = back_id;
             ml_bd.Product_ID  = Convert.ToInt32(ArrIds[i]);
             ml_bd.Quantity    = Convert.ToDecimal(ArrQty[i]);
             ml_bd.Price       = Convert.ToDecimal(ArrPri[i]);
             Model.StockPile ml_sp = new BLL.StockPile().GetModelByProId(Convert.ToInt32(ArrIds[i]), Convert.ToInt32(DropDownList3.SelectedValue));
             BLL.StockPile   bl_sp = new ZhangWei.BLL.StockPile();
             if (ml_sp == null)
             {
                 Model.Product ml_pr = new BLL.Product().GetModel(Convert.ToInt32(ArrIds[i]));
                 ml_sp                = new ZhangWei.Model.StockPile();
                 ml_sp.Product_ID     = Convert.ToInt32(ArrIds[i]);
                 ml_sp.Dept_ID        = Convert.ToInt32(DropDownList1.SelectedValue);
                 ml_sp.FirstEnterDate = DateTime.Now;
                 ml_sp.LastLeaveDate  = DateTime.Now;
                 ml_sp.Price          = Convert.ToDecimal(ArrPri[i]);
                 ml_sp.Quantity       = 0;
                 ml_sp.StoreHouse_ID  = 1;
                 ml_sp.Quantity      += Convert.ToDecimal(ArrQty[i]);
                 bl_sp.Add(ml_sp);
             }
             else
             {
                 ml_sp.Quantity     += Convert.ToDecimal(ArrQty[i]);
                 ml_sp.LastLeaveDate = DateTime.Now;
                 bl_sp.Update(ml_sp);
             }
             bl_bd.Add(ml_bd);
         }
         Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "/Sales/BackSaleRecord.aspx");
     }
 }