20240426 修改开车月报告

This commit is contained in:
2024-04-26 10:08:30 +08:00
parent 2601965679
commit 0e2487e6fa
15 changed files with 4698 additions and 111 deletions
@@ -70,6 +70,9 @@ namespace BLL
NextMonthDrivingCost = monthReport.NextMonthDrivingCost,
ProblemsMeasures = monthReport.ProblemsMeasures,
SolvedProblems = monthReport.SolvedProblems,
SortId = monthReport.SortId,
StartDate = monthReport.StartDate,
EndDate = monthReport.EndDate
};
Funs.DB.TestRun_MonthReport.InsertOnSubmit(newMonthReport);
Funs.DB.SubmitChanges();
@@ -106,6 +109,9 @@ namespace BLL
newMonthReport.NextMonthDrivingCost = monthReport.NextMonthDrivingCost;
newMonthReport.ProblemsMeasures = monthReport.ProblemsMeasures;
newMonthReport.SolvedProblems = monthReport.SolvedProblems;
newMonthReport.SortId = monthReport.SortId;
newMonthReport.StartDate = monthReport.StartDate;
newMonthReport.EndDate = monthReport.EndDate;
Funs.DB.SubmitChanges();
}
}