Пример #1
0
        public AjaxMessage ReConfirmOrder(string CustomerId, string OrderId)
        {
            AjaxMessage ajax = new AjaxMessage();

            ajax.IsSuccess = false;
            ajax.Message   = "系统异常,请稍后再试...";

            try
            {
                if (!string.IsNullOrEmpty(CustomerId))
                {
                    Guid      cusId   = new Guid(CustomerId);
                    Guid      orderId = new Guid(OrderId);
                    SS_Report report  = _reportService.GetByCustomerId(cusId);
                    report.CustomerState = 7;

                    FL_Customer m_customer = _customerService.GetByGuid(cusId);
                    m_customer.State = 7;

                    FL_Order m_order = _orderService.GetByGuid(orderId);
                    m_order.OrderState = 7;

                    using (TransactionScope scope = new TransactionScope())
                    {
                        _reportService.Update(report);

                        _customerService.Update(m_customer);

                        _orderService.Update(m_order);

                        scope.Complete();
                    }

                    ajax.IsSuccess = true;
                    ajax.Message   = "恢复跟单成功,请在客户跟单中查看";
                }
            }
            catch (Exception e)
            {
                ajax.Message = e.Message.ToString();
            }

            return(ajax);
        }
Пример #2
0
        /// <summary>
        /// 数据绑定
        /// </summary>
        public void BinderData()
        {
            if (Request["CustomerId"] != null)
            {
                Guid        customerId = new Guid(Request["CustomerId"].ToString());
                FL_Customer m_customer = _customerService.GetById(customerId);
                if (m_customer != null)
                {
                    //主要联系人
                    if (m_customer.ContactMan == m_customer.Groom)
                    {
                        rdoContactMan.SelectedValue = "0";
                    }
                    else if (m_customer.ContactMan == m_customer.Bride)
                    {
                        rdoContactMan.SelectedValue = "1";
                    }
                    else
                    {
                        rdoContactMan.SelectedValue = "2";
                    }

                    txtBride.Value              = m_customer.Bride;
                    txtGroom.Value              = m_customer.Groom;
                    txtOperator.Value           = m_customer.Operator;
                    txtBridePhone.Value         = m_customer.BridePhone;
                    txtGroomPhone.Value         = m_customer.GroomPhone;
                    txtOperatorPhone.Value      = m_customer.OperatorPhone;
                    ddlHotel.SelectedValue      = m_customer.Hotel.ToString();
                    txtPartyDate.Value          = m_customer.PartyDate.ToString().ToDateTime().ToString("yyyy-MM-dd");
                    txtDeskCount.Value          = m_customer.DeskCount.ToString();
                    txtBudget.Value             = m_customer.Budget.ToString();
                    rdoVip.SelectedValue        = m_customer.IsVip.ToString();
                    rdoBanqueType.SelectedValue = m_customer.BanqueType.ToString();
                    txtState.Value              = GetCustomerState(m_customer.State);
                    switch (m_customer.IsFinish)
                    {
                    case 0:
                        txtIsFinish.Value = "未完成";
                        break;

                    case 1:
                        txtIsFinish.Value = "已完成";
                        break;

                    case 2:
                        txtIsFinish.Value = "已完结";
                        break;
                    }
                    if (m_customer.EvalState == 0)
                    {
                        txtEvalState.Value = "未评价(" + txtIsFinish.Value + ")";
                    }
                    else
                    {
                        txtEvalState.Value = "已评价(" + txtIsFinish.Value + ")";
                    }
                }

                //渠道类型
                FD_SaleType m_saleType = _saleTypeService.GetById(m_customer.SaleType);
                ddlSaleType.SelectedValue = m_customer.SaleType.ToString();


                //渠道名称条件
                List <Expression <Func <FD_SaleSource, bool> > > parmList = new List <Expression <Func <FD_SaleSource, bool> > >();
                parmList.Add(c => c.SaleTypeId == m_saleType.SaleTypeID);
                ddlSaleSource.DataSource = _saleSourceService.GetListBy(parmList);
                ddlSaleSource.DataBind();

                //渠道名称
                FD_SaleSource m_saleSource = _saleSourceService.GetById(m_customer.Channel);;
                ddlSaleSource.SelectedValue = m_customer.Channel.ToString();
                txtReCommand.Value          = m_saleSource.CommoandName;

                txtCreateEmployee.Value = GetEmployeeNames(m_customer.CreateEmployee);
                txtCreateDate.Value     = m_customer.CreateDate.ToString();


                SS_Report m_report = _reportService.GetByCustomerId(customerId);
                txtInviteEmployee.Value = GetEmployeeNames(m_report.InviteEmployee);
                txtOrderEmployees.Value = GetEmployeeNames(m_report.OrderEmployee);
                txtQuotedEmployee.Value = GetEmployeeNames(m_report.QuotedEmployee);

                txtDescription.Text = m_customer.Description;


                //邀约沟通记录
                var dataList = _inviteService.GetDataListByCustomerId(customerId);

                if (dataList.Count > 0)         //有沟通记录
                {
                    tr_noInvite.Visible         = false;
                    repInviteContent.DataSource = dataList;
                    repInviteContent.DataBind();
                }
                else
                {
                    tr_noInvite.Visible = true;
                }


                //跟单沟通记录
                var orderList = _orderService.GetDataListByCustomerId(customerId);

                if (orderList.Count > 0)         //有沟通记录
                {
                    tr_noOrder.Visible         = false;
                    repOrderContent.DataSource = orderList;
                    repOrderContent.DataBind();
                }
                else
                {
                    tr_noOrder.Visible = true;
                }
            }
        }
