示例#1
0
 protected int sid = 0;//结算供应商ID
 public void LoadPage()
 {
     models   = B_Lebi_BillType.GetList("", "Sort desc");
     billtype = models.FirstOrDefault();
     sid      = RequestTool.RequestInt("sid", 0);
     basket   = new Basket(sid);
 }
示例#2
0
 /// <summary>
 /// 安全方式绑定对象表单
 /// </summary>
 public Lebi_BillType SafeBindForm(Lebi_BillType model)
 {
     if (HttpContext.Current.Request["TaxRate"] != null)
     {
         model.TaxRate = Shop.Tools.RequestTool.RequestDecimal("TaxRate", 0);
     }
     if (HttpContext.Current.Request["Name"] != null)
     {
         model.Name = Shop.Tools.RequestTool.RequestSafeString("Name");
     }
     if (HttpContext.Current.Request["Description"] != null)
     {
         model.Description = Shop.Tools.RequestTool.RequestSafeString("Description");
     }
     if (HttpContext.Current.Request["Type_id_BillType"] != null)
     {
         model.Type_id_BillType = Shop.Tools.RequestTool.RequestInt("Type_id_BillType", 0);
     }
     if (HttpContext.Current.Request["Sort"] != null)
     {
         model.Sort = Shop.Tools.RequestTool.RequestInt("Sort", 0);
     }
     if (HttpContext.Current.Request["Content"] != null)
     {
         model.Content = Shop.Tools.RequestTool.RequestSafeString("Content");
     }
     return(model);
 }
示例#3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            int id = RequestTool.RequestInt("id", 0);

            if (id == 0)
            {
                if (!EX_Admin.Power("billtype_add", "添加发票类型"))
                {
                    WindowNoPower();
                }
            }
            else
            {
                if (!EX_Admin.Power("billtype_edit", "编辑发票类型"))
                {
                    WindowNoPower();
                }
            }
            model = B_Lebi_BillType.GetModel(id);
            if (model == null)
            {
                model = new Lebi_BillType();
                model.Type_id_BillType = 151;
            }
        }
示例#4
0
            /// <summary>
            /// 对象实体绑定数据
            /// </summary>
            public Lebi_BillType ReaderBind(IDataReader dataReader)
            {
                Lebi_BillType model = new Lebi_BillType();
                object        ojb;

                ojb = dataReader["id"];
                if (ojb != null && ojb != DBNull.Value)
                {
                    model.id = (int)ojb;
                }
                ojb = dataReader["TaxRate"];
                if (ojb != null && ojb != DBNull.Value)
                {
                    model.TaxRate = (decimal)ojb;
                }
                model.Name        = dataReader["Name"].ToString();
                model.Description = dataReader["Description"].ToString();
                ojb = dataReader["Type_id_BillType"];
                if (ojb != null && ojb != DBNull.Value)
                {
                    model.Type_id_BillType = (int)ojb;
                }
                ojb = dataReader["Sort"];
                if (ojb != null && ojb != DBNull.Value)
                {
                    model.Sort = (int)ojb;
                }
                model.Content = dataReader["Content"].ToString();
                return(model);
            }
示例#5
0
            /// <summary>
            /// 更新一条数据
            /// </summary>
            public void Update(Lebi_BillType model)
            {
                StringBuilder strSql = new StringBuilder();

                strSql.Append("update [Lebi_BillType] set ");
                strSql.Append("TaxRate= @TaxRate,");
                strSql.Append("Name= @Name,");
                strSql.Append("Description= @Description,");
                strSql.Append("Type_id_BillType= @Type_id_BillType,");
                strSql.Append("Sort= @Sort,");
                strSql.Append("Content= @Content");
                strSql.Append(" where id=@id");
                SqlParameter[] parameters =
                {
                    new SqlParameter("@id",               SqlDbType.Int,         4),
                    new SqlParameter("@TaxRate",          SqlDbType.Decimal,     9),
                    new SqlParameter("@Name",             SqlDbType.NVarChar,  500),
                    new SqlParameter("@Description",      SqlDbType.NVarChar, 2000),
                    new SqlParameter("@Type_id_BillType", SqlDbType.Int,         4),
                    new SqlParameter("@Sort",             SqlDbType.Int,         4),
                    new SqlParameter("@Content",          SqlDbType.NVarChar, 500)
                };
                parameters[0].Value = model.id;
                parameters[1].Value = model.TaxRate;
                parameters[2].Value = model.Name;
                parameters[3].Value = model.Description;
                parameters[4].Value = model.Type_id_BillType;
                parameters[5].Value = model.Sort;
                parameters[6].Value = model.Content;

                SqlUtils.SqlUtilsInstance.TextExecuteNonQuery(strSql.ToString(), parameters);
            }
