From: Bernd Blessmann Date: Wed, 11 Jan 2012 15:43:45 +0000 (+0100) Subject: Buchungskonto ändern bei bebuchten Konten verbieten X-Git-Tag: release-2.7.0beta1~61^2 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=6caa57e2e994c8f99c209ce18379305eb01d1676;p=kivitendo-erp.git Buchungskonto ändern bei bebuchten Konten verbieten --- diff --git a/templates/webpages/am/edit_accounts.html b/templates/webpages/am/edit_accounts.html index 4a7503d85..10d9caf07 100644 --- a/templates/webpages/am/edit_accounts.html +++ b/templates/webpages/am/edit_accounts.html @@ -88,12 +88,16 @@ window.onload = function() { [% IF ChartTypeIsAccount %]
[% 'Is this a summary account to record' | $T8 %] - -  [% 'AR' | $T8 %] - -  [% 'AP' | $T8 %] - -  [% 'Inventory' | $T8 %] + [% L.checkbox_tag('AR', value => 'AR', checked => AR, class => 'checkbox', disabled => AccountIsPosted) %]  [% 'AR' | $T8 %] + [% L.checkbox_tag('AP', value => 'AP', checked => AP, class => 'checkbox', disabled => AccountIsPosted) %]  [% 'AP' | $T8 %] + [% L.checkbox_tag('IC', value => 'IC', checked => IC, class => 'checkbox', disabled => AccountIsPosted) %]  [% 'Inventory' | $T8 %] + +[% IF AccountIsPosted %] + [% IF AR %] [% L.hidden_tag('AR', 'AR') %] [% END %] + [% IF AP %] [% L.hidden_tag('AP', 'AP') %] [% END %] + [% IF IC %] [% L.hidden_tag('IC', 'IC') %] [% END %] +[% END %] +
[% IF AccountIsPosted %]