Assistedtooling fix

Fix siemens tool table
Added dynamic tool in spindle
This commit is contained in:
Lucio Maranta
2019-03-20 16:56:10 +01:00
parent d05fe23a25
commit 4892340a26
8 changed files with 61 additions and 70 deletions
+3 -2
View File
@@ -453,8 +453,9 @@ namespace Step.Config
.Select(x => new MagazineNamesModel()
{
MagazineId = Convert.ToInt32(x.Element("id").Value),
LocalizedNames = x.Element("localizedNames").Elements().ToDictionary( // Read localized names and convert into a dictionary
y => y.Attribute("langKey").Value, y => y.Value
AssistedTooling = Convert.ToBoolean(x.Element("assistedTooling").Value),
LocalizedNames = x.Element("localizedNames").Elements().ToDictionary( // Read localized names and convert into a dictionary
y => y.Attribute("langKey").Value, y => y.Value
),
})
.ToList();