Пример #3
0
        /// <summary>
        /// 导入客户文件
        /// </summary>

        public void ImportFile(HttpContext context)
        {
            //获取上传的excel文件
            HttpFileCollection file = HttpContext.Current.Request.Files;
            int employeeId          = context.Request.Form["hideEmployee"].ToInt32(); //获取当前登录员工的id

            AjaxMessage ajax = new AjaxMessage();

            ajax.IsSuccess = false;

            string pathAddress = "";        //完整的excel保存路径
            string type        = "success"; //成功状态
            string suffix      = "";        //后缀名

            try
            {
                if (file.Count == 0)
                {
                    //直接点击导入 没有选择Excel文件
                    ajax.Message = "文件不能为空,请选择上传文件";
                    type         = "error";
                }
                else
                {
                    HttpPostedFile upFile = file[0];

                    #region 判断文件类型 大小 保存文件

                    if (type == "success")
                    {
                        int    filesize = upFile.ContentLength;                                         //excel文件大小
                        int    Maxsize  = 4000 * 1024;                                                  //最大空间大小为4M
                        string filename = DateTime.Now.ToString("HHmmssfff") + upFile.FileName;         //文件名
                        string path     = HttpContext.Current.Server.MapPath("/Template/");             //文件夹路径
                        pathAddress = path + filename;                                                  //完整的excel保存路径
                        suffix      = Path.GetExtension(pathAddress).ToString();                        //获取后缀名


                        if (suffix != ".xls" && suffix != ".xlsx")
                        {
                            ajax.Message = "上传文件必须是xlsx或xls文件";
                            type         = "error";
                        }
                        else
                        {
                            if (filesize > Maxsize)
                            {
                                ajax.Message = "文件大小不能超过4M";
                                type         = "error";
                            }
                            else
                            {
                                //判断文件夹是否存在  若不存在 就新建
                                if (!Directory.Exists(path))
                                {
                                    Directory.CreateDirectory(path);
                                }
                                //保存Excel
                                upFile.SaveAs(pathAddress);

                                type = "success";
                            }
                        }
                    }
                    #endregion

                    #region 验证excel模板(根据标题验证)
                    //获取excel的数据  用DataTable保存
                    DataTable dt       = null;
                    DataRow   rowTitle = null;
                    if (type == "success")
                    {
                        dt       = ExcelUtil.ExcelToDataTable(pathAddress, "getTitle");
                        rowTitle = dt.Rows[0];
                        if (dt != null)
                        {
                            if (dt.Rows.Count > 0)
                            {
                                if (rowTitle[0].ToString() != "新娘姓名" || rowTitle[1].ToString() != "新郎姓名" || rowTitle[2].ToString() != "经办人" || rowTitle[3].ToString() != "新娘联系电话" || rowTitle[4].ToString() != "新郎联系电话" || rowTitle[5].ToString() != "经办人联系电话" || rowTitle[6].ToString() != "婚期" || rowTitle[7].ToString() != "酒店" || rowTitle[8].ToString() != "渠道类型" || rowTitle[9].ToString() != "渠道名称" || rowTitle[10].ToString() != "推荐人" || rowTitle[11].ToString() != "沟通进度")
                                {
                                    ajax.Message = "当前文件模板错误,请参考当前页面的模板进行使用";
                                    type         = "errorr";
                                }
                                else if (dt.Rows.Count == 1)
                                {
                                    ajax.Message = "当前上传文件中没有客户信息,请填写客户信息";
                                    type         = "errorr";
                                }
                            }
                        }
                        else
                        {
                            ajax.Message = "请不要上传空白的Excel";
                            type         = "errorr";
                        }
                    }
                    #endregion

                    #region 循环验证excel里的内容
                    if (type == "success")
                    {
                        if (dt != null)
                        {
                            #region 验证内容是否完整

                            //记录列名
                            string columnName = "";

                            //循环遍历datatable里的数据 进行验证
                            for (int i = 1; i < dt.Rows.Count; i++)
                            {
                                //table中的每一行
                                DataRow row = dt.Rows[i];
                                //验证新人姓名是否为空
                                if (row[0].ToString() == "" && row[1].ToString() == "" && row[2].ToString() == "")
                                {
                                    ajax.Message += "新人姓名 至少一列不能为空,请补全信息 \n\r";
                                    type          = "error";
                                }

                                if (row[3].ToString() == "" && row[4].ToString() == "" && row[5].ToString() == "")
                                {
                                    ajax.Message += "新人联系电话 至少一列不能为空,请补全信息";
                                    type          = "error";
                                }

                                if (type == "success")
                                {
                                    for (int j = 8; j <= 10; j++)
                                    {
                                        if (row[j].ToString() == "")
                                        {
                                            columnName += rowTitle[j].ToString() + ",";
                                        }

                                        if (j == dt.Columns.Count - 1)
                                        {
                                            columnName    = columnName.Substring(0, columnName.Length - 1).ToString();
                                            ajax.Message += "第" + (i + 1) + "行," + columnName + "列不能为空,";
                                        }
                                    }
                                }
                            }
                            #endregion

                            #region Excel内容完整 判断Excel信息 (进行验证)

                            //Excel内容完整
                            if (type == "success")
                            {
                                for (int i = 1; i < dt.Rows.Count; i++)
                                {
                                    //table中的每一行
                                    DataRow row = dt.Rows[i];
                                    for (int j = 3; j <= 5; j++)
                                    {
                                        //新人电话验证
                                        if (row[j].ToString() != string.Empty)
                                        {
                                            if (row[j].ToString().Length != 11 || RegexExtension.IsValidPhone(row[j].ToString()) == false)
                                            {
                                                ajax.Message = "Excel文件中 " + rowTitle[j] + "格式不正确";
                                                type         = "error";
                                            }
                                        }
                                    }
                                }
                            }
                            #endregion
                        }
                    }
                    #endregion

                    #region 添加客户至数据库
                    if (type == "success")
                    {
                        FL_Customer        m_customer = new FL_Customer();
                        List <FL_Customer> cus_list   = new List <FL_Customer>();

                        int nums = 0;
                        if (dt.Rows.Count >= 2)
                        {
                            List <FL_Customer> customer_list = new List <FL_Customer>();
                            List <FL_Invite>   invite_list   = new List <FL_Invite>();
                            List <SS_Report>   report_list   = new List <SS_Report>();

                            for (int i = 1; i < dt.Rows.Count; i++)
                            {
                                DataRow row = dt.Rows[i];
                                m_customer               = new FL_Customer();
                                m_customer.CustomerID    = Guid.NewGuid();
                                m_customer.Bride         = row[0].ToString();
                                m_customer.Groom         = row[1].ToString();
                                m_customer.Operator      = row[2].ToString();
                                m_customer.BridePhone    = row[3].ToString();
                                m_customer.GroomPhone    = row[4].ToString();
                                m_customer.OperatorPhone = row[5].ToString();

                                //主要联系人
                                if (row[0].ToString() != string.Empty)
                                {
                                    m_customer.ContactMan = row[0].ToString();
                                }
                                else if (row[1].ToString() != string.Empty)
                                {
                                    m_customer.ContactMan = row[1].ToString();
                                }
                                else if (row[2].ToString() != string.Empty)
                                {
                                    m_customer.ContactMan = row[2].ToString();
                                }

                                //主要联系电话
                                if (row[3].ToString() != string.Empty)
                                {
                                    m_customer.ContactPhone = row[3].ToString();
                                }
                                else if (row[4].ToString() != string.Empty)
                                {
                                    m_customer.ContactPhone = row[4].ToString();
                                }
                                else if (row[5].ToString() != string.Empty)
                                {
                                    m_customer.ContactPhone = row[5].ToString();
                                }

                                m_customer.PartyDate = DateTime.FromOADate(double.Parse(row[6].ToString())).ToString("yyyy-MM-dd").ToDateTime();
                                m_customer.Hotel     = row[7].ToString().Substring(0, row[7].ToString().IndexOf('.'));
                                int length = row[8].ToString().Substring(row[8].ToString().LastIndexOf("M") + 1).Length;
                                m_customer.SaleType       = row[8].ToString().Substring(row[8].ToString().LastIndexOf('M') + 1, length).ToString().ToInt32();
                                m_customer.Channel        = row[9].ToString().Substring(0, row[9].ToString().IndexOf('.')).ToString().ToInt32();
                                m_customer.ReCommand      = row[10].ToString();
                                m_customer.State          = row[11].ToString().Substring(0, row[11].ToString().IndexOf('.')).ToInt32(); //沟通状态
                                m_customer.DeskCount      = 0;
                                m_customer.Budget         = 0;
                                m_customer.Type           = 1;        //1.婚宴  2.生日宴   3.宝宝宴
                                m_customer.BanqueType     = "1";      //1.午宴   2.晚宴
                                m_customer.IsVip          = 1;        //0.普通客户  1.会员客户
                                m_customer.CreateEmployee = employeeId;
                                m_customer.CreateDate     = DateTime.Now;
                                m_customer.IsFinish       = 0;      //是否完成
                                m_customer.EvalState      = 0;      //是否评价
                                m_customer.Status         = (byte)SysStatus.Enable;
                                m_customer.Description    = string.Empty;


                                //Report 信息
                                SS_Report report = new SS_Report();

                                report.CustomerId     = m_customer.CustomerID;
                                report.CreateEmployee = employeeId;
                                report.InviteEmployee = employeeId;
                                report.CreateDate     = DateTime.Now;
                                report.CustomerState  = m_customer.State;


                                //邀约信息
                                FL_Invite m_invite = new FL_Invite();
                                m_invite.CustomerID     = m_customer.CustomerID;
                                m_invite.EmployeeId     = employeeId;
                                m_invite.CreateEmployee = employeeId;
                                m_invite.CreateDate     = DateTime.Now;
                                m_invite.IsLose         = false;

                                FL_InviteDetails details = new FL_InviteDetails();
                                FL_Order         order   = new FL_Order();
                                if (m_customer.State == 5)        //确认到店
                                {
                                    //邀约内容
                                    m_invite.OrderEmployee = employeeId.ToString().ToInt32();

                                    details.CustomerId    = m_customer.CustomerID;
                                    details.EmployeeId    = employeeId;
                                    details.InviteState   = (int)CustomerState.ComeOrder;
                                    details.StateName     = details.StateValue.GetDisplayName();
                                    details.InviteContent = "Excel导入客户  直接确认到店";
                                    details.CreateDate    = DateTime.Now;

                                    //订单 统筹信息

                                    order.OrderID        = Guid.NewGuid();
                                    order.OrderCoder     = Guid.NewGuid().ToString().Replace("-", "");
                                    order.CustomerId     = m_customer.CustomerID;
                                    order.ComeDate       = DateTime.Now;
                                    order.EmployeeId     = employeeId;
                                    order.OrderState     = (int)CustomerState.ComeOrder;
                                    order.FollowCount    = 0;
                                    order.CreateEmployee = employeeId;
                                    order.CreateDate     = DateTime.Now;

                                    m_invite.FollowCount    = 1;
                                    m_invite.OrderEmployee  = employeeId.ToString().ToInt32();
                                    m_invite.LastFollowDate = DateTime.Now;

                                    report.OrderId       = order.OrderID;
                                    report.OrderEmployee = employeeId.ToString().ToInt32();
                                }

                                using (TransactionScope scope = new TransactionScope())
                                {
                                    if (m_customer.State == 5)        //确认到店
                                    {
                                        //添加客户
                                        _customerService.Add(m_customer);

                                        //添加邀约
                                        FL_Invite r_invite = _inviteService.Add(m_invite);
                                        details.InviteId = r_invite.InviteId;
                                        //添加邀约内容
                                        _inviteDetailsService.Add(details);


                                        //添加到店  订单
                                        FL_Order r_order = _orderService.Add(order);

                                        //添加统计
                                        _reportService.Add(report);
                                    }
                                    else
                                    {
                                        ////添加客户
                                        //_customerService.Add(m_customer);

                                        ////添加邀约
                                        //_inviteService.Add(m_invite);
                                        ////添加统计
                                        //_reportService.Add(report);

                                        customer_list.Add(m_customer);
                                        invite_list.Add(m_invite);
                                        report_list.Add(report);
                                    }


                                    scope.Complete();
                                }

                                nums++;
                            }
                            //批量添加
                            if (customer_list.Count > 0)
                            {
                                _customerService.InsertForList(customer_list);
                            }
                            if (invite_list.Count > 0)
                            {
                                _inviteService.InsertForList(invite_list);
                            }
                            if (report_list.Count > 0)
                            {
                                _reportService.InsertForList(report_list);
                            }
                        }


                        if (type == "success")
                        {
                            ajax.IsSuccess = true;
                            ajax.Message   = "导入成功,共导入" + nums.ToString() + "条数据";
                        }
                    }
                    #endregion
                }
            }
            catch (SqlException ex)
            {
                ajax.Message = ex.Message + "   请重新导入!";
                type         = "error";
            }
            catch (Exception e)
            {
                ajax.Message = e.Message;
                type         = "error";
            }
            finally
            {
                //删除Excel文件
                if (File.Exists(pathAddress))
                {
                    File.Delete(pathAddress);
                }
            }

            context.Response.Write(JsonConvert.SerializeObject(ajax));
        }
