правка багов

This commit is contained in:
Olga Nemt 2024-07-26 12:29:07 +05:00
parent 938562448d
commit a5ccd8973d
5 changed files with 6 additions and 7 deletions

View File

@ -1,4 +1,3 @@
using AsbCloudApp.Data.ProcessMaps.Functions;
using AsbCloudApp.Data.ProcessMaps.Operations; using AsbCloudApp.Data.ProcessMaps.Operations;
using System.Collections.Generic; using System.Collections.Generic;
@ -8,7 +7,7 @@ public class ProcessMapPlanLoadCapacityTemplate : ITemplateParameters
{ {
public string SheetName => "Выработка нагрузки"; public string SheetName => "Выработка нагрузки";
public int HeaderRowsCount => 3; public int HeaderRowsCount => 2;
public string FileName => "ProcessMapPlanLoadCapacity.xlsx"; public string FileName => "ProcessMapPlanLoadCapacity.xlsx";

View File

@ -21,7 +21,7 @@ public class ProcessMapPlanOscillationTemplate : ITemplateParameters
{ nameof(ProcessMapPlanOscillationDto.RpmLeft), new Cell(6, typeof(double)) }, { nameof(ProcessMapPlanOscillationDto.RpmLeft), new Cell(6, typeof(double)) },
{ nameof(ProcessMapPlanOscillationDto.TorqueMaxRight), new Cell(7, typeof(double)) }, { nameof(ProcessMapPlanOscillationDto.TorqueMaxRight), new Cell(7, typeof(double)) },
{ nameof(ProcessMapPlanOscillationDto.TorqueMaxLeft), new Cell(8, typeof(double)) }, { nameof(ProcessMapPlanOscillationDto.TorqueMaxLeft), new Cell(8, typeof(double)) },
{ nameof(ProcessMapPlanOscillationDto.Mode), new Cell(10, typeof(int)) }, { nameof(ProcessMapPlanOscillationDto.Mode), new Cell(9, typeof(int)) },
{ nameof(ProcessMapPlanOscillationDto.Note), new Cell(11, typeof(string)) }, { nameof(ProcessMapPlanOscillationDto.Note), new Cell(10, typeof(string)) },
}; };
} }

View File

@ -7,7 +7,7 @@ public class ProcessMapPlanReamingSlideTemplate : ITemplateParameters
{ {
public string SheetName => "Проработка для слайда"; public string SheetName => "Проработка для слайда";
public int HeaderRowsCount => 2; public int HeaderRowsCount => 3;
public string FileName => "ProcessMapPlanReamingSlide.xlsx"; public string FileName => "ProcessMapPlanReamingSlide.xlsx";

View File

@ -9,7 +9,7 @@ public class ProcessMapPlanSwitchingToTheModeTemplate : ITemplateParameters
{ {
public string SheetName => "Выход на плановый расход"; public string SheetName => "Выход на плановый расход";
public int HeaderRowsCount => 3; public int HeaderRowsCount => 2;
public string FileName => "ProcessMapPlanSwitchingToTheMode.xlsx"; public string FileName => "ProcessMapPlanSwitchingToTheMode.xlsx";

View File

@ -24,5 +24,5 @@ public class ProcessMapPlanLoadCapacityController :
{ {
} }
protected override string TemplateFileName => "ЕЦП_шаблон_файла_РТК_план_проработка_слайд.xlsx"; protected override string TemplateFileName => "ЕЦП_шаблон_файла_РТК_план_выработкаагрузки.xlsx";
} }