コード例 #1
0
        public IList <RMADto> GetRmaForCompletedReturnGoods(GoodsReturnQueryCriteria returnGoodsCommonSearchDto)
        {
            PageResult <RMADto> lst = RestClient.GetPage <RMADto>("custom/GetRmaByAllOver",
                                                                  returnGoodsCommonSearchDto.ToString());

            return(lst.Result);
        }
コード例 #2
0
        public IList <RMADto> GetRmaForReturnPrintDoc(GoodsReturnQueryCriteria returnGoodsCommonSearchDto)
        {
            PageResult <RMADto> lst = RestClient.GetPage <RMADto>("trans/GetRmaPrintByExpress",
                                                                  returnGoodsCommonSearchDto.ToString());

            return(lst.Result);
        }
コード例 #3
0
 public BaseReturnGoodsSearchCommonWithRma()
 {
     CommandSearch = new AsyncDelegateCommand(OnQuery);
     ReturnGoodsCommonSearchDto            = new GoodsReturnQueryCriteria();
     CustomReturnGoodsUserControlViewModel = new CustomReturnGoodsUserControlViewModel {
         MasterViewModel = this
     };
 }
コード例 #4
0
        public IList <RMADto> GetRmaForShopperReturnOrReceivingPrintDoc(
            GoodsReturnQueryCriteria returnGoodsCommonSearchDto)
        {
            PageResult <RMADto> lst = RestClient.GetPage <RMADto>("custom/GetRmaByShoppingGuide",
                                                                  returnGoodsCommonSearchDto.ToString());

            return(lst.Result);
        }