2023-11-10
This commit is contained in:
@@ -257,7 +257,23 @@ namespace BLL
|
||||
Funs.DB.SubmitChanges();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 重置费用信息
|
||||
/// </summary>
|
||||
/// <param name="newtable"></param>
|
||||
public static void RestSetComparison(string id)
|
||||
{
|
||||
var table = Funs.DB.PHTGL_ContractTrack.FirstOrDefault(x => x.Id == id);
|
||||
if (table != null)
|
||||
{
|
||||
|
||||
table.EstimatedQuantity = string.Empty;
|
||||
table.EstimatedAmount = 0m;
|
||||
table.SettledQuantity = string.Empty;
|
||||
table.SettledAmount = 0m;
|
||||
Funs.DB.SubmitChanges();
|
||||
}
|
||||
}
|
||||
public static void DeletePHTGL_ContractTrackById(string id)
|
||||
{
|
||||
PhtglContracttrackprogressService.DeleteModleByContractTrackId(id);
|
||||
|
||||
Reference in New Issue
Block a user