From 6bd80f48e41333331cb243de2686a18c0a72d29b Mon Sep 17 00:00:00 2001 From: Gregory Trullemans Date: Fri, 31 Dec 2021 09:07:18 +0100 Subject: [PATCH] Update pip modules and app --- .gitignore | 7 +- billing/urls.py | 12 + billing/views.py | 8 +- compta/urls.py | 9 + compta/views.py | 4 +- comptabilite/facture_config.py | 2 +- comptabilite/settings.py | 5 + comptabilite/urls.py | 35 +- db.json | 11726 ---------------- db.sqlite3 | Bin 161792 -> 162816 bytes requirements/dev.txt | 16 +- .../client/listing.html} | 0 .../contract/detail.html} | 0 .../contract/listing.html} | 0 .../prestation/listing.html} | 0 .../transaction/detail.html} | 0 .../transaction/listing.html} | 0 17 files changed, 62 insertions(+), 11762 deletions(-) create mode 100644 billing/urls.py create mode 100644 compta/urls.py delete mode 100644 db.json rename templates/{client_listing.html => billing/client/listing.html} (100%) rename templates/{contract_detail.html => billing/contract/detail.html} (100%) rename templates/{contract_listing.html => billing/contract/listing.html} (100%) rename templates/{prestation_listing.html => billing/prestation/listing.html} (100%) rename templates/{transaction_detail.html => compta/transaction/detail.html} (100%) rename templates/{transaction_listing.html => compta/transaction/listing.html} (100%) diff --git a/.gitignore b/.gitignore index 09003e1..0278b0d 100644 --- a/.gitignore +++ b/.gitignore @@ -74,7 +74,7 @@ coverage.xml # Django stuff: *.log local_settings.py -#db.sqlite3 +db.sqlite3 db.sqlite3-journal # Flask stuff: @@ -180,4 +180,7 @@ coverage.xml *.pot # Sphinx documentation -docs/_build/ \ No newline at end of file +docs/_build/ + +# OS X +.DS_Store \ No newline at end of file diff --git a/billing/urls.py b/billing/urls.py new file mode 100644 index 0000000..293bab1 --- /dev/null +++ b/billing/urls.py @@ -0,0 +1,12 @@ +from django.urls import path, re_path + +from . import views + +billing_urlpatterns = [ + path(r"contract/pdf//", views.contract_export, name="contract_export"), + path(r"contract//", views.contract_detail, name="contract_detail"), + path(r"contract", views.contract_listing, name="contract_listing"), + path(r"prestation", views.prestation_listing, name="prestation_listing"), + path(r"client", views.client_listing, name="client_listing"), +] + diff --git a/billing/views.py b/billing/views.py index 975e5d6..450c2e0 100644 --- a/billing/views.py +++ b/billing/views.py @@ -29,7 +29,7 @@ def contract_listing(request): contract_list = Contract.objects.all() context = {'contract_list': contract_list} - return render(request, 'contract_listing.html', context) + return render(request, 'billing/contract/listing.html', context) def contract_detail(request, contractid): @@ -46,7 +46,7 @@ def contract_detail(request, contractid): 'prestation_list': prestation_list, 'prestation_count': prestation_count, 'total': total} - return render(request, 'contract_detail.html', context) + return render(request, 'billing/contract/detail.html', context) def client_listing(request): @@ -55,7 +55,7 @@ def client_listing(request): """ client_list = Client.objects.all() context = {'client_list': client_list} - return render(request, 'client_listing.html', context) + return render(request, 'billing/client/listing.html', context) def prestation_listing(request): @@ -64,7 +64,7 @@ def prestation_listing(request): """ prestation_list = Prestation.objects.all() context = {'prestation_list': prestation_list} - return render(request, 'prestation_listing.html', context) + return render(request, 'billing/prestation/listing.html', context) Y = 841.89 diff --git a/compta/urls.py b/compta/urls.py new file mode 100644 index 0000000..714c313 --- /dev/null +++ b/compta/urls.py @@ -0,0 +1,9 @@ +from django.urls import path, re_path + +from . import views + +compta_urlpatterns = [ + path(r"transaction//", views.transaction_detail, name="transaction_detail"), + path(r"/", views.transaction_listing, name="transaction_listing"), +] + diff --git a/compta/views.py b/compta/views.py index e8f72e7..d414423 100644 --- a/compta/views.py +++ b/compta/views.py @@ -34,7 +34,7 @@ def transaction_listing(request, year): 'Transactions': Transaction.objects.filter(date__year = year).order_by('date') } # 3) Faire le calcul ici en "static" ou en jquery dans ma vue, en "dynamique" (suivant les cases cochées ou pas, ...) - return render(request, 'transaction_listing.html', context) + return render(request, 'compta/transaction/listing.html', context) def transaction_detail(request, transactionid): @@ -44,7 +44,7 @@ def transaction_detail(request, transactionid): transaction = Transaction.objects.get(pk=transactionid) context = {'transaction': transaction} - return render(request, 'transaction_detail.html', context) + return render(request, 'compta/transaction/detail.html', context) def year_listing(request): diff --git a/comptabilite/facture_config.py b/comptabilite/facture_config.py index 4bab689..9c22a7d 100644 --- a/comptabilite/facture_config.py +++ b/comptabilite/facture_config.py @@ -10,7 +10,7 @@ def loadFactureConfig(request): informations = None with open(os.path.join(current_path, "facture_config.yaml"), 'r') as stream: try: - informations = yaml.load(stream) + informations = yaml.safe_load(stream) except yaml.YAMLError as exc: print(exc) diff --git a/comptabilite/settings.py b/comptabilite/settings.py index cf54730..963d337 100644 --- a/comptabilite/settings.py +++ b/comptabilite/settings.py @@ -106,3 +106,8 @@ STATICFILES_DIRS = ( os.path.join(BASE_DIR, 'static'), ) +# Default primary key field type +# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' + diff --git a/comptabilite/urls.py b/comptabilite/urls.py index 9159152..4631a19 100644 --- a/comptabilite/urls.py +++ b/comptabilite/urls.py @@ -13,29 +13,26 @@ Including another URLconf 1. Add an import: from blog import urls as blog_urls 2. Add a URL to urlpatterns: url(r'^blog/', include(blog_urls)) """ -from django.conf.urls import include, url from django.contrib import admin +from django.urls import include, path + from compta.views import ( - transaction_listing, - transaction_detail, year_listing, ) -from billing.views import ( - client_listing, - contract_listing, - contract_detail, - contract_export, - prestation_listing, -) + +import billing.urls +import compta.urls urlpatterns = [ - url(r'^admin/', admin.site.urls), - url(r'^billing/contract/pdf/(?P[0-9]+)', contract_export, name="contract_export"), - url(r'^billing/contract/(?P[0-9]+)', contract_detail, name="contract_detail"), - url(r'^billing/contract', contract_listing, name="contract_listing"), - url(r'^billing/prestation', prestation_listing, name="prestation_listing"), - url(r'^billing/client', client_listing, name="client_listing"), - url(r'^compta/transaction/(?P[0-9]+)', transaction_detail, name="transaction_detail"), - url(r'^compta/(?P[0-9]{4})', transaction_listing, name="transaction_listing"), - url(r'^$', year_listing, name="home") + # Profile list + path(r"billing/", include(billing.urls.billing_urlpatterns)), + + # Compta + path(r"compta/", include(compta.urls.compta_urlpatterns)), + + # Home + path(r"", year_listing, name="home"), + + # Administration + path('admin/', admin.site.urls), ] diff --git a/db.json b/db.json deleted file mode 100644 index 337bb08..0000000 --- a/db.json +++ /dev/null @@ -1,11726 +0,0 @@ -[ -{ - "model": "contenttypes.contenttype", - "pk": 1, - "fields": { - "app_label": "admin", - "model": "logentry" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 2, - "fields": { - "app_label": "auth", - "model": "permission" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 3, - "fields": { - "app_label": "auth", - "model": "group" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 4, - "fields": { - "app_label": "auth", - "model": "user" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 5, - "fields": { - "app_label": "contenttypes", - "model": "contenttype" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 6, - "fields": { - "app_label": "sessions", - "model": "session" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 7, - "fields": { - "app_label": "compta", - "model": "descriptiontype" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 8, - "fields": { - "app_label": "compta", - "model": "tvatype" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 10, - "fields": { - "app_label": "compta", - "model": "transaction" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 11, - "fields": { - "app_label": "billing", - "model": "client" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 12, - "fields": { - "app_label": "billing", - "model": "contract" - } -}, -{ - "model": "contenttypes.contenttype", - "pk": 13, - "fields": { - "app_label": "billing", - "model": "prestation" - } -}, -{ - "model": "sessions.session", - "pk": "0gohe7corq4j089vvsqua6myolfh42az", - "fields": { - "session_data": "MjMwMDg4N2JiYjA2OTAwNDVlYWE0OGYwMTY0YTc2ZTUzYzQ5M2VhNjp7Il9hdXRoX3VzZXJfaGFzaCI6ImZhOGNmNTM1ZjM0ZWQ0YzIyYTk1MTkyNDI2OWM1MjNmZDhiOGNkMTgiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", - "expire_date": "2017-12-26T14:49:40.376Z" - } -}, -{ - "model": "sessions.session", - "pk": "0qidm0zhqxissjlvp6g6vlqicd1lfmpj", - "fields": { - "session_data": "Y2YzMjE2N2NjNjcxYTFhNGM4N2Y0MzU0NzFjYzYzMjJmODM4ZGY5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJfYXV0aF91c2VyX2hhc2giOiI1NDdjNGRkZWY1YzkyOGIxYTIxZDQ2NjllMjE3YWM0ZDg4ZmFiMzQyIn0=", - "expire_date": "2016-08-15T17:44:54.531Z" - } -}, -{ - "model": "sessions.session", - "pk": "1p5mjxrlgcd0nbtoz2f6pgn692j9awtu", - "fields": { - "session_data": "ZGRlNjE4M2E2MTc2NmM5ZjgzYmQ1MjI1ODNkODI2YTA2YzViMmJlMzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzIyYjBiZTNmYWRjZDVlOTJmYWM2NjE1ZjViNWEwZmY3NzExYmYyYyIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", - "expire_date": "2015-09-05T10:05:51.234Z" - } -}, -{ - "model": "sessions.session", - "pk": "3cqnxzrewni8v44jhw5zpd83s5w2xjpq", - "fields": { - "session_data": "MTE2ZmJhZTQ1NzlmZmI2ZTRkNjI2NmIzZjliYTQ1NDIwZWZiOWE5Zjp7Il9hdXRoX3VzZXJfaGFzaCI6IjdlYjdlMWQ3ZjJmN2M5ODdhZTIwZjA1OGIxNWQyNjgyYjIxMzJhM2QiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", - "expire_date": "2017-01-08T16:16:00.838Z" - } -}, -{ - "model": "sessions.session", - "pk": "3fahrztwie9sv9ohhtcvgqxfqcb9k1wy", - "fields": { - "session_data": "ZGVlYTYyYTg4MDE1ZjM4ZDNlODQwYmQwMjYzYjgxNjkzYTkzODc5OTp7Il9hdXRoX3VzZXJfaGFzaCI6IjcyMmIwYmUzZmFkY2Q1ZTkyZmFjNjYxNWY1YjVhMGZmNzcxMWJmMmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", - "expire_date": "2015-08-19T19:58:20.560Z" - } -}, -{ - "model": "sessions.session", - "pk": "4mhdl83cdl1e36k1f3m5ojz9k91ber3s", - "fields": { - "session_data": "ZTdiOTMzNDFlMzkxMmU3Y2Q0MWMxNjkxN2JlYTgyZTcxOTZlNGRlZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI3MjJiMGJlM2ZhZGNkNWU5MmZhYzY2MTVmNWI1YTBmZjc3MTFiZjJjIn0=", - "expire_date": "2016-01-28T17:44:34.829Z" - } -}, -{ - "model": "sessions.session", - "pk": "5p16gbrtlyaayrs6m75rysya3i5uymz0", - "fields": { - "session_data": "MTE2ZmJhZTQ1NzlmZmI2ZTRkNjI2NmIzZjliYTQ1NDIwZWZiOWE5Zjp7Il9hdXRoX3VzZXJfaGFzaCI6IjdlYjdlMWQ3ZjJmN2M5ODdhZTIwZjA1OGIxNWQyNjgyYjIxMzJhM2QiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", - "expire_date": "2016-11-15T16:34:26.063Z" - } -}, -{ - "model": "sessions.session", - "pk": "7x0jf91visv4wrc8ungu97keqv4h2k0e", - "fields": { - "session_data": "MzI1ODM1MmY4ZWJmNTgxNzU2ZjkxNDNhZTdiOTUzZTU5YjgzMzU4OTp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiNTQ3YzRkZGVmNWM5MjhiMWEyMWQ0NjY5ZTIxN2FjNGQ4OGZhYjM0MiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", - "expire_date": "2016-07-02T10:19:46.473Z" - } -}, -{ - "model": "sessions.session", - "pk": "849mmgod99fuuixd870seudnyzan00ok", - "fields": { - "session_data": "ZGYxOGE1ZGI4MWFlOWM3MGNiMWFlM2MzNTA5M2U1NmJiODdjZTk0ODp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzIyYjBiZTNmYWRjZDVlOTJmYWM2NjE1ZjViNWEwZmY3NzExYmYyYyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", - "expire_date": "2015-08-29T13:01:05.887Z" - } -}, -{ - "model": "sessions.session", - "pk": "8ddhehc742ccdktr320pyof6pf12o0a4", - "fields": { - "session_data": "MTE2ZmJhZTQ1NzlmZmI2ZTRkNjI2NmIzZjliYTQ1NDIwZWZiOWE5Zjp7Il9hdXRoX3VzZXJfaGFzaCI6IjdlYjdlMWQ3ZjJmN2M5ODdhZTIwZjA1OGIxNWQyNjgyYjIxMzJhM2QiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", - "expire_date": "2017-02-10T11:02:33.710Z" - } -}, -{ - "model": "sessions.session", - "pk": "9ku6m2rxgj4ohyurf1rhjwvfl36p3tak", - "fields": { - "session_data": "ZmY0MGI2ZDUxYzhlNWUwMWQ4MzMzYTI0MzM4YjFiMjE5NDhmMTE1Nzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiJlOTg0ZDRhYjY1YjYyNTQ3MWNhMmRjMDgxZGU5NzZkYTFjNjUxMTBmIn0=", - "expire_date": "2021-08-11T14:47:35.588Z" - } -}, -{ - "model": "sessions.session", - "pk": "agq6rr1wnh14ilojxy96cjsr24jmbg9x", - "fields": { - "session_data": "ZjUyM2M3NTE3ZGM4NTFiYjVmNzAwNmEyODQ2MzJjZmJlMjM1NGNhMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI3MjJiMGJlM2ZhZGNkNWU5MmZhYzY2MTVmNWI1YTBmZjc3MTFiZjJjIn0=", - "expire_date": "2016-01-18T10:38:38.959Z" - } -}, -{ - "model": "sessions.session", - "pk": "as5isdywq59jamr2h9lnivqlyse9hhhn", - "fields": { - "session_data": "ZGVlYTYyYTg4MDE1ZjM4ZDNlODQwYmQwMjYzYjgxNjkzYTkzODc5OTp7Il9hdXRoX3VzZXJfaGFzaCI6IjcyMmIwYmUzZmFkY2Q1ZTkyZmFjNjYxNWY1YjVhMGZmNzcxMWJmMmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", - "expire_date": "2015-09-13T15:50:12.922Z" - } -}, -{ - "model": "sessions.session", - "pk": "axth0xsvmbgw0sjrq0cof2izf3ntip9o", - "fields": { - "session_data": "ZGYxOGE1ZGI4MWFlOWM3MGNiMWFlM2MzNTA5M2U1NmJiODdjZTk0ODp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzIyYjBiZTNmYWRjZDVlOTJmYWM2NjE1ZjViNWEwZmY3NzExYmYyYyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", - "expire_date": "2016-01-17T16:05:34.961Z" - } -}, -{ - "model": "sessions.session", - "pk": "f3wpy4loii7kgq5omepo6zafa425p73a", - "fields": { - "session_data": "ZjUyM2M3NTE3ZGM4NTFiYjVmNzAwNmEyODQ2MzJjZmJlMjM1NGNhMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI3MjJiMGJlM2ZhZGNkNWU5MmZhYzY2MTVmNWI1YTBmZjc3MTFiZjJjIn0=", - "expire_date": "2015-10-06T16:56:47.362Z" - } -}, -{ - "model": "sessions.session", - "pk": "f6a5e2eqi418c9ajuxmta2us877bl511", - "fields": { - "session_data": "ZGVlYTYyYTg4MDE1ZjM4ZDNlODQwYmQwMjYzYjgxNjkzYTkzODc5OTp7Il9hdXRoX3VzZXJfaGFzaCI6IjcyMmIwYmUzZmFkY2Q1ZTkyZmFjNjYxNWY1YjVhMGZmNzcxMWJmMmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", - "expire_date": "2015-08-18T19:38:40.838Z" - } -}, -{ - "model": "sessions.session", - "pk": "f7si9jt89vqh0kqjhdzg0svb4qcfyyat", - "fields": { - "session_data": "MDM5NjZmNWEyZDdjOWZkN2MyZjZhMGFkNDI1NjRmNDhiODA5YzM1NTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmE4Y2Y1MzVmMzRlZDRjMjJhOTUxOTI0MjY5YzUyM2ZkOGI4Y2QxOCIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", - "expire_date": "2016-11-23T16:46:02.007Z" - } -}, -{ - "model": "sessions.session", - "pk": "gr1h3p4yumkdk9qkugyksrew98fck47g", - "fields": { - "session_data": "ZGVlYTYyYTg4MDE1ZjM4ZDNlODQwYmQwMjYzYjgxNjkzYTkzODc5OTp7Il9hdXRoX3VzZXJfaGFzaCI6IjcyMmIwYmUzZmFkY2Q1ZTkyZmFjNjYxNWY1YjVhMGZmNzcxMWJmMmMiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", - "expire_date": "2015-07-28T18:05:56.288Z" - } -}, -{ - "model": "sessions.session", - "pk": "hh8z7ctighemxfqk58mauf4yo6np8wdx", - "fields": { - "session_data": "ZjUyM2M3NTE3ZGM4NTFiYjVmNzAwNmEyODQ2MzJjZmJlMjM1NGNhMzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI3MjJiMGJlM2ZhZGNkNWU5MmZhYzY2MTVmNWI1YTBmZjc3MTFiZjJjIn0=", - "expire_date": "2015-07-23T18:27:05.328Z" - } -}, -{ - "model": "sessions.session", - "pk": "kjn9tan20r95yihvdo70redk6ql6iem9", - "fields": { - "session_data": "ZGRlNjE4M2E2MTc2NmM5ZjgzYmQ1MjI1ODNkODI2YTA2YzViMmJlMzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzIyYjBiZTNmYWRjZDVlOTJmYWM2NjE1ZjViNWEwZmY3NzExYmYyYyIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", - "expire_date": "2016-06-01T12:41:05.261Z" - } -}, -{ - "model": "sessions.session", - "pk": "klt17698x2t8e0it0i1rtkh6rqfz1dwc", - "fields": { - "session_data": "MDI0N2U0MmVlOTA0NTEwNzRjMjE4M2MyZGExMzY0ZGEzYzA2M2E0Njp7Il9hdXRoX3VzZXJfaGFzaCI6IjcyMmIwYmUzZmFkY2Q1ZTkyZmFjNjYxNWY1YjVhMGZmNzcxMWJmMmMiLCJfYXV0aF91c2VyX2lkIjoiMSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", - "expire_date": "2015-09-19T14:20:24.896Z" - } -}, -{ - "model": "sessions.session", - "pk": "l38wrxat2xjntk3c5lbrhotbfv3hu0ug", - "fields": { - "session_data": "OWJjNTdiYTFlOTAzODU3Yjc0Njk5YjdjYmVjODkzYzlkOGY3MGZkZTp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI1NDdjNGRkZWY1YzkyOGIxYTIxZDQ2NjllMjE3YWM0ZDg4ZmFiMzQyIn0=", - "expire_date": "2016-02-02T16:19:26.241Z" - } -}, -{ - "model": "sessions.session", - "pk": "l8v0rty0vdityofqfeo1sy2t548do2ll", - "fields": { - "session_data": "YzgwMGQ3ZGI0MjkzYmNkNjBhZTJmMjQ0MDEyYjViNWJkZjBkNTA0Njp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJfYXV0aF91c2VyX2hhc2giOiI3ZWI3ZTFkN2YyZjdjOTg3YWUyMGYwNThiMTVkMjY4MmIyMTMyYTNkIn0=", - "expire_date": "2016-12-03T11:26:51.010Z" - } -}, -{ - "model": "sessions.session", - "pk": "lwzhvqr7vvof9txzs7ade4hiijnmvczn", - "fields": { - "session_data": "ZTdiOTMzNDFlMzkxMmU3Y2Q0MWMxNjkxN2JlYTgyZTcxOTZlNGRlZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI3MjJiMGJlM2ZhZGNkNWU5MmZhYzY2MTVmNWI1YTBmZjc3MTFiZjJjIn0=", - "expire_date": "2015-08-09T17:15:50.316Z" - } -}, -{ - "model": "sessions.session", - "pk": "mng93th4l2trmmue204l93w0y1rgm8c0", - "fields": { - "session_data": "ZTdiOTMzNDFlMzkxMmU3Y2Q0MWMxNjkxN2JlYTgyZTcxOTZlNGRlZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjEiLCJfYXV0aF91c2VyX2hhc2giOiI3MjJiMGJlM2ZhZGNkNWU5MmZhYzY2MTVmNWI1YTBmZjc3MTFiZjJjIn0=", - "expire_date": "2015-10-13T19:46:40.093Z" - } -}, -{ - "model": "sessions.session", - "pk": "ol0i8wjsznyyuk041z4rjzszd38aetst", - "fields": { - "session_data": "ZmY0MGI2ZDUxYzhlNWUwMWQ4MzMzYTI0MzM4YjFiMjE5NDhmMTE1Nzp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiJlOTg0ZDRhYjY1YjYyNTQ3MWNhMmRjMDgxZGU5NzZkYTFjNjUxMTBmIn0=", - "expire_date": "2020-02-26T09:15:28.491Z" - } -}, -{ - "model": "sessions.session", - "pk": "pwzwd36csserqj6k59utumic912aiypa", - "fields": { - "session_data": "NTM2OTBjMDIxMjI2ZmU2YzRkMmQ2NzRiMmQyM2FkMGQxMzc5MmZmZDp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiY2RhMTk3OWFmMDNmNWUyMWI3YjI1MGYyMGZmYWY4OGI5NTcyOTY2YiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", - "expire_date": "2018-11-11T20:36:29.972Z" - } -}, -{ - "model": "sessions.session", - "pk": "u24cehczddmtkho4gmr1xi1tihth723y", - "fields": { - "session_data": "YjBkNDM3ODQ5YjliNTE4OTAwYTI0ZjBlNTVkNjU0M2JmOGI0ZmQwNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiN2ViN2UxZDdmMmY3Yzk4N2FlMjBmMDU4YjE1ZDI2ODJiMjEzMmEzZCIsIl9hdXRoX3VzZXJfaWQiOiIyIn0=", - "expire_date": "2017-01-17T10:43:10.646Z" - } -}, -{ - "model": "sessions.session", - "pk": "v3zwl8c9tcld8gywuzkoc0zry28efjy1", - "fields": { - "session_data": "ZGYxOGE1ZGI4MWFlOWM3MGNiMWFlM2MzNTA5M2U1NmJiODdjZTk0ODp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiNzIyYjBiZTNmYWRjZDVlOTJmYWM2NjE1ZjViNWEwZmY3NzExYmYyYyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", - "expire_date": "2015-08-29T16:42:27.956Z" - } -}, -{ - "model": "sessions.session", - "pk": "vlyhx1x1uivu3y5r0z3fjtksinrftc62", - "fields": { - "session_data": "MDM5NjZmNWEyZDdjOWZkN2MyZjZhMGFkNDI1NjRmNDhiODA5YzM1NTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmE4Y2Y1MzVmMzRlZDRjMjJhOTUxOTI0MjY5YzUyM2ZkOGI4Y2QxOCIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=", - "expire_date": "2017-12-24T16:47:28.598Z" - } -}, -{ - "model": "sessions.session", - "pk": "vtip84x6jybehi7hoi67xypikepcocvt", - "fields": { - "session_data": "ZGQzMjZlMGE0OTdhOThjNzA2Y2Q2MjU2M2RhMGYwMjBmZWE2MmRjZTp7Il9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiJkNGMyYzk5MjIzOGYxZTM5ZDE1MjA3ZDIwNmI3NzJlMTljMjhkOTNjIn0=", - "expire_date": "2022-01-13T15:20:21.706Z" - } -}, -{ - "model": "sessions.session", - "pk": "xzyiqhkucjk849pprdvcjr1li3jztv7k", - "fields": { - "session_data": "Y2YzMjE2N2NjNjcxYTFhNGM4N2Y0MzU0NzFjYzYzMjJmODM4ZGY5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJfYXV0aF91c2VyX2hhc2giOiI1NDdjNGRkZWY1YzkyOGIxYTIxZDQ2NjllMjE3YWM0ZDg4ZmFiMzQyIn0=", - "expire_date": "2015-11-17T13:38:29.510Z" - } -}, -{ - "model": "compta.tvatype", - "pk": 3, - "fields": { - "label": "Cotisations Sociale UCM (0%)", - "percent": "0.000", - "datebegin": "2015-01-01", - "dateend": null - } -}, -{ - "model": "compta.tvatype", - "pk": 5, - "fields": { - "label": "Livre (France)", - "percent": "0.055", - "datebegin": "2015-01-01", - "dateend": null - } -}, -{ - "model": "compta.tvatype", - "pk": 6, - "fields": { - "label": "Diesel (France)", - "percent": "0.200", - "datebegin": "2015-01-01", - "dateend": null - } -}, -{ - "model": "compta.tvatype", - "pk": 10, - "fields": { - "label": "Revenu (0%)", - "percent": "0.000", - "datebegin": "2015-01-01", - "dateend": null - } -}, -{ - "model": "compta.tvatype", - "pk": 11, - "fields": { - "label": "Normale (21%)", - "percent": "0.210", - "datebegin": "2016-01-01", - "dateend": null - } -}, -{ - "model": "compta.tvatype", - "pk": 12, - "fields": { - "label": "R\u00e9duite (6%)", - "percent": "0.060", - "datebegin": "2015-01-01", - "dateend": null - } -}, -{ - "model": "compta.tvatype", - "pk": 13, - "fields": { - "label": "R\u00e9duite (12%)", - "percent": "0.120", - "datebegin": "2015-01-01", - "dateend": null - } -}, -{ - "model": "compta.descriptiontype", - "pk": 1, - "fields": { - "name": "Voiture", - "year": 2015, - "quotity": "0.35", - "tva_type": 11 - } -}, -{ - "model": "compta.descriptiontype", - "pk": 2, - "fields": { - "name": "Revenus", - "year": 2015, - "quotity": "0.00", - "tva_type": 10 - } -}, -{ - "model": "compta.descriptiontype", - "pk": 3, - "fields": { - "name": "Cotisations Sociale UCM", - "year": 2015, - "quotity": "0.00", - "tva_type": 3 - } -}, -{ - "model": "compta.descriptiontype", - "pk": 4, - "fields": { - "name": "Restaurant", - "year": 2015, - "quotity": "0.69", - "tva_type": 12 - } -}, -{ - "model": "compta.descriptiontype", - "pk": 5, - "fields": { - "name": "Sport", - "year": 2015, - "quotity": "1.00", - "tva_type": 11 - } -}, -{ - "model": "compta.descriptiontype", - "pk": 6, - "fields": { - "name": "Cadeau", - "year": 2015, - "quotity": "0.50", - "tva_type": 11 - } -}, -{ - "model": "compta.descriptiontype", - "pk": 7, - "fields": { - "name": "Voiture", - "year": 2016, - "quotity": "0.35", - "tva_type": 11 - } -}, -{ - "model": "compta.descriptiontype", - "pk": 8, - "fields": { - "name": "Cotisations Sociale UCM", - "year": 2016, - "quotity": "1.00", - "tva_type": 3 - } -}, -{ - "model": "compta.descriptiontype", - "pk": 9, - "fields": { - "name": "Revenu", - "year": 2016, - "quotity": "0.00", - "tva_type": 10 - } -}, -{ - "model": "compta.descriptiontype", - "pk": 10, - "fields": { - "name": "Sport", - "year": 2016, - "quotity": "1.00", - "tva_type": 11 - } -}, -{ - "model": "compta.transaction", - "pk": 1, - "fields": { - "date": "2016-01-03", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-47.00", - "amountHTva": "-38.84", - "amountDeductible": "-13.60", - "paid": true, - "ticket": true, - "notes": null, - "quotity": null - } -}, -{ - "model": "compta.transaction", - "pk": 2, - "fields": { - "date": "2016-08-27", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-44.84", - "amountHTva": "-37.06", - "amountDeductible": "-12.97", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 3, - "fields": { - "date": "2016-10-13", - "description": 7, - "information": "Carburant Texaco (Anderlecht)", - "amountTva": "-15.43", - "amountHTva": "-12.75", - "amountDeductible": "-4.46", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 4, - "fields": { - "date": "2016-10-23", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-51.05", - "amountHTva": "-42.19", - "amountDeductible": "-14.77", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 5, - "fields": { - "date": "2016-10-15", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-46.20", - "amountHTva": "-38.18", - "amountDeductible": "-13.36", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 6, - "fields": { - "date": "2016-02-10", - "description": 9, - "information": "Recette GBG (Janvier)", - "amountTva": "114.00", - "amountHTva": "114.00", - "amountDeductible": "0.00", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "0.00" - } -}, -{ - "model": "compta.transaction", - "pk": 7, - "fields": { - "date": "2016-03-09", - "description": 9, - "information": "Recette GBG (F\u00e9vrier)", - "amountTva": "281.20", - "amountHTva": "281.20", - "amountDeductible": "0.00", - "paid": true, - "ticket": false, - "notes": null, - "quotity": null - } -}, -{ - "model": "compta.transaction", - "pk": 8, - "fields": { - "date": "2016-04-11", - "description": 9, - "information": "Recette GBG (Mars)", - "amountTva": "65.00", - "amountHTva": "65.00", - "amountDeductible": "0.00", - "paid": true, - "ticket": false, - "notes": null, - "quotity": null - } -}, -{ - "model": "compta.transaction", - "pk": 9, - "fields": { - "date": "2016-05-10", - "description": 9, - "information": "Recette GBG (Avril)", - "amountTva": "120.00", - "amountHTva": "120.00", - "amountDeductible": "0.00", - "paid": true, - "ticket": false, - "notes": null, - "quotity": null - } -}, -{ - "model": "compta.transaction", - "pk": 10, - "fields": { - "date": "2016-06-07", - "description": 9, - "information": "Recette GBG (Mai)", - "amountTva": "67.00", - "amountHTva": "67.00", - "amountDeductible": "0.00", - "paid": true, - "ticket": false, - "notes": null, - "quotity": null - } -}, -{ - "model": "compta.transaction", - "pk": 11, - "fields": { - "date": "2016-01-04", - "description": 8, - "information": "Cotisation UCM", - "amountTva": "-78.13", - "amountHTva": "-78.13", - "amountDeductible": "-78.13", - "paid": true, - "ticket": false, - "notes": null, - "quotity": null - } -}, -{ - "model": "compta.transaction", - "pk": 12, - "fields": { - "date": "2016-02-09", - "description": 8, - "information": "Cotisation UCM", - "amountTva": "-78.13", - "amountHTva": "-78.13", - "amountDeductible": "-78.13", - "paid": true, - "ticket": false, - "notes": null, - "quotity": null - } -}, -{ - "model": "compta.transaction", - "pk": 15, - "fields": { - "date": "2016-05-26", - "description": 7, - "information": "Entretient voiture 30.000Km", - "amountTva": "-230.71", - "amountHTva": "-190.67", - "amountDeductible": "-66.73", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 16, - "fields": { - "date": "2016-06-02", - "description": 7, - "information": "Carburant DATS (Braine)", - "amountTva": "-45.19", - "amountHTva": "-37.35", - "amountDeductible": "-13.07", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 17, - "fields": { - "date": "2016-06-11", - "description": 7, - "information": "Carburant Q8 (Grand Bigard)", - "amountTva": "-12.07", - "amountHTva": "-9.98", - "amountDeductible": "-3.49", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 18, - "fields": { - "date": "2016-06-12", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-46.00", - "amountHTva": "-38.02", - "amountDeductible": "-13.31", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 19, - "fields": { - "date": "2016-06-17", - "description": 8, - "information": "Cotisation UCM", - "amountTva": "-78.63", - "amountHTva": "-78.63", - "amountDeductible": "-78.63", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "1.00" - } -}, -{ - "model": "compta.transaction", - "pk": 20, - "fields": { - "date": "2016-09-25", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-49.00", - "amountHTva": "-40.50", - "amountDeductible": "-14.17", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 21, - "fields": { - "date": "2016-11-16", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-47.00", - "amountHTva": "-38.84", - "amountDeductible": "-13.60", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 23, - "fields": { - "date": "2016-01-15", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-51.08", - "amountHTva": "-42.21", - "amountDeductible": "-14.78", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 24, - "fields": { - "date": "2016-09-14", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-50.00", - "amountHTva": "-41.32", - "amountDeductible": "-14.46", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 25, - "fields": { - "date": "2016-06-30", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-41.00", - "amountHTva": "-33.88", - "amountDeductible": "-11.86", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 26, - "fields": { - "date": "2016-11-03", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-48.18", - "amountHTva": "-39.82", - "amountDeductible": "-13.94", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 27, - "fields": { - "date": "2016-10-29", - "description": 7, - "information": "Carburant DATS (Rebec)", - "amountTva": "-76.78", - "amountHTva": "-63.45", - "amountDeductible": "-63.45", - "paid": false, - "ticket": true, - "notes": "Payement du carburant pour plusieurs aller/retour jusqu'\u00e0 Europagym (r\u00e9cup\u00e9ration de tapis provenant du d\u00e9montage de la fosse). (*** Faire un versement de 41,24\u20ac sur le compte***)", - "quotity": "1.00" - } -}, -{ - "model": "compta.transaction", - "pk": 28, - "fields": { - "date": "2016-02-13", - "description": 7, - "information": "Carburant Q8 (Erasme)", - "amountTva": "-11.14", - "amountHTva": "-9.21", - "amountDeductible": "-3.22", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 29, - "fields": { - "date": "2016-06-22", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-44.00", - "amountHTva": "-36.36", - "amountDeductible": "-12.73", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 30, - "fields": { - "date": "2016-01-25", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-38.10", - "amountHTva": "-31.49", - "amountDeductible": "-11.02", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 31, - "fields": { - "date": "2016-08-17", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-48.00", - "amountHTva": "-39.67", - "amountDeductible": "-13.88", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 32, - "fields": { - "date": "2016-09-25", - "description": 7, - "information": "Carburant Q8 (Erasme)", - "amountTva": "-12.23", - "amountHTva": "-10.11", - "amountDeductible": "-3.54", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 33, - "fields": { - "date": "2016-09-12", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-50.00", - "amountHTva": "-41.32", - "amountDeductible": "-14.46", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 34, - "fields": { - "date": "2016-02-14", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-38.60", - "amountHTva": "-31.90", - "amountDeductible": "-11.17", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 35, - "fields": { - "date": "2016-02-20", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-40.00", - "amountHTva": "-33.06", - "amountDeductible": "-11.57", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 36, - "fields": { - "date": "2016-09-29", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-45.00", - "amountHTva": "-37.19", - "amountDeductible": "-13.02", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 37, - "fields": { - "date": "2016-03-09", - "description": 7, - "information": "Carburant Texaco (Anderlecht)", - "amountTva": "-11.46", - "amountHTva": "-9.47", - "amountDeductible": "-3.31", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 38, - "fields": { - "date": "2016-03-11", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "45.85", - "amountHTva": "37.89", - "amountDeductible": "13.26", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 39, - "fields": { - "date": "2016-03-19", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-43.00", - "amountHTva": "-35.54", - "amountDeductible": "-12.44", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 40, - "fields": { - "date": "2016-03-27", - "description": 7, - "information": "Carburant Roodstop (Soignies)", - "amountTva": "-20.31", - "amountHTva": "-16.79", - "amountDeductible": "-5.87", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 41, - "fields": { - "date": "2016-04-01", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-32.29", - "amountHTva": "-26.69", - "amountDeductible": "-9.34", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 42, - "fields": { - "date": "2016-04-11", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-42.79", - "amountHTva": "-35.36", - "amountDeductible": "-12.38", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 43, - "fields": { - "date": "2016-04-20", - "description": 7, - "information": "Carburant DATS (Braine)", - "amountTva": "-44.44", - "amountHTva": "-36.73", - "amountDeductible": "-12.85", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 44, - "fields": { - "date": "2016-04-29", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-45.45", - "amountHTva": "-37.56", - "amountDeductible": "-13.15", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 45, - "fields": { - "date": "2016-05-06", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-35.04", - "amountHTva": "-28.96", - "amountDeductible": "-10.14", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 46, - "fields": { - "date": "2016-05-20", - "description": 7, - "information": "Carburant Octa+ (Soignies)", - "amountTva": "-11.48", - "amountHTva": "-9.49", - "amountDeductible": "-3.32", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 47, - "fields": { - "date": "2016-05-20", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-40.00", - "amountHTva": "-33.06", - "amountDeductible": "-11.57", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 48, - "fields": { - "date": "2016-12-04", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-50.00", - "amountHTva": "-41.32", - "amountDeductible": "-14.46", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 49, - "fields": { - "date": "2016-12-10", - "description": 8, - "information": "Cotisation UCM", - "amountTva": "-159.62", - "amountHTva": "-159.62", - "amountDeductible": "-159.62", - "paid": true, - "ticket": true, - "notes": "", - "quotity": "1.00" - } -}, -{ - "model": "compta.transaction", - "pk": 50, - "fields": { - "date": "2016-12-12", - "description": 9, - "information": "Recette GBG (Novembre)", - "amountTva": "115.50", - "amountHTva": "115.50", - "amountDeductible": "0.00", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "0.00" - } -}, -{ - "model": "compta.transaction", - "pk": 51, - "fields": { - "date": "2016-11-14", - "description": 9, - "information": "Recettes GBG (Octobre)", - "amountTva": "136.50", - "amountHTva": "136.50", - "amountDeductible": "0.00", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "0.00" - } -}, -{ - "model": "compta.transaction", - "pk": 52, - "fields": { - "date": "2016-10-11", - "description": 9, - "information": "Recettes GBG (Septembre)", - "amountTva": "140.00", - "amountHTva": "140.00", - "amountDeductible": "0.00", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "0.00" - } -}, -{ - "model": "compta.transaction", - "pk": 53, - "fields": { - "date": "2016-08-29", - "description": 9, - "information": "Payement Facture 2016-02", - "amountTva": "977.80", - "amountHTva": "977.80", - "amountDeductible": "0.00", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "0.00" - } -}, -{ - "model": "compta.transaction", - "pk": 54, - "fields": { - "date": "2016-07-01", - "description": 9, - "information": "Recettes GBG (Juin)", - "amountTva": "483.90", - "amountHTva": "483.90", - "amountDeductible": "0.00", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "0.00" - } -}, -{ - "model": "compta.transaction", - "pk": 55, - "fields": { - "date": "2016-12-16", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-52.71", - "amountHTva": "-43.56", - "amountDeductible": "-15.25", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 56, - "fields": { - "date": "2016-12-02", - "description": 7, - "information": "Carburant Q8 (Vlezenbeek)", - "amountTva": "-15.31", - "amountHTva": "-12.65", - "amountDeductible": "-4.43", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 57, - "fields": { - "date": "2016-10-03", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-46.20", - "amountHTva": "-38.18", - "amountDeductible": "-13.36", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 58, - "fields": { - "date": "2016-12-29", - "description": 7, - "information": "Carburant DATS (Rebecq)", - "amountTva": "-56.00", - "amountHTva": "-46.28", - "amountDeductible": "-16.20", - "paid": false, - "ticket": true, - "notes": "", - "quotity": "0.35" - } -}, -{ - "model": "compta.transaction", - "pk": 59, - "fields": { - "date": "2016-12-27", - "description": 10, - "information": "Achat v\u00eatement de sport (pulls, t-shirt, \u2026)", - "amountTva": "-199.97", - "amountHTva": "-165.26", - "amountDeductible": "-165.26", - "paid": true, - "ticket": true, - "notes": "Achat FootLocker (rue Neuve) de v\u00eatement de sport (Pull bleu 23, Pull rouge, T-shirt Adidas).", - "quotity": "1.00" - } -}, -{ - "model": "compta.transaction", - "pk": 60, - "fields": { - "date": "2016-12-31", - "description": 10, - "information": "Achat baskets Nike", - "amountTva": "-300.00", - "amountHTva": "-247.93", - "amountDeductible": "-247.93", - "paid": true, - "ticket": false, - "notes": "", - "quotity": "1.00" - } -}, -{ - "model": "billing.client", - "pk": 1, - "fields": { - "name": "F\u00e9d\u00e9ration francophone de Gymnastique et de Fitness", - "address": "Avenue de Rodebeek, 44", - "postal_code": 1000, - "city": "Bruxelles", - "contact": "Castiaux Cl\u00e9mentine", - "company_number": "0889.520.385" - } -}, -{ - "model": "billing.contract", - "pk": 1, - "fields": { - "name": "Pr\u00eat trampoline", - "client": 1, - "advance": "0.00", - "reference": "2016-01", - "is_finished": true, - "date": "2016-04-04" - } -}, -{ - "model": "billing.contract", - "pk": 2, - "fields": { - "name": "Formation MSIn GAF/GAM", - "client": 1, - "advance": "0.00", - "reference": "2016-02", - "is_finished": false, - "date": "2016-06-18" - } -}, -{ - "model": "billing.contract", - "pk": 3, - "fields": { - "name": "S\u00e9minaire Technique 2016", - "client": 1, - "advance": "0.00", - "reference": "2016-03", - "is_finished": true, - "date": "2016-10-16" - } -}, -{ - "model": "billing.contract", - "pk": 4, - "fields": { - "name": "Formation MSEd GAF", - "client": 1, - "advance": "0.00", - "reference": "2016-04", - "is_finished": true, - "date": "2016-11-19" - } -}, -{ - "model": "billing.contract", - "pk": 5, - "fields": { - "name": "Cours de Juges 2016", - "client": 1, - "advance": "0.00", - "reference": "2016-05", - "is_finished": true, - "date": "2016-11-19" - } -}, -{ - "model": "billing.contract", - "pk": 6, - "fields": { - "name": "S\u00e9minaire Technique 2017", - "client": 1, - "advance": "0.00", - "reference": "2017-01", - "is_finished": true, - "date": "2017-12-10" - } -}, -{ - "model": "billing.contract", - "pk": 7, - "fields": { - "name": "Cours de juges 2017", - "client": 1, - "advance": "0.00", - "reference": "2017-02", - "is_finished": true, - "date": "2017-12-10" - } -}, -{ - "model": "billing.contract", - "pk": 8, - "fields": { - "name": "Formation Continue 2017", - "client": 1, - "advance": "0.00", - "reference": "2017-03", - "is_finished": true, - "date": "2017-12-12" - } -}, -{ - "model": "billing.contract", - "pk": 9, - "fields": { - "name": "Formation MSEd GAF 2018", - "client": 1, - "advance": "0.00", - "reference": "2018-02", - "is_finished": true, - "date": "2018-10-28" - } -}, -{ - "model": "billing.contract", - "pk": 10, - "fields": { - "name": "Formation MSIn Tra 2018", - "client": 1, - "advance": "0.00", - "reference": "2018-01", - "is_finished": true, - "date": "2018-10-28" - } -}, -{ - "model": "billing.contract", - "pk": 11, - "fields": { - "name": "S\u00e9minaire Technique 2018", - "client": 1, - "advance": "0.00", - "reference": "2018-03", - "is_finished": true, - "date": "2018-10-28" - } -}, -{ - "model": "billing.contract", - "pk": 12, - "fields": { - "name": "Cours de Juge 2019", - "client": 1, - "advance": "0.00", - "reference": "2019-01", - "is_finished": true, - "date": "2020-02-12" - } -}, -{ - "model": "billing.contract", - "pk": 13, - "fields": { - "name": "Webinaire 2021", - "client": 1, - "advance": "0.00", - "reference": "2021-01", - "is_finished": true, - "date": "2021-07-28" - } -}, -{ - "model": "billing.contract", - "pk": 14, - "fields": { - "name": "S\u00e9minaire Technique 2021", - "client": 1, - "advance": "0.00", - "reference": "2021-02", - "is_finished": true, - "date": "2021-12-30" - } -}, -{ - "model": "billing.contract", - "pk": 15, - "fields": { - "name": "(D\u00e9)Montage - Examen 2\u00e8me session 2021", - "client": 1, - "advance": "0.00", - "reference": "2021-03", - "is_finished": true, - "date": "2021-12-30" - } -}, -{ - "model": "billing.prestation", - "pk": 1, - "fields": { - "contract": 3, - "date": "2016-10-08", - "label": "Module TR - Pr\u00e9paration", - "unit": "1.50", - "unit_price": "12.50", - "total_amount": "18.75" - } -}, -{ - "model": "billing.prestation", - "pk": 2, - "fields": { - "contract": 3, - "date": "2016-10-16", - "label": "Module TR - Pr\u00e9sentation", - "unit": "1.50", - "unit_price": "25.00", - "total_amount": "37.50" - } -}, -{ - "model": "billing.prestation", - "pk": 3, - "fields": { - "contract": 3, - "date": "2016-10-16", - "label": "Rebecq/LLN (A/R)", - "unit": "100.00", - "unit_price": "0.20", - "total_amount": "20.00" - } -}, -{ - "model": "billing.prestation", - "pk": 4, - "fields": { - "contract": 2, - "date": "2016-07-04", - "label": "Module \"Animation TR\"", - "unit": "2.00", - "unit_price": "25.00", - "total_amount": "50.00" - } -}, -{ - "model": "billing.prestation", - "pk": 5, - "fields": { - "contract": 4, - "date": "2016-07-04", - "label": "Module \"TR MSEd GAF\"", - "unit": "2.00", - "unit_price": "25.00", - "total_amount": "50.00" - } -}, -{ - "model": "billing.prestation", - "pk": 6, - "fields": { - "contract": 2, - "date": "2016-07-04", - "label": "Rebecq - Mons (A/R)", - "unit": "66.00", - "unit_price": "0.20", - "total_amount": "13.20" - } -}, -{ - "model": "billing.prestation", - "pk": 7, - "fields": { - "contract": 4, - "date": "2016-07-05", - "label": "Module \"TR MSEd GAF\"", - "unit": "4.00", - "unit_price": "25.00", - "total_amount": "100.00" - } -}, -{ - "model": "billing.prestation", - "pk": 8, - "fields": { - "contract": 4, - "date": "2016-07-05", - "label": "Rebecq - Mons (A/R)", - "unit": "66.00", - "unit_price": "0.20", - "total_amount": "13.20" - } -}, -{ - "model": "billing.prestation", - "pk": 9, - "fields": { - "contract": 4, - "date": "2016-07-06", - "label": "Module \"TR MSEd GAF\"", - "unit": "4.00", - "unit_price": "25.00", - "total_amount": "100.00" - } -}, -{ - "model": "billing.prestation", - "pk": 10, - "fields": { - "contract": 4, - "date": "2016-07-06", - "label": "Rebecq - Mons (A/R)", - "unit": "66.00", - "unit_price": "0.20", - "total_amount": "13.20" - } -}, -{ - "model": "billing.prestation", - "pk": 11, - "fields": { - "contract": 2, - "date": "2016-06-05", - "label": "Pr\u00e9paration modules MSIn", - "unit": "20.00", - "unit_price": "12.50", - "total_amount": "250.00" - } -}, -{ - "model": "billing.prestation", - "pk": 12, - "fields": { - "contract": 4, - "date": "2016-06-12", - "label": "Pr\u00e9paration modules MSEd", - "unit": "20.00", - "unit_price": "12.50", - "total_amount": "250.00" - } -}, -{ - "model": "billing.prestation", - "pk": 13, - "fields": { - "contract": 2, - "date": "2016-07-07", - "label": "Module \"Animation TR\" et \"Initiation TR\"", - "unit": "5.00", - "unit_price": "25.00", - "total_amount": "125.00" - } -}, -{ - "model": "billing.prestation", - "pk": 14, - "fields": { - "contract": 2, - "date": "2016-07-07", - "label": "Rebecq - Mons (A/R)", - "unit": "66.00", - "unit_price": "0.20", - "total_amount": "13.20" - } -}, -{ - "model": "billing.prestation", - "pk": 15, - "fields": { - "contract": 4, - "date": "2016-07-04", - "label": "Rebecq - Mons (A/R)", - "unit": "66.00", - "unit_price": "0.00", - "total_amount": "0.00" - } -}, -{ - "model": "billing.prestation", - "pk": 16, - "fields": { - "contract": 5, - "date": "2016-11-20", - "label": "Pr\u00e9paration cours de juge", - "unit": "6.00", - "unit_price": "10.00", - "total_amount": "60.00" - } -}, -{ - "model": "billing.prestation", - "pk": 17, - "fields": { - "contract": 5, - "date": "2016-11-20", - "label": "Pr\u00e9sentation cours (matin)", - "unit": "2.00", - "unit_price": "14.00", - "total_amount": "28.00" - } -}, -{ - "model": "billing.prestation", - "pk": 18, - "fields": { - "contract": 5, - "date": "2016-11-20", - "label": "Pr\u00e9sentation cours (apr\u00e8s-midi)", - "unit": "1.00", - "unit_price": "14.00", - "total_amount": "14.00" - } -}, -{ - "model": "billing.prestation", - "pk": 19, - "fields": { - "contract": 5, - "date": "2016-11-20", - "label": "Rebecq/For\u00eat de Soignes (A/R)", - "unit": "97.60", - "unit_price": "0.20", - "total_amount": "19.52" - } -}, -{ - "model": "billing.prestation", - "pk": 20, - "fields": { - "contract": 6, - "date": "2017-09-24", - "label": "Rebecq/LLN (A/R)", - "unit": "100.00", - "unit_price": "0.20", - "total_amount": "20.00" - } -}, -{ - "model": "billing.prestation", - "pk": 21, - "fields": { - "contract": 6, - "date": "2017-09-17", - "label": "Pr\u00e9paration modules s\u00e9minaires techniques", - "unit": "12.00", - "unit_price": "12.50", - "total_amount": "150.00" - } -}, -{ - "model": "billing.prestation", - "pk": 22, - "fields": { - "contract": 6, - "date": "2017-09-24", - "label": "Pr\u00e9sentation modules s\u00e9minaires techniques", - "unit": "6.00", - "unit_price": "25.00", - "total_amount": "150.00" - } -}, -{ - "model": "billing.prestation", - "pk": 23, - "fields": { - "contract": 7, - "date": "2017-10-08", - "label": "Cours/recyclage", - "unit": "9.00", - "unit_price": "14.00", - "total_amount": "126.00" - } -}, -{ - "model": "billing.prestation", - "pk": 24, - "fields": { - "contract": 7, - "date": "2017-10-08", - "label": "Rebecq/LLN (A/R)", - "unit": "100.00", - "unit_price": "0.20", - "total_amount": "20.00" - } -}, -{ - "model": "billing.prestation", - "pk": 25, - "fields": { - "contract": 7, - "date": "2017-10-21", - "label": "Examen (1sess)", - "unit": "3.00", - "unit_price": "14.00", - "total_amount": "42.00" - } -}, -{ - "model": "billing.prestation", - "pk": 26, - "fields": { - "contract": 7, - "date": "2017-10-21", - "label": "Rebecq/LLN (A/R)", - "unit": "100.00", - "unit_price": "0.20", - "total_amount": "20.00" - } -}, -{ - "model": "billing.prestation", - "pk": 27, - "fields": { - "contract": 7, - "date": "2017-12-02", - "label": "Examen (2sess)", - "unit": "3.00", - "unit_price": "14.00", - "total_amount": "42.00" - } -}, -{ - "model": "billing.prestation", - "pk": 28, - "fields": { - "contract": 7, - "date": "2017-12-02", - "label": "Rebecq/LLN (A/R)", - "unit": "100.00", - "unit_price": "0.20", - "total_amount": "20.00" - } -}, -{ - "model": "billing.prestation", - "pk": 29, - "fields": { - "contract": 7, - "date": "2017-09-17", - "label": "Pr\u00e9paration Cours/Recyclage", - "unit": "12.00", - "unit_price": "10.00", - "total_amount": "120.00" - } -}, -{ - "model": "billing.prestation", - "pk": 30, - "fields": { - "contract": 7, - "date": "2017-10-22", - "label": "Correction examen", - "unit": "4.00", - "unit_price": "2.00", - "total_amount": "8.00" - } -}, -{ - "model": "billing.prestation", - "pk": 31, - "fields": { - "contract": 7, - "date": "2017-12-03", - "label": "Correction examen", - "unit": "3.00", - "unit_price": "2.00", - "total_amount": "6.00" - } -}, -{ - "model": "billing.prestation", - "pk": 32, - "fields": { - "contract": 8, - "date": "2017-12-17", - "label": "Module : Avance Salto (salto av, ar & Kaboom av, ar)", - "unit": "3.00", - "unit_price": "25.00", - "total_amount": "75.00" - } -}, -{ - "model": "billing.prestation", - "pk": 33, - "fields": { - "contract": 8, - "date": "2017-12-10", - "label": "Pr\u00e9paration module : Avance Salto (salto av, ar & Kaboom av, ar)", - "unit": "6.00", - "unit_price": "12.50", - "total_amount": "75.00" - } -}, -{ - "model": "billing.prestation", - "pk": 34, - "fields": { - "contract": 8, - "date": "2017-12-17", - "label": "Module : Vrilles sur salto simple", - "unit": "3.00", - "unit_price": "25.00", - "total_amount": "75.00" - } -}, -{ - "model": "billing.prestation", - "pk": 35, - "fields": { - "contract": 8, - "date": "2017-12-12", - "label": "Pr\u00e9paration module : Vrilles sur salto simple", - "unit": "6.00", - "unit_price": "12.50", - "total_amount": "75.00" - } -}, -{ - "model": "billing.prestation", - "pk": 36, - "fields": { - "contract": 8, - "date": "2017-12-17", - "label": "Rebecq/LLN (A/R)", - "unit": "100.00", - "unit_price": "0.20", - "total_amount": "20.00" - } -}, -{ - "model": "billing.prestation", - "pk": 37, - "fields": { - "contract": 7, - "date": "2017-10-18", - "label": "Impression feuilles d'examen (8 x 8 feuilles)", - "unit": "64.00", - "unit_price": "0.10", - "total_amount": "6.40" - } -}, -{ - "model": "billing.prestation", - "pk": 38, - "fields": { - "contract": 9, - "date": "2018-08-13", - "label": "Aspects acrobatiques au trampoline (1)", - "unit": "3.00", - "unit_price": "25.00", - "total_amount": "75.00" - } -}, -{ - "model": "billing.prestation", - "pk": 39, - "fields": { - "contract": 9, - "date": "2018-08-14", - "label": "Aspects acrobatiques au trampoline (2)", - "unit": "6.00", - "unit_price": "25.00", - "total_amount": "150.00" - } -}, -{ - "model": "billing.prestation", - "pk": 40, - "fields": { - "contract": 9, - "date": "2018-08-18", - "label": "Aspects acrobatiques au trampoline (3)", - "unit": "2.00", - "unit_price": "25.00", - "total_amount": "50.00" - } -}, -{ - "model": "billing.prestation", - "pk": 41, - "fields": { - "contract": 9, - "date": "2018-08-18", - "label": "Rebecq/Mons (A/R)", - "unit": "70.00", - "unit_price": "0.20", - "total_amount": "14.00" - } -}, -{ - "model": "billing.prestation", - "pk": 42, - "fields": { - "contract": 9, - "date": "2018-08-11", - "label": "Pr\u00e9paration de cours", - "unit": "22.00", - "unit_price": "12.50", - "total_amount": "275.00" - } -}, -{ - "model": "billing.prestation", - "pk": 43, - "fields": { - "contract": 10, - "date": "2018-08-04", - "label": "Pr\u00e9paration de cours", - "unit": "33.00", - "unit_price": "12.50", - "total_amount": "412.50" - } -}, -{ - "model": "billing.prestation", - "pk": 44, - "fields": { - "contract": 10, - "date": "2018-08-07", - "label": "Module \"M\u00e9thodologie\"", - "unit": "2.00", - "unit_price": "25.00", - "total_amount": "50.00" - } -}, -{ - "model": "billing.prestation", - "pk": 45, - "fields": { - "contract": 10, - "date": "2018-08-07", - "label": "Module \"Bases de biom\u00e9canique\"", - "unit": "1.50", - "unit_price": "25.00", - "total_amount": "37.50" - } -}, -{ - "model": "billing.prestation", - "pk": 46, - "fields": { - "contract": 10, - "date": "2018-08-09", - "label": "Module \"Figures acrobatique\" (1)", - "unit": "4.00", - "unit_price": "25.00", - "total_amount": "100.00" - } -}, -{ - "model": "billing.prestation", - "pk": 47, - "fields": { - "contract": 10, - "date": "2018-08-12", - "label": "Module \"Figures acrobatique\" (2)", - "unit": "4.00", - "unit_price": "25.00", - "total_amount": "100.00" - } -}, -{ - "model": "billing.prestation", - "pk": 48, - "fields": { - "contract": 10, - "date": "2018-08-12", - "label": "Module \"Code de pointage\"", - "unit": "1.50", - "unit_price": "25.00", - "total_amount": "37.50" - } -}, -{ - "model": "billing.prestation", - "pk": 49, - "fields": { - "contract": 10, - "date": "2018-08-13", - "label": "Module \"Figures acrobatique\" (3)", - "unit": "3.50", - "unit_price": "25.00", - "total_amount": "87.50" - } -}, -{ - "model": "billing.prestation", - "pk": 50, - "fields": { - "contract": 10, - "date": "2018-08-14", - "label": "Examen Pratique", - "unit": "3.50", - "unit_price": "25.00", - "total_amount": "87.50" - } -}, -{ - "model": "billing.prestation", - "pk": 51, - "fields": { - "contract": 10, - "date": "2018-08-07", - "label": "Rebecq/Mons (A/R)", - "unit": "70.00", - "unit_price": "0.20", - "total_amount": "14.00" - } -}, -{ - "model": "billing.prestation", - "pk": 52, - "fields": { - "contract": 10, - "date": "2018-08-09", - "label": "Rebecq/Mons (A/R)", - "unit": "70.00", - "unit_price": "0.20", - "total_amount": "14.00" - } -}, -{ - "model": "billing.prestation", - "pk": 53, - "fields": { - "contract": 10, - "date": "2018-08-12", - "label": "Rebecq/Mons (A/R)", - "unit": "70.00", - "unit_price": "0.20", - "total_amount": "14.00" - } -}, -{ - "model": "billing.prestation", - "pk": 54, - "fields": { - "contract": 10, - "date": "2018-08-13", - "label": "Rebecq/Mons (A/R)", - "unit": "70.00", - "unit_price": "0.20", - "total_amount": "14.00" - } -}, -{ - "model": "billing.prestation", - "pk": 55, - "fields": { - "contract": 10, - "date": "2018-08-14", - "label": "Rebecq/Mons (A/R)", - "unit": "70.00", - "unit_price": "0.20", - "total_amount": "14.00" - } -}, -{ - "model": "billing.prestation", - "pk": 56, - "fields": { - "contract": 11, - "date": "2018-10-06", - "label": "Pr\u00e9paration modules s\u00e9minaires techniques", - "unit": "6.00", - "unit_price": "12.50", - "total_amount": "75.00" - } -}, -{ - "model": "billing.prestation", - "pk": 57, - "fields": { - "contract": 11, - "date": "2018-10-07", - "label": "Rebecq/LLN (A/R)", - "unit": "100.00", - "unit_price": "0.20", - "total_amount": "20.00" - } -}, -{ - "model": "billing.prestation", - "pk": 58, - "fields": { - "contract": 11, - "date": "2018-10-07", - "label": "Pr\u00e9sentation modules s\u00e9minaires techniques", - "unit": "3.00", - "unit_price": "25.00", - "total_amount": "75.00" - } -}, -{ - "model": "billing.prestation", - "pk": 59, - "fields": { - "contract": 12, - "date": "2019-10-06", - "label": "Cours de Juge", - "unit": "6.00", - "unit_price": "14.00", - "total_amount": "84.00" - } -}, -{ - "model": "billing.prestation", - "pk": 60, - "fields": { - "contract": 12, - "date": "2019-09-29", - "label": "Pr\u00e9paration cours de juge", - "unit": "12.00", - "unit_price": "10.00", - "total_amount": "120.00" - } -}, -{ - "model": "billing.prestation", - "pk": 61, - "fields": { - "contract": 12, - "date": "2019-10-06", - "label": "Rebecq/LLN (A/R)", - "unit": "100.00", - "unit_price": "0.20", - "total_amount": "20.00" - } -}, -{ - "model": "billing.prestation", - "pk": 62, - "fields": { - "contract": 12, - "date": "2019-12-01", - "label": "Correction copies d'examen", - "unit": "2.00", - "unit_price": "2.00", - "total_amount": "4.00" - } -}, -{ - "model": "billing.prestation", - "pk": 63, - "fields": { - "contract": 12, - "date": "2019-11-16", - "label": "Recyclage Juge", - "unit": "3.00", - "unit_price": "14.00", - "total_amount": "42.00" - } -}, -{ - "model": "billing.prestation", - "pk": 64, - "fields": { - "contract": 12, - "date": "2019-11-09", - "label": "Pr\u00e9paration Recyclage", - "unit": "6.00", - "unit_price": "10.00", - "total_amount": "60.00" - } -}, -{ - "model": "billing.prestation", - "pk": 65, - "fields": { - "contract": 12, - "date": "2019-11-23", - "label": "Examen (1\u00e8re session)", - "unit": "2.00", - "unit_price": "14.00", - "total_amount": "28.00" - } -}, -{ - "model": "billing.prestation", - "pk": 66, - "fields": { - "contract": 12, - "date": "2019-11-16", - "label": "Rebecq/LLN (A/R)", - "unit": "100.00", - "unit_price": "0.20", - "total_amount": "20.00" - } -}, -{ - "model": "billing.prestation", - "pk": 67, - "fields": { - "contract": 12, - "date": "2019-11-23", - "label": "Rebecq/LLN (A/R)", - "unit": "100.00", - "unit_price": "0.20", - "total_amount": "20.00" - } -}, -{ - "model": "billing.prestation", - "pk": 68, - "fields": { - "contract": 13, - "date": "2021-04-17", - "label": "Les rep\u00e8res spatiaux dans l'acrobatie - pr\u00e9sentation", - "unit": "0.75", - "unit_price": "25.00", - "total_amount": "18.75" - } -}, -{ - "model": "billing.prestation", - "pk": 69, - "fields": { - "contract": 13, - "date": "2021-04-17", - "label": "Les rep\u00e8res spatiaux dans l'acrobatie - pr\u00e9paration", - "unit": "1.50", - "unit_price": "12.50", - "total_amount": "18.75" - } -}, -{ - "model": "billing.prestation", - "pk": 70, - "fields": { - "contract": 13, - "date": "2021-04-17", - "label": "Souplesse et \u00e9tirement - pr\u00e9sentation", - "unit": "0.50", - "unit_price": "25.00", - "total_amount": "12.50" - } -}, -{ - "model": "billing.prestation", - "pk": 71, - "fields": { - "contract": 13, - "date": "2021-04-17", - "label": "Souplesse et \u00e9tirement - pr\u00e9paration", - "unit": "1.00", - "unit_price": "12.50", - "total_amount": "12.50" - } -}, -{ - "model": "billing.prestation", - "pk": 72, - "fields": { - "contract": 14, - "date": "2021-10-10", - "label": "Rebecq - Mons (A/R)", - "unit": "70.00", - "unit_price": "0.25", - "total_amount": "17.50" - } -}, -{ - "model": "billing.prestation", - "pk": 73, - "fields": { - "contract": 14, - "date": "2021-10-03", - "label": "Pr\u00e9paration SemTech : la peur dans l'apprentissage acrobatique", - "unit": "3.00", - "unit_price": "12.50", - "total_amount": "37.50" - } -}, -{ - "model": "billing.prestation", - "pk": 74, - "fields": { - "contract": 14, - "date": "2021-10-10", - "label": "Pr\u00e9sentation SemTech : la peur dans l'apprentissage acrobatique", - "unit": "1.50", - "unit_price": "25.00", - "total_amount": "37.50" - } -}, -{ - "model": "billing.prestation", - "pk": 75, - "fields": { - "contract": 15, - "date": "2021-11-20", - "label": "Examen Alyne\u00a0Raden", - "unit": "0.75", - "unit_price": "25.00", - "total_amount": "18.75" - } -}, -{ - "model": "billing.prestation", - "pk": 76, - "fields": { - "contract": 15, - "date": "2021-11-27", - "label": "Examen Odile\u00a0Odobescu", - "unit": "0.75", - "unit_price": "25.00", - "total_amount": "18.75" - } -}, -{ - "model": "billing.prestation", - "pk": 77, - "fields": { - "contract": 15, - "date": "2021-12-11", - "label": "Examen Juliette\u00a0Devloo", - "unit": "0.75", - "unit_price": "25.00", - "total_amount": "18.75" - } -}, -{ - "model": "auth.permission", - "pk": 1, - "fields": { - "name": "Can add log entry", - "content_type": 1, - "codename": "add_logentry" - } -}, -{ - "model": "auth.permission", - "pk": 2, - "fields": { - "name": "Can change log entry", - "content_type": 1, - "codename": "change_logentry" - } -}, -{ - "model": "auth.permission", - "pk": 3, - "fields": { - "name": "Can delete log entry", - "content_type": 1, - "codename": "delete_logentry" - } -}, -{ - "model": "auth.permission", - "pk": 4, - "fields": { - "name": "Can add permission", - "content_type": 2, - "codename": "add_permission" - } -}, -{ - "model": "auth.permission", - "pk": 5, - "fields": { - "name": "Can change permission", - "content_type": 2, - "codename": "change_permission" - } -}, -{ - "model": "auth.permission", - "pk": 6, - "fields": { - "name": "Can delete permission", - "content_type": 2, - "codename": "delete_permission" - } -}, -{ - "model": "auth.permission", - "pk": 7, - "fields": { - "name": "Can add group", - "content_type": 3, - "codename": "add_group" - } -}, -{ - "model": "auth.permission", - "pk": 8, - "fields": { - "name": "Can change group", - "content_type": 3, - "codename": "change_group" - } -}, -{ - "model": "auth.permission", - "pk": 9, - "fields": { - "name": "Can delete group", - "content_type": 3, - "codename": "delete_group" - } -}, -{ - "model": "auth.permission", - "pk": 10, - "fields": { - "name": "Can add user", - "content_type": 4, - "codename": "add_user" - } -}, -{ - "model": "auth.permission", - "pk": 11, - "fields": { - "name": "Can change user", - "content_type": 4, - "codename": "change_user" - } -}, -{ - "model": "auth.permission", - "pk": 12, - "fields": { - "name": "Can delete user", - "content_type": 4, - "codename": "delete_user" - } -}, -{ - "model": "auth.permission", - "pk": 13, - "fields": { - "name": "Can add content type", - "content_type": 5, - "codename": "add_contenttype" - } -}, -{ - "model": "auth.permission", - "pk": 14, - "fields": { - "name": "Can change content type", - "content_type": 5, - "codename": "change_contenttype" - } -}, -{ - "model": "auth.permission", - "pk": 15, - "fields": { - "name": "Can delete content type", - "content_type": 5, - "codename": "delete_contenttype" - } -}, -{ - "model": "auth.permission", - "pk": 16, - "fields": { - "name": "Can add session", - "content_type": 6, - "codename": "add_session" - } -}, -{ - "model": "auth.permission", - "pk": 17, - "fields": { - "name": "Can change session", - "content_type": 6, - "codename": "change_session" - } -}, -{ - "model": "auth.permission", - "pk": 18, - "fields": { - "name": "Can delete session", - "content_type": 6, - "codename": "delete_session" - } -}, -{ - "model": "auth.permission", - "pk": 19, - "fields": { - "name": "Can add description type", - "content_type": 7, - "codename": "add_descriptiontype" - } -}, -{ - "model": "auth.permission", - "pk": 20, - "fields": { - "name": "Can change description type", - "content_type": 7, - "codename": "change_descriptiontype" - } -}, -{ - "model": "auth.permission", - "pk": 21, - "fields": { - "name": "Can delete description type", - "content_type": 7, - "codename": "delete_descriptiontype" - } -}, -{ - "model": "auth.permission", - "pk": 22, - "fields": { - "name": "Can add tva type", - "content_type": 8, - "codename": "add_tvatype" - } -}, -{ - "model": "auth.permission", - "pk": 23, - "fields": { - "name": "Can change tva type", - "content_type": 8, - "codename": "change_tvatype" - } -}, -{ - "model": "auth.permission", - "pk": 24, - "fields": { - "name": "Can delete tva type", - "content_type": 8, - "codename": "delete_tvatype" - } -}, -{ - "model": "auth.permission", - "pk": 28, - "fields": { - "name": "Can add Transaction", - "content_type": 10, - "codename": "add_transaction" - } -}, -{ - "model": "auth.permission", - "pk": 29, - "fields": { - "name": "Can change Transaction", - "content_type": 10, - "codename": "change_transaction" - } -}, -{ - "model": "auth.permission", - "pk": 30, - "fields": { - "name": "Can delete Transaction", - "content_type": 10, - "codename": "delete_transaction" - } -}, -{ - "model": "auth.permission", - "pk": 31, - "fields": { - "name": "Can add Client", - "content_type": 11, - "codename": "add_client" - } -}, -{ - "model": "auth.permission", - "pk": 32, - "fields": { - "name": "Can change Client", - "content_type": 11, - "codename": "change_client" - } -}, -{ - "model": "auth.permission", - "pk": 33, - "fields": { - "name": "Can delete Client", - "content_type": 11, - "codename": "delete_client" - } -}, -{ - "model": "auth.permission", - "pk": 34, - "fields": { - "name": "Can add Contrat", - "content_type": 12, - "codename": "add_contract" - } -}, -{ - "model": "auth.permission", - "pk": 35, - "fields": { - "name": "Can change Contrat", - "content_type": 12, - "codename": "change_contract" - } -}, -{ - "model": "auth.permission", - "pk": 36, - "fields": { - "name": "Can delete Contrat", - "content_type": 12, - "codename": "delete_contract" - } -}, -{ - "model": "auth.permission", - "pk": 37, - "fields": { - "name": "Can add Prestations", - "content_type": 13, - "codename": "add_prestation" - } -}, -{ - "model": "auth.permission", - "pk": 38, - "fields": { - "name": "Can change Prestations", - "content_type": 13, - "codename": "change_prestation" - } -}, -{ - "model": "auth.permission", - "pk": 39, - "fields": { - "name": "Can delete Prestations", - "content_type": 13, - "codename": "delete_prestation" - } -}, -{ - "model": "auth.user", - "pk": 1, - "fields": { - "password": "pbkdf2_sha256$180000$yeddrRLHlo3j$pHGd28V4r9jutYESAFkkgdFLR4nn7vrxqEqk4+2xeGc=", - "last_login": "2021-07-28T14:47:35.586Z", - "is_superuser": true, - "username": "sulley", - "first_name": "", - "last_name": "", - "email": "a@b.com", - "is_staff": true, - "is_active": true, - "date_joined": "2015-07-09T18:27:00.131Z", - "groups": [], - "user_permissions": [] - } -}, -{ - "model": "auth.user", - "pk": 2, - "fields": { - "password": "pbkdf2_sha256$180000$H50Ly0LANAc6$AR87xD2OnEKz+CFZGAE1PjBs/MJexZPks+mIYd/m5qo=", - "last_login": "2021-12-30T15:20:21.703Z", - "is_superuser": true, - "username": "Sulley", - "first_name": "", - "last_name": "", - "email": "gtrullem@gmail.com", - "is_staff": true, - "is_active": true, - "date_joined": "2015-11-03T13:38:20.598Z", - "groups": [], - "user_permissions": [] - } -}, -{ - "model": "admin.logentry", - "pk": 1, - "fields": { - "action_time": "2015-07-09T18:27:43.000Z", - "user": 1, - "content_type": 7, - "object_id": "1", - "object_repr": "DescriptionType object", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 2, - "fields": { - "action_time": "2015-07-09T18:29:41.384Z", - "user": 1, - "content_type": 8, - "object_id": "1", - "object_repr": "Voiture", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 3, - "fields": { - "action_time": "2015-07-09T19:49:01.795Z", - "user": 1, - "content_type": null, - "object_id": "1", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 4, - "fields": { - "action_time": "2015-07-10T07:59:38.254Z", - "user": 1, - "content_type": null, - "object_id": "1", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Changed amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 5, - "fields": { - "action_time": "2015-07-10T10:00:38.432Z", - "user": 1, - "content_type": null, - "object_id": "1", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountHTva." - } -}, -{ - "model": "admin.logentry", - "pk": 6, - "fields": { - "action_time": "2015-07-10T10:16:01.150Z", - "user": 1, - "content_type": null, - "object_id": "2", - "object_repr": "Entretien Golf IV (pour vente)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 7, - "fields": { - "action_time": "2015-07-10T10:16:50.740Z", - "user": 1, - "content_type": null, - "object_id": "3", - "object_repr": "R\u00e9paration Feu arri\u00e8re droit", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 8, - "fields": { - "action_time": "2015-07-10T10:17:07.467Z", - "user": 1, - "content_type": null, - "object_id": "2", - "object_repr": "Entretien Golf IV (pour vente)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 9, - "fields": { - "action_time": "2015-07-10T10:17:13.483Z", - "user": 1, - "content_type": null, - "object_id": "3", - "object_repr": "R\u00e9paration Feu arri\u00e8re droit", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 10, - "fields": { - "action_time": "2015-07-10T10:54:30.801Z", - "user": 1, - "content_type": null, - "object_id": "4", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 11, - "fields": { - "action_time": "2015-07-10T10:55:07.381Z", - "user": 1, - "content_type": null, - "object_id": "5", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 12, - "fields": { - "action_time": "2015-07-10T10:56:33.961Z", - "user": 1, - "content_type": null, - "object_id": "6", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 13, - "fields": { - "action_time": "2015-07-10T10:56:49.266Z", - "user": 1, - "content_type": null, - "object_id": "6", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 14, - "fields": { - "action_time": "2015-07-10T11:00:23.650Z", - "user": 1, - "content_type": 7, - "object_id": "2", - "object_repr": "Revenus (2015 : 0.0)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 15, - "fields": { - "action_time": "2015-07-10T11:01:03.722Z", - "user": 1, - "content_type": 8, - "object_id": "2", - "object_repr": "Revenus (2015 : 0.00) (0.0)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 16, - "fields": { - "action_time": "2015-07-10T11:01:10.477Z", - "user": 1, - "content_type": null, - "object_id": "7", - "object_repr": "Recettes", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 17, - "fields": { - "action_time": "2015-07-10T11:01:53.836Z", - "user": 1, - "content_type": null, - "object_id": "8", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 18, - "fields": { - "action_time": "2015-07-10T11:02:05.252Z", - "user": 1, - "content_type": null, - "object_id": "8", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 19, - "fields": { - "action_time": "2015-07-10T11:02:38.031Z", - "user": 1, - "content_type": null, - "object_id": "9", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 20, - "fields": { - "action_time": "2015-07-10T11:03:30.559Z", - "user": 1, - "content_type": null, - "object_id": "10", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 21, - "fields": { - "action_time": "2015-07-10T11:03:36.786Z", - "user": 1, - "content_type": null, - "object_id": "10", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 22, - "fields": { - "action_time": "2015-07-10T11:04:36.280Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 0.0)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 23, - "fields": { - "action_time": "2015-07-10T11:05:09.271Z", - "user": 1, - "content_type": 8, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 0.00) (0.0)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 24, - "fields": { - "action_time": "2015-07-10T11:05:45.089Z", - "user": 1, - "content_type": null, - "object_id": "11", - "object_repr": "Cotisation Assurance Sociale UCM", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 25, - "fields": { - "action_time": "2015-07-10T11:06:44.038Z", - "user": 1, - "content_type": null, - "object_id": "12", - "object_repr": "Recettes", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 26, - "fields": { - "action_time": "2015-07-10T11:07:14.708Z", - "user": 1, - "content_type": null, - "object_id": "13", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 27, - "fields": { - "action_time": "2015-07-10T11:07:21.910Z", - "user": 1, - "content_type": null, - "object_id": "13", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 28, - "fields": { - "action_time": "2015-07-10T11:07:49.118Z", - "user": 1, - "content_type": null, - "object_id": "14", - "object_repr": "Recettes", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 29, - "fields": { - "action_time": "2015-07-10T11:08:23.404Z", - "user": 1, - "content_type": null, - "object_id": "15", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 30, - "fields": { - "action_time": "2015-07-10T11:08:51.027Z", - "user": 1, - "content_type": null, - "object_id": "16", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 31, - "fields": { - "action_time": "2015-07-10T11:08:56.564Z", - "user": 1, - "content_type": null, - "object_id": "15", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 32, - "fields": { - "action_time": "2015-07-10T11:12:36.524Z", - "user": 1, - "content_type": null, - "object_id": "17", - "object_repr": "Recettes", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 33, - "fields": { - "action_time": "2015-07-10T11:13:06.071Z", - "user": 1, - "content_type": null, - "object_id": "18", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 34, - "fields": { - "action_time": "2015-07-10T11:15:00.585Z", - "user": 1, - "content_type": null, - "object_id": "19", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 35, - "fields": { - "action_time": "2015-07-10T11:15:32.953Z", - "user": 1, - "content_type": null, - "object_id": "20", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 36, - "fields": { - "action_time": "2015-07-10T11:16:11.261Z", - "user": 1, - "content_type": null, - "object_id": "2", - "object_repr": "Entretien Golf IV (pour vente)", - "action_flag": 2, - "change_message": "Modifi\u00e9 date." - } -}, -{ - "model": "admin.logentry", - "pk": 37, - "fields": { - "action_time": "2015-07-10T11:17:47.459Z", - "user": 1, - "content_type": null, - "object_id": "21", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 38, - "fields": { - "action_time": "2015-07-10T11:19:53.293Z", - "user": 1, - "content_type": null, - "object_id": "22", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 39, - "fields": { - "action_time": "2015-07-10T11:20:18.636Z", - "user": 1, - "content_type": null, - "object_id": "23", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 40, - "fields": { - "action_time": "2015-07-10T11:22:34.224Z", - "user": 1, - "content_type": null, - "object_id": "21", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 41, - "fields": { - "action_time": "2015-07-10T11:22:46.848Z", - "user": 1, - "content_type": null, - "object_id": "7", - "object_repr": "Recettes (Janvier 2015)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 42, - "fields": { - "action_time": "2015-07-10T11:23:04.444Z", - "user": 1, - "content_type": null, - "object_id": "14", - "object_repr": "Recettes (F\u00e9vrier 2015)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 43, - "fields": { - "action_time": "2015-07-10T11:23:08.609Z", - "user": 1, - "content_type": null, - "object_id": "12", - "object_repr": "Recettes (F\u00e9vrier 2015)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 44, - "fields": { - "action_time": "2015-07-10T11:23:19.621Z", - "user": 1, - "content_type": null, - "object_id": "17", - "object_repr": "Recettes (Mars 2015)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 45, - "fields": { - "action_time": "2015-07-10T11:24:42.473Z", - "user": 1, - "content_type": null, - "object_id": "24", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 46, - "fields": { - "action_time": "2015-07-10T11:25:34.575Z", - "user": 1, - "content_type": null, - "object_id": "25", - "object_repr": "Cotisation Assurance Sociale UCM", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 47, - "fields": { - "action_time": "2015-07-10T11:26:23.948Z", - "user": 1, - "content_type": null, - "object_id": "26", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 48, - "fields": { - "action_time": "2015-07-10T11:26:47.995Z", - "user": 1, - "content_type": null, - "object_id": "27", - "object_repr": "Recette (Mai 2015)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 49, - "fields": { - "action_time": "2015-07-10T11:36:23.778Z", - "user": 1, - "content_type": null, - "object_id": "28", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 50, - "fields": { - "action_time": "2015-07-10T11:36:48.098Z", - "user": 1, - "content_type": null, - "object_id": "29", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 51, - "fields": { - "action_time": "2015-07-10T11:37:11.001Z", - "user": 1, - "content_type": null, - "object_id": "30", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 52, - "fields": { - "action_time": "2015-07-10T11:37:40.160Z", - "user": 1, - "content_type": null, - "object_id": "31", - "object_repr": "Recettes (Juin 2015)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 53, - "fields": { - "action_time": "2015-07-10T11:38:15.917Z", - "user": 1, - "content_type": null, - "object_id": "32", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 54, - "fields": { - "action_time": "2015-07-10T11:40:45.094Z", - "user": 1, - "content_type": null, - "object_id": "27", - "object_repr": "Recettes (Mai 2015)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 55, - "fields": { - "action_time": "2015-07-10T11:46:50.241Z", - "user": 1, - "content_type": 7, - "object_id": "4", - "object_repr": "Restaurant (2015 : 0.69)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 56, - "fields": { - "action_time": "2015-07-10T17:41:23.636Z", - "user": 1, - "content_type": null, - "object_id": "1", - "object_repr": "Carburant", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 57, - "fields": { - "action_time": "2015-07-14T20:18:44.771Z", - "user": 1, - "content_type": null, - "object_id": "33", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 58, - "fields": { - "action_time": "2015-07-14T20:21:01.103Z", - "user": 1, - "content_type": null, - "object_id": "34", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 59, - "fields": { - "action_time": "2015-07-14T20:21:12.048Z", - "user": 1, - "content_type": null, - "object_id": "33", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 60, - "fields": { - "action_time": "2015-07-14T20:26:55.144Z", - "user": 1, - "content_type": null, - "object_id": "35", - "object_repr": "Achat mat\u00e9riel entretien", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 61, - "fields": { - "action_time": "2015-07-14T20:29:55.633Z", - "user": 1, - "content_type": 7, - "object_id": "5", - "object_repr": "Sport (2015 : 0.99)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 62, - "fields": { - "action_time": "2015-07-14T20:30:57.745Z", - "user": 1, - "content_type": 8, - "object_id": "4", - "object_repr": "Sport (2015 : 0.99) (0.21)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 63, - "fields": { - "action_time": "2015-07-14T20:31:11.873Z", - "user": 1, - "content_type": 8, - "object_id": "4", - "object_repr": "Sport (2015 : 0.99) (0.00)", - "action_flag": 2, - "change_message": "Modifi\u00e9 percent." - } -}, -{ - "model": "admin.logentry", - "pk": 64, - "fields": { - "action_time": "2015-07-14T20:31:25.100Z", - "user": 1, - "content_type": null, - "object_id": "36", - "object_repr": "Carte Entr\u00e9es GSA entrainement", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 65, - "fields": { - "action_time": "2015-07-14T20:35:46.344Z", - "user": 1, - "content_type": null, - "object_id": "37", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 66, - "fields": { - "action_time": "2015-07-14T20:47:10.899Z", - "user": 1, - "content_type": null, - "object_id": "32", - "object_repr": "Carburant (Octa+)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 67, - "fields": { - "action_time": "2015-07-26T17:27:18.391Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 1.00)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 68, - "fields": { - "action_time": "2015-07-26T18:01:10.880Z", - "user": 1, - "content_type": 7, - "object_id": "6", - "object_repr": "Cadeau (2015 : 0.50)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 69, - "fields": { - "action_time": "2015-07-26T18:11:28.561Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 1.00)", - "action_flag": 2, - "change_message": "Aucun champ modifi\u00e9." - } -}, -{ - "model": "admin.logentry", - "pk": 70, - "fields": { - "action_time": "2015-07-26T19:11:02.948Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 0.9)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 71, - "fields": { - "action_time": "2015-07-26T19:11:12.944Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 1)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 72, - "fields": { - "action_time": "2015-07-26T19:14:24.614Z", - "user": 1, - "content_type": null, - "object_id": "11", - "object_repr": "Cotisation Assurance Sociale UCM", - "action_flag": 2, - "change_message": "Aucun champ modifi\u00e9." - } -}, -{ - "model": "admin.logentry", - "pk": 73, - "fields": { - "action_time": "2015-07-26T19:15:53.328Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 0.5)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 74, - "fields": { - "action_time": "2015-07-26T19:16:00.836Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 1)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 75, - "fields": { - "action_time": "2015-07-26T19:18:53.966Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 0.99)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 76, - "fields": { - "action_time": "2015-07-26T19:19:11.517Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 1)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 77, - "fields": { - "action_time": "2015-07-26T19:19:55.314Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 1.00)", - "action_flag": 2, - "change_message": "Aucun champ modifi\u00e9." - } -}, -{ - "model": "admin.logentry", - "pk": 78, - "fields": { - "action_time": "2015-07-26T19:32:17.096Z", - "user": 1, - "content_type": 8, - "object_id": "4", - "object_repr": "Sport (2015 : 0.99) (0.21)", - "action_flag": 2, - "change_message": "Modifi\u00e9 percent." - } -}, -{ - "model": "admin.logentry", - "pk": 79, - "fields": { - "action_time": "2015-07-26T19:32:28.972Z", - "user": 1, - "content_type": 7, - "object_id": "5", - "object_repr": "Sport (2015 : 1)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 80, - "fields": { - "action_time": "2015-07-26T20:34:03.595Z", - "user": 1, - "content_type": 7, - "object_id": "5", - "object_repr": "Sport (2015 : 0.99)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 81, - "fields": { - "action_time": "2015-07-26T20:34:10.867Z", - "user": 1, - "content_type": 7, - "object_id": "5", - "object_repr": "Sport (2015 : 1)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 82, - "fields": { - "action_time": "2015-07-26T20:34:17.880Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 0.98)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 83, - "fields": { - "action_time": "2015-07-26T20:34:24.898Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 1)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 84, - "fields": { - "action_time": "2015-08-03T11:49:02.169Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 0.99)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 85, - "fields": { - "action_time": "2015-08-03T11:49:38.510Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 1)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 86, - "fields": { - "action_time": "2015-08-03T11:50:01.092Z", - "user": 1, - "content_type": null, - "object_id": "11", - "object_repr": "Cotisation Assurance Sociale UCM", - "action_flag": 2, - "change_message": "Aucun champ modifi\u00e9." - } -}, -{ - "model": "admin.logentry", - "pk": 87, - "fields": { - "action_time": "2015-08-03T11:51:10.487Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 0.99)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 88, - "fields": { - "action_time": "2015-08-03T11:51:22.478Z", - "user": 1, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (2015 : 1)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 89, - "fields": { - "action_time": "2015-08-03T12:31:11.408Z", - "user": 1, - "content_type": null, - "object_id": "38", - "object_repr": "Avion A/R Scalabis Cup", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 90, - "fields": { - "action_time": "2015-08-03T12:32:18.244Z", - "user": 1, - "content_type": null, - "object_id": "39", - "object_repr": "Scalabis Cup (H\u00f4tel, transport, repas)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 91, - "fields": { - "action_time": "2015-08-03T12:32:35.588Z", - "user": 1, - "content_type": null, - "object_id": "38", - "object_repr": "Avion A/R Scalabis Cup", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 92, - "fields": { - "action_time": "2015-08-03T12:32:41.052Z", - "user": 1, - "content_type": null, - "object_id": "39", - "object_repr": "Scalabis Cup (H\u00f4tel, transport, repas)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 93, - "fields": { - "action_time": "2015-08-04T19:39:05.248Z", - "user": 1, - "content_type": null, - "object_id": "24", - "object_repr": "Carburant", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 94, - "fields": { - "action_time": "2015-08-05T19:58:59.818Z", - "user": 1, - "content_type": null, - "object_id": "40", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 95, - "fields": { - "action_time": "2015-08-15T13:02:08.683Z", - "user": 1, - "content_type": null, - "object_id": "41", - "object_repr": "Livre (Coach : course et musculation)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 96, - "fields": { - "action_time": "2015-08-15T13:02:18.281Z", - "user": 1, - "content_type": null, - "object_id": "41", - "object_repr": "Livre (Coach : course et musculation)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 97, - "fields": { - "action_time": "2015-08-15T13:03:02.105Z", - "user": 1, - "content_type": null, - "object_id": "42", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 98, - "fields": { - "action_time": "2015-08-15T16:46:12.073Z", - "user": 1, - "content_type": null, - "object_id": "43", - "object_repr": "Carburant", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 99, - "fields": { - "action_time": "2015-08-15T16:51:05.113Z", - "user": 1, - "content_type": 8, - "object_id": "5", - "object_repr": "Sport (2015 : 1.00) (0.055)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 100, - "fields": { - "action_time": "2015-08-15T16:55:03.693Z", - "user": 1, - "content_type": 8, - "object_id": "5", - "object_repr": "Sport (2015 : 1.00) (0.055)", - "action_flag": 2, - "change_message": "Modifi\u00e9 label." - } -}, -{ - "model": "admin.logentry", - "pk": 101, - "fields": { - "action_time": "2015-08-15T16:55:34.026Z", - "user": 1, - "content_type": null, - "object_id": "41", - "object_repr": "Livre (Coach : course et musculation)", - "action_flag": 2, - "change_message": "Modifi\u00e9 tvaType." - } -}, -{ - "model": "admin.logentry", - "pk": 102, - "fields": { - "action_time": "2015-08-15T16:55:45.779Z", - "user": 1, - "content_type": null, - "object_id": "41", - "object_repr": "Livre (Coach : course et musculation)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 103, - "fields": { - "action_time": "2015-08-15T16:58:17.680Z", - "user": 1, - "content_type": 8, - "object_id": "6", - "object_repr": "Voiture (2015 : 0.35) (0.200)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 104, - "fields": { - "action_time": "2015-08-15T16:58:34.561Z", - "user": 1, - "content_type": null, - "object_id": "42", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 tvaType." - } -}, -{ - "model": "admin.logentry", - "pk": 105, - "fields": { - "action_time": "2015-08-15T18:01:56.987Z", - "user": 1, - "content_type": 8, - "object_id": "7", - "object_repr": "Livre (Belgique) (Sport (2015 : 1.00) - 0.06)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 106, - "fields": { - "action_time": "2015-08-15T18:03:48.390Z", - "user": 1, - "content_type": null, - "object_id": "6", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 date." - } -}, -{ - "model": "admin.logentry", - "pk": 107, - "fields": { - "action_time": "2015-08-15T18:06:08.031Z", - "user": 1, - "content_type": null, - "object_id": "21", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 date." - } -}, -{ - "model": "admin.logentry", - "pk": 108, - "fields": { - "action_time": "2015-08-15T18:06:45.123Z", - "user": 1, - "content_type": null, - "object_id": "22", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 date." - } -}, -{ - "model": "admin.logentry", - "pk": 109, - "fields": { - "action_time": "2015-08-15T18:08:12.997Z", - "user": 1, - "content_type": null, - "object_id": "26", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 date." - } -}, -{ - "model": "admin.logentry", - "pk": 110, - "fields": { - "action_time": "2015-08-15T18:09:54.304Z", - "user": 1, - "content_type": null, - "object_id": "29", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 date." - } -}, -{ - "model": "admin.logentry", - "pk": 111, - "fields": { - "action_time": "2015-08-15T18:14:14.745Z", - "user": 1, - "content_type": null, - "object_id": "33", - "object_repr": "Carburant (DATS)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 112, - "fields": { - "action_time": "2015-08-15T18:14:40.435Z", - "user": 1, - "content_type": null, - "object_id": "43", - "object_repr": "Carburant (DATS)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 113, - "fields": { - "action_time": "2015-08-15T18:15:11.533Z", - "user": 1, - "content_type": null, - "object_id": "42", - "object_repr": "Carburant (Leclerc Orl\u00e9ans)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 114, - "fields": { - "action_time": "2015-08-15T19:10:24.110Z", - "user": 1, - "content_type": null, - "object_id": "33", - "object_repr": "Carburant (DATS)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 115, - "fields": { - "action_time": "2015-08-15T19:14:17.191Z", - "user": 1, - "content_type": 8, - "object_id": "4", - "object_repr": "Divers (Sport (2015 : 1.00) - 0.210)", - "action_flag": 2, - "change_message": "Modifi\u00e9 label." - } -}, -{ - "model": "admin.logentry", - "pk": 116, - "fields": { - "action_time": "2015-08-15T19:14:39.351Z", - "user": 1, - "content_type": 8, - "object_id": "1", - "object_repr": "Diesel (Belgique) (Voiture (2015 : 0.35) - 0.210)", - "action_flag": 2, - "change_message": "Modifi\u00e9 label." - } -}, -{ - "model": "admin.logentry", - "pk": 117, - "fields": { - "action_time": "2015-08-15T19:14:51.768Z", - "user": 1, - "content_type": 8, - "object_id": "2", - "object_repr": "Revenu (Revenus (2015 : 0.00) - 0.000)", - "action_flag": 2, - "change_message": "Modifi\u00e9 label." - } -}, -{ - "model": "admin.logentry", - "pk": 118, - "fields": { - "action_time": "2015-08-15T19:15:07.213Z", - "user": 1, - "content_type": 8, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (Cotisations Sociale UCM (2015 : 1.00) - 0.000)", - "action_flag": 2, - "change_message": "Modifi\u00e9 label." - } -}, -{ - "model": "admin.logentry", - "pk": 119, - "fields": { - "action_time": "2015-08-15T19:20:36.811Z", - "user": 1, - "content_type": null, - "object_id": "33", - "object_repr": "Carburant (DATS)", - "action_flag": 2, - "change_message": "Aucun champ modifi\u00e9." - } -}, -{ - "model": "admin.logentry", - "pk": 120, - "fields": { - "action_time": "2015-08-15T19:21:01.017Z", - "user": 1, - "content_type": null, - "object_id": "32", - "object_repr": "Carburant (Octa+)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 121, - "fields": { - "action_time": "2015-08-15T19:21:32.987Z", - "user": 1, - "content_type": null, - "object_id": "29", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 122, - "fields": { - "action_time": "2015-08-15T19:21:52.589Z", - "user": 1, - "content_type": null, - "object_id": "28", - "object_repr": "Carburant (Texaco)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 123, - "fields": { - "action_time": "2015-08-15T19:22:04.655Z", - "user": 1, - "content_type": null, - "object_id": "29", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 124, - "fields": { - "action_time": "2015-08-15T19:22:13.364Z", - "user": 1, - "content_type": null, - "object_id": "28", - "object_repr": "Carburant (Texaco Anderlecht)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 125, - "fields": { - "action_time": "2015-08-15T19:22:29.470Z", - "user": 1, - "content_type": null, - "object_id": "32", - "object_repr": "Carburant (Octa+ Saintes)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 126, - "fields": { - "action_time": "2015-08-15T19:22:40.942Z", - "user": 1, - "content_type": null, - "object_id": "33", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 127, - "fields": { - "action_time": "2015-08-15T19:23:12.075Z", - "user": 1, - "content_type": null, - "object_id": "37", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 128, - "fields": { - "action_time": "2015-08-15T19:23:28.154Z", - "user": 1, - "content_type": null, - "object_id": "26", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 129, - "fields": { - "action_time": "2015-08-15T19:23:43.784Z", - "user": 1, - "content_type": null, - "object_id": "26", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 130, - "fields": { - "action_time": "2015-08-15T19:24:15.070Z", - "user": 1, - "content_type": null, - "object_id": "34", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 131, - "fields": { - "action_time": "2015-08-15T19:24:47.899Z", - "user": 1, - "content_type": null, - "object_id": "42", - "object_repr": "Carburant (Leclerc Orl\u00e9ans)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 132, - "fields": { - "action_time": "2015-08-15T19:25:01.137Z", - "user": 1, - "content_type": null, - "object_id": "41", - "object_repr": "Livre (Coach : course et musculation)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 133, - "fields": { - "action_time": "2015-08-15T19:25:29.353Z", - "user": 1, - "content_type": null, - "object_id": "22", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 134, - "fields": { - "action_time": "2015-08-15T19:26:32.069Z", - "user": 1, - "content_type": null, - "object_id": "21", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 135, - "fields": { - "action_time": "2015-08-15T19:26:48.188Z", - "user": 1, - "content_type": null, - "object_id": "39", - "object_repr": "Scalabis Cup (H\u00f4tel, transport, repas)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 136, - "fields": { - "action_time": "2015-08-15T19:26:54.379Z", - "user": 1, - "content_type": null, - "object_id": "38", - "object_repr": "Avion A/R Scalabis Cup", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 137, - "fields": { - "action_time": "2015-08-15T19:27:14.984Z", - "user": 1, - "content_type": null, - "object_id": "40", - "object_repr": "Carburant (OCTA+ Saintes)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 138, - "fields": { - "action_time": "2015-08-15T19:28:10.117Z", - "user": 1, - "content_type": null, - "object_id": "43", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 139, - "fields": { - "action_time": "2015-08-15T19:28:52.091Z", - "user": 1, - "content_type": null, - "object_id": "6", - "object_repr": "Carburant (Q8 Grand Bigard)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 140, - "fields": { - "action_time": "2015-08-15T19:29:22.136Z", - "user": 1, - "content_type": null, - "object_id": "3", - "object_repr": "R\u00e9paration Feu arri\u00e8re droit", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 141, - "fields": { - "action_time": "2015-08-15T19:29:26.148Z", - "user": 1, - "content_type": null, - "object_id": "2", - "object_repr": "Entretien Golf IV (pour vente)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 142, - "fields": { - "action_time": "2015-08-15T19:29:30.550Z", - "user": 1, - "content_type": null, - "object_id": "35", - "object_repr": "Achat mat\u00e9riel entretien", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 143, - "fields": { - "action_time": "2015-08-15T19:29:34.482Z", - "user": 1, - "content_type": null, - "object_id": "36", - "object_repr": "Carte Entr\u00e9es GSA entrainement", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 144, - "fields": { - "action_time": "2015-08-15T21:48:34.569Z", - "user": 1, - "content_type": null, - "object_id": "25", - "object_repr": "Cotisation Sociale UCM (1/2015)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 145, - "fields": { - "action_time": "2015-08-15T21:49:10.127Z", - "user": 1, - "content_type": null, - "object_id": "44", - "object_repr": "Cotisation Sociale UCM (2/2015)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 146, - "fields": { - "action_time": "2015-08-15T21:59:29.868Z", - "user": 1, - "content_type": null, - "object_id": "19", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 date et information." - } -}, -{ - "model": "admin.logentry", - "pk": 147, - "fields": { - "action_time": "2015-08-15T21:59:55.775Z", - "user": 1, - "content_type": null, - "object_id": "19", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 148, - "fields": { - "action_time": "2015-08-15T22:00:49.671Z", - "user": 1, - "content_type": null, - "object_id": "20", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 149, - "fields": { - "action_time": "2015-08-16T09:03:22.014Z", - "user": 1, - "content_type": null, - "object_id": "25", - "object_repr": "Cotisation Sociale UCM (1/2015)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 150, - "fields": { - "action_time": "2015-08-16T09:08:44.761Z", - "user": 1, - "content_type": null, - "object_id": "20", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 date." - } -}, -{ - "model": "admin.logentry", - "pk": 151, - "fields": { - "action_time": "2015-08-16T10:17:25.574Z", - "user": 1, - "content_type": null, - "object_id": "16", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 date, information et amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 152, - "fields": { - "action_time": "2015-08-16T10:17:38.357Z", - "user": 1, - "content_type": null, - "object_id": "16", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 153, - "fields": { - "action_time": "2015-08-22T10:06:33.055Z", - "user": 1, - "content_type": null, - "object_id": "45", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 154, - "fields": { - "action_time": "2015-08-22T10:07:09.168Z", - "user": 1, - "content_type": null, - "object_id": "45", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 155, - "fields": { - "action_time": "2015-08-30T15:51:02.043Z", - "user": 1, - "content_type": null, - "object_id": "30", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 date et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 156, - "fields": { - "action_time": "2015-08-30T15:51:18.553Z", - "user": 1, - "content_type": null, - "object_id": "23", - "object_repr": "Carburant", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 157, - "fields": { - "action_time": "2015-09-02T10:48:38.215Z", - "user": 1, - "content_type": null, - "object_id": "46", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 158, - "fields": { - "action_time": "2015-09-05T14:21:15.390Z", - "user": 1, - "content_type": null, - "object_id": "47", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 159, - "fields": { - "action_time": "2015-09-29T19:49:36.163Z", - "user": 1, - "content_type": null, - "object_id": "48", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 160, - "fields": { - "action_time": "2015-09-29T19:50:53.328Z", - "user": 1, - "content_type": null, - "object_id": "48", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 161, - "fields": { - "action_time": "2015-09-29T19:51:34.163Z", - "user": 1, - "content_type": null, - "object_id": "49", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 162, - "fields": { - "action_time": "2015-09-29T20:00:01.459Z", - "user": 1, - "content_type": null, - "object_id": "50", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 163, - "fields": { - "action_time": "2015-11-03T13:53:36.642Z", - "user": 2, - "content_type": null, - "object_id": "51", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 164, - "fields": { - "action_time": "2015-11-03T13:54:20.269Z", - "user": 2, - "content_type": null, - "object_id": "52", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 165, - "fields": { - "action_time": "2015-11-03T13:54:31.236Z", - "user": 2, - "content_type": null, - "object_id": "52", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 date." - } -}, -{ - "model": "admin.logentry", - "pk": 166, - "fields": { - "action_time": "2016-01-03T16:07:51.205Z", - "user": 1, - "content_type": null, - "object_id": "53", - "object_repr": "DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 167, - "fields": { - "action_time": "2016-01-03T16:07:58.384Z", - "user": 1, - "content_type": null, - "object_id": "53", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 168, - "fields": { - "action_time": "2016-01-03T16:10:45.589Z", - "user": 1, - "content_type": null, - "object_id": "54", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 169, - "fields": { - "action_time": "2016-01-03T16:11:45.538Z", - "user": 1, - "content_type": null, - "object_id": "55", - "object_repr": "Carburant DATS (rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 170, - "fields": { - "action_time": "2016-01-03T16:14:14.909Z", - "user": 1, - "content_type": null, - "object_id": "56", - "object_repr": "Carburant Octa+ (Saintes)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 171, - "fields": { - "action_time": "2016-01-03T16:15:02.549Z", - "user": 1, - "content_type": null, - "object_id": "57", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 172, - "fields": { - "action_time": "2016-01-03T16:16:32.307Z", - "user": 1, - "content_type": 8, - "object_id": "8", - "object_repr": "Diesel (Belgique) (Voiture (35.00% en 2015) - 0.35)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 173, - "fields": { - "action_time": "2016-01-03T16:29:16.384Z", - "user": 1, - "content_type": null, - "object_id": "58", - "object_repr": "TurnClub Ten Gaerde", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 174, - "fields": { - "action_time": "2016-01-03T16:29:38.101Z", - "user": 1, - "content_type": null, - "object_id": "58", - "object_repr": "TurnClub Ten Gaerde (Septembre)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 175, - "fields": { - "action_time": "2016-01-03T16:30:19.200Z", - "user": 1, - "content_type": null, - "object_id": "59", - "object_repr": "TurnClub Ten Gaerde (Octobre)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 176, - "fields": { - "action_time": "2016-01-03T16:31:15.961Z", - "user": 1, - "content_type": null, - "object_id": "60", - "object_repr": "TurnClub Ten Gaerde (Novembre)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 177, - "fields": { - "action_time": "2016-01-03T16:31:39.160Z", - "user": 1, - "content_type": null, - "object_id": "61", - "object_repr": "TurnClub Ten Gaerde (D\u00e9cembre)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 178, - "fields": { - "action_time": "2016-01-03T16:33:08.934Z", - "user": 1, - "content_type": null, - "object_id": "31", - "object_repr": "Recettes (Avril + Juin)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 179, - "fields": { - "action_time": "2016-01-03T16:33:20.932Z", - "user": 1, - "content_type": null, - "object_id": "27", - "object_repr": "Recettes (Mai)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 180, - "fields": { - "action_time": "2016-01-03T16:33:34.245Z", - "user": 1, - "content_type": null, - "object_id": "7", - "object_repr": "Recettes (Janvie)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 181, - "fields": { - "action_time": "2016-01-03T16:33:41.758Z", - "user": 1, - "content_type": null, - "object_id": "12", - "object_repr": "Recettes (F\u00e9vrier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 182, - "fields": { - "action_time": "2016-01-03T16:33:46.875Z", - "user": 1, - "content_type": null, - "object_id": "14", - "object_repr": "Recettes (F\u00e9vrier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 183, - "fields": { - "action_time": "2016-01-03T16:33:49.733Z", - "user": 1, - "content_type": null, - "object_id": "17", - "object_repr": "Recettes (Mars)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 184, - "fields": { - "action_time": "2016-01-03T16:33:57.802Z", - "user": 1, - "content_type": null, - "object_id": "7", - "object_repr": "Recettes (Janviee)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 185, - "fields": { - "action_time": "2016-01-03T16:34:04.412Z", - "user": 1, - "content_type": null, - "object_id": "7", - "object_repr": "Recettes (Janvier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 186, - "fields": { - "action_time": "2016-01-03T16:55:13.597Z", - "user": 1, - "content_type": 7, - "object_id": "7", - "object_repr": "Voit (0% en 2016)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 187, - "fields": { - "action_time": "2016-01-03T16:55:23.114Z", - "user": 1, - "content_type": 7, - "object_id": "7", - "object_repr": "Voiture (35.00% en 2016)", - "action_flag": 2, - "change_message": "Modifi\u00e9 name et quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 188, - "fields": { - "action_time": "2016-01-03T16:56:15.905Z", - "user": 1, - "content_type": 8, - "object_id": "8", - "object_repr": "Diesel (Belgique) (Voiture (35.00% en 2016) - 0.350)", - "action_flag": 2, - "change_message": "Modifi\u00e9 description." - } -}, -{ - "model": "admin.logentry", - "pk": 189, - "fields": { - "action_time": "2016-01-03T16:56:37.504Z", - "user": 1, - "content_type": null, - "object_id": "62", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 190, - "fields": { - "action_time": "2016-01-03T16:57:30.273Z", - "user": 1, - "content_type": 8, - "object_id": "8", - "object_repr": "Diesel (Belgique) (Voiture (35.00% en 2016) - 0.21)", - "action_flag": 2, - "change_message": "Modifi\u00e9 percent." - } -}, -{ - "model": "admin.logentry", - "pk": 191, - "fields": { - "action_time": "2016-01-03T16:57:43.743Z", - "user": 1, - "content_type": null, - "object_id": "62", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 192, - "fields": { - "action_time": "2016-01-03T16:57:50.802Z", - "user": 1, - "content_type": null, - "object_id": "62", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva." - } -}, -{ - "model": "admin.logentry", - "pk": 193, - "fields": { - "action_time": "2016-01-04T10:39:21.225Z", - "user": 1, - "content_type": null, - "object_id": "63", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 194, - "fields": { - "action_time": "2016-01-04T10:40:29.774Z", - "user": 1, - "content_type": null, - "object_id": "64", - "object_repr": "Carburant Octa+ (Saintes)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 195, - "fields": { - "action_time": "2016-01-14T17:45:55.960Z", - "user": 1, - "content_type": null, - "object_id": "65", - "object_repr": "Carburant - Shell (BLC)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 196, - "fields": { - "action_time": "2016-01-14T17:46:42.254Z", - "user": 1, - "content_type": null, - "object_id": "66", - "object_repr": "Carburant - Octa+ (Saintes)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 197, - "fields": { - "action_time": "2016-01-19T16:20:19.829Z", - "user": 2, - "content_type": null, - "object_id": "67", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 198, - "fields": { - "action_time": "2016-06-18T11:18:05.382Z", - "user": 2, - "content_type": null, - "object_id": "68", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 199, - "fields": { - "action_time": "2016-06-18T11:20:52.984Z", - "user": 2, - "content_type": null, - "object_id": "69", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 200, - "fields": { - "action_time": "2016-06-18T11:21:57.900Z", - "user": 2, - "content_type": null, - "object_id": "70", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 201, - "fields": { - "action_time": "2016-06-18T11:23:00.175Z", - "user": 2, - "content_type": null, - "object_id": "71", - "object_repr": "Carburant DATS (Braine)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 202, - "fields": { - "action_time": "2016-06-18T11:23:56.441Z", - "user": 2, - "content_type": null, - "object_id": "72", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 203, - "fields": { - "action_time": "2016-06-18T11:24:37.069Z", - "user": 2, - "content_type": null, - "object_id": "73", - "object_repr": "Carburant Texaco (Anderlecht)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 204, - "fields": { - "action_time": "2016-06-18T11:25:40.141Z", - "user": 2, - "content_type": null, - "object_id": "74", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 205, - "fields": { - "action_time": "2016-06-18T11:26:37.508Z", - "user": 2, - "content_type": null, - "object_id": "75", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 206, - "fields": { - "action_time": "2016-06-18T11:27:15.533Z", - "user": 2, - "content_type": null, - "object_id": "76", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 207, - "fields": { - "action_time": "2016-06-18T11:27:53.882Z", - "user": 2, - "content_type": null, - "object_id": "77", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 208, - "fields": { - "action_time": "2016-06-18T11:28:21.804Z", - "user": 2, - "content_type": null, - "object_id": "78", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 209, - "fields": { - "action_time": "2016-06-18T11:29:13.167Z", - "user": 2, - "content_type": null, - "object_id": "79", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 210, - "fields": { - "action_time": "2016-06-18T11:31:38.103Z", - "user": 2, - "content_type": null, - "object_id": "80", - "object_repr": "Carburant Roodstop (Soignies)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 211, - "fields": { - "action_time": "2016-06-18T13:29:44.509Z", - "user": 2, - "content_type": 7, - "object_id": "8", - "object_repr": "Cotisations Sociale UCM (100% en 2016)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 212, - "fields": { - "action_time": "2016-06-18T13:31:19.219Z", - "user": 2, - "content_type": 8, - "object_id": "9", - "object_repr": "Cotisations Sociale UCM (Cotisations Sociale UCM (100.00% en 2016) - 1)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 213, - "fields": { - "action_time": "2016-06-18T13:31:24.211Z", - "user": 2, - "content_type": null, - "object_id": "81", - "object_repr": "Cotisations Sociale UCM", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 214, - "fields": { - "action_time": "2016-06-18T13:31:52.018Z", - "user": 2, - "content_type": 8, - "object_id": "9", - "object_repr": "Cotisations Sociale UCM (Cotisations Sociale UCM (100.00% en 2016) - 0)", - "action_flag": 2, - "change_message": "Modifi\u00e9 percent." - } -}, -{ - "model": "admin.logentry", - "pk": 215, - "fields": { - "action_time": "2016-06-18T13:32:16.568Z", - "user": 2, - "content_type": null, - "object_id": "81", - "object_repr": "Cotisations Sociale UCM", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountHTva." - } -}, -{ - "model": "admin.logentry", - "pk": 216, - "fields": { - "action_time": "2016-06-18T13:33:21.408Z", - "user": 2, - "content_type": 7, - "object_id": "9", - "object_repr": "Revenu (100% en 2016)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 217, - "fields": { - "action_time": "2016-06-18T13:33:52.517Z", - "user": 2, - "content_type": 8, - "object_id": "10", - "object_repr": "Revenu (Revenu (100.00% en 2016) - 1)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 218, - "fields": { - "action_time": "2016-06-18T13:33:57.626Z", - "user": 2, - "content_type": null, - "object_id": "82", - "object_repr": "Revenu", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 219, - "fields": { - "action_time": "2016-06-18T13:34:13.248Z", - "user": 2, - "content_type": 8, - "object_id": "10", - "object_repr": "Revenu (Revenu (100.00% en 2016) - 0)", - "action_flag": 2, - "change_message": "Modifi\u00e9 percent." - } -}, -{ - "model": "admin.logentry", - "pk": 220, - "fields": { - "action_time": "2016-06-18T13:34:26.028Z", - "user": 2, - "content_type": null, - "object_id": "82", - "object_repr": "Revenu", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountHTva." - } -}, -{ - "model": "admin.logentry", - "pk": 221, - "fields": { - "action_time": "2016-06-18T13:35:10.608Z", - "user": 2, - "content_type": null, - "object_id": "83", - "object_repr": "Revenu", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 222, - "fields": { - "action_time": "2016-06-18T13:35:42.752Z", - "user": 2, - "content_type": null, - "object_id": "84", - "object_repr": "Revenu", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 223, - "fields": { - "action_time": "2016-06-18T13:36:13.375Z", - "user": 2, - "content_type": null, - "object_id": "85", - "object_repr": "Revenu", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 224, - "fields": { - "action_time": "2016-06-18T13:36:58.748Z", - "user": 2, - "content_type": null, - "object_id": "86", - "object_repr": "Revenu", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 225, - "fields": { - "action_time": "2016-06-18T13:37:38.974Z", - "user": 2, - "content_type": null, - "object_id": "82", - "object_repr": "Recette GBG (Janvier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 226, - "fields": { - "action_time": "2016-06-18T13:37:53.079Z", - "user": 2, - "content_type": null, - "object_id": "83", - "object_repr": "Recette GBG (F\u00e9vrier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 227, - "fields": { - "action_time": "2016-06-18T13:37:58.276Z", - "user": 2, - "content_type": null, - "object_id": "84", - "object_repr": "Recette GBG (Mars)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 228, - "fields": { - "action_time": "2016-06-18T13:38:04.359Z", - "user": 2, - "content_type": null, - "object_id": "85", - "object_repr": "Recette GBG (Avril)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 229, - "fields": { - "action_time": "2016-06-18T13:38:10.423Z", - "user": 2, - "content_type": null, - "object_id": "86", - "object_repr": "Recette GBG (Mai)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 230, - "fields": { - "action_time": "2016-06-18T13:39:05.429Z", - "user": 2, - "content_type": null, - "object_id": "86", - "object_repr": "Recette GBG (Mai)", - "action_flag": 2, - "change_message": "Modifi\u00e9 date." - } -}, -{ - "model": "admin.logentry", - "pk": 231, - "fields": { - "action_time": "2016-06-18T13:39:40.115Z", - "user": 2, - "content_type": null, - "object_id": "87", - "object_repr": "Cotisation UCM", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 232, - "fields": { - "action_time": "2016-06-18T13:42:20.302Z", - "user": 2, - "content_type": 7, - "object_id": "8", - "object_repr": "Cotisations Sociale UCM (0% en 2016)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 233, - "fields": { - "action_time": "2016-06-18T13:42:25.333Z", - "user": 2, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (0% en 2015)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 234, - "fields": { - "action_time": "2016-06-18T13:42:51.569Z", - "user": 2, - "content_type": null, - "object_id": "83", - "object_repr": "Recette GBG (F\u00e9vrier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountHTva." - } -}, -{ - "model": "admin.logentry", - "pk": 235, - "fields": { - "action_time": "2016-06-18T13:47:52.262Z", - "user": 2, - "content_type": null, - "object_id": "83", - "object_repr": "Recette GBG (F\u00e9vrier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountTva et amountHTva." - } -}, -{ - "model": "admin.logentry", - "pk": 236, - "fields": { - "action_time": "2016-06-18T13:48:35.117Z", - "user": 2, - "content_type": 7, - "object_id": "9", - "object_repr": "Revenu (0.00% en 2016)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 237, - "fields": { - "action_time": "2016-06-18T13:48:39.530Z", - "user": 2, - "content_type": null, - "object_id": "86", - "object_repr": "Recette GBG (Mai)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountHTva." - } -}, -{ - "model": "admin.logentry", - "pk": 238, - "fields": { - "action_time": "2016-06-18T13:48:45.179Z", - "user": 2, - "content_type": null, - "object_id": "85", - "object_repr": "Recette GBG (Avril)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountHTva." - } -}, -{ - "model": "admin.logentry", - "pk": 239, - "fields": { - "action_time": "2016-06-18T13:48:50.180Z", - "user": 2, - "content_type": null, - "object_id": "84", - "object_repr": "Recette GBG (Mars)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountHTva." - } -}, -{ - "model": "admin.logentry", - "pk": 240, - "fields": { - "action_time": "2016-06-18T13:49:50.542Z", - "user": 2, - "content_type": null, - "object_id": "83", - "object_repr": "Recette GBG (F\u00e9vrier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountHTva." - } -}, -{ - "model": "admin.logentry", - "pk": 241, - "fields": { - "action_time": "2016-06-18T13:49:54.905Z", - "user": 2, - "content_type": null, - "object_id": "82", - "object_repr": "Recette GBG (Janvier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountHTva." - } -}, -{ - "model": "admin.logentry", - "pk": 242, - "fields": { - "action_time": "2016-06-18T13:52:14.836Z", - "user": 2, - "content_type": null, - "object_id": "88", - "object_repr": "Cotisation UCM", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 243, - "fields": { - "action_time": "2016-06-18T13:52:34.781Z", - "user": 2, - "content_type": 7, - "object_id": "8", - "object_repr": "Cotisations Sociale UCM (100.00% en 2016)", - "action_flag": 2, - "change_message": "Modifi\u00e9 quotity." - } -}, -{ - "model": "admin.logentry", - "pk": 244, - "fields": { - "action_time": "2016-06-18T13:52:36.860Z", - "user": 2, - "content_type": null, - "object_id": "88", - "object_repr": "Cotisation UCM", - "action_flag": 2, - "change_message": "Modifi\u00e9 amountHTva." - } -}, -{ - "model": "admin.logentry", - "pk": 245, - "fields": { - "action_time": "2016-06-18T13:53:36.341Z", - "user": 2, - "content_type": null, - "object_id": "7", - "object_repr": "Recette GBG (Janvier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 246, - "fields": { - "action_time": "2016-06-18T13:53:41.733Z", - "user": 2, - "content_type": null, - "object_id": "12", - "object_repr": "Recette GBG (F\u00e9vrier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 247, - "fields": { - "action_time": "2016-06-18T13:53:45.644Z", - "user": 2, - "content_type": null, - "object_id": "14", - "object_repr": "Recette GBG (F\u00e9vrier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 248, - "fields": { - "action_time": "2016-06-18T13:53:50.076Z", - "user": 2, - "content_type": null, - "object_id": "17", - "object_repr": "Recette GBG (Mars)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 249, - "fields": { - "action_time": "2016-06-18T13:53:53.508Z", - "user": 2, - "content_type": null, - "object_id": "27", - "object_repr": "Recette GBG (Mai)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 250, - "fields": { - "action_time": "2016-06-18T13:53:57.164Z", - "user": 2, - "content_type": null, - "object_id": "31", - "object_repr": "Recette GBG (Avril + Juin)", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 251, - "fields": { - "action_time": "2016-06-19T14:57:02.436Z", - "user": 2, - "content_type": null, - "object_id": "89", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 252, - "fields": { - "action_time": "2016-06-19T14:57:38.485Z", - "user": 2, - "content_type": null, - "object_id": "90", - "object_repr": "Carburant OCTA+ (Saintes)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 253, - "fields": { - "action_time": "2016-06-19T14:58:37.792Z", - "user": 2, - "content_type": null, - "object_id": "91", - "object_repr": "Carburant DATS (Braine)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 254, - "fields": { - "action_time": "2016-06-19T20:49:58.755Z", - "user": 2, - "content_type": null, - "object_id": "92", - "object_repr": "Carburant Q8 (Grand Bigard)", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 255, - "fields": { - "action_time": "2016-06-20T07:11:19.145Z", - "user": 2, - "content_type": null, - "object_id": "81", - "object_repr": "Cotisations Sociale UCM", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 256, - "fields": { - "action_time": "2016-06-20T07:11:23.062Z", - "user": 2, - "content_type": null, - "object_id": "87", - "object_repr": "Cotisation UCM", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 257, - "fields": { - "action_time": "2016-06-20T07:11:27.031Z", - "user": 2, - "content_type": null, - "object_id": "88", - "object_repr": "Cotisation UCM", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 258, - "fields": { - "action_time": "2016-06-20T07:11:43.956Z", - "user": 2, - "content_type": null, - "object_id": "82", - "object_repr": "Recette GBG (Janvier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 259, - "fields": { - "action_time": "2016-06-20T07:11:46.462Z", - "user": 2, - "content_type": null, - "object_id": "83", - "object_repr": "Recette GBG (F\u00e9vrier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 260, - "fields": { - "action_time": "2016-06-20T07:11:49.622Z", - "user": 2, - "content_type": null, - "object_id": "84", - "object_repr": "Recette GBG (Mars)", - "action_flag": 2, - "change_message": "Modifi\u00e9 ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 261, - "fields": { - "action_time": "2016-06-20T07:12:05.276Z", - "user": 2, - "content_type": null, - "object_id": "84", - "object_repr": "Recette GBG (Mars)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 262, - "fields": { - "action_time": "2016-06-20T07:12:07.340Z", - "user": 2, - "content_type": null, - "object_id": "85", - "object_repr": "Recette GBG (Avril)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 263, - "fields": { - "action_time": "2016-06-20T07:12:09.669Z", - "user": 2, - "content_type": null, - "object_id": "86", - "object_repr": "Recette GBG (Mai)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 264, - "fields": { - "action_time": "2016-06-20T07:12:20.693Z", - "user": 2, - "content_type": null, - "object_id": "82", - "object_repr": "Recette GBG (Janvier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 265, - "fields": { - "action_time": "2016-06-20T07:12:23.727Z", - "user": 2, - "content_type": null, - "object_id": "83", - "object_repr": "Recette GBG (F\u00e9vrier)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 266, - "fields": { - "action_time": "2016-06-20T07:17:27.480Z", - "user": 2, - "content_type": null, - "object_id": "81", - "object_repr": "Cotisations UCM", - "action_flag": 2, - "change_message": "Modifi\u00e9 information." - } -}, -{ - "model": "admin.logentry", - "pk": 267, - "fields": { - "action_time": "2016-06-20T07:17:36.261Z", - "user": 2, - "content_type": null, - "object_id": "92", - "object_repr": "Carburant Q8 (Grand Bigard)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 268, - "fields": { - "action_time": "2016-06-20T07:17:39.419Z", - "user": 2, - "content_type": null, - "object_id": "91", - "object_repr": "Carburant DATS (Braine)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 269, - "fields": { - "action_time": "2016-06-20T07:17:42.090Z", - "user": 2, - "content_type": null, - "object_id": "90", - "object_repr": "Carburant OCTA+ (Saintes)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 270, - "fields": { - "action_time": "2016-06-20T07:17:45.034Z", - "user": 2, - "content_type": null, - "object_id": "89", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 271, - "fields": { - "action_time": "2016-06-20T07:18:10.573Z", - "user": 2, - "content_type": null, - "object_id": "68", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 272, - "fields": { - "action_time": "2016-06-20T07:18:14.013Z", - "user": 2, - "content_type": null, - "object_id": "69", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 273, - "fields": { - "action_time": "2016-06-20T07:18:16.842Z", - "user": 2, - "content_type": null, - "object_id": "70", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 274, - "fields": { - "action_time": "2016-06-20T07:18:19.561Z", - "user": 2, - "content_type": null, - "object_id": "71", - "object_repr": "Carburant DATS (Braine)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 275, - "fields": { - "action_time": "2016-06-20T07:18:21.928Z", - "user": 2, - "content_type": null, - "object_id": "72", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 276, - "fields": { - "action_time": "2016-06-20T07:18:24.160Z", - "user": 2, - "content_type": null, - "object_id": "73", - "object_repr": "Carburant Texaco (Anderlecht)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 277, - "fields": { - "action_time": "2016-06-20T07:18:26.889Z", - "user": 2, - "content_type": null, - "object_id": "74", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 278, - "fields": { - "action_time": "2016-06-20T07:18:29.488Z", - "user": 2, - "content_type": null, - "object_id": "75", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 279, - "fields": { - "action_time": "2016-06-20T07:18:31.833Z", - "user": 2, - "content_type": null, - "object_id": "76", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 280, - "fields": { - "action_time": "2016-06-20T07:18:34.489Z", - "user": 2, - "content_type": null, - "object_id": "77", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 281, - "fields": { - "action_time": "2016-06-20T07:18:37.472Z", - "user": 2, - "content_type": null, - "object_id": "78", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 282, - "fields": { - "action_time": "2016-06-20T07:18:39.768Z", - "user": 2, - "content_type": null, - "object_id": "79", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 283, - "fields": { - "action_time": "2016-06-20T07:18:42.144Z", - "user": 2, - "content_type": null, - "object_id": "80", - "object_repr": "Carburant Roodstop (Soignies)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 284, - "fields": { - "action_time": "2016-06-20T07:21:02.947Z", - "user": 2, - "content_type": null, - "object_id": "62", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 285, - "fields": { - "action_time": "2016-06-20T07:27:12.073Z", - "user": 2, - "content_type": null, - "object_id": "61", - "object_repr": "TurnClub Ten Gaerde (D\u00e9cembre)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 286, - "fields": { - "action_time": "2016-06-20T07:27:15.114Z", - "user": 2, - "content_type": null, - "object_id": "55", - "object_repr": "Carburant DATS (rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 287, - "fields": { - "action_time": "2016-06-20T07:27:17.355Z", - "user": 2, - "content_type": null, - "object_id": "63", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 288, - "fields": { - "action_time": "2016-06-20T07:27:20.479Z", - "user": 2, - "content_type": null, - "object_id": "60", - "object_repr": "TurnClub Ten Gaerde (Novembre)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 289, - "fields": { - "action_time": "2016-06-20T07:27:23.122Z", - "user": 2, - "content_type": null, - "object_id": "64", - "object_repr": "Carburant Octa+ (Saintes)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 290, - "fields": { - "action_time": "2016-06-20T07:27:25.380Z", - "user": 2, - "content_type": null, - "object_id": "66", - "object_repr": "Carburant - Octa+ (Saintes)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 291, - "fields": { - "action_time": "2016-06-20T07:27:27.719Z", - "user": 2, - "content_type": null, - "object_id": "57", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 292, - "fields": { - "action_time": "2016-06-20T07:27:29.927Z", - "user": 2, - "content_type": null, - "object_id": "54", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 293, - "fields": { - "action_time": "2016-06-20T07:27:32.697Z", - "user": 2, - "content_type": null, - "object_id": "53", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 294, - "fields": { - "action_time": "2016-06-20T07:27:35.360Z", - "user": 2, - "content_type": null, - "object_id": "56", - "object_repr": "Carburant Octa+ (Saintes)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 295, - "fields": { - "action_time": "2016-06-20T07:27:40.151Z", - "user": 2, - "content_type": null, - "object_id": "59", - "object_repr": "TurnClub Ten Gaerde (Octobre)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 296, - "fields": { - "action_time": "2016-06-20T07:27:42.832Z", - "user": 2, - "content_type": null, - "object_id": "52", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 297, - "fields": { - "action_time": "2016-06-20T07:27:45.263Z", - "user": 2, - "content_type": null, - "object_id": "51", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 298, - "fields": { - "action_time": "2016-06-20T07:27:48.252Z", - "user": 2, - "content_type": null, - "object_id": "58", - "object_repr": "TurnClub Ten Gaerde (Septembre)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid et ticket." - } -}, -{ - "model": "admin.logentry", - "pk": 299, - "fields": { - "action_time": "2016-06-20T07:27:50.743Z", - "user": 2, - "content_type": null, - "object_id": "50", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 300, - "fields": { - "action_time": "2016-06-20T07:27:52.871Z", - "user": 2, - "content_type": null, - "object_id": "49", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 301, - "fields": { - "action_time": "2016-06-20T07:27:55.175Z", - "user": 2, - "content_type": null, - "object_id": "47", - "object_repr": "Carburant (DATS Rebecq)", - "action_flag": 2, - "change_message": "Modifi\u00e9 paid." - } -}, -{ - "model": "admin.logentry", - "pk": 302, - "fields": { - "action_time": "2016-06-20T07:32:42.424Z", - "user": 2, - "content_type": null, - "object_id": "93", - "object_repr": "Entretient voiture 30.000Km", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 303, - "fields": { - "action_time": "2016-06-20T07:43:07.083Z", - "user": 2, - "content_type": null, - "object_id": "66", - "object_repr": "Carburant - Octa+ (Saintes)", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 304, - "fields": { - "action_time": "2016-08-01T17:46:27.511Z", - "user": 2, - "content_type": null, - "object_id": "94", - "object_repr": "achat training", - "action_flag": 1, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 305, - "fields": { - "action_time": "2016-08-01T17:46:54.605Z", - "user": 2, - "content_type": null, - "object_id": "94", - "object_repr": "achat training", - "action_flag": 2, - "change_message": "Modifi\u00e9 description." - } -}, -{ - "model": "admin.logentry", - "pk": 306, - "fields": { - "action_time": "2016-08-01T17:47:38.750Z", - "user": 2, - "content_type": null, - "object_id": "94", - "object_repr": "achat training", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 307, - "fields": { - "action_time": "2016-11-01T17:12:50.083Z", - "user": 2, - "content_type": 8, - "object_id": "8", - "object_repr": "Diesel (Belgique) (Voiture (35.00% en 2016) - 0.210)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 308, - "fields": { - "action_time": "2016-11-01T17:13:00.684Z", - "user": 2, - "content_type": 8, - "object_id": "1", - "object_repr": "Diesel (Belgique) (Voiture (35.00% en 2015) - 0.210)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 309, - "fields": { - "action_time": "2016-11-01T17:13:03.460Z", - "user": 2, - "content_type": 8, - "object_id": "2", - "object_repr": "Revenu (Revenus (0.00% en 2015) - 0.000)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 310, - "fields": { - "action_time": "2016-11-01T17:13:05.524Z", - "user": 2, - "content_type": 8, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (Cotisations Sociale UCM (0.00% en 2015) - 0.000)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 311, - "fields": { - "action_time": "2016-11-01T17:13:08.267Z", - "user": 2, - "content_type": 8, - "object_id": "4", - "object_repr": "Divers (Sport (100.00% en 2015) - 0.210)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 312, - "fields": { - "action_time": "2016-11-01T17:13:10.335Z", - "user": 2, - "content_type": 8, - "object_id": "5", - "object_repr": "Livre (France) (Sport (100.00% en 2015) - 0.055)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 313, - "fields": { - "action_time": "2016-11-01T17:13:12.412Z", - "user": 2, - "content_type": 8, - "object_id": "6", - "object_repr": "Diesel (France) (Voiture (35.00% en 2015) - 0.200)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 314, - "fields": { - "action_time": "2016-11-01T17:13:16.803Z", - "user": 2, - "content_type": 8, - "object_id": "7", - "object_repr": "Livre (Belgique) (Sport (100.00% en 2015) - 0.060)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 315, - "fields": { - "action_time": "2016-11-01T17:13:18.818Z", - "user": 2, - "content_type": 8, - "object_id": "8", - "object_repr": "Diesel (Belgique) (Voiture (35.00% en 2016) - 0.210)", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 316, - "fields": { - "action_time": "2016-11-01T17:13:21.252Z", - "user": 2, - "content_type": 8, - "object_id": "9", - "object_repr": "Cotisations Sociale UCM (Cotisations Sociale UCM (100.00% en 2016) - 0.000)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 317, - "fields": { - "action_time": "2016-11-01T17:13:23.475Z", - "user": 2, - "content_type": 8, - "object_id": "10", - "object_repr": "Revenu (Revenu (0.00% en 2016) - 0.000)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 318, - "fields": { - "action_time": "2016-11-01T17:25:19.979Z", - "user": 2, - "content_type": 7, - "object_id": "9", - "object_repr": "Revenu (0.00% en 2016)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 319, - "fields": { - "action_time": "2016-11-01T17:28:48.146Z", - "user": 2, - "content_type": 7, - "object_id": "8", - "object_repr": "Cotisations Sociale UCM (100.00% en 2016)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 320, - "fields": { - "action_time": "2016-11-01T17:29:18.888Z", - "user": 2, - "content_type": 7, - "object_id": "7", - "object_repr": "Voiture (35.00% en 2016)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 321, - "fields": { - "action_time": "2016-11-01T17:29:31.776Z", - "user": 2, - "content_type": 7, - "object_id": "1", - "object_repr": "Voiture (35.00% en 2015)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 322, - "fields": { - "action_time": "2016-11-01T17:29:35.697Z", - "user": 2, - "content_type": 7, - "object_id": "2", - "object_repr": "Revenus (0.00% en 2015)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 323, - "fields": { - "action_time": "2016-11-01T17:29:39.896Z", - "user": 2, - "content_type": 7, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (0.00% en 2015)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 324, - "fields": { - "action_time": "2016-11-01T17:30:37.558Z", - "user": 2, - "content_type": 8, - "object_id": "11", - "object_repr": "Normale (21%) (de 2016-01-01 \u00e0 None)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 325, - "fields": { - "action_time": "2016-11-01T17:32:33.787Z", - "user": 2, - "content_type": 7, - "object_id": "5", - "object_repr": "Sport (100.00% en 2015)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 326, - "fields": { - "action_time": "2016-11-01T17:32:48.064Z", - "user": 2, - "content_type": 7, - "object_id": "6", - "object_repr": "Cadeau (50.00% en 2015)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 327, - "fields": { - "action_time": "2016-11-01T17:34:39.170Z", - "user": 2, - "content_type": 7, - "object_id": "7", - "object_repr": "Voiture (35.00% en 2016)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 328, - "fields": { - "action_time": "2016-11-01T17:34:54.069Z", - "user": 2, - "content_type": 7, - "object_id": "6", - "object_repr": "Cadeau (50.00% en 2015)", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 329, - "fields": { - "action_time": "2016-11-01T17:35:01.349Z", - "user": 2, - "content_type": 7, - "object_id": "5", - "object_repr": "Sport (100.00% en 2015)", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 330, - "fields": { - "action_time": "2016-11-01T17:38:50.166Z", - "user": 2, - "content_type": 8, - "object_id": "12", - "object_repr": "R\u00e9duite (6%) (de 2015-10-01 \u00e0 None)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 331, - "fields": { - "action_time": "2016-11-01T17:39:13.998Z", - "user": 2, - "content_type": 8, - "object_id": "13", - "object_repr": "R\u00e9duite (12%) (de 2015-01-01 \u00e0 None)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 332, - "fields": { - "action_time": "2016-11-01T17:43:44.616Z", - "user": 2, - "content_type": 7, - "object_id": "4", - "object_repr": "Restaurant (69.00% en 2015)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 333, - "fields": { - "action_time": "2016-11-01T17:44:35.676Z", - "user": 2, - "content_type": 7, - "object_id": "1", - "object_repr": "Voiture (35.00% en 2015)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 334, - "fields": { - "action_time": "2016-11-01T17:45:03.902Z", - "user": 2, - "content_type": 8, - "object_id": "10", - "object_repr": "Revenu (0%) (de 2015-01-01 \u00e0 None)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 335, - "fields": { - "action_time": "2016-11-01T17:45:17.307Z", - "user": 2, - "content_type": 7, - "object_id": "9", - "object_repr": "Revenu (0.00% en 2016)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 336, - "fields": { - "action_time": "2016-11-01T17:45:23.906Z", - "user": 2, - "content_type": 7, - "object_id": "2", - "object_repr": "Revenus (0.00% en 2015)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"tva_type\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 337, - "fields": { - "action_time": "2016-11-01T17:46:24.647Z", - "user": 2, - "content_type": 8, - "object_id": "3", - "object_repr": "Cotisations Sociale UCM (0%) (de 2015-01-01 \u00e0 None)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 338, - "fields": { - "action_time": "2016-11-01T17:47:51.157Z", - "user": 2, - "content_type": 8, - "object_id": "9", - "object_repr": "Cotisations Sociale UCM (de 2015-01-01 \u00e0 None)", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 339, - "fields": { - "action_time": "2016-11-01T17:47:59.994Z", - "user": 2, - "content_type": 8, - "object_id": "4", - "object_repr": "Divers (de 2015-01-01 \u00e0 None)", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 340, - "fields": { - "action_time": "2016-11-01T17:47:59.996Z", - "user": 2, - "content_type": 8, - "object_id": "2", - "object_repr": "Revenu (de 2015-01-01 \u00e0 None)", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 341, - "fields": { - "action_time": "2016-11-01T17:48:07.729Z", - "user": 2, - "content_type": 8, - "object_id": "1", - "object_repr": "Diesel (Belgique) (de 2015-01-01 \u00e0 None)", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 342, - "fields": { - "action_time": "2016-11-01T17:48:23.647Z", - "user": 2, - "content_type": 8, - "object_id": "7", - "object_repr": "Livre (Belgique) (de 2015-01-01 \u00e0 None)", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 343, - "fields": { - "action_time": "2016-11-01T17:49:00.064Z", - "user": 2, - "content_type": 8, - "object_id": "8", - "object_repr": "Diesel (Belgique) (de 2015-01-01 \u00e0 None)", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 344, - "fields": { - "action_time": "2016-11-01T17:55:47.995Z", - "user": 2, - "content_type": 8, - "object_id": "12", - "object_repr": "R\u00e9duite (6%) (de 2015-01-01 \u00e0 None)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"datebegin\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 345, - "fields": { - "action_time": "2016-11-01T18:21:11.008Z", - "user": 2, - "content_type": 10, - "object_id": "1", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 346, - "fields": { - "action_time": "2016-11-01T18:21:55.308Z", - "user": 2, - "content_type": 10, - "object_id": "1", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"amountTva\", \"amountHTva\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 347, - "fields": { - "action_time": "2016-11-02T07:55:56.085Z", - "user": 2, - "content_type": 10, - "object_id": "2", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 348, - "fields": { - "action_time": "2016-11-02T07:57:31.917Z", - "user": 2, - "content_type": 10, - "object_id": "3", - "object_repr": "Carburant Texaco (Anderlecht)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 349, - "fields": { - "action_time": "2016-11-02T07:58:49.145Z", - "user": 2, - "content_type": 10, - "object_id": "4", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 350, - "fields": { - "action_time": "2016-11-02T08:00:08.279Z", - "user": 2, - "content_type": 10, - "object_id": "5", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 351, - "fields": { - "action_time": "2016-11-02T08:02:53.611Z", - "user": 2, - "content_type": 10, - "object_id": "5", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"amountTva\", \"amountHTva\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 352, - "fields": { - "action_time": "2016-11-02T08:02:57.608Z", - "user": 2, - "content_type": 10, - "object_id": "4", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"amountTva\", \"amountHTva\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 353, - "fields": { - "action_time": "2016-11-02T08:03:01.234Z", - "user": 2, - "content_type": 10, - "object_id": "3", - "object_repr": "Carburant Texaco (Anderlecht)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"amountTva\", \"amountHTva\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 354, - "fields": { - "action_time": "2016-11-02T08:03:04.448Z", - "user": 2, - "content_type": 10, - "object_id": "2", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"amountTva\", \"amountHTva\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 355, - "fields": { - "action_time": "2016-11-02T08:30:39.239Z", - "user": 2, - "content_type": 11, - "object_id": "1", - "object_repr": "Client object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 356, - "fields": { - "action_time": "2016-11-02T08:47:59.106Z", - "user": 2, - "content_type": 12, - "object_id": "1", - "object_repr": "Contract object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 357, - "fields": { - "action_time": "2016-11-02T09:02:28.408Z", - "user": 2, - "content_type": 13, - "object_id": "1", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 358, - "fields": { - "action_time": "2016-11-02T09:02:55.745Z", - "user": 2, - "content_type": 13, - "object_id": "1", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 359, - "fields": { - "action_time": "2016-11-02T09:08:31.596Z", - "user": 2, - "content_type": 13, - "object_id": "1", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 360, - "fields": { - "action_time": "2016-11-02T09:09:23.750Z", - "user": 2, - "content_type": 13, - "object_id": "2", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 361, - "fields": { - "action_time": "2016-11-02T09:13:24.695Z", - "user": 2, - "content_type": 13, - "object_id": "3", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 362, - "fields": { - "action_time": "2016-11-02T09:18:20.085Z", - "user": 2, - "content_type": 12, - "object_id": "1", - "object_repr": "S\u00e9minaire Technique 2016", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"client\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 363, - "fields": { - "action_time": "2016-11-02T12:03:56.593Z", - "user": 2, - "content_type": 13, - "object_id": "2", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 364, - "fields": { - "action_time": "2016-11-02T12:04:03.230Z", - "user": 2, - "content_type": 13, - "object_id": "1", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 365, - "fields": { - "action_time": "2016-11-02T13:54:51.344Z", - "user": 2, - "content_type": 12, - "object_id": "1", - "object_repr": "S\u00e9minaire Technique 2016", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 366, - "fields": { - "action_time": "2016-11-02T13:54:55.015Z", - "user": 2, - "content_type": 12, - "object_id": "1", - "object_repr": "S\u00e9minaire Technique 2016", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 367, - "fields": { - "action_time": "2016-11-02T14:00:28.988Z", - "user": 2, - "content_type": 11, - "object_id": "1", - "object_repr": "F\u00e9d\u00e9ration francophone de Gymnastique et de Fitness", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"company_number\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 368, - "fields": { - "action_time": "2016-11-03T09:58:34.667Z", - "user": 2, - "content_type": 12, - "object_id": "2", - "object_repr": "Formation des Cadres MSIn GAF/GAM et MSEd GAF", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 369, - "fields": { - "action_time": "2016-11-03T09:59:47.925Z", - "user": 2, - "content_type": 13, - "object_id": "4", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 370, - "fields": { - "action_time": "2016-11-03T10:00:17.881Z", - "user": 2, - "content_type": 13, - "object_id": "5", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 371, - "fields": { - "action_time": "2016-11-03T10:00:53.977Z", - "user": 2, - "content_type": 13, - "object_id": "6", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 372, - "fields": { - "action_time": "2016-11-03T10:01:23.744Z", - "user": 2, - "content_type": 13, - "object_id": "7", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 373, - "fields": { - "action_time": "2016-11-03T10:01:46.080Z", - "user": 2, - "content_type": 13, - "object_id": "8", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 374, - "fields": { - "action_time": "2016-11-03T10:02:11.685Z", - "user": 2, - "content_type": 13, - "object_id": "9", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 375, - "fields": { - "action_time": "2016-11-03T10:02:30.838Z", - "user": 2, - "content_type": 13, - "object_id": "10", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 376, - "fields": { - "action_time": "2016-11-03T10:07:01.472Z", - "user": 2, - "content_type": 13, - "object_id": "11", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 377, - "fields": { - "action_time": "2016-11-03T10:07:22.817Z", - "user": 2, - "content_type": 13, - "object_id": "12", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 378, - "fields": { - "action_time": "2016-11-03T10:09:03.528Z", - "user": 2, - "content_type": 13, - "object_id": "13", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 379, - "fields": { - "action_time": "2016-11-03T10:09:27.847Z", - "user": 2, - "content_type": 13, - "object_id": "14", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 380, - "fields": { - "action_time": "2016-11-03T18:17:40.822Z", - "user": 2, - "content_type": 12, - "object_id": "2", - "object_repr": "Formation des Cadres MSIn GAF/GAM et MSEd GAF", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 381, - "fields": { - "action_time": "2016-11-03T18:21:25.164Z", - "user": 2, - "content_type": 12, - "object_id": "2", - "object_repr": "Formation des Cadres MSIn GAF/GAM et MSEd GAF", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 382, - "fields": { - "action_time": "2016-11-03T18:21:35.445Z", - "user": 2, - "content_type": 12, - "object_id": "2", - "object_repr": "Formation des Cadres MSIn GAF/GAM et MSEd GAF", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 383, - "fields": { - "action_time": "2016-11-03T18:21:39.096Z", - "user": 2, - "content_type": 12, - "object_id": "1", - "object_repr": "S\u00e9minaire Technique 2016", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 384, - "fields": { - "action_time": "2016-11-03T18:22:01.140Z", - "user": 2, - "content_type": 12, - "object_id": "1", - "object_repr": "Pr\u00eat trampoline", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 385, - "fields": { - "action_time": "2016-11-03T18:24:05.803Z", - "user": 2, - "content_type": 12, - "object_id": "3", - "object_repr": "S\u00e9minaire Technique 2016", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 386, - "fields": { - "action_time": "2016-11-03T18:24:09.469Z", - "user": 2, - "content_type": 12, - "object_id": "3", - "object_repr": "S\u00e9minaire Technique 2016", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 387, - "fields": { - "action_time": "2016-11-03T18:25:20.560Z", - "user": 2, - "content_type": 13, - "object_id": "1", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 388, - "fields": { - "action_time": "2016-11-03T18:25:24.621Z", - "user": 2, - "content_type": 13, - "object_id": "3", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 389, - "fields": { - "action_time": "2016-11-03T18:25:30.621Z", - "user": 2, - "content_type": 13, - "object_id": "2", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 390, - "fields": { - "action_time": "2016-11-04T07:57:18.905Z", - "user": 2, - "content_type": 12, - "object_id": "3", - "object_repr": "S\u00e9minaire Technique 2016", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 391, - "fields": { - "action_time": "2016-11-04T07:57:28.119Z", - "user": 2, - "content_type": 12, - "object_id": "2", - "object_repr": "Formation des Cadres MSIn GAF/GAM et MSEd GAF", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"is_finished\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 392, - "fields": { - "action_time": "2016-11-04T16:37:39.162Z", - "user": 2, - "content_type": 12, - "object_id": "3", - "object_repr": "S\u00e9minaire Technique 2016", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 393, - "fields": { - "action_time": "2016-11-04T16:37:49.785Z", - "user": 2, - "content_type": 12, - "object_id": "3", - "object_repr": "S\u00e9minaire Technique 2016", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 394, - "fields": { - "action_time": "2016-11-04T16:38:04.947Z", - "user": 2, - "content_type": 12, - "object_id": "2", - "object_repr": "Formation des Cadres MSIn GAF/GAM et MSEd GAF", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 395, - "fields": { - "action_time": "2016-11-04T16:38:17.691Z", - "user": 2, - "content_type": 12, - "object_id": "1", - "object_repr": "Pr\u00eat trampoline", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 396, - "fields": { - "action_time": "2016-11-04T16:54:16.905Z", - "user": 2, - "content_type": 12, - "object_id": "2", - "object_repr": "Formation MSIn GAF/GAM et MSEd GAF", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 397, - "fields": { - "action_time": "2016-11-04T17:04:46.958Z", - "user": 2, - "content_type": 12, - "object_id": "3", - "object_repr": "S\u00e9minaire Technique", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 398, - "fields": { - "action_time": "2016-11-04T17:10:12.377Z", - "user": 2, - "content_type": 10, - "object_id": "6", - "object_repr": "Recette GBG", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 399, - "fields": { - "action_time": "2016-11-04T17:10:50.137Z", - "user": 2, - "content_type": 10, - "object_id": "7", - "object_repr": "Recette GBG (F\u00e9vrier)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 400, - "fields": { - "action_time": "2016-11-04T17:11:23.486Z", - "user": 2, - "content_type": 10, - "object_id": "8", - "object_repr": "Recette GBG (Mars)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 401, - "fields": { - "action_time": "2016-11-04T17:12:04.495Z", - "user": 2, - "content_type": 10, - "object_id": "9", - "object_repr": "Recette GBG (Avril)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 402, - "fields": { - "action_time": "2016-11-04T17:12:50.208Z", - "user": 2, - "content_type": 10, - "object_id": "10", - "object_repr": "Recette GBG (Mai)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 403, - "fields": { - "action_time": "2016-11-05T12:15:46.687Z", - "user": 2, - "content_type": 10, - "object_id": "11", - "object_repr": "Cotisation UCM", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 404, - "fields": { - "action_time": "2016-11-05T12:16:13.679Z", - "user": 2, - "content_type": 10, - "object_id": "12", - "object_repr": "Cotisation UCM", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 405, - "fields": { - "action_time": "2016-11-05T12:29:04.507Z", - "user": 2, - "content_type": 10, - "object_id": "13", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 406, - "fields": { - "action_time": "2016-11-05T12:29:39.895Z", - "user": 2, - "content_type": 10, - "object_id": "14", - "object_repr": "Carburant OCTA+ (Saintes)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 407, - "fields": { - "action_time": "2016-11-05T12:30:12.803Z", - "user": 2, - "content_type": 10, - "object_id": "15", - "object_repr": "Entretient voiture 30.000Km", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 408, - "fields": { - "action_time": "2016-11-05T12:30:45.002Z", - "user": 2, - "content_type": 10, - "object_id": "16", - "object_repr": "Carburant DATS (Braine)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 409, - "fields": { - "action_time": "2016-11-05T12:31:08.743Z", - "user": 2, - "content_type": 10, - "object_id": "17", - "object_repr": "Carburant Q8 (Grand Bigard)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 410, - "fields": { - "action_time": "2016-11-05T12:31:33.183Z", - "user": 2, - "content_type": 10, - "object_id": "18", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 411, - "fields": { - "action_time": "2016-11-05T12:31:59.719Z", - "user": 2, - "content_type": 10, - "object_id": "19", - "object_repr": "Cotisation UCM", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 412, - "fields": { - "action_time": "2016-11-05T12:36:09.814Z", - "user": 2, - "content_type": 10, - "object_id": "15", - "object_repr": "Entretient voiture 30.000Km", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"description\", \"amountTva\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 413, - "fields": { - "action_time": "2016-11-05T12:36:43.080Z", - "user": 2, - "content_type": 10, - "object_id": "13", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"description\", \"amountTva\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 414, - "fields": { - "action_time": "2016-11-05T12:36:48.382Z", - "user": 2, - "content_type": 10, - "object_id": "14", - "object_repr": "Carburant OCTA+ (Saintes)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"description\", \"amountTva\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 415, - "fields": { - "action_time": "2016-11-09T18:05:49.785Z", - "user": 1, - "content_type": 11, - "object_id": "1", - "object_repr": "F\u00e9d\u00e9ration francophone de Gymnastique et de Fitness", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"address\", \"postal_code\", \"city\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 416, - "fields": { - "action_time": "2016-11-19T11:27:07.433Z", - "user": 2, - "content_type": 12, - "object_id": "4", - "object_repr": "Formation MSEd GAF", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 417, - "fields": { - "action_time": "2016-11-19T11:27:20.346Z", - "user": 2, - "content_type": 12, - "object_id": "2", - "object_repr": "Formation MSIn GAF/GAM", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 418, - "fields": { - "action_time": "2016-11-19T11:27:43.774Z", - "user": 2, - "content_type": 13, - "object_id": "9", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 419, - "fields": { - "action_time": "2016-11-19T11:27:48.795Z", - "user": 2, - "content_type": 13, - "object_id": "7", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 420, - "fields": { - "action_time": "2016-11-19T11:27:51.746Z", - "user": 2, - "content_type": 13, - "object_id": "5", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 421, - "fields": { - "action_time": "2016-11-19T11:27:55.560Z", - "user": 2, - "content_type": 13, - "object_id": "12", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 422, - "fields": { - "action_time": "2016-11-19T11:28:34.757Z", - "user": 2, - "content_type": 13, - "object_id": "8", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 423, - "fields": { - "action_time": "2016-11-19T11:29:47.408Z", - "user": 2, - "content_type": 13, - "object_id": "10", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 424, - "fields": { - "action_time": "2016-11-19T11:35:24.502Z", - "user": 2, - "content_type": 13, - "object_id": "15", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 425, - "fields": { - "action_time": "2016-11-19T11:36:49.599Z", - "user": 2, - "content_type": 12, - "object_id": "5", - "object_repr": "Cours de Juges", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 426, - "fields": { - "action_time": "2016-11-19T12:15:04.702Z", - "user": 2, - "content_type": 13, - "object_id": "16", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 427, - "fields": { - "action_time": "2016-11-19T12:15:22.600Z", - "user": 2, - "content_type": 13, - "object_id": "17", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 428, - "fields": { - "action_time": "2016-11-19T12:15:37.487Z", - "user": 2, - "content_type": 13, - "object_id": "18", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 429, - "fields": { - "action_time": "2016-11-19T12:16:44.356Z", - "user": 2, - "content_type": 13, - "object_id": "18", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 430, - "fields": { - "action_time": "2016-11-19T12:19:01.662Z", - "user": 2, - "content_type": 13, - "object_id": "19", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 431, - "fields": { - "action_time": "2016-11-19T12:19:21.958Z", - "user": 2, - "content_type": 13, - "object_id": "19", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 432, - "fields": { - "action_time": "2016-12-25T16:16:53.422Z", - "user": 2, - "content_type": 10, - "object_id": "20", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 433, - "fields": { - "action_time": "2016-12-25T16:17:50.664Z", - "user": 2, - "content_type": 10, - "object_id": "21", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 434, - "fields": { - "action_time": "2016-12-25T16:20:18.419Z", - "user": 2, - "content_type": 10, - "object_id": "22", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 435, - "fields": { - "action_time": "2016-12-25T16:21:43.975Z", - "user": 2, - "content_type": 10, - "object_id": "23", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 436, - "fields": { - "action_time": "2016-12-25T16:23:17.868Z", - "user": 2, - "content_type": 10, - "object_id": "24", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 437, - "fields": { - "action_time": "2016-12-25T16:24:03.178Z", - "user": 2, - "content_type": 10, - "object_id": "25", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 438, - "fields": { - "action_time": "2016-12-25T16:24:41.976Z", - "user": 2, - "content_type": 10, - "object_id": "26", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 439, - "fields": { - "action_time": "2016-12-25T16:25:21.775Z", - "user": 2, - "content_type": 10, - "object_id": "27", - "object_repr": "Carburant DATS (Rebec)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 440, - "fields": { - "action_time": "2016-12-25T16:26:37.839Z", - "user": 2, - "content_type": 10, - "object_id": "27", - "object_repr": "Carburant DATS (Rebec)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"amountTva\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 441, - "fields": { - "action_time": "2016-12-25T16:27:30.917Z", - "user": 2, - "content_type": 10, - "object_id": "28", - "object_repr": "Carburant Q8 (Erasme)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 442, - "fields": { - "action_time": "2016-12-25T16:28:14.039Z", - "user": 2, - "content_type": 10, - "object_id": "29", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 443, - "fields": { - "action_time": "2016-12-25T16:29:00.672Z", - "user": 2, - "content_type": 10, - "object_id": "30", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 444, - "fields": { - "action_time": "2016-12-25T16:29:49.740Z", - "user": 2, - "content_type": 10, - "object_id": "31", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 445, - "fields": { - "action_time": "2016-12-25T16:30:37.165Z", - "user": 2, - "content_type": 10, - "object_id": "32", - "object_repr": "Carburant Q8 (Erasme)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 446, - "fields": { - "action_time": "2016-12-25T16:31:17.698Z", - "user": 2, - "content_type": 10, - "object_id": "33", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 447, - "fields": { - "action_time": "2016-12-25T16:31:33.690Z", - "user": 2, - "content_type": 10, - "object_id": "25", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"description\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 448, - "fields": { - "action_time": "2016-12-25T16:31:51.194Z", - "user": 2, - "content_type": 10, - "object_id": "25", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[]" - } -}, -{ - "model": "admin.logentry", - "pk": 449, - "fields": { - "action_time": "2016-12-25T16:32:07.762Z", - "user": 2, - "content_type": 10, - "object_id": "28", - "object_repr": "Carburant Q8 (Erasme)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"description\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 450, - "fields": { - "action_time": "2016-12-25T16:33:20.838Z", - "user": 2, - "content_type": 10, - "object_id": "34", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 451, - "fields": { - "action_time": "2016-12-25T16:33:55.087Z", - "user": 2, - "content_type": 10, - "object_id": "35", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 452, - "fields": { - "action_time": "2016-12-25T16:34:15.852Z", - "user": 2, - "content_type": 10, - "object_id": "36", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 453, - "fields": { - "action_time": "2016-12-25T16:34:51.856Z", - "user": 2, - "content_type": 10, - "object_id": "37", - "object_repr": "Carburant Texaco (Anderlecht)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 454, - "fields": { - "action_time": "2016-12-25T16:35:19.393Z", - "user": 2, - "content_type": 10, - "object_id": "38", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 455, - "fields": { - "action_time": "2016-12-25T16:35:40.989Z", - "user": 2, - "content_type": 10, - "object_id": "39", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 456, - "fields": { - "action_time": "2016-12-25T16:36:13.768Z", - "user": 2, - "content_type": 10, - "object_id": "40", - "object_repr": "Carburant Roodstop (Soignies)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 457, - "fields": { - "action_time": "2016-12-25T16:36:39.182Z", - "user": 2, - "content_type": 10, - "object_id": "41", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 458, - "fields": { - "action_time": "2016-12-25T16:36:54.483Z", - "user": 2, - "content_type": 10, - "object_id": "42", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 459, - "fields": { - "action_time": "2016-12-25T16:37:16.415Z", - "user": 2, - "content_type": 10, - "object_id": "43", - "object_repr": "Carburant DATS (Braine)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 460, - "fields": { - "action_time": "2016-12-25T16:37:32.906Z", - "user": 2, - "content_type": 10, - "object_id": "44", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 461, - "fields": { - "action_time": "2016-12-25T16:38:00.012Z", - "user": 2, - "content_type": 10, - "object_id": "45", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 462, - "fields": { - "action_time": "2016-12-25T16:38:34.011Z", - "user": 2, - "content_type": 10, - "object_id": "46", - "object_repr": "Carburant Octa+ (Soignies)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 463, - "fields": { - "action_time": "2016-12-25T16:38:50.258Z", - "user": 2, - "content_type": 10, - "object_id": "47", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 464, - "fields": { - "action_time": "2016-12-25T16:39:37.556Z", - "user": 2, - "content_type": 10, - "object_id": "14", - "object_repr": "Carburant OCTA+ (Saintes)", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 465, - "fields": { - "action_time": "2016-12-25T16:39:37.559Z", - "user": 2, - "content_type": 10, - "object_id": "13", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 466, - "fields": { - "action_time": "2016-12-25T16:47:46.668Z", - "user": 2, - "content_type": 10, - "object_id": "48", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 467, - "fields": { - "action_time": "2016-12-25T16:48:27.089Z", - "user": 2, - "content_type": 10, - "object_id": "22", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 3, - "change_message": "" - } -}, -{ - "model": "admin.logentry", - "pk": 468, - "fields": { - "action_time": "2016-12-25T16:49:42.758Z", - "user": 2, - "content_type": 10, - "object_id": "49", - "object_repr": "Cotisation UCM", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 469, - "fields": { - "action_time": "2016-12-25T16:51:36.685Z", - "user": 2, - "content_type": 10, - "object_id": "16", - "object_repr": "Carburant DATS (Braine)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"ticket\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 470, - "fields": { - "action_time": "2016-12-25T16:51:54.636Z", - "user": 2, - "content_type": 10, - "object_id": "18", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"ticket\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 471, - "fields": { - "action_time": "2016-12-25T16:54:14.786Z", - "user": 2, - "content_type": 10, - "object_id": "17", - "object_repr": "Carburant Q8 (Grand Bigard)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"amountTva\", \"ticket\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 472, - "fields": { - "action_time": "2016-12-25T16:57:53.898Z", - "user": 2, - "content_type": 10, - "object_id": "50", - "object_repr": "Recette GBG", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 473, - "fields": { - "action_time": "2016-12-25T16:58:10.938Z", - "user": 2, - "content_type": 10, - "object_id": "50", - "object_repr": "Recette GBG (Novembre)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"information\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 474, - "fields": { - "action_time": "2016-12-25T16:58:43.090Z", - "user": 2, - "content_type": 10, - "object_id": "51", - "object_repr": "Recettes GBG (Octobre)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 475, - "fields": { - "action_time": "2016-12-25T16:59:12.750Z", - "user": 2, - "content_type": 10, - "object_id": "52", - "object_repr": "Recettes GBG (Septembre)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 476, - "fields": { - "action_time": "2016-12-25T17:00:08.012Z", - "user": 2, - "content_type": 10, - "object_id": "53", - "object_repr": "Payement Facture 2016-02", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 477, - "fields": { - "action_time": "2016-12-25T17:01:08.215Z", - "user": 2, - "content_type": 10, - "object_id": "54", - "object_repr": "Recettes GBG (Juin)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 478, - "fields": { - "action_time": "2016-12-25T17:16:02.417Z", - "user": 2, - "content_type": 10, - "object_id": "55", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 479, - "fields": { - "action_time": "2016-12-25T17:19:36.415Z", - "user": 2, - "content_type": 10, - "object_id": "56", - "object_repr": "Carburant Q8 (Vlezenbeek)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 480, - "fields": { - "action_time": "2016-12-25T17:32:13.065Z", - "user": 2, - "content_type": 10, - "object_id": "57", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 481, - "fields": { - "action_time": "2016-12-25T17:56:55.901Z", - "user": 2, - "content_type": 10, - "object_id": "27", - "object_repr": "Carburant DATS (Rebec)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"notes\", \"quotity\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 482, - "fields": { - "action_time": "2016-12-25T17:57:25.306Z", - "user": 2, - "content_type": 10, - "object_id": "27", - "object_repr": "Carburant DATS (Rebec)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"quotity\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 483, - "fields": { - "action_time": "2016-12-25T17:58:05.719Z", - "user": 2, - "content_type": 10, - "object_id": "27", - "object_repr": "Carburant DATS (Rebec)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"notes\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 484, - "fields": { - "action_time": "2016-12-25T17:59:37.928Z", - "user": 2, - "content_type": 10, - "object_id": "6", - "object_repr": "Recette GBG (Janvier)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"information\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 485, - "fields": { - "action_time": "2016-12-25T18:01:22.410Z", - "user": 2, - "content_type": 10, - "object_id": "41", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 486, - "fields": { - "action_time": "2016-12-25T18:01:25.913Z", - "user": 2, - "content_type": 10, - "object_id": "40", - "object_repr": "Carburant Roodstop (Soignies)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 487, - "fields": { - "action_time": "2016-12-25T18:01:28.960Z", - "user": 2, - "content_type": 10, - "object_id": "39", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 488, - "fields": { - "action_time": "2016-12-25T18:01:33.451Z", - "user": 2, - "content_type": 10, - "object_id": "38", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 489, - "fields": { - "action_time": "2016-12-25T18:01:36.497Z", - "user": 2, - "content_type": 10, - "object_id": "37", - "object_repr": "Carburant Texaco (Anderlecht)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 490, - "fields": { - "action_time": "2016-12-25T18:01:39.626Z", - "user": 2, - "content_type": 10, - "object_id": "35", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 491, - "fields": { - "action_time": "2016-12-25T18:01:43.564Z", - "user": 2, - "content_type": 10, - "object_id": "34", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 492, - "fields": { - "action_time": "2016-12-25T18:01:47.593Z", - "user": 2, - "content_type": 10, - "object_id": "28", - "object_repr": "Carburant Q8 (Erasme)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 493, - "fields": { - "action_time": "2016-12-25T18:01:51.312Z", - "user": 2, - "content_type": 10, - "object_id": "30", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 494, - "fields": { - "action_time": "2016-12-25T18:01:55.562Z", - "user": 2, - "content_type": 10, - "object_id": "23", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 495, - "fields": { - "action_time": "2016-12-25T18:02:21.107Z", - "user": 2, - "content_type": 10, - "object_id": "19", - "object_repr": "Cotisation UCM", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 496, - "fields": { - "action_time": "2016-12-25T18:02:24.163Z", - "user": 2, - "content_type": 10, - "object_id": "18", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 497, - "fields": { - "action_time": "2016-12-25T18:02:27.024Z", - "user": 2, - "content_type": 10, - "object_id": "17", - "object_repr": "Carburant Q8 (Grand Bigard)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 498, - "fields": { - "action_time": "2016-12-25T18:02:29.918Z", - "user": 2, - "content_type": 10, - "object_id": "16", - "object_repr": "Carburant DATS (Braine)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 499, - "fields": { - "action_time": "2016-12-25T18:02:33.319Z", - "user": 2, - "content_type": 10, - "object_id": "15", - "object_repr": "Entretient voiture 30.000Km", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 500, - "fields": { - "action_time": "2016-12-25T18:02:38.843Z", - "user": 2, - "content_type": 10, - "object_id": "46", - "object_repr": "Carburant Octa+ (Soignies)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 501, - "fields": { - "action_time": "2016-12-25T18:02:41.703Z", - "user": 2, - "content_type": 10, - "object_id": "47", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 502, - "fields": { - "action_time": "2016-12-25T18:02:45.622Z", - "user": 2, - "content_type": 10, - "object_id": "45", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 503, - "fields": { - "action_time": "2016-12-25T18:02:48.727Z", - "user": 2, - "content_type": 10, - "object_id": "44", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 504, - "fields": { - "action_time": "2016-12-25T18:02:52.246Z", - "user": 2, - "content_type": 10, - "object_id": "43", - "object_repr": "Carburant DATS (Braine)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 505, - "fields": { - "action_time": "2016-12-25T18:02:55.318Z", - "user": 2, - "content_type": 10, - "object_id": "42", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 506, - "fields": { - "action_time": "2016-12-25T18:03:18.208Z", - "user": 2, - "content_type": 10, - "object_id": "36", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 507, - "fields": { - "action_time": "2016-12-25T18:03:20.845Z", - "user": 2, - "content_type": 10, - "object_id": "32", - "object_repr": "Carburant Q8 (Erasme)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 508, - "fields": { - "action_time": "2016-12-25T18:03:23.413Z", - "user": 2, - "content_type": 10, - "object_id": "20", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 509, - "fields": { - "action_time": "2016-12-25T18:03:25.968Z", - "user": 2, - "content_type": 10, - "object_id": "24", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 510, - "fields": { - "action_time": "2016-12-25T18:03:28.888Z", - "user": 2, - "content_type": 10, - "object_id": "33", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 511, - "fields": { - "action_time": "2016-12-25T18:03:50.698Z", - "user": 2, - "content_type": 10, - "object_id": "53", - "object_repr": "Payement Facture 2016-02", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 512, - "fields": { - "action_time": "2016-12-25T18:03:55.538Z", - "user": 2, - "content_type": 10, - "object_id": "2", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 513, - "fields": { - "action_time": "2016-12-25T18:03:58.276Z", - "user": 2, - "content_type": 10, - "object_id": "31", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 514, - "fields": { - "action_time": "2016-12-25T18:04:02.674Z", - "user": 2, - "content_type": 10, - "object_id": "54", - "object_repr": "Recettes GBG (Juin)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 515, - "fields": { - "action_time": "2016-12-25T18:04:05.881Z", - "user": 2, - "content_type": 10, - "object_id": "25", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 516, - "fields": { - "action_time": "2016-12-25T18:04:08.913Z", - "user": 2, - "content_type": 10, - "object_id": "29", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 517, - "fields": { - "action_time": "2016-12-25T18:04:46.580Z", - "user": 2, - "content_type": 10, - "object_id": "55", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 518, - "fields": { - "action_time": "2016-12-25T18:04:49.622Z", - "user": 2, - "content_type": 10, - "object_id": "50", - "object_repr": "Recette GBG (Novembre)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 519, - "fields": { - "action_time": "2016-12-25T18:04:52.386Z", - "user": 2, - "content_type": 10, - "object_id": "49", - "object_repr": "Cotisation UCM", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 520, - "fields": { - "action_time": "2016-12-25T18:04:54.478Z", - "user": 2, - "content_type": 10, - "object_id": "48", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 521, - "fields": { - "action_time": "2016-12-25T18:04:58.212Z", - "user": 2, - "content_type": 10, - "object_id": "56", - "object_repr": "Carburant Q8 (Vlezenbeek)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 522, - "fields": { - "action_time": "2016-12-25T18:05:01.323Z", - "user": 2, - "content_type": 10, - "object_id": "21", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 523, - "fields": { - "action_time": "2016-12-25T18:05:04.266Z", - "user": 2, - "content_type": 10, - "object_id": "51", - "object_repr": "Recettes GBG (Octobre)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 524, - "fields": { - "action_time": "2016-12-25T18:05:09.846Z", - "user": 2, - "content_type": 10, - "object_id": "26", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 525, - "fields": { - "action_time": "2016-12-25T18:05:20.194Z", - "user": 2, - "content_type": 10, - "object_id": "4", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 526, - "fields": { - "action_time": "2016-12-25T18:05:22.208Z", - "user": 2, - "content_type": 10, - "object_id": "5", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 527, - "fields": { - "action_time": "2016-12-25T18:05:25.122Z", - "user": 2, - "content_type": 10, - "object_id": "3", - "object_repr": "Carburant Texaco (Anderlecht)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 528, - "fields": { - "action_time": "2016-12-25T18:05:27.346Z", - "user": 2, - "content_type": 10, - "object_id": "52", - "object_repr": "Recettes GBG (Septembre)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 529, - "fields": { - "action_time": "2016-12-25T18:05:30.160Z", - "user": 2, - "content_type": 10, - "object_id": "57", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 530, - "fields": { - "action_time": "2016-12-25T18:06:10.087Z", - "user": 2, - "content_type": 10, - "object_id": "27", - "object_repr": "Carburant DATS (Rebec)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"quotity\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 531, - "fields": { - "action_time": "2017-01-03T10:45:07.451Z", - "user": 2, - "content_type": 10, - "object_id": "58", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 532, - "fields": { - "action_time": "2017-01-03T10:48:41.165Z", - "user": 2, - "content_type": 7, - "object_id": "10", - "object_repr": "Sport (100% en 2016)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 533, - "fields": { - "action_time": "2017-01-03T10:48:44.132Z", - "user": 2, - "content_type": 10, - "object_id": "59", - "object_repr": "Achat v\u00eatement de sport (pulls, t-shirt, \u2026)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 534, - "fields": { - "action_time": "2017-01-03T10:49:03.318Z", - "user": 2, - "content_type": 10, - "object_id": "59", - "object_repr": "Achat v\u00eatement de sport (pulls, t-shirt, \u2026)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"amountTva\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 535, - "fields": { - "action_time": "2017-01-03T10:49:06.022Z", - "user": 2, - "content_type": 10, - "object_id": "58", - "object_repr": "Carburant DATS (Rebecq)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"amountTva\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 536, - "fields": { - "action_time": "2017-01-03T10:49:47.588Z", - "user": 2, - "content_type": 10, - "object_id": "60", - "object_repr": "Achat baskets Nike", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 537, - "fields": { - "action_time": "2017-01-03T12:48:39.774Z", - "user": 2, - "content_type": 10, - "object_id": "59", - "object_repr": "Achat v\u00eatement de sport (pulls, t-shirt, \u2026)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"paid\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 538, - "fields": { - "action_time": "2017-01-27T11:06:18.975Z", - "user": 2, - "content_type": 13, - "object_id": "16", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit\", \"unit_price\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 539, - "fields": { - "action_time": "2017-01-27T11:06:44.418Z", - "user": 2, - "content_type": 13, - "object_id": "17", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit\", \"unit_price\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 540, - "fields": { - "action_time": "2017-01-27T11:06:52.206Z", - "user": 2, - "content_type": 13, - "object_id": "18", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit\", \"unit_price\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 541, - "fields": { - "action_time": "2017-12-10T17:08:43.679Z", - "user": 1, - "content_type": 12, - "object_id": "6", - "object_repr": "S\u00e9minaire Technique", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 542, - "fields": { - "action_time": "2017-12-10T17:08:57.493Z", - "user": 1, - "content_type": 12, - "object_id": "6", - "object_repr": "S\u00e9minaire Technique", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"reference\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 543, - "fields": { - "action_time": "2017-12-10T17:10:02.873Z", - "user": 1, - "content_type": 12, - "object_id": "6", - "object_repr": "S\u00e9minaire Technique 2017", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 544, - "fields": { - "action_time": "2017-12-10T17:10:07.152Z", - "user": 1, - "content_type": 12, - "object_id": "3", - "object_repr": "S\u00e9minaire Technique 2016", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 545, - "fields": { - "action_time": "2017-12-10T17:10:42.065Z", - "user": 1, - "content_type": 13, - "object_id": "20", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 546, - "fields": { - "action_time": "2017-12-10T17:12:24.684Z", - "user": 1, - "content_type": 13, - "object_id": "21", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 547, - "fields": { - "action_time": "2017-12-10T17:13:42.424Z", - "user": 1, - "content_type": 13, - "object_id": "22", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 548, - "fields": { - "action_time": "2017-12-10T17:14:47.804Z", - "user": 1, - "content_type": 12, - "object_id": "6", - "object_repr": "S\u00e9minaire Technique 2017", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"reference\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 549, - "fields": { - "action_time": "2017-12-10T17:25:17.503Z", - "user": 1, - "content_type": 12, - "object_id": "6", - "object_repr": "S\u00e9minaire Technique 2017", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"reference\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 550, - "fields": { - "action_time": "2017-12-10T17:34:12.761Z", - "user": 1, - "content_type": 12, - "object_id": "5", - "object_repr": "Cours de Juges 2016", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 551, - "fields": { - "action_time": "2017-12-10T17:34:32.691Z", - "user": 1, - "content_type": 12, - "object_id": "7", - "object_repr": "Cours de juges 2017", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 552, - "fields": { - "action_time": "2017-12-10T17:38:19.787Z", - "user": 1, - "content_type": 13, - "object_id": "23", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 553, - "fields": { - "action_time": "2017-12-10T17:39:06.238Z", - "user": 1, - "content_type": 13, - "object_id": "24", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 554, - "fields": { - "action_time": "2017-12-10T17:39:46.096Z", - "user": 1, - "content_type": 13, - "object_id": "25", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 555, - "fields": { - "action_time": "2017-12-10T17:40:20.474Z", - "user": 1, - "content_type": 13, - "object_id": "26", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 556, - "fields": { - "action_time": "2017-12-10T17:40:46.674Z", - "user": 1, - "content_type": 13, - "object_id": "27", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 557, - "fields": { - "action_time": "2017-12-10T17:40:55.449Z", - "user": 1, - "content_type": 13, - "object_id": "25", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 558, - "fields": { - "action_time": "2017-12-10T17:41:09.658Z", - "user": 1, - "content_type": 13, - "object_id": "28", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 559, - "fields": { - "action_time": "2017-12-10T17:47:59.097Z", - "user": 1, - "content_type": 13, - "object_id": "29", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 560, - "fields": { - "action_time": "2017-12-10T17:50:05.577Z", - "user": 1, - "content_type": 13, - "object_id": "30", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 561, - "fields": { - "action_time": "2017-12-10T17:50:33.701Z", - "user": 1, - "content_type": 13, - "object_id": "31", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 562, - "fields": { - "action_time": "2017-12-10T17:54:37.707Z", - "user": 1, - "content_type": 13, - "object_id": "29", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 563, - "fields": { - "action_time": "2017-12-10T17:54:56.682Z", - "user": 1, - "content_type": 13, - "object_id": "29", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 564, - "fields": { - "action_time": "2017-12-12T14:50:02.303Z", - "user": 1, - "content_type": 12, - "object_id": "8", - "object_repr": "Formation Continue 2017", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 565, - "fields": { - "action_time": "2017-12-12T14:51:40.699Z", - "user": 1, - "content_type": 13, - "object_id": "32", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 566, - "fields": { - "action_time": "2017-12-12T14:51:57.156Z", - "user": 1, - "content_type": 13, - "object_id": "33", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 567, - "fields": { - "action_time": "2017-12-12T14:52:22.497Z", - "user": 1, - "content_type": 13, - "object_id": "34", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 568, - "fields": { - "action_time": "2017-12-12T14:52:54.250Z", - "user": 1, - "content_type": 13, - "object_id": "35", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 569, - "fields": { - "action_time": "2017-12-12T14:53:20.419Z", - "user": 1, - "content_type": 13, - "object_id": "36", - "object_repr": "Prestation object", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 570, - "fields": { - "action_time": "2017-12-12T14:53:54.478Z", - "user": 1, - "content_type": 13, - "object_id": "33", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 571, - "fields": { - "action_time": "2017-12-12T14:54:19.063Z", - "user": 1, - "content_type": 13, - "object_id": "34", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 572, - "fields": { - "action_time": "2017-12-12T14:54:24.305Z", - "user": 1, - "content_type": 13, - "object_id": "32", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 573, - "fields": { - "action_time": "2017-12-12T14:54:40.874Z", - "user": 1, - "content_type": 13, - "object_id": "35", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 574, - "fields": { - "action_time": "2017-12-12T14:54:48.754Z", - "user": 1, - "content_type": 13, - "object_id": "35", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 575, - "fields": { - "action_time": "2017-12-12T14:55:06.976Z", - "user": 1, - "content_type": 13, - "object_id": "33", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 576, - "fields": { - "action_time": "2017-12-12T14:55:23.995Z", - "user": 1, - "content_type": 13, - "object_id": "33", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 577, - "fields": { - "action_time": "2017-12-12T14:57:38.282Z", - "user": 1, - "content_type": 13, - "object_id": "35", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit_price\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 578, - "fields": { - "action_time": "2017-12-12T14:57:45.532Z", - "user": 1, - "content_type": 13, - "object_id": "33", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit_price\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 579, - "fields": { - "action_time": "2017-12-12T14:58:16.822Z", - "user": 1, - "content_type": 13, - "object_id": "34", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit_price\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 580, - "fields": { - "action_time": "2017-12-12T14:58:20.385Z", - "user": 1, - "content_type": 13, - "object_id": "32", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit_price\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 581, - "fields": { - "action_time": "2017-12-12T14:59:20.594Z", - "user": 1, - "content_type": 13, - "object_id": "33", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 582, - "fields": { - "action_time": "2017-12-12T15:00:05.297Z", - "user": 1, - "content_type": 12, - "object_id": "8", - "object_repr": "Formation Continue 2017", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"reference\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 583, - "fields": { - "action_time": "2017-12-12T15:00:32.813Z", - "user": 1, - "content_type": 13, - "object_id": "35", - "object_repr": "Prestation object", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"unit\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 584, - "fields": { - "action_time": "2018-01-02T15:50:31.114Z", - "user": 1, - "content_type": 13, - "object_id": "37", - "object_repr": "Prestation object (37)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 585, - "fields": { - "action_time": "2018-01-02T15:50:57.276Z", - "user": 1, - "content_type": 13, - "object_id": "37", - "object_repr": "Prestation object (37)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 586, - "fields": { - "action_time": "2018-10-28T20:38:39.585Z", - "user": 2, - "content_type": 12, - "object_id": "9", - "object_repr": "MSEd GAF 2018", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 587, - "fields": { - "action_time": "2018-10-28T20:38:47.204Z", - "user": 2, - "content_type": 12, - "object_id": "9", - "object_repr": "MSEd GAF 2018", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"reference\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 588, - "fields": { - "action_time": "2018-10-28T20:39:00.713Z", - "user": 2, - "content_type": 12, - "object_id": "10", - "object_repr": "MSIn Tra", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 589, - "fields": { - "action_time": "2018-10-28T20:39:14.711Z", - "user": 2, - "content_type": 12, - "object_id": "10", - "object_repr": "Formation MSIn Tra", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 590, - "fields": { - "action_time": "2018-10-28T20:39:20.074Z", - "user": 2, - "content_type": 12, - "object_id": "9", - "object_repr": "Formation MSEd GAF 2018", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 591, - "fields": { - "action_time": "2018-10-28T20:39:24.210Z", - "user": 2, - "content_type": 12, - "object_id": "10", - "object_repr": "Formation MSIn Tra 2018", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"name\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 592, - "fields": { - "action_time": "2018-10-28T20:40:36.886Z", - "user": 2, - "content_type": 12, - "object_id": "11", - "object_repr": "S\u00e9minaire Technique 2018", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 593, - "fields": { - "action_time": "2018-10-28T20:43:10.715Z", - "user": 2, - "content_type": 13, - "object_id": "38", - "object_repr": "Prestation object (38)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 594, - "fields": { - "action_time": "2018-10-28T20:43:29.568Z", - "user": 2, - "content_type": 13, - "object_id": "39", - "object_repr": "Prestation object (39)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 595, - "fields": { - "action_time": "2018-10-28T20:43:45.895Z", - "user": 2, - "content_type": 13, - "object_id": "40", - "object_repr": "Prestation object (40)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 596, - "fields": { - "action_time": "2018-10-28T20:44:33.330Z", - "user": 2, - "content_type": 13, - "object_id": "41", - "object_repr": "Prestation object (41)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 597, - "fields": { - "action_time": "2018-10-28T20:45:41.978Z", - "user": 2, - "content_type": 13, - "object_id": "42", - "object_repr": "Prestation object (42)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 598, - "fields": { - "action_time": "2018-10-28T20:47:30.364Z", - "user": 2, - "content_type": 13, - "object_id": "43", - "object_repr": "Prestation object (43)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 599, - "fields": { - "action_time": "2018-10-28T20:48:25.882Z", - "user": 2, - "content_type": 13, - "object_id": "44", - "object_repr": "Prestation object (44)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 600, - "fields": { - "action_time": "2018-10-28T20:48:57.790Z", - "user": 2, - "content_type": 13, - "object_id": "45", - "object_repr": "Prestation object (45)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 601, - "fields": { - "action_time": "2018-10-28T20:49:29.858Z", - "user": 2, - "content_type": 13, - "object_id": "46", - "object_repr": "Prestation object (46)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 602, - "fields": { - "action_time": "2018-10-28T20:49:50.062Z", - "user": 2, - "content_type": 13, - "object_id": "47", - "object_repr": "Prestation object (47)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 603, - "fields": { - "action_time": "2018-10-28T20:50:21.625Z", - "user": 2, - "content_type": 13, - "object_id": "48", - "object_repr": "Prestation object (48)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 604, - "fields": { - "action_time": "2018-10-28T20:50:43.635Z", - "user": 2, - "content_type": 13, - "object_id": "49", - "object_repr": "Prestation object (49)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 605, - "fields": { - "action_time": "2018-10-28T20:51:34.430Z", - "user": 2, - "content_type": 13, - "object_id": "50", - "object_repr": "Prestation object (50)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 606, - "fields": { - "action_time": "2018-10-28T20:52:27.381Z", - "user": 2, - "content_type": 13, - "object_id": "42", - "object_repr": "Prestation object (42)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 607, - "fields": { - "action_time": "2018-10-28T20:52:41.992Z", - "user": 2, - "content_type": 13, - "object_id": "43", - "object_repr": "Prestation object (43)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 608, - "fields": { - "action_time": "2018-10-28T20:54:15.979Z", - "user": 2, - "content_type": 13, - "object_id": "51", - "object_repr": "Prestation object (51)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 609, - "fields": { - "action_time": "2018-10-28T20:54:37.702Z", - "user": 2, - "content_type": 13, - "object_id": "52", - "object_repr": "Prestation object (52)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 610, - "fields": { - "action_time": "2018-10-28T20:55:01.546Z", - "user": 2, - "content_type": 13, - "object_id": "53", - "object_repr": "Prestation object (53)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 611, - "fields": { - "action_time": "2018-10-28T20:55:17.767Z", - "user": 2, - "content_type": 13, - "object_id": "54", - "object_repr": "Prestation object (54)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 612, - "fields": { - "action_time": "2018-10-28T20:55:32.166Z", - "user": 2, - "content_type": 13, - "object_id": "55", - "object_repr": "Prestation object (55)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 613, - "fields": { - "action_time": "2018-10-28T20:56:24.082Z", - "user": 2, - "content_type": 13, - "object_id": "41", - "object_repr": "Prestation object (41)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 614, - "fields": { - "action_time": "2018-10-28T20:56:32.659Z", - "user": 2, - "content_type": 13, - "object_id": "53", - "object_repr": "Prestation object (53)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 615, - "fields": { - "action_time": "2018-10-28T20:56:40.444Z", - "user": 2, - "content_type": 13, - "object_id": "52", - "object_repr": "Prestation object (52)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 616, - "fields": { - "action_time": "2018-10-28T20:56:49.106Z", - "user": 2, - "content_type": 13, - "object_id": "51", - "object_repr": "Prestation object (51)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 617, - "fields": { - "action_time": "2018-10-28T20:58:16.315Z", - "user": 2, - "content_type": 13, - "object_id": "56", - "object_repr": "Prestation object (56)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 618, - "fields": { - "action_time": "2018-10-28T20:58:37.779Z", - "user": 2, - "content_type": 13, - "object_id": "57", - "object_repr": "Prestation object (57)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 619, - "fields": { - "action_time": "2018-10-28T20:59:02.333Z", - "user": 2, - "content_type": 13, - "object_id": "58", - "object_repr": "Prestation object (58)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 620, - "fields": { - "action_time": "2018-10-28T21:00:25.233Z", - "user": 2, - "content_type": 13, - "object_id": "41", - "object_repr": "Prestation object (41)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 621, - "fields": { - "action_time": "2018-10-28T21:00:33.616Z", - "user": 2, - "content_type": 13, - "object_id": "55", - "object_repr": "Prestation object (55)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 622, - "fields": { - "action_time": "2018-10-28T21:00:40.368Z", - "user": 2, - "content_type": 13, - "object_id": "54", - "object_repr": "Prestation object (54)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 623, - "fields": { - "action_time": "2018-10-28T21:00:45.632Z", - "user": 2, - "content_type": 13, - "object_id": "53", - "object_repr": "Prestation object (53)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 624, - "fields": { - "action_time": "2018-10-28T21:00:52.609Z", - "user": 2, - "content_type": 13, - "object_id": "52", - "object_repr": "Prestation object (52)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 625, - "fields": { - "action_time": "2018-10-28T21:00:59.848Z", - "user": 2, - "content_type": 13, - "object_id": "51", - "object_repr": "Prestation object (51)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"label\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 626, - "fields": { - "action_time": "2020-02-12T09:43:49.404Z", - "user": 1, - "content_type": 12, - "object_id": "12", - "object_repr": "Cours Juge 2019", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 627, - "fields": { - "action_time": "2020-02-12T09:43:57.602Z", - "user": 1, - "content_type": 12, - "object_id": "12", - "object_repr": "Cours de Juge 2019", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Nom\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 628, - "fields": { - "action_time": "2020-02-12T11:58:21.386Z", - "user": 1, - "content_type": 13, - "object_id": "59", - "object_repr": "Prestation object (59)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 629, - "fields": { - "action_time": "2020-02-12T11:58:55.399Z", - "user": 1, - "content_type": 13, - "object_id": "60", - "object_repr": "Prestation object (60)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 630, - "fields": { - "action_time": "2020-02-12T11:59:28.524Z", - "user": 1, - "content_type": 13, - "object_id": "61", - "object_repr": "Prestation object (61)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 631, - "fields": { - "action_time": "2020-02-12T11:59:59.772Z", - "user": 1, - "content_type": 13, - "object_id": "62", - "object_repr": "Prestation object (62)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 632, - "fields": { - "action_time": "2020-02-12T12:00:47.579Z", - "user": 1, - "content_type": 13, - "object_id": "63", - "object_repr": "Prestation object (63)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 633, - "fields": { - "action_time": "2020-02-12T12:01:12.328Z", - "user": 1, - "content_type": 13, - "object_id": "64", - "object_repr": "Prestation object (64)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 634, - "fields": { - "action_time": "2020-02-12T12:01:40.505Z", - "user": 1, - "content_type": 13, - "object_id": "65", - "object_repr": "Prestation object (65)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 635, - "fields": { - "action_time": "2020-02-12T12:01:55.924Z", - "user": 1, - "content_type": 13, - "object_id": "63", - "object_repr": "Prestation object (63)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 636, - "fields": { - "action_time": "2020-02-12T12:01:59.648Z", - "user": 1, - "content_type": 13, - "object_id": "62", - "object_repr": "Prestation object (62)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 637, - "fields": { - "action_time": "2020-02-12T12:02:02.401Z", - "user": 1, - "content_type": 13, - "object_id": "60", - "object_repr": "Prestation object (60)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 638, - "fields": { - "action_time": "2020-02-12T12:02:33.855Z", - "user": 1, - "content_type": 13, - "object_id": "62", - "object_repr": "Prestation object (62)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 639, - "fields": { - "action_time": "2020-02-12T12:02:52.328Z", - "user": 1, - "content_type": 13, - "object_id": "64", - "object_repr": "Prestation object (64)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 640, - "fields": { - "action_time": "2020-02-12T12:03:12.156Z", - "user": 1, - "content_type": 13, - "object_id": "62", - "object_repr": "Prestation object (62)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Libell\\u00e9\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 641, - "fields": { - "action_time": "2020-02-12T12:03:50.421Z", - "user": 1, - "content_type": 12, - "object_id": "12", - "object_repr": "Cours de Juge 2019", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"R\\u00e9f\\u00e9rence\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 642, - "fields": { - "action_time": "2020-02-12T12:05:51.951Z", - "user": 1, - "content_type": 13, - "object_id": "66", - "object_repr": "Prestation object (66)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 643, - "fields": { - "action_time": "2020-02-12T12:06:02.093Z", - "user": 1, - "content_type": 13, - "object_id": "66", - "object_repr": "Prestation object (66)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Contract\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 644, - "fields": { - "action_time": "2020-02-12T12:06:30.863Z", - "user": 1, - "content_type": 13, - "object_id": "67", - "object_repr": "Prestation object (67)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 645, - "fields": { - "action_time": "2020-02-12T12:06:50.171Z", - "user": 1, - "content_type": 13, - "object_id": "65", - "object_repr": "Prestation object (65)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Libell\\u00e9\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 646, - "fields": { - "action_time": "2021-07-28T14:48:05.572Z", - "user": 1, - "content_type": 12, - "object_id": "13", - "object_repr": "Webinaire 2021", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 647, - "fields": { - "action_time": "2021-07-28T14:48:17.858Z", - "user": 1, - "content_type": 12, - "object_id": "13", - "object_repr": "Webinaire 2021", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"R\\u00e9f\\u00e9rence\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 648, - "fields": { - "action_time": "2021-07-28T14:51:05.809Z", - "user": 1, - "content_type": 13, - "object_id": "68", - "object_repr": "Prestation object (68)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 649, - "fields": { - "action_time": "2021-07-28T14:51:48.912Z", - "user": 1, - "content_type": 13, - "object_id": "69", - "object_repr": "Prestation object (69)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 650, - "fields": { - "action_time": "2021-07-28T14:52:42.549Z", - "user": 1, - "content_type": 13, - "object_id": "70", - "object_repr": "Prestation object (70)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 651, - "fields": { - "action_time": "2021-07-28T14:52:54.833Z", - "user": 1, - "content_type": 13, - "object_id": "71", - "object_repr": "Prestation object (71)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 652, - "fields": { - "action_time": "2021-07-29T09:34:21.546Z", - "user": 1, - "content_type": 13, - "object_id": "71", - "object_repr": "Prestation object (71)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Unit\\u00e9\", \"Prix unitaire\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 653, - "fields": { - "action_time": "2021-07-29T09:34:34.996Z", - "user": 1, - "content_type": 13, - "object_id": "70", - "object_repr": "Prestation object (70)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Unit\\u00e9\", \"Prix unitaire\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 654, - "fields": { - "action_time": "2021-07-29T09:35:22.145Z", - "user": 1, - "content_type": 13, - "object_id": "69", - "object_repr": "Prestation object (69)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Unit\\u00e9\", \"Prix unitaire\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 655, - "fields": { - "action_time": "2021-07-29T09:35:33.318Z", - "user": 1, - "content_type": 13, - "object_id": "68", - "object_repr": "Prestation object (68)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Unit\\u00e9\", \"Prix unitaire\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 656, - "fields": { - "action_time": "2021-07-29T09:36:09.696Z", - "user": 1, - "content_type": 13, - "object_id": "71", - "object_repr": "Prestation object (71)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 657, - "fields": { - "action_time": "2021-07-29T09:36:15.663Z", - "user": 1, - "content_type": 13, - "object_id": "70", - "object_repr": "Prestation object (70)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 658, - "fields": { - "action_time": "2021-07-29T09:36:22.607Z", - "user": 1, - "content_type": 13, - "object_id": "69", - "object_repr": "Prestation object (69)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 659, - "fields": { - "action_time": "2021-07-29T09:36:29.467Z", - "user": 1, - "content_type": 13, - "object_id": "68", - "object_repr": "Prestation object (68)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 660, - "fields": { - "action_time": "2021-12-30T15:20:52.715Z", - "user": 2, - "content_type": 12, - "object_id": "14", - "object_repr": "S\u00e9minaire Technique 2021", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 661, - "fields": { - "action_time": "2021-12-30T15:21:03.393Z", - "user": 2, - "content_type": 12, - "object_id": "14", - "object_repr": "S\u00e9minaire Technique 2021", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"R\\u00e9f\\u00e9rence\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 662, - "fields": { - "action_time": "2021-12-30T15:22:53.168Z", - "user": 2, - "content_type": 13, - "object_id": "72", - "object_repr": "Prestation object (72)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 663, - "fields": { - "action_time": "2021-12-30T15:23:25.482Z", - "user": 2, - "content_type": 13, - "object_id": "72", - "object_repr": "Prestation object (72)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 664, - "fields": { - "action_time": "2021-12-30T15:24:21.808Z", - "user": 2, - "content_type": 13, - "object_id": "73", - "object_repr": "Prestation object (73)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 665, - "fields": { - "action_time": "2021-12-30T15:25:28.142Z", - "user": 2, - "content_type": 13, - "object_id": "74", - "object_repr": "Prestation object (74)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 666, - "fields": { - "action_time": "2021-12-30T15:25:40.103Z", - "user": 2, - "content_type": 13, - "object_id": "73", - "object_repr": "Prestation object (73)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Libell\\u00e9\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 667, - "fields": { - "action_time": "2021-12-30T15:27:15.152Z", - "user": 2, - "content_type": 13, - "object_id": "72", - "object_repr": "Prestation object (72)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Unit\\u00e9\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 668, - "fields": { - "action_time": "2021-12-30T15:27:38.504Z", - "user": 2, - "content_type": 13, - "object_id": "73", - "object_repr": "Prestation object (73)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Unit\\u00e9\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 669, - "fields": { - "action_time": "2021-12-30T15:28:29.338Z", - "user": 2, - "content_type": 13, - "object_id": "72", - "object_repr": "Prestation object (72)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Prix unitaire\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 670, - "fields": { - "action_time": "2021-12-30T15:28:55.687Z", - "user": 2, - "content_type": 13, - "object_id": "74", - "object_repr": "Prestation object (74)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Libell\\u00e9\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 671, - "fields": { - "action_time": "2021-12-30T15:28:59.435Z", - "user": 2, - "content_type": 13, - "object_id": "73", - "object_repr": "Prestation object (73)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Libell\\u00e9\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 672, - "fields": { - "action_time": "2021-12-30T15:39:54.838Z", - "user": 2, - "content_type": 12, - "object_id": "15", - "object_repr": "(D\u00e9)Montage - Examen 2\u00e8me session 2021", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 673, - "fields": { - "action_time": "2021-12-30T15:52:27.877Z", - "user": 2, - "content_type": 13, - "object_id": "75", - "object_repr": "Prestation object (75)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 674, - "fields": { - "action_time": "2021-12-30T15:53:01.619Z", - "user": 2, - "content_type": 13, - "object_id": "76", - "object_repr": "Prestation object (76)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 675, - "fields": { - "action_time": "2021-12-30T15:53:59.045Z", - "user": 2, - "content_type": 13, - "object_id": "77", - "object_repr": "Prestation object (77)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 676, - "fields": { - "action_time": "2021-12-30T15:54:35.199Z", - "user": 2, - "content_type": 13, - "object_id": "77", - "object_repr": "Prestation object (77)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Unit\\u00e9\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 677, - "fields": { - "action_time": "2021-12-30T15:54:41.120Z", - "user": 2, - "content_type": 13, - "object_id": "76", - "object_repr": "Prestation object (76)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Unit\\u00e9\"]}}]" - } -}, -{ - "model": "admin.logentry", - "pk": 678, - "fields": { - "action_time": "2021-12-30T15:54:46.529Z", - "user": 2, - "content_type": 13, - "object_id": "75", - "object_repr": "Prestation object (75)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Unit\\u00e9\"]}}]" - } -} -] diff --git a/db.sqlite3 b/db.sqlite3 index 4c23c8cd1d6008ad2336b3e147526171ad33d13e..a96f23b2ea32ba1dcefbc221b1eb03a2f86bd4ee 100644 GIT binary patch delta 650 zcmZqpz}fJFbAmMMIR*xX`4biFfebzW+Knj-=F4$2p9Bgr%xC`1{Ehh|^Bd;p%#WDw zGT&gn%zTddI7Ru_$JiRV7*&mKPfur5UFgmm5}NV`G!)`qoV9+rL;d321N$GJa%We#m@?dGTbvH8Mb_9cP>_ zkjBI-WP+^8#L&_}YdcWvKzrii?v?6U{x-jU!DJyJr8LJZQ}baT>!J-iJE#7`^F{4=lmjL4i1}1qX7pBbZ0wPS+jFSyG z)VFUCWr|i}4BM>8!N)XR%8F?b*moPNNHNj%EX!T<7Elka(8(1^RYzNvXrNJe@B*4J@kogev Y;>mn#q=4>v!8kc?4f}TSG^Uq=05+UcHvj+t diff --git a/requirements/dev.txt b/requirements/dev.txt index 865d14c..ee02648 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -1,8 +1,8 @@ -asgiref==3.2.3 -Django==3.0.3 -Pillow==7.0.0 -pyaml==19.12.0 -pytz==2019.3 -PyYAML==5.3 -reportlab==3.5.34 -sqlparse==0.3.0 +asgiref==3.4.1 +Django==4.0 +Pillow==8.4.0 +pyaml==21.10.1 +pytz==2021.3 +PyYAML==6.0 +reportlab==3.6.5 +sqlparse==0.4.2 diff --git a/templates/client_listing.html b/templates/billing/client/listing.html similarity index 100% rename from templates/client_listing.html rename to templates/billing/client/listing.html diff --git a/templates/contract_detail.html b/templates/billing/contract/detail.html similarity index 100% rename from templates/contract_detail.html rename to templates/billing/contract/detail.html diff --git a/templates/contract_listing.html b/templates/billing/contract/listing.html similarity index 100% rename from templates/contract_listing.html rename to templates/billing/contract/listing.html diff --git a/templates/prestation_listing.html b/templates/billing/prestation/listing.html similarity index 100% rename from templates/prestation_listing.html rename to templates/billing/prestation/listing.html diff --git a/templates/transaction_detail.html b/templates/compta/transaction/detail.html similarity index 100% rename from templates/transaction_detail.html rename to templates/compta/transaction/detail.html diff --git a/templates/transaction_listing.html b/templates/compta/transaction/listing.html similarity index 100% rename from templates/transaction_listing.html rename to templates/compta/transaction/listing.html