コード例 #1
0
        protected static FR_L6LG_GDfPLR_0956 Execute(DbConnection Connection, DbTransaction Transaction, P_L6LG_GDfPLR_0956 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L6LG_GDfPLR_0956();

            L5SO_GSaCOHDfSH_1446 shipmentAndCustomerOrderDetails = null;

            #region Retrieve Shipment and CustomerOrder Details

            P_L5SO_GSaCOHDfSH_1446 shipmentAndCustomerOrderDetailsParameter = new P_L5SO_GSaCOHDfSH_1446();
            shipmentAndCustomerOrderDetailsParameter.ShippingHeaderID = Parameter.ShipmentHeaderId;
            FR_L5SO_GSaCOHDfSH_1446 shipmentAndCustomerOrderDetailsResult = CL5_APOLogistic_ShippingOrder.Atomic.Retrieval.cls_Get_Shipment_and_CustomerOrderHeaderDetails_for_ShipmentHeaderID.Invoke(Connection, Transaction, shipmentAndCustomerOrderDetailsParameter, securityTicket);
            shipmentAndCustomerOrderDetails = shipmentAndCustomerOrderDetailsResult.Result;

            #endregion

            #region Customer name

            var customerName = "";
            if (shipmentAndCustomerOrderDetails != null && shipmentAndCustomerOrderDetails.OrderingCustomer_BusinessParticipant_RefID != Guid.Empty)
            {
                ORM_CMN_BPT_BusinessParticipant bp = new ORM_CMN_BPT_BusinessParticipant();
                var bpResult = bp.Load(Connection, Transaction, shipmentAndCustomerOrderDetails.OrderingCustomer_BusinessParticipant_RefID);
                if (bpResult.Status == FR_Status.Success && bp.CMN_BPT_BusinessParticipantID != Guid.Empty)
                {
                    customerName = bp.DisplayName;
                }
            }

            #endregion

            #region CustomerAddress


            var CustomerAddress = CL5_APOLogistic_ShippingOrder.Atomic.Retrieval.cls_Get_CustomerAddress_from_ShipmentHeaderID.Invoke(Connection, Transaction, new P_L5SO_GCAfSHI_1127 {
                ShipmentHeaderID = Parameter.ShipmentHeaderId
            }, securityTicket);


            #endregion

            #region Organisational unit

            Dict organizationalUnitName = null;
            if (shipmentAndCustomerOrderDetails != null && shipmentAndCustomerOrderDetails.CMN_BPT_CTM_OrganizationalUnit_RefID != Guid.Empty)
            {
                ORM_CMN_BPT_CTM_OrganizationalUnit orgUnit = new ORM_CMN_BPT_CTM_OrganizationalUnit();
                var orgUnitResult = orgUnit.Load(Connection, Transaction, shipmentAndCustomerOrderDetails.CMN_BPT_CTM_OrganizationalUnit_RefID);
                if (orgUnitResult.Status == FR_Status.Success && orgUnit.CMN_BPT_CTM_OrganizationalUnitID != Guid.Empty)
                {
                    organizationalUnitName = orgUnit.OrganizationalUnit_Name;
                }
            }

            #endregion

            L6SO_GASPbtWSvR_1413[] shipmentPositionsForPickingList = new L6SO_GASPbtWSvR_1413[0];

            #region Retrieve Shipment Positions with reservation details (including storage place)

            P_L6SO_GASPbtWSvR_1413 shipmentPositionsForPickingListParameter = new P_L6SO_GASPbtWSvR_1413();
            shipmentPositionsForPickingListParameter.ShipmentHeaderID = Parameter.ShipmentHeaderId;
            FR_L6SO_GASPbtWSvR_1413_Array shipmentPositionsForPickingListResult = cls_Get_AllShipmentPositions_bound_to_WarehouseStructure_via_Reservations.Invoke(Connection, Transaction, shipmentPositionsForPickingListParameter, securityTicket);
            shipmentPositionsForPickingList = shipmentPositionsForPickingListResult.Result;

            #endregion

            //
            // Taking product array from shipment positions previously retrieved.
            // Product array is used for taking product information
            //

            Guid[] productIdArray = shipmentPositionsForPickingList.Select(x => x.CMN_PRO_Product_RefID).Distinct().ToArray();

            L3AR_GAfAL_0942[] articlesForArticleList = new L3AR_GAfAL_0942[0];
            if (productIdArray != null && productIdArray.Length > 0)
            {
                #region Retrive product details

                P_L3AR_GAfAL_0942 articlesForArticleListParameter = new P_L3AR_GAfAL_0942();
                articlesForArticleListParameter.ProductID_List = productIdArray;
                FR_L3AR_GAfAL_0942_Array articlesForArticleListResult = cls_Get_Articles_for_ArticleList.Invoke(Connection, Transaction, articlesForArticleListParameter, securityTicket);
                articlesForArticleList = articlesForArticleListResult.Result;
                articlesForArticleList = articlesForArticleList.OrderBy(x => x.Product_Name.Contents[0].Content).ToArray();

                #endregion
            }


            #region Shipment Notes

            List <ORM_LOG_SHP_Shipment_Note> shipmentNoteList = new List <ORM_LOG_SHP_Shipment_Note>();

            if (shipmentAndCustomerOrderDetails != null)
            {
                shipmentNoteList = ORM_LOG_SHP_Shipment_Note.Query
                                   .Search(Connection, Transaction,
                                           new ORM_LOG_SHP_Shipment_Note.Query {
                    IsDeleted = false, Shipment_Header_RefID = Parameter.ShipmentHeaderId
                })
                                   .OrderBy(i => i.Creation_Timestamp).ToList();
            }

            List <L6LG_GDfPLR_0956b> commentList = new List <L6LG_GDfPLR_0956b>();
            foreach (ORM_LOG_SHP_Shipment_Note shipmentNote in shipmentNoteList)
            {
                L6LG_GDfPLR_0956b comment = new L6LG_GDfPLR_0956b();

                ORM_CMN_BPT_BusinessParticipant businessParticipant = new ORM_CMN_BPT_BusinessParticipant();
                FR_Base bpLoad = businessParticipant.Load(Connection, Transaction, shipmentNote.CreatedBy_BusinessParticipant_RefID);
                if (bpLoad.Status == FR_Status.Success)
                {
                    comment.Name = businessParticipant.DisplayName;
                }
                comment.Comment = shipmentNote.Comment;
                commentList.Add(comment);
            }

            #endregion


            #region Building return object

            List <L6LG_GDfPLR_0956a> tempShipmentPositions = new List <L6LG_GDfPLR_0956a>();

            foreach (L6SO_GASPbtWSvR_1413 shipmentPositionForPickingList in shipmentPositionsForPickingList)
            {
                L6LG_GDfPLR_0956a tempShipmentPosition = new L6LG_GDfPLR_0956a();
                tempShipmentPosition.ShipmentPositionDetails = shipmentPositionForPickingList;
                tempShipmentPosition.ProductDetails          = articlesForArticleList.FirstOrDefault(a => a.CMN_PRO_ProductID == shipmentPositionForPickingList.CMN_PRO_Product_RefID);
                tempShipmentPositions.Add(tempShipmentPosition);
            }

            returnValue.Result = new L6LG_GDfPLR_0956();
            returnValue.Result.CustomerName                    = customerName;
            returnValue.Result.StreetAndNumber                 = CustomerAddress.Result != null ? CustomerAddress.Result.Street_Name + " " + CustomerAddress.Result.Street_Number : "keine Kundenadresse";
            returnValue.Result.ZIPAndCity                      = CustomerAddress.Result != null ? CustomerAddress.Result.ZIP + " " + CustomerAddress.Result.Town : "keine Kundenadresse";
            returnValue.Result.OrganizationalUnitName          = organizationalUnitName;
            returnValue.Result.ShipmentPositionList            = tempShipmentPositions.ToArray();
            returnValue.Result.ShipmentAndCustomerOrderDetails = shipmentAndCustomerOrderDetails;
            returnValue.Result.CommentList                     = commentList.ToArray();

            #endregion

            return(returnValue);

            #endregion UserCode
        }
コード例 #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_L6LG_GDfPLR_0956 Invoke(DbConnection Connection, DbTransaction Transaction, P_L6LG_GDfPLR_0956 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
コード例 #3
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L6LG_GDfPLR_0956 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L6LG_GDfPLR_0956 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L6LG_GDfPLR_0956 functionReturn = new FR_L6LG_GDfPLR_0956();

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