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

            #region remove default intake area if needed

            var allWarehouseAreas = CL2_Warehouse.Atomic.Retrieval.cls_Get_Warehouse_Areas_for_WarehouseID.
                                    Invoke(Connection, Transaction,
                                           new Atomic.Retrieval.P_L2WH_HWAfWH_1135()
            {
                WorkhouseID = Parameter.Warehouse_RefID
            }, securityTicket).Result;

            // check if Parameter.IsDefaultIntakeArea is true and there is already one setted
            // delete default area flag for loaded one
            if (Parameter.IsDefaultIntakeArea && allWarehouseAreas.Any(i => i.IsDefaultIntakeArea))
            {
                var defaultAreaList = allWarehouseAreas.Where(i => i.IsDefaultIntakeArea).ToList();
                CL1_LOG_WRH.ORM_LOG_WRH_Area areaORM;
                FR_Base areaORMResult;
                foreach (var oldDefaultArea in defaultAreaList)
                {
                    areaORM       = new CL1_LOG_WRH.ORM_LOG_WRH_Area();
                    areaORMResult = areaORM.Load(Connection, Transaction, oldDefaultArea.LOG_WRH_AreaID);
                    if (areaORMResult.Status == FR_Status.Success && areaORM.LOG_WRH_AreaID != Guid.Empty)
                    {
                        areaORM.IsDefaultIntakeArea = false;
                        areaORM.Save(Connection, Transaction);
                    }
                }
            }

            #endregion

            var item            = new CL1_LOG_WRH.ORM_LOG_WRH_Area();
            var defaultSupplier = new CL1_LOG_WRH.ORM_LOG_WRH_Area_DefaultSupplier();
            if (Parameter.LOG_WRH_AreaID != Guid.Empty)
            {
                var result = item.Load(Connection, Transaction, Parameter.LOG_WRH_AreaID);
                defaultSupplier = CL1_LOG_WRH.ORM_LOG_WRH_Area_DefaultSupplier.Query.Search(Connection, Transaction,
                                                                                            new CL1_LOG_WRH.ORM_LOG_WRH_Area_DefaultSupplier.Query()
                {
                    Area_RefID = item.LOG_WRH_AreaID,
                    IsDeleted  = false
                }).SingleOrDefault();

                if (Parameter.Default_Supplier_RefID == Guid.Empty && defaultSupplier != null)
                {
                    defaultSupplier.IsDeleted = true;
                }
                else if (defaultSupplier == null)
                {
                    defaultSupplier = new CL1_LOG_WRH.ORM_LOG_WRH_Area_DefaultSupplier();
                }
            }

            if (Parameter.IsDeleted == true)
            {
                defaultSupplier.IsDeleted = true;
                defaultSupplier.Save(Connection, Transaction);

                var racks = CL1_LOG_WRH.ORM_LOG_WRH_Rack.Query.Search(Connection, Transaction,
                                                                      new CL1_LOG_WRH.ORM_LOG_WRH_Rack.Query {
                    IsDeleted = false, Area_RefID = Parameter.LOG_WRH_AreaID
                });
                foreach (var r in racks)
                {
                    var shelves = CL1_LOG_WRH.ORM_LOG_WRH_Shelf.Query.Search(Connection, Transaction,
                                                                             new CL1_LOG_WRH.ORM_LOG_WRH_Shelf.Query {
                        IsDeleted = false, Rack_RefID = r.LOG_WRH_RackID
                    });
                    foreach (var s in shelves)
                    {
                        s.IsDeleted = true;
                        s.Save(Connection, Transaction);
                    }
                    r.IsDeleted = true;
                    r.Save(Connection, Transaction);
                }

                item.IsDeleted = true;
                return(new FR_Guid(item.Save(Connection, Transaction), item.LOG_WRH_AreaID));
            }

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


            defaultSupplier.Area_RefID             = item.LOG_WRH_AreaID;
            defaultSupplier.CMN_BPT_Supplier_RefID = Parameter.Default_Supplier_RefID;
            defaultSupplier.Tenant_RefID           = item.Tenant_RefID;
            defaultSupplier.Save(Connection, Transaction);

            item.CoordinateCode    = Parameter.CoordinateCode;
            item.Area_Name         = Parameter.Area_Name;
            item.Warehouse_RefID   = Parameter.Warehouse_RefID;
            item.IsStructureHidden = Parameter.IsStructureHidden;
            item.IsConsignmentArea = Parameter.IsConsignmentArea;
            item.IfConsignmentArea_DefaultOwningSupplier_RefID = Parameter.IfConsignmentArea_DefaultOwningSupplier_RefID;
            item.Rack_NamePrefix       = Parameter.Rack_NamePrefix;
            item.IsPointOfSalesArea    = Parameter.IsPointOfSalesArea;
            item.IsLongTermStorageArea = !Parameter.IsPointOfSalesArea;
            item.IsDefaultIntakeArea   = Parameter.IsDefaultIntakeArea;

            return(new FR_Guid(item.Save(Connection, Transaction), item.LOG_WRH_AreaID));

            #endregion UserCode
        }
