protected static FR_L5AWSSC_GoCSCfCO_1105_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L5AWSSC_GoCSCfCO_1105 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L5AWSSC_GoCSCfCO_1105_Array();

            // Get active shopping cart status for tenant
            var statusActive = CL1_ORD_PRC.ORM_ORD_PRC_ShoppingCart_Status.Query.Search(Connection, Transaction,
                                                                                        new CL1_ORD_PRC.ORM_ORD_PRC_ShoppingCart_Status.Query()
            {
                GlobalPropertyMatchingID = DLCore_DBCommons.Utils.EnumUtils.GetEnumDescription(DLCore_DBCommons.APODemand.EShoppingCartStatus.Active),
                Tenant_RefID             = securityTicket.TenantID,
                IsDeleted = false
            }).Single();


            CL5_APOWebShop_ShoppingCart.Atomic.Retrieval.P_L5AWSAR_GSCfCO_1805 getParameter = new CL5_APOWebShop_ShoppingCart.Atomic.Retrieval.P_L5AWSAR_GSCfCO_1805();
            getParameter.OfficeID             = Parameter.OfficeID;
            getParameter.ShoppingCartStatusID = statusActive.ORD_PRC_ShoppingCart_StatusID;

            // Find ProductGroupMatchingID for BusinessParticipant_RefID
            var account = new CL1_USR.ORM_USR_Account();
            account.Load(Connection, Transaction, securityTicket.AccountID);
            //getParameter.ProductGroupMatchingID = EnumUtils.GetEnumDescription(EProductGroup.HauseList);

            // Retrieve shopping cart
            var shoppingCartProducts = CL5_APOWebShop_ShoppingCart.Atomic.Retrieval.cls_Get_ShoppingChart_for_CurrentOffice.Invoke(Connection, Transaction, getParameter, securityTicket).Result;

            if (shoppingCartProducts.Length == 0)
            {
                // Create shopping cart.
                CL5_APOWebShop_ShoppingCart.Complex.Manipulation.P_L5AWSAR_CSC_1809 createParameter = new CL5_APOWebShop_ShoppingCart.Complex.Manipulation.P_L5AWSAR_CSC_1809();
                createParameter.OfficeID = Parameter.OfficeID;
                Guid shoppingCartID = CL5_APOWebShop_ShoppingCart.Complex.Manipulation.cls_Create_ShoppingChart_for_CurrentOffice.Invoke(Connection, Transaction, createParameter, securityTicket).Result;
                // Again retrieve shopping cart
                shoppingCartProducts = CL5_APOWebShop_ShoppingCart.Atomic.Retrieval.cls_Get_ShoppingChart_for_CurrentOffice.Invoke(Connection, Transaction, getParameter, securityTicket).Result;
            }

            List <L5AWSSC_GoCSCfCO_1105> shoppingCarts = new List <L5AWSSC_GoCSCfCO_1105>();
            L5SC_GAwASfAL_0909[]         AdditionInfo;
            foreach (var item in shoppingCartProducts)
            {
                L5AWSSC_GoCSCfCO_1105 shoppingCart = new L5AWSSC_GoCSCfCO_1105();
                shoppingCart.ORD_PRC_ShoppingCartID        = item.ORD_PRC_ShoppingCartID;
                shoppingCart.CMN_STR_Office_RefID          = item.CMN_STR_Office_RefID;
                shoppingCart.ORD_PRC_Office_ShoppingCartID = item.ORD_PRC_Office_ShoppingCartID;
                shoppingCart.IsProcurementOrderCreated     = item.IsProcurementOrderCreated;
                shoppingCart.Office_InternalName           = item.Office_InternalName;
                shoppingCart.ShoppingCartStatus            = item.ShoppingCartStatus;
                shoppingCart.Products = item.Products;


                if (item.Products != null && item.Products.Any())
                {
                    AdditionInfo =
                        cls_Get_Articles_with_ActiveSupstances_for_ArticleList.Invoke(Connection, Transaction,
                                                                                      new P_L5SC_GAwASfAL_0909
                    {
                        ProductID_List = item.Products.Select(x => x.CMN_PRO_Product_RefID).ToArray()
                    },
                                                                                      securityTicket).Result;
                }
                else
                {
                    AdditionInfo = null;
                }
                shoppingCart.ProductsAdditionalInfo = AdditionInfo;
                shoppingCarts.Add(shoppingCart);
            }
            returnValue.Result = shoppingCarts.ToArray();

            return(returnValue);

            #endregion UserCode
        }
