Пример #1
0
        public void GetPidData(string Data)
        {
            #region Local variables
            string   lokation    = Globals.theLocation;
            string   placering   = "";
            string   varenr      = "";
            string   beskrivelse = "";
            decimal  antal       = 0;
            DateTime mhd         = DateTime.Now;
            string   uom         = "";
            string   vl          = "";
            bool     b_recount   = false;

            MyToolbox mt = new MyToolbox();
            #endregion

            BalanceWarehouse WareHouse = new BalanceWarehouse();
            WareHouse.UseDefaultCredentials = true;

            ItemTool it = new ItemTool();

            this.pbIndicator.Image   = WindowsFormsApplication1.Properties.Resources.animatedCircle;
            this.pbIndicator.Visible = true;

            if (tbInputData.Text.Equals("#"))
            {
                if (Selector == 0)
                {
                    // Kald formen til optælling uden P-ID, hvis det er en holdbarhedsvare tilføjes data og et P-ID.
                    fmInventory inv = new fmInventory(tbInputData.Text);
                    inv.ShowDialog();
                    tbInputData.Text = "";
                }
                if (Selector == 1)
                {
                    // Bruges pt ikke
                    tbInputData.Text = "";
                }
            }
            else
            {
                try
                {
                    switch (it.TypeOfItem(ref Data, Globals.theLocation, ref placering, ref varenr, ref beskrivelse, ref antal, ref mhd, ref uom, ref vl, ref b_recount))
                    {
                    case 0:
                    {
                        MessageBoxExample.MyMessageBox.ShowBox(string.Format(mt.ReadResFile(this.Name.ToString() + "Error1"), Data));
                        tbInputData.Text = "";
                    }
                    break;

                    case 1:
                    {
                        if (Selector == 0)
                        {
                            fmPidInventory pi = new fmPidInventory(Data);
                            pi.ShowDialog();
                            tbInputData.Text = "";
                        }
                        if (Selector == 1)
                        {
                            // Kalde form til at afvikle flytning af varer med P-ID
                            fmPidItemTransfer pit = new fmPidItemTransfer(Data);
                            pit.ShowDialog();
                            tbInputData.Text = "";
                        }
                    }
                    break;

                    case 2:
                    {
                        #region GetBincontent
                        BinContentTool bct = new BinContentTool();
                        if (bct.GetItemBincontent(Globals.theLocation, "", Data.ToUpper(), ref antal, ref uom))
                        {
                            if (Selector == 0)
                            {
                                // Kalde form til at afvikle optælling af varer uden P-ID
                                fmInventory inv = new fmInventory(Data);
                                inv.ShowDialog();
                                tbInputData.Text = "";
                            }

                            if (Selector == 1)
                            {
                                // Kalde form til at afvikle flytning af varer uden P-ID
                                fmItemTransfer itf = new fmItemTransfer(Data);
                                itf.ShowDialog();
                                tbInputData.Text = "";
                            }
                        }
                        #endregion

/*
 *                              if (WareHouse.WSGetItemBinInformation(Globals.theWinlogon, Globals.theLocation, Data.ToUpper()) > 0)
 *                              {
 *                                  if (Selector == 0)
 *                                  {
 *                                      // Kalde form til at afvikle optælling af varer uden P-ID
 *                                      fmInventory inv = new fmInventory(Data);
 *                                      inv.ShowDialog();
 *                                      tbInputData.Text = "";
 *                                  }
 *
 *                                  if (Selector == 1)
 *                                  {
 *                                      // Kalde form til at afvikle flytning af varer uden P-ID
 *                                      fmItemTransfer itf = new fmItemTransfer(Data);
 *                                      itf.ShowDialog();
 *                                      tbInputData.Text = "";
 *                                  }
 *                              }
 */
                    }
                    break;

                    case 3:
                    {
                        if (WareHouse.WSGetBinContentInformation(Globals.theWinlogon, Globals.theLocation, Data.ToUpper()) > 0)
                        {
                            fmBinContent fm = new fmBinContent(1, Data.ToUpper());
                            fm.ShowDialog();
                            tbInputData.Text = "";
                        }
                    }
                    break;
                    }
                }
                catch (Exception ex)
                {
                    this.pbIndicator.Image   = null;
                    this.pbIndicator.Visible = false;

                    MessageBoxExample.MyMessageBox.ShowBox(ex.Message.ToString());
                    tbInputData.Text = "";
                }
                finally
                {
                    this.pbIndicator.Image   = null;
                    this.pbIndicator.Visible = false;

                    WareHouse.Dispose();
                }
            }
        }
