forked from ddrilling/AsbCloudServer
Добавлено отклонение от ГГД
This commit is contained in:
parent
9446d32fca
commit
3eeaa2b9eb
@ -22,6 +22,11 @@ public class SubsystemBlockDto : ItemInfoDto
|
|||||||
/// Общая плановая мех. скорость
|
/// Общая плановая мех. скорость
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public double? TotalRopPlan { get; set; }
|
public double? TotalRopPlan { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Отклонение по ГГД, сут
|
||||||
|
/// </summary>
|
||||||
|
public double? TvgLagDays { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Рекомендации специалиста
|
/// Рекомендации специалиста
|
||||||
|
@ -7,6 +7,8 @@ public class SubsystemBlock : ItemInfo
|
|||||||
public double? WellBore { get; set; }
|
public double? WellBore { get; set; }
|
||||||
|
|
||||||
public double? MeasurementsPerDay { get; set; }
|
public double? MeasurementsPerDay { get; set; }
|
||||||
|
|
||||||
|
public double? TvgLagDays { get; set; }
|
||||||
|
|
||||||
public double? TotalRopPlan { get; set; }
|
public double? TotalRopPlan { get; set; }
|
||||||
|
|
||||||
|
@ -74,12 +74,13 @@ public class DailyReportExportService : IDailyReportExportService
|
|||||||
private const string cellTimeBalanceBlockWellOperationSlipsTimeCount = "F79";
|
private const string cellTimeBalanceBlockWellOperationSlipsTimeCount = "F79";
|
||||||
|
|
||||||
private const string cellSubsystemComment = "D35";
|
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 cellSubsystemWellBore = "C9";
|
||||||
private const string cellSubsystemTotalRopPlan = "E70";
|
private const string cellSubsystemTotalRopPlan = "E70";
|
||||||
|
|
||||||
private const string cellSignDrillingMaster = "C84";
|
private const string cellSignDrillingMaster = "C85";
|
||||||
private const string cellSignSupervisor = "C85";
|
private const string cellSignSupervisor = "C86";
|
||||||
|
|
||||||
private readonly IDailyReportService dailyReportService;
|
private readonly IDailyReportService dailyReportService;
|
||||||
|
|
||||||
@ -202,6 +203,7 @@ public class DailyReportExportService : IDailyReportExportService
|
|||||||
}
|
}
|
||||||
|
|
||||||
sheet.Cell(cellSubsystemComment).Value = subsystemBlock.Comment;
|
sheet.Cell(cellSubsystemComment).Value = subsystemBlock.Comment;
|
||||||
|
sheet.Cell(cellSubsystemTvgLagDays).Value = subsystemBlock.TvgLagDays;
|
||||||
sheet.Cell(cellSubsystemMeasurementsPerDay).Value = subsystemBlock.MeasurementsPerDay;
|
sheet.Cell(cellSubsystemMeasurementsPerDay).Value = subsystemBlock.MeasurementsPerDay;
|
||||||
sheet.Cell(cellSubsystemWellBore).Value = subsystemBlock.WellBore;
|
sheet.Cell(cellSubsystemWellBore).Value = subsystemBlock.WellBore;
|
||||||
sheet.Cell(cellSubsystemTotalRopPlan).Value = subsystemBlock.TotalRopPlan;
|
sheet.Cell(cellSubsystemTotalRopPlan).Value = subsystemBlock.TotalRopPlan;
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user