Revision ccbd0240
Von Bernd Bleßmann vor mehr als 6 Jahren hinzugefügt
SL/Controller/Order.pm | ||
---|---|---|
1423 | 1423 |
], |
1424 | 1424 |
action => [ |
1425 | 1425 |
t8('Sales Order'), |
1426 |
submit => [ '#order_form', { action => "Order/sales_order" } ], |
|
1427 |
only_if => (any { $self->type eq $_ } (_sales_quotation_type())), |
|
1426 |
submit => [ '#order_form', { action => "Order/sales_order" } ], |
|
1427 |
only_if => (any { $self->type eq $_ } (_sales_quotation_type())), |
|
1428 |
disabled => !$self->order->id ? t8('This object has not been saved yet.') : undef, |
|
1428 | 1429 |
], |
1429 | 1430 |
action => [ |
1430 | 1431 |
t8('Purchase Order'), |
1431 |
submit => [ '#order_form', { action => "Order/purchase_order" } ], |
|
1432 |
only_if => (any { $self->type eq $_ } (_request_quotation_type())), |
|
1432 |
submit => [ '#order_form', { action => "Order/purchase_order" } ], |
|
1433 |
only_if => (any { $self->type eq $_ } (_request_quotation_type())), |
|
1434 |
disabled => !$self->order->id ? t8('This object has not been saved yet.') : undef, |
|
1433 | 1435 |
], |
1434 | 1436 |
], # end of combobox "Workflow" |
1435 | 1437 |
|
Auch abrufbar als: Unified diff
Auftrags-Controller: Workflow Angebot->Auftrag nur, wenn gespeichert