Пример #2
0
        public void GetPidData(string Data)
        {
            #region Local variables
            string   beskrivelse = "";
            decimal  antal       = 0;
            DateTime mhd         = DateTime.Now;
            string   uom         = "";
            string   vl          = "";
            bool     b_recount   = false;


            MyToolbox mt = new MyToolbox();
            #endregion

            BalanceWarehouse WareHouse = new BalanceWarehouse();
            WareHouse.UseDefaultCredentials = true;

            ItemTool it = new ItemTool();

            try
            {
                data = Data = WareHouse.WSGetItemCrossRef(Data);
            }
            catch (Exception ex)
            {
                MessageBoxExample.MyMessageBox.ShowBox(ex.Message);
            }

            try
            {
                switch (it.TypeOfItem(ref Data, Globals.theLocation, ref placering, ref varenr, ref beskrivelse, ref antal, ref mhd, ref uom, ref vl, ref b_recount))
                {
                case 0:
                {
                    MessageBoxExample.MyMessageBox.ShowBox(string.Format(mt.ReadResFile(this.Name.ToString() + "Error1"), Data));
                    tbInputData.Text = "";
                }
                break;

                case 1:
                {
                    lbDescription.Text = string.Format("{0} {1}", varenr, beskrivelse);
                    ReturnIndex        = 1;
                    //P-ID
                }
                break;

                case 2:
                {
                    lbDescription.Text = string.Format("{0} {1}", varenr, beskrivelse);
                    ReturnIndex        = 2;
                    //Vareinfo
                }
                break;

                case 3:
                {
                    lbDescription.Text = string.Format("{0} {1}", Data, "");
                    ReturnIndex        = 3;
                    //Placering
                }
                break;
                }
            }
            catch (Exception ex)
            {
                MessageBoxExample.MyMessageBox.ShowBox(ex.Message.ToString());
                tbInputData.Text = "";
            }
            finally
            {
                WareHouse.Dispose();
            }
            if (ReturnIndex > 0)
            {
                btPrint.Enabled = true;
            }
            else
            {
                btPrint.Enabled = false;
            }
        }
