Commit e6707456 by Thibault Grandjean

update data retrieving

parent 4cdc5f30
...@@ -463,11 +463,6 @@ def get_member_info(request, member_id): ...@@ -463,11 +463,6 @@ def get_member_info(request, member_id):
def create_pair(request): def create_pair(request):
template = loader.get_template('members/admin/manage_attached_create_pair.html')
context = {'title': 'BDM - Binômes',
'module': 'Membres'}
return HttpResponse(template.render(context, request))
"""Create pair """Create pair
payload example: payload example:
...@@ -476,8 +471,13 @@ def create_pair(request): ...@@ -476,8 +471,13 @@ def create_pair(request):
"child": {"id": 3067} "child": {"id": 3067}
} }
""" """
if request.method != 'POST': if request.method == 'GET':
return JsonResponse({"message": "Method not available"}) template = loader.get_template('members/admin/manage_attached_create_pair.html')
context = {'title': 'BDM - Binômes',
'module': 'Membres'}
return HttpResponse(template.render(context, request))
if request.method == 'POST':
if CagetteUser.are_credentials_ok(request): if CagetteUser.are_credentials_ok(request):
api = OdooAPI() api = OdooAPI()
data = json.loads(request.body.decode()) data = json.loads(request.body.decode())
...@@ -485,7 +485,7 @@ def create_pair(request): ...@@ -485,7 +485,7 @@ def create_pair(request):
child_id = data['child']['id'] child_id = data['child']['id']
# create attached account for child # create attached account for child
fields = [ fields = [
"birthdate", # "birthdate",
"city", "city",
"commercial_partner_id", "commercial_partner_id",
"company_id", "company_id",
...@@ -517,6 +517,7 @@ def create_pair(request): ...@@ -517,6 +517,7 @@ def create_pair(request):
child[field] = child[field][0] child[field] = child[field][0]
child['is_associated_people'] = True child['is_associated_people'] = True
child['parent_id'] = parent['commercial_partner_id'][0] child['parent_id'] = parent['commercial_partner_id'][0]
child['cooperative_state'] = "associated"
# get barcode rule id # get barcode rule id
bbcode_rule = api.search_read("barcode.rule", [['for_associated_people', "=", True]], ['id'])[0] bbcode_rule = api.search_read("barcode.rule", [['for_associated_people', "=", True]], ['id'])[0]
child['barcode_rule_id'] = bbcode_rule["id"] child['barcode_rule_id'] = bbcode_rule["id"]
...@@ -527,23 +528,28 @@ def create_pair(request): ...@@ -527,23 +528,28 @@ def create_pair(request):
else: else:
response = JsonResponse({"message": "Unauthorized"}, status=403) response = JsonResponse({"message": "Unauthorized"}, status=403)
return response return response
else:
return JsonResponse({"message": "Method Not Allowed"}, status=405)
def delete_pair(request): def delete_pair(request):
""" Administration des binômes membres """ """
template = loader.get_template('members/admin/manage_attached_delete_pair.html') Administration des binômes membres
context = {'title': 'BDM - Binômes', Delete pair
'module': 'Membres'} GET:
return HttpResponse(template.render(context, request)) Return template
"""Delete pair POST:
payload example: payload example:
{ {
"parent": {"id": 3075} "parent": {"id": 3075}
} }
""" """
if request.method != 'POST': if request.method == 'GET':
return JsonResponse({"message": "Method not available"}) template = loader.get_template('members/admin/manage_attached_delete_pair.html')
context = {'title': 'BDM - Binômes',
'module': 'Membres'}
return HttpResponse(template.render(context, request))
elif request.method == 'POST':
if CagetteUser.are_credentials_ok(request): if CagetteUser.are_credentials_ok(request):
api = OdooAPI() api = OdooAPI()
data = json.loads(request.body.decode()) data = json.loads(request.body.decode())
...@@ -555,3 +561,5 @@ def delete_pair(request): ...@@ -555,3 +561,5 @@ def delete_pair(request):
else: else:
response = JsonResponse({"message": "Unauthorized"}, status=403) response = JsonResponse({"message": "Unauthorized"}, status=403)
return response return response
else:
return JsonResponse({"message": "Method Not Allowed"}, status=405)
...@@ -4,13 +4,13 @@ ...@@ -4,13 +4,13 @@
function load_member_infos() { function load_member_infos() {
$.ajax({ $.ajax({
type: 'GET', type: 'GET',
url: "/members_space/my_info/" + selected_member.id, url: "/members/get_member_info/" + selected_member.id,
dataType:"json", dataType:"json",
traditional: true, traditional: true,
contentType: "application/json; charset=utf-8", contentType: "application/json; charset=utf-8",
success: function(data) { success: function(data) {
incoming_shifts = data; console.log(data)
display_member_infos(); display_member_infos(data.member);
}, },
error: function(data) { error: function(data) {
err = {msg: "erreur serveur lors de la récupération des infos du membre", ctx: 'load_member_infos'}; err = {msg: "erreur serveur lors de la récupération des infos du membre", ctx: 'load_member_infos'};
...@@ -33,6 +33,14 @@ function display_member_shifts() { ...@@ -33,6 +33,14 @@ function display_member_shifts() {
} }
/** /**
* Display table of member future shifts
*/
function display_member_infos(memberData) {
console.log(memberData)
shifts = memberData.incoming_shifts
}
/**
* Display the members from the search result * Display the members from the search result
*/ */
function display_possible_members() { function display_possible_members() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment