ttben / pfe-ecoknowledge

Repository of our PFE project : Ecoknowledge
http://pfe.benni.space
0 stars 0 forks source link

Changer format génération expression #128

Closed ttben closed 8 years ago

ttben commented 8 years ago

Il y a deux changements à effectuer.

Operand dans les Expression des StandardCondition : supression d'un champ

Le premier consiste à ne plus générer le champ "type" dans leftOperand et rightOperand :

Précédemment le format était le suivant :

"leftOperand": { "type":"symbolicName", "symbolicName": "TMP_AMB" }

"rightOperand": { "type":"value", "value": 44 }

Le nouveau format est le suivant :

"leftOperand": { "symbolicName": "TMP_AMB" }

"rightOperand": { "value": 44 }

Comparator dans les Expression des StandardCondition : ajout d'un champ

Le second changement est de générer un champ type dans comparator

Précédemment le format était :

"comparator":"<"

Le nouveau format est le suivant :100:

"comparator": { "type":"<" }