private void TFLanAcertarVlMedio_Load(object sender, EventArgs e) { if (!string.IsNullOrEmpty(Utils.Parametros.pubCultura)) { Idioma.TIdioma.AjustaCultura(this); } this.Icon = Utils.ResourcesUtils.TecnoAliance_ICO; pDados.set_FormatZero(); BS_Lan_Estoque.AddNew(); DT_Lancamento.Text = DateTime.Now.ToString("dd/MM/yyyy"); }
private void TFEmbalagem_Load(object sender, EventArgs e) { panelDados2.BackColor = Utils.SettingsUtils.Default.COLOR_1; this.Icon = Utils.ResourcesUtils.TecnoAliance_ICO; pnl_Lan_Estoque.set_FormatZero(); BS_Lan_Estoque.AddNew(); tp_movimento.SelectedIndex = this.Tp_mov.Trim().ToUpper().Equals("E") ? 0 : this.Tp_mov.Trim().ToUpper().Equals("S") ? 1 : -1; CD_Empresa.Text = this.Cd_empresa; NM_Empresa.Text = this.Nm_empresa; CD_Produto.Text = this.Cd_produto; DS_Produto.Text = this.Ds_produto; Sigla.Text = this.Sigla_unidade; CD_Local.Text = this.Cd_local; DS_Local.Text = this.Ds_local; Qtd_Saida.Value = this.Qtd_saida; Qtd_Saida.Enabled = (this.Qtd_saida.Equals(0) && Qtd_Saida.Visible); Qtd_Entrada.Value = this.Qtd_entrada; Qtd_Entrada.Enabled = (this.Qtd_entrada.Equals(0) && Qtd_Entrada.Visible); DS_Observacao.Text = this.Ds_observacao; this.busca_Valor_Unitario(); DT_Lancamento.Focus(); }