Exemplo n.º 1
0
 public int DeleteByTrans2(CauseObject_MCE_B_ASSETS_TRANSFER cause, IDbTransaction transaction)
 {
     if (LocalMode)
     {
         return(HelperObject_MCE_B_ASSETS_TRANSFER.Delete(cause, transaction));
         //平台自动生成代码
     }
     else
     {
         throw new InvalidConstraintException();
     }
 }
Exemplo n.º 2
0
        public DisplayObject_MCE_B_ASSETS_TRANSFER[] Query(CauseObject_MCE_B_ASSETS_TRANSFER cause, PagingParamter paging, OrderByParameter order)
        {
            if (LocalMode)
            {
                SystemLogic.Proxy.AuditQuery(cause);

                //平台自动生成代码
                return(HelperObject_MCE_B_ASSETS_TRANSFER.Query(cause, paging, order));
            }
            else
            {
                using (ServiceManager <ServiceContract_MCE_B_ASSETS_TRANSFER> smgr = new ServiceManager <ServiceContract_MCE_B_ASSETS_TRANSFER>(ServiceUri))
                {
                    return(smgr.Service.Query(cause, paging, order));
                }
            }
        }
Exemplo n.º 3
0
 public BizLogicMsg Delete(CauseObject_MCE_B_ASSETS_TRANSFER cause)
 {
     if (LocalMode)
     {
         BizLogicMsg msg = new BizLogicMsg();
         using (IDbConnection connection = IDALProvider.IDAL.PopConnection())
         {
             using (IDbTransaction transaction = connection.BeginTransaction())
             {
                 try
                 {
                     int amount = HelperObject_MCE_B_ASSETS_TRANSFER.Delete(cause, transaction);
                     //平台自动生成代码
                     transaction.Commit();
                 }
                 catch (Exception expt)
                 {
                     transaction.Rollback();
                     msg = new BizLogicMsg(false, expt.Message);
                     Error(expt);
                 }
                 finally
                 {
                     IDALProvider.IDAL.PushConnection(connection);
                 }
             }
         }
         return(msg);
     }
     else
     {
         using (ServiceManager <ServiceContract_MCE_B_ASSETS_TRANSFER> smgr = new ServiceManager <ServiceContract_MCE_B_ASSETS_TRANSFER>(ServiceUri))
         {
             return(smgr.Service.Delete(cause));
         }
     }
 }
        public void ProcessRequest(HttpContext context)
        {
            //允许跨域
            context.Response.AddHeader("Access-Control-Allow-Origin", "*");
            JSON_MSG jsonMsg = new JSON_MSG();

            try
            {
                context.Response.ContentType = "text/plain";
                HttpRequest request = context.Request;

                OrderByParameter orderBy = new OrderByParameter();
                orderBy.Asc     = false;
                orderBy.OrderBy = "CODE";

                PagingParamter pager = new PagingParamter();
                pager.PageSize  = string.IsNullOrEmpty(request["limit"]) ? 10 : int.Parse(request["limit"].ToString());
                pager.PageIndex = string.IsNullOrEmpty(request["offset"]) ? 0 : (int.Parse(request["offset"].ToString()) <= 0) ? 0 : int.Parse(request["offset"].ToString()) - 1;

                CauseObject_MCE_B_ASSETS_TRANSFER p = new CauseObject_MCE_B_ASSETS_TRANSFER();

                if (!string.IsNullOrEmpty(request["status"]))
                {
                    p.STATE = int.Parse(request["status"].ToString());
                }


                if (!string.IsNullOrEmpty(request["outdept"]))
                {
                    p.TRANSFER_DEPT_ID = request["outdept"].ToString();
                }


                if (!string.IsNullOrEmpty(request["dept"]))
                {
                    p.DEPT_ID = request["dept"].ToString();
                }



                if (!string.IsNullOrEmpty(request["code"]))
                {
                    p.CODE = "%" + request["code"].ToString() + "%";
                }

                if (!string.IsNullOrEmpty(request["beginspan"]))
                {
                    p.CREATE_DATE       = new DateSpan();
                    p.CREATE_DATE.Begin = DateTime.Parse(request["beginspan"].ToString());
                }
                if (!string.IsNullOrEmpty(request["endspan"]))
                {
                    if (p.CREATE_DATE == null)
                    {
                        p.CREATE_DATE = new DateSpan();
                    }
                    p.CREATE_DATE.End = DateTime.Parse(request["endspan"].ToString());
                }


                DisplayObject_MCE_B_ASSETS_TRANSFER[] list = BizLogicObject_MCE_B_ASSETS_TRANSFER.Proxy.Query(p, pager, orderBy);



                JSON_PAGER jsonPager = new JSON_PAGER();

                jsonPager.total = pager.TotalRecords;
                jsonPager.rows  = list;

                jsonMsg.Message = jsonPager;
                jsonMsg.Succeed = 1;
            }
            catch (Exception ex)
            {
                jsonMsg.Succeed = 0;
                jsonMsg.Message = ex.Message;
            }
            finally
            {
                IsoDateTimeConverter timeConverter = new IsoDateTimeConverter {
                    DateTimeFormat = "yyyy'-'MM'-'dd HH':'mm"
                };

                string strMsg = JsonConvert.SerializeObject(jsonMsg, Formatting.Indented, timeConverter);
                strMsg = strMsg.Replace("0001-01-01 00:00", "");
                context.Response.Write(strMsg);

                context.Response.End();
            }
        }
        public void ProcessRequest(HttpContext context)
        {
            //允许跨域
            context.Response.AddHeader("Access-Control-Allow-Origin", "*");
            JSON_MSG jsonMsg = new JSON_MSG();

            try
            {
                context.Response.ContentType = "text/plain";
                HttpRequest request = context.Request;

                CauseObject_MCE_B_ASSETS_TRANSFER p = new CauseObject_MCE_B_ASSETS_TRANSFER();
                p.ID = request["id"].ToString();

                DisplayObject_MCE_B_ASSETS_TRANSFER[] listHead = BizLogicObject_MCE_B_ASSETS_TRANSFER.Proxy.Query(p);


                JSON_PAGER jsonPager = new JSON_PAGER();
                if (listHead == null)
                {
                    throw new Exception("获取列表信息失败.");
                }

                jsonPager.head = listHead[0];


                OrderByParameter orderBy = new OrderByParameter();
                orderBy.Asc     = true;
                orderBy.OrderBy = "ASSETS_CODE";


                CauseObject_MCE_B_ASSETS_TRANSFER_D pd = new CauseObject_MCE_B_ASSETS_TRANSFER_D();
                pd.BASE_ID = request["id"].ToString();


                DisplayObject_MCE_B_ASSETS_TRANSFER_D[] listDetail = BizLogicObject_MCE_B_ASSETS_TRANSFER_D.Proxy.Query(pd, null, orderBy);


                jsonPager.total = listDetail.Length;
                jsonPager.rows  = listDetail;

                jsonMsg.Succeed = 1;
                jsonMsg.Message = jsonPager;
            }
            catch (Exception ex)
            {
                jsonMsg.Succeed = 0;
                jsonMsg.Message = ex.Message;
            }
            finally
            {
                IsoDateTimeConverter timeConverter = new IsoDateTimeConverter {
                    DateTimeFormat = "yyyy'-'MM'-'dd HH':'mm"
                };

                string strMsg = JsonConvert.SerializeObject(jsonMsg, Formatting.Indented, timeConverter);

                context.Response.Write(strMsg);

                context.Response.End();
            }
        }
