コード例 #1
0
        /// <summary>
        /// 获取订单
        /// </summary>
        /// <param name="pRequest"></param>
        /// <returns></returns>
        private string GetOrder(string pRequest)
        {
            var rd     = new APIResponse <GetOrderRD>();
            var rdData = new GetOrderRD();

            try
            {
                var rp = pRequest.DeserializeJSONTo <APIRequest <GetOrderRP> >();

                if (rp.Parameters == null)
                {
                    throw new ArgumentException();
                }

                rp.Parameters.Validate();
                var loggingSessionInfo = Default.GetBSLoggingSession(rp.CustomerID, rp.UserID);

                #region 获取订单

                GLProductOrderBLL bll = new GLProductOrderBLL(loggingSessionInfo);

                GLProductOrderEntity glpoe = bll.GetProductOrderByOrderNo(rp.CustomerID, rp.Parameters.OrderNO);
                rdData.CustomerName   = glpoe.CustomerName;
                rdData.ServiceAddress = glpoe.CustomerAddress;
                rdData.OrderNO        = glpoe.ProductOrderSN;

                //var gldiibll = new GLDeviceInstallItemBLL(loggingSessionInfo);
                //DataSet ds = gldiibll.GetDeviceInstallItemByOrderNo(rp.CustomerID, rp.Parameters.OrderNO);
                //if (ds.Tables[0] != null && ds.Tables.Count > 0 && ds.Tables[0].Rows.Count > 0)
                //{
                //    rdData.CustomerName = ds.Tables[0].Rows[0]["CustomerName"].ToString();
                //    rdData.ServiceAddress = ds.Tables[0].Rows[0]["ServiceAddress"].ToString();
                //    rdData.OrderNO = ds.Tables[0].Rows[0]["ProductOrderSN"].ToString();

                //    rdData.DeviceList = DataTableToObject.ConvertToList<InstallDeviceViewModel>(ds.Tables[0]);
                //}
                #endregion
                rd.Data       = rdData;
                rd.ResultCode = 0;
            }
            catch (Exception ex)
            {
                rd.Message    = ex.Message;
                rd.ResultCode = 101;
            }
            return(rd.ToJSON());
        }
コード例 #2
0
        /// <summary>
        /// 提交预约订单
        /// </summary>
        /// <param name="pRequest"></param>
        /// <returns></returns>
        private string SubmitAppOrder(string pRequest)
        {
            var rd     = new APIResponse <SubmitAppOrderRD>();
            var rdData = new SubmitAppOrderRD();

            var rp = pRequest.DeserializeJSONTo <APIRequest <SubmitAppOrderRP> >();

            if (rp.Parameters == null)
            {
                throw new ArgumentException();
            }

            if (rp.Parameters != null)
            {
                rp.Parameters.Validate();
            }

            var loggingSessionInfo = Default.GetBSLoggingSession(rp.CustomerID, rp.UserID);

            #region 提交预约单

            //根据订单号获取订单ID
            GLProductOrderBLL    glpobll = new GLProductOrderBLL(loggingSessionInfo);
            GLProductOrderEntity glpoe   = glpobll.GetProductOrderByOrderNo(rp.CustomerID, rp.Parameters.OrderNO);
            //更新客户VipID
            //if (glpoe != null && !string.IsNullOrEmpty(rp.Parameters.VipID))
            if (glpoe != null && !string.IsNullOrEmpty(rp.UserID))
            {
                glpoe.VipID          = rp.UserID;
                glpoe.CustomerGender = rp.Parameters.Gender;
                glpoe.CustomerName   = rp.Parameters.Surname;
                glpobll.Update(glpoe);
            }

            //插入预约
            GLServiceOrderBLL      glsobll      = new GLServiceOrderBLL(loggingSessionInfo);
            GLServiceOrderEntity   glsoe        = glsobll.GetGLServiceOrderEntityByOrderID(rp.CustomerID, glpoe.ProductOrderID);
            ServiceOrderDataAccess orderManager = new ServiceOrderDataAccess(loggingSessionInfo);

            if (glsoe == null)
            {
                glsoe = new GLServiceOrderEntity();
            }

            //订单ID
            glsoe.ProductOrderID  = glpoe.ProductOrderID;
            glsoe.ServiceType     = rp.Parameters.ServiceType;
            glsoe.ServiceDate     = rp.Parameters.ServiceOrderDate;
            glsoe.ServiceDateEnd  = rp.Parameters.ServiceOrderDateEnd;
            glsoe.ServiceAddress  = rp.Parameters.ServiceAddress;
            glsoe.CustomerMessage = rp.Parameters.Msg;
            glsoe.Latitude        = Convert.ToDecimal(rp.Parameters.Latitude);
            glsoe.Longitude       = Convert.ToDecimal(rp.Parameters.Longitude);
            glsoe.CustomerID      = rp.CustomerID;

            if (!string.IsNullOrEmpty(glsoe.ServiceOrderID))
            {
                //删除预约单
                glsobll.Update(glsoe);
                //删除预约单设备
                orderManager.DeleteInstallDeviceList(glsoe.CustomerID, glsoe.ServiceOrderID);
            }
            else
            {
                glsoe.ServiceOrderID = GreeCommon.GetGuid();
                glsobll.Create(glsoe);
            }

            //插入安装设备
            orderManager.SaveInstallDeviceList(glsoe, rp.Parameters.DeviceList);

            //预约单管理
            //SubscribeOrderViewModel order = orderManager.GetSubscribeOrder(rp.CustomerID, rp.Parameters.OrderNO);
            SubscribeOrderViewModel order = orderManager.GetSubscribeOrderDetail(rp.CustomerID, glsoe.ServiceOrderID);
            ServiceOrderManager.Instance.AddServiceOrder(order);

            rdData.ServiceOrderNO = glsoe.ServiceOrderID;
            #endregion


            #region 推送信息给服务师傅IOS,Android消息推送
            GLServicePersonInfoBLL glspibll = new GLServicePersonInfoBLL(loggingSessionInfo);
            DataSet dsPerson = glspibll.GetServicePerson(rp.CustomerID, string.Empty);
            string  msg      = rp.Parameters.Msg;
            if (dsPerson != null && dsPerson.Tables != null && dsPerson.Tables[0].Rows.Count > 0)
            {
                foreach (DataRow row in dsPerson.Tables[0].Rows)
                {
                    new PushIOSMessage(loggingSessionInfo).PushMessage(row["ServicePersonID"].ToString(), msg);
                    new PushAndroidMessage(loggingSessionInfo).PushMessage(row["ServicePersonID"].ToString(), msg);
                }
            }
            #endregion

            rd.Data       = rdData;
            rd.ResultCode = 0;

            return(rd.ToJSON());
        }