From bf432bf7b7faa7c51e74462e19eb3e50c28b4aa8 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Wed, 22 Jan 2020 18:00:55 +0200 Subject: Implemented StringFormat control for db properties. Added StringFormat 0.000 for FeederTension on ProcessParameters. --- .../Modules/Tango.MachineStudio.Developer/Views/JobView.xaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer') diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml index 3e6ffd396..b49f1407c 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml @@ -1553,7 +1553,7 @@ - + -- cgit v1.3.1 From 60a2692fd4acadfdf8724bb198e38a2689a866fd Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Thu, 23 Jan 2020 14:34:55 +0200 Subject: Added new staple spun process parameters to database, BL and PMR. Implemented process params index via db. Added new process params in MS. Added JOB_RUN => Upload time, Heating Time, IsGradient... --- Software/DB/Tango.mdf | Bin 75497472 -> 75497472 bytes Software/DB/Tango_log.ldf | Bin 22675456 -> 22675456 bytes .../PMR/Messages/Hardware/HardwareBlower.proto | 1 - .../PMR/Messages/Printing/ProcessParameters.proto | 16 + .../Views/JobView.xaml | 20 +- .../Views/JobView.xaml.cs | 40 -- .../Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs | 40 ++ .../Tango.BL/DTO/ProcessParametersTableDTOBase.cs | 64 ++++ .../Visual_Studio/Tango.BL/Entities/JobRunBase.cs | 177 +++++++++ .../Entities/ProcessParametersTableBase.cs | 414 +++++++++++++++++++++ .../DbPropertyExtensionModel.cs | 6 + .../Templates/EntityCodeFile.cshtml | 6 + .../CustomAttributes/PropertyIndexAttribute.cs | 24 ++ .../ExtensionMethods/IParameterizedExtensions.cs | 11 +- .../Visual_Studio/Tango.Core/Tango.Core.csproj | 1 + .../Visual_Studio/Tango.DAL.Remote/DB/JOB_RUNS.cs | 5 + .../DB/PROCESS_PARAMETERS_TABLES.cs | 8 + .../Tango.DAL.Remote/DB/RemoteADO.Designer.cs | 2 +- .../Tango.DAL.Remote/DB/RemoteADO.edmx | 39 ++ .../Tango.DAL.Remote/DB/RemoteADO.edmx.diagram | 156 ++++---- .../Tango.PMR/Hardware/HardwareBlower.cs | 3 - .../Tango.PMR/Printing/ProcessParameters.cs | 236 +++++++++++- .../Utilities/Tango.PMRGenerator.CLI/Program.cs | 6 +- 23 files changed, 1132 insertions(+), 143 deletions(-) create mode 100644 Software/Visual_Studio/Tango.Core/CustomAttributes/PropertyIndexAttribute.cs (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer') diff --git a/Software/DB/Tango.mdf b/Software/DB/Tango.mdf index 934e928ac..92607a44c 100644 Binary files a/Software/DB/Tango.mdf and b/Software/DB/Tango.mdf differ diff --git a/Software/DB/Tango_log.ldf b/Software/DB/Tango_log.ldf index 236d08381..b0d5a8efe 100644 Binary files a/Software/DB/Tango_log.ldf and b/Software/DB/Tango_log.ldf differ diff --git a/Software/PMR/Messages/Hardware/HardwareBlower.proto b/Software/PMR/Messages/Hardware/HardwareBlower.proto index 0d5aadac1..f628fea36 100644 --- a/Software/PMR/Messages/Hardware/HardwareBlower.proto +++ b/Software/PMR/Messages/Hardware/HardwareBlower.proto @@ -22,7 +22,6 @@ message HardwareBlower bool Enabled = 2; - //Voltage Description double Voltage = 3; double HeatingVoltage = 4; diff --git a/Software/PMR/Messages/Printing/ProcessParameters.proto b/Software/PMR/Messages/Printing/ProcessParameters.proto index 042f63264..013549907 100644 --- a/Software/PMR/Messages/Printing/ProcessParameters.proto +++ b/Software/PMR/Messages/Printing/ProcessParameters.proto @@ -56,4 +56,20 @@ message ProcessParameters int32 TableIndex = 20; + double HeadZone7Temp = 21; + + double HeadZone8Temp = 22; + + double HeadZone9Temp = 23; + + double HeadZone10Temp = 24; + + double HeadZone11Temp = 25; + + double HeadZone12Temp = 26; + + double StSpZone1Temp = 27; + + double StSpZone2Temp = 28; + } diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml index b49f1407c..47cb41522 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml @@ -791,9 +791,9 @@ - + - SUPPORTED MEDIA LIQUID ( Max Nanolitter/CM ) + MEDIA LIQUIDS ( Max Nanolitter/CM ) @@ -1403,7 +1403,7 @@