Debitoren-/Kreditorenbuchungen: Kreditlimit-Anzeige angepasst/gefixt
authorMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 1 Oct 2015 14:06:23 +0000 (16:06 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 1 Oct 2015 14:31:50 +0000 (16:31 +0200)
Der Titel »Kreditlimit« wird nun wie andere Zeilentitel in der linken
Spalte angezeigt, was den Blickfluss stabilisiert.

Weiterhin wurde in der Debitorenbuchungsmaske auch ein negativer
verbleibender Kredit in grün anstelle von rot angezeigt. Grund war ein
Vergleich mit einer falschen Variablen.

templates/webpages/ap/form_header.html
templates/webpages/ar/form_header.html

index 8fbd9c7..f65b301 100644 (file)
               </tr>
 
               <tr>
-                <td></td>
-                <td colspan="3">
-                  <table width="100%">
-                    <tr>
-                      <th align="left" nowrap>[% 'Credit Limit' | $T8 %]</th>
-                      <td>[% creditlimit | html %]</td>
-                      <th align="left" nowrap>[% 'Remaining' | $T8 %]</th>
-                      <td class="plus[% creditremaining_plus %]">[% creditremaining | html %]</td>
-                    </tr>
-                  </table>
+                <th align="right" valign="top">[% LxERP.t8("Credit Limit") %]</th>
+                <td>
+                 [% creditlimit | html %];
+                 [% LxERP.t8("Remaining") %]
+                 <span class="plus[% creditremaining_plus %]">[% creditremaining | html %]</span>
                 </td>
               </tr>
 
index 03fb634..cef1f62 100644 (file)
               </tr>
 [%- END %]
               <tr>
-                <td></td>
-                <td colspan=3>
-                  <table width=100%>
-                    <tr>
-                      <th align=left nowrap>[% 'Credit Limit' | $T8 %]</th>
-                      <td>[% LxERP.format_amount(creditlimit, 0) %][% L.hidden_tag('creditlimit', LxERP.format_amount(creditlimit, 0)) %]</td>
-                      <th align=left nowrap>[% 'Remaining' | $T8 %]</th>
-                      <td class="plus[% creditlimit < 0 ? 0 : 1 %]">[% LxERP.format_amount(creditremaining, 0) %][% L.hidden_tag('creditremaining', LxERP.format_amount(creditremaining, 0)) %]</td>
-                    </tr>
-                  </table>
+                <th align="right" valign="top">[% LxERP.t8("Credit Limit") %]</th>
+                <td>
+                 [% LxERP.format_amount(creditlimit, 0) %][% L.hidden_tag('creditlimit', LxERP.format_amount(creditlimit, 0)) %];
+                 [% LxERP.t8("Remaining") %]
+                 <span class="plus[% creditremaining < 0 ? 0 : 1 %]">[% LxERP.format_amount(creditremaining, 0) %][% L.hidden_tag('creditremaining', LxERP.format_amount(creditremaining, 0)) %]</span>
                 </td>
               </tr>
               <tr>