예제 #1
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;
                }
            }
        }