Beispiel #1
0
        protected static FR_L5BL_GBPfBH_1534_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L5BL_GBPfBH_1534 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L5BL_GBPfBH_1534_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL5_APOBilling_Bill.Atomic.Retrieval.SQL.cls_Get_BillPositions_for_BillHeader.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, "BillHeaderID", Parameter.BillHeaderID);

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



            List <L5BL_GBPfBH_1534> results = new List <L5BL_GBPfBH_1534>();
            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[] { "BIL_BillPositionID", "LOG_SHP_Shipment_PositionID", "ShipmentHeader_Number", "RecipientBusinessParticipant_RefID", "CustomerName", "CMN_PRO_Product_RefID", "Quantity", "PositionValue_BeforeTax", "PositionValue_IncludingTax", "ShipmentPosition_ValueWithoutTax", "CurrencySymbol", "StatusDeliveryDate", "CMN_BPT_CTM_OrganizationalUnitID", "OrganizationalUnit_SimpleName", "OrganizationalUnit_Name_DictID", "LOG_SHP_Shipment_HeaderID", "LOG_SHP_ShipmentHeader_Creation_Timestamp", "OrganizationalUnit_Description_DictID", "InternalOrganizationalUnitNumber", "InternalOrganizationalUnitSimpleName", "ExternalOrganizationalUnitNumber", "PositionPricePerUnitValue_BeforeTax", "PositionPricePerUnitValue_IncludingTax" });
                while (reader.Read())
                {
                    L5BL_GBPfBH_1534 resultItem = new L5BL_GBPfBH_1534();
                    //0:Parameter BIL_BillPositionID of type Guid
                    resultItem.BIL_BillPositionID = reader.GetGuid(0);
                    //1:Parameter LOG_SHP_Shipment_PositionID of type Guid
                    resultItem.LOG_SHP_Shipment_PositionID = reader.GetGuid(1);
                    //2:Parameter ShipmentHeader_Number of type String
                    resultItem.ShipmentHeader_Number = reader.GetString(2);
                    //3:Parameter RecipientBusinessParticipant_RefID of type Guid
                    resultItem.RecipientBusinessParticipant_RefID = reader.GetGuid(3);
                    //4:Parameter CustomerName of type String
                    resultItem.CustomerName = reader.GetString(4);
                    //5:Parameter CMN_PRO_Product_RefID of type Guid
                    resultItem.CMN_PRO_Product_RefID = reader.GetGuid(5);
                    //6:Parameter Quantity of type Double
                    resultItem.Quantity = reader.GetDouble(6);
                    //7:Parameter PositionValue_BeforeTax of type Decimal
                    resultItem.PositionValue_BeforeTax = reader.GetDecimal(7);
                    //8:Parameter PositionValue_IncludingTax of type Decimal
                    resultItem.PositionValue_IncludingTax = reader.GetDecimal(8);
                    //9:Parameter ShipmentPosition_ValueWithoutTax of type Decimal
                    resultItem.ShipmentPosition_ValueWithoutTax = reader.GetDecimal(9);
                    //10:Parameter CurrencySymbol of type String
                    resultItem.CurrencySymbol = reader.GetString(10);
                    //11:Parameter StatusDeliveryDate of type DateTime
                    resultItem.StatusDeliveryDate = reader.GetDate(11);
                    //12:Parameter CMN_BPT_CTM_OrganizationalUnitID of type Guid
                    resultItem.CMN_BPT_CTM_OrganizationalUnitID = reader.GetGuid(12);
                    //13:Parameter OrganizationalUnit_SimpleName of type String
                    resultItem.OrganizationalUnit_SimpleName = reader.GetString(13);
                    //14:Parameter OrganizationalUnit_Name_DictID of type Dict
                    resultItem.OrganizationalUnit_Name_DictID             = reader.GetDictionary(14);
                    resultItem.OrganizationalUnit_Name_DictID.SourceTable = "cmn_bpt_ctm_organizationalunits";
                    loader.Append(resultItem.OrganizationalUnit_Name_DictID);
                    //15:Parameter LOG_SHP_Shipment_HeaderID of type Guid
                    resultItem.LOG_SHP_Shipment_HeaderID = reader.GetGuid(15);
                    //16:Parameter LOG_SHP_ShipmentHeader_Creation_Timestamp of type DateTime
                    resultItem.LOG_SHP_ShipmentHeader_Creation_Timestamp = reader.GetDate(16);
                    //17:Parameter OrganizationalUnit_Description_DictID of type Dict
                    resultItem.OrganizationalUnit_Description_DictID             = reader.GetDictionary(17);
                    resultItem.OrganizationalUnit_Description_DictID.SourceTable = "cmn_bpt_ctm_organizationalunits";
                    loader.Append(resultItem.OrganizationalUnit_Description_DictID);
                    //18:Parameter InternalOrganizationalUnitNumber of type String
                    resultItem.InternalOrganizationalUnitNumber = reader.GetString(18);
                    //19:Parameter InternalOrganizationalUnitSimpleName of type String
                    resultItem.InternalOrganizationalUnitSimpleName = reader.GetString(19);
                    //20:Parameter ExternalOrganizationalUnitNumber of type String
                    resultItem.ExternalOrganizationalUnitNumber = reader.GetString(20);
                    //21:Parameter PositionPricePerUnitValue_BeforeTax of type Decimal
                    resultItem.PositionPricePerUnitValue_BeforeTax = reader.GetDecimal(21);
                    //22:Parameter PositionPricePerUnitValue_IncludingTax of type Decimal
                    resultItem.PositionPricePerUnitValue_IncludingTax = reader.GetDecimal(22);

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

            returnStatus.Result = results.ToArray();
            return(returnStatus);
        }
Beispiel #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_L5BL_GBPfBH_1534_Array Invoke(DbConnection Connection, DbTransaction Transaction, P_L5BL_GBPfBH_1534 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
Beispiel #3
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L5BL_GBPfBH_1534_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5BL_GBPfBH_1534 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L5BL_GBPfBH_1534_Array functionReturn = new FR_L5BL_GBPfBH_1534_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_BillPositions_for_BillHeader", ex);
            }
            return(functionReturn);
        }
Beispiel #4
0
 ///<summary>
 /// Opens the connection/transaction for the given connectionString, and closes them when complete
 ///<summary>
 public static FR_L5BL_GBPfBH_1534_Array Invoke(string ConnectionString, P_L5BL_GBPfBH_1534 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(null, null, ConnectionString, Parameter, securityTicket));
 }