Exemple #1
0
        /// <summary>
        /// Fixes the volume.
        /// </summary>
        private void FixVolume()
        {
            PalletLocation pl = new PalletLocation();

            pl.LoadPalletLocationsByShelf(this.ID);
            while (!pl.EOF)
            {
                pl.AvailableVolume = (pl.Width * pl.Height * pl.Length);
                pl.MoveNext();
            }
            pl.Save();
        }
 /// <summary>
 /// Fixes the volume.
 /// </summary>
 private void FixVolume()
 {
     PalletLocation pl = new PalletLocation();
     pl.LoadPalletLocationsByShelf(this.ID);
     while (!pl.EOF)
     {
         pl.AvailableVolume = (pl.Width * pl.Height * pl.Length);
         pl.MoveNext();
     }
     pl.Save();
 }