@@ -, +, @@ edit-batch.pl Additionally removes fixme comments --- patroncards/edit-batch.pl | 2 +- patroncards/edit-profile.pl | 2 +- patroncards/edit-template.pl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- a/patroncards/edit-batch.pl +++ a/patroncards/edit-batch.pl @@ -123,7 +123,7 @@ elsif ( $op eq 'cud-dedup' ) { exit; } } -elsif ($op eq 'edit') { #FIXME edit_form actually +elsif ($op eq 'edit_form') { $batch = C4::Patroncards::Batch->retrieve(batch_id => $batch_id); $template->param( description => $batch->{'description'} ); } --- a/patroncards/edit-profile.pl +++ a/patroncards/edit-profile.pl @@ -45,7 +45,7 @@ my @label_template = (); my $units = get_unit_values(); -if ($op eq 'edit_form') { # FIXME This looks like edit_form ? +if ($op eq 'edit_form') { $profile = C4::Patroncards::Profile->retrieve(profile_id => $profile_id); $template_list = get_all_templates({ fields => [ qw( template_id template_code profile_id ) ] }); } --- a/patroncards/edit-template.pl +++ a/patroncards/edit-template.pl @@ -45,7 +45,7 @@ my $profile_list = undef; my $units = get_unit_values(); -if ($op eq 'edit_form') { # FIXME This looks like edit_form +if ($op eq 'edit_form') { $card_template = C4::Patroncards::Template->retrieve(template_id => $template_id); $profile_list = get_all_profiles({ fields => [ qw( profile_id printer_name paper_bin ) ], filters => {template_id => [ $template_id, 0 ], creator => 'Patroncards'} } ); } --