Пример #3
0
        private void tbInputData_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == (char)Keys.Enter)
            {
                switch (Globals.GlobalStep)
                {
                case 0:
                {
                    if (tbInputData.Text.Equals(""))
                    {
                        break;
                    }

                    pickorder = tbInputData.Text;

                    if (GetWhseActivityHeader() > 0)
                    {
                        ExtractHeaderData();

                        if (GetWhseActivityLines() > 0)
                        {
                            WhaLineIndex = 0;

                            ExtractLineData();
                            Globals.step++;
                            tbInputData.Text  = "";
                            lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "LabelInputText2");
                        }
                        else
                        {
                            tbInputData.Text = "";
                            MessageBoxExample.MyMessageBox.ShowBox(mt.ReadResFile(this.Name.ToString() + "Message2"));
                        }
                    }
                    else
                    {
                        tbInputData.Text = "";
                        MessageBoxExample.MyMessageBox.ShowBox(mt.ReadResFile(this.Name.ToString() + "Message1"));
                    }
                }
                break;

                case 1:
                {
                    ItemTool it = new ItemTool();

                    if (it.ReturnItemNo(tbInputData.Text) == lbItemNo.Text)
                    {
                        string local_bin = "";
                        //string local_itemno = "";
                        //string local_uom = "";
                        //string local_vendor = "";
                        //string local_desc = "";
                        DateTime local_mhd      = DateTime.Now;
                        DateTime localRegDate   = DateTime.Now;
                        decimal  local_qty      = 0;
                        int      local_appentry = 0;

                        BalanceWarehouse WareHouse = new BalanceWarehouse();
                        WareHouse.UseDefaultCredentials = true;

                        try
                        {
                            //if (WareHouse.WSReturnLotInfo(tbInputData.Text, WhaHeader.theLocation, ref local_bin, ref local_itemno, ref local_desc, ref local_qty, ref local_mhd, ref local_uom, ref local_vendor))
                            //{

                            //}
                            if (WareHouse.WSReturnMhdAndBinFromLot(tbInputData.Text, WhaLine.theItemNo, WhaHeader.theLocation, ref local_bin, ref local_mhd, ref local_qty, ref local_appentry, ref localRegDate))
                            {
                                WhaLine.theBin    = local_bin;
                                WhaLine.theLotNo  = tbInputData.Text;
                                lbQty.Text        = local_qty.ToString();
                                lbLotNo.Text      = tbInputData.Text;
                                lbBincode.Text    = local_bin;
                                lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "LabelInputText3");

                                if (local_qty <= decimal.Parse(lbQuantity.Text))
                                {
                                    tbInputData.Text = local_qty.ToString();
                                }
                                else
                                {
                                    tbInputData.Text = lbQuantity.Text;
                                }
                                tbInputData.SelectAll();
                                Globals.step++;
                            }
                        }
                        catch (Exception ex)
                        {
                            MessageBoxExample.MyMessageBox.ShowBox(ex.Message);
                        }
                    }
                    else
                    {
                        MessageBoxExample.MyMessageBox.ShowBox(mt.ReadResFile(this.Name.ToString() + "Message3"));
                        tbInputData.Text = "";
                    }
                }
                break;

                case 2:
                {
                    // Antals funktion ved P-ID

                    if (tbInputData.Text.Equals(""))
                    {
                        break;
                    }
                    btnNext.Enabled    = false;
                    btnPrevius.Enabled = false;
                    BalanceWarehouse WareHouse = new BalanceWarehouse();
                    WareHouse.UseDefaultCredentials = true;
                    WhaLine = WarehouseActivityLineList.ElementAt(WhaLineIndex);
                    try
                    {
                        decimal d = 0;
                        if (!decimal.TryParse(tbInputData.Text, out d))
                        {
                            break;
                        }
                        lbQuantity.Text = WareHouse.WSReturnRemaningQtyPickorder(WhaLine.theNo, WhaLine.theLineNo).ToString(CultureInfo.GetCultureInfo(Globals.theLanguageCode).NumberFormat);
                        if (d >= decimal.Parse(tbInputData.Text))
                        {
                            WhaLine.theQtyToHandle = decimal.Parse(tbInputData.Text);
                            lbQty.Text             = tbInputData.Text;
                            WarehouseActivityLineList.Insert(WhaLineIndex, WhaLine);
                            WarehouseActivityLineList.RemoveAt(WhaLineIndex + 1);
                            lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "LabelInputText4");
                            tbInputData.Text  = mt.ReadResFile(this.Name.ToString() + "TextBox1");
                            Globals.step      = 10;
                        }
                        else
                        {
                            MessageBoxExample.MyMessageBox.ShowBox(string.Format(mt.ReadResFile(this.Name.ToString() + "Message4"), lbQuantity.Text),
                                                                   mt.ReadResFile(this.Name.ToString() + "Message4Caption"));
                            tbInputData.SelectAll();
                            break;
                        }
                    }
                    catch (Exception ex)
                    {
                        MessageBoxExample.MyMessageBox.ShowBox(ex.Message);
                    }
                    finally
                    {
                        WareHouse.Dispose();
                    }
                }
                break;

                case 3:
                {
                    if (tbInputData.Text.Equals(""))
                    {
                        break;
                    }
                    btnNext.Enabled    = false;
                    btnPrevius.Enabled = false;

                    WhaLine = WarehouseActivityLineList.ElementAt(WhaLineIndex);

                    BalanceWarehouse Warehouse = new BalanceWarehouse();
                    Warehouse.UseDefaultCredentials = true;

                    if (Warehouse.WSGetItemCrossRef(tbInputData.Text.ToUpper()) != lbItemNo.Text)
                    {
                        MessageBoxExample.MyMessageBox.ShowBox("Forkert Varenummer!");
                        tbInputData.SelectAll();
                        break;
                    }
                    Globals.GlobalStep++;

                    lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "LabelInputText6");
                    tbInputData.Text  = "";
                }
                break;

                case 4:
                {
                    if (tbInputData.Text.Equals(""))
                    {
                        break;
                    }

                    BalanceWarehouse Warehouse = new BalanceWarehouse();
                    Warehouse.UseDefaultCredentials = true;

                    if (!Warehouse.WSBinExists(Globals.theLocation, tbInputData.Text.ToUpper()))
                    {
                        MessageBoxExample.MyMessageBox.ShowBox(string.Format("Placeringen {0} findes ikke", tbInputData.Text));
                        tbInputData.Text = "";
                        break;
                    }

                    BinContentTool bt    = new BinContentTool();
                    decimal        l_qty = 0;
                    string         l_uom = "";

                    if (bt.GetItemBincontent(Globals.theLocation, tbInputData.Text, lbItemNo.Text, ref l_qty, ref l_uom))
                    {
                        lbQty.Text     = l_qty.ToString("N2");
                        lbUnit.Text    = l_uom;
                        lbBincode.Text = tbInputData.Text.ToUpper();
                    }

                    if (l_qty == 0)
                    {
                        MessageBoxExample.MyMessageBox.ShowBox(string.Format("Placeringen {0} indeholder ikke varen: {1}", tbInputData.Text.ToUpper(), lbItemNo.Text));
                        tbInputData.Text = "";
                        break;
                    }

                    if (l_qty <= decimal.Parse(lbQuantity.Text))
                    {
                        tbInputData.Text = l_qty.ToString();
                    }
                    else
                    {
                        tbInputData.Text = lbQuantity.Text;
                    }

                    Globals.GlobalStep++;
                    lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "LabelInputText3");
                    //tbInputData.Text = "";
                }
                break;

                case 5:
                {
                    // Antalsfunktion uden P-ID

                    if (tbInputData.Text.Equals(""))
                    {
                        break;
                    }

                    BalanceWarehouse WareHouse = new BalanceWarehouse();
                    WareHouse.UseDefaultCredentials = true;
                    try
                    {
                        decimal d = 0;
                        if (!decimal.TryParse(tbInputData.Text, out d))
                        {
                            break;
                        }
                        lbQuantity.Text = WareHouse.WSReturnRemaningQtyPickorder(WhaLine.theNo, WhaLine.theLineNo).ToString(CultureInfo.GetCultureInfo(Globals.theLanguageCode).NumberFormat);
                        if (d <= decimal.Parse(lbQuantity.Text))
                        {
                            WhaLine.theQtyToHandle = decimal.Parse(tbInputData.Text);
                            lbQty.Text             = tbInputData.Text;
                            WhaLine.theLotNo       = "";
                            WarehouseActivityLineList.Insert(WhaLineIndex, WhaLine);
                            WarehouseActivityLineList.RemoveAt(WhaLineIndex + 1);
                            lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "LabelInputText4");
                            tbInputData.Text  = mt.ReadResFile(this.Name.ToString() + "TextBox1");
                            Globals.step      = 10;
                        }
                        else
                        {
                            MessageBoxExample.MyMessageBox.ShowBox(string.Format(mt.ReadResFile(this.Name.ToString() + "Message4"), lbQuantity.Text),
                                                                   mt.ReadResFile(this.Name.ToString() + "Message4Caption"));
                            tbInputData.SelectAll();
                            break;
                        }
                    }
                    catch (Exception ex)
                    {
                        MessageBoxExample.MyMessageBox.ShowBox(ex.Message);
                    }
                    finally
                    {
                        WareHouse.Dispose();
                    }
                }
                break;

                case 10:
                {
                    // CallFunction in Navision To post the Pick" and "Place" line
                    BalanceWarehouse WareHouse = new BalanceWarehouse();
                    WareHouse.UseDefaultCredentials = true;
                    //WhaLine = WarehouseActivityLineList.ElementAt(WhaLineIndex);

                    this.pbIndicator.Image   = WindowsFormsApplication1.Properties.Resources.animatedCircle;
                    this.pbIndicator.Visible = true;

                    try
                    {
                        if (lbBincode.Text != WhaLine.theBin)
                        {
                            WhaLine.theBin = lbBincode.Text;
                        }
                        WareHouse.WSPostPickOrder(WhaLine.theNo, WhaLine.theLineNo, WhaLine.theSourceLineNo, WhaLine.theItemNo, WhaLine.theQtyToHandle, WhaLine.theLotNo, WhaLine.theBin);
                    }
                    catch (Exception ex)
                    {
                        this.pbIndicator.Image   = null;
                        this.pbIndicator.Visible = false;

                        MessageBoxExample.MyMessageBox.ShowBox(ex.Message);
                    }

                    this.pbIndicator.Image   = null;
                    this.pbIndicator.Visible = false;

                    try
                    {
                        lbQuantity.Text = WareHouse.WSReturnRemaningQtyPickorder(WhaLine.theNo, WhaLine.theLineNo).ToString(CultureInfo.GetCultureInfo(Globals.theLanguageCode).NumberFormat);
                    }
                    catch (Exception ex)
                    {
                        this.pbIndicator.Image   = null;
                        this.pbIndicator.Visible = false;

                        MessageBoxExample.MyMessageBox.ShowBox(ex.Message);
                    }

                    try
                    {
                        //WareHouse.WSDeleteQtyToHandle(WhaLine.theNo.ToString());
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(ex.Message.ToString());
                        MessageBoxExample.MyMessageBox.ShowBox(ex.Message);
                    }
                    finally
                    {
                        WareHouse.Dispose();
                    }

                    if (decimal.Parse(lbQuantity.Text) > 0)
                    {
                        if (UseTracking)
                        {
                            Globals.GlobalStep = 1;
                            lblInputText.Text  = mt.ReadResFile(this.Name.ToString() + "LabelInputText2");
                            tbInputData.Text   = "";
                        }
                        else
                        {
                            Globals.GlobalStep = 3;
                            lblInputText.Text  = mt.ReadResFile(this.Name.ToString() + "LabelInputText5");
                            tbInputData.Text   = "";
                        }
                        btnNext.Enabled    = true;
                        btnPrevius.Enabled = true;
                    }
                    else
                    {
                        // Funktionalitet til at finde næste pluklinje der skal plukkes eller afslutte hvis der ikke er flere.
                        WarehouseActivityLineList.RemoveAt(WhaLineIndex);
                        if (WhaLineIndex > 0)
                        {
                            WhaLineIndex--;
                        }
                        NoOfLines--;
                        lbLines.Text = string.Format("{0} af {1}", 1, NoOfLines.ToString());

                        if (WarehouseActivityLineList.Count() > 1)
                        {
                            ExtractLineData();
                            lbQty.Text = "";

                            if (WhaLine.theQtyOutstanding <= 0)
                            {
                                tbInputData.Enabled = false;
                            }
                            else
                            {
                                tbInputData.Enabled = true;
                            }

                            btnNext.Enabled    = true;
                            btnPrevius.Enabled = true;
                        }
                        if (WarehouseActivityLineList.Count() == 1)
                        {
                            ExtractLineData();
                            lbQty.Text = "";

                            if (WhaLine.theQtyOutstanding <= 0)
                            {
                                tbInputData.Enabled = false;
                            }
                            else
                            {
                                tbInputData.Enabled = true;
                            }
                        }
                        if ((WhaLineIndex == 0) && (WhaLineIndex == WarehouseActivityLineList.Count()))
                        {
                            fmWarehouseFright wf = new fmWarehouseFright(Warehouseshipmentno);
                            wf.ShowDialog();

                            Globals.step = 0;
                            this.Close();
                        }
                    }
                }
                break;
                }
            }

            if ((e.KeyChar == (char)Keys.Escape) || (e.KeyChar == (char)Keys.Tab))
            {
                switch (Globals.step)
                {
                case 10:
                {
                    if (UseTracking)
                    {
                        Globals.GlobalStep = 2;
                        lblInputText.Text  = mt.ReadResFile(this.Name.ToString() + "LabelInputText3");
                        tbInputData.Text   = "";
                    }
                    else
                    {
                        Globals.GlobalStep = 5;
                        lblInputText.Text  = mt.ReadResFile(this.Name.ToString() + "LabelInputText3");
                        tbInputData.Text   = "";
                    }
                }
                break;

                case 5:
                {
                    Globals.step--;
                    //lblInputText3
                    lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "LabelInputText6");
                    tbInputData.Text  = "";
                }
                break;

                case 4:
                {
                    Globals.step--;
                    //lblInputText3
                    lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "LabelInputText5");
                    tbInputData.Text  = "";
                }
                break;

                case 3:
                {
                    Globals.step = 0;
                    this.Close();
                }
                break;

                case 2:
                {
                    Globals.step--;
                    //lblInputText2
                    lblInputText.Text  = mt.ReadResFile(this.Name.ToString() + "LabelInputText2");
                    tbInputData.Text   = "";
                    btnNext.Enabled    = true;
                    btnPrevius.Enabled = true;
                }
                break;

                case 1:
                {
                    Globals.step = 0;
                    this.Close();
                }
                break;

                case 0:
                {
                    Globals.step = 0;
                    this.Close();
                }
                break;
                }
            }
        }