Exemplo n.º 2
0
        protected static FR_Guid Execute(DbConnection Connection, DbTransaction Transaction, P_L2WH_SSLF_1341 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_Guid();

            var item = new CL1_LOG_WRH.ORM_LOG_WRH_Shelf();
            if (Parameter.LOG_WRH_ShelfID != Guid.Empty)
            {
                var itemGetParameter = new CL1_LOG_WRH.ORM_LOG_WRH_Shelf.Query();
                itemGetParameter.LOG_WRH_ShelfID = Parameter.LOG_WRH_ShelfID;
                itemGetParameter.IsDeleted       = false;
                var foundItem = CL1_LOG_WRH.ORM_LOG_WRH_Shelf.Query.Search(Connection, Transaction, itemGetParameter);
                if (foundItem == null)
                {
                    returnValue.Status = FR_Status.Error_Internal;
                    returnValue.Result = Guid.Empty;
                    return(returnValue);
                }
                else
                {
                    item = foundItem.Single();
                }
            }

            if (Parameter.IsDeleted == true)
            {
                item.IsDeleted = true;
                return(new FR_Guid(item.Save(Connection, Transaction), item.LOG_WRH_ShelfID));
            }

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

            // Set referent fields
            CL1_LOG_WRH.ORM_LOG_WRH_Rack rack = new CL1_LOG_WRH.ORM_LOG_WRH_Rack();
            var fetchedRack = rack.Load(Connection, Transaction, Parameter.Rack_RefID);
            if (fetchedRack.Status != FR_Status.Success)
            {
                returnValue.ErrorMessage = fetchedRack.ErrorMessage;
                returnValue.Result       = Guid.Empty;
                return(returnValue);
            }

            CL1_LOG_WRH.ORM_LOG_WRH_Area area = new CL1_LOG_WRH.ORM_LOG_WRH_Area();
            area.Load(Connection, Transaction, rack.Area_RefID);
            Parameter.R_Warehouse_RefID = area.Warehouse_RefID;
            Parameter.R_Area_RefID      = area.LOG_WRH_AreaID;

            item.Rack_RefID                            = Parameter.Rack_RefID;
            item.R_Warehouse_RefID                     = Parameter.R_Warehouse_RefID;
            item.R_Area_RefID                          = Parameter.R_Area_RefID;
            item.Shelf_Name                            = Parameter.Shelf_Name;
            item.CoordinateCode                        = Parameter.CoordinateCode;
            item.CoordinateX                           = Parameter.CoordinateX;
            item.CoordinateY                           = Parameter.CoordinateY;
            item.CoordinateZ                           = Parameter.CoordinateZ;
            item.ShelfCapacity_Unit_RefID              = Parameter.ShelfCapacity_Unit_RefID;
            item.ShelfCapacity_Maximum                 = (decimal)Parameter.ShelfCapacity_Maximum;
            item.R_ShelfCapacity_Free                  = (decimal)Parameter.R_ShelfCapacity_Free;
            item.R_ShelfCapacity_Used                  = (decimal)Parameter.R_ShelfCapacity_Used;
            item.LimitShelfContent_ToOneProduct        = Parameter.LimitShelfContent_ToOneProduct;
            item.LimitShelfContent_ToOneProductVariant = Parameter.LimitShelfContent_ToOneProductVariant;
            item.LimitShelfContent_ToOneProductRelease = Parameter.LimitShelfContent_ToOneProductRelease;
            item.IsShelfLocked                         = Parameter.IsShelfLocked;

            return(new FR_Guid(item.Save(Connection, Transaction), item.LOG_WRH_ShelfID));

            #endregion UserCode
        }