Browse Source

Update fixtures for offers

Baptiste Jonglez 10 years ago
parent
commit
5ed3931991
1 changed files with 53 additions and 4 deletions
  1. 53 4
      coin/offers/fixtures/offers.json

+ 53 - 4
coin/offers/fixtures/offers.json

@@ -3,11 +3,60 @@
         "pk": 1,
         "model": "offers.offer",
         "fields": {
-            "initial_fees": "50.00",
             "billing_period": 1,
-            "period_fees": "30.00",
-            "name": "ADSL Lasotel",
-            "type": 'dsl'
+            "name": "VPN standard",
+            "initial_fees": "0.00",
+            "period_fees": "8.00",
+            "type": "VPN",
+            "backend": "openvpn_ldap"
+        }
+    },
+    {
+        "pk": 2,
+        "model": "offers.offer",
+        "fields": {
+            "billing_period": 1,
+            "name": "VPN préférentiel",
+            "initial_fees": "0.00",
+            "period_fees": "5.00",
+            "type": "VPN",
+            "backend": "openvpn_ldap"
+        }
+    },
+    {
+        "pk": 3,
+        "model": "offers.offer",
+        "fields": {
+            "billing_period": 1,
+            "name": "VPN gratuit",
+            "initial_fees": "0.00",
+            "period_fees": "0.00",
+            "type": "VPN",
+            "backend": "openvpn_ldap"
+        }
+    },
+    {
+        "pk": 4,
+        "model": "offers.offer",
+        "fields": {
+            "billing_period": 1,
+            "name": "Marque blanche FDN",
+            "initial_fees": "70.00",
+            "period_fees": "32.00",
+            "type": "ADSL",
+            "backend": "none"
+        }
+    },
+    {
+        "pk": 5,
+        "model": "offers.offer",
+        "fields": {
+            "billing_period": 1,
+            "name": "Marque blanche FDN (préférentiel)",
+            "initial_fees": "70.00",
+            "period_fees": "28.00",
+            "type": "ADSL",
+            "backend": "none"
         }
     }
 ]