Example #1
0
        public ResultDTO UpdateOrderServiceTime(OrderQueryParamDTO search)
        {
            base.Do(false);
            var result = this.UpdateOrderServiceTimeExt(search);

            return(result);
        }
Example #2
0
        /// <summary>
        /// 获取订单详情校验数据
        /// </summary>
        /// <param name="search"></param>
        /// <returns></returns>
        public ResultDTO <OrderCheckDTO> GetOrderCheckInfo(OrderQueryParamDTO search)
        {
            base.Do(false);
            var result = this.GetOrderCheckInfoExt(search);

            return(result);
        }
Example #3
0
        /// <summary>
        /// 获取订单列表(不包含保险订单)
        /// </summary>
        /// <param name="oqpDTO"></param>
        /// <returns></returns>
        public List <OrderListCDTO> GetCustomCommodityOrderByUserIDNew(OrderQueryParamDTO oqpDTO)
        {
            base.Do(false);
            Stopwatch timer = new Stopwatch();

            timer.Start();
            var result = this.GetCustomCommodityOrderByUserIDNewExt(oqpDTO);

            timer.Stop();
            LogHelper.Debug(string.Format("CommodityOrderSV.GetCustomCommodityOrderByUserIDNew:耗时:{0}。入参:oqpDTO:{1},\r\n出参:{2}", timer.ElapsedMilliseconds, JsonHelper.JsonSerializer(oqpDTO), JsonHelper.JsonSerializer(result)));
            return(result);
        }
Example #4
0
        public List <RefundOrderListDTO> GetRefundList(OrderQueryParamDTO oqpDTO)
        {
            List <RefundOrderListDTO> result;

            try
            {
                //调用代理方法
                result = base.Channel.GetRefundList(oqpDTO);
            }
            catch
            {
                //抛异常
                throw;
            }
            finally
            {
                //关链接
                ChannelClose();
            }            //返回结果
            return(result);
        }
Example #5
0
        /// <summary>
        /// 获取订单列表(包含保险订单)
        /// </summary>
        /// <param name="oqpDTO">订单列表查询参数</param>
        /// <returns></returns>
        public List <OrderListCDTO> GetCommodityOrderByUserIDNew(OrderQueryParamDTO oqpDTO)
        {
            //定义返回值
            List <OrderListCDTO> result;

            try
            {
                //调用代理方法
                result = base.Channel.GetCommodityOrderByUserIDNew(oqpDTO);
            }
            catch
            {
                //抛异常
                throw;
            }
            finally
            {
                //关链接
                ChannelClose();
            }            //返回结果
            return(result);
        }
Example #6
0
        public ResultDTO UpdateOrderServiceTime(OrderQueryParamDTO search)
        {
            //定义返回值
            ResultDTO result;

            try
            {
                //调用代理方法
                result = base.Channel.UpdateOrderServiceTime(search);
            }
            catch
            {
                //抛异常
                throw;
            }
            finally
            {
                //关链接
                ChannelClose();
            }            //返回结果
            return(result);
        }
Example #7
0
        public ResultDTO <OrderCheckDTO> GetOrderCheckInfo(OrderQueryParamDTO search)
        {
            //定义返回值
            ResultDTO <OrderCheckDTO> result;

            try
            {
                //调用代理方法
                result = base.Channel.GetOrderCheckInfo(search);
            }
            catch
            {
                //抛异常
                throw;
            }
            finally
            {
                //关链接
                ChannelClose();
            }            //返回结果
            return(result);
        }