X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/ff424b75f8f66c796eae294d0239f0440741e578..c2efdba2dfa10e76937e4bdf5a18e5483d0cddb0:/bin/mozilla/ir.pl diff --git a/bin/mozilla/ir.pl b/bin/mozilla/ir.pl index a5140d495..bdb36bc69 100644 --- a/bin/mozilla/ir.pl +++ b/bin/mozilla/ir.pl @@ -225,7 +225,7 @@ sub setup_ir_action_bar { $bar->add( action => [ t8('Update'), - submit => [ '#form', { action_update => 1 } ], + submit => [ '#form', { action => "update" } ], id => 'update_button', accesskey => 'enter', ], @@ -233,7 +233,7 @@ sub setup_ir_action_bar { combobox => [ action => [ t8('Post'), - submit => [ '#form', { action_post => 1 } ], + submit => [ '#form', { action => "post" } ], disabled => $form->{locked} ? t8('The billing period has already been locked.') : $form->{storno} ? t8('A canceled invoice cannot be posted.') : ($form->{id} && $change_never) ? t8('Changing invoices has been disabled in the configuration.') @@ -242,25 +242,26 @@ sub setup_ir_action_bar { ], action => [ t8('Post Payment'), - submit => [ '#form', { action_post_payment => 1 } ], + submit => [ '#form', { action => "post_payment" } ], disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef, ], - (action => [ - t8('mark as paid'), - submit => [ '#form', { action_mark_as_paid => 1 } ], + action => [ + t8('Mark as paid'), + submit => [ '#form', { action => "mark_as_paid" } ], confirm => t8('This will remove the invoice from showing as unpaid even if the unpaid amount does not match the amount. Proceed?'), disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef, - ]) x !!$::instance_conf->get_ir_show_mark_as_paid, + only_if => $::instance_conf->get_ir_show_mark_as_paid, + ], ], # end of combobox "Post" combobox => [ action => [ t8('Storno'), - submit => [ '#form', { action_storno => 1 } ], + submit => [ '#form', { action => "storno" } ], confirm => t8('Do you really want to cancel this invoice?'), disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef, ], action => [ t8('Delete'), - submit => [ '#form', { action_delete => 1 } ], + submit => [ '#form', { action => "delete" } ], confirm => t8('Do you really want to delete this object?'), disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : $form->{locked} ? t8('The billing period has already been locked.') @@ -272,6 +273,15 @@ sub setup_ir_action_bar { 'separator', + combobox => [ + action => [ t8('Workflow') ], + action => [ + t8('Use As New'), + submit => [ '#form', { action => "use_as_new" } ], + disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef, + ], + ], # end of combobox "Workflow" + combobox => [ action => [ t8('more') ], action => [ @@ -311,8 +321,11 @@ sub form_header { $TMPL_VAR{invoice_obj} = SL::DB::PurchaseInvoice->load_cached($form->{id}) if $form->{id}; $TMPL_VAR{vendor_obj} = SL::DB::Vendor->load_cached($form->{vendor_id}) if $form->{vendor_id}; - $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id}; - $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id}; + my $current_employee = SL::DB::Manager::Employee->current; + $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id}; + $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id}; + $form->{employee_id} ||= $current_employee->id; + $form->{salesman_id} ||= $current_employee->id; $form->{defaultcurrency} = $form->get_default_currency(\%myconfig); @@ -364,7 +377,7 @@ sub form_header { # hiddens $TMPL_VAR{HIDDENS} = [qw( - id action type media format queued printed emailed title vc discount + id type queued printed emailed title vc discount title creditlimit creditremaining tradediscount business closedto locked shipped storno storno_id max_dunning_level dunning_amount shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptogln shiptocontact shiptophone shiptofax