예제 #1
0
        private void determina_paquete()
        {
            Mouse.OverrideCursor = Cursors.Wait;
            try
            {
                _paq_id = Dat_Venta.insertar_leer_paquete(_liq_id);

                if (_paq_id == -2)
                {
                    txtarticulo.IsEnabled = false;
                    btnpaquete.IsEnabled  = false;
                    btnbuscar.IsEnabled   = false;
                }


                _paq_no             = Dat_Venta.leer_maxnopaqliq(_liq_id);
                lblnpaquete.Content = _paq_no.ToString();
            }
            catch (Exception exc)
            {
                MessageBox.Show(exc.Message, Ent_Msg.msginfomacion, MessageBoxButton.OK, MessageBoxImage.Error);
            }
            Mouse.OverrideCursor = null;
        }