Revision 86f1ea29
Von Sven Schöling vor 5 Monaten hinzugefügt
SL/DB/MetaSetup/Default.pm | ||
---|---|---|
normalize_part_descriptions => { type => 'boolean', default => 'true' },
|
||
normalize_vc_names => { type => 'boolean', default => 'true' },
|
||
order_always_project => { type => 'boolean', default => 'false' },
|
||
order_item_input_position => { type => 'integer', default => '0', not_null => 1 },
|
||
order_warn_duplicate_parts => { type => 'boolean', default => 'true' },
|
||
order_warn_no_cusordnumber => { type => 'boolean', default => 'false' },
|
||
order_warn_no_deliverydate => { type => 'boolean', default => 'true' },
|
locale/de/all | ||
---|---|---|
'Contra' => 'gegen',
|
||
'Contra Account' => 'Gegenkonto',
|
||
'Contrary to Reduced Master Data this will be shown as discount in records.' => 'Im Gegensatz zu Abschlag wird der Rabatt in Belegen ausgewiesen',
|
||
'Controls whether the default item input is above (default) or below the positions list in orders and quotations. Can be overridden by user preferences.' => 'Bestimmt ob die Artikeleingabeleiste in Aufträgen und Angeboten über (standard) oder unter der Positionsliste angezeigt wird. Kann in den Benutzereinstellungen überschrieben werden.',
|
||
'Conversion of "birthday" contact person attribute' => 'Umstellung des Kontaktpersonenfeldes "Geburtstag"',
|
||
'Conversion to PDF failed: #1' => 'Konvertierung zu PDF schlug fehl: #1',
|
||
'Conversion:' => 'Konversion',
|
||
... | ... | |
'Italy' => 'Italien',
|
||
'Item & Sums' => 'Artikel & Summen',
|
||
'Item does not exists in the database' => 'Den Artikel gibt es nicht',
|
||
'Item input position for quotations and orders' => 'Position der Artikeleingabe in Aufträgen und Angeboten',
|
||
'Item mode' => 'Artikelmodus',
|
||
'Item multi selection with qty' => 'Artikel-Mehrfachauswahl mit Menge',
|
||
'Item values' => 'Artikelwerte',
|
||
... | ... | |
'Zipcode and city' => 'PLZ und Stadt',
|
||
'Zipcode missing or wrong format.' => 'Postleitzahl fehlt oder falsches Format.',
|
||
'[email]' => '[email]',
|
||
'above the positions' => 'über den Positionen',
|
||
'absolute' => 'absolut',
|
||
'account' => 'konto',
|
||
'account_description' => 'Beschreibung',
|
||
... | ... | |
'bank_transfer_payment_list_#1' => 'ueberweisungszahlungsliste_#1',
|
||
'banktransfers' => 'ueberweisungen',
|
||
'basis for stock value' => 'Grundlage für Bestandswert',
|
||
'below the positions' => 'unter den Positionen',
|
||
'bestbefore #1' => 'Mindesthaltbarkeit #1',
|
||
'bin_list' => 'Lagerliste',
|
||
'bis' => 'bis',
|
sql/Pg-upgrade2/defaults_order_item_input_position.sql | ||
---|---|---|
-- @tag: defaults_order_item_input_position
|
||
-- @description: Mandantenkonfiguration: Position der Artikeleingabe in Aufträgen
|
||
-- @depends: release_3_9_1
|
||
|
||
ALTER TABLE defaults ADD COLUMN order_item_input_position INTEGER NOT NULL DEFAULT 0;
|
templates/webpages/client_config/_features.html | ||
---|---|---|
</div>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td align="right">[% LxERP.t8("Item input position for quotations and orders") %]</td>
|
||
<td>[% L.select_tag("defaults.order_item_input_position", [ [ 0, LxERP.t8('above the positions'), ], [ 1, LxERP.t8('below the positions') ] ], default=SELF.defaults.order_item_input_position) %]</td>
|
||
<td>[% LxERP.t8("Controls whether the default item input is above (default) or below the positions list in orders and quotations. Can be overridden by user preferences.") %]</td>
|
||
</tr>
|
||
|
||
<tr><td class="listheading" colspan="4">[% 'Show certain sales and purchase documents' | $T8 %]</td></tr>
|
||
<tr>
|
templates/webpages/order/tabs/basic_data.html | ||
---|---|---|
</tr>
|
||
</table>
|
||
|
||
[%- IF INSTANCE_CONF.get_order_item_input_position == 0 -%]
|
||
[%- PROCESS order/tabs/_item_input.html SELF=SELF %]
|
||
|
||
[% L.button_tag('kivi.Order.open_multi_items_dialog()', LxERP.t8('Add multiple items')) %]
|
||
[%- END -%]
|
||
|
||
<table width="100%">
|
||
<tr>
|
||
... | ... | |
</tr>
|
||
|
||
<tr>
|
||
<td>
|
||
[% IF INSTANCE_CONF.get_order_item_input_position == 1 %]
|
||
[%- PROCESS order/tabs/_item_input.html SELF=SELF %]
|
||
|
||
[% L.button_tag('kivi.Order.open_multi_items_dialog()', LxERP.t8('Add multiple items')) %]
|
||
[%- END -%]
|
||
</td>
|
||
</tr>
|
||
|
||
<tr>
|
Auch abrufbar als: Unified diff
Order: Eingabeleiste konfigurierbar unter der Positionenliste anzeigen
Option ist in der Mandatenkonfiguration unter Features -> Einkauf &
Verkauf -> Position der Artikeleingabe in Aufträgen und Angeboten