示例#2
0
        protected static FR_L5AWSAR_GSCfCO_1805_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L5AWSAR_GSCfCO_1805 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L5AWSAR_GSCfCO_1805_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL5_APOWebShop_ShoppingCart.Atomic.Retrieval.SQL.cls_Get_ShoppingChart_for_CurrentOffice.sql";

            command.CommandText = new System.IO.StreamReader(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(commandLocation)).ReadToEnd();
            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ticket", securityTicket);
            command.CommandTimeout = QueryTimeout;

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ShoppingCartStatusID", Parameter.ShoppingCartStatusID);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "OfficeID", Parameter.OfficeID);



            List <L5AWSAR_GSCfCO_1805_raw> results = new List <L5AWSAR_GSCfCO_1805_raw>();
            var loader = new CSV2Core_MySQL.Dictionaries.MultiTable.Loader.DictionaryLoader(Connection, Transaction);
            var reader = new CSV2Core_MySQL.Support.DBSQLReader(command.ExecuteReader());

            try
            {
                reader.SetOrdinals(new string[] { "ORD_PRC_ShoppingCartID", "IsProcurementOrderCreated", "ORD_PRC_Office_ShoppingCartID", "CMN_STR_Office_RefID", "Office_InternalName", "ShoppingCartStatus", "ORD_PRC_ShoppingCart_ProductID", "CMN_PRO_Product_RefID", "CMN_PRO_Product_Variant_RefID", "CMN_PRO_Product_Release_RefID", "Quantity", "IsProductCanceled", "IsProductDeleted", "IsProductReplacementAllowed", "Product_Name_DictID", "Product_Number", "ProductITL", "Comment", "Price", "CurrencyISO", "CurrencySymbol", "TaxRate", "Group_GlobalPropertyMatchingID" });
                while (reader.Read())
                {
                    L5AWSAR_GSCfCO_1805_raw resultItem = new L5AWSAR_GSCfCO_1805_raw();
                    //0:Parameter ORD_PRC_ShoppingCartID of type Guid
                    resultItem.ORD_PRC_ShoppingCartID = reader.GetGuid(0);
                    //1:Parameter IsProcurementOrderCreated of type bool
                    resultItem.IsProcurementOrderCreated = reader.GetBoolean(1);
                    //2:Parameter ORD_PRC_Office_ShoppingCartID of type Guid
                    resultItem.ORD_PRC_Office_ShoppingCartID = reader.GetGuid(2);
                    //3:Parameter CMN_STR_Office_RefID of type Guid
                    resultItem.CMN_STR_Office_RefID = reader.GetGuid(3);
                    //4:Parameter Office_InternalName of type string
                    resultItem.Office_InternalName = reader.GetString(4);
                    //5:Parameter ShoppingCartStatus of type string
                    resultItem.ShoppingCartStatus = reader.GetString(5);
                    //6:Parameter ORD_PRC_ShoppingCart_ProductID of type Guid
                    resultItem.ORD_PRC_ShoppingCart_ProductID = reader.GetGuid(6);
                    //7:Parameter CMN_PRO_Product_RefID of type Guid
                    resultItem.CMN_PRO_Product_RefID = reader.GetGuid(7);
                    //8:Parameter CMN_PRO_Product_Variant_RefID of type Guid
                    resultItem.CMN_PRO_Product_Variant_RefID = reader.GetGuid(8);
                    //9:Parameter CMN_PRO_Product_Release_RefID of type Guid
                    resultItem.CMN_PRO_Product_Release_RefID = reader.GetGuid(9);
                    //10:Parameter Quantity of type double
                    resultItem.Quantity = reader.GetDouble(10);
                    //11:Parameter IsProductCanceled of type bool
                    resultItem.IsProductCanceled = reader.GetBoolean(11);
                    //12:Parameter IsProductDeleted of type bool
                    resultItem.IsProductDeleted = reader.GetBoolean(12);
                    //13:Parameter IsProductReplacementAllowed of type bool
                    resultItem.IsProductReplacementAllowed = reader.GetBoolean(13);
                    //14:Parameter Product_Name of type Dict
                    resultItem.Product_Name             = reader.GetDictionary(14);
                    resultItem.Product_Name.SourceTable = "cmn_pro_products";
                    loader.Append(resultItem.Product_Name);
                    //15:Parameter Product_Number of type string
                    resultItem.Product_Number = reader.GetString(15);
                    //16:Parameter ProductITL of type string
                    resultItem.ProductITL = reader.GetString(16);
                    //17:Parameter Comment of type string
                    resultItem.Comment = reader.GetString(17);
                    //18:Parameter Price of type decimal
                    resultItem.Price = reader.GetDecimal(18);
                    //19:Parameter CurrencyISO of type string
                    resultItem.CurrencyISO = reader.GetString(19);
                    //20:Parameter CurrencySymbol of type string
                    resultItem.CurrencySymbol = reader.GetString(20);
                    //21:Parameter TaxRate of type decimal
                    resultItem.TaxRate = reader.GetDecimal(21);
                    //22:Parameter Group_GlobalPropertyMatchingID of type string
                    resultItem.Group_GlobalPropertyMatchingID = reader.GetString(22);

                    results.Add(resultItem);
                }
            }
            catch (Exception ex)
            {
                reader.Close();
                throw new Exception("Exception occured durng data retrieval in method cls_Get_ShoppingChart_for_CurrentOffice", ex);
            }
            reader.Close();
            //Load all the dictionaries from the datatables
            loader.Load();

            returnStatus.Result = L5AWSAR_GSCfCO_1805_raw.Convert(results).ToArray();
            return(returnStatus);
        }
示例#3
0
 ///<summary>
 /// Invokes the method for the given Connection, and Transaction, leaving them open/not commited if no exceptions occured
 ///<summary>
 public static FR_L5AWSAR_GSCfCO_1805_Array Invoke(DbConnection Connection, DbTransaction Transaction, P_L5AWSAR_GSCfCO_1805 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
示例#4
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L5AWSAR_GSCfCO_1805_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5AWSAR_GSCfCO_1805 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L5AWSAR_GSCfCO_1805_Array functionReturn = new FR_L5AWSAR_GSCfCO_1805_Array();

            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_Get_ShoppingChart_for_CurrentOffice", ex);
            }
            return(functionReturn);
        }
示例#5
0
 ///<summary>
 /// Opens the connection/transaction for the given connectionString, and closes them when complete
 ///<summary>
 public static FR_L5AWSAR_GSCfCO_1805_Array Invoke(string ConnectionString, P_L5AWSAR_GSCfCO_1805 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(null, null, ConnectionString, Parameter, securityTicket));
 }