Exemplo n.º 1
0
 public BizLogicMsg CommitUpdate(EntityObject_MCE_B_ASSETS_OUTSTOCK[] saveEntities, EntityObject_MCE_B_ASSETS_OUTSTOCK[] updateEntities, EntityObject_MCE_B_ASSETS_OUTSTOCK[] deleteEntities)
 {
     if (LocalMode)
     {
         BizLogicMsg msg = new BizLogicMsg();
         using (IDbConnection connection = IDALProvider.IDAL.PopConnection())
         {
             using (IDbTransaction transaction = connection.BeginTransaction())
             {
                 try
                 {
                     //平台自动生成代码
                     foreach (EntityObject_MCE_B_ASSETS_OUTSTOCK obj in saveEntities)
                     {
                         SystemLogic.Proxy.AuditAdd(obj);
                         HelperObject_MCE_B_ASSETS_OUTSTOCK.Save(obj, transaction);
                     }
                     foreach (EntityObject_MCE_B_ASSETS_OUTSTOCK obj in updateEntities)
                     {
                         SystemLogic.Proxy.AuditEdit(obj);
                         HelperObject_MCE_B_ASSETS_OUTSTOCK.Update(obj, transaction);
                     }
                     foreach (EntityObject_MCE_B_ASSETS_OUTSTOCK obj in deleteEntities)
                     {
                         HelperObject_MCE_B_ASSETS_OUTSTOCK.Delete(obj, 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_OUTSTOCK> smgr = new ServiceManager <ServiceContract_MCE_B_ASSETS_OUTSTOCK>(ServiceUri))
         {
             return(smgr.Service.CommitUpdate(saveEntities, updateEntities, deleteEntities));
         }
     }
 }
Exemplo n.º 2
0
 public int SaveByTrans(EntityObject_MCE_B_ASSETS_OUTSTOCK obj, IDbTransaction transaction)
 {
     if (LocalMode)
     {
         SystemLogic.Proxy.AuditAdd(obj);
         int amount = HelperObject_MCE_B_ASSETS_OUTSTOCK.Save(obj, transaction);
         //平台自动生成代码
         return(amount);
     }
     else
     {
         throw new InvalidConstraintException();
     }
 }
Exemplo n.º 3
0
        public BizLogicMsg CommitSave(EntityObject_MCE_B_ASSETS_OUTSTOCK saveBaseEntity, EntityObject_[] saveDetailEntities)
        {
            if (LocalMode)
            {
                BizLogicMsg msg = new BizLogicMsg();
                using (IDbConnection connection = IDALProvider.IDAL.PopConnection())
                {
                    using (IDbTransaction transaction = connection.BeginTransaction())
                    {
                        try
                        {
                            SystemLogic.Proxy.AuditAdd(saveBaseEntity);
                            HelperObject_MCE_B_ASSETS_OUTSTOCK.Save(saveBaseEntity, transaction);

                            //平台自动生成代码
                            foreach (EntityObject_ obj in saveDetailEntities)
                            {
                                obj. = saveBaseEntity.ID;
                                SystemLogic.Proxy.AuditAdd(obj);
                                HelperObject_.Save(obj, transaction);
                            }
                            PostSave(saveBaseEntity, 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_OUTSTOCK> smgr = new ServiceManager <ServiceContract_MCE_B_ASSETS_OUTSTOCK>(ServiceUri))
                {
                    return(smgr.Service.CommitSave(saveBaseEntity, saveDetailEntities));
                }
            }
        }
Exemplo n.º 4
0
        public BizLogicMsg BatchSave(EntityObject_MCE_B_ASSETS_OUTSTOCK[] objs)
        {
            if (LocalMode)
            {
                BizLogicMsg msg = new BizLogicMsg();
                using (IDbConnection connection = IDALProvider.IDAL.PopConnection())
                {
                    using (IDbTransaction transaction = connection.BeginTransaction())
                    {
                        try
                        {
                            foreach (EntityObject_MCE_B_ASSETS_OUTSTOCK obj in objs)
                            {
                                SystemLogic.Proxy.AuditAdd(obj);
                            }
                            int amount = 0;

                            //平台自动生成代码
                            foreach (EntityObject_MCE_B_ASSETS_OUTSTOCK obj in objs)
                            {
                                amount += HelperObject_MCE_B_ASSETS_OUTSTOCK.Save(obj, 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_OUTSTOCK> smgr = new ServiceManager <ServiceContract_MCE_B_ASSETS_OUTSTOCK>(ServiceUri))
                {
                    return(smgr.Service.BatchSave(objs));
                }
            }
        }
Exemplo n.º 5
0
        public BizLogicMsg Save_Ext(JsonMCE_OUTSTOCK jsonMCE_OUTSTOCK)
        {
            if (LocalMode)
            {
                BizLogicMsg msg = new BizLogicMsg();
                using (IDbConnection connection = IDALProvider.IDAL.PopConnection())
                {
                    using (IDbTransaction transaction = connection.BeginTransaction())
                    {
                        try
                        {
                            EntityObject_MCE_B_ASSETS_OUTSTOCK entity = new EntityObject_MCE_B_ASSETS_OUTSTOCK();


                            if (!string.IsNullOrEmpty(jsonMCE_OUTSTOCK.ID))
                            {
                                entity.ID = jsonMCE_OUTSTOCK.ID;

                                entity = HelperObject_MCE_B_ASSETS_OUTSTOCK.Get(entity);

                                if (entity == null)
                                {
                                    throw new Exception("获取数据出错.");
                                }
                            }


                            entity.CODE     = jsonMCE_OUTSTOCK.CODE;
                            entity.STOCK_ID = jsonMCE_OUTSTOCK.WAREHOUSE_ID;

                            if (!string.IsNullOrEmpty(jsonMCE_OUTSTOCK.CREATE_DATE))
                            {
                                entity.CREATE_DATE = DateTime.Parse(jsonMCE_OUTSTOCK.CREATE_DATE);
                            }
                            entity.USING_DEPT_ID = jsonMCE_OUTSTOCK.USING_DEPT_ID;
                            entity.USING_USER_ID = jsonMCE_OUTSTOCK.USING_USER_ID;

                            entity.COMMENTS = jsonMCE_OUTSTOCK.COMMENTS;

                            entity.STATE = 1;

                            if (string.IsNullOrEmpty(jsonMCE_OUTSTOCK.ID))
                            {
                                entity.CREATE_TIME    = DateTime.Now;
                                entity.CREATE_USER_ID = Ipedf.Web.BizLogic.SystemLogic.Proxy.CurrentUser.ID;
                                int amount = HelperObject_MCE_B_ASSETS_OUTSTOCK.Save(entity, transaction);
                            }
                            else
                            {
                                int amount = HelperObject_MCE_B_ASSETS_OUTSTOCK.Update(entity, transaction);
                            }


                            if (jsonMCE_OUTSTOCK.DELETEIDS != null && jsonMCE_OUTSTOCK.DELETEIDS.Count > 0)
                            {
                                foreach (string strID in jsonMCE_OUTSTOCK.DELETEIDS)
                                {
                                    EntityObject_MCE_B_ASSETS_OUTSTOCK_D entity_D = new EntityObject_MCE_B_ASSETS_OUTSTOCK_D();

                                    if (!string.IsNullOrEmpty(strID))
                                    {
                                        entity_D.ID = strID;

                                        entity_D = HelperObject_MCE_B_ASSETS_OUTSTOCK_D.Get(entity_D);

                                        if (entity_D == null)
                                        {
                                            throw new Exception("获取数据出错.");
                                        }
                                        else
                                        {
                                            HelperObject_MCE_B_ASSETS_OUTSTOCK_D.Delete(entity_D, transaction);
                                        }
                                    }
                                }
                            }

                            if (jsonMCE_OUTSTOCK.children != null && jsonMCE_OUTSTOCK.children.Count > 0)
                            {
                                decimal decTotMoney = 0;
                                foreach (JsonMCE_OUTSTOCK_D item in jsonMCE_OUTSTOCK.children)
                                {
                                    EntityObject_MCE_B_ASSETS_OUTSTOCK_D entity_D = new EntityObject_MCE_B_ASSETS_OUTSTOCK_D();

                                    if (!string.IsNullOrEmpty(item.ID))
                                    {
                                        entity_D.ID = item.ID;

                                        entity_D = HelperObject_MCE_B_ASSETS_OUTSTOCK_D.Get(entity_D);

                                        if (entity_D == null)
                                        {
                                            throw new Exception("获取数据出错.");
                                        }
                                    }

                                    entity_D.BASE_ID = entity.ID;

                                    entity_D.ASSET_TYPE_ID = item.ASSET_TYPE_ID;
                                    entity_D.ASSETS_ID     = item.ASSETS_ID;
                                    entity_D.ASSETS_NAME   = item.ASSETS_NAME;
                                    entity_D.ASSETS_CODE   = item.ASSETS_CODE;
                                    entity_D.SPEC          = item.SPEC;
                                    entity_D.PRD_ID        = item.PRD_ID;
                                    entity_D.PRICE         = item.PRICE;
                                    entity_D.AMOUNT        = item.AMOUNT;
                                    entity_D.UNIT_ID       = item.UNIT_ID;
                                    entity_D.COUNTRY       = item.COUNTRY;

                                    if (!string.IsNullOrEmpty(item.USE_DATE))
                                    {
                                        entity_D.USE_DATE = DateTime.Parse(item.USE_DATE);
                                    }

                                    entity_D.ECONOMIC_USE_TYPE_ID = item.ECONOMIC_USE_TYPE_ID;

                                    entity_D.REF_TAB_ID   = item.REF_TAB_ID;
                                    entity_D.REF_TAB_NAME = item.REF_TAB_NAME;

                                    entity_D.MONEY = item.AMOUNT * item.PRICE;
                                    decTotMoney    = decTotMoney + entity_D.MONEY;

                                    if (string.IsNullOrEmpty(item.ID))
                                    {
                                        HelperObject_MCE_B_ASSETS_OUTSTOCK_D.Save(entity_D, transaction);
                                    }
                                    else
                                    {
                                        HelperObject_MCE_B_ASSETS_OUTSTOCK_D.Update(entity_D, transaction);
                                    }
                                }
                                entity.TOTAL_MONEY = decTotMoney;

                                HelperObject_MCE_B_ASSETS_OUTSTOCK.Update(entity, transaction);
                            }

                            msg.Message = entity.ID;

                            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_OUTSTOCK> smgr = new ServiceManager <ServiceContract_MCE_B_ASSETS_OUTSTOCK>(ServiceUri))
                {
                    return(smgr.Service.Save_Ext(jsonMCE_OUTSTOCK));
                }
            }
        }