diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-15 13:38:56 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-15 13:38:56 +0200 | 
| commit | 1068e9803ff280c2d3d52d678ad7b3fdbb4e2aa7 (patch) | |
| tree | 91c141f92356d4552ad6a5310588e8a22786230f | |
| parent | 8c607db8c58020cc00e91a5752d5c27d06509a12 (diff) | |
| download | Ishtar-1068e9803ff280c2d3d52d678ad7b3fdbb4e2aa7.tar.bz2 Ishtar-1068e9803ff280c2d3d52d678ad7b3fdbb4e2aa7.zip | |
Fixtures fr: update reportstate data
| -rw-r--r-- | Makefile.example | 1 | ||||
| -rw-r--r-- | archaeological_operations/fixtures/initial_data-fr.json | 77 | 
2 files changed, 78 insertions, 0 deletions
| diff --git a/Makefile.example b/Makefile.example index 3d866508b..72651a38c 100644 --- a/Makefile.example +++ b/Makefile.example @@ -154,6 +154,7 @@ fixtures_operations:  							archaeological_operations.period \  							archaeological_operations.remaintype \  							archaeological_operations.relationtype \ +							archaeological_operations.reportstate \  	   > '../archaeological_operations/fixtures/initial_data-'$(default_data)'.json'  fixtures_context_records: diff --git a/archaeological_operations/fixtures/initial_data-fr.json b/archaeological_operations/fixtures/initial_data-fr.json index f20564316..dc70160db 100644 --- a/archaeological_operations/fixtures/initial_data-fr.json +++ b/archaeological_operations/fixtures/initial_data-fr.json @@ -1406,5 +1406,82 @@              "order": 1,               "txt_idx": "has_got"          } +    },  +    { +        "pk": 1,  +        "model": "archaeological_operations.reportstate",  +        "fields": { +            "comment": "Le rapport est attendu mais non re\u00e7u",  +            "available": true,  +            "txt_idx": "not_received",  +            "order": 1,  +            "label": "Non re\u00e7u" +        } +    },  +    { +        "pk": 2,  +        "model": "archaeological_operations.reportstate",  +        "fields": { +            "comment": "Rapport re\u00e7u et non encore d\u00e9pouill\u00e9",  +            "available": true,  +            "txt_idx": "received_not_processed",  +            "order": 2,  +            "label": "Re\u00e7u et non d\u00e9pouill\u00e9" +        } +    },  +    { +        "pk": 3,  +        "model": "archaeological_operations.reportstate",  +        "fields": { +            "comment": "Plusieurs rapports re\u00e7us et non d\u00e9pouill\u00e9s",  +            "available": true,  +            "txt_idx": "received_not_processed_S",  +            "order": 3,  +            "label": "Re\u00e7us et non d\u00e9pouill\u00e9s" +        } +    },  +    { +        "pk": 4,  +        "model": "archaeological_operations.reportstate",  +        "fields": { +            "comment": "Il n'existe pas de rapport pour cette op\u00e9ration",  +            "available": true,  +            "txt_idx": "no_report",  +            "order": 4,  +            "label": "Rapport inexistant" +        } +    },  +    { +        "pk": 6,  +        "model": "archaeological_operations.reportstate",  +        "fields": { +            "comment": "Rapport unique re\u00e7u et d\u00e9pouill\u00e9",  +            "available": true,  +            "txt_idx": "received_and_processed",  +            "order": 4,  +            "label": "Re\u00e7u et d\u00e9pouill\u00e9" +        } +    },  +    { +        "pk": 5,  +        "model": "archaeological_operations.reportstate",  +        "fields": { +            "comment": "Tous les rapports ont \u00e9t\u00e9 re\u00e7us et d\u00e9pouill\u00e9s",  +            "available": true,  +            "txt_idx": "received_and_processed_S",  +            "order": 5,  +            "label": "Re\u00e7us et d\u00e9pouill\u00e9s" +        } +    },  +    { +        "pk": 7,  +        "model": "archaeological_operations.reportstate",  +        "fields": { +            "comment": "Les rapports ont \u00e9t\u00e9 re\u00e7us et d\u00e9pouill\u00e9s partiellement",  +            "available": true,  +            "txt_idx": "received_and_partially_processed",  +            "order": 7,  +            "label": "Re\u00e7us, un rapport d\u00e9pouill\u00e9, un autre non d\u00e9pouill\u00e9" +        }      }  ]
\ No newline at end of file | 
