kivitendo/bin/mozilla/todo.pl @ 1b6d09ef
7a7f33b5 | Moritz Bunkus | #=====================================================================
|
||
# LX-Office ERP
|
||||
# Copyright (C) 2004
|
||||
# Based on SQL-Ledger Version 2.1.9
|
||||
# Web http://www.lx-office.org
|
||||
#
|
||||
######################################################################
|
||||
# SQL-Ledger Accounting
|
||||
# Copyright (c) 1998-2002
|
||||
#
|
||||
# Author: Dieter Simader
|
||||
# Email: dsimader@sql-ledger.org
|
||||
# Web: http://www.sql-ledger.org
|
||||
#
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
f7b15d43 | Christian Wittmer | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||
# MA 02110-1335, USA.
|
||||
7a7f33b5 | Moritz Bunkus | #######################################################################
|
||
713a6d70 | Moritz Bunkus | use SL::TODO;
|
||
9fbf7096 | Sven Schöling | use strict;
|
||
7a7f33b5 | Moritz Bunkus | sub create_todo_list {
|
||
9fbf7096 | Sven Schöling | $main::lxdebug->enter_sub();
|
||
606032ad | Niclas Zimmermann | $main::auth->assert('productivity');
|
||
9fbf7096 | Sven Schöling | my $form = $main::form;
|
||
7a7f33b5 | Moritz Bunkus | |||
713a6d70 | Moritz Bunkus | my %params = @_;
|
||
74fca575 | Sven Schöling | my $postfix = $params{login_screen} ? '_login' : '';
|
||
713a6d70 | Moritz Bunkus | |||
4bd1e2f8 | Sven Schöling | my %todo_cfg = TODO->get_user_config('login' => $::myconfig{login});
|
||
713a6d70 | Moritz Bunkus | |||
if ($params{login_screen} && !$todo_cfg{show_after_login}) {
|
||||
9fbf7096 | Sven Schöling | $main::lxdebug->leave_sub();
|
||
713a6d70 | Moritz Bunkus | return '';
|
||
}
|
||||
7a7f33b5 | Moritz Bunkus | my (@todo_items, $todo_list);
|
||
713a6d70 | Moritz Bunkus | push @todo_items, todo_list_follow_ups() if ($todo_cfg{"show_follow_ups${postfix}"});
|
||
push @todo_items, todo_list_overdue_sales_quotations() if ($todo_cfg{"show_overdue_sales_quotations${postfix}"});
|
||||
7a7f33b5 | Moritz Bunkus | |||
@todo_items = grep { $_ } @todo_items;
|
||||
$todo_list = join("", @todo_items);
|
||||
9fbf7096 | Sven Schöling | $main::lxdebug->leave_sub();
|
||
7a7f33b5 | Moritz Bunkus | |||
return $todo_list;
|
||||
}
|
||||
sub show_todo_list {
|
||||
9fbf7096 | Sven Schöling | $main::lxdebug->enter_sub();
|
||
606032ad | Niclas Zimmermann | $main::auth->assert('productivity');
|
||
9fbf7096 | Sven Schöling | my $form = $main::form;
|
||
my $locale = $main::locale;
|
||||
7a7f33b5 | Moritz Bunkus | |||
$form->{todo_list} = create_todo_list();
|
||||
$form->{title} = $locale->text('TODO list');
|
||||
$form->header();
|
||||
print $form->parse_html_template('todo/show_todo_list');
|
||||
9fbf7096 | Sven Schöling | $main::lxdebug->leave_sub();
|
||
7a7f33b5 | Moritz Bunkus | }
|
||
sub todo_list_follow_ups {
|
||||
9fbf7096 | Sven Schöling | $main::lxdebug->enter_sub();
|
||
7a7f33b5 | Moritz Bunkus | |||
606032ad | Niclas Zimmermann | $main::auth->assert('productivity');
|
||
7a7f33b5 | Moritz Bunkus | require "bin/mozilla/fu.pl";
|
||
my $content = report_for_todo_list();
|
||||
9fbf7096 | Sven Schöling | $main::lxdebug->leave_sub();
|
||
7a7f33b5 | Moritz Bunkus | |||
return $content;
|
||||
}
|
||||
sub todo_list_overdue_sales_quotations {
|
||||
9fbf7096 | Sven Schöling | $main::lxdebug->enter_sub();
|
||
7a7f33b5 | Moritz Bunkus | |||
606032ad | Niclas Zimmermann | $main::auth->assert('productivity');
|
||
7a7f33b5 | Moritz Bunkus | require "bin/mozilla/oe.pl";
|
||
my $content = report_for_todo_list();
|
||||
9fbf7096 | Sven Schöling | $main::lxdebug->leave_sub();
|
||
7a7f33b5 | Moritz Bunkus | |||
return $content;
|
||||
}
|
||||
1;
|