예제 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (Request.Params["id"] != null && Request.Params["id"].Trim() != "")
            {
                BuyOrder_ID = (Convert.ToInt32(Request.Params["id"]));
                ShowInfo(BuyOrder_ID);
            }
            if (!IsPostBack)
            {
                DropDownList1.DataSource     = Dept;
                DropDownList1.DataTextField  = "Name";
                DropDownList1.DataValueField = "Dept_ID";
                DropDownList1.DataBind();
                //DropDownList2.DataSource = Supplier;
                //DropDownList2.DataTextField = "Name";
                //DropDownList2.DataValueField = "Supplier_ID";
                //DropDownList2.DataBind();
                DropDownList3.DataSource     = Employee;
                DropDownList3.DataTextField  = "Name";
                DropDownList3.DataValueField = "Employee_ID";
                DropDownList3.DataBind();
                DropDownList4.DataSource     = StoreHouse;
                DropDownList4.DataTextField  = "Address";
                DropDownList4.DataValueField = "StoreHouse_ID";
                DropDownList4.DataBind();
            }
            DataSet BuyOrder_Detail = new BLL.BuyOrder_Detail().GetProDetail(BuyOrder_ID);

            Repeater1.DataSource = BuyOrder_Detail;
            Repeater1.DataBind();
            decimal TotalPrice = 0;

            foreach (RepeaterItem item in Repeater1.Items)
            {
                Label LB1 = (Label)item.FindControl("Label5"); //单价
                Label LB2 = (Label)item.FindControl("Label6"); //数量
                Label LB3 = (Label)item.FindControl("Label7"); //合计
                LB3.Text    = (Convert.ToDecimal(LB1.Text) * Convert.ToDecimal(LB2.Text)).ToString();
                TotalPrice += Convert.ToDecimal(LB3.Text);
            }
            Label8.Text = TotalPrice.ToString();
            Label9.Text = Maticsoft.Common.Rmb.CmycurD(TotalPrice);
        }
예제 #2
0
 protected void Button2_Click(object sender, EventArgs e)
 {
     if (HiddenField1.Value == "")
     {
         Maticsoft.Common.MessageBox.Show(this, "请添加商品");
         return;
     }
     else
     {
         Model.BuyOrder BuyOrder = new Model.BuyOrder();
         BuyOrder.Dept_ID     = Convert.ToInt32(DropDownList1.SelectedValue);
         BuyOrder.Employee_ID = Convert.ToInt32(DropDownList3.SelectedValue);
         BuyOrder.WriteDate   = DateTime.Now;
         BuyOrder.InsureDate  = DateTime.Now;
         BuyOrder.EndDate     = DateTime.Now;
         BuyOrder.Supplier_ID = Convert.ToInt32(DropDownList2.SelectedValue);
         BLL.BuyOrder bo         = new BLL.BuyOrder();
         Int32        BuyOrderId = bo.Add(BuyOrder);
         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.BuyOrder_Detail model = new Model.BuyOrder_Detail();
             BLL.BuyOrder_Detail   bd    = new BLL.BuyOrder_Detail();
             model.BuyOrder_ID = BuyOrderId;
             model.Product_ID  = Convert.ToInt32(ArrIds[i]);
             model.Quantity    = Convert.ToDecimal(ArrQty[i]);
             model.Price       = Convert.ToDecimal(ArrPri[i]);
             bd.Add(model);
         }
         Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!请到进货管理页进行入库操作", "/warehouse/BuyOrder/List.aspx");
     }
 }