Commit 08694a92 by Etienne Freiss

fix bug

parent 5bd03ef4
Pipeline #1850 passed with stage
in 1 minute 30 seconds
...@@ -175,7 +175,7 @@ function init_shifts_list() { ...@@ -175,7 +175,7 @@ function init_shifts_list() {
if (partner_data.associated_partner_id === "False" && partner_data.parent_id === "False") { if (partner_data.associated_partner_id === "False" && partner_data.parent_id === "False") {
shift_line_template.find('.affect_associate_reistered').hide(); shift_line_template.find('.affect_associate_reistered').hide();
} else { } else {
shift_line_template.find('.affect_associate_registered').attr('id', 'shidt_id_'+shift.id); shift_line_template.find('.affect_associate_registered').attr('id', 'shift_id_'+shift.id);
if (shift.associate_registered==="both") { if (shift.associate_registered==="both") {
shift_line_template.find('.affect_associate_registered').text("Les deux"); shift_line_template.find('.affect_associate_registered').text("Les deux");
} else if (shift.associate_registered==="partner") { } else if (shift.associate_registered==="partner") {
...@@ -237,7 +237,7 @@ function init_shifts_list() { ...@@ -237,7 +237,7 @@ function init_shifts_list() {
modal_template.find("#shift_associate").text(partner_data.associated_partner_name); modal_template.find("#shift_associate").text(partner_data.associated_partner_name);
} else { } else {
modal_template.find("#shift_partner").text(partner_data.associated_partner_name); modal_template.find("#shift_partner").text(partner_data.name);
modal_template.find("#shift_associate").text(partner_data.parent_name); modal_template.find("#shift_associate").text(partner_data.parent_name);
} }
......
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