Exemplo n.º 6
0
        public void ProcessRequest(HttpContext context)
        {
            //允许跨域
            context.Response.AddHeader("Access-Control-Allow-Origin", "*");
            JSON_MSG jsonMsg = new JSON_MSG();

            try
            {
                context.Response.ContentType = "text/plain";
                HttpRequest request = context.Request;

                if (string.IsNullOrEmpty(request["id"]))
                {
                    throw new Exception("参数错误.");
                }

                string strID = request["id"];

                EntityObject_MCE_B_ASSETS entAssets = BizLogicObject_MCE_B_ASSETS.Proxy.Get(new EntityObject_MCE_B_ASSETS()
                {
                    ID = strID
                });
                if (entAssets == null)
                {
                    throw new Exception("数据错误.");
                }

                JsonMceCirculation_Info jsonMceCirculation_Info = new JsonMceCirculation_Info();
                jsonMceCirculation_Info.AOG_Info      = new JsonMceCirculation_AOG();
                jsonMceCirculation_Info.Instock_Info  = new JsonMceCirculation_Instock();
                jsonMceCirculation_Info.Outstock_Info = new JsonMceCirculation_Outstock();
                jsonMceCirculation_Info.Back_Info     = new JsonMceCirculation_Back();
                jsonMceCirculation_Info.Return_Info   = new JsonMceCirculation_Return();
                jsonMceCirculation_Info.Transfer_Info = new JsonMceCirculation_Transfer();


                CauseObject_MCE_B_AOG p_AOG = new CauseObject_MCE_B_AOG();
                p_AOG.SetCustomCondition(" and MCE_B_AOG.ID in(select base_id from MCE_B_AOG_D where id=(select ref_tab_id from MCE_B_ASSETS_INSTOCK_D where ref_tab_name='MCE_B_AOG_D' and id='" + entAssets.REF_TAB_ID + "'))");

                DisplayObject_MCE_B_AOG[] listAOG = BizLogicObject_MCE_B_AOG.Proxy.Query(p_AOG);
                if (listAOG != null && listAOG.Length > 0)
                {
                    jsonMceCirculation_Info.AOG_Info.id               = listAOG[0].ID;
                    jsonMceCirculation_Info.AOG_Info.code             = listAOG[0].CODE;
                    jsonMceCirculation_Info.AOG_Info.purcharse_person = listAOG[0].PURCHARSE_PERSON;
                    jsonMceCirculation_Info.AOG_Info.create_date      = listAOG[0].CREATE_DATE;
                    //  jsonMceCirculation_Info.AOG_Info.purcharse_date = listAOG[0].pu;
                    jsonMceCirculation_Info.AOG_Info.use_dept_id      = listAOG[0].USE_DEPT_ID;
                    jsonMceCirculation_Info.AOG_Info.use_dept_name    = listAOG[0].USE_DEPT_ID_NAME;
                    jsonMceCirculation_Info.AOG_Info.use_user_id      = listAOG[0].USE_USER_ID;
                    jsonMceCirculation_Info.AOG_Info.use_user_name    = listAOG[0].INSTALL_USER_ID_NAME;
                    jsonMceCirculation_Info.AOG_Info.provider_id      = listAOG[0].PROVIDER_ID_NAME;
                    jsonMceCirculation_Info.AOG_Info.provider_name    = listAOG[0].PROVIDER_ID_NAME;
                    jsonMceCirculation_Info.AOG_Info.invoice_code     = listAOG[0].INVOICE_CODE;
                    jsonMceCirculation_Info.AOG_Info.purcharse_ht_num = listAOG[0].PURCHARSE_HT_NUM;
                }


                CauseObject_MCE_B_ASSETS_INSTOCK p_INSTOCK = new CauseObject_MCE_B_ASSETS_INSTOCK();
                p_INSTOCK.SetCustomCondition(" and MCE_B_ASSETS_INSTOCK.ID in(select base_id from MCE_B_ASSETS_INSTOCK_D where id='" + entAssets.REF_TAB_ID + "')");

                DisplayObject_MCE_B_ASSETS_INSTOCK[] listINSTOCK = BizLogicObject_MCE_B_ASSETS_INSTOCK.Proxy.Query(p_INSTOCK);
                if (listINSTOCK != null && listINSTOCK.Length > 0)
                {
                    jsonMceCirculation_Info.Instock_Info.id   = listINSTOCK[0].ID;
                    jsonMceCirculation_Info.Instock_Info.code = listINSTOCK[0].CODE;

                    jsonMceCirculation_Info.Instock_Info.user_id        = listINSTOCK[0].USER_ID;
                    jsonMceCirculation_Info.Instock_Info.user_name      = listINSTOCK[0].USER_ID_NAME;
                    jsonMceCirculation_Info.Instock_Info.create_date    = listINSTOCK[0].CREATE_DATE;
                    jsonMceCirculation_Info.Instock_Info.invoice_code   = listINSTOCK[0].INVOICE_CODE;
                    jsonMceCirculation_Info.Instock_Info.warehouse_id   = listINSTOCK[0].WAREHOUSE_ID;
                    jsonMceCirculation_Info.Instock_Info.warehouse_name = listINSTOCK[0].WAREHOUSE_ID_NAME;
                    jsonMceCirculation_Info.Instock_Info.provider_id    = listINSTOCK[0].PROVIDER_ID;
                    jsonMceCirculation_Info.Instock_Info.provider_name  = listINSTOCK[0].PROVIDER_ID_NAME;
                }


                CauseObject_MCE_B_ASSETS_OUTSTOCK p_OUTSTOCK = new CauseObject_MCE_B_ASSETS_OUTSTOCK();
                p_OUTSTOCK.SetCustomCondition(" and MCE_B_ASSETS_OUTSTOCK.ID in(select base_id from MCE_B_ASSETS_OUTSTOCK_D where ref_tab_name='MCE_B_ASSETS_INSTOCK_D' and ref_tab_id='" + entAssets.REF_TAB_ID + "')");

                DisplayObject_MCE_B_ASSETS_OUTSTOCK[] listOUTSTOCK = BizLogicObject_MCE_B_ASSETS_OUTSTOCK.Proxy.Query(p_OUTSTOCK);
                if (listOUTSTOCK != null && listOUTSTOCK.Length > 0)
                {
                    jsonMceCirculation_Info.Outstock_Info.id   = listOUTSTOCK[0].ID;
                    jsonMceCirculation_Info.Outstock_Info.code = listOUTSTOCK[0].CODE;

                    jsonMceCirculation_Info.Outstock_Info.using_user_id    = listOUTSTOCK[0].USING_USER_ID;
                    jsonMceCirculation_Info.Outstock_Info.using_user_name  = listOUTSTOCK[0].USING_USER_ID_NAME;
                    jsonMceCirculation_Info.Outstock_Info.create_user_id   = listOUTSTOCK[0].CREATE_USER_ID;
                    jsonMceCirculation_Info.Outstock_Info.create_user_name = listOUTSTOCK[0].CREATE_USER_ID_NAME;
                    jsonMceCirculation_Info.Outstock_Info.create_date      = listOUTSTOCK[0].CREATE_DATE;
                    jsonMceCirculation_Info.Outstock_Info.stock_id         = listOUTSTOCK[0].STOCK_ID;
                    jsonMceCirculation_Info.Outstock_Info.stock_name       = listOUTSTOCK[0].STOCK_ID_NAME;
                    jsonMceCirculation_Info.Outstock_Info.using_dept_id    = listOUTSTOCK[0].USING_DEPT_ID;
                    jsonMceCirculation_Info.Outstock_Info.using_dept_name  = listOUTSTOCK[0].USING_DEPT_ID_NAME;
                }



                CauseObject_MCE_B_ASSETS_BACK p_BACK = new CauseObject_MCE_B_ASSETS_BACK();
                p_BACK.SetCustomCondition(" and MCE_B_ASSETS_BACK.ID in(select base_id from MCE_B_ASSETS_BACK_D where assets_id='" + strID + "')");

                DisplayObject_MCE_B_ASSETS_BACK[] listBACK = BizLogicObject_MCE_B_ASSETS_BACK.Proxy.Query(p_BACK);
                if (listBACK != null && listBACK.Length > 0)
                {
                    jsonMceCirculation_Info.Back_Info.id   = listBACK[0].ID;
                    jsonMceCirculation_Info.Back_Info.code = listBACK[0].CODE;

                    jsonMceCirculation_Info.Back_Info.return_dept_id   = listBACK[0].RETURN_DEPT_ID;
                    jsonMceCirculation_Info.Back_Info.return_dept_name = listBACK[0].RETURN_DEPT_ID_NAME;
                    jsonMceCirculation_Info.Back_Info.create_date      = listBACK[0].CREATE_DATE;
                    jsonMceCirculation_Info.Back_Info.return_user_id   = listBACK[0].RETURN_USER_ID;
                    jsonMceCirculation_Info.Back_Info.return_user_name = listBACK[0].RETURN_USER_ID_NAME;
                }



                CauseObject_MCE_B_SALES_RETURN p_RETURN = new CauseObject_MCE_B_SALES_RETURN();
                p_RETURN.SetCustomCondition(" and MCE_B_SALES_RETURN.ID in(select base_id from MCE_B_SALES_RETURN_D where assets_id='" + strID + "')");

                DisplayObject_MCE_B_SALES_RETURN[] listRETURN = BizLogicObject_MCE_B_SALES_RETURN.Proxy.Query(p_RETURN);
                if (listRETURN != null && listRETURN.Length > 0)
                {
                    jsonMceCirculation_Info.Return_Info.id   = listRETURN[0].ID;
                    jsonMceCirculation_Info.Return_Info.code = listRETURN[0].CODE;

                    jsonMceCirculation_Info.Return_Info.user_id       = listRETURN[0].USER_ID;
                    jsonMceCirculation_Info.Return_Info.user_name     = listRETURN[0].USER_ID_NAME;
                    jsonMceCirculation_Info.Return_Info.create_date   = listRETURN[0].CREATE_DATE;
                    jsonMceCirculation_Info.Return_Info.provider_id   = listRETURN[0].PROVIDER_ID;
                    jsonMceCirculation_Info.Return_Info.provider_name = listRETURN[0].PROVIDER_ID_NAME;
                    jsonMceCirculation_Info.Return_Info.stock_id      = listRETURN[0].STOCK_ID;
                    jsonMceCirculation_Info.Return_Info.stock_name    = listRETURN[0].STOCK_ID_NAME;
                }



                CauseObject_MCE_B_ASSETS_TRANSFER p_TRANSFER = new CauseObject_MCE_B_ASSETS_TRANSFER();
                p_TRANSFER.SetCustomCondition(" and MCE_B_ASSETS_TRANSFER.ID in(select base_id from MCE_B_ASSETS_TRANSFER_D where assets_id='" + strID + "')");


                OrderByParameter orderByTransfer = new OrderByParameter();
                orderByTransfer.Asc     = false;
                orderByTransfer.OrderBy = "CREATE_DATE";

                DisplayObject_MCE_B_ASSETS_TRANSFER[] listTRANSFER = BizLogicObject_MCE_B_ASSETS_TRANSFER.Proxy.Query(p_TRANSFER, null, orderByTransfer);
                if (listTRANSFER != null && listTRANSFER.Length > 0)
                {
                    jsonMceCirculation_Info.Transfer_Info.id   = listTRANSFER[0].ID;
                    jsonMceCirculation_Info.Transfer_Info.code = listTRANSFER[0].CODE;

                    jsonMceCirculation_Info.Transfer_Info.create_user_id     = listTRANSFER[0].CREATE_USER_ID;
                    jsonMceCirculation_Info.Transfer_Info.create_user_name   = listTRANSFER[0].CREATE_USER_ID_NAME;
                    jsonMceCirculation_Info.Transfer_Info.create_date        = listTRANSFER[0].CREATE_DATE;
                    jsonMceCirculation_Info.Transfer_Info.transfer_user_id   = listTRANSFER[0].TRANSFER_USER_ID;
                    jsonMceCirculation_Info.Transfer_Info.transfer_user_name = listTRANSFER[0].TRANSFER_USER_ID_NAME;
                    jsonMceCirculation_Info.Transfer_Info.transfer_dept_id   = listTRANSFER[0].TRANSFER_DEPT_ID;
                    jsonMceCirculation_Info.Transfer_Info.transfer_dept_name = listTRANSFER[0].TRANSFER_DEPT_ID_NAME;
                    jsonMceCirculation_Info.Transfer_Info.user_id            = listTRANSFER[0].USER_ID;
                    jsonMceCirculation_Info.Transfer_Info.user_name          = listTRANSFER[0].USER_ID_NAME;
                    jsonMceCirculation_Info.Transfer_Info.dept_id            = listTRANSFER[0].DEPT_ID;
                    jsonMceCirculation_Info.Transfer_Info.dept_name          = listTRANSFER[0].DEPT_ID_NAME;
                }


                jsonMsg.Succeed = 1;
                jsonMsg.Message = jsonMceCirculation_Info;
            }
            catch (Exception ex)
            {
                jsonMsg.Succeed = 0;
                jsonMsg.Message = ex.Message;
            }
            finally
            {
                IsoDateTimeConverter timeConverter = new IsoDateTimeConverter {
                    DateTimeFormat = "yyyy'-'MM'-'dd HH':'mm"
                };

                string strMsg = JsonConvert.SerializeObject(jsonMsg, Formatting.Indented, timeConverter);

                strMsg = strMsg.Replace("0001-01-01 00:00", "");
                context.Response.Write(strMsg);

                context.Response.End();
            }
        }