Ejemplo n.º 1
0
        public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO RefuseRefundOrderAfterSales(Jinher.AMP.BTP.Deploy.CustomDTO.CancelTheOrderDTO cancelTheOrderDTO)
        {
            //定义返回值
            Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO result;

            try
            {
                //调用代理方法
                result = base.Channel.RefuseRefundOrderAfterSales(cancelTheOrderDTO);
            }
            catch
            {
                //抛异常
                throw;
            }
            finally
            {
                //关链接
                ChannelClose();
            }            //返回结果
            return(result);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// 拒绝收货
 /// </summary>
 /// <param name="cancelTheOrderDTO"></param>
 /// <returns></returns>
 public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO RefuseRefundOrderSeller(Jinher.AMP.BTP.Deploy.CustomDTO.CancelTheOrderDTO cancelTheOrderDTO)
 {
     LogHelper.Info(string.Format("拒绝收货 CommodityOrderBP.RefuseRefundOrderSeller, cancelTheOrderDTO:{0} ", JsonHelper.JsonSerializer(cancelTheOrderDTO)), "BTP_Order");
     base.Do(false);
     return(this.RefuseRefundOrderSellerExt(cancelTheOrderDTO));
 }