Example #1
0
        public void DoFlow()
        {
            //1	  取得Token	            Token
            //2   變更出貨狀態          api/ShipManage/ChangeShipStatus
            //3   查詢出貨狀態(檢查)    api/ShipManage/Search

            getUserByUserInfo = new GetUserByUserInfo()
            {
                password = password, userName = userName
            };
            getTokenResponse = GetToken();
            GetChangeShipStatus();
            GetSearch();
        }
Example #2
0
        public void DoFlow()
        {
            //1	  取得Token	        Token
            //2   商品變量          api/Product/AccessedNum
            //3   商品查詢(檢查)    api/Product/ProductQuery

            getUserByUserInfo = new GetUserByUserInfo()
            {
                password = password, userName = userName
            };
            getTokenResponse = GetToken();
            GetAccessedNum();
            GetProductQuery();
        }
        public void DoFlow()
        {
            //1	  取得Token	        Token
            //2   商品變價          api/Product/ChangeProductPrice
            //3   商品查詢(檢查)    api/Product/ProductQuery

            getUserByUserInfo = new GetUserByUserInfo()
            {
                password = password, userName = userName
            };
            getTokenResponse = GetToken();
            GetChangeProductPrice();
            GetProductQuery();
        }
        public void DoFlow()
        {
            //1	  取得Token	        Token
            //2   變更商品銷售狀態  api/Product/ChangeSaleStatus
            //3   商品查詢(檢查)    api/Product/ProductQuery

            getUserByUserInfo = new GetUserByUserInfo()
            {
                password = password, userName = userName
            };
            getTokenResponse = GetToken();
            GetChangeSaleStatus();
            GetProductQuery();
        }
Example #5
0
        public void DoFlow()
        {
            //1	  取得Token	        Token
            //2   查詢規格表        api/Product/ProductSpecCacheLookup
            //3   填寫規格表內容    api/Product/InsertProductFormSpec
            //4   商品查詢(檢查)    api/Product/ProductQuery

            getUserByUserInfo = new GetUserByUserInfo()
            {
                password = password, userName = userName
            };
            getTokenResponse = GetToken();
            GetProductSpecCacheLookup();
            GetInsertProductFormSpec();
            GetProductQuery();
        }
        public void DoFlow()
        {
            //1	  取得Token	        Token
            //2   查詢規格表        api/Product/ProductSpecCacheLookup
            //3   修改 V2           api/Product/SaleSKU/v2
            //4   商品查詢(檢查)    api/Product/ProductQuery

            getUserByUserInfo = new GetUserByUserInfo()
            {
                password = password, userName = userName
            };
            getTokenResponse = GetToken();
            GetProductSpecCacheLookup();
            GetProductV2();
            GetProductQuery();
        }
Example #7
0
        public void DoFlow()
        {
            //1	  取得Token	        Token
            //2   查詢前台分類      api/Product/FrontendProductCategoryOfFormIDsQuery
            //3   查詢規格表        api/Product/ProductSpecCacheLookup
            //4   新增 V2           api/Product/SaleSKU/v2
            //5   商品查詢(檢查)    api/Product/ProductQuery

            getUserByUserInfo = new GetUserByUserInfo()
            {
                password = password, userName = userName
            };
            getTokenResponse = GetToken();
            GetFrontendProductCategoryOfFormIDsQuery();
            GetProductSpecCacheLookup();
            GetProductV2();
            GetProductQuery();
        }