Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 2e6998c4

Von Bernd Bleßmann vor fast 4 Jahren hinzugefügt

  • ID 2e6998c4284851d5f0b905d43952765954ddc5af
  • Vorgänger 2b5d9005
  • Nachfolger 2632ced6

Zeiterfassung: Artikel beim Erfassen wählen können und mit auflisten

Unterschiede anzeigen:

SL/Controller/TimeRecording.pm
use SL::Controller::Helper::ReportGenerator;
use SL::DB::Customer;
use SL::DB::Employee;
use SL::DB::Part;
use SL::DB::TimeRecording;
use SL::DB::TimeRecordingArticle;
use SL::Locale::String qw(t8);
use SL::ReportGenerator;
use Rose::Object::MakeMethods::Generic
(
# scalar => [ qw() ],
'scalar --get_set_init' => [ qw(time_recording models all_employees can_view_all can_edit_all) ],
'scalar --get_set_init' => [ qw(time_recording models all_employees all_time_recording_articles can_view_all can_edit_all) ],
);
......
__PACKAGE__->run_before('check_auth');
__PACKAGE__->run_before('check_auth_edit', only => [ qw(edit save delete) ]);
#
# actions
#
my %sort_columns = (
start_time => t8('Start'),
end_time => t8('End'),
customer => t8('Customer'),
part => t8('Article'),
project => t8('Project'),
description => t8('Description'),
staff_member => t8('Mitarbeiter'),
duration => t8('Duration'),
);
#
# actions
#
sub action_list {
my ($self, %params) = @_;
......
sorted => \%sort_columns,
disable_plugin => 'paginated',
query => \@where,
with_objects => [ 'customer', 'project', 'staff_member', 'employee' ],
with_objects => [ 'customer', 'part', 'project', 'staff_member', 'employee' ],
);
}
......
SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
}
sub init_all_time_recording_articles {
my $selectable_parts = SL::DB::Manager::TimeRecordingArticle->get_all_sorted(
query => [or => [ 'part.obsolete' => 0, 'part.obsolete' => undef ]],
with_objects => ['part']);
my $res = [ map { {id => $_->part_id, description => $_->part->displayable_name} } @$selectable_parts];
my $curr_id = $_[0]->time_recording->part_id;
if ($curr_id && !grep { $curr_id == $_->{id} } @$res) {
unshift @$res, {id => $curr_id, description => $_[0]->time_recording->part->displayable_name};
}
return $res;
}
sub check_auth {
$::auth->assert('time_recording');
}
......
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
$self->{report} = $report;
my @columns = qw(start_time end_time customer project description staff_member duration);
my @columns = qw(start_time end_time customer part project description staff_member duration);
my %column_defs = (
start_time => { text => t8('Start'), sub => sub { $_[0]->start_time_as_timestamp },
......
end_time => { text => t8('End'), sub => sub { $_[0]->end_time_as_timestamp },
obj_link => sub { $self->url_for(action => 'edit', 'id' => $_[0]->id, callback => $self->models->get_callback) } },
customer => { text => t8('Customer'), sub => sub { $_[0]->customer->displayable_name } },
part => { text => t8('Article'), sub => sub { $_[0]->part && $_[0]->part->displayable_name } },
project => { text => t8('Project'), sub => sub { $_[0]->project && $_[0]->project->displayable_name } },
description => { text => t8('Description'), sub => sub { $_[0]->description_as_stripped_html },
raw_data => sub { $_[0]->description_as_restricted_html }, # raw_data only used for html(?)
templates/webpages/time_recording/form.html
<th>[% 'Start' | $T8 %]</th>
<th>[% 'End' | $T8 %]</th>
<th>[% 'Customer' | $T8 %]</th>
<th>[% 'Article' | $T8 %]</th>
<th>[% 'Project' | $T8 %]</th>
<th>[% 'Description' | $T8 %]</th>
<th>[% 'Mitarbeiter' | $T8 %]</th>
......
[% P.button_tag('kivi.TimeRecording.set_current_date_time("end")', LxERP.t8('now')) %]
</td>
<td>[% P.customer_vendor.picker('time_recording.customer_id', SELF.time_recording.customer_id, type='customer', style='width: 300px', "data-validate"="required", "data-title"=LxERP.t8('Customer')) %]</td>
<td>[% P.select_tag('time_recording.part_id', SELF.all_time_recording_articles, default=SELF.time_recording.part_id, with_empty=1, value_key='id', title_key='description') %]</td>
<td>[% P.project.picker('time_recording.project_id', SELF.time_recording.project_id, style='width: 300px') %]</td>
<td>[% L.textarea_tag('time_recording.description', SELF.time_recording.description, wrap="soft", style="width: 350px; height: 150px", class="texteditor", "data-validate"="required", "data-title"=LxERP.t8('Description')) %]</td>
<td>

Auch abrufbar als: Unified diff