Exemple #1
0
        protected static FR_L5SB_GSBfRH_1433 Execute(DbConnection Connection, DbTransaction Transaction, P_L5SB_GSBfRH_1433 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L5SB_GSBfRH_1433();
            //Put your code here

            //get assignment
            var receiptToBillAssignment = ORM_ORD_PRC_SPB_SupplierBill_2_ReceiptHeader.Query.Search(Connection, Transaction,
                                                                                                    new ORM_ORD_PRC_SPB_SupplierBill_2_ReceiptHeader.Query()
            {
                LOG_RCP_Receipt_Header_RefID = Parameter.LOG_RCP_Receipt_HeaderID,
                Tenant_RefID = securityTicket.TenantID,
                IsDeleted    = false
            }).Single();

            ORM_ORD_PRC_SPB_SupplierBill_Header billHeader = new ORM_ORD_PRC_SPB_SupplierBill_Header();
            billHeader.Load(Connection, Transaction, receiptToBillAssignment.ORD_PRC_SPB_SupplierBill_Header_RefID);

            returnValue.Result = new L5SB_GSBfRH_1433();
            returnValue.Result.CashDiscountInPercent = billHeader.CashDiscountInPercent;
            returnValue.Result.PaymentTargetTime     = billHeader.PaymentTargetDate;
            returnValue.Result.DateOnBill            = billHeader.DateOnBill;
            returnValue.Result.SupplierBillNumber    = billHeader.SupplierBillNumber;

            return(returnValue);

            #endregion UserCode
        }
Exemple #2
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L5SB_GSBfRH_1433 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5SB_GSBfRH_1433 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L5SB_GSBfRH_1433 functionReturn = new FR_L5SB_GSBfRH_1433();

            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_SupplierBill_for_ReceiptHeader", ex);
            }
            return(functionReturn);
        }