This commit is contained in:
2025-02-14 16:48:50 +08:00
parent 86b1e8b3da
commit 6d4a7e82a7
51 changed files with 1888 additions and 339 deletions
@@ -196,6 +196,18 @@ namespace BLL
}
}
public static void WarrantybookSure(string stockInId, bool? isSure, string sureMan)
{
Model.SGGLDB db = Funs.DB;
Model.Weld_StockIn newStockIn = db.Weld_StockIn.FirstOrDefault(e => e.StockInId == stockInId);
if (newStockIn != null)
{
newStockIn.IsSure= isSure;
newStockIn.SureMan= sureMan;
db.SubmitChanges();
}
}
/// <summary>
/// 根据主键删除焊材入库
/// </summary>