示例#6
0
            /// <summary>
            /// 增加一条数据
            /// </summary>
            public int Add(Lebi_BillType model)
            {
                StringBuilder strSql = new StringBuilder();

                strSql.Append("insert into [Lebi_BillType](");
                strSql.Append("TaxRate,Name,Description,Type_id_BillType,Sort,Content)");
                strSql.Append(" values (");
                strSql.Append("@TaxRate,@Name,@Description,@Type_id_BillType,@Sort,@Content)");
                strSql.Append(";select @@IDENTITY");
                SqlParameter[] parameters =
                {
                    new SqlParameter("@TaxRate",          model.TaxRate),
                    new SqlParameter("@Name",             model.Name),
                    new SqlParameter("@Description",      model.Description),
                    new SqlParameter("@Type_id_BillType", model.Type_id_BillType),
                    new SqlParameter("@Sort",             model.Sort),
                    new SqlParameter("@Content",          model.Content)
                };

                object obj = SqlUtils.SqlUtilsInstance.TextExecuteNonQuery(strSql.ToString(), parameters);

                if (obj == null)
                {
                    return(1);
                }
                else
                {
                    return(Convert.ToInt32(obj));
                }
            }
示例#7
0
        public Lebi_BillType BillType(int id)
        {
            Lebi_BillType m = B_Lebi_BillType.GetModel(id);

            if (m == null)
            {
                m = new Lebi_BillType();
            }
            return(m);
        }
示例#8
0
            /// <summary>
            /// 得到一个对象实体 by id
            /// </summary>
            public Lebi_BillType GetModel(int id)
            {
                StringBuilder strSql = new StringBuilder();

                strSql.Append("select  top 1  * from [Lebi_BillType] ");
                strSql.Append(" where id=@id");
                SqlParameter[] parameters =
                {
                    new SqlParameter("@id", SqlDbType.Int, 4)
                };
                parameters[0].Value = id;

                Lebi_BillType model = new Lebi_BillType();
                DataSet       ds    = SqlUtils.SqlUtilsInstance.TextExecuteDataset(strSql.ToString(), parameters);

                if (ds.Tables[0].Rows.Count > 0)
                {
                    if (ds.Tables[0].Rows[0]["id"].ToString() != "")
                    {
                        model.id = int.Parse(ds.Tables[0].Rows[0]["id"].ToString());
                    }
                    if (ds.Tables[0].Rows[0]["TaxRate"].ToString() != "")
                    {
                        model.TaxRate = decimal.Parse(ds.Tables[0].Rows[0]["TaxRate"].ToString());
                    }
                    model.Name        = ds.Tables[0].Rows[0]["Name"].ToString();
                    model.Description = ds.Tables[0].Rows[0]["Description"].ToString();
                    if (ds.Tables[0].Rows[0]["Type_id_BillType"].ToString() != "")
                    {
                        model.Type_id_BillType = int.Parse(ds.Tables[0].Rows[0]["Type_id_BillType"].ToString());
                    }
                    if (ds.Tables[0].Rows[0]["Sort"].ToString() != "")
                    {
                        model.Sort = int.Parse(ds.Tables[0].Rows[0]["Sort"].ToString());
                    }
                    model.Content = ds.Tables[0].Rows[0]["Content"].ToString();
                    return(model);
                }
                else
                {
                    return(null);
                }
            }