Пример #4
0
        public AjaxMessage CreateCustomer(FL_Customer customer, string contactType, string orderEmp)
        {
            AjaxMessage ajax = new AjaxMessage();

            ajax.IsSuccess = false;
            ajax.Message   = "添加成功";

            int EmployeeId = LoginInfo.UserInfo.EmployeeId;

            try
            {
                int cType = 0;
                if (!string.IsNullOrEmpty(contactType))
                {
                    cType = contactType.ToString().ToInt32();
                }
                //客户信息
                customer.CustomerID     = Guid.NewGuid();
                customer.Status         = (byte)SysStatus.Enable;
                customer.CreateDate     = DateTime.Now;
                customer.IsFinish       = 0;
                customer.EvalState      = 0;
                customer.DeskCount      = 0;
                customer.Budget         = 0;
                customer.ReCommand      = _saleSourceService.Find(customer.Channel).CommoandName;
                customer.CreateEmployee = EmployeeId;
                if (cType == 0)
                {
                    customer.ContactMan   = customer.Groom;
                    customer.ContactPhone = customer.GroomPhone;
                }
                else if (cType == 1)
                {
                    customer.ContactMan   = customer.Bride;
                    customer.ContactPhone = customer.BridePhone;
                }
                else if (cType == 2)
                {
                    customer.ContactMan   = customer.Operator;
                    customer.ContactPhone = customer.OperatorPhone;
                }



                //Report 信息
                SS_Report report = new SS_Report();

                report.CustomerId     = customer.CustomerID;
                report.CreateEmployee = EmployeeId;
                report.InviteEmployee = EmployeeId;
                report.CreateDate     = DateTime.Now;
                report.CustomerState  = customer.State;


                //邀约信息
                FL_Invite m_invite = new FL_Invite();
                m_invite.CustomerID     = customer.CustomerID;
                m_invite.EmployeeId     = EmployeeId;
                m_invite.CreateEmployee = EmployeeId;
                m_invite.CreateDate     = DateTime.Now;
                m_invite.IsLose         = false;

                FL_InviteDetails details = new FL_InviteDetails();
                FL_Order         order   = new FL_Order();
                if (customer.State == 5)        //确认到店
                {
                    //邀约内容
                    m_invite.OrderEmployee = orderEmp.ToString().ToInt32();

                    details.CustomerId    = customer.CustomerID;
                    details.EmployeeId    = EmployeeId;
                    details.InviteState   = (int)CustomerState.ComeOrder;
                    details.StateName     = details.StateValue.GetDisplayName();
                    details.InviteContent = "添加录入客户  直接确认到店";
                    details.CreateDate    = DateTime.Now;

                    //订单 统筹信息
                    if (!string.IsNullOrEmpty(orderEmp))
                    {
                        order.OrderID        = Guid.NewGuid();
                        order.OrderCoder     = Guid.NewGuid().ToString().Replace("-", "");
                        order.CustomerId     = customer.CustomerID;
                        order.ComeDate       = DateTime.Now;
                        order.EmployeeId     = EmployeeId;
                        order.OrderState     = (int)CustomerState.ComeOrder;
                        order.FollowCount    = 0;
                        order.CreateEmployee = EmployeeId;
                        order.CreateDate     = DateTime.Now;

                        m_invite.FollowCount    = 1;
                        m_invite.OrderEmployee  = orderEmp.ToString().ToInt32();
                        m_invite.LastFollowDate = DateTime.Now;

                        report.OrderEmployee = orderEmp.ToString().ToInt32();
                    }
                }
                using (TransactionScope scope = new TransactionScope())
                {
                    //添加客户
                    _customerService.Add(customer);

                    //添加邀约
                    FL_Invite r_invite = _inviteService.Add(m_invite);

                    if (customer.State == 5)        //确认到店
                    {
                        details.InviteId = r_invite.InviteId;
                        //添加邀约内容
                        _inviteDetailsService.Add(details);


                        //添加到店  订单
                        FL_Order r_order = _orderService.Add(order);
                        report.OrderId = r_order.OrderID;
                    }
                    //添加统计
                    _reportService.Add(report);

                    scope.Complete();
                }

                ajax.IsSuccess = true;
                ajax.Message   = "添加成功";
            }
            catch (Exception e)
            {
                ajax.Message = e.Message;
            }
            return(ajax);
        }
