diff --git a/admin-dev/themes/default/template/controllers/carrier_wizard/summary.tpl b/admin-dev/themes/default/template/controllers/carrier_wizard/summary.tpl index 353dedab5..b8b71bb86 100644 --- a/admin-dev/themes/default/template/controllers/carrier_wizard/summary.tpl +++ b/admin-dev/themes/default/template/controllers/carrier_wizard/summary.tpl @@ -37,24 +37,26 @@
- {l s='Carrier name:'} -
-
-
-
+
{l s='Carrier name:'}
+
+

+

+

+
{l s='This carrier will be proposed for those delivery zones:'} -
    +
      +
      +
      + {l s='And it will be proposed for those client groups:'} +
        +
        + {if $is_multishop} +
        + {l s='Finally, this carrier will be proposed in those shops:'} +
          +
          + {/if}
          -
          - {l s='And it will be proposed for those client groups:'} -
            -
            - {if $is_multishop} -
            - {l s='Finally, this carrier will be proposed in those shops:'} -
              -
              - {/if} - {$active_form}
              + {$active_form}
              diff --git a/js/admin_carrier_wizard.js b/js/admin_carrier_wizard.js index 3edfbc8aa..b762d488e 100644 --- a/js/admin_carrier_wizard.js +++ b/js/admin_carrier_wizard.js @@ -175,14 +175,14 @@ function displaySummary() $('#summary_zones').html(''); $('.input_zone').each(function(){ if ($(this).attr('checked')) - $('#summary_zones').html($('#summary_zones').html() + '
            • ' + $(this).closest().prev().text() + '
            • '); + $('#summary_zones').html($('#summary_zones').html() + '
            • ' + $(this).closest('tr').find('label').text() + '
            • '); }); // Group restrictions $('#summary_groups').html(''); $('input[name$="groupBox[]"]').each(function(){ if ($(this).attr('checked')) - $('#summary_groups').html($('#summary_groups').html() + '
            • ' + $(this).closest().next().next().text() + '
            • '); + $('#summary_groups').html($('#summary_groups').html() + '
            • ' + $(this).closest('tr').find('td:eq(2)').text() + '
            • '); }); // shop restrictions