示例#9
0
            /// <summary>
            /// 得到一个对象实体 by where条件
            /// </summary>
            public Lebi_BillType GetModel(string strWhere)
            {
                if (strWhere.IndexOf("lbsql{") > 0)
                {
                    SQLPara para = new SQLPara(strWhere, "", "");
                    return(GetModel(para));
                }
                StringBuilder strSql = new StringBuilder();

                strSql.Append("select  top 1  * from [Lebi_BillType] ");
                strSql.Append(" where " + strWhere + "");
                Lebi_BillType model = new Lebi_BillType();
                DataSet       ds    = SqlUtils.SqlUtilsInstance.TextExecuteDataset(strSql.ToString());

                if (ds.Tables[0].Rows.Count > 0)
                {
                    if (ds.Tables[0].Rows[0]["id"].ToString() != "")
                    {
                        model.id = int.Parse(ds.Tables[0].Rows[0]["id"].ToString());
                    }
                    if (ds.Tables[0].Rows[0]["TaxRate"].ToString() != "")
                    {
                        model.TaxRate = decimal.Parse(ds.Tables[0].Rows[0]["TaxRate"].ToString());
                    }
                    model.Name        = ds.Tables[0].Rows[0]["Name"].ToString();
                    model.Description = ds.Tables[0].Rows[0]["Description"].ToString();
                    if (ds.Tables[0].Rows[0]["Type_id_BillType"].ToString() != "")
                    {
                        model.Type_id_BillType = int.Parse(ds.Tables[0].Rows[0]["Type_id_BillType"].ToString());
                    }
                    if (ds.Tables[0].Rows[0]["Sort"].ToString() != "")
                    {
                        model.Sort = int.Parse(ds.Tables[0].Rows[0]["Sort"].ToString());
                    }
                    model.Content = ds.Tables[0].Rows[0]["Content"].ToString();
                    return(model);
                }
                else
                {
                    return(null);
                }
            }
示例#10
0
            /// <summary>
            /// 增加一条数据
            /// </summary>
            public int Add(Lebi_BillType model)
            {
                StringBuilder strSql = new StringBuilder();

                strSql.Append("insert into [Lebi_BillType](");
                strSql.Append("[TaxRate],[Name],[Description],[Type_id_BillType],[Sort],[Content])");
                strSql.Append(" values (");
                strSql.Append("@TaxRate,@Name,@Description,@Type_id_BillType,@Sort,@Content)");
                OleDbParameter[] parameters =
                {
                    new OleDbParameter("@TaxRate",          model.TaxRate),
                    new OleDbParameter("@Name",             model.Name),
                    new OleDbParameter("@Description",      model.Description),
                    new OleDbParameter("@Type_id_BillType", model.Type_id_BillType),
                    new OleDbParameter("@Sort",             model.Sort),
                    new OleDbParameter("@Content",          model.Content)
                };

                AccessUtils.Instance.TextExecuteNonQuery(strSql.ToString(), parameters);
                return(1);
            }
示例#11
0
            /// <summary>
            /// 更新一条数据
            /// </summary>
            public void Update(Lebi_BillType model)
            {
                StringBuilder strSql = new StringBuilder();

                strSql.Append("update [Lebi_BillType] set ");
                strSql.Append("[TaxRate]=@TaxRate,");
                strSql.Append("[Name]=@Name,");
                strSql.Append("[Description]=@Description,");
                strSql.Append("[Type_id_BillType]=@Type_id_BillType,");
                strSql.Append("[Sort]=@Sort,");
                strSql.Append("[Content]=@Content");
                strSql.Append(" where id=" + model.id);
                OleDbParameter[] parameters =
                {
                    new OleDbParameter("@TaxRate",          model.TaxRate),
                    new OleDbParameter("@Name",             model.Name),
                    new OleDbParameter("@Description",      model.Description),
                    new OleDbParameter("@Type_id_BillType", model.Type_id_BillType),
                    new OleDbParameter("@Sort",             model.Sort),
                    new OleDbParameter("@Content",          model.Content)
                };

                AccessUtils.Instance.TextExecuteNonQuery(strSql.ToString(), parameters);
            }
