|
|
@ -80,7 +80,13 @@ namespace Mesnac.Action.ChemicalWeighing.AutoControl.DB
|
|
|
|
{
|
|
|
|
{
|
|
|
|
string sql = $"select Code from lj_stock_material where Id={id}";
|
|
|
|
string sql = $"select Code from lj_stock_material where Id={id}";
|
|
|
|
var dataTable = DBHelp.GetTable(sql);
|
|
|
|
var dataTable = DBHelp.GetTable(sql);
|
|
|
|
return Convert.ToInt16(dataTable.Rows[0][0]);
|
|
|
|
if (dataTable.Rows.Count == 1)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return Convert.ToInt16(dataTable.Rows[0][0]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return id;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return id;
|
|
|
|
return id;
|
|
|
|