本文整理汇总了C#中LayerBusinessEntities.tb_sys_modulo类的典型用法代码示例。如果您正苦于以下问题:C# tb_sys_modulo类的具体用法?C# tb_sys_modulo怎么用?C# tb_sys_modulo使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
tb_sys_modulo类属于LayerBusinessEntities命名空间,在下文中一共展示了tb_sys_modulo类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Delete
public bool Delete(string empresaid, tb_sys_modulo BE)
{
using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
{
using (SqlCommand cmd = new SqlCommand("gspTbSysModulo_DELETE", cnx))
{
{
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add("@dominioid", SqlDbType.Char, 2).Value = BE.dominioid;
cmd.Parameters.Add("@moduloid", SqlDbType.Char, 4).Value = BE.moduloid;
}
try
{
cnx.Open();
if (cmd.ExecuteNonQuery() > 0)
{
return true;
}
else
{
return false;
}
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
}
}
}
示例2: AyudaProducto
private void AyudaProducto(String lpdescrlike)
{
try
{
var modd = string.Empty;
var BL = new sys_moduloBL();
var BE = new tb_sys_modulo();
var dt = new DataTable();
BE.dominioid = dominioiddes.Trim();
BE.moduloid = moduloid;
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count > 0)
{
if (dt.Rows[0]["moduloshort"].ToString().Trim().Length == 2)
{
modd = dt.Rows[0]["moduloshort"].ToString().Trim();
var frmayuda = new Ayudas.Form_help_requerimiento();
frmayuda.tipoo = "sql";
frmayuda.titulo = "<< AYUDA TABLA PRODUCTOS >>";
frmayuda.sqlquery = "SELECT tb1.productid, tb1.productname, tb2.stock, tb1.unmedenvase as unmedenvase ,tb2.costoultimo FROM tb_" + modd + "_productos AS tb1 ";
frmayuda.sqlinner = "inner join tb_" + modd + "_local_stock as tb2 on tb1.productid = tb2.productid ";
frmayuda.sqlwhere = "where ";
frmayuda.sqland = string.Empty;
frmayuda.criteriosbusqueda = new string[] { "PRODUCTO", "CODIGO" };
frmayuda.columbusqueda = "tb1.productname,tb1.productid";
frmayuda.returndatos = "0,1,2,3";
frmayuda.Owner = this;
frmayuda.PasaProveedor = RecibeProducto;
frmayuda.ShowDialog();
}
}
}
catch (Exception ex)
{
throw ex;
}
}
示例3: data_cbo_moduloiddes
private void data_cbo_moduloiddes()
{
try
{
var BL = new sys_moduloBL();
var BE = new tb_sys_modulo();
BE.dominioid = "60";
BE.status = "0";
var dt = new DataTable();
dt = BL.GetAll(VariablesPublicas.EmpresaID, BE).Tables[0];
cbo_modulo.DataSource = dt;
cbo_modulo.ValueMember = "moduloid";
cbo_modulo.DisplayMember = "moduloname";
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
示例4: AyudaProducto
private void AyudaProducto(String lpdescrlike)
{
try
{
var modd = string.Empty;
var BL = new sys_moduloBL();
var BE = new tb_sys_modulo();
var dt = new DataTable();
BE.dominioid = dominio.Trim();
BE.moduloid = modulo.Trim();
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count > 0)
{
if (dt.Rows[0]["moduloshort"].ToString().Trim().Length == 2)
{
modd = dt.Rows[0]["moduloshort"].ToString().Trim();
var frmayuda = new Ayudas.Frm_help_general();
frmayuda.nameform = string.Empty;
frmayuda.tipoo = "sql";
frmayuda.titulo = "<< AYUDA TABLA PRODUCTOS >>";
frmayuda.sqlquery = "SELECT tb1.productid, tb1.productname,tb2.lineaname,tb3.gruponame FROM tb_" + modd + "_productos AS tb1 ";
frmayuda.sqlinner = "inner join tb_" + modd + "_linea as tb2 on tb1.lineaid = tb2.lineaid " +
"inner join tb_" + modd + "_grupo as tb3 on tb1.grupoid = tb3.grupoid";
frmayuda.sqlwhere = "where";
frmayuda.sqland = string.Empty;
frmayuda.criteriosbusqueda = new string[] { "PRODUCTO", "CODIGO", "LINEA", "GRUPO" };
frmayuda.columbusqueda = "tb1.productname,tb1.productid,tb2.lineaname,tb3.gruponame";
frmayuda.returndatos = "0,1";
frmayuda.Owner = this;
frmayuda.PasaProveedor = RecibeProducto;
frmayuda.ShowDialog();
}
}
}
catch (Exception ex)
{
}
}
示例5: AyudaGrupo
private void AyudaGrupo(String lpdescrlike)
{
try
{
var modd = string.Empty;
var BL = new sys_moduloBL();
var BE = new tb_sys_modulo();
var dt = new DataTable();
BE.dominioid = dominio;
BE.moduloid = cbo_almacenes.SelectedValue.ToString();
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count > 0)
{
if (dt.Rows[0]["moduloshort"].ToString().Trim().Length == 2)
{
modd = dt.Rows[0]["moduloshort"].ToString().Trim();
var frmayuda = new Ayudas.Frm_help_general();
frmayuda.tipoo = "sql";
frmayuda.titulo = "<< AYUDA TABLA GRUPOS >>";
frmayuda.sqlquery = " SELECT ctacte, ctactename FROM tb_cliente ";
frmayuda.sqlinner = string.Empty;
frmayuda.sqlwhere = " where ";
frmayuda.sqland = string.Empty;
frmayuda.criteriosbusqueda = new string[] { "PROVEEDOR", "CODIGO" };
frmayuda.columbusqueda = "ctactename,ctacte";
frmayuda.returndatos = "0,1";
frmayuda.Owner = this;
frmayuda.PasaProveedor = RecibeGrupo;
frmayuda.ShowDialog();
}
}
}
catch (Exception ex)
{
}
}
示例6: GetAll
public DataSet GetAll(string empresaid, tb_sys_modulo BE)
{
using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
{
using (SqlCommand cmd = new SqlCommand("gspTbSysModulo_SEARCH", cnx))
{
DataSet ds = new DataSet();
{
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add("@dominioid", SqlDbType.Char, 2).Value = BE.dominioid;
cmd.Parameters.Add("@moduloid", SqlDbType.Char, 4).Value = BE.moduloid;
cmd.Parameters.Add("@moduloname", SqlDbType.VarChar, 40).Value = BE.moduloname;
cmd.Parameters.Add("@moduloshort", SqlDbType.Char, 2).Value = BE.moduloshort;
cmd.Parameters.Add("@usuar", SqlDbType.Char, 15).Value = BE.usuar;
//cmd.Parameters.Add("@fecre", SqlDbType.DateTime).Value = BE.fecre;
//cmd.Parameters.Add("@feact", SqlDbType.DateTime).Value = BE.feact;
cmd.Parameters.Add("@status", SqlDbType.Char, 1).Value = BE.status;
//cmd.Parameters.Add("@pedAprob", SqlDbType.Bit).Value = BE.pedaprob;
//cmd.Parameters.Add("@pedTienda", SqlDbType.Bit).Value = BE.pedtienda;
}
try
{
cnx.Open();
using (SqlDataAdapter da = new SqlDataAdapter(cmd))
{
da.Fill(ds);
}
return ds;
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
}
}
}
示例7: AyudaCliente
private void AyudaCliente(String lpdescrlike)
{
try
{
String modd = "";
sys_moduloBL BL = new sys_moduloBL();
tb_sys_modulo BE = new tb_sys_modulo();
DataTable dt = new DataTable();
BE.dominioid = dominioid.Text.ToString();
BE.moduloid = moduloid.Text.ToString();
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count > 0)
{
if (dt.Rows[0]["moduloshort"].ToString().Trim().Length == 2)
{
modd = dt.Rows[0]["moduloshort"].ToString().Trim();
Ayudas.Frm_help_general frmayuda = new Ayudas.Frm_help_general();
frmayuda.tipoo = "sql"; //sql,tabla
frmayuda.titulo = "<< AYUDA TABLA GRUPOS >>";
frmayuda.sqlquery = " SELECT ctacte, ctactename ,nmruc FROM tb_cliente ";
frmayuda.sqlinner = ""; //inner
frmayuda.sqlwhere = " where "; //where
frmayuda.sqland = "";//and
frmayuda.criteriosbusqueda = new string[] { "PROVEEDOR", "CODIGO" };
frmayuda.columbusqueda = "ctactename,ctacte";
frmayuda.returndatos = "0,1,2";
frmayuda.Owner = this;
frmayuda.PasaProveedor = RecibeCliente;
frmayuda.ShowDialog();
}
}
}
catch (Exception ex)
{
}
}
示例8: Ayudasubgrupo
private void Ayudasubgrupo(String lpdescrlike)
{
try
{
String modd = "";
sys_moduloBL BL = new sys_moduloBL();
tb_sys_modulo BE = new tb_sys_modulo();
DataTable dt = new DataTable();
BE.dominioid = dominio;
BE.moduloid = modulo;
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count > 0)
{
if (dt.Rows[0]["moduloshort"].ToString().Trim().Length == 2)
{
modd = dt.Rows[0]["moduloshort"].ToString().Trim();
Ayudas.Frm_help_general frmayuda = new Ayudas.Frm_help_general();
frmayuda.tipoo = "sql"; //sql,tabla
frmayuda.titulo = "<< AYUDA TABLA ARTICULO >>";
frmayuda.sqlquery = "SELECT (lineaid + gr.grupoid + subgrupoid) as Codigo,lineaid,gr.grupoid,g.gruponame,subgrupoid,subgruponame,g.ctacte FROM tb_" + modd + "_subgrupo gr ";
if (modd == "sm")
{frmayuda.sqlinner = " Inner Join tb_" + modd + "_grupo g on gr.grupoid = g.grupoid and gr.status = '0' ";}
else { frmayuda.sqlinner = " Inner Join tb_" + modd + "_grupo g on gr.grupoid = g.grupoid and gr.status = '0' "; }
if (lineaid.Text.Trim().Length > 0 && grupoid.Text.Trim().Length > 0)
{
frmayuda.sqlwhere = "WHERE lineaid = " + lineaid.Text + " and gr.grupoid = " + grupoid.Text + " "; //where
frmayuda.sqland = "and";//and
}
else if (lineaid.Text.Trim().Length > 0)
{
frmayuda.sqlwhere = "WHERE lineaid = " + lineaid.Text + " "; //where
frmayuda.sqland = "and";//and
}
else if (grupoid.Text.Trim().Length > 0)
{
frmayuda.sqlwhere = "WHERE gr.grupoid = " + grupoid.Text + " "; //where
frmayuda.sqland = "and";//and
}
else
{
frmayuda.sqlwhere = "where"; //where
frmayuda.sqland = "";//and
}
frmayuda.criteriosbusqueda = new string[] {"ARTICULO", "CODIGO" };
frmayuda.columbusqueda = "subgruponame,lineaid + gr.grupoid + subgrupoid";
frmayuda.returndatos = "1,2,4,6";
frmayuda.Owner = this;
frmayuda.PasaProveedor = RecibeSubgrupo;
frmayuda.ShowDialog();
}
}
}
catch (Exception ex)
{
}
}
示例9: AyudaColor
private void AyudaColor(String lpdescrlike)
{
try
{
String modd = "";
sys_moduloBL BL = new sys_moduloBL();
tb_sys_modulo BE = new tb_sys_modulo();
DataTable dt = new DataTable();
BE.dominioid = dominio;
BE.moduloid = modulo;
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count > 0)
{
if (dt.Rows[0]["moduloshort"].ToString().Trim().Length == 2)
{
modd = dt.Rows[0]["moduloshort"].ToString().Trim();
Ayudas.Frm_help_general frmayuda = new Ayudas.Frm_help_general();
frmayuda.tipoo = "sql"; //sql,tabla,all
frmayuda.titulo = "Ayuda Color";
frmayuda.sqlquery = "select colorid, colorname from tb_" + modd + "_color";
frmayuda.sqlinner = ""; //inner
frmayuda.sqlwhere = "where"; //where
frmayuda.sqland = "";//and
frmayuda.criteriosbusqueda = new string[] { "COLOR", "CÓDIGO" };
frmayuda.columbusqueda = "colorname,colorid";
frmayuda.returndatos = "0,1";
frmayuda.Owner = this;
frmayuda.PasaProveedor = RecibeColor;
frmayuda.ShowDialog();
}
}
}
catch (Exception ex)
{
}
}
示例10: AyudaProducto
private void AyudaProducto(String lpdescrlike)
{
try
{
griddetallemov.CurrentCell = griddetallemov.Rows[griddetallemov.RowCount - 1].Cells["productname"];
var prod = Convert.ToString(griddetallemov.Rows[griddetallemov.CurrentCell.RowIndex].Cells["productid"].Value);
var modd = string.Empty;
var BL = new sys_moduloBL();
var BE = new tb_sys_modulo();
var dt = new DataTable();
BE.dominioid = dominio;
BE.moduloid = modulo;
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count > 0)
{
if (dt.Rows[0]["moduloshort"].ToString().Trim().Length == 2)
{
modd = dt.Rows[0]["moduloshort"].ToString().Trim();
var frmayuda = new Ayudas.Form_help_stockinventario();
frmayuda.tipoo = "sql";
frmayuda.titulo = "<< Ayuda Producto Inventariado >>";
frmayuda.sqlquery = " select li.productid," +
" p.productname," +
" li.stocklibros," +
" li.stockfisico," +
" li.diferencia," +
" li.costopromlibros," +
" li.costopromfisico " +
" from tb_" + modd + "_local_stock_inventario li ";
frmayuda.sqlinner = " left join tb_" + modd + "_productos p on li.productid = p.productid ";
frmayuda.sqlwhere = "where";
frmayuda.criteriosbusqueda = new string[] { "PRODUCTO", "CODIGO" };
frmayuda.columbusqueda = "p.productname,li.productid";
frmayuda.returndatos = "0,1";
frmayuda.Owner = this;
frmayuda.PasaProveedor = RecibeProductoRollo;
if (prod == string.Empty)
{
prod = "_";
}
frmayuda.txt_busqueda.Text = prod;
frmayuda.btnbuscar.PerformClick();
frmayuda.ShowDialog();
}
}
}
catch (Exception ex)
{
throw ex;
}
}
示例11: Validamodulo_nuevo
private void Validamodulo_nuevo()
{
if (dominioid.Text.Trim().Length == 2)
{
var BL = new sys_moduloBL();
var BE = new tb_sys_modulo();
var dt = new DataTable();
BE.dominioid = dominioid.Text.Trim();
BE.moduloid = moduloid.Text.Trim();
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count == 0)
{
mensaje.Text = "VALIDO";
mensaje.ForeColor = Color.Green;
form_bloqueado(true);
moduloname.Focus();
btn_cancelar.Enabled = true;
btn_grabar.Enabled = true;
}
else
{
mensaje.Text = "YA EXISTE";
mensaje.ForeColor = Color.Red;
moduloid.Focus();
}
}
}
示例12: Ayudasubgrupo
private void Ayudasubgrupo(String lpdescrlike)
{
try
{
var modd = string.Empty;
var BL = new sys_moduloBL();
var BE = new tb_sys_modulo();
var dt = new DataTable();
BE.dominioid = dominio;
BE.moduloid = modulo;
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count > 0)
{
if (dt.Rows[0]["moduloshort"].ToString().Trim().Length == 2)
{
modd = dt.Rows[0]["moduloshort"].ToString().Trim();
var frmayuda = new Ayudas.Frm_help_general();
frmayuda.tipoo = "sql";
frmayuda.titulo = "<< AYUDA TABLA ARTICULO >>";
frmayuda.sqlquery = "SELECT subgrupoid, subgruponame, lineaid, grupoid FROM tb_me_subgrupo ";
frmayuda.sqlinner = string.Empty;
if (lineaid.Text.Trim().Length > 0 && grupoid.Text.Trim().Length > 0)
{
frmayuda.sqlwhere = "where lineaid = " + lineaid.Text + " and grupoid = " + grupoid.Text + " ";
frmayuda.sqland = "and";
}
else
{
if (lineaid.Text.Trim().Length > 0)
{
frmayuda.sqlwhere = "where lineaid = " + lineaid.Text + " ";
frmayuda.sqland = "and";
}
else
{
if (grupoid.Text.Trim().Length > 0)
{
frmayuda.sqlwhere = "where grupoid = " + grupoid.Text + " ";
frmayuda.sqland = "and";
}
else
{
frmayuda.sqlwhere = "where";
frmayuda.sqland = string.Empty;
}
}
}
frmayuda.criteriosbusqueda = new string[] { "ARTICULO", "CODIGO" };
frmayuda.columbusqueda = "subgruponame,subgrupoid";
frmayuda.returndatos = "0,2,3";
frmayuda.Owner = this;
frmayuda.PasaProveedor = RecibeSubgrupo;
frmayuda.ShowDialog();
}
}
}
catch (Exception ex)
{
}
}
示例13: get_cbo_modulo
private void get_cbo_modulo()
{
var BL = new sys_moduloBL();
var BE = new tb_sys_modulo();
var dt = new DataTable();
BE.dominioid = dominio.Trim();
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count > 0)
{
cbo_moduloides.DataSource = dt;
cbo_moduloides.ValueMember = "moduloid";
cbo_moduloides.DisplayMember = "moduloname";
}
}
示例14: AyudaLinea
private void AyudaLinea(String lpdescrlike)
{
try
{
var modd = string.Empty;
var BL = new sys_moduloBL();
var BE = new tb_sys_modulo();
var dt = new DataTable();
BE.dominioid = dominioiddes;
BE.moduloid = moduloiddes.SelectedValue.ToString();
if (moduloiddes.SelectedValue.ToString() == "0000")
{
MessageBox.Show("Seleccione Almacen", "Information");
return;
}
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count > 0)
{
if (dt.Rows[0]["moduloshort"].ToString().Trim().Length == 2)
{
modd = dt.Rows[0]["moduloshort"].ToString().Trim();
var frmayuda = new Ayudas.Frm_help_general();
frmayuda.tipoo = "sql";
frmayuda.titulo = "<< AYUDA TABLA LINEA >>";
frmayuda.sqlquery = " SELECT sg.lineaid,li.lineaname "+
" FROM tb_" + modd + "_subgrupo sg " +
" LEFT JOIN tb_" + modd + "_linea li on sg.lineaid = li.lineaid ";
frmayuda.sqlinner = string.Empty;
frmayuda.sqlwhere = "WHERE sg.subgrupoid = '"+txt_subgrupoid.Text+"' and grupoid = '"+txt_grupoid.Text+"' ";
frmayuda.sqland = "AND";
frmayuda.criteriosbusqueda = new string[] { "LINEA", "CODIGO" };
frmayuda.columbusqueda = "lineaname,lineaid";
frmayuda.returndatos = "0,1";
frmayuda.Owner = this;
frmayuda.PasaProveedor = RecibeLinea;
frmayuda.ShowDialog();
}
}
}
catch (Exception ex)
{
}
}
示例15: Ayudasubgrupo
private void Ayudasubgrupo(String lpdescrlike)
{
try
{
var modd = string.Empty;
var BL = new sys_moduloBL();
var BE = new tb_sys_modulo();
var dt = new DataTable();
BE.dominioid = "60";
BE.moduloid = moduloiddes.SelectedValue.ToString();
if (moduloiddes.SelectedValue.ToString() == "0000")
{
MessageBox.Show("Seleccione Almacen", "Information");
return;
}
dt = BL.GetAll(EmpresaID, BE).Tables[0];
if (dt.Rows.Count > 0)
{
if (dt.Rows[0]["moduloshort"].ToString().Trim().Length == 2)
{
modd = dt.Rows[0]["moduloshort"].ToString().Trim();
var frmayuda = new Ayudas.Frm_help_general();
frmayuda.tipoo = "sql";
frmayuda.titulo = "<< AYUDA TABLA ARTICULO >>";
frmayuda.sqlquery = "SELECT (lineaid + gr.grupoid + subgrupoid) as Codigo,lineaid,gr.grupoid,g.gruponame,subgrupoid,subgruponame,g.ctacte FROM tb_" + modd + "_subgrupo gr ";
if (modd == "sm")
{
frmayuda.sqlinner = " Inner Join tb_" + modd + "_grupo g on gr.grupoid = g.grupoid and gr.status = '0' ";
}
else
{
frmayuda.sqlinner = " Inner Join tb_" + modd + "_grupo g on gr.grupoid = g.grupoid and gr.status = '0' ";
}
//if (txt_lineaid.Text.Trim().Length > 0 && txt_grupoid.Text.Trim().Length > 0)
//{
// frmayuda.sqlwhere = "where lineaid = " + txt_lineaid.Text + " and g.grupoid = " + txt_grupoid.Text + " ";
// frmayuda.sqland = "and";
//}
//else
//{
// if (txt_lineaid.Text.Trim().Length > 0)
// {
// frmayuda.sqlwhere = "where lineaid = " + txt_lineaid.Text + " ";
// frmayuda.sqland = "and";
// }
// else
// {
// if (txt_grupoid.Text.Trim().Length > 0)
// {
// frmayuda.sqlwhere = "where g.grupoid = " + txt_grupoid.Text + " ";
// frmayuda.sqland = "and";
// }
// else
// {
frmayuda.sqlwhere = "where";
frmayuda.sqland = string.Empty;
// }
//}
//}
frmayuda.criteriosbusqueda = new string[] { "ARTICULO", "CODIGO" };
frmayuda.columbusqueda = "subgruponame,subgrupoid";
frmayuda.returndatos = "1,2,4,6";
frmayuda.Owner = this;
frmayuda.PasaProveedor = RecibeSubgrupo;
frmayuda.ShowDialog();
}
}
}
catch (Exception ex)
{
}
}