Пример #4
0
        public void GetPidData()
        {
            #region Local variables
            string   lokation    = Globals.theLocation;
            string   placering   = "";
            string   varenr      = "";
            string   beskrivelse = "";
            decimal  antal       = 0;
            DateTime mhd         = DateTime.Now;
            string   uom         = "";
            string   vl          = "";

            MyToolbox mt = new MyToolbox();
            #endregion

            BalanceWarehouse WareHouse = new BalanceWarehouse();
            WareHouse.UseDefaultCredentials = true;

            ItemTool it = new ItemTool();

            if (thepid.Equals("#"))
            {
                g_PID             = WareHouse.WSReturnNewPID();
                b_NewPID          = true;
                lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "lblInputText3"); // Angiv Placering.
                tbInputData.Text  = "";
                lbLocation.Text   = Globals.theLocation;
                if (Globals.theShowMessage)
                {
                    MessageBoxExample.MyMessageBox.ShowBox(g_PID.ToString());
                }
                b_confirmPid = true;
                Globals.step++;
            }

            try
            {
                if (it.TypeOfItem(ref thepid, Globals.theLocation, ref placering, ref varenr, ref beskrivelse, ref antal, ref mhd, ref uom, ref vl, ref recountpid) == 1)
                {
                    lbLocation.Text = lokation;
                    if (lokation.Equals(""))
                    {
                        lokation = Globals.theLocation;
                    }
                    lbBin.Text          = placering;
                    lbItemNo.Text       = varenr;
                    lbDescription.Text  = beskrivelse;
                    lbQuantity.Text     = antal.ToString(CultureInfo.GetCultureInfo(Globals.theLanguageCode).NumberFormat);
                    lbUnitOfMesure.Text = uom;
                    lbExpiredate.Text   = mhd.ToShortDateString();
                    lbPID.Text          = thepid;
                    lbVendorLot.Text    = vl;

                    bool FirstInventory = false;

                    if (recountpid)
                    {
                        if (Globals.thePhysCountMode)
                        {
                            lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "lblInputText3"); // Angiv placering
                            Globals.step++;
                        }
                        else
                        {
                            b_NewPID          = true;
                            b_confirmPid      = false;
                            lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "lblInputText3"); // Angiv Placering.
                            tbInputData.Text  = "";
                            Globals.step++;
                        }
                    }
                    else
                    {
                        if (Globals.thePhysCountMode)
                        {
                            lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "lblInputText3"); // Angiv placering
                            Globals.step++;
                        }
                        else
                        {
                            if (!FirstInventory)
                            {
                                lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "lblInputText6"); // Angiv Antal.
                                Globals.step      = 5;
                            }
                            else
                            {
                                lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "lblInputText3"); // Angiv placering
                                Globals.step++;
                            }
                        }
                    }
                }
                else
                {
                    if (!WareHouse.WSPIDExists(tbInputData.Text))
                    {
                        MessageBoxExample.MyMessageBox.ShowBox(mt.ReadResFile(this.Name.ToString() + "Message1"));
                        tbInputData.SelectAll();
                        //break;
                    }
                    if (WareHouse.WSLotInfoUsed(tbInputData.Text))
                    {
                        MessageBoxExample.MyMessageBox.ShowBox(mt.ReadResFile(this.Name.ToString() + "Message1"));
                        // break;
                    }
                    else
                    {
                        b_NewPID          = true;
                        b_confirmPid      = false;
                        lblInputText.Text = mt.ReadResFile(this.Name.ToString() + "lblInputText3"); // Angiv Placering.
                        tbInputData.Text  = "";
                        lbLocation.Text   = Globals.theLocation;
                        Globals.step++;
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBoxExample.MyMessageBox.ShowBox(ex.Message.ToString());
            }
            finally
            {
                WareHouse.Dispose();
            }
        }