示例#12
0
        /// <summary>
        /// 生成新订单
        /// </summary>
        public void order_save()
        {
            if (CurrentUserLevel.BuyRight != 1)
            {
                Response.Write("{\"msg\":\"" + Tag("您所在的分组不允许下单") + "\"}");
                return;
            }
            int         pay_id        = RequestTool.RequestInt("pay_id", 0);
            int         sid           = RequestTool.RequestInt("sid", 0);//结算供应商ID
            int         onlinepay_id  = RequestTool.RequestInt("onlinepay_id", 0);
            decimal     Money_UserCut = RequestTool.RequestDecimal("Money_UserCut", 0);
            int         usermoneytype = RequestTool.RequestInt("usermoneytype", 0);
            string      Pay_Password  = RequestTool.RequestSafeString("Pay_Password");
            Lebi_PickUp pick          = null;
            DateTime    pickdate      = System.DateTime.Now;

            if (usermoneytype == 3)
            {
                if (Pay_Password == "")
                {
                    Response.Write("{\"msg\":\"" + Tag("请输入支付密码") + "\"}");
                    return;
                }
                else
                {
                    if (EX_User.MD5(Pay_Password) != CurrentUser.Pay_Password)
                    {
                        Response.Write("{\"msg\":\"" + Tag("支付密码不正确") + "\"}");
                        return;
                    }
                }
                if (Money_UserCut > 0 && Money_UserCut > CurrentUser.Money)
                {
                    Response.Write("{\"msg\":\"" + Tag("余额不足") + "\"}");
                    return;
                }
            }
            Lebi_Pay pay = B_Lebi_Pay.GetModel(pay_id);

            if (pay == null)
            {
                Response.Write("{\"msg\":\"" + Tag("请设置付款方式") + "\"}");
                return;
            }
            Basket  basket             = new Basket(sid);
            int     CustomOfflineMoney = RequestTool.RequestInt("CustomOfflineMoney" + pay.id, 0);
            decimal OfflineMoney       = RequestTool.RequestDecimal("OfflineMoney" + pay.id, 0);

            if (CustomOfflineMoney == 1)
            {
                if (pay.Code != "OfflinePay" && pay.Code != "OnlinePay")
                {
                    //订单如果选择了线下支付,并且非货到付款
                    if (OfflineMoney < basket.Money_Product)
                    {
                        Response.Write("{\"msg\":\"" + Tag("打款金额不能少于订单金额") + "\"}");
                        return;
                    }
                }
            }
            if (pay.Code == "OnlinePay")
            {
                Lebi_OnlinePay onpay = B_Lebi_OnlinePay.GetModel(onlinepay_id);
                if (onpay == null)
                {
                    Response.Write("{\"msg\":\"" + Tag("请设置付款方式") + "\"}");
                    return;
                }
            }

            if (basket.Products.Count == 0)
            {
                Response.Write("{\"msg\":\"" + Tag("购物车为空") + "\"}");
                return;
            }
            foreach (Lebi_User_Product up in basket.Products)
            {
                if (up.count < 1)
                {
                    Response.Write("{\"msg\":\"" + Tag("购物车异常") + "\"}");
                    return;
                }
            }
            if (basket.Point_Buy > 0 && (basket.Point_Buy > CurrentUser.Point))
            {
                Response.Write("{\"msg\":\"" + Tag("积分不足") + "\"}");
                return;
            }
            int ProductCount = 0;

            foreach (Lebi_User_Product up in basket.Products)
            {
                Lebi_Product pro = B_Lebi_Product.GetModel(up.Product_id);
                if (pro.Type_id_ProductType != 323)
                {
                    ProductCount += up.count;
                }
                //<-{ 判断是否上架状态 by lebi.kingdge 2015-02-10
                if (pro.Type_id_ProductStatus != 101)
                {
                    Response.Write("{\"msg\":\"" + Lang(pro.Name) + " " + Tag("该商品已经下架") + "\"}");
                    return;
                }
                //}->
                if (pro.Type_id_ProductType != 324)
                {
                    int levelcount = ProductLevelCount(pro);
                    if (up.count < levelcount)
                    {
                        Response.Write("{\"msg\":\"" + Lang(pro.Name) + " " + Tag("起订量") + " " + levelcount + "\"}");
                        return;
                    }
                }
                if (pro.Type_id_ProductType != 320 && pro.Time_Expired > System.DateTime.Now)
                {
                    if (pro.Count_Limit < up.count && pro.Count_Limit > 0)
                    {
                        Response.Write("{\"msg\":\"" + Tag("购买数量大于限购数量") + "\"}");
                        return;
                    }
                }
                if (SYS.IsNullStockSale != "1")
                {
                    if (pro.Count_Stock - pro.Count_Freeze < up.count && pro.Type_id_ProductType != 324)
                    {
                        Response.Write("{\"msg\":\"" + Lang(pro.Name) + "" + Tag("库存不足") + "\"}");
                        return;
                    }
                }
            }
            //验证当前分组允许的最低订单提交金额
            if (CurrentUserLevel.OrderSubmit > 0)
            {
                if (basket.Money_Product < CurrentUserLevel.OrderSubmit)
                {
                    Response.Write("{\"msg\":\"" + Tag("单笔订单最低金额为:") + FormatMoney(CurrentUserLevel.OrderSubmit) + "\"}");
                    return;
                }
            }
            //验证当前分组允许的最低订单提交数量
            if (CurrentUserLevel.OrderSubmitCount > 0 && ProductCount > 0)
            {
                if (ProductCount < CurrentUserLevel.OrderSubmitCount)
                {
                    Response.Write("{\"msg\":\"" + Tag("单笔订单最低数量为:") + CurrentUserLevel.OrderSubmitCount + "\"}");
                    return;
                }
            }
            Lebi_User_Address shouhuo = B_Lebi_User_Address.GetModel(CurrentUser.User_Address_id);

            if (shouhuo == null)
            {
                Response.Write("{\"msg\":\"" + Tag("未设置收获地址") + "\"}");
                return;
            }
            if (CurrentUser.Transport_Price_id == "")
            {
                Response.Write("{\"msg\":\"" + Tag("运费设置错误") + "\"}");
                return;
            }

            foreach (BasketShop shop in basket.Shops)
            {
                Lebi_Transport_Price tprice = B_Lebi_Transport_Price.GetModel("id in (lbsql{" + CurrentUser.Transport_Price_id + "}) and Supplier_id=" + shop.Shop.id + "");
                if (tprice == null)
                {
                    Response.Write("{\"msg\":\"" + Tag("运费设置错误") + "\"}");
                    return;
                }
                Lebi_Transport transport = B_Lebi_Transport.GetModel(tprice.Transport_id);
                if (tprice == null)
                {
                    Response.Write("{\"msg\":\"" + Tag("运费设置错误") + "\"}");
                    return;
                }
                //检查运费设置是否正确
                if (!EX_Area.CheckAreaPrice(tprice, shouhuo.Area_id))
                {
                    Response.Write("{\"msg\":\"" + Tag("运费设置错误") + "\"}");
                    return;
                }
                if (transport.Type_id_TransportType == 332)//自提检查
                {
                    int    pickup_id = RequestTool.RequestInt("pickup_id" + shop.Shop.id);
                    string pickdate_ = RequestTool.RequestString("pickupdate_" + pickup_id);

                    try
                    {
                        pickdate = Convert.ToDateTime(pickdate_);
                    }
                    catch
                    {
                        Response.Write("{\"msg\":\"" + Tag("配送方式设置错误") + "\"}");
                        return;
                    }

                    pick = B_Lebi_PickUp.GetModel(pickup_id);
                    if (pick == null)
                    {
                        Response.Write("{\"msg\":\"" + Tag("配送方式设置错误") + "\"}");
                        return;
                    }
                    if (pick.IsCanWeekend == 0 && (pickdate.DayOfWeek == DayOfWeek.Saturday || pickdate.DayOfWeek == DayOfWeek.Sunday))
                    {
                        Response.Write("{\"msg\":\"" + Tag("配送方式设置错误") + "\"}");
                        return;
                    }
                    if (System.DateTime.Now.Date.AddDays(pick.BeginDays) > pickdate)
                    {
                        Response.Write("{\"msg\":\"" + Tag("配送方式设置错误") + "\"}");
                        return;
                    }
                    string NoServiceDays = pick.NoServiceDays.TrimStart('0').Replace(".0", ".");
                    string nowday        = pickdate.ToString("M.d");
                    if (("," + NoServiceDays + ",").Contains("," + nowday + ","))
                    {
                        Response.Write("{\"msg\":\"" + Tag("配送方式设置错误") + "\"}");
                        return;
                    }
                }
            }
            //检查代金券
            string pay312 = RequestTool.RequestSafeString("pay312");

            if (pay312 != "")
            {
                List <Lebi_Card> cs = B_Lebi_Card.GetList("User_id=" + CurrentUser.id + " and id in (lbsql{" + pay312 + "})", "id asc");
                int flag            = cs.FirstOrDefault().IsCanOtherUse;
                if (flag == 0 && cs.Count > 1)
                {
                    Response.Write("{\"msg\":\"" + Tag("代金券异常") + "\"}");
                    return;
                }
                foreach (Lebi_Card c in cs)
                {
                    if (flag != c.IsCanOtherUse)
                    {
                        Response.Write("{\"msg\":\"" + Tag("代金券异常") + "\"}");
                        return;
                    }
                    if (!Basket.CheckCard(basket, c))
                    {
                        Response.Write("{\"msg\":\"" + Tag("代金券异常") + "\"}");
                        return;
                    }
                }
            }
            //检查代金券结束
            //检查发票信息
            int           billtype_id = RequestTool.RequestInt("billtype_id", 0);
            Lebi_BillType billtype    = B_Lebi_BillType.GetModel(billtype_id);

            if (ShopCache.GetBaseConfig().BillFlag == "1")
            {
                if (billtype == null)
                {
                    Response.Write("{\"msg\":\"" + Tag("请设置发票内容") + "\"}");
                    return;
                }
            }
            CurrentUser.Pay_id       = pay.id;
            CurrentUser.OnlinePay_id = onlinepay_id;
            Lebi_Order        ordergroup;
            List <Lebi_Order> orders = Shop.Bussiness.Order.CreateOrder(CurrentUser, basket, shouhuo, billtype, CurrentCurrency, CurrentSite, CurrentLanguage, out ordergroup);

            CurrentUser.Count_Order = CurrentUser.Count_Order + orders.Count;
            B_Lebi_User.Update(CurrentUser);
            List <Lebi_Order> ordermodel = B_Lebi_Order.GetList("User_id=" + CurrentUser.id + "", "id desc");

            ordergroup = ordermodel.FirstOrDefault();
            if (OfflineMoney == 0)
            {
                OfflineMoney = ordergroup.Money_Order;
            }
            string remark = RequestTool.RequestSafeString("remark");

            ordergroup.Remark_User = remark;
            bool needupdate = false;

            if (remark != "")
            {
                Lebi_Comment model = new Lebi_Comment();
                model.Content       = remark;
                model.Keyid         = ordergroup.id;
                model.TableName     = "Order";
                model.User_id       = CurrentUser.id;
                model.User_UserName = CurrentUser.UserName;
                B_Lebi_Comment.Add(model);
                needupdate = true;
            }

            if (pick != null)
            {
                ordergroup.PickUp_Date = pickdate;
                ordergroup.PickUp_id   = pick.id;
                ordergroup.PickUp_Name = pick.Name;
                needupdate             = true;
            }
            if (needupdate)
            {
                B_Lebi_Order.Update(ordergroup);
            }

            if (pay.Code != "OfflinePay" && pay.Code != "OnlinePay")
            {
                //订单如果选择了线下支付,并且非货到付款
                //生成一笔充值单
                //OfflineMoney

                Lebi_Currency DefaultCurrency = B_Lebi_Currency.GetModel("IsDefault=1");
                if (DefaultCurrency == null)
                {
                    DefaultCurrency = B_Lebi_Currency.GetList("", "Sort desc").FirstOrDefault();
                }
                Lebi_Order order = new Lebi_Order();
                order.Code                  = "M" + Shop.Bussiness.Order.CreateOrderCode();
                order.Money_Order           = OfflineMoney;
                order.Money_Pay             = OfflineMoney;
                order.User_id               = CurrentUser.id;
                order.User_UserName         = CurrentUser.UserName;
                order.IsPaid                = 0;
                order.Currency_Code         = ordergroup.Currency_Code;
                order.Currency_ExchangeRate = ordergroup.Currency_ExchangeRate;
                order.Currency_id           = ordergroup.Currency_id;
                order.Currency_Msige        = ordergroup.Currency_Msige;
                order.Type_id_OrderType     = 214;
                order.Pay_id                = pay.id;
                order.Pay          = pay.Name;
                order.Site_id      = CurrentSite.id;
                order.Language_id  = CurrentLanguage.id;
                order.Remark_Admin = "";
                order.Order_id     = ordergroup.id;
                B_Lebi_Order.Add(order);
            }
            //if (orders.Count == 1)
            //    ordergroup = orders.FirstOrDefault();
            //Shop.Bussiness.Order.SupplierOrder(order);//根据商品供应商分单
            Response.Write("{\"msg\":\"OK\",\"id\":\"" + ordergroup.id + "\"}");
            return;
        }
示例#13
0
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public static void Update(Lebi_BillType model)
 {
     D_Lebi_BillType.Instance.Update(model);
 }
示例#14
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public static int Add(Lebi_BillType model)
 {
     return(D_Lebi_BillType.Instance.Add(model));
 }
示例#15
0
 /// <summary>
 /// 安全方式绑定表单数据
 /// </summary>
 public static Lebi_BillType SafeBindForm(Lebi_BillType model)
 {
     return(D_Lebi_BillType.Instance.SafeBindForm(model));
 }