Добавлено отклонение от ГГД

This commit is contained in:
Степанов Дмитрий 2023-11-15 12:10:48 +05:00
parent 9446d32fca
commit 3eeaa2b9eb
4 changed files with 12 additions and 3 deletions

View File

@ -23,6 +23,11 @@ public class SubsystemBlockDto : ItemInfoDto
/// </summary>
public double? TotalRopPlan { get; set; }
/// <summary>
/// Отклонение по ГГД, сут
/// </summary>
public double? TvgLagDays { get; set; }
/// <summary>
/// Рекомендации специалиста
/// </summary>

View File

@ -8,6 +8,8 @@ public class SubsystemBlock : ItemInfo
public double? MeasurementsPerDay { get; set; }
public double? TvgLagDays { get; set; }
public double? TotalRopPlan { get; set; }
public string? Comment { get; set; }

View File

@ -74,12 +74,13 @@ public class DailyReportExportService : IDailyReportExportService
private const string cellTimeBalanceBlockWellOperationSlipsTimeCount = "F79";
private const string cellSubsystemComment = "D35";
private const string cellSubsystemMeasurementsPerDay = "F80";
private const string cellSubsystemTvgLagDays = "F80";
private const string cellSubsystemMeasurementsPerDay = "F81";
private const string cellSubsystemWellBore = "C9";
private const string cellSubsystemTotalRopPlan = "E70";
private const string cellSignDrillingMaster = "C84";
private const string cellSignSupervisor = "C85";
private const string cellSignDrillingMaster = "C85";
private const string cellSignSupervisor = "C86";
private readonly IDailyReportService dailyReportService;
@ -202,6 +203,7 @@ public class DailyReportExportService : IDailyReportExportService
}
sheet.Cell(cellSubsystemComment).Value = subsystemBlock.Comment;
sheet.Cell(cellSubsystemTvgLagDays).Value = subsystemBlock.TvgLagDays;
sheet.Cell(cellSubsystemMeasurementsPerDay).Value = subsystemBlock.MeasurementsPerDay;
sheet.Cell(cellSubsystemWellBore).Value = subsystemBlock.WellBore;
sheet.Cell(cellSubsystemTotalRopPlan).Value = subsystemBlock.TotalRopPlan;