Exemplo n.º 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            SortedDictionary <string, string> sortedParams = OpenApiHelper.GetSortedParams(this.Context);
            string results = string.Empty;

            this.GetIncrementSoldTrades(sortedParams, ref results);
            base.Response.ContentType = "text/json";
            base.Response.Write(results);
            base.Response.End();
        }
Exemplo n.º 2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            SortedDictionary <string, string> sortedParams = OpenApiHelper.GetSortedParams(this.Context);
            string result = string.Empty;

            this.UpdateProductQuantity(sortedParams, ref result);
            base.Response.ContentType = "text/json";
            base.Response.Write(result);
            base.Response.End();
        }
Exemplo n.º 3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            SortedDictionary <string, string> sortedParams = OpenApiHelper.GetSortedParams(this.Context);
            string results = string.Empty;

            this.GetSoldTrades(sortedParams, ref results);
            base.Response.ContentType = "text/json";
            Globals.Debuglog(base.Request.Url.ToString() + "||" + Globals.SubStr(results, 200, "------------结束"), "_DebugERP.txt");
            base.Response.Write(results);
            base.Response.End();
        }
Exemplo n.º 4
0
        protected void Page_Load(object sender, System.EventArgs e)
        {
            System.Collections.Generic.SortedDictionary <string, string> sortedParams = OpenApiHelper.GetSortedParams(this.Context);
            string empty = string.Empty;

            this.UpdateProductApproveStatus(sortedParams, ref empty);
            base.Response.ContentType = "text/json";
            base.Response.Write(empty);
            base.Response.End();
        }
Exemplo n.º 5
0
        protected void Page_Load(object sender, System.EventArgs e)
        {
            System.Collections.Generic.SortedDictionary <string, string> sortedParams = OpenApiHelper.GetSortedParams(this.Context);
            string empty = string.Empty;

            this.ChangLogistics(sortedParams, ref empty);
            base.Response.ContentType = "text/json";
            Globals.Debuglog(base.Request.Url.ToString() + "||" + Globals.SubStr(empty, 200, "------------结束"), "_DebugERP.txt");
            base.Response.Write(empty);
            base.Response.End();
        }