X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=bin%2Fmozilla%2Fir.pl;h=66e9b08a165404769a8698f2ff80ea9de78c4d18;hb=e7e7b7c6c69658cd3bb4c87bf8f907fd78a83104;hp=0a921f2d7e49dc617f8376d546123e3d677711cb;hpb=62bf9a5c87218a9c1205c594c500346b4a7ec670;p=kivitendo-erp.git diff --git a/bin/mozilla/ir.pl b/bin/mozilla/ir.pl index 0a921f2d7..66e9b08a1 100644 --- a/bin/mozilla/ir.pl +++ b/bin/mozilla/ir.pl @@ -226,6 +226,7 @@ sub setup_ir_action_bar { action => [ t8('Update'), submit => [ '#form', { action => "update" } ], + checks => [ 'kivi.validate_form' ], id => 'update_button', accesskey => 'enter', ], @@ -234,6 +235,7 @@ sub setup_ir_action_bar { action => [ t8('Post'), submit => [ '#form', { action => "post" } ], + checks => [ 'kivi.validate_form' ], 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.') @@ -243,11 +245,13 @@ sub setup_ir_action_bar { action => [ t8('Post Payment'), submit => [ '#form', { action => "post_payment" } ], + checks => [ 'kivi.validate_form' ], disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef, ], action => [ t8('Mark as paid'), submit => [ '#form', { action => "mark_as_paid" } ], + checks => [ 'kivi.validate_form' ], 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, only_if => $::instance_conf->get_ir_show_mark_as_paid, @@ -257,11 +261,13 @@ sub setup_ir_action_bar { combobox => [ action => [ t8('Storno'), submit => [ '#form', { action => "storno" } ], + checks => [ 'kivi.validate_form' ], 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" } ], + checks => [ 'kivi.validate_form' ], 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.') @@ -278,6 +284,7 @@ sub setup_ir_action_bar { action => [ t8('Use As New'), submit => [ '#form', { action => "use_as_new" } ], + checks => [ 'kivi.validate_form' ], disabled => !$form->{id} ? t8('This invoice has not been posted yet.') : undef, ], ], # end of combobox "Workflow" @@ -304,6 +311,7 @@ sub setup_ir_action_bar { ], # end of combobox "more" ); } + $::request->layout->add_javascripts('kivi.Validator.js'); } sub form_header { @@ -389,7 +397,7 @@ sub form_header { $TMPL_VAR{payment_terms_obj} = get_payment_terms_for_invoice(); $form->{duedate} = $TMPL_VAR{payment_terms_obj}->calc_date(reference_date => $form->{invdate}, due_date => $form->{duedate})->to_kivitendo if $TMPL_VAR{payment_terms_obj}; - $::request->{layout}->use_javascript(map { "${_}.js" } qw(kivi.Draft kivi.File kivi.SalesPurchase kivi.Part kivi.CustomerVendor ckeditor/ckeditor ckeditor/adapters/jquery kivi.io autocomplete_project client_js)); + $::request->{layout}->use_javascript(map { "${_}.js" } qw(kivi.Draft kivi.File kivi.SalesPurchase kivi.Part kivi.CustomerVendor kivi.Validator ckeditor/ckeditor ckeditor/adapters/jquery kivi.io autocomplete_project client_js)); setup_ir_action_bar(); @@ -878,6 +886,8 @@ sub post { $form->{callback} = 'ir.pl?action=add'; $form->redirect( $locale->text('Invoice') . " $form->{invnumber} " + . ", " . $locale->text('ID') + . ': ' . $form->{id} . ' ' . $locale->text('posted!')); } $form->error($locale->text('Cannot post invoice!'));