Revision 3d774e4a
Von Moritz Bunkus vor mehr als 7 Jahren hinzugefügt
bin/mozilla/oe.pl | ||
---|---|---|
362 | 362 |
t8('Sales Order'), |
363 | 363 |
submit => [ '#form', { action => "sales_order" } ], |
364 | 364 |
disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, |
365 |
only_if => $params{is_sales_quo}, |
|
365 |
only_if => $params{is_sales_quo} || $params{is_pur_ord},
|
|
366 | 366 |
], |
367 | 367 |
action => [ |
368 | 368 |
t8('Purchase Order'), |
369 | 369 |
submit => [ '#form', { action => "purchase_order" } ], |
370 | 370 |
disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, |
371 |
only_if => $params{is_req_quo}, |
|
371 |
only_if => $params{is_sales_ord} || $params{is_req_quo},
|
|
372 | 372 |
], |
373 | 373 |
action => [ |
374 | 374 |
t8('Delivery Order'), |
... | ... | |
386 | 386 |
t8('Quotation'), |
387 | 387 |
submit => [ '#form', { action => "quotation" } ], |
388 | 388 |
disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, |
389 |
only_if => $params{is_sales_ord}, |
|
389 | 390 |
], |
390 | 391 |
action => [ |
391 | 392 |
t8('Request for Quotation'), |
392 | 393 |
submit => [ '#form', { action => "request_for_quotation" } ], |
393 | 394 |
disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef, |
395 |
only_if => $params{is_pur_ord}, |
|
394 | 396 |
], |
395 | 397 |
], # end of combobox "Workflow" |
396 | 398 |
|
Auch abrufbar als: Unified diff
ActionBar: oe.pl: Actions für Wechsel Einkauf ↔ Verkauf gefixt