Revision 82d692e7
Von Sven Schöling vor mehr als 7 Jahren hinzugefügt
bin/mozilla/ar.pl | ||
---|---|---|
action => [
|
||
$::locale->text('Search'),
|
||
submit => [ '#form' ],
|
||
checks => [ 'kivi.validate_form' ],
|
||
accesskey => 'enter',
|
||
],
|
||
);
|
||
}
|
||
$::request->layout->add_javascripts('kivi.Validator.js');
|
||
}
|
||
|
||
sub setup_ar_transactions_action_bar {
|
||
... | ... | |
t8('Update'),
|
||
submit => [ '#form', { action => "update" } ],
|
||
id => 'update_button',
|
||
checks => [ 'kivi.validate_form' ],
|
||
accesskey => 'enter',
|
||
],
|
||
|
||
... | ... | |
action => [
|
||
t8('Post'),
|
||
submit => [ '#form', { action => "post" } ],
|
||
checks => [ 'kivi.AR.check_fields_before_posting' ],
|
||
checks => [ 'kivi.validate_form', 'kivi.AR.check_fields_before_posting' ],
|
||
disabled => $is_closed ? t8('The billing period has already been locked.')
|
||
: $is_storno ? t8('A canceled invoice cannot be posted.')
|
||
: ($::form->{id} && $change_never) ? t8('Changing invoices has been disabled in the configuration.')
|
||
... | ... | |
combobox => [
|
||
action => [ t8('Storno'),
|
||
submit => [ '#form', { action => "storno" } ],
|
||
checks => [ 'kivi.AR.check_fields_before_posting' ],
|
||
checks => [ 'kivi.validate_form', 'kivi.AR.check_fields_before_posting' ],
|
||
confirm => t8('Do you really want to cancel this invoice?'),
|
||
disabled => !$::form->{id} ? t8('This invoice has not been posted yet.')
|
||
: $has_storno ? t8('This invoice has been canceled already.')
|
||
... | ... | |
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"
|
||
... | ... | |
], # end of combobox "more"
|
||
);
|
||
}
|
||
$::request->layout->add_javascripts('kivi.Validator.js');
|
||
}
|
||
|
||
1;
|
Auch abrufbar als: Unified diff
kivi.Validator: In AR Suche und Maske als check registriert