Add "cash_in" field to ATM preset

(closes #5118)
This commit is contained in:
James Kingdom
2018-07-09 17:37:13 -04:00
parent ed9c934322
commit 7acef06e53
7 changed files with 15 additions and 1 deletions

View File

@@ -298,6 +298,9 @@ en:
label: Capacity
# capacity field placeholder
placeholder: '50, 100, 200...'
cash_in:
# cash_in=*
label: Cash In
castle_type:
# castle_type=*
label: Type

View File

@@ -47,6 +47,7 @@
"camera/mount": {"key": "camera:mount", "type": "combo", "label": "Camera Mount"},
"camera/type": {"key": "camera:type", "type": "combo", "label": "Camera Type", "strings": {"options": {"fixed": "Fixed", "panning": "Panning", "dome": "Dome"}}},
"capacity": {"key": "capacity", "type": "number", "minValue": 0, "label": "Capacity", "placeholder": "50, 100, 200..."},
"cash_in": {"key": "cash_in", "type": "check", "label": "Cash In"},
"castle_type": {"key": "castle_type", "type": "combo", "label": "Type"},
"clothes": {"key": "clothes", "type": "semiCombo", "label": "Clothes"},
"club": {"key": "club", "type": "typeCombo", "label": "Type"},

View File

@@ -0,0 +1,5 @@
{
"key": "cash_in",
"type": "check",
"label": "Cash In"
}

View File

@@ -45,7 +45,7 @@
"amenity/animal_breeding": {"icon": "maki-veterinary", "fields": ["name", "operator", "address", "building_area", "opening_hours", "animal_breeding"], "geometry": ["point", "area"], "terms": ["breeding", "bull", "cat", "cow", "dog", "horse", "husbandry", "kitten", "livestock", "pet breeding", "puppy", "reptile"], "tags": {"amenity": "animal_breeding"}, "name": "Animal Breeding Facility"},
"amenity/animal_shelter": {"icon": "maki-veterinary", "fields": ["name", "operator", "address", "building_area", "opening_hours", "animal_shelter"], "geometry": ["point", "area"], "terms": ["adoption", "aspca", "cat", "dog", "horse", "kitten", "pet care", "pet rescue", "puppy", "raptor", "reptile", "rescue", "spca"], "tags": {"amenity": "animal_shelter"}, "name": "Animal Shelter"},
"amenity/arts_centre": {"icon": "maki-theatre", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "arts_centre"}, "name": "Arts Center"},
"amenity/atm": {"icon": "maki-bank", "fields": ["operator", "currency_multi", "drive_through"], "geometry": ["point", "vertex"], "terms": ["money", "cash", "machine"], "tags": {"amenity": "atm"}, "name": "ATM"},
"amenity/atm": {"icon": "maki-bank", "fields": ["operator", "cash_in", "currency_multi", "drive_through"], "geometry": ["point", "vertex"], "terms": ["money", "cash", "machine"], "tags": {"amenity": "atm"}, "name": "ATM"},
"amenity/bank": {"icon": "maki-bank", "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "geometry": ["point", "area"], "terms": ["credit union", "check", "deposit", "fund", "investment", "repository", "reserve", "safe", "savings", "stock", "treasury", "trust", "vault"], "tags": {"amenity": "bank"}, "name": "Bank"},
"amenity/bar": {"icon": "maki-bar", "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "geometry": ["point", "area"], "terms": ["dive", "beer", "bier", "booze"], "tags": {"amenity": "bar"}, "name": "Bar"},
"amenity/bbq": {"icon": "maki-bbq", "fields": ["covered", "fuel"], "geometry": ["point"], "terms": ["bbq", "grill"], "tags": {"amenity": "bbq"}, "name": "Barbecue/Grill"},

View File

@@ -2,6 +2,7 @@
"icon": "maki-bank",
"fields": [
"operator",
"cash_in",
"currency_multi",
"drive_through"
],

View File

@@ -6373,6 +6373,7 @@
{"key": "camera:type", "value": "panning", "description": "Camera Type"},
{"key": "camera:type", "value": "dome", "description": "Camera Type"},
{"key": "capacity", "description": "Capacity"},
{"key": "cash_in", "description": "Cash In"},
{"key": "castle_type", "description": "Type"},
{"key": "clothes", "description": "Clothes"},
{"key": "collection_times", "description": "Collection Times"},

View File

@@ -1629,6 +1629,9 @@
"label": "Capacity",
"placeholder": "50, 100, 200..."
},
"cash_in": {
"label": "Cash In"
},
"castle_type": {
"label": "Type"
},