// add payment information on Payment table

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11391 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
aFolletete
2011-12-19 19:03:27 +00:00
parent 8af781e449
commit d3a3a76421
3 changed files with 64 additions and 12 deletions
+9
View File
@@ -736,6 +736,15 @@ function init()
else
$('select[name=discount_invoice]').attr('disabled', false);
});
$('.open_payment_information').click(function() {
if ($(this).parent().parent().next('tr').is(':visible'))
$(this).parent().parent().next('tr').hide();
else
$(this).parent().parent().next('tr').show();
return false;
});
}