Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 4cef82ae

Von Bernd Bleßmann vor mehr als 2 Jahren hinzugefügt

  • ID 4cef82ae0b71cabe9fccc1f3f16de0a9572fb56f
  • Vorgänger 6f01c56f
  • Nachfolger 8a0c3bd1

Lieferschein-Controller: js: benannte Parameter für save und show_print_options

Unterschiede anzeigen:

SL/Controller/DeliveryOrder.pm
combobox => [
action => [
t8('Save'),
call => [ 'kivi.DeliveryOrder.save', 'save', $::instance_conf->get_order_warn_duplicate_parts,
$::instance_conf->get_order_warn_no_deliverydate,
call => [ 'kivi.DeliveryOrder.save', { action => 'save',
warn_on_duplicates => $::instance_conf->get_order_warn_duplicate_parts,
warn_on_reqdate => $::instance_conf->get_order_warn_no_deliverydate },
],
disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
],
action => [
t8('Save as new'),
call => [ 'kivi.DeliveryOrder.save', 'save_as_new', $::instance_conf->get_order_warn_duplicate_parts ],
call => [ 'kivi.DeliveryOrder.save', { action => 'save_as_new',
warn_on_duplicates => $::instance_conf->get_order_warn_duplicate_parts },
],
disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.')
: $self->type eq 'supplier_delivery_order' ? t8('Need a workflow for Supplier Delivery Order')
: !$self->order->id ? t8('This object has not been saved yet.')
......
],
action => [
t8('Save and Delivery Order'),
call => [ 'kivi.DeliveryOrder.save', 'save_and_delivery_order', $::instance_conf->get_order_warn_duplicate_parts,
$::instance_conf->get_order_warn_no_deliverydate,
call => [ 'kivi.DeliveryOrder.save', { action => 'save_and_delivery_order',
warn_on_duplicates => $::instance_conf->get_order_warn_duplicate_parts,
warn_on_reqdate => $::instance_conf->get_order_warn_no_deliverydate },
],
only_if => $self->type_data->show_menu("save_and_delivery_order"),
disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
],
action => [
t8('Save and Invoice'),
call => [ 'kivi.DeliveryOrder.save', 'save_and_invoice', $::instance_conf->get_order_warn_duplicate_parts ],
call => [ 'kivi.DeliveryOrder.save', { action => 'save_and_invoice',
warn_on_duplicates => $::instance_conf->get_order_warn_duplicate_parts },
],
only_if => $self->type_data->show_menu("save_and_invoice"),
disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
],
action => [
t8('Save and AP Transaction'),
call => [ 'kivi.DeliveryOrder.save', 'save_and_ap_transaction', $::instance_conf->get_order_warn_duplicate_parts ],
call => [ 'kivi.DeliveryOrder.save', { action => 'save_and_ap_transaction',
warn_on_duplicates => $::instance_conf->get_order_warn_duplicate_parts },
],
only_if => $self->type_data->show_menu("save_and_ap_transaction"),
disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
],
......
],
action => [
t8('Save and preview PDF'),
call => [ 'kivi.DeliveryOrder.save', 'preview_pdf', $::instance_conf->get_order_warn_duplicate_parts,
$::instance_conf->get_order_warn_no_deliverydate,
call => [ 'kivi.DeliveryOrder.save', { action => 'preview_pdf',
warn_on_duplicates => $::instance_conf->get_order_warn_duplicate_parts,
warn_on_reqdate => $::instance_conf->get_order_warn_no_deliverydate },
],
disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
],
action => [
t8('Save and print'),
call => [ 'kivi.DeliveryOrder.show_print_options', $::instance_conf->get_order_warn_duplicate_parts,
$::instance_conf->get_order_warn_no_deliverydate,
call => [ 'kivi.DeliveryOrder.show_print_options', { warn_on_duplicates => $::instance_conf->get_order_warn_duplicate_parts,
warn_on_reqdate => $::instance_conf->get_order_warn_no_deliverydate },
],
disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.') : undef,
],
action => [
t8('Save and E-mail'),
id => 'save_and_email_action',
call => [ 'kivi.DeliveryOrder.save', 'save_and_show_email_dialog', $::instance_conf->get_order_warn_duplicate_parts,
$::instance_conf->get_order_warn_no_deliverydate,
call => [ 'kivi.DeliveryOrder.save', { action => 'save_and_show_email_dialog',
warn_on_duplicates => $::instance_conf->get_order_warn_duplicate_parts,
warn_on_reqdate => $::instance_conf->get_order_warn_no_deliverydate },
],
disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.')
: !$self->order->id ? t8('This object has not been saved yet.')
......
action => [
t8('Transfer out'),
id => 'transfer_out_action',
call => [ 'kivi.DeliveryOrder.save', 'transfer_stock' ],
call => [ 'kivi.DeliveryOrder.save', { action => 'transfer_stock' } ],
disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.')
: !$self->order->id ? t8('This object has not been saved yet.')
: $self->order->delivered ? t8('The parts for this order have already been transferred')
......
action => [
t8('Transfer in'),
id => 'transfer_in_action',
call => [ 'kivi.DeliveryOrder.save', 'transfer_stock' ],
call => [ 'kivi.DeliveryOrder.save', { action => 'transfer_stock' } ],
disabled => !$may_edit_create ? t8('You do not have the permissions to access this function.')
: !$self->order->id ? t8('This object has not been saved yet.')
: $self->order->delivered ? t8('The parts for this order have already been transferred')
js/kivi.DeliveryOrder.js
}
};
ns.save = function(action, warn_on_duplicates, warn_on_reqdate) {
ns.save = function(params) {
if (!ns.check_cv()) return;
const action = params.action;
const warn_on_duplicates = params.warn_on_duplicates;
const warn_on_reqdate = params.warn_on_reqdate;
if (warn_on_duplicates && !ns.check_duplicate_parts()) return;
if (warn_on_reqdate && !ns.check_valid_reqdate()) return;
......
$.post("controller.pl", data, kivi.eval_json_result);
};
ns.show_print_options = function(warn_on_duplicates, warn_on_reqdate) {
ns.show_print_options = function(params) {
if (!ns.check_cv()) return;
const warn_on_duplicates = params.warn_on_duplicates;
const warn_on_reqdate = params.warn_on_reqdate;
if (warn_on_duplicates && !ns.check_duplicate_parts(kivi.t8("Do you really want to print?"))) return;
if (warn_on_reqdate && !ns.check_valid_reqdate()) return;

Auch abrufbar als: Unified diff