Пример #5
0
        public AjaxMessage ModifyCustomer(FL_Customer customer, string contactType, string customerId)
        {
            AjaxMessage ajax = new AjaxMessage();

            ajax.IsSuccess = false;
            ajax.Message   = "修改失败,请稍候再试...";

            int  EmployeeId = LoginInfo.UserInfo.EmployeeId;
            Guid cusId      = new Guid(customerId);

            try
            {
                var m_customer = _customerService.GetByGuid(cusId);
                int cType      = 0;
                if (!string.IsNullOrEmpty(contactType))
                {
                    cType = contactType.ToString().ToInt32();
                }
                //客户信息
                m_customer.Bride         = customer.Bride;
                m_customer.Groom         = customer.Groom;
                m_customer.Operator      = customer.Operator;
                m_customer.BridePhone    = customer.BridePhone;
                m_customer.GroomPhone    = customer.GroomPhone;
                m_customer.OperatorPhone = customer.OperatorPhone;
                m_customer.PartyDate     = customer.PartyDate;
                m_customer.Hotel         = customer.Hotel;
                m_customer.SaleType      = customer.SaleType;
                m_customer.Channel       = customer.Channel;
                m_customer.ReCommand     = customer.ReCommand;
                m_customer.IsVip         = customer.IsVip;
                m_customer.BanqueType    = customer.BanqueType;
                m_customer.DeskCount     = customer.DeskCount;
                m_customer.Budget        = customer.Budget;
                m_customer.Description   = customer.Description;
                if (cType == 0)
                {
                    m_customer.ContactMan   = customer.Groom;
                    m_customer.ContactPhone = customer.GroomPhone;
                }
                else if (cType == 1)
                {
                    m_customer.ContactMan   = customer.Bride;
                    m_customer.ContactPhone = customer.BridePhone;
                }
                else if (cType == 2)
                {
                    m_customer.ContactMan   = customer.Operator;
                    m_customer.ContactPhone = customer.OperatorPhone;
                }

                using (TransactionScope scope = new TransactionScope())
                {
                    //修改客户信息
                    _customerService.Update(m_customer);
                    scope.Complete();
                }

                ajax.IsSuccess = true;
                ajax.Message   = "修改成功";
            }
            catch (Exception e)
            {
                ajax.Message = e.Message;
            }
            return(ajax);
        }
