Ejemplo n.º 1
0
        protected static FR_Guid Execute(DbConnection Connection, DbTransaction Transaction, P_L2CC_SCC_1356 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_Guid();

            var item             = new CL1_CMN_STR.ORM_CMN_STR_CostCenter();
            var costCenterOffice = new CL1_CMN_STR.ORM_CMN_STR_Office_2_CostCenter();
            if (Parameter.CMN_STR_CostCenterID != Guid.Empty)
            {
                var result = item.Load(Connection, Transaction, Parameter.CMN_STR_CostCenterID);
                costCenterOffice = ORM_CMN_STR_Office_2_CostCenter.Query.Search(Connection, Transaction,
                                                                                new ORM_CMN_STR_Office_2_CostCenter.Query
                {
                    CostCenter_RefID = item.CMN_STR_CostCenterID,
                    IsDeleted        = false
                }).FirstOrDefault();
                costCenterOffice = costCenterOffice ?? new CL1_CMN_STR.ORM_CMN_STR_Office_2_CostCenter();
            }


            // Get childrens of this item.
            var childrens = ORM_CMN_STR_CostCenter.Query.Search(Connection, Transaction,
                                                                new CL1_CMN_STR.ORM_CMN_STR_CostCenter.Query {
                IsDeleted = false, CostCenter_Parent_RefID = item.CMN_STR_CostCenterID
            });
            item.R_CostCenter_HasChildren = childrens.Count > 0 ? true : false;

            // Check parent property HasChildren
            if (item.CostCenter_Parent_RefID != Guid.Empty)
            {
                var parent = ORM_CMN_STR_CostCenter.Query.Search(Connection, Transaction,
                                                                 new ORM_CMN_STR_CostCenter.Query {
                    IsDeleted = false, CMN_STR_CostCenterID = item.CostCenter_Parent_RefID
                }).SingleOrDefault();

                if (item.IsDeleted && parent != null)
                {
                    var parentChildrens = ORM_CMN_STR_CostCenter.Query.Search(Connection, Transaction,
                                                                              new ORM_CMN_STR_CostCenter.Query {
                        IsDeleted = false, CostCenter_Parent_RefID = parent.CMN_STR_CostCenterID
                    });
                    if (parentChildrens.Count == 1 && parentChildrens.FirstOrDefault().CMN_STR_CostCenterID == item.CMN_STR_CostCenterID)
                    {
                        parent.R_CostCenter_HasChildren = false;
                        parent.Save(Connection, Transaction);
                    }
                }
                else if (parent != null && !parent.R_CostCenter_HasChildren)
                {
                    parent.R_CostCenter_HasChildren = true;
                    parent.Save(Connection, Transaction);
                }
            }

            if (Parameter.IsDeleted == true)
            {
                foreach (var c in childrens)
                {
                    c.IsDeleted = true;
                    c.Save(Connection, Transaction);
                }
                costCenterOffice.IsDeleted = true;
                item.IsDeleted             = true;
                costCenterOffice.Save(Connection, Transaction);
                return(new FR_Guid(item.Save(Connection, Transaction), item.CMN_STR_CostCenterID));
            }

            //Creation specific parameters (Tenant, Account ... )
            if (Parameter.CMN_STR_CostCenterID == Guid.Empty)
            {
                item.Tenant_RefID = securityTicket.TenantID;
            }

            item.InternalID                   = Parameter.InternalID;
            item.Name                         = Parameter.Name;
            item.Description                  = Parameter.Description;
            item.CostCenterType_RefID         = Parameter.CostCenterType_RefID;
            item.Currency_RefID               = Parameter.Currency_RefID;
            item.CostCenter_Parent_RefID      = Parameter.CostCenter_Parent_RefID;
            item.OpenForBooking               = Parameter.OpenForBooking;
            item.ResponsiblePerson_RefID      = Parameter.ResponsiblePerson_RefID;
            costCenterOffice.CostCenter_RefID = item.CMN_STR_CostCenterID;
            costCenterOffice.Office_RefID     = Parameter.OfficeID;
            costCenterOffice.Tenant_RefID     = item.Tenant_RefID;
            costCenterOffice.Save(Connection, Transaction);
            return(new FR_Guid(item.Save(Connection, Transaction), item.CMN_STR_CostCenterID));

            #endregion UserCode
        }
Ejemplo n.º 2
0
 ///<summary>
 /// Invokes the method for the given Connection, and Transaction, leaving them open/not commited if no exceptions occured
 ///<summary>
 public static FR_Guid Invoke(DbConnection Connection, DbTransaction Transaction, P_L2CC_SCC_1356 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
Ejemplo n.º 3
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_Guid Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L2CC_SCC_1356 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_Guid functionReturn = new FR_Guid();

            try
            {
                if (cleanupConnection == true)
                {
                    Connection = CSV2Core_MySQL.Support.DBSQLSupport.CreateConnection(ConnectionString);
                    Connection.Open();
                }
                if (cleanupTransaction == true)
                {
                    Transaction = Connection.BeginTransaction();
                }

                functionReturn = Execute(Connection, Transaction, Parameter, securityTicket);

                #region Cleanup Connection/Transaction
                //Commit the transaction
                if (cleanupTransaction == true)
                {
                    Transaction.Commit();
                }
                //Close the connection
                if (cleanupConnection == true)
                {
                    Connection.Close();
                }
                #endregion
            }
            catch (Exception ex)
            {
                try
                {
                    if (cleanupTransaction == true && Transaction != null)
                    {
                        Transaction.Rollback();
                    }
                }
                catch { }

                try
                {
                    if (cleanupConnection == true && Connection != null)
                    {
                        Connection.Close();
                    }
                }
                catch { }

                throw new Exception("Exception occured in method cls_Save_CostCenter", ex);
            }
            return(functionReturn);
        }
Ejemplo n.º 4
0
 ///<summary>
 /// Opens the connection/transaction for the given connectionString, and closes them when complete
 ///<summary>
 public static FR_Guid Invoke(string ConnectionString, P_L2CC_SCC_1356 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(null, null, ConnectionString, Parameter, securityTicket));
 }