Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Add new delivery truck to seed data and update truck rule.
Browse files Browse the repository at this point in the history
  • Loading branch information
jillcary committed Sep 18, 2018
1 parent 8b1beb6 commit 823f6a4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions config/app/resources/data/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,19 +97,19 @@
]
},
{
"Id": "default_Truck_Temperature_High",
"Name": "Higher than normal cargo temperature",
"Id": "default_Truck_Temperature_Low",
"Name": "Lower than normal cargo temperature",
"Enabled": true,
"Description": "Cargo temperature is > 45 degrees",
"Description": "Cargo temperature is < 50 degrees",
"GroupId": "default_Trucks",
"Severity": "Warning",
"Calculation": "Average",
"TimePeriod": "300000",
"Conditions": [
{
"Field": "temperature",
"Operator": "GreaterThan",
"Value": "45"
"Operator": "LessThan",
"Value": "50"
}
]
},
Expand Down Expand Up @@ -165,11 +165,11 @@
"Count": 1
},
{
"Id": "truck-01",
"Id": "delivery-truck-01",
"Count": 1
},
{
"Id": "truck-02",
"Id": "delivery-truck-02",
"Count": 1
}
]
Expand Down

0 comments on commit 823f6a4

Please sign in to comment.