Пример #6
0
        public AjaxMessage OrderCotentCreate(FL_OrderDetails orderDetail)
        {
            AjaxMessage ajax = new AjaxMessage();

            ajax.IsSuccess = false;
            ajax.Message   = "异常错误,请稍后再试...";

            try
            {               //暂不考虑成功预定
                int  employeeId = LoginInfo.UserInfo.EmployeeId;
                Guid CustomerId = new Guid(orderDetail.CustomerId.ToString());

                //客户详情
                FL_Customer m_customer = _customerService.GetByGuid(CustomerId);
                m_customer.State = orderDetail.OrderState;

                //订单信息
                FL_Order m_order = _orderService.GetByGuid(new Guid(orderDetail.OrderId.ToString()));
                m_order.OrderState = m_customer.State;
                m_order.FollowCount++;
                if (orderDetail.OrderState != 9)
                {
                    m_order.NextFollowDate = orderDetail.NextFollowDate;
                }
                m_order.LastFollowDate = DateTime.Now;



                //订单详情
                orderDetail.EmployeeId = employeeId;
                orderDetail.CreateDate = DateTime.Now;



                //统计信息
                SS_Report m_report = _reportService.GetByCustomerId(CustomerId);
                m_report.CustomerState = m_customer.State;


                //事务
                using (TransactionScope scope = new TransactionScope())
                {
                    //修改客户表
                    _customerService.Update(m_customer);

                    //订单详情
                    _detailsService.Add(orderDetail);

                    //修改订单表
                    _orderService.Update(m_order);

                    //修改统计表
                    _reportService.Update(m_report);

                    scope.Complete();
                }

                ajax.IsSuccess = true;
                ajax.Message   = "记录成功";
            }
            catch (Exception e)
            {
                ajax.Message = e.Message.ToString();
            }

            return(ajax);
        }
