示例#1
0
 public ActionResult ValidateTrayNO(TPShelves model)
 {
     GetLoginInfo();
     if (Login_Info == null)
     {
         return(Content("<script>location.href='/Home'</script>"));
     }
     service = new TPShelvesService(Login_Info.User_ID, Login_Info.User_Name,
                                    Login_Info.Token);
     try
     {
         service.SetParameter("PaperNO", model.PaperNO);
         service.SetParameter("Barcode", model.Barcode);
         service.SetParameter("TrayNO", model.TrayNO);
         service.SetParameter("BatchTypeID", model.BatchTypeID);
         service.SetParameter("ReceiptTypeID", model.ReceiptTypeID);
         //service.SetParameter("Qty", model.Qty);
         service.ValidateTrayNO();
         DataTable dt = service.QueryGoods();
         if (dt == null || dt.Rows.Count <= 0)
         {
             return(Content("商品条码输入有误!"));
         }
         else
         {
             return(Content(JsonHelper.ToJson(dt)));
         }
     }
     catch (Exception ex)
     {
         Loger.Error(ex.Message, ex);
         return(Content(ex.Message));
     }
 }
示例#2
0
        public ActionResult ValidatPaperNO(TPShelves model)
        {
            GetLoginInfo();
            if (Login_Info == null)
            {
                return(Content("<script>location.href='/Home'</script>"));
            }
            string PaperNO = this.Request.Form["ID"];

            service = new TPShelvesService(Login_Info.User_ID, Login_Info.User_Name,
                                           Login_Info.Token);
            try
            {
                service.SetParameter("PaperNO", PaperNO);
                //service.SetParameter("PaperTypeID", "3");//退配收
                DataTable dt = service.ValidatPaperNO();
                if (dt != null && dt.Rows.Count > 0)
                {
                    return(Content(JsonHelper.ToJson(dt)));
                }
                else
                {
                    return(Content("订单不存在!"));
                }
            }
            catch (Exception ex)
            {
                Loger.Error(ex);
                return(Content(ex.Message));
            }
        }
示例#3
0
 public ActionResult Save(TPShelves model)
 {
     GetLoginInfo();
     if (Login_Info == null)
     {
         return(Content("<script>location.href='/Home'</script>"));
     }
     service = new TPShelvesService(Login_Info.User_ID, Login_Info.User_Name,
                                    Login_Info.Token);
     try
     {
         service.SetParameter("PaperNO", model.PaperNO);
         service.SetParameter("Barcode", model.Barcode);
         service.SetParameter("TrayNO", model.TrayNO);
         service.SetParameter("Qty", model.Qty);
         service.SetParameter("PaperTypeID", "3");//配送收
         service.SetParameter("BatchTypeID", model.BatchTypeID);
         service.SetParameter("ReceiptTypeID", model.ReceiptTypeID);
         service.SetParameter("LocationNO", model.LocationNO);
         service.SetParameter("ProductDate", model.ProductDate);
         service.SetParameter("EffectiveDate", model.EffectiveDate);
         service.SetParameter("ShelfLife", model.ShelfLife);
         service.ValidateLocationNO();
         service.Accept();
         return(Content(""));
     }
     catch (Exception ex)
     {
         Loger.Error(ex.Message, ex);
         return(Content(ex.Message));
     }
 }
示例#4
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="model"></param>
 /// <returns></returns>
 public ActionResult QryGoodsStock(TPShelves model)
 {
     GetLoginInfo();
     if (Login_Info == null)
     {
         return(Content("<script>location.href='/Home'</script>"));
     }
     service = new TPShelvesService(Login_Info.User_ID, Login_Info.User_Name, Login_Info.Token);
     try
     {
         service.SetParameter("Barcode", model.Barcode);
         service.SetParameter("PaperNO", model.PaperNO);
         service.SetParameter("ProductDate", model.ProductDate);
         DataTable dt = service.QueryGoodsStock();
         if (dt != null && dt.Rows.Count > 0)
         {
             return(Content(JsonHelper.ToJson(dt)));
         }
         else
         {
             return(Content(""));
         }
     }
     catch (Exception ex)
     {
         Loger.Error(ex);
         return(Content(ex.Message));
     }
 }
示例#5
0
        public ActionResult Detail(TPShelves model)
        {
            GetLoginInfo();
            if (Login_Info == null)
            {
                return(Content("<script>location.href='/Home'</script>"));
            }
            //model.PaperNO = Request.Form["hdPaperNO"];
            //model.ReceiptTypeID = Request.Form["hdReceiptTypeID"];
            //model.BatchTypeID = Request.Form["hdBatchTypeID"];
            model.PaperNO       = Request.QueryString["PaperNO"];
            model.ReceiptTypeID = Request.QueryString["ReceiptTypeID"];
            model.BatchTypeID   = Request.QueryString["BatchTypeID"];
            //  model.TrayNO = Request.Form["TrayNO"];
            service = new TPShelvesService(Login_Info.User_ID, Login_Info.User_Name,
                                           Login_Info.Token);
            try
            {
                service.SetParameter("PaperNO", model.PaperNO);
                // service.SetParameter("TrayNO", model.TrayNO);

                DataTable dt = service.QueryStoreInfo();
                if (dt == null || dt.Rows.Count <= 0)
                {
                    return(Content("<script>alert('退配单输入有误!')</script>"));
                }
                else
                {
                    model.Storeinfo = dt.Rows[0]["Storeinfo"].ToString();
                    model.TrayNO    = dt.Rows[0]["TrayNO"].ToString();
                }
            }
            catch (RFException rfex)
            {
                Loger.Error(rfex.Message, rfex);
                return(Content(string.Format("<script>alert('{0}')</script>", rfex.Message)));
            }
            catch (Exception ex)
            {
                Loger.Error(ex.Message, ex);
                return(Content(string.Format("<script>alert('{0}')</script>", ex.Message)));
            }
            return(View(model));
        }
示例#6
0
 public ActionResult Over(TPShelves model)
 {
     GetLoginInfo();
     if (Login_Info == null)
     {
         return(Content("<script>location.href='/Home'</script>"));
     }
     service = new TPShelvesService(Login_Info.User_ID, Login_Info.User_Name,
                                    Login_Info.Token);
     try
     {
         service.SetParameter("PaperNO", model.PaperNO);
         //  service.SetParameter("Barcode", model.Barcode);
         //service.SetParameter("TrayNO", model.TrayNO);
         //service.SetParameter("Qty", model.Qty);
         service.Over();
         return(Content(""));
     }
     catch (Exception ex)
     {
         Loger.Error(ex.Message, ex);
         return(Content(ex.Message));
     }
 }