Revision 3d774e4a
Von Moritz Bunkus vor fast 8 Jahren hinzugefügt
bin/mozilla/oe.pl | ||
---|---|---|
t8('Sales Order'),
|
||
submit => [ '#form', { action => "sales_order" } ],
|
||
disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
|
||
only_if => $params{is_sales_quo},
|
||
only_if => $params{is_sales_quo} || $params{is_pur_ord},
|
||
],
|
||
action => [
|
||
t8('Purchase Order'),
|
||
submit => [ '#form', { action => "purchase_order" } ],
|
||
disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
|
||
only_if => $params{is_req_quo},
|
||
only_if => $params{is_sales_ord} || $params{is_req_quo},
|
||
],
|
||
action => [
|
||
t8('Delivery Order'),
|
||
... | ... | |
t8('Quotation'),
|
||
submit => [ '#form', { action => "quotation" } ],
|
||
disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
|
||
only_if => $params{is_sales_ord},
|
||
],
|
||
action => [
|
||
t8('Request for Quotation'),
|
||
submit => [ '#form', { action => "request_for_quotation" } ],
|
||
disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
|
||
only_if => $params{is_pur_ord},
|
||
],
|
||
], # end of combobox "Workflow"
|
||
|
Auch abrufbar als: Unified diff
ActionBar: oe.pl: Actions für Wechsel Einkauf ↔ Verkauf gefixt