Пример #7
0
        public AjaxMessage ComeToStore(FL_Customer m_customer, string orderEmp, string InviteId, string comeDate)
        {
            AjaxMessage ajax = new AjaxMessage();

            ajax.IsSuccess = false;
            ajax.Message   = "异常信息,请稍后再试...";
            try
            {
                if (m_customer != null && !string.IsNullOrEmpty(InviteId))
                {
                    int selfEmployeeId            = LoginInfo.UserInfo.EmployeeId;
                    FL_InviteDetails inviteDetail = new FL_InviteDetails();
                    inviteDetail.InviteId      = InviteId.ToInt32();
                    inviteDetail.CustomerId    = m_customer.CustomerID;
                    inviteDetail.InviteContent = "通过邀约 确认到店";
                    inviteDetail.CreateDate    = DateTime.Now;
                    inviteDetail.EmployeeId    = selfEmployeeId;
                    inviteDetail.InviteState   = 5;
                    inviteDetail.StateName     = inviteDetail.StateValue.GetDisplayName();


                    //新人信息
                    var customer = _customerService.GetByGuid(m_customer.CustomerID);
                    customer.Bride      = m_customer.Bride;
                    customer.BridePhone = m_customer.BridePhone;
                    customer.Groom      = m_customer.Groom;
                    customer.GroomPhone = m_customer.GroomPhone;
                    customer.Budget     = m_customer.Budget;
                    customer.DeskCount  = m_customer.DeskCount;
                    customer.State      = 5;


                    //邀约表  修改跟单人
                    FL_Invite m_invite = _inviteService.GetById(InviteId.ToInt32());
                    m_invite.FollowCount   += 1;
                    m_invite.LastFollowDate = inviteDetail.CreateDate;
                    m_invite.NextFollowDate = inviteDetail.NextFollowDate;
                    m_invite.OrderEmployee  = orderEmp.ToInt32();
                    m_invite.ComeDate       = !string.IsNullOrEmpty(comeDate) ? comeDate.ToDateTime() : DateTime.Now;

                    //统计表(客户) 修改跟单人
                    SS_Report report = _reportService.GetByCustomerId(new Guid(m_customer.CustomerID.ToString()));
                    report.CustomerState = m_customer.State;
                    report.OrderEmployee = orderEmp.ToInt32();
                    report.ComeDate      = m_invite.ComeDate;

                    //订单表
                    FL_Order m_order = new FL_Order();

                    m_order.OrderID        = Guid.NewGuid();
                    m_order.OrderCoder     = Guid.NewGuid().ToString().Replace("-", "");
                    m_order.CustomerId     = m_customer.CustomerID;
                    m_order.ComeDate       = m_invite.ComeDate;
                    m_order.EmployeeId     = orderEmp.ToInt32();
                    m_order.OrderState     = (int)CustomerState.ComeOrder;
                    m_order.FollowCount    = 0;
                    m_order.CreateEmployee = selfEmployeeId;
                    m_order.CreateDate     = DateTime.Now;



                    using (TransactionScope scope = new TransactionScope())
                    {
                        //客户表
                        _customerService.Update(customer);

                        //邀约详细
                        _invteiContentService.Add(inviteDetail);

                        //邀约表
                        _inviteService.Update(m_invite);

                        //订单表
                        _orderService.Add(m_order);

                        //统计
                        _reportService.Update(report);

                        scope.Complete();
                    }
                    ajax.IsSuccess = true;
                    ajax.Message   = "确认到店成功";
                }
            }
            catch (Exception e)
            {
                ajax.Message = e.Message;
            }

            return(ajax);
        }