Пример #5
0
        private void tbInputData_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == (char)Keys.Enter)
            {
                switch (Globals.GlobalStep)
                {
                case 0:
                {
                    if (tbInputData.Text.Equals(""))
                    {
                        break;
                    }
                    lbLocation.Text     = "";
                    lbBin.Text          = "";
                    lbItemNo.Text       = "";
                    lbDescription.Text  = "";
                    lbQuantity.Text     = "";
                    lbUnitOfMesure.Text = "";
                    lbExpiredate.Text   = "";
                    lbVendorLot.Text    = "";

                    BalanceWarehouse WareHouse = new BalanceWarehouse();
                    WareHouse.UseDefaultCredentials = true;

                    string   lokation    = "";
                    string   placering   = "";
                    string   varenr      = "";
                    string   beskrivelse = "";
                    decimal  antal       = 0;
                    DateTime mhd         = DateTime.UtcNow;
                    lot = tbInputData.Text;
                    string vl        = "";
                    string uom       = "";
                    bool   b_recount = false;

                    string refNo = tbInputData.Text.ToUpper();

                    ItemTool it = new ItemTool();

                    this.pbIndicator.Image   = WindowsFormsApplication1.Properties.Resources.animatedCircle;
                    this.pbIndicator.Visible = true;

                    try
                    {
                        refNo = WareHouse.WSGetItemCrossRef(refNo);
                    }
                    catch (Exception ex)
                    {
                        MessageBoxExample.MyMessageBox.ShowBox(ex.Message);
                    }

                    try
                    {
                        switch (it.TypeOfItem(ref refNo, Globals.theLocation, ref placering, ref varenr, ref beskrivelse, ref antal, ref mhd, ref uom, ref vl, ref b_recount))
                        {
                        case 0:
                        {
                            MessageBoxExample.MyMessageBox.ShowBox(mt.ReadResFile(this.Name.ToString() + "Message1"));
                        }
                        break;

                        case 1:
                        {
                            if (lokation.Equals(""))
                            {
                                lokation = Globals.theLocation;
                            }
                            if (b_recount)
                            {
                                break;
                            }
                            lbLocation.Text     = lokation;
                            lbBin.Text          = placering;
                            lbItemNo.Text       = varenr;
                            lbDescription.Text  = beskrivelse;
                            lbQuantity.Text     = antal.ToString(CultureInfo.GetCultureInfo(Globals.theLanguageCode).NumberFormat);
                            lbUnitOfMesure.Text = uom;
                            lbExpiredate.Text   = mhd.ToShortDateString();
                            lbVendorLot.Text    = vl;
                        }
                        break;

                        case 2:
                        {
                            if (WareHouse.WSGetItemBinInformation(Globals.theWinlogon, Globals.theLocation, refNo) > 0)
                            {
                                fmBinContent fm = new fmBinContent(2, refNo);
                                fm.ShowDialog();
                                this.Close();
                            }
                        }
                        break;

                        case 3:
                        {
                            if (WareHouse.WSGetBinContentInformation(Globals.theWinlogon, Globals.theLocation, refNo) > 0)
                            {
                                fmBinContent fm = new fmBinContent(1, tbInputData.Text.ToUpper());
                                fm.ShowDialog();
                                this.Close();
                            }
                        }
                        break;
                        }
                    }
                    catch (Exception ex)
                    {
                        this.pbIndicator.Image   = null;
                        this.pbIndicator.Visible = false;

                        MessageBoxExample.MyMessageBox.ShowBox(ex.Message.ToString());
                    }
                    finally
                    {
                        this.pbIndicator.Image   = null;
                        this.pbIndicator.Visible = false;

                        WareHouse.Dispose();
                        tbInputData.Focus();
                        tbInputData.SelectAll();
                    }
                }
                break;
                }
            }

            if ((e.KeyChar == (char)Keys.Escape) || (e.KeyChar == (char)Keys.Tab))
            {
                switch (Globals.step)
                {
                case 3:
                {
                    Globals.step = 0;
                    this.Close();
                }
                break;

                case 2:
                {
                    Globals.step = 0;
                    this.Close();
                }
                break;

                case 1:
                {
                    Globals.step = 0;
                    this.Close();
                }
                break;

                case 0: this.Close();
                    break;
                }
            }
        }