Index: templates/customerlist.html =================================================================== RCS file: /cvsroot/lms/templates/customerlist.html,v retrieving revision 1.20 diff -u -r1.20 customerlist.html --- templates/customerlist.html 25 Nov 2011 13:00:03 -0000 1.20 +++ templates/customerlist.html 6 Dec 2011 13:53:19 -0000 @@ -39,6 +39,7 @@ {if ($_config.privileges.finances_management|chkconfig && !$_config.privileges.hide_summaries|chkconfig) || $adminuser} + {/if} Index: lib/LMS.class.php =================================================================== RCS file: /cvsroot/lms/lib/LMS.class.php,v retrieving revision 1.1087 diff -u -r1.1087 LMS.class.php --- lib/LMS.class.php 4 Dec 2011 13:10:05 -0000 1.1087 +++ lib/LMS.class.php 6 Dec 2011 13:53:19 -0000 @@ -765,6 +765,7 @@ case 9: $tariffless = 1; break; case 10: $suspended = 1; break; case 11: $indebted2 = 1; break; + case 12: $indebted3 = 1; break; } if ($network) @@ -909,7 +910,8 @@ .($division ? ' AND c.divisionid = '.intval($division) : '') .($online ? ' AND s.online = 1' : '') .($indebted ? ' AND b.value < 0' : '') - .($indebted2 ? ' AND b.value < t.value*-2' : '') + .($indebted2 ? ' AND b.value < -t.value' : '') + .($indebted3 ? ' AND b.value < -t.value*2' : '') .($disabled ? ' AND s.ownerid IS NOT NULL AND s.account > s.acsum' : '') .($network ? ' AND EXISTS (SELECT 1 FROM nodes WHERE ownerid = c.id AND ((ipaddr > '.$net['address'].' AND ipaddr < '.$net['broadcast'].') Index: lib/locale/pl/strings.php =================================================================== RCS file: /cvsroot/lms/lib/locale/pl/strings.php,v retrieving revision 1.405 diff -u -r1.405 strings.php --- lib/locale/pl/strings.php 1 Dec 2011 17:10:45 -0000 1.405 +++ lib/locale/pl/strings.php 6 Dec 2011 13:53:19 -0000 @@ -2459,6 +2460,7 @@ $_LANG['by date'] = 'wg daty'; $_LANG['Select date type'] = 'Wybierz typ daty'; $_LANG['in debt above 100%'] = 'zadłużeni ponad 100%'; +$_LANG['in debt above 200%'] = 'zadłużeni ponad 200%'; $_LANG[''] = 'gm.'; $_LANG[''] = 'pow.'; $_LANG['City'] = 'Miejscowość';