Пример #8
0
        public AjaxMessage CreateInviteContent(FL_InviteDetails inviteDetail)
        {
            AjaxMessage ajax = new AjaxMessage();

            ajax.IsSuccess = false;
            ajax.Message   = "数据异常,请稍候再试...";

            try
            {
                if (inviteDetail != null)
                {
                    int selfEmployeeId = LoginInfo.UserInfo.EmployeeId;
                    inviteDetail.CreateDate = DateTime.Now;
                    inviteDetail.EmployeeId = selfEmployeeId;
                    inviteDetail.StateName  = inviteDetail.StateValue.GetDisplayName();

                    //客户表  修改相应的状态
                    FL_Customer m_customer = _customerService.GetByGuid(new Guid(inviteDetail.CustomerId.ToString()));
                    m_customer.State = inviteDetail.InviteState;

                    //邀约表
                    FL_Invite m_invite = _inviteService.GetById(inviteDetail.InviteId);
                    m_invite.FollowCount   += 1;
                    m_invite.LastFollowDate = inviteDetail.CreateDate;
                    m_invite.NextFollowDate = inviteDetail.NextFollowDate;

                    //统计表(客户)
                    SS_Report report = _reportService.GetByCustomerId(new Guid(inviteDetail.CustomerId.ToString()));


                    if (inviteDetail.InviteState == 4)     //流失
                    {
                        m_invite.IsLose   = true;
                        m_invite.LoseDate = DateTime.Now;

                        report.InviteLoseDate = m_invite.LoseDate;
                    }

                    using (TransactionScope scope = new TransactionScope())
                    {
                        //客户表
                        _customerService.Update(m_customer);

                        //邀约详细
                        _invteiContentService.Add(inviteDetail);

                        //邀约表
                        _inviteService.Update(m_invite);

                        //统计
                        _reportService.Update(report);

                        scope.Complete();
                    }
                    ajax.IsSuccess = true;
                    ajax.Message   = "记录成功";
                }
            }
            catch (Exception e)
            {
                ajax.Message = e.Message;
            